diff options
author | ache <ache@FreeBSD.org> | 1995-02-15 19:44:08 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-02-15 19:44:08 +0000 |
commit | 8606846519fea95655a87c1758e86ea3e8bffc34 (patch) | |
tree | a7743d34a6549d3bf5ac9aa482d97aaadd19fe2a /gnu/lib/libdialog/Makefile | |
parent | c89046c5551c9d22af39898dd39354fd4f5cae44 (diff) | |
download | FreeBSD-src-8606846519fea95655a87c1758e86ea3e8bffc34.zip FreeBSD-src-8606846519fea95655a87c1758e86ea3e8bffc34.tar.gz |
file selector, helpline, helpfile and more, with my fixes
Submitted by: wmbfmk@urc.tue.nl
Diffstat (limited to 'gnu/lib/libdialog/Makefile')
-rw-r--r-- | gnu/lib/libdialog/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index 5562415..236b71c 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -1,13 +1,15 @@ # Makefile for libdialog -# $Id: Makefile,v 1.5 1994/10/28 03:08:14 ache Exp $ +# $Id: Makefile,v 1.6 1994/10/28 05:36:38 jkh 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 + lineedit.c radiolist.c textbox.c yesno.c prgbox.c raw_popen.c \ + fselect.c ui_objects.c dir.c notify.c help.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 || \ |