summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-11-04 00:31:56 -0500
committerCommit Bot <commit-bot@chromium.org>2021-11-10 23:32:50 +0000
commite1312234bd8534983e6d268b6ea624be0ef2ce9f (patch)
tree9d4411f4eeaf049ecf5199df586c8d9435c83dbc /Makefile
parentac9fd1a3d0332cad93446c5750b67122d4cf559d (diff)
downloadchrome-ec-e1312234bd8534983e6d268b6ea624be0ef2ce9f.tar.gz
remove power code
Nothing in the platform/cr50 uses power code. Remove it. BUG=b:200823466 TEST=make buildall -j Change-Id: Ic6ef286632fd997de93170485a16b9d5f8a72d37 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3273180 Reviewed-by: Vadim Sukhomlinov <sukhomlinov@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index df2932b767..c5c43722b1 100644
--- a/Makefile
+++ b/Makefile
@@ -264,7 +264,6 @@ include core/$(CORE)/build.mk
include common/build.mk
include driver/build.mk
include fuzz/build.mk
-include power/build.mk
-include private/build.mk
ifneq ($(PDIR),)
include $(PDIR)/build.mk
@@ -296,7 +295,6 @@ all-obj-$(1)+=$(call objs_from_dir_p,$(PBDIR),board-private,$(1))
endif
all-obj-$(1)+=$(call objs_from_dir_p,common,common,$(1))
all-obj-$(1)+=$(call objs_from_dir_p,driver,driver,$(1))
-all-obj-$(1)+=$(call objs_from_dir_p,power,power,$(1))
ifdef CTS_MODULE
all-obj-$(1)+=$(call objs_from_dir_p,cts,cts,$(1))
endif
@@ -311,7 +309,7 @@ endef
$(eval $(call get_sources,y))
$(eval $(call get_sources,ro))
-dirs=core/$(CORE) chip/$(CHIP) $(BASEDIR) $(BDIR) common fuzz power test \
+dirs=core/$(CORE) chip/$(CHIP) $(BASEDIR) $(BDIR) common fuzz test \
cts/common cts/$(CTS_MODULE) $(out)/gen
dirs+= private $(PDIR) $(PBDIR)
dirs+=$(shell find common -type d)