aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/curses
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2011-04-21 18:48:50 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2011-06-30 20:40:10 +0200
commitb3db79e9965cb290615a02b324648bc64f805660 (patch)
treefd44f3728f4b8a3cdb1563a356ce1c413fe116e5 /payloads/libpayload/curses
parent23b215272d4d136efcac5f3b5712d2a1d76a91d9 (diff)
Use coreboot build system for libpayload, too.
This change makes building coreboot related projects more unified. Change-Id: I0f1181e2fffde1e03675523f7dc9eef3119052c3 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/71 Tested-by: build bot (Jenkins) Reviewed-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'payloads/libpayload/curses')
-rw-r--r--payloads/libpayload/curses/Makefile.inc8
1 files changed, 5 insertions, 3 deletions
diff --git a/payloads/libpayload/curses/Makefile.inc b/payloads/libpayload/curses/Makefile.inc
index 7d5597ceeb..44e3ab7eb7 100644
--- a/payloads/libpayload/curses/Makefile.inc
+++ b/payloads/libpayload/curses/Makefile.inc
@@ -27,6 +27,8 @@
## SUCH DAMAGE.
##
-TARGETS-$(CONFIG_TINYCURSES) += curses/keyboard.o
-TARGETS-$(CONFIG_TINYCURSES) += curses/tinycurses.o
-TARGETS-$(CONFIG_TINYCURSES) += curses/colors.o
+subdirs-y := libform libpanel libmenu
+
+libcurses-$(CONFIG_TINYCURSES) += keyboard.c
+libcurses-$(CONFIG_TINYCURSES) += tinycurses.c
+libcurses-$(CONFIG_TINYCURSES) += colors.c