Subversion Repositories programming

Rev

Rev 306 | Rev 312 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed


GCC     = gcc
CFLAGS  = -O2 -march=i386 -pipe
OUTNAME = draw_test
all:
        $(GCC) $(CFLAGS) draw_test.c draw.c -lggi -lm -o $(OUTNAME)

clean:
        rm -f *~ *.o $(OUTNAME)