diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-01-04 23:52:38 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-01-04 23:52:38 +0000 |
commit | 927f8b06fe3550f45c8d7b119acaa77d9b22888c (patch) | |
tree | 928ee1ffcd06abd4966f2bed4e7966c4b92afe8d /Makefile | |
parent | 4de18a7015ed77eac277bee669d4c8d9dae60b89 (diff) |
some work
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@6 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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) |