1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.SUFFIXES: .in FILES = httpd.conf srm.conf access.conf mime.types \ htdig.conf htdig.conf2 htdig.conf3 all: $(FILES) clean: rm -fr $(FILES) .in: sed -e "s/_USER_/$(user)/g" \ -e "s|_TESTDIR_|$(testdir)|g" \ -e "s|_SRCDIR_|$(srcdir)|g" \ -e "s|_MODULES_|$(modules)|g" \ -e "s|_PORT_|7400|g" \ < $< > $@