# file: GNUmakefile
#
# this make file builds the driver program using GNU make and
# the isip make template
# 

# define the isip default compiler
#
ISIP_CPLUS_COMPILER = gcc

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#
ISIP_DEPS = *.h

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

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

# define the output library
#
ISIP_OLIB = $(ISIP_TRANSCRIBER)/lib/$(ISIP_BINARY)/lib_transcriber.a

# include the isip standard make template
#
include $(ISIP_TRANSCRIBER)/util/make/compile.make

#
# end of file
