

all: install

compile:
	${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apxs -c mod_flvx.c

install: compile
	${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apxs -c -i -a mod_flvx.c

clean:
	/bin/rm -rf .libs
	/bin/rm -f *.o *.lo *.la *.slo

distclean: clean
	@echo "mod_flvx does not use autoconf, nothing to delete"

