comparison new.bash @ 73:2b369f7db7bf

start coding on new config syntax
author carl
date Sun, 10 Jul 2005 13:28:33 -0700
parents dd21c8e13074
children b7449114ebb0
comparison
equal deleted inserted replaced
72:e6a2d0be7c5e 73:2b369f7db7bf
1 #!/bin/bash 1 #!/bin/bash
2 2
3 ############################ 3 ############################
4 ## compile and run the new parser program 4 ## compile and run the new parser program
5 ## 5 ##
6 rm -f new.o context.o tokenizer.o 6 rm -f dnsbl.o scanner.o context.o tokenizer.o
7 g++ -c new.cpp context.cpp tokenizer.cpp 7 g++ -c dnsbl.cpp scanner.cpp context.cpp tokenizer.cpp
8 if [ $? -ne 0 ]; then 8 if [ $? -ne 0 ]; then
9 echo "compiler errors" 9 echo "compiler errors"
10 exit 10 exit
11 fi 11 fi
12 g++ -o new new.o context.o tokenizer.o -pthread 12 g++ -o dnsbl dnsbl.o scanner.o context.o tokenizer.o -pthread
13 if [ $? -ne 0 ]; then 13 if [ $? -ne 0 ]; then
14 echo "linker errors" 14 echo "linker errors"
15 exit 15 exit
16 fi 16 fi