]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - gnu/lib/libodialog/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / gnu / lib / libodialog / Makefile
1 # Makefile for libdialog
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 LIB=    odialog
7 #MAN=   NOMAN
8
9 SHLIB_MAJOR= 7
10 SRCS=   kernel.c rc.c checklist.c inputbox.c menubox.c msgbox.c \
11         lineedit.c radiolist.c textbox.c yesno.c prgbox.c raw_popen.c \
12         fselect.c ui_objects.c dir.c notify.c help.c gauge.c tree.c
13
14 CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE
15
16 DPADD=  ${LIBNCURSES}
17 LDADD=  -lncurses
18
19 .if ${MK_HTML} != "no"
20 FILES=  ${EXAMPLES:C;^;${.CURDIR}/TESTS/;}
21 FILESDIR= ${SHAREDIR}/examples/libdialog
22 .endif
23
24 .include <bsd.lib.mk>