-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
103 lines (71 loc) · 1.65 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
run_mini_project_2:
./scripts/mini_project2.sh
status:
./scripts/status.sh
tap:
./scripts/gnrc_border_router_tap.sh
broker:
./scripts/mqtt_broker_setup.sh
mqtt:
./scripts/emcute_mqttsn.sh
run_sensor:
./scripts/sensor_read_experiment.sh
.PHONY: border_router
border_router:
./scripts/gnrc_border_router.sh
sense:
./scripts/sensor-connected.sh
.PHONY: stop
stop:
./scripts/stoppers/stop_all.sh $(filter-out $@,$(MAKECMDGOALS))
stop_one:
iotlab-experiment stop
# run border router and network node, you get a shell to the network node where you can ping public ipv6 addresses
ping_to_google:
./scripts/ping_to_google.sh
# run border router node
gnrc_border_router:
./scripts/gnrc_border_router.sh
sensor2:
./scripts/sensor2.sh
compute_engine:
./scripts/compute_engine.sh
compute_engine_old:
./scripts/compute_engine_old.sh
# run border router and coap server in the same network
coap_server:
./scripts/coap_server.sh
coap:
./scripts/coap_testing.sh
coap:
./scripts/coap_testing.sh
clean_all: clean
./scripts/clean_all.sh
clean:
find ./src -type d -name bin -exec rm -rf {} +
rm -Rf bin
rm -Rf ~/shared/logs
rm -f ~/A8/*.elf
rm -f ~/A8/*.txt
rm -f ~/A8/*.conf
rm -f ~/shared/*.elf
rm -f ~/shared/*.txt
rm -f ~/shared/*.conf
clean_firmware:
rm -f ./release/compute_engine*
broker_sub:
./scripts/broker_sub.sh
sub_dead_sensors:
./scripts/broker_sub_dead_sensors.sh
sub_sensor1:
./scripts/broker_sub_sensor1.sh
sub_sensor2:
./scripts/broker_sub_sensor2.sh
sub_sensor3:
./scripts/broker_sub_sensor3.sh
sub_denoiser:
./scripts/broker_sub_denoiser.sh
broker_pub:
./scripts/broker_pub.sh $(filter-out $@,$(MAKECMDGOALS))
%:
@: