## ## Makefile -- Build procedure for sample auth_mailman Apache module ## Autogenerated via ``apxs -n auth_mailman -g''. ## builddir=. top_srcdir=@apache_dir@ top_builddir=@apache_dir@ include /usr/local/apache2/build/special.mk # the used tools APXS=apxs APACHECTL=apachectl # additional defines, includes and libraries #DEF=-Dmy_define=my_value #INC=-Imy/include/dir #LIB=-Lmy/lib/dir -lmylib # the default target all: local-shared-build # install the shared object file into Apache install: install-modules # cleanup clean: -rm -f mod_auth_mailman.o mod_auth_mailman.lo mod_auth_mailman.slo mod_auth_mailman.la # simple test test: reload lynx -mime_header http://localhost/auth_mailman # 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