summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorRitu Sood <ritu.sood@intel.com>2020-03-03 00:44:52 -0800
committerEric Multanen <eric.w.multanen@intel.com>2020-04-07 09:20:19 -0700
commitee5748eca6350222051125b5e2313f78da00efbe (patch)
tree0af1e364a976787a7c640e676a159e72d9be8a3e /src/Makefile
parentec83b3d3bda5501b20e05efae198202b29396c4a (diff)
Adding function to Query cluster based on label
Add Query endpoint and implements returning list of clusters with label. Issue-ID: MULTICLOUD-922 Signed-off-by: Ritu Sood <ritu.sood@intel.com> Signed-off-by: Eric Multanen <eric.w.multanen@intel.com> Change-Id: I879b5e9002a0cbc9191abb99f1e164ee2b1c6581
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 8d856563..8d3bba43 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2,18 +2,22 @@ build:
$(MAKE) -C monitor build
$(MAKE) -C k8splugin build
$(MAKE) -C orchestrator build
+ $(MAKE) -C ncm build
deploy:
$(MAKE) -C monitor deploy
$(MAKE) -C k8splugin deploy
$(MAKE) -C orchestrator deploy
+ $(MAKE) -C ncm deploy
all:
$(MAKE) -C monitor all
$(MAKE) -C k8splugin all
$(MAKE) -C orchestrator all
+ $(MAKE) -C ncm all
clean:
$(MAKE) -C monitor clean
$(MAKE) -C k8splugin clean
$(MAKE) -C orchestrator clean
+ $(MAKE) -C ncm clean