# Last edited on 2005-02-08 02:32:17 by stolfi PROG = demo IFLAGS := CFLAGS := -g -ansi -Wall -Wtraditional -Wpointer-arith -Wmissing-prototypes all: cleanup ${PROG} tests cleanup: rm -f ${PROG} ${PROG}.o %.o: %.c /usr/bin/gcc -c ${IFLAGS} ${CFLAGS} $*.c ${PROG}: ${OFILES} ${PROG}.o /usr/bin/gcc -o ${PROG} ${PROG}.o -lm tests: -./${PROG} ciro -./${PROG} -n 3 lula -./${PROG} serra -./${PROG} garotinho