summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-09-23 20:06:21 +0200
committerxengineering <me@xengineering.eu>2022-09-23 20:10:06 +0200
commit4a439a96abb04537152c99d170e84e79ae941ef1 (patch)
treed8636bab4c918bc71ea37d825139593f44c08ade /src/Makefile
parentae91c75df75678d504fd3d1fd4fdf416df9296dd (diff)
downloadxbackup-4a439a96abb04537152c99d170e84e79ae941ef1.tar
xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.tar.zst
xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.zip
Refactor folder structure
This removes the `install` target. Should be re-introduced later.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 5401e84..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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:
- python3 setup.py build
-
-
-clean:
- rm -rf build
-
-
-install: all
- python3 setup.py install --root=$(DESTDIR) --optimize=1 --skip-build