Fix broken tabs
authorEric Andersen <andersen@codepoet.org>
Thu, 7 Nov 2002 02:06:58 +0000 (02:06 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 7 Nov 2002 02:06:58 +0000 (02:06 -0000)
scripts/lxdialog/Makefile

index ed8d17c37823123137b5a46f9dae170f4b30ffd2..c29b58d7bc22c11a302ae0f3320eea9d2b82353e 100644 (file)
@@ -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; \