diff options
author | Stef Walter <stef@memberwebs.com> | 2006-05-10 17:52:22 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-05-10 17:52:22 +0000 |
commit | 2d99d0a2a883e23267e00b65d4bc2db1012919e3 (patch) | |
tree | 1c5048cf308ba95356560dc072af06709d999fc9 /apache1x/Makefile | |
parent | acca6d6c2add017534cf1326ea06cc857f189d52 (diff) |
Remove old 1x apache build file
Diffstat (limited to 'apache1x/Makefile')
-rw-r--r-- | apache1x/Makefile | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/apache1x/Makefile b/apache1x/Makefile deleted file mode 100644 index b398959..0000000 --- a/apache1x/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -## -## 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 - |