summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: dc3a03365aa42e487ac91e5fc46c921836a16bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CFLAGS=-g -O0 -Wall -W -pipe $(shell pkg-config --cflags glib-2.0)
LIBS=$(shell pkg-config --libs glib-2.0)

#flexmdns: main.o iface.o netlink.o server.o address.o util.o local.o
#	$(CC) -o $@ $^ $(LIBS)

#test-llist: test-llist.o
#	$(CC) -o $@ $^ $(LIBS)

prioq-test: prioq-test.o prioq.o
	$(CC) -o $@ $^ $(LIBS)


*.o: *.h

clean:
	rm -f *.o flexmdns