blob: bf9f0ca5d9e6da3900cd0fab1a7ce6d52961c78e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | # 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
 |