-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile
33 lines (25 loc) · 892 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: all install shellcheck yadl
all: yadl
yadl:
cd pi-yadl && make
install:
cp -v systemd/* /etc/systemd/system/
systemctl daemon-reload
systemctl start weather-station-gatherer.service
systemctl start weather-station-gatherer.timer
systemctl enable weather-station-gatherer.timer
systemctl start weather-station-create-graphs.service
systemctl start weather-station-create-graphs.timer
systemctl enable weather-station-create-graphs.timer
systemctl start argent-80422-gatherer.service
systemctl enable argent-80422-gatherer.service
systemctl start power-savings.service
systemctl enable power-savings.service
shellcheck:
shellcheck bin/create-graphs.sh
shellcheck bin/create-rrds.sh
shellcheck bin/download-weather-stats.sh
shellcheck bin/gather-data.sh
shellcheck bin/power-savings
shellcheck bin/weather-underground-publish.sh
cd pi-yadl && make shellcheck