diff options
author | ache <ache@FreeBSD.org> | 1994-10-12 01:59:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-12 01:59:06 +0000 |
commit | e07f0c50bcee413293dd78204ca0ef1b5efb24d8 (patch) | |
tree | 76210a8ebf367b90d110a278e88c97a560012b99 /lib/ncurses | |
parent | 9e3f3796386d05450bbfcd7295bba031b6d13268 (diff) | |
download | FreeBSD-src-e07f0c50bcee413293dd78204ca0ef1b5efb24d8.zip FreeBSD-src-e07f0c50bcee413293dd78204ca0ef1b5efb24d8.tar.gz |
LDADD: = -> +=
Diffstat (limited to 'lib/ncurses')
-rw-r--r-- | lib/ncurses/ncurses/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ncurses/ncurses/Makefile b/lib/ncurses/ncurses/Makefile index 50447f1..c1977bf 100644 --- a/lib/ncurses/ncurses/Makefile +++ b/lib/ncurses/ncurses/Makefile @@ -1,5 +1,5 @@ # Makefile for ncurses -# $Id: Makefile,v 1.3 1994/10/10 00:34:44 ache Exp $ +# $Id: Makefile,v 1.4 1994/10/12 01:51:27 ache Exp $ LIB= ncurses SRCS= lib_kernel.c lib_pad.c\ @@ -14,7 +14,7 @@ SRCS= lib_kernel.c lib_pad.c\ lib_insstr.c lib_insdel.c lib_twait.c copyright.c CFLAGS+= -I. -Wall -DMYTINFO -DTERMIOS -DGOOD_SELECT -DBSDTABS -LDADD= -lmytinfo +LDADD+= -lmytinfo CLEANFILES+= lib_keyname.c keys.tries |