From 8e5b303fa6fd0aa4d06474af6f7508b16bcc6fe4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 18 Jan 2006 22:04:54 +0000 Subject: Implement the whole stuff git-svn-id: file:///home/lennart/svn/public/mod_dnssd/trunk@7 634eccf8-0006-0410-930e-e16565b0b7de --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Makefile') 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 -- cgit