36 lines
No EOL
747 B
Makefile
36 lines
No EOL
747 B
Makefile
#
|
|
# $Revision$
|
|
# $Author$
|
|
# $Date$
|
|
#
|
|
all: kernel
|
|
|
|
install: templates-install
|
|
|
|
kernel:
|
|
cd src; @MAKE@
|
|
cd testtools; @MAKE@
|
|
|
|
apps-install:
|
|
@INSTALL@ -d @prefix@/bin
|
|
@INSTALL@ ../bin/ck2ctml @prefix@/bin
|
|
|
|
clean:
|
|
$(RM) *.*~
|
|
cd src; @MAKE@ clean
|
|
cd testtools; @MAKE@ clean
|
|
|
|
docs:
|
|
cd doxygen/Cantera; doxygen Cantera.cfg
|
|
|
|
depends:
|
|
cd src; @MAKE@ depends
|
|
cd testtools; @MAKE@ depends
|
|
|
|
templates-install:
|
|
@INSTALL@ -d @prefix@/cantera/templates
|
|
@INSTALL@ -d @prefix@/cantera/templates/f77
|
|
@INSTALL@ -m 644 templates/f77/*.cpp @prefix@/cantera/templates/f77
|
|
@INSTALL@ -m 644 templates/f77/*.f @prefix@/cantera/templates/f77
|
|
@INSTALL@ -m 644 templates/f77/*.mak @prefix@/cantera/templates/f77
|
|
chown -R @username@ @prefix@/cantera/templates
|