Mercurial > masqmail-0.2
view tests/Makefile @ 35:9bf8b9f0f09d
fixed unexpanded $prefix in template paths
i.e. I hacked the AutoHELLstuff even more ugly :-/
author | meillo@marmaro.de |
---|---|
date | Fri, 07 May 2010 16:42:58 +0200 |
parents | c9bce6bb2a5d |
children | 3cb6f383f07e |
line wrap: on
line source
# Makefile by markus schnalke <meillo@marmaro.de> # heavily based on Makefile.am written by oliver kurth all: test.conf local.sh smtpout.sh test.conf: conf.templ sed s/SMTP_HOST/`hostname`/ conf.templ > test.conf local.sh: test.templ sed s/RECV_HOST/localhost/ test.templ > local.sh chmod ugo+x local.sh smtpout.sh: test.templ sed s/RECV_HOST/`hostname`/ test.templ > smtpout.sh chmod ugo+x smtpout.sh clean: rm -f test.conf local.sh smtpout.sh