summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2021-10-07 10:26:37 +0200
committerxengineering <me@xengineering.eu>2021-10-07 10:26:37 +0200
commit4097ba01653f6c7eb5d46869a014e12e8eb491aa (patch)
treecc10d55e9d52cc40a76958342bea2cc132523b0d /src
parent74aa75b1d11d2e99b4fc6060699846ff7f362f96 (diff)
downloadxbackup-4097ba01653f6c7eb5d46869a014e12e8eb491aa.tar
xbackup-4097ba01653f6c7eb5d46869a014e12e8eb491aa.tar.zst
xbackup-4097ba01653f6c7eb5d46869a014e12e8eb491aa.zip
Fix Bug in Build Process
Diffstat (limited to 'src')
-rw-r--r--src/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 6797f80..5401e84 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,12 +4,16 @@
DESTDIR="" # leave empty for the current system or provide a fakeroot here
-.PHONY: clean install
+.PHONY: all clean install
+
+
+all:
+ python3 setup.py build
clean:
rm -rf build
-install:
+install: all
python3 setup.py install --root=$(DESTDIR) --optimize=1 --skip-build