# file: $JEIDA/src/signal_detector/v2.1/src/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 = signal_detector.h signal_detector_constants.h

# define the compilation flags: optimize and debug
# 
ISIP_CFLAGS = -O -g

# define the name of the executable file (*.exe)
#
ISIP_EXE = signal_detector.exe 

# include the isip standard make template
#
include $(ISIP)/util/misc/make/compile_and_link.make

#
# end of file

