fa8dc2c075
o Support a new, fully backwards-compatible API for controling individual items in dialog menus. o Write a man page. o Add some test code.
24 lines
652 B
Makefile
24 lines
652 B
Makefile
# Makefile for libdialog
|
|
# $Id: Makefile,v 1.13 1995/08/06 12:22:47 bde Exp $
|
|
|
|
LIB= dialog
|
|
MAN3= dialog.3
|
|
|
|
SHLIB_MAJOR= 3
|
|
SHLIB_MINOR= 0
|
|
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
|
|
|
|
CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE
|
|
|
|
LDADD+= -lncurses -lmytinfo
|
|
DPADD+= ${LIBNCURSES} ${LIBMYTINFO}
|
|
|
|
beforeinstall:
|
|
-cd ${.CURDIR}; cmp -s dialog.h ${DESTDIR}/usr/include/dialog.h || \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 dialog.h \
|
|
${DESTDIR}/usr/include
|
|
|
|
.include <bsd.lib.mk>
|