summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-12-25 18:45:50 +0000
committerLennart Poettering <lennart@poettering.net>2004-12-25 18:45:50 +0000
commit4de18a7015ed77eac277bee669d4c8d9dae60b89 (patch)
treeb02ff8e829c4de83257a7843e9b19ac2d69f078b /Makefile
parentc77f4231ed850b90b9b6f337727e19b63418426f (diff)
add prioq abstract data type
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@5 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f5af624..dc3a033 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,16 @@
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
+#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: