view new.bash @ 72:e6a2d0be7c5e

start coding on new config syntax
author carl
date Sun, 10 Jul 2005 13:28:33 -0700
parents dd21c8e13074
children 2b369f7db7bf
line wrap: on
line source

#!/bin/bash

############################
## compile and run the new parser program
##
rm -f new.o context.o tokenizer.o
g++ -c new.cpp context.cpp tokenizer.cpp
if [ $? -ne 0 ]; then
    echo "compiler errors"
    exit
fi
g++ -o new new.o context.o tokenizer.o -pthread
if [ $? -ne 0 ]; then
    echo "linker errors"
    exit
fi