diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-07 02:06:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-07 02:06:58 +0000 |
commit | f9496d4e44f41b0964ec82377ab0a688ff0d06df (patch) | |
tree | a3be13d0718e19af3f8679feb2094ce43590f9f6 /scripts/lxdialog/Makefile | |
parent | 62d28828d620d1d9295db6cb880cf6826a679344 (diff) | |
download | busybox-f9496d4e44f41b0964ec82377ab0a688ff0d06df.tar.gz |
Fix broken tabs
Diffstat (limited to 'scripts/lxdialog/Makefile')
-rw-r--r-- | scripts/lxdialog/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/lxdialog/Makefile b/scripts/lxdialog/Makefile index ed8d17c37..c29b58d7b 100644 --- a/scripts/lxdialog/Makefile +++ b/scripts/lxdialog/Makefile @@ -2,13 +2,13 @@ HOSTCFLAGS += -DLOCALE LIBS = -lncurses ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h)) - HOSTCFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>" + HOSTCFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>" else ifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h)) - HOSTCFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>" + HOSTCFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>" else ifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h)) - HOSTCFLAGS += -DCURSES_LOC="<ncurses.h>" + HOSTCFLAGS += -DCURSES_LOC="<ncurses.h>" else HOSTCFLAGS += -DCURSES_LOC="<curses.h>" endif @@ -27,9 +27,11 @@ all: ncurses lxdialog lxdialog: $(OBJS) $(HOSTCC) -o lxdialog $(OBJS) $(LIBS) +.PHONY: ncurses + ncurses: @echo "main() {}" > lxtemp.c - @if $(HOSTCC) -lncurses lxtemp.c ; then \ + @if $(HOSTCC) lxtemp.c $(LIBS) ; then \ rm -f lxtemp.c a.out; \ else \ rm -f lxtemp.c; \ |