#!/bin/csh

setenv CURRENT_CC '/usr/bin/g++ -static -O3 '

set dlist = ( libstat libafn libpdb libgsq libaln libstarc)

# cd  /usr/local/projects/aneuwald/code/
foreach name ($dlist)
        if(!(-d lib/$name)) then
                echo " skipping $name "
                continue
        endif
#        echo " --------- $name --------"
        cd lib/$name/
        make; cd -
end

bell;bell;bell


