hostapd only supports either b or g as hwmode configuration variable. If bg is set...
[openwrt/openwrt.git] / scripts / config / lxdialog / Makefile
1 # Makefile to build lxdialog package
2 #
3
4 all: lxdialog
5
6 # Use reursively expanded variables so we do not call gcc unless
7 # we really need to do so. (Do not call gcc as part of make mrproper)
8 CFLAGS := $(shell sh check-lxdialog.sh -ccflags)
9 LIBS := $(shell sh check-lxdialog.sh -ldflags gcc)
10
11 # workaround for OpenBSD, which does not use symlinks to libncurses.so
12 OS := $(shell uname -s)
13 ifeq ($(strip $(OS)),OpenBSD)
14 LIBS := -lncurses
15 endif
16
17
18 always := $(hostprogs-y) dochecklxdialog
19
20 %.o: %.c
21 $(CC) -c $(CFLAGS) -o $@ $<
22
23 lxdialog: checklist.o menubox.o textbox.o yesno.o inputbox.o util.o lxdialog.o msgbox.o
24 $(CC) -o $@ $^ $(LIBS)
25
26 clean:
27 rm -f *.o lxdialog