diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,17 +1,20 @@ +CC = gcc +CFLAGS = -Wall -O2 + all: mxml ezxml mxml: mxml.c - gcc -Wall -lmxml -pthread -o mxml mxml.c + $(CC) $(CFLAGS) -lmxml -pthread -o mxml mxml.c ezxml: ezxml.c ezxmllib.o - gcc -Wall -o ezxml ezxml.c ezxmllib.o + $(CC) $(CFLAGS) -o ezxml ezxml.c ezxmllib.o ezxmllib.o: ezxmllib.c - gcc -Wall -c -o ezxmllib.o ezxmllib.c + $(CC) $(CFLAGS) -c -o ezxmllib.o ezxmllib.c debug: - gcc -Wall -g -lmxml -pthread -o mxml mxml.c + $(CC) $(CFLAGS) -g -lmxml -pthread -o mxml mxml.c clean: rm *.o mxml ezxml |