summaryrefslogtreecommitdiff
path: root/apache1x/Makefile
blob: b398959cf2b63baed01d2a58c8214ed52c9f2ca1 (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
40
##
##  Makefile -- Build procedure for sample httpauth Apache module
##  Autogenerated via ``apxs -n httpauth -g''.
##

#   the used tools
APXS=apxs
APACHECTL=apachectl

#   additional user defines, includes and libraries
#DEF=-Dmy_define=my_value
INC=-I../ -I../common/

#   the default target
all: mod_httpauth.so

#   compile the DSO file
mod_httpauth.so: mod_httpauth.c ../common/sock_any.c
	$(APXS) -c -Wc,-g -Wc,-O0 $(DEF) $(INC) $(LIB) mod_httpauth.c

#   install the DSO file into the Apache installation
#   and activate it in the Apache configuration
install: all
	$(APXS) -i -a -n 'httpauth' mod_httpauth.so

#   cleanup
clean:
	-rm -f mod_httpauth.o mod_httpauth.so

#   reload the module by installing and restarting Apache
reload: install restart

#   the general Apache start/restart/stop procedures
start:
	$(APACHECTL) start
restart:
	$(APACHECTL) restart
stop:
	$(APACHECTL) stop