diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
commit | 7c5db15603132b9f94a11af57c5a56b205c0eaff (patch) | |
tree | 47384a9485fd95c587188df50a275d708da17fa4 /lib/libedit/Makefile | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'lib/libedit/Makefile')
-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 > \ |