1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- PYTHON=`which python`
- DESTDIR=/
- BUILDIR=$(CURDIR)/debian/python-scattnlay
- PROJECT=python-scattnlay
- VERSION=0.3.1
- all:
- @echo "make source - Create source package"
- @echo "make cython - Convert Cython code to c++"
- @echo "make python_ext - Create Python extension using C++ code"
- @echo "make cython_ext - Create Python extension using Cython code"
- @echo "make install - Install on local system"
- @echo "make buildrpm - Generate a rpm package"
- @echo "make builddeb - Generate a deb package"
- @echo "make standalone - Create a standalone program"
- @echo "make clean - Delete temporal files"
- # make standalone
- source:
- $(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../
- cython: scattnlay.pyx
- cython --cplus scattnlay.pyx
- python_ext: nmie.cc bessel.cc py_nmie.cc scattnlay.cpp
- export CFLAGS='-std=c++11' && python setup.py build_ext --inplace
- cython_ext: nmie.cc bessel.cc py_nmie.cc scattnlay.pyx
- export CFLAGS='-std=c++11' && python setup_cython.py build_ext --inplace
- install:
- $(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)
- buildrpm:
- #$(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall
- $(PYTHON) setup.py bdist_rpm --dist-dir=../
- builddeb:
- # build the source package in the parent directory
- # then rename it to project_version.orig.tar.gz
- $(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../ --prune
- rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../*
- # build the package
- export CFLAGS='-std=c++11' && dpkg-buildpackage -i -I -rfakeroot
- standalone: standalone.cc nmie.cc bessel.cc
- export CFLAGS='-std=c++11' && c++ -DNDEBUG -O2 -Wall -std=c++11 standalone.cc nmie.cc bessel.cc -lm -o scattnlay
- mv scattnlay ../
- clean:
- $(PYTHON) setup.py clean
- $(MAKE) -f $(CURDIR)/debian/rules clean
- rm -rf build/ MANIFEST
- find . -name '*.pyc' -delete
- find . -name '*.o' -delete
- find . -name '*.so' -delete
|