diff options
author | joerg <joerg@FreeBSD.org> | 1996-02-24 16:31:31 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-02-24 16:31:31 +0000 |
commit | 9dbe7cd8d3b39f73609b33cdf7d15cf1cb1b320e (patch) | |
tree | 7ebc3f6ebcc1779a3abd39c9da2ea6977d537cbf /usr.bin/lex | |
parent | e5c7708552e82f374d878653e51588f031efed8b (diff) | |
download | FreeBSD-src-9dbe7cd8d3b39f73609b33cdf7d15cf1cb1b320e.zip FreeBSD-src-9dbe7cd8d3b39f73609b33cdf7d15cf1cb1b320e.tar.gz |
Now that we install the `flex' alias for our lex, we should also
install the `libfl' alias for libl. Some third-party software will
expect it this way.
Submitted by: Holm tiffe (holm@geophysik.tu-freiberg.de)
Diffstat (limited to 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/lib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/lex/lib/Makefile b/usr.bin/lex/lib/Makefile index 689b460..8ceb8b5 100644 --- a/usr.bin/lex/lib/Makefile +++ b/usr.bin/lex/lib/Makefile @@ -1,11 +1,13 @@ -# $Id: Makefile,v 1.1.1.1 1994/08/24 13:10:34 csgr Exp $ +# $Id: Makefile,v 1.2 1994/08/25 23:11:07 wollman Exp $ LIB= ln SRCS= libmain.c libyywrap.c -LINKS= ${LIBDIR}/libln.a ${LIBDIR}/libl.a \ +LINKS= ${LIBDIR}/libln.a ${LIBDIR}/libl.a +LINKS+= ${LIBDIR}/libln.a ${LIBDIR}/libfl.a .if !defined(NOPROFILE) LINKS+= ${LIBDIR}/libln_p.a ${LIBDIR}/libl_p.a +LINKS+= ${LIBDIR}/libln_p.a ${LIBDIR}/libfl_p.a .endif NOSHARED= |