Browse Source

make path a parameter as well...

irr_shared
John-Mark Gurney 3 years ago
parent
commit
e5d6a4e73c
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      Makefile

+ 3
- 2
Makefile View File

@@ -90,11 +90,12 @@ runtests:

STROBE_REPO = https://git.code.sf.net/p/strobe/code
STROBE_BRANCH = master
STROBE_PATH = strobe

.PHONY: init-strobe
init-strobe:
git subtree add -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH)
git subtree add -P $(STROBE_PATH) --squash $(STROBE_REPO) $(STROBE_BRANCH)

.PHONY: update-strobe
update-strobe:
git subtree pull -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH)
git subtree pull -P $(STROBE_PATH) --squash $(STROBE_REPO) $(STROBE_BRANCH)

Loading…
Cancel
Save