mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
dialog is distributed from GPLv2 to LGPLv2 and introduces a number of new features and a new and better libdialog API. The existing libdialog will be kept temporarily as libodialog for compatibility purposes until sade, sysinstall and tzsetup have been either updated or replaced. __FreeBSD_version is now 900030. Discussed on: -current Approved by: core Obtained from: http://invisible-island.net/dialog
24 lines
531 B
Makefile
24 lines
531 B
Makefile
# Makefile for libdialog
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= odialog
|
|
#MAN= NOMAN
|
|
|
|
SHLIB_MAJOR= 7
|
|
SRCS= kernel.c rc.c checklist.c inputbox.c menubox.c msgbox.c \
|
|
lineedit.c radiolist.c textbox.c yesno.c prgbox.c raw_popen.c \
|
|
fselect.c ui_objects.c dir.c notify.c help.c gauge.c tree.c
|
|
|
|
CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE
|
|
|
|
DPADD= ${LIBNCURSES}
|
|
LDADD= -lncurses
|
|
|
|
.if ${MK_HTML} != "no"
|
|
FILES= ${EXAMPLES:C;^;${.CURDIR}/TESTS/;}
|
|
FILESDIR= ${SHAREDIR}/examples/libdialog
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|