diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-18 12:05:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-04-18 12:05:16 +0000 |
commit | 9d5510a500a1804484152adb8951dda3688658bc (patch) | |
tree | 6e4d8725c2956742201d0e14126f7e457b453c66 /scripts/config/lxdialog/Makefile | |
parent | 97e7fdf6fdb8a91da52f622b499181171262af19 (diff) | |
download | upstream-9d5510a500a1804484152adb8951dda3688658bc.tar.gz upstream-9d5510a500a1804484152adb8951dda3688658bc.tar.bz2 upstream-9d5510a500a1804484152adb8951dda3688658bc.zip |
build: add new menuconfig code based on linux 3.9
SVN-Revision: 36361
Diffstat (limited to 'scripts/config/lxdialog/Makefile')
-rw-r--r-- | scripts/config/lxdialog/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/config/lxdialog/Makefile b/scripts/config/lxdialog/Makefile deleted file mode 100644 index bdafde0c02..0000000000 --- a/scripts/config/lxdialog/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# Makefile to build lxdialog package -# - -all: lxdialog - -# 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) -CFLAGS := $(shell sh check-lxdialog.sh -ccflags) -LIBS := $(shell sh check-lxdialog.sh -ldflags gcc) - -# workaround for OpenBSD, which does not use symlinks to libncurses.so -OS := $(shell uname -s) -ifeq ($(strip $(OS)),OpenBSD) -LIBS := -lncurses -endif -ifeq ($(shell uname -o),Cygwin) -LIBS := -lncurses -endif -always := $(hostprogs-y) dochecklxdialog - -%.o: %.c - $(CC) -c $(CFLAGS) -o $@ $< - -lxdialog: checklist.o menubox.o textbox.o yesno.o inputbox.o util.o lxdialog.o msgbox.o - $(CC) -o $@ $^ $(LIBS) - -clean: - rm -f *.o lxdialog |