# 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 = *.h

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

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

# define additional include libraries
#
ISIP_LFLAGS_BEFORE = -L$(ISIP_PROTO)/lib/$(ISIP_BINARY) -l_proto

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

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

# include the isip standard make template
#
include $(ISIP_PROTO)/lib/scripts/make/compile_and_link.make

#
# end of file



