# file: $ECE_8113/util/snr_calculator/v1.0/GNUmakefile # # 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 $(ECE_8993)/include # define the compilation flags: debug # ISIP_CFLAGS = -g # define additional include libraries # ISIP_LFLAGS_BEFORE = -L $(ECE_8993)/lib/$(ISIP_BINARY) -l_signal # define the name of the executable file (*.exe) # ISIP_EXE = calculate_lpc.exe # define the installation directory # ISIP_BIN = $(ECE_8993)/bin/$(ISIP_BINARY) # include the isip standard make template # include $(ECE_8993)/util/make/compile_and_link.make # # end of file