#
# setup and test
#

######################################################################
# Archived library test
######################################################################

# Create Makefile
makecint -mk Makefile -o Complex -H Complex.h -C++ Complex.C

# Compile 
make clean
make

# Test
cint Complex.C test.C # All interpreted
./Complex test.C        # class Complex precompiled

cint Complex.C test.C > cint.out
./Complex test.C        > CC.out
diff cint.out CC.out
rm *.out

