annotate new.bash @ 71:dd21c8e13074

start coding on new config syntax
author carl
date Sat, 09 Jul 2005 19:24:41 -0700
parents
children 2b369f7db7bf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
71
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
1 #!/bin/bash
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
2
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
3 ############################
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
4 ## compile and run the new parser program
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
5 ##
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
6 rm -f new.o context.o tokenizer.o
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
7 g++ -c new.cpp context.cpp tokenizer.cpp
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
8 if [ $? -ne 0 ]; then
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
9 echo "compiler errors"
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
10 exit
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
11 fi
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
12 g++ -o new new.o context.o tokenizer.o -pthread
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
13 if [ $? -ne 0 ]; then
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
14 echo "linker errors"
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
15 exit
dd21c8e13074 start coding on new config syntax
carl
parents:
diff changeset
16 fi