Add top level make 30/92630/1
authorKiran Kamineni <kiran.k.kamineni@intel.com>
Fri, 2 Aug 2019 23:15:53 +0000 (16:15 -0700)
committerKiran Kamineni <kiran.k.kamineni@intel.com>
Fri, 2 Aug 2019 23:15:58 +0000 (16:15 -0700)
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 <kiran.k.kamineni@intel.com>
src/Makefile [new file with mode: 0644]

diff --git a/src/Makefile b/src/Makefile
new file mode 100644 (file)
index 0000000..38397c8
--- /dev/null
@@ -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