You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
342 B
Makefile
18 lines
342 B
Makefile
.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" \
|
|
< $< > $@
|