##
##  Makefile -- Build procedure for sample pagekite Apache module
##  Autogenerated via ``apxs -n pagekite -g''.
##

builddir=.
top_srcdir=/usr/share/apache2
top_builddir=/usr/share/apache2
include /usr/share/apache2/build/special.mk

#   the used tools
APXS=apxs
APACHECTL=apachectl

#   additional defines, includes and libraries
#DEFS=-Dmy_define=my_value
INCLUDES=-I../../include/
LIBS=-L../../lib -lpagekite

#   the default target
all: local-shared-build

#   install the shared object file into Apache 
install: install-modules-yes

#   cleanup
clean:
	-rm -f mod_pagekite.o mod_pagekite.lo mod_pagekite.slo mod_pagekite.la 

#   simple test
test: reload
	lynx -mime_header http://localhost/pagekite

#   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

