summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4156e3b..0000000
--- a/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# $Id$
-
-APXS=/usr/bin/apxs2
-APACHECTL=apache2ctl
-LIBS=$(shell pkg-config --libs avahi-client)
-CFLAGS=$(shell pkg-config --cflags avahi-client)
-
-all: mod_dnssd.la
-
-mod_dnssd.la: mod_dnssd.c
- $(APXS) -c $(CFLAGS) $(LIBS) mod_dnssd.c
-
-install: mod_dnssd.la
- $(APXS) -i -a mod_dnssd.la
-
-clean:
- rm -rf *.o *.so *.loT .deps/ *.la *.lo *.slo .libs
-
-reload: install restart
-
-start:
- $(APACHECTL) start
-
-restart:
- $(APACHECTL) restart
-
-stop:
- $(APACHECTL) stop
-
-.PHONY: all install clean reload start restart stop