cantera/Cantera/cxx/Makefile.in
Harry Moffat 7fbef7cc0c Ok, think I fixed it. Added a demo results and added Makefile back into
repository so that demo problems run correctly in both directories
(and give the same result).
2004-04-22 21:14:51 +00:00

34 lines
648 B
Makefile

#/bin/sh
###############################################################
# $Author$
# $Date$
# $Revision$
#
# Copyright 2001 California Institute of Technology
# See file License.txt for licensing information
#
###############################################################
build_f90=@BUILD_F90@
build_python=@BUILD_PYTHON@
build_particles=@BUILD_PARTICLES@
all:
@INSTALL@ include/*.h ../../build/include/cantera
cd src; @MAKE@
cd demos; @MAKE@
clean:
cd src; @MAKE@ clean
cd demos; @MAKE@ clean
depends:
cd src; @MAKE@ depends
cd demos; @MAKE@ depends
install:
cd src; @MAKE@ install
cd demos; @MAKE@ install
# end of file