aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/util/kconfig/lxdialog/Makefile
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-08-08 07:56:07 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-08-08 07:56:07 +0000
commite55b32ab627bac2108efb4a3d5b924e00ff60af9 (patch)
treecd42e58d2102370e476ddff38a4b61b3d7556601 /payloads/libpayload/util/kconfig/lxdialog/Makefile
parentdc93affe72b4e3162fde653da5c0ea0c84bd5e39 (diff)
Update the kconfig copy in libpayload to a much more recent one. Among
other things this supposedly also fixes a number of build issues on Mac OS X. This is more or less the same version (i.e. equally recent) as we have in coreinfo and buildrom now. This patch also includes the libintl.h fix from r3475 (coreinfo). Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3482 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/util/kconfig/lxdialog/Makefile')
-rw-r--r--payloads/libpayload/util/kconfig/lxdialog/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/payloads/libpayload/util/kconfig/lxdialog/Makefile b/payloads/libpayload/util/kconfig/lxdialog/Makefile
deleted file mode 100644
index ceddc8d663..0000000000
--- a/payloads/libpayload/util/kconfig/lxdialog/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Makefile to build lxdialog package
-#
-
-CONFIG_SHELL := sh
-
-check-lxdialog := ./check-lxdialog.sh
-
-HOSTCC ?= gcc
-
-# Use recursively expanded variables so we do not call gcc unless
-# we really need to do so. (Do not call gcc as part of make mrproper)
-HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
-HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
-
-HOST_EXTRACFLAGS += -DLOCALE
-
-PHONY += dochecklxdialog
-dochecklxdialog:
- $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_LOADLIBES)
-
-hostprogs-y := lxdialog
-always := $(hostprogs-y) dochecklxdialog
-
-lxdialog-objs := checklist.o menubox.o textbox.o yesno.o inputbox.o \
- util.o lxdialog.o msgbox.o
-
-lxdialog: dochecklxdialog $(lxdialog-objs)
- $(CC) $(HOST_LOADLIBES) -o lxdialog $(lxdialog-objs)
-
-%.o: %.c
- $(Q)$(HOSTCC) $(HOST_EXTRACFLAGS) $^ -c -o $@
-