Rev 292 | Rev 306 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
GCC = gcc
CFLAGS = -O2 -march=i386 -pipe
OUTNAME = test
all:
$(GCC) $(CFLAGS) ggitest.c draw.c -lggi -lm -o $(OUTNAME)
clean:
rm -f *~ *.o $(OUTNAME)