# file: GNUmakefile
#
# This makefile builds the Data_collect 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 = ./data_collect.h ./data_collect_constants.h \
	$(LINKON)/include/tele_interf.h \
	$(LINKON)/include/tele_interf_constants.h \
	$(LINKON)/include/item_list.h \
	$(LINKON)/include/item_list_constants.h

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

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

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

#
# end of file

