Subversion Repositories programming

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
292 ira 1
 
2
GCC     = gcc
3
CFLAGS  = -O2 -march=i386 -pipe
4
OUTNAME = test
5
all:
296 ira 6
	$(GCC) $(CFLAGS) ggitest.c draw.c -lggi -lm -o $(OUTNAME)
292 ira 7
 
8
clean:
9
	rm -f *~ *.o $(OUTNAME)
10