diff options
author | ache <ache@FreeBSD.org> | 1994-10-12 01:57:56 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-12 01:57:56 +0000 |
commit | 9e3f3796386d05450bbfcd7295bba031b6d13268 (patch) | |
tree | 39fefdd73d09226d703e49a0b3e4f781a505f17d /lib/libcurses | |
parent | 46290dcfcff40a7f7fe482f4a8367ef6c56e51dd (diff) | |
download | FreeBSD-src-9e3f3796386d05450bbfcd7295bba031b6d13268.zip FreeBSD-src-9e3f3796386d05450bbfcd7295bba031b6d13268.tar.gz |
SHARED_LDADD --> LDADD
cmp redirection removed
Diffstat (limited to 'lib/libcurses')
-rw-r--r-- | lib/libcurses/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile index 6c78516..42d9de1 100644 --- a/lib/libcurses/Makefile +++ b/lib/libcurses/Makefile @@ -1,9 +1,9 @@ # From: @(#)Makefile 8.2 (Berkeley) 1/2/94 -# $Id: Makefile,v 1.2 1994/08/05 01:38:32 wollman Exp $ +# $Id: Makefile,v 1.3 1994/08/28 21:48:11 ache Exp $ CFLAGS+=#-DTFILE=\"/dev/ttyp0\" CFLAGS+=-D_CURSES_PRIVATE -I${.CURDIR} -SHARED_LDADD+= -ltermcap +LDADD+= -ltermcap LIB= curses SRCS= addbytes.c addch.c addnstr.c box.c clear.c clrtobot.c clrtoeol.c \ cr_put.c ctrace.c cur_hash.c curses.c delch.c deleteln.c delwin.c \ @@ -14,8 +14,7 @@ SRCS= addbytes.c addch.c addnstr.c box.c clear.c clrtobot.c clrtoeol.c \ MAN3= curses.3 beforeinstall: - -cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/curses.h > \ - /dev/null 2>&1 || \ + -cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/curses.h || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 curses.h \ ${DESTDIR}/usr/include |