# # this make file builds the driver program using GNU make and # the isip make template # # define the source files # ISIP_FILES = hypothesize.cc create_model.cc build_lattice.cc main.cc \ find_word_seq.cc # define the files these source files depend on (usually include files) # ISIP_DEPS = /isip/d00/ee_8993/recognizer/lib/lib_hmm_structs.a test.h # define include path for libraries # ISIP_IFLAGS = -I/isip/d00/ee_8993/recognizer/class # define the location of the libraries that the source files need # ISIP_LFLAGS_BEFORE = -L/isip/d00/ee_8993/recognizer/lib ISIP_LFLAGS_AFTER = -l_hmm_structs # define the compilation flags: optimize and debug # ISIP_CFLAGS = -O -g # define the name of the executable file (*.exe) # ISIP_EXE = n_best.exe # include the isip standard make template # include $(ISIP)/util/misc/make/compile_and_link.make # # end of file