From: Kiran Kamineni Date: Fri, 2 Aug 2019 23:15:53 +0000 (-0700) Subject: Add top level make X-Git-Tag: 0.5.0~27^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=7eb4e8b297aafa89f401b88e70d8fe3c90ae99ac;p=multicloud%2Fk8s.git Add top level make Added a top level Makefile which calls all the sub packages under the src tree. This will be called in the ci-management golang template for this project. Issue-ID: MULTICLOUD-666 Change-Id: I0027fd62e3665d6eae6733227871ed42bab2ca54 Signed-off-by: Kiran Kamineni --- diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 00000000..38397c81 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,11 @@ +build: + $(MAKE) -C k8splugin build + +deploy: + $(MAKE) -C k8splugin deploy + +all: + $(MAKE) -C k8splugin all + +clean: + $(MAKE) -C k8splugin clean \ No newline at end of file