HMM codes

This commit is contained in:
tqlong
2008-01-17 22:36:58 +00:00
parent fe36be2522
commit b0b84676c9
-28
View File
@@ -1,31 +1,3 @@
binrule(
name = "main", # the executable name
sources = ["main.cc","discreteHMM.cc","support.cc","discreteDST.cc"],
headers = ["discreteHMM.h", "support.h","discreteDST.h"],
deplibs = ["fastlib:fastlib_int"] # depends on example in this folder
)
binrule(
name = "gen", # the executable name
sources = ["main.cc","discreteDST.cc","support.cc"],
headers = ["discreteHMM.h", "support.h", "gaussianHMM.h"],
deplibs = ["fastlib:fastlib_int"] # depends on example in this folder
)
binrule(
name = "mix", # the executable name
sources = ["main.cc","support.cc","mixgaussHMM.cc","mixtureDST.cc", "gaussianHMM.cc"],
headers = ["support.h", "mixgaussHMM.h","mixtureDST.h", "gaussianHMM.h"],
deplibs = ["fastlib:fastlib_int"] # depends on example in this folder
)
binrule(
name = "mixgen", # the executable name
sources = ["main.cc","support.cc","mixgaussHMM.cc","mixtureDST.cc", "gaussianHMM.cc"],
headers = ["support.h", "mixgaussHMM.h","mixtureDST.h", "gaussianHMM.h"],
deplibs = ["fastlib:fastlib_int"] # depends on example in this folder
)
binrule(
name = "hmm", # the executable name
sources = ["hmm.cc","support.cc","discreteHMM.cc","gaussianHMM.cc","mixgaussHMM.cc","mixtureDST.cc"],