blob: 65dc4355c37719db2ec78ef88c90aebc8ac78f23 (
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
|
##
## Makefile -- Build procedure for sample httpauth Apache module
## Autogenerated via ``apxs -n httpauth -g''.
##
builddir=.
top_srcdir=/etc/httpd
top_builddir=/etc/httpd
include /usr/lib/httpd/build/special.mk
# the used tools
APXS=apxs
APACHECTL=apachectl
# additional defines, includes and libraries
#DEFS=-Dmy_define=my_value
INCLUDES=-I../ -I../common/
#LIBS=-Lmy/lib/dir -lmylib
all: local-shared-build
install: install-modules
clean:
-rm -f mod_httpauth.o mod_httpauth.lo mod_httpauth.slo mod_httpauth.la
# install and activate shared object by reloading Apache to
# force a reload of the shared object file
reload: install restart
# the general Apache start/restart/stop procedures
start:
$(APACHECTL) start
restart:
$(APACHECTL) restart
stop:
$(APACHECTL) stop
|