Browse Source

start of makefile, targets to maintain strobe..

mbed-sx1276
John-Mark Gurney 3 years ago
parent
commit
af00e2f94b
1 changed files with 12 additions and 0 deletions
  1. +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)

Loading…
Cancel
Save