# file: $USFS/util/ppm_print/v1.0/GNUmakefile
#

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#
ISIP_DEPS = $(USFS)/lib/$(ISIP_BINARY)/lib_image.a

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

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

# define additional include libraries
#
ISIP_LFLAGS_BEFORE = -L $(USFS)/lib/$(ISIP_BINARY) -l_image

# define the name of the executable file (*.exe)
#
ISIP_EXE = ppm_print.exe

# define the installation directory
#
ISIP_BIN = $(USFS)/bin/$(ISIP_BINARY)

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

#
# end of file
