# file: GNUmakefile
#
# this make file builds the main 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 = ./lk_driver.h
#$(LINKON)/lib/$(ISIP_BINARY)/lib_isip.a

# define the local include file path
# 
ISIP_IFLAGS = -I $(LINKON)/include

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

# define additional include libraries
#
ISIP_LFLAGS_BEFORE = -L $(LINKON)/lib/$(ISIP_BINARY) -l_isip

# define directory where binaries have to be dumped
#
ISIP_BIN = $(LINKON)/bin/$(ISIP_BINARY)

# define the name of the executable file (*.exe)
#
ISIP_EXE = lk_driver.exe

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

#
# end of file

