# file: GNUmakefile
#

# source files
#
ISIP_FILES = *.cc

# depenedencies
#
ISIP_DEPS = *.h

# dependency path flags
#
ISIP_IFLAGS = -I $(ISIP_SEGMENTER)/include

# compilation flags: optimize and debug
# 
ISIP_CFLAGS = -O2 -fpermissive
 
# executable file
# 
ISIP_EXE = excise_signal.exe

# pathname for the binary
#
ISIP_BIN = $(ISIP_SEGMENTER)/bin/$(ISIP_BINARY)
 
# make template
#
include $(ISIP_SEGMENTER)/util/make/compile_and_link.make

#
# end of file
