Files
cantera/Cantera/python/Makefile.in

50 lines
1.1 KiB
Makefile
Raw Normal View History

2003-04-14 17:57:48 +00:00
#/bin/sh
###############################################################
# $Author$
# $Date$
# $Revision$
#
# Copyright 2001 California Institute of Technology
# See file License.txt for licensing information
#
###############################################################
2003-04-20 04:59:05 +00:00
CANTERA_LIBDIR= @buildlib@
2003-04-20 04:04:16 +00:00
LIB_DEPS = $(CANTERA_LIBDIR)/libcantera.a $(CANTERA_LIBDIR)/libzeroD.a \
$(CANTERA_LIBDIR)/liboneD.a $(CANTERA_LIBDIR)/libconverters.a
SRCS = src/ctphase_methods.cpp \
src/ctthermo_methods.cpp \
src/ctkinetics_methods.cpp \
src/cttransport_methods.cpp \
src/ctxml_methods.cpp \
src/ctflow_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/methods.h
all: _build
_build: $(SRCS) $(LIB_DEPS)
2003-04-14 17:57:48 +00:00
touch src/pycantera.cpp
2003-04-20 04:04:16 +00:00
@PYTHON_CMD@ setup.py build
echo 'ok' > _build
2003-04-14 17:57:48 +00:00
install:
@PYTHON_CMD@ setup.py install
clean:
@PYTHON_CMD@ setup.py clean
cd src; rm -f *.o
depends:
echo '-'
# end of file