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