summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6fabc209a54a5d64c19cfc112679eafbdd156c07 (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: ezxml.c 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