blob: 9fe57718ced497772cb1a79657c75d983f824769 (
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:
mkdir -p systemd/build
python3 manage.py build_systemd_files
mkdir -p flask/build
python3 manage.py build_flask_files
clean:
rm -rf systemd/build
rm -rf flask/build
install: all
python3 manage.py install_webroot
#find systemd/build -type f -exec sudo install -Dm 644 "{}" "/etc/systemd/system" \;
uninstall:
python3 manage.py uninstall_webroot
#python3 manage.py uninstall_systemd_files
|