cantera/Cantera/Makefile.in
2003-04-14 17:57:48 +00:00

51 lines
963 B
Makefile
Executable file

#/bin/sh
###############################################################
# $Author$
# $Date$
# $Revision$
#
# Copyright 2001 California Institute of Technology
# See file License.txt for licensing information
#
# $Log$
# Revision 1.1 2003-04-14 17:57:49 dggoodwin
# Initial revision
#
# Revision 1.6 2002/12/16 13:25:57 dgg
# *** empty log message ***
#
# Revision 1.5 2002/08/24 23:25:06 dgg
# *** empty log message ***
#
# Revision 1.4 2002/08/14 07:37:42 dgg
# *** empty log message ***
#
# Revision 1.3 2002/01/12 06:43:42 dgg
# *** empty log message ***
#
###############################################################
build_f90=@BUILD_F90@
build_python=@BUILD_PYTHON@
all:
cd src; @MAKE@
ifeq ($(build_f90),1)
cd fortran; @MAKE@
endif
clean:
$(RM) ../lib/libcantera.a
cd src; @MAKE@ clean
cd clib/src; @MAKE@ clean
cd python; @MAKE@ clean
depends:
cd src; @MAKE@ depends
cd clib/src; @MAKE@ depends
# end of file