diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 08:51:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 08:51:38 -0700 |
commit | b4a9071af62f95dc6d22040a0b37ac7225ce4d54 (patch) | |
tree | b40a3ec798f42674f0ff62a071ff4c29348c8605 /scripts/kconfig/lxdialog/Makefile | |
parent | 8b2a1fd1b394c60eaa2587716102dd5e9b4e5990 (diff) | |
parent | 99c8b9477f2b8c4f625545c41f0318570fa38894 (diff) | |
download | kernel_samsung_tuna-b4a9071af62f95dc6d22040a0b37ac7225ce4d54.zip kernel_samsung_tuna-b4a9071af62f95dc6d22040a0b37ac7225ce4d54.tar.gz kernel_samsung_tuna-b4a9071af62f95dc6d22040a0b37ac7225ce4d54.tar.bz2 |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild:
kbuild: trivial documentation fixes
kconfig: fix saving alternate kconfig file in parent dir
kbuild: make modpost processing configurable
kconfig/menuconfig: do not let ncurses clutter screen on exit
kconfig/lxdialog: clear long menu lines
kbuild: do not build mconf & lxdialog unless needed
kconfig/lxdialog: fix make mrproper
kconfig/lxdialog: support resize
kconfig/lxdialog: let <ESC><ESC> behave as expected
kconfig/menuconfig: lxdialog is now built-in
kconfig/lxdialog: add a new theme bluetitle which is now default
kconfig/lxdialog: add support for color themes and add blackbg theme
kconfig/lxdialog: refactor color support
Diffstat (limited to 'scripts/kconfig/lxdialog/Makefile')
-rw-r--r-- | scripts/kconfig/lxdialog/Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/kconfig/lxdialog/Makefile b/scripts/kconfig/lxdialog/Makefile deleted file mode 100644 index a8b0263..0000000 --- a/scripts/kconfig/lxdialog/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile to build lxdialog package -# - -check-lxdialog := $(srctree)/$(src)/check-lxdialog.sh - -# Use reursively 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 -$(obj)/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 |