summaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
new file mode 100644
index 0000000..c16ff43
--- /dev/null
+++ b/src/Makefile.in
@@ -0,0 +1,39 @@
+# $Id$
+
+APXS=@APXS@
+APACHECTL=@APACHECTL@
+LIBS=-Wl,"@LIBS@" @AVAHI_LIBS@
+CFLAGS=-Wc,"@CFLAGS@" @AVAHI_CFLAGS@
+
+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
+
+mostlyclean: clean
+distclean: clean
+maintainer-clean: clean
+ rm -f Makefile
+
+Makefile: Makefile.in
+ (cd .. && ../configure.status )
+
+
+.PHONY: all install clean reload start restart stop mostlyclean distclean maintainer-clean