# Makefile default : component ## to make the shared library with wrapper for a component component : if test ! -f MakeIncl.ChemSys ; then ./configure ; fi cd lib; make ; cd .. cd prep_tables; make ; cd .. cd src; make ; cd .. static_lib : if test ! -f MakeIncl.ChemSys ; then ./configure ; fi cd lib ; make ; cd .. cd prep_tables; make ; cd .. cd src ; make -f Makefile.static ; cd .. clean: cd src ; make clean ; make -f Makefile.static clean ; cd .. cd lib ; make clean ; cd .. cd prep_tables ; make clean ; cd .. localdistclean : clean cd lib ; make distclean ; cd .. cd prep_tables ; make distclean ; cd .. /bin/rm -f MakeIncl.ChemSys config.log config.status distclean : clean localdistclean cd ccaComponent ; rm -f *.cca ; cd .. install : cd src ; make install ; cd .. uninstall : cd src ; make uninstall ; cd ..