patch-1.3.60 linux/scripts/lxdialog/Makefile

Next file: linux/scripts/lxdialog/checklist.c
Previous file: linux/scripts/lxdialog/BIG.FAT.WARNING
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v1.3.59/linux/scripts/lxdialog/Makefile linux/scripts/lxdialog/Makefile
@@ -0,0 +1,42 @@
+CC = gcc
+CPP = gcc -E
+OPTIM = -O2 -Wall -fomit-frame-pointer
+
+CFLAGS = $(OPTIM) $(CURSES) -DLOCALE 
+LDFLAGS = -s -L .
+LDLIBS = -lncurses
+
+CURSES =  -DCURSES_LOC="<curses.h>"
+
+ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h))
+        CFLAGS += -I/usr/include/ncurses
+        CURSES =  -DCURSES_LOC="<ncurses.h>"
+else
+ifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h))
+        CURSES =  -DCURSES_LOC="<ncurses.h>"
+endif
+endif
+
+OBJS = checklist.o menubox.o textbox.o yesno.o inputbox.o \
+       util.o lxdialog.o msgbox.o
+SRCS = $(OBJS:.o=.c)
+
+
+all: ncurses lxdialog
+
+lxdialog: $(OBJS)
+
+ncurses:
+	@x=`find /lib /usr/lib /usr/local/lib -maxdepth 1 -name 'libncurses.*'` ;\
+	if [ ! "$$x" ]; then \
+		echo -e "\007" ;\
+		echo ">> Unable to find the Ncurses libraries." ;\
+		echo ">>" ;\
+		echo ">> You must have Ncurses installed in order" ;\
+		echo ">> to use 'make menuconfig'" ;\
+		echo ;\
+		exit 1 ;\
+	fi
+
+clean:
+	rm -f core *.o *~ lxdialog

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov with Sam's (original) version
of this