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

# source files
#
ISIP_FILES = *.cc

# dependencies
#
ISIP_DEPS = *.h

# Iflags for compilation
#
ISIP_IFLAGS = -I$(ISIP_PRON)/include

# compilation flags: optimize
# 
ISIP_CFLAGS = -O2

# output library
# 
ISIP_OLIB = $(ISIP_PRON)/lib/$(ISIP_BINARY)/lib_boltzmann.a

# make template
#
include $(ISIP_PRON)/util/make/compile.make

#
# end of file

