#   the used tools
APXS=/usr/local/lib/httpd/bin/apxs

#   the default target
all: mod_xslt.so

#   compile the shared object file
mod_xslt.so: mod_xslt.c
	$(APXS) -c mod_xslt.c -o mod_xslt.so

#   cleanup
clean:
	-rm -f mod_xslt.o mod_xslt.so

#   simple test
test:
	lynx -mime_header http://localhost/xslt/



