summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2021-02-11 17:37:58 +0100
committerxengineering <mail2xengineering@protonmail.com>2021-02-11 17:37:58 +0100
commitf830274cb0c4f1efec2313f72007741957b86e76 (patch)
tree19aa8036db3f955d48e97b612881fede83966227 /Makefile
parentbc6b03ab29703dfff857b63727657ca3127eb381 (diff)
downloadweb-template-f830274cb0c4f1efec2313f72007741957b86e76.tar
web-template-f830274cb0c4f1efec2313f72007741957b86e76.tar.zst
web-template-f830274cb0c4f1efec2313f72007741957b86e76.zip
Implement Framework Installation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 9fe5771..bf9f0ca 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,8 @@
all:
- mkdir -p systemd/build
- python3 manage.py build_systemd_files
- mkdir -p flask/build
- python3 manage.py build_flask_files
+ python3 manage.py build_systemd_file
+ python3 manage.py build_framework
clean:
rm -rf systemd/build
@@ -13,9 +11,11 @@ clean:
install: all
python3 manage.py install_webroot
- #find systemd/build -type f -exec sudo install -Dm 644 "{}" "/etc/systemd/system" \;
+ python3 manage.py install_framework
+ python3 manage.py install_systemd_file
uninstall:
python3 manage.py uninstall_webroot
- #python3 manage.py uninstall_systemd_files
+ python3 manage.py uninstall_framework
+ python3 manage.py uninstall_systemd_file