summaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
blob: 85b96947412d06188ea4932e351506e95ab3bd2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# $Id$

APXS=@APXS@
APACHECTL=@APACHECTL@
LIBS=-Wl,"@LIBS@" @AVAHI_LIBS@
CFLAGS=-Wc,"@CFLAGS@" @AVAHI_CFLAGS@

all: mod_dnssd.la

mod_dnssd.la: @srcdir@/mod_dnssd.c
	$(APXS) -c $(CFLAGS) $(LIBS) @srcdir@/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: @srcdir@/Makefile.in
	(cd .. && ./config.status )


.PHONY: all install clean reload start restart stop mostlyclean distclean maintainer-clean distdir