-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake_release.sh
More file actions
executable file
·42 lines (35 loc) · 2.56 KB
/
make_release.sh
File metadata and controls
executable file
·42 lines (35 loc) · 2.56 KB
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
#!/bin/bash
#lib
cp ../shared/devices/communications/serial/bst_serial.cpp ./lib/
cp ../shared/devices/communications/serial/bst_serial.h ./lib/
cp ../shared/devices/communications/socket/bst_socket.cpp ./lib/
cp ../shared/devices/communications/socket/bst_socket.h ./lib/
#inc
cp ../shared/devices/communications/can/simulated_can.h ./include/bst_can/
cp ../shared/devices/communications/can/protocol/bridge.h ./include/bst_can/
cp ../shared/tasks/communications/interface/comm_interface.h ./include/bst_core/
cp ../shared/comm_protocols/comm_protocol.h ./include/bst_core/
cp ../shared/lib/debug.h ./include/bst_core/
cp ../shared/devices/communications/file/file_interface.h ./include/bst_core/
cp ../shared/tasks/controller/navigation/flight_plan.h ./include/bst_core/
cp ../shared/lib/helper_functions.h ./include/bst_core/
cp ../shared/lib/vector.h ./include/bst_core/
cp ../shared/comm_protocols/bst/bst_module.h ./include/bst_protocol/
cp ../shared/comm_protocols/bst/bst_packet.h ./include/bst_protocol/
cp ../shared/comm_protocols/bst/bst_protocol.h ./include/bst_protocol/
cp ../shared/comm_protocols/bst/modules/*.h ./include/bst_protocol/modules/
cp ../shared/comm_protocols/bst/messages/*.h ./include/bst_protocol/messages/
#src
cp ../shared/devices/communications/can/simulated_can.cpp ./src/bst_can/
cp ../shared/devices/communications/can/protocol/bridge.c ./src/bst_can/
cp ../shared/tasks/communications/interface/comm_interface.cpp ./src/bst_core/
cp ../shared/comm_protocols/comm_protocol.cpp ./src/bst_core/
cp ../shared/lib/debug.c ./src/bst_core/
cp ../shared/devices/communications/file/file_interface.cpp ./src/bst_core/
cp ../shared/tasks/controller/navigation/flight_plan.cpp ./src/bst_core/
cp ../shared/lib/helper_functions.cpp ./src/bst_core/
cp ../shared/lib/vector.cpp ./src/bst_core/
cp ../shared/comm_protocols/bst/bst_module.cpp ./src/bst_protocol/
cp ../shared/comm_protocols/bst/bst_packet.cpp ./src/bst_protocol/
cp ../shared/comm_protocols/bst/bst_protocol.cpp ./src/bst_protocol/
cp ../shared/comm_protocols/bst/modules/*.cpp ./src/bst_protocol/modules/