Mercurial > dnsbl
view new.bash @ 92:505e77188317
optimize verification step, cleanup documentation
author | carl |
---|---|
date | Wed, 21 Sep 2005 08:00:08 -0700 |
parents | b7449114ebb0 |
children |
line wrap: on
line source
#!/bin/bash ############################ ## compile and run the new parser program ## rm -f dnsbl.o scanner.o context.o tokenizer.o g++ -c -pthread dnsbl.cpp scanner.cpp context.cpp tokenizer.cpp if [ $? -ne 0 ]; then echo "compiler errors" exit fi g++ -o dnsbl dnsbl.o scanner.o context.o tokenizer.o /usr/lib/libresolv.a -lmilter -pthread if [ $? -ne 0 ]; then echo "linker errors" exit fi