From c7093ba47710804ff8da32dc401fdef7f73171a4 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Tue, 12 May 2009 19:18:38 +0000 Subject: Initial import --- module/Makefile.am | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 module/Makefile.am (limited to 'module/Makefile.am') diff --git a/module/Makefile.am b/module/Makefile.am new file mode 100644 index 0000000..b303c5e --- /dev/null +++ b/module/Makefile.am @@ -0,0 +1,30 @@ + +EXTRA_DIST = mod_auth_singleid.c + +DEF = +INC = -I../ + +all: mod_auth_singleid.so + +mod_auth_singleid.so: mod_auth_singleid.c + @APXS@ -c -Wc,-g -Wc,-O0 -Wc,-Wall $(DEF) $(INC) $(LIB) mod_auth_singleid.c + +# Install the DSO file into the Apache installation and activate it in config +install: all + @APXS@ -i -a -c -Wc,-g -Wc,-O0 $(DEF) $(INC) $(LIB) mod_auth_singleid.c + +# Cleanup +clean: + -rm -f mod_auth_singleid.o mod_auth_singleid.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