summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-04-24 20:23:07 +0000
committerLennart Poettering <lennart@poettering.net>2005-04-24 20:23:07 +0000
commit4e2d82b18f7e099cbce933b383c45efa40306161 (patch)
tree59f6dac0e0a77bee42af778df254f379aec6f369 /Makefile
parent4ccd2cdd5ae567dc2cb6c05ca5e5a9537a9dc1c4 (diff)
add support for dots and backslashes in domain names (required for DNS-SD)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@28 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5851286..2a3be76 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
CFLAGS=-g -O0 -Wall -W -pipe $(shell pkg-config --cflags glib-2.0) -Wno-unused
LIBS=$(shell pkg-config --libs glib-2.0)
-all: strlst-test prioq-test flexmdns
+all: strlst-test prioq-test domain-test dns-test flexmdns
flexmdns: timeeventq.o main.o iface.o netlink.o server.o address.o util.o prioq.o cache.o rr.o dns.o socket.o psched.o announce.o subscribe.o strlst.o
$(CC) -o $@ $^ $(LIBS)
@@ -13,10 +13,15 @@ flexmdns: timeeventq.o main.o iface.o netlink.o server.o address.o util.o prioq.
prioq-test: prioq-test.o prioq.o
$(CC) -o $@ $^ $(LIBS)
-
strlst-test: strlst-test.o strlst.o
$(CC) -o $@ $^ $(LIBS)
+domain-test: domain-test.o util.o
+ $(CC) -o $@ $^ $(LIBS)
+
+dns-test: dns-test.o util.o dns.o rr.o strlst.o
+ $(CC) -o $@ $^ $(LIBS)
+
*.o: *.h