From cce4dd8af1ceec9ad9c1097ee584af87e4033a2a Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 10 Jun 2021 11:10:57 +0200 Subject: Implement basic Structure and Buildsystem --- python/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 python/Makefile (limited to 'python/Makefile') diff --git a/python/Makefile b/python/Makefile new file mode 100644 index 0000000..c3a3660 --- /dev/null +++ b/python/Makefile @@ -0,0 +1,14 @@ +# vim: shiftwidth=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 + +clean: + rm -rf build + +install: all + python setup.py install --root=$(DESTDIR) --optimize=1 --skip-build -- cgit v1.2.3-70-g09d2