-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (23 loc) · 780 Bytes
/
Makefile
File metadata and controls
29 lines (23 loc) · 780 Bytes
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
PYTHON=`which python`
DESTDIR=/
BUILDIR=$(CURDIR)/debian/sinfo
PROJECT=sinfo
VERSION=0.2.0
all:
@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 clean - Get rid of scratch and byte files"
source:
$(PYTHON) setup.py sdist $(COMPILE)
install:
$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)
buildrpm:
$(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall
builddeb:
$(PYTHON) setup.py --command-packages=stdeb.command sdist_dsc --extra-cfg-file=$(PROJECT).cfg bdist_deb
clean:
$(PYTHON) setup.py clean
rm -rf build/ MANIFEST deb_dist/ dist/
find . -name '*.pyc' -delete