Use an archive library for libkern if we don't support LKMs.

Enough to get INSTALL_TINY small enough again.
Someone else can fix it next time...
This commit is contained in:
dsl 2005-03-12 14:39:12 +00:00
parent 337f8776b0
commit 1c1e4144e2
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.i386,v 1.136 2004/07/15 03:35:20 atatat Exp $ # $NetBSD: Makefile.i386,v 1.137 2005/03/12 14:39:12 dsl Exp $
# Makefile for NetBSD # Makefile for NetBSD
# #
@ -37,7 +37,11 @@ AFLAGS+= -x assembler-with-cpp -traditional-cpp
## ##
## (3) libkern and compat ## (3) libkern and compat
## ##
.if !empty(IDENT:M-DLKM)
KERN_AS= obj KERN_AS= obj
.else
KERN_AS= library
.endif
## ##
## (4) local objects, compile rules, and dependencies ## (4) local objects, compile rules, and dependencies