diff options
author | Stef Walter <stef@memberwebs.com> | 2005-09-12 22:28:11 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-09-12 22:28:11 +0000 |
commit | 9625707a85049607fc96338379e86e19b4a4fe94 (patch) | |
tree | 93aab682a5d351e0df02eca1243151d1bf4e43b3 /apache2x/Makefile | |
parent | 5f98cfb7716c1331d15e884b372a1ddfc23003b4 (diff) |
Added new Apache 2x module to httpauth
Diffstat (limited to 'apache2x/Makefile')
-rw-r--r-- | apache2x/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/apache2x/Makefile b/apache2x/Makefile new file mode 100644 index 0000000..65dc435 --- /dev/null +++ b/apache2x/Makefile @@ -0,0 +1,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 + |