# file: GNUmakefile
#

# define the isip default compiler
#
ISIP_CPLUS_COMPILER = gcc

# source files
#
ISIP_FILES = *.cc

# depenedencies
#
ISIP_DEPS = *.h

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

# compilation flags: optimize and debug
# 
ISIP_CFLAGS = -O2 -fpermissive

# define additional include libraries
#
ISIP_LFLAGS_AFTER = -lm

# executable file
# 
ISIP_EXE = excise_signal.exe

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

#
# end of file
