summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dc3a033..1be90ce 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,10 @@
-CFLAGS=-g -O0 -Wall -W -pipe $(shell pkg-config --cflags glib-2.0)
+CFLAGS=-g -O0 -Wall -W -pipe $(shell pkg-config --cflags glib-2.0) -Wno-unused
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)
+all: flexmdns prioq-test
+
+flexmdns: main.o iface.o netlink.o server.o address.o util.o local.o prioq.o
+ $(CC) -o $@ $^ $(LIBS)
#test-llist: test-llist.o
# $(CC) -o $@ $^ $(LIBS)