# file: GNUmakefile
#
# 

ISIP_EXE = wait_prompt_read.exe
ISIP_BIN = $(LINKON)/bin/$(ISIP_BINARY)

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

# define the include libraries
#
ISIP_IFLAGS = 

# define the output library
#
ISIP_LFLAGS_BEFORE = 

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

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

#
# end of file

