diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-06-24 14:15:49 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-06-24 14:15:49 +0000 |
commit | c9f705b12195b7c1ff9814f76c78c76d4b8498b1 (patch) | |
tree | 5b0d1bd4e32ecbe6e6dc22fd61c38f39b6277aa4 /payloads/libpayload/Makefile | |
parent | 9bb0438535d29329f6a01a136caa2f2ad79fdceb (diff) |
Incomplete implementation of libpci's (of pciutils) interface.
No pciutils code was harmed in its production - this code was written by
looking at flashrom's expectations, so there's no license pollution.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5645 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/Makefile')
-rw-r--r-- | payloads/libpayload/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile index dd105431cf..bb00613921 100644 --- a/payloads/libpayload/Makefile +++ b/payloads/libpayload/Makefile @@ -77,7 +77,7 @@ ARCHDIR-$(CONFIG_TARGET_POWERPC) := powerpc PLATFORM-y += arch/$(ARCHDIR-y)/Makefile.inc TARGETS-y := -BUILD-y := crypto/Makefile.inc libc/Makefile.inc drivers/Makefile.inc +BUILD-y := crypto/Makefile.inc libc/Makefile.inc drivers/Makefile.inc libpci/Makefile.inc BUILD-$(CONFIG_TINYCURSES) += curses/Makefile.inc # The primary target needs to be here before we include the @@ -145,7 +145,7 @@ prepare: $(Q)mkdir -p $(obj)/util/kconfig/lxdialog $(Q)mkdir -p $(obj)/crypto $(obj)/curses $(obj)/drivers/video $(Q)mkdir -p $(obj)/drivers/usb - $(Q)mkdir -p $(obj)/arch/$(ARCHDIR-y) $(obj)/lib/$(ARCHDIR-y) $(obj)/libc + $(Q)mkdir -p $(obj)/arch/$(ARCHDIR-y) $(obj)/lib/$(ARCHDIR-y) $(obj)/libc $(obj)/libpci $(Q)mkdir -p $(obj)/lib/$(ARCHDIR-y) $(Q)mkdir -p $(obj)/include |