summaryrefslogtreecommitdiff
path: root/apache2x/Makefile.in
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2007-06-01 13:41:28 +0000
committerStef Walter <stef@memberwebs.com>2007-06-01 13:41:28 +0000
commit31bc540962d8e52939f5dfddba02bb54a39e403d (patch)
tree56310dc23f5b9e292c47fbf7109ff969a8c0b8c3 /apache2x/Makefile.in
parent20cde33c0b943c77a7c9d8d5d9c3d9281a6b13a5 (diff)
make distcheck fixes
Diffstat (limited to 'apache2x/Makefile.in')
-rw-r--r--apache2x/Makefile.in30
1 files changed, 0 insertions, 30 deletions
diff --git a/apache2x/Makefile.in b/apache2x/Makefile.in
deleted file mode 100644
index 2244be8..0000000
--- a/apache2x/Makefile.in
+++ /dev/null
@@ -1,30 +0,0 @@
-
-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 -c -Wc,-g -Wc,-O0 $(DEF) $(INC) $(LIB) mod_httpauth.c
-
-# 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
-