mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
32 lines
505 B
Makefile
Executable File
32 lines
505 B
Makefile
Executable File
#/bin/sh
|
|
###############################################################
|
|
# $Author$
|
|
# $Date$
|
|
# $Revision$
|
|
#
|
|
# Copyright 2001 California Institute of Technology
|
|
# See file License.txt for licensing information
|
|
#
|
|
###############################################################
|
|
|
|
all: refresh
|
|
@PYTHON_CMD@ setup.py build
|
|
|
|
refresh: $(LIB_DEPS)
|
|
touch src/pycantera.cpp
|
|
|
|
install:
|
|
@PYTHON_CMD@ setup.py install
|
|
|
|
clean:
|
|
@PYTHON_CMD@ setup.py clean
|
|
cd src; rm -f *.o
|
|
|
|
depends:
|
|
echo '-'
|
|
|
|
# end of file
|
|
|
|
|
|
|