Mercurial > masqmail
annotate tests/Makefile @ 10:26e34ae9a3e3
changed indention and line wrapping to a more consistent style
author | meillo@marmaro.de |
---|---|
date | Mon, 27 Oct 2008 16:23:10 +0100 |
parents | 969bc91ff13b |
children | 3cb6f383f07e |
rev | line source |
---|---|
7
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
1 # Makefile by markus schnalke <meillo@marmaro.de> |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
2 # heavily based on Makefile.am written by oliver kurth |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
3 |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
4 all: test.conf local.sh smtpout.sh |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
5 |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
6 |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
7 test.conf: conf.templ |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
8 sed s/SMTP_HOST/`hostname`/ conf.templ > test.conf |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
9 |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
10 local.sh: test.templ |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
11 sed s/RECV_HOST/localhost/ test.templ > local.sh |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
12 chmod ugo+x local.sh |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
13 |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
14 smtpout.sh: test.templ |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
15 sed s/RECV_HOST/`hostname`/ test.templ > smtpout.sh |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
16 chmod ugo+x smtpout.sh |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
17 |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
18 clean: |
969bc91ff13b
removed docs from Makefiles; stuff about last commit
meillo@marmaro.de
parents:
diff
changeset
|
19 rm -f test.conf local.sh smtpout.sh |