diff options
author | John Denker <jsd@av8n.com> | 2012-06-02 09:07:44 -0700 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2012-06-02 17:30:23 -0700 |
commit | 32e75879103a943ac682cbde7b37ea4e4fbc24ab (patch) | |
tree | e734de5ec0cb5ece57d0f5aa01f6731a11f86a9b /tools/makefile | |
parent | 9c9c853dd2c7b4b174fd435d092bb43e737b8b35 (diff) |
add some tools
Diffstat (limited to 'tools/makefile')
-rw-r--r-- | tools/makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/makefile b/tools/makefile new file mode 100644 index 0000000..e87fa57 --- /dev/null +++ b/tools/makefile @@ -0,0 +1,32 @@ +CC= /usr/bin/g++ -Wall -g -I $(HOME)/lib/include + + +#?? exhibits = checkpassword.patch hi-q.c pido.c pop3.conf smtp.conf \ +#?? smtp.rules spamc-zap.patch spamd qmail + + +.PHONY : shipit clean list-src ALWAYS foo dirs setup imgs \ + zip wc html all hacha hevea tcprules + +.SECONDARY : # do not remove any intermediate files + +all: pido hi-q + +install: + install pido hi-q /var/qmail/bin/ + +/etc/tcpserver/smtp.rules : + install -d /etc/tcpserver + @echo '10.:allow,RELAYCLIENT=""' > $@ + @echo '127.0.0.:allow,RELAYCLIENT=""' >> $@ + @echo ':allow' >> $@ + +tcprules : /etc/tcpserver/smtp.rules + < $< tcprules /etc/tcpserver/smtp.cdb /etc/tcpserver/smtp.tmp + + +ALWAYS: + @echo ... + +##?? include $(chapters:.htm=.d) +##?? include $(fancy:%.htm=aux/%.fig) |