summaryrefslogtreecommitdiff
path: root/apache2x
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2006-05-10 18:05:02 +0000
committerStef Walter <stef@memberwebs.com>2006-05-10 18:05:02 +0000
commit6275f13d02b68d54b186036a2abea91150be6388 (patch)
tree9914a6f3d6752ac758d77615d4bda0189fe66484 /apache2x
parentfed608073dd4d452673793de5563c04115514341 (diff)
Use autoconf properly
Diffstat (limited to 'apache2x')
-rw-r--r--apache2x/Makefile.in (renamed from apache2x/Makefile.am)12
1 files changed, 6 insertions, 6 deletions
diff --git a/apache2x/Makefile.am b/apache2x/Makefile.in
index 4b959cb..625bc7d 100644
--- a/apache2x/Makefile.am
+++ b/apache2x/Makefile.in
@@ -6,13 +6,13 @@ 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
+ @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
+ @APXS@ -i -a -c -Wc,-g -Wc,-O0 $(DEF) $(INC) $(LIB) mod_httpauth.c
# cleanup
clean:
@@ -23,9 +23,9 @@ reload: install restart
# the general Apache start/restart/stop procedures
start:
- $(APACHECTL) start
+ @APACHECTL@ start
restart:
- $(APACHECTL) restart
+ @APACHECTL@ restart
stop:
- $(APACHECTL) stop
+ @APACHECTL@ stop