aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2019-08-02 16:15:53 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2019-08-02 16:15:58 -0700
commit7eb4e8b297aafa89f401b88e70d8fe3c90ae99ac (patch)
treecb12a70b80c222143b60911e86c4974bfa00e6f8 /src
parent09dffa6d151b046a87edcb91a46449cabc66532c (diff)
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 <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/Makefile11
1 files changed, 11 insertions, 0 deletions
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