mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
11 lines
274 B
Makefile
11 lines
274 B
Makefile
PROG= dialog
|
|
MAN1= dialog.1
|
|
|
|
CFLAGS+= -Wall -Wstrict-prototypes -DHAVE_NCURSES -DLOCALE
|
|
DPADD= $(LIBNCURSES) $(LIBMYTINFO)
|
|
LDADD= -lncurses -lmytinfo
|
|
|
|
SRCS = dialog.c rc.c checklist.c inputbox.c menubox.c msgbox.c \
|
|
radiolist.c textbox.c yesno.c
|
|
|
|
.include "bsd.prog.mk"
|