libpayload: Makefile: Use variables defined for Kconfig
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Change-Id: Ia451e8250307ad1944cb0429bdfee4bdf18c706b Reviewed-on: http://review.coreboot.org/10712 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
ed56499ab1
commit
2551f5914e
|
@ -45,7 +45,7 @@ endif
|
||||||
|
|
||||||
export top := $(CURDIR)
|
export top := $(CURDIR)
|
||||||
export src := src
|
export src := src
|
||||||
export srck := $(top)/../../util/kconfig
|
export srck := $(abspath $(top)/../../util/kconfig)
|
||||||
export obj ?= build
|
export obj ?= build
|
||||||
export objutil ?= $(obj)/util
|
export objutil ?= $(obj)/util
|
||||||
export objk := $(objutil)/lp_kconfig
|
export objk := $(objutil)/lp_kconfig
|
||||||
|
@ -92,7 +92,7 @@ all: real-all
|
||||||
|
|
||||||
# This include must come _before_ the pattern rules below!
|
# This include must come _before_ the pattern rules below!
|
||||||
# Order _does_ matter for pattern rules.
|
# Order _does_ matter for pattern rules.
|
||||||
include ../../util/kconfig/Makefile
|
include $(srck)/Makefile
|
||||||
|
|
||||||
include $(HAVE_DOTCONFIG)
|
include $(HAVE_DOTCONFIG)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue