# file: GNUmakefile
#
# this make file builds the linkon class
# 

# 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 = linkon.h linkon_constants.h \
	$(LINKON)/include/channel.h \
	$(LINKON)/include/channel_constants.h \
	$(LINKON)/include/iddi.h \
	$(LINKON)/include/iddi_constants.h \
	$(LINKON)/include/sample_type.h \
	$(LINKON)/include/sample_type_constants.h 

# define the include libraries
#
ISIP_IFLAGS = 

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

# define the compilation flags: debug
# 
# Note: we have to deviate from the ISIP standard here slightly, since gcc's
#       optimization flag causes Linkon Corp's blocking functions to timout
#       to early
#
ISIP_CFLAGS = -g

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

#
# end of file





