# $Id: Makefile,v 1.2 2002/09/16 18:05:21 toma Exp $

mod_witch.so: mod_witch.c
	apxs -c mod_witch.c

install: mod_witch.so
	if [ ! -d $(DESTDIR) ]; \
	then \
		mkdir -p $(DESTDIR); \
	fi
	install -s -m 644 mod_witch.so $(DESTDIR)

clean:
	rm -f mod_witch.so *~ *.o
