From: Peep P. <so...@us...> - 2004-08-03 14:46:44
|
Update of /cvsroot/agd/client In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv716 Modified Files: Makefile Log Message: Improved. Index: Makefile =================================================================== RCS file: /cvsroot/agd/client/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile 9 Jan 2004 20:52:07 -0000 1.1.1.1 +++ Makefile 3 Aug 2004 14:46:34 -0000 1.2 @@ -1,5 +1,9 @@ -all: *.c - gcc *.c -o client `allegro-config --libs --cflags` -lm -ansi -pedantic -debug: *.c - gcc *.c -o client `allegro-config --libs --cflags` -lm -ansi -pedantic -g +SRC = agi.c gui.c main.c net.c sys.c +OBJ = $(SRC:.c=.o) +CFLAGS = -ansi -pedantic -g + +all: $(OBJ) + gcc $(OBJ) -o client `allegro-config --libs --cflags` -lm +clean: + rm $(OBJ) |