# file: GNUmakefile
#
# This makefile builds the Item_list 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 = item_list.h 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

