diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile index c3a3660..a720671 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,14 +1,11 @@ -# vim: shiftwidth=4 tabstop=4 noexpandtab +# vim: shiftwidth=4 softtabstop=4 tabstop=4 noexpandtab + DESTDIR="" # leave empty for the current system or provide a fakeroot here -.PHONY: all clean install -all: - python setup.py build +.PHONY: install -clean: - rm -rf build -install: all - python setup.py install --root=$(DESTDIR) --optimize=1 --skip-build +install: + python3 setup.py install --root=$(DESTDIR) --optimize=1 --skip-build |