summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-05-06 15:31:30 +0000
committerLennart Poettering <lennart@poettering.net>2005-05-06 15:31:30 +0000
commitf93eca3530bef2cc23ffe6c3a04493ad171c2aed (patch)
treeb1053873411a868b751d7471cd4cb02fa54ed29a /Makefile
parent42c9b99f2bb21d0ff1f1918314f9d5dd82a62763 (diff)
move the sources to libavahi-core/
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@50 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ff3977e..0000000
--- a/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-#CC=gcc-2.95
-CFLAGS=-g -O1 -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 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)
-
-#test-llist: test-llist.o
-# $(CC) -o $@ $^ $(LIBS)
-
-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
-
-clean:
- rm -f *.o flexmdns prioq-test strlst-test domain-test dns-test