meillo@6: # Makefile by markus schnalke meillo@6: # heavily based on Makefile.am written by oliver kurth meillo@6: meillo@63: all: test test.conf meillo@46: mkdir -p ./input ./lock meillo@6: meillo@63: test.conf: test.conf.tpl meillo@46: # fails if the current path contains `^'. meillo@63: sed "s/SMTP_HOST/`hostname`/; s^PWD^`pwd`^" $< >$@ meillo@6: meillo@63: test: test.tpl meillo@63: sed s/RECV_HOST/`hostname`/ $< >$@ meillo@63: chmod +x $@ meillo@6: meillo@6: clean: meillo@63: rm -f test.conf test meillo@63: meillo@63: realclean: clean meillo@46: rm -rf ./input ./lock meillo@63: rm -f *.log `logname`