diff options
author | Masahiro Yamada | 2013-10-21 11:53:39 +0900 |
---|---|---|
committer | Tom Rini | 2013-11-01 11:42:12 -0400 |
commit | a67cefc353f1f3ecb869bd04d4a951356fbe55da (patch) | |
tree | 5c8df10599676d74af68100297c63b9619623138 /post/drivers | |
parent | 377e1048d3065b97b21fea0763b77f1786d5b654 (diff) |
post: convert makefiles to Kbuild style
This commit also deletes post/rules.mk,
which in not necessary any more.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'post/drivers')
-rw-r--r-- | post/drivers/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/post/drivers/Makefile b/post/drivers/Makefile index 6720f851395..2f6844cca4e 100644 --- a/post/drivers/Makefile +++ b/post/drivers/Makefile @@ -4,10 +4,7 @@ # # SPDX-License-Identifier: GPL-2.0+ # -include $(TOPDIR)/config.mk -LIB = libpostdrivers.o +CPPFLAGS += -I$(TOPDIR) -COBJS-$(CONFIG_HAS_POST) += flash.o i2c.o memory.o rtc.o - -include $(TOPDIR)/post/rules.mk +obj-$(CONFIG_HAS_POST) += flash.o i2c.o memory.o rtc.o |