Makefile.rumpkerncomp revision 1.7
11.7Smartin# $NetBSD: Makefile.rumpkerncomp,v 1.7 2013/11/16 10:34:47 martin Exp $ 21.1Spooka# 31.1Spooka 41.4Sjoerg.include <bsd.own.mk> 51.4Sjoerg 61.7SmartinRUMPKERNCOMPS= crypto tty z 71.7Smartin 81.7Smartin.if ${MACHINE_ARCH} == "i386" || \ 91.7Smartin ${MACHINE_ARCH} == "x86_64" || \ 101.7Smartin ${MACHINE_ARCH} == "sparc" 111.7SmartinRUMPKERNCOMPS+= sljit 121.7Smartin.endif 131.1Spooka 141.4Sjoerg.if ${MKZFS} != "no" 151.3ShaadRUMPKERNCOMPS+= solaris 161.3Shaad.endif 171.3Shaad 181.1Spooka.for var in ${RUMPKERNCOMPS} 191.1SpookaRUMPKERNLIBS+=lib${var} 201.1SpookaRUMPKERNLDADD+=-lrumpkern_${var} 211.1Spooka.endfor 22