diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2015-04-19 12:48:25 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-05-07 19:41:42 +0200 |
commit | 1d7b9de3504e90f0886fccec3a1f8a783fd4cc58 (patch) | |
tree | fe662f3c470cbd409166c2369b88a3f7b43fe87f /src/drivers/uart/Makefile.inc | |
parent | 2e38cc5cea1a435db39d3ab2f9feca6117d60adf (diff) | |
download | coreboot-1d7b9de3504e90f0886fccec3a1f8a783fd4cc58.tar.xz |
kbuild: Use wildcard for driver subdirectories
Change-Id: Id1685c0b28ec8e3ab972a671af6f2de6f321c645
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/9805
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/uart/Makefile.inc')
-rw-r--r-- | src/drivers/uart/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/drivers/uart/Makefile.inc b/src/drivers/uart/Makefile.inc index c4feb9a605..1a809e0a0d 100644 --- a/src/drivers/uart/Makefile.inc +++ b/src/drivers/uart/Makefile.inc @@ -1,3 +1,5 @@ +ifeq ($(CONFIG_DRIVERS_UART),y) + romstage-y += util.c ramstage-y += util.c bootblock-y += util.c @@ -28,3 +30,5 @@ bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += pl011.c romstage-y += pl011.c ramstage-y += pl011.c endif + +endif |