# file: GNUmake file for Feedback Cancelor # # define the source files # ISIP_FILES = *.cc # define the files these source files depend on (usually include files) # ISIP_DEPS = fbc.h /u0/brown/4012/fft/lib/$(ISIP_BINARY)/lib_pdsp.a # define the local include file path # ISIP_IFLAGS = -I $(FBC)/include # define the compilation flags: debug # ISIP_CFLAGS = -O -g # define additional include libraries # ISIP_LFLAGS_BEFORE = -L /u0/brown/4012/fft/lib/$(ISIP_BINARY) -l_pdsp # define the name of the executable file (*.exe) # ISIP_EXE = fbc.exe # define the installation directory # ISIP_BIN = $(FBC)/bin/$(ISIP_BINARY) # include the isip standard make template # include $(ISIP)/util/misc/make/compile_and_link.make # # end of file