

echo '# First, compile everything'
g++ ehdemo.cxx
a.out
rm a.out

echo '# 2nd, compile ehdemo.h and interpret ehdemo.cxx'
echo '# This method is recommended.'
makecint -mk Makefile -dl ehdemo.dll -H ehdemo.h
make -f Makefile clean
make -f Makefile 
cint ehdemo.cxx

echo '# 3nd, interpret everything'
make -f Makefile clean
cint ehdemo.cxx
