summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-01-18 22:04:54 +0000
committerLennart Poettering <lennart@poettering.net>2006-01-18 22:04:54 +0000
commit8e5b303fa6fd0aa4d06474af6f7508b16bcc6fe4 (patch)
treeb5bd8c975167d06865a9f37bb6f32a2f71aa373d /Makefile
parent5a477a0753d219ed6eee4da22e0a15da83cb29ac (diff)
Implement the whole stuff
git-svn-id: file:///home/lennart/svn/public/mod_dnssd/trunk@7 634eccf8-0006-0410-930e-e16565b0b7de
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 50f1669..4156e3b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,16 +2,16 @@
APXS=/usr/bin/apxs2
APACHECTL=apache2ctl
-LIBS=$(shell pkg-config --libs howl)
-CFLAGS=$(shell pkg-config --cflags howl)
+LIBS=$(shell pkg-config --libs avahi-client)
+CFLAGS=$(shell pkg-config --cflags avahi-client)
-all: mod_dnssd.so
+all: mod_dnssd.la
-mod_dnssd.so: mod_dnssd.c
+mod_dnssd.la: mod_dnssd.c
$(APXS) -c $(CFLAGS) $(LIBS) mod_dnssd.c
-install: all
- $(APXS) -i -a -n dnssd mod_dnssd.so
+install: mod_dnssd.la
+ $(APXS) -i -a mod_dnssd.la
clean:
rm -rf *.o *.so *.loT .deps/ *.la *.lo *.slo .libs