Mercurial > masqmail-0.2
annotate tests/Makefile @ 16:163aa299bedb
fixed man pages
added backslashes to dashes (to satisfy Debian)
removed wrong sentence about /etc/aliases. Thanks to Alexis. (Closes Debian bug #480477)
fixed typos reported by Reuben Thomas. (Closes Debian bug #427096)
author | meillo@marmaro.de |
---|---|
date | Thu, 06 Nov 2008 09:33:32 +0100 |
parents | c9bce6bb2a5d |
children | 3cb6f383f07e |
rev | line source |
---|---|
6 | 1 # Makefile by markus schnalke <meillo@marmaro.de> |
2 # heavily based on Makefile.am written by oliver kurth | |
3 | |
4 all: test.conf local.sh smtpout.sh | |
5 | |
6 | |
7 test.conf: conf.templ | |
8 sed s/SMTP_HOST/`hostname`/ conf.templ > test.conf | |
9 | |
10 local.sh: test.templ | |
11 sed s/RECV_HOST/localhost/ test.templ > local.sh | |
12 chmod ugo+x local.sh | |
13 | |
14 smtpout.sh: test.templ | |
15 sed s/RECV_HOST/`hostname`/ test.templ > smtpout.sh | |
16 chmod ugo+x smtpout.sh | |
17 | |
18 clean: | |
19 rm -f test.conf local.sh smtpout.sh |