Mercurial > masqmail
annotate tests/makefile @ 239:31ee44f45787
refactored alias.c heavily
especially substituted the loop-based alias_expand()
with a recursive approach. Now alias_expand() wraps
alias_one() which recursively expands aliases.
In principle the ``data processing'' is the same but
now it's clearer structured and thus easier to understand
IMO.
The loop might have been faster but I don't care for
speed -- the most simple solution is the best. It's fast
enough, that is sufficient.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 25 Oct 2010 15:35:28 -0300 |
parents | 49ca781e1503 |
children |
rev | line source |
---|---|
6 | 1 |
63 | 2 all: |
3 cd hostname-stdin && make | |
4 cd localhost-stdin && make | |
5 cd relay-to-localhost-mta && make | |
6 cd relay-to-hostname-mta && make | |
6 | 7 |
63 | 8 run: all |
9 cd hostname-stdin && ./test | |
10 cd localhost-stdin && ./test | |
11 cd relay-to-localhost-mta && ./test | |
12 cd relay-to-hostname-mta && ./test | |
6 | 13 |
14 clean: | |
63 | 15 cd hostname-stdin && make clean |
16 cd localhost-stdin && make clean | |
17 cd relay-to-localhost-mta && make clean | |
18 cd relay-to-hostname-mta && make clean | |
19 | |
20 realclean: | |
21 cd hostname-stdin && make realclean | |
22 cd localhost-stdin && make realclean | |
23 cd relay-to-localhost-mta && make realclean | |
24 cd relay-to-hostname-mta && make realclean |