.SUFFIXES: .in

FILES = httpd.conf srm.conf access.conf mime.types

all: $(FILES)

clean: 
	rm -fr $(FILES)

.in:
	sed -e 's/_USER_/$(user)/g' \
	    -e 's|_TESTDIR_|$(testdir)|g' \
	    -e 's|_MODULES_|$(modules)|g' \
	< $< > $@
