summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2891115630a0adeb6f1de661c8a8b9f9ef71dabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

all: mxml ezxml

mxml: mxml.c
	gcc -Wall -lmxml -pthread -o mxml mxml.c

ezxml: ezxmllib.o
	gcc -Wall -o ezxml ezxml.c ezxmllib.o

ezxmllib.o: ezxmllib.c
	gcc -Wall -c -o ezxmllib.o ezxmllib.c

debug:
	gcc -Wall -g -lmxml -pthread -o mxml mxml.c

clean:
	rm *.o mxml ezxml

.PHONY:
	all