summaryrefslogtreecommitdiff
path: root/Makefile
blob: b2ec9224b18b8b9e2e1c3a4b633d90d99edc26d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CC = gcc
CFLAGS = -Wall -O2


all: mxml ezxml

mxml: mxml.c
	$(CC) $(CFLAGS) -lmxml -pthread -o mxml mxml.c

ezxml: ezxml.c ezxmllib.o
	$(CC) $(CFLAGS) -o ezxml ezxml.c ezxmllib.o

ezxmllib.o: ezxmllib.c
	$(CC) $(CFLAGS) -c -o ezxmllib.o ezxmllib.c

debug:
	$(CC) $(CFLAGS) -g -lmxml -pthread -o mxml mxml.c

clean:
	rm *.o mxml ezxml

.PHONY:
	all