diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-21 20:05:44 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-21 20:05:44 +0000 |
commit | 8aed3533a62cadd304ab162347e3697612291af5 (patch) | |
tree | ecab7bca33da99cf6077bf6ffe98740c04774e1a /lib | |
parent | 404388795afb2bf6fea29a0bcfecbdfb6c2d409c (diff) |
Fix hard links from libl -> libfl after discussion with krw@; espie@ OK
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libl/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libl/Makefile b/lib/libl/Makefile index 3d62f551b2c..ed72851b2e8 100644 --- a/lib/libl/Makefile +++ b/lib/libl/Makefile @@ -1,14 +1,17 @@ # $NetBSD: Makefile,v 1.5 1995/02/25 09:02:37 cgd Exp $ +# $OpenBSD: Makefile,v 1.3 2001/07/21 20:05:43 millert Exp $ LIB= l SRCS= libmain.c libyywrap.c NOPIC= -LINKS= ${LIBDIR}/libl.a ${LIBDIR}/libfl.a - .PATH: ${.CURDIR}/../../usr.bin/lex -.include <bsd.lib.mk> +.include <bsd.own.mk> + +LINKS= ${LIBDIR}/libl.a ${LIBDIR}/libfl.a .if !defined(NOPROFILE) LINKS+= ${LIBDIR}/libl_p.a ${LIBDIR}/libfl_p.a .endif + +.include <bsd.lib.mk> |