1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
ROOT = $(shell pwd)
MAKEFILE = $(ROOT)/Makefile
SRC = $(ROOT)
PKG1 = $(SRC)/pysph
SUBPKG1 = base sph sph/solid_mech parallel tools
DIRS := $(foreach dir,$(SUBPKG1),$(PKG1)/$(dir))
# this is used for cython files on recursive call to make
PYX = $(wildcard *.pyx)
PYTHON=python3
PYTEST=pytest-3
CYTHON=cython3
MPI4PY_INCL = $(shell python -c "import mpi4py; print mpi4py.get_include()")
# the default target to make
all : build
.PHONY : $(DIRS) bench build
build :
$(PYTHON) setup.py build_ext --inplace
$(DIRS) :
cd $@; $(PYTHON) $(ROOT)/pyzoltan/core/generator.py
$(MAKE) -f $(MAKEFILE) -C $@ cythoncpp ROOT=$(ROOT)
%.c : %.pyx
$(PYTHON) `which $(CYTHON)` -I$(SRC) -I$(MPI4PY_INCL) $<
%.cpp : %.pyx
$(PYTHON) `which $(CYTHON)` --cplus -I$(SRC) -I$(MPI4PY_INCL) $<
%.html : %.pyx
$(PYTHON) `which $(CYTHON)` -I$(SRC) -I$(MPI4PY_INCL) -a $<
cython : $(PYX:.pyx=.c)
cythoncpp : $(PYX:.pyx=.cpp)
_annotate : $(PYX:.pyx=.html)
annotate :
for f in $(DIRS); do $(MAKE) -f $(MAKEFILE) -C $${f} _annotate ROOT=$(ROOT); done
clean :
$(PYTHON) setup.py clean
-for dir in $(DIRS); do rm -f $$dir/*.c; done
-for dir in $(DIRS); do rm -f $$dir/*.cpp; done
cleanall : clean
-for dir in $(DIRS); do rm -f $$dir/*.so; done
# -rm $(patsubst %.pyx,%.c,$(wildcard $(PKG)/*/*.pyx))
test :
$(PYTHON) `which $(PYTEST)` -m 'not slow' pysph
testall :
$(PYTHON) `which $(PYTEST)` pysph
epydoc :
$(PYTHON) cython-epydoc.py --config epydoc.cfg pysph
doc :
cd docs; make html
develop :
$(PYTHON) setup.py develop
install :
$(PYTHON) setup.py install
|