aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-11-07 02:06:58 +0000
committerEric Andersen <andersen@codepoet.org>2002-11-07 02:06:58 +0000
commitf9496d4e44f41b0964ec82377ab0a688ff0d06df (patch)
treea3be13d0718e19af3f8679feb2094ce43590f9f6 /scripts
parent62d28828d620d1d9295db6cb880cf6826a679344 (diff)
downloadbusybox-f9496d4e44f41b0964ec82377ab0a688ff0d06df.tar.gz
Fix broken tabs
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lxdialog/Makefile10
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; \