-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (28 loc) · 770 Bytes
/
Makefile
File metadata and controls
36 lines (28 loc) · 770 Bytes
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
all: help
help:
@echo ""
@echo " Help Menu"
@echo ""
@echo " make clone - clones the subrepostories needed"
@echo " make pull - pull the subrepostories"
@echo ""
pull:
git pull origin
git --work-tree=./src/firmware pull origin
git --work-tree=./src/simulation pull origin
git --work-tree=./src/core pull origin
status:
git status
git --work-tree=./src/firmware status
git --work-tree=./src/simulation status
git --work-tree=./src/core status
src/firmware:
git clone git@github.com:Roboost-Robotics/firmware.git $@
src/simulation:
git clone git@github.com:Roboost-Robotics/simulation.git $@
src/core:
git clone git@github.com:Roboost-Robotics/core.git $@
clone: \
src/firmware \
src/simulation \
src/core