# file: GNUmakefile # # this make file builds the driver program using GNU make and # the isip make template # # define the source files # ISIP_FILES = *.cc # define the files these source files depend on (usually include files) # ISIP_DEPS = calculate_lpc.h \ calculate_lpc_constants.h # define the local include file path # ISIP_IFLAGS = -I $(SPEECH_HOMEWORK4)/include # define the compilation flags: optimize and debug # ISIP_CFLAGS = -g # define additional include libraries # ISIP_LFLAGS_BEFORE = -L $(SPEECH_HOMEWORK4)/lib/$(ISIP_BINARY) -l_signal -l_pfil # define directory where binaries have to be dumped # ISIP_BIN = $(SPEECH_HOMEWORK4)/bin/$(ISIP_BINARY) # define the name of the executable file (*.exe) # ISIP_EXE = calculate_lpc.exe # include the isip standard make template # include $(SPEECH_HOMEWORK4)/util/make/compile_and_link.make # # end of file