Move libsjjit and libbpfjit to the pre-dependency section and remove
the unnecessary .WAIT. They are both marked LIBISPRIVATE, which does mean no link is performed, and there are no dependencies.
This commit is contained in:
parent
75b2fca271
commit
4a71bf0e0e
13
lib/Makefile
13
lib/Makefile
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.213 2014/04/22 13:20:58 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.214 2014/05/09 08:36:09 plunky Exp $
|
||||
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
@ -62,6 +62,11 @@ SUBDIR+= ../external/bsd/elftoolchain/lib/libelf
|
|||
SUBDIR+= ../external/bsd/liblzf/lib
|
||||
SUBDIR+= ../external/bsd/libpcap/lib
|
||||
|
||||
.if ${MKSLJIT} != "no"
|
||||
SUBDIR+= ../external/bsd/sljit/lib
|
||||
SUBDIR+= libbpfjit
|
||||
.endif
|
||||
|
||||
SUBDIR+= ../external/mit/expat/lib
|
||||
|
||||
SUBDIR+= ../external/public-domain/sqlite/lib
|
||||
|
@ -209,12 +214,6 @@ SUBDIR+= libpam # depends on heimdal
|
|||
SUBDIR+= ../crypto/external/bsd/libsaslc # depends on heimdal, openssl
|
||||
.endif
|
||||
|
||||
.if ${MKSLJIT} != "no"
|
||||
SUBDIR+= ../external/bsd/sljit/lib
|
||||
SUBDIR+= .WAIT
|
||||
SUBDIR+= libbpfjit
|
||||
.endif
|
||||
|
||||
SUBDIR+= ../external/bsd/mdocml/lib
|
||||
|
||||
.if (${MKRUMP} != "no")
|
||||
|
|
Loading…
Reference in New Issue