author | kergoth <kergoth> | 2003-06-17 17:01:45 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-06-17 17:01:45 (UTC) |
commit | 384b7f1a42f9f2f101dc8fe11c3625055d96f672 (patch) (side-by-side diff) | |
tree | e4c0c83db7e60715be715f06fa221c45e616b00e /scripts/lxdialog/Makefile | |
parent | 154d6deef15b9f7f83ea7a25f2079d9fca034910 (diff) | |
download | opie-384b7f1a42f9f2f101dc8fe11c3625055d96f672.zip opie-384b7f1a42f9f2f101dc8fe11c3625055d96f672.tar.gz opie-384b7f1a42f9f2f101dc8fe11c3625055d96f672.tar.bz2 |
Update lxdialog version, and *build* lxdialog. no binary in cvs.
-rw-r--r-- | scripts/lxdialog/Makefile | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/scripts/lxdialog/Makefile b/scripts/lxdialog/Makefile index 75b7bac..b34bbc3 100644 --- a/scripts/lxdialog/Makefile +++ b/scripts/lxdialog/Makefile @@ -1,44 +1,50 @@ -HOST_CFLAGS := -DLOCALE -HOST_LDFLAGS := -lncurses +HOST_EXTRACFLAGS := -DLOCALE +HOST_LOADLIBES := -lncurses +HOSTCC = gcc ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h)) - HOST_CFLAGS += -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_CFLAGS += -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_CFLAGS += -DCURSES_LOC="<ncurses.h>" + HOST_EXTRACFLAGS += -DCURSES_LOC="<ncurses.h>" else - HOST_CFLAGS += -DCURSES_LOC="<curses.h>" + HOST_EXTRACFLAGS += -DCURSES_LOC="<curses.h>" endif endif endif -host-progs := lxdialog +host-progs := lxdialog +always := $(host-progs) lxdialog-objs := checklist.o menubox.o textbox.o yesno.o inputbox.o \ util.o lxdialog.o msgbox.o -EXTRA_TARGETS := lxdialog - -first_rule: ncurses - -include $(TOPDIR)/Rules.make +first_rule: ncurses lxdialog .PHONY: ncurses - ncurses: @echo "main() {}" > lxtemp.c - @if $(HOSTCC) $(HOST_CFLAGS) lxtemp.c $(HOST_LDFLAGS); then \ + @if $(HOSTCC) lxtemp.c $(HOST_LOADLIBES); then \ rm -f lxtemp.c a.out; \ else \ rm -f lxtemp.c; \ 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 $(lxdialog-objs) lxdialog + +%.o: %.c + $(HOSTCC) $(HOST_EXTRACFLAGS) -fPIC -c $^ -o $@ + +lxdialog: $(lxdialog-objs) + $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOST_LOADLIBES) $^ -o $@ |