diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-25 23:11:07 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-25 23:11:07 +0000 |
commit | e6d9c7d41e02bb95eaf2a8a3958a4943c24d46fa (patch) | |
tree | 643ca955985b93aa360ef012d4df4b6ba4b28a48 /usr.bin/lex/lib | |
parent | 1fa12256c8db2766b1245105687a09c459bf0261 (diff) | |
download | FreeBSD-src-e6d9c7d41e02bb95eaf2a8a3958a4943c24d46fa.zip FreeBSD-src-e6d9c7d41e02bb95eaf2a8a3958a4943c24d46fa.tar.gz |
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.
Diffstat (limited to 'usr.bin/lex/lib')
-rw-r--r-- | usr.bin/lex/lib/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/usr.bin/lex/lib/Makefile b/usr.bin/lex/lib/Makefile index 406e542..689b460 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 <bsd.lib.mk> |