# file: GNUmakefile
#
# this make file software for the ppm class
# 

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#
ISIP_DEPS = ./ppm.h ./ppm_constants.h

ISIP_IFLAGS = -I $(USFS)/include/

# define the output library
#
ISIP_OLIB = $(USFS)/lib/$(ISIP_BINARY)/lib_image.a

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

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

#
# end of file

