Rev 309 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
GCC = gcc
GXX = g++
CFLAGS =
OUTNAME_C = draw_test_c
OUTNAME_CXX = draw_test_cpp
all:
$(GCC) $(CFLAGS) draw_test.c draw.c -lggi -lm -o $(OUTNAME_C)
$(GXX) $(CFLAGS) draw_test.cpp draw.c -lggi -lm -o $(OUTNAME_CXX)
clean:
rm -f *~ *.o $(OUTNAME_C) $(OUTNAME_CXX)