diff options
author | 1998-07-24 00:10:13 +0000 | |
---|---|---|
committer | 1998-07-24 00:10:13 +0000 | |
commit | 132ab06fe5dffed203c76e0ff9726ee888ca8021 (patch) | |
tree | 1ede28dc8e2ebaafb2738536d90399bc89071cd8 /lib | |
parent | -D_USE_OLD_CURSE_ for -locurses and no more -ltermlib/termcap (diff) | |
download | wireguard-openbsd-132ab06fe5dffed203c76e0ff9726ee888ca8021.tar.xz wireguard-openbsd-132ab06fe5dffed203c76e0ff9726ee888ca8021.zip |
-lcurses, not termcap/termlib
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libedit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile index 800ae586525..79cf0a73d74 100644 --- a/lib/libedit/Makefile +++ b/lib/libedit/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1997/06/29 23:40:46 millert Exp $ +# $OpenBSD: Makefile,v 1.7 1998/07/24 00:10:48 millert Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/4/93 LIB= edit @@ -57,7 +57,7 @@ all: vi.h emacs.h common.h fcns.h help.h help.c test: libedit.a test.o - ${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD} -ltermcap + ${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD} -lcurses includes: -cd ${.CURDIR}; cmp -s histedit.h ${DESTDIR}/usr/include/histedit.h > \ |