blob: 4d4ec44c35585112f9c8e49ba16aee34b761c6f4 [file] [log] [blame]
Joey Armstrongb085c502023-01-17 13:56:24 -05001# -*- makefile -*-
2## -----------------------------------------------------------------------
3## -----------------------------------------------------------------------
4
5repos += voltha-system-tests
6repos += voltha-helm-charts
7repos += pod-configs
8repos += voltha-docs
9
10
11
12repo-deps = $(addprefix sandbox/,$(repos))
13
14get-arg-one = $(lastword $(subst /,$(space),$(1)))
15checkout-repo = ssh://gerrit.opencord.org:29418/$(call get-arg-one,$(1)).git
16
17$(repo-deps):
18 @mkdir -p $(dir $@)
19 @cd sandbox && $(GIT) clone $(call checkout-repo,$@)
20
21checkout-repos-all : $(repo-deps)
22
23.PHONY: sandbox
24sandbox : $(repo-deps)
25
26# [EOF]