Files
cantera/Cantera/python/Makefile.in
2007-05-04 15:18:40 +00:00

108 lines
2.8 KiB
Makefile
Executable File

#/bin/sh
###############################################################
# $Author$
# $Date$
# $Revision$
#
# Copyright 2001 California Institute of Technology
# See file License.txt for licensing information
#
###############################################################
have_python_site_package_topdir=@local_python_inst@
python_site_package_topdir=@python_prefix@
CANTERA_LIBDIR= @buildlib@
LIB_DEPS = $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libzeroD.a \
$(CANTERA_LIBDIR)/liboneD.a \
$(CANTERA_LIBDIR)/libtransport.a \
$(CANTERA_LIBDIR)/libclib.a \
$(CANTERA_LIBDIR)/libconverters.a
WIN_LIB_DEPS = $(CANTERA_LIBDIR)/cantera.lib $(CANTERA_LIBDIR)/zeroD.lib \
$(CANTERA_LIBDIR)/oneD.lib \
$(CANTERA_LIBDIR)/transport.lib
SRCS = src/ctphase_methods.cpp \
src/ctthermo_methods.cpp \
src/ctkinetics_methods.cpp \
src/cttransport_methods.cpp \
src/ctxml_methods.cpp \
src/ctfuncs.cpp \
src/ctsurf_methods.cpp \
src/ctbndry_methods.cpp \
src/ctrpath_methods.cpp \
src/ctreactor_methods.cpp \
src/ctfunc_methods.cpp \
src/ctonedim_methods.cpp \
src/methods.h
os_is_win = @OS_IS_WIN@
use_clib_dll = @USE_CLIB_DLL@
all: _build
win: _winbuild
#
# HKM -> Python seems to want to compile C++ code with the CC compiler.
# The fix is to assign the CC compiler to the CXX compiler.
# the double quotes are needed if the CXX variable is multi-token.
#
_build: $(SRCS) $(LIB_DEPS) Makefile setup.py
touch src/pycantera.cpp
/bin/rm -f _build
(CXX="@CXX@"; export CXX; CC="@CXX@"; export CC; @PYTHON_CMD@ setup.py build)
echo 'ok' > _build
#
# HKM -> If clib is built as a dll, it needs to be copied by hand to the
# site package directory.
#
ifeq ($(use_clib_dll), 1)
CLIB_DLL=../../build/lib/i686-pc-win32/clib.dll
CLIB_EXP=../../build/lib/i686-pc-win32/clib.exp
else
CLIB_DLL=
CLIB_EXP=
endif
_winbuild: $(SRCS) $(WIN_LIB_DEPS) $(CLIB_DLL)
touch src/pycantera.cpp
(@PYTHON_CMD@ setup.py build)
ifeq ($(use_clib_dll), 1)
ifeq ($(have_python_site_package_topdir), 1)
(@INSTALL@ -m 755 $(CLIB_DLL) $(CLIB_EXP) \
$(python_site_package_topdir)/lib/site-packages/Cantera)
endif
endif
echo 'ok' > _winbuild
minbuild:
(@PYTHON_CMD@ setup.py build)
install:
ifeq (@local_python_inst@,1)
(@PYTHON_CMD@ setup.py install --prefix="@python_win_prefix@")
else
(@PYTHON_CMD@ setup.py install)
endif
clean:
@PYTHON_CMD@ setup.py clean
rm -f _build; rm -f _winbuild
cd src; rm -f *.o
depends:
echo '-'
test:
cd examples; @PYTHON_CMD@ reactor1.py &> reactor1.out
cd examples; @PYTHON_CMD@ flame1.py &> flame1.out
cd examples; @PYTHON_CMD@ diamond.py &> diamond.out
cd examples; @PYTHON_CMD@ critProperties.py &> critProperties.out
# end of file