# file: GNUmakefile
#
# this is a make file for the image_analysis class.
# 

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#	
ISIP_DEPS = ./image_analysis.h \
	    ./image_analysis_constants.h

# define the local include file path
#
ISIP_IFLAGS = -I $(USFS)/include	

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

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

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

#
# end of file

