| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | PYTHON=`which python`DESTDIR=/BUILDIR=$(CURDIR)/debian/python-scattnlayPROJECT=python-scattnlayVERSION=0.3.0all:	@echo "make source - Create source package"	@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"source:	$(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../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	dpkg-buildpackage -i -I -rfakerootstandalone: standalone.cc nmie.cc ucomplex.cc	cc standalone.cc nmie.cc ucomplex.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
 |