# vim: tabstop=4 shiftwidth=4 noexpandtab all: python3 manage.py build_systemd_file python3 manage.py build_framework clean: rm -rf systemd/build rm -rf flask/build install: all python3 manage.py install_webroot python3 manage.py install_framework python3 manage.py install_systemd_file uninstall: python3 manage.py uninstall_webroot python3 manage.py uninstall_framework python3 manage.py uninstall_systemd_file