# file: GNUmakefile # # this make file is for the Signal class # # define the source files # ISIP_FILES = *.cc # define the files these source files depend on (usually include files) # ISIP_DEPS = ./signal.h ./signal_constants.h ISIP_IFLAGS = -I $(ECE_8993)/include/ # define the output library # ISIP_OLIB = $(ECE_8993)/lib/$(ISIP_BINARY)/lib_signal.a # define the compilation flags # ISIP_CFLAGS = -O # include the isip standard make template # include $(ECE_8993)/util/make/compile.make # # end of file