summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorm1093782566 <dujun5@huawei.com>2019-04-29 17:19:23 +0800
committerm1093782566 <dujun5@huawei.com>2019-04-29 17:41:25 +0800
commit3e5207070c02fd6b8894ed3ac443be089fa9c9af (patch)
tree3ba37d1b0ef416ff5823f8137f6f1fba4253ff52 /Makefile
parentMerge pull request #430 from kadisi/same_values (diff)
downloadkubeedge-3e5207070c02fd6b8894ed3ac443be089fa9c9af.tar.gz
update cloud path
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 77889cc37..1af569c1b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,12 @@
.PHONY: all
ifeq ($(WHAT),)
all:
- cd cloud/edgecontroller && $(MAKE)
+ cd cloud && $(MAKE)
cd edge && $(MAKE)
else ifeq ($(WHAT),cloud)
# make all what=cloud, build cloud binary
all:
- cd cloud/edgecontroller && $(MAKE)
+ cd cloud && $(MAKE)
else ifeq ($(WHAT),edge)
all:
# make all what=edge, build edge binary
@@ -42,7 +42,7 @@ edge_small_build:
.PHONY: cloud_lint
cloud_lint:
- cd cloud/edgecontroller && $(MAKE) lint
+ cd cloud && $(MAKE) lint
.PHONY: e2e_test
e2e_test: