summaryrefslogtreecommitdiff
path: root/scripts
authorkergoth <kergoth>2003-06-20 20:59:30 (UTC)
committer kergoth <kergoth>2003-06-20 20:59:30 (UTC)
commitfde32755685bec14851f943be337e94675caf0c4 (patch) (side-by-side diff)
treed5a87565767420f0b9da18fd2ee80407b6ec1b7e /scripts
parentec80e207cce9ebb55be771603fc47a4e7892fd6c (diff)
downloadopie-fde32755685bec14851f943be337e94675caf0c4.zip
opie-fde32755685bec14851f943be337e94675caf0c4.tar.gz
opie-fde32755685bec14851f943be337e94675caf0c4.tar.bz2
Dump warning message when unable to locate the ncurses/curses header.
Diffstat (limited to 'scripts') (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/lxdialog/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/scripts/lxdialog/Makefile b/scripts/lxdialog/Makefile
index b34bbc3..6d05cfd 100644
--- a/scripts/lxdialog/Makefile
+++ b/scripts/lxdialog/Makefile
@@ -3,19 +3,25 @@ HOST_LOADLIBES := -lncurses
HOSTCC = gcc
ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h))
- HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"
+HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"
else
ifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h))
- HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"
+HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"
else
ifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h))
- HOST_EXTRACFLAGS += -DCURSES_LOC="<ncurses.h>"
+HOST_EXTRACFLAGS += -DCURSES_LOC="<ncurses.h>"
else
- HOST_EXTRACFLAGS += -DCURSES_LOC="<curses.h>"
+HOST_EXTRACFLAGS += -DCURSES_LOC="<curses.h>"
endif
endif
endif
+ifeq ($(filter clean mrproper distclean,$(MAKECMDGOALS)),)
+ifeq ($(filter -DCURSES_LOC%,$(HOST_EXTRACFLAGS)),)
+$(error Unable to locate ncurses.h or curses.h)
+endif
+endif
+
host-progs := lxdialog
always := $(host-progs)