From ee307ac8ced3b5e76f176b637ee6669859ea93de Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Thu, 25 Aug 1994 23:11:07 +0000 Subject: [PATCH] We really, really /don't/ want to have a shared lex library. Also, current users should note that the old 1.1.5 lex can't process the new scan.l, so you have to copy initscan.c to obj/scan.c before it will build. --- usr.bin/lex/lib/Makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/usr.bin/lex/lib/Makefile b/usr.bin/lex/lib/Makefile index 406e542a9149..689b46018e79 100644 --- a/usr.bin/lex/lib/Makefile +++ b/usr.bin/lex/lib/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1.1.1 1994/08/24 13:10:34 csgr Exp $ LIB= ln SRCS= libmain.c libyywrap.c @@ -8,13 +8,7 @@ LINKS= ${LIBDIR}/libln.a ${LIBDIR}/libl.a \ LINKS+= ${LIBDIR}/libln_p.a ${LIBDIR}/libl_p.a .endif -.if !defined(NOSHARED) -LINKS+= ${LIBDIR}/libln.so.$(SHLIB_MAJOR).$(SHLIB_MINOR) \ - ${LIBDIR}/libl.so.$(SHLIB_MAJOR).$(SHLIB_MINOR) -.endif - -#This is where we get our SHLIB_MAJOR and SHLIB_MINOR -.include "${.CURDIR}/../../../lib/Makefile.inc" +NOSHARED= .include