# Last edited on 2002-11-08 13:52:59 by stolfi PROG = aavalid INC = /home/staff/stolfi/PUB/include LIB = /home/staff/stolfi/PUB/${PLATFORM}/lib LIBS = \ ${LIB}/libaa.a \ ${LIB}/libia.a \ ${LIB}/libflt.a \ ${LIB}/libjs.a .PHONY: all clean run all: clean run clean: -/bin/rm -f *.o *.ho ${PROG} run: ${PROG} ${PROG} GCCFLAGS = \ -I${INC} \ -g \ -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: aavalid.o:: aavalid.c ${INC}/js.ho ${INC}/ioprotos.ho \ ${INC}/flt.ho ${INC}/ia.ho ${INC}/aa.ho