Mercurial > masqmail
annotate tests/Makefile.am @ 5:3cafdebd1479
removed remaining reference to docs in Makefile
author | meillo@marmaro.de |
---|---|
date | Fri, 26 Sep 2008 22:15:26 +0200 |
parents | 08114f7dcc23 |
children |
rev | line source |
---|---|
0 | 1 test.conf: $(srcdir)/conf.templ |
2 sed s/SMTP_HOST/`hostname`/ $(srcdir)/conf.templ > test.conf | |
3 | |
4 local.sh: $(srcdir)/test.templ | |
5 sed s/RECV_HOST/localhost/ $(srcdir)/test.templ > local.sh | |
6 chmod ugo+x local.sh | |
7 | |
8 smtpout.sh: $(srcdir)/test.templ | |
9 sed s/RECV_HOST/`hostname`/ $(srcdir)/test.templ > smtpout.sh | |
10 chmod ugo+x smtpout.sh | |
11 | |
12 input/: | |
13 mkdir input | |
14 | |
15 all: test.conf local.sh smtpout.sh input/ | |
16 | |
17 EXTRA_DIST=conf.templ test.templ | |
18 | |
19 conf.templ: | |
20 test.templ: |