From 70ae67877828bc17352dd8ae0f6fe02643ba990e Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 17 Sep 2020 12:02:22 +0200 Subject: Implement Installation with Make --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..16b3ccd --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ + +.PHONY: install uninstall + +install : + install -Dm 644 "main.py" "/usr/share/eu.xengineering.picontrol/main.py" + install -Dm 644 "picontrol.service" "/usr/lib/systemd/system/picontrol.service" + install -Dm 644 "static/css/style.css" "/usr/share/eu.xengineering.picontrol/static/css/style.css" + install -Dm 644 "static/img/favicon.ico" "/usr/share/eu.xengineering.picontrol/static/img/favicon.ico" + install -Dm 644 "static/js/api_client.js" "/usr/share/eu.xengineering.picontrol/static/js/api_client.js" + install -Dm 644 "templates/index.html" "/usr/share/eu.xengineering.picontrol/templates/index.html" + +uninstall : + rm -f /usr/lib/systemd/system/picontrol.service + rm -rf /usr/share/eu.xengineering.picontrol/ -- cgit v1.2.3-70-g09d2