# file: 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 = ./filename.h \
	    ./filename_constants.h \
	    $(LINKON)/include/isip_sphere.h

ISIP_IFLAGS = -I$(LINKON)/include

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

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

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

#
# end of file
