Subversion Repositories programming

Rev

Rev 306 | Rev 312 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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