freebsd-dev/gnu/lib/libdialog/Makefile
Andrey A. Chernov 3f20de5a5f Implement dialog_prgbox() function which allows run program
(via pipe) with output to dialog box
1994-10-28 03:08:28 +00:00

18 lines
494 B
Makefile

# Makefile for libdialog
# $Id: Makefile,v 1.4 1994/10/21 15:42:27 ache Exp $
LIB= dialog
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
CFLAGS+= -Wall -Wstrict-prototypes -DLOCALE
LDADD+= -lncurses -lmytinfo
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>