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

# define the 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 = tele_interf.h tele_interf_constants.h \
	$(LINKON)/include/sample_type.h \
	$(LINKON)/include/sample_comp.h \
	$(LINKON)/include/sample_type_constants.h \
	$(LINKON)/include/isip_sphere.h \
	$(LINKON)/include/linkon.h \
	$(LINKON)/include/linkon_constants.h \
	$(LINKON)/include/channel.h \
	$(LINKON)/include/channel_constants.h

ISIP_IFLAGS = -I$(LINKON)/local/sphere/$(ISIP_BINARY)/include

# define the output library
#
ISIP_OLIB = $(LINKON)/lib/$(ISIP_BINARY)/lib_dcollect.a

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

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

#
# end of file

