From 6275f13d02b68d54b186036a2abea91150be6388 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Wed, 10 May 2006 18:05:02 +0000 Subject: Use autoconf properly --- apache2x/Makefile.am | 31 ------------------------------- apache2x/Makefile.in | 31 +++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 apache2x/Makefile.am create mode 100644 apache2x/Makefile.in diff --git a/apache2x/Makefile.am b/apache2x/Makefile.am deleted file mode 100644 index 4b959cb..0000000 --- a/apache2x/Makefile.am +++ /dev/null @@ -1,31 +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 - $(SH_LINK) -rpath $(libexecdir) -module -avoid-version mod_httpauth.lo - -# 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 - diff --git a/apache2x/Makefile.in b/apache2x/Makefile.in new file mode 100644 index 0000000..625bc7d --- /dev/null +++ b/apache2x/Makefile.in @@ -0,0 +1,31 @@ + +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 + @SH_LINK@ -rpath $(libexecdir) -module -avoid-version mod_httpauth.lo + +# 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 + -- cgit v1.2.3