diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |