# file: GNUmakefile
#
# This file builds the Sample_type 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)
#
# here I deviate from the ISIP standard because this class is so closely
# linked with the ISIP sample_type definition
#
ISIP_DEPS = sample_comp.h sample_comp_constants.h sample_lin_lut.h \
		sample_ulaw_lut.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_isip.a

# define the compilation flags: Optimize and debug
# 
ISIP_CFLAGS = -O2

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

#
# end of file

