diff options
author | xengineering <me@xengineering.eu> | 2021-10-07 09:35:25 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-10-07 09:37:57 +0200 |
commit | c17edc9e2a2e67ae9ec84c561fc82b97a59542e1 (patch) | |
tree | 15a208197fa33f0d0f2d8a2f85ec9ea8dd58095c /src/Makefile | |
parent | d2a9b00c72ce6b5846a4d260a5d99c5db422723d (diff) | |
download | xbackup-c17edc9e2a2e67ae9ec84c561fc82b97a59542e1.tar xbackup-c17edc9e2a2e67ae9ec84c561fc82b97a59542e1.tar.zst xbackup-c17edc9e2a2e67ae9ec84c561fc82b97a59542e1.zip |
Remove Arch Linux Packaging from this Source Repository
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 |