# Last edited on 2002-03-15 08:53:32 by stolfi PROG = psplot-test INC = /home/staff/stolfi/PUB/include LIB = /home/staff/stolfi/PUB/${PLATFORM}/lib LIBS = \ ${LIB}/libjs.a \ ${LIB}/libpsplot.a .PHONY: all clean run all: clean run clean: -/bin/rm -f *.o *.ho ${PROG} run: ${PROG} ${PROG} GCCFLAGS = \ -I${INC} \ -g \ -ansi \ -Wall -Wpointer-arith -Wmissing-prototypes \ ${PROG}: ${PROG}.c ${LIBS} ;\ rm -f ${PROG} && \ gcc ${GCCFLAGS} -o ${PROG} ${PROG}.c -L${LIB} ${LIBS} -lm # Dependencies of .h files: # Dependencies of .c and .s files: psplot-test.o:: psplot-test.c ${INC}/js.ho ${INC}/ioprotos.ho \ ${INC}/psplot.ho