From 31bc540962d8e52939f5dfddba02bb54a39e403d Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 1 Jun 2007 13:41:28 +0000 Subject: make distcheck fixes --- apache1x/Makefile.am | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 apache1x/Makefile.am (limited to 'apache1x/Makefile.am') diff --git a/apache1x/Makefile.am b/apache1x/Makefile.am new file mode 100644 index 0000000..d043935 --- /dev/null +++ b/apache1x/Makefile.am @@ -0,0 +1,33 @@ + +EXTRA_DIST = mod_httpauth.c + +DEF= +INC=-I../ -I../common/ + +all: mod_httpauth.so + + +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 + + -- cgit v1.2.3