This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
lora-irrigation
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
start of makefile, targets to maintain strobe..
mbed-sx1276
John-Mark Gurney
3 years ago
parent
c2f97d55bb
commit
af00e2f94b
1 changed files
with
12 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
Makefile
+ 12
- 0
Makefile
View File
@@ -0,0 +1,12 @@
ARMCC = arm-none-eabi-gcc
STROBE_REPO = https://git.code.sf.net/p/strobe/code
STROBE_BRANCH = master
.PHONY: init-strobe
init-strobe:
git subtree add -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH)
.PHONY: update-strobe
update-strobe:
git subtree pull -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH)
Write
Preview
Loading…
Cancel
Save