Home | History | Annotate | Line # | Download | only in kern
Makefile.rumpkerncomp revision 1.7
      1 #	$NetBSD: Makefile.rumpkerncomp,v 1.7 2013/11/16 10:34:47 martin Exp $
      2 #
      3 
      4 .include <bsd.own.mk>
      5 
      6 RUMPKERNCOMPS=	crypto tty z
      7 
      8 .if ${MACHINE_ARCH} == "i386" || \
      9     ${MACHINE_ARCH} == "x86_64" || \
     10     ${MACHINE_ARCH} == "sparc"
     11 RUMPKERNCOMPS+=	sljit
     12 .endif
     13 
     14 .if ${MKZFS} != "no"
     15 RUMPKERNCOMPS+=    solaris
     16 .endif
     17 
     18 .for var in ${RUMPKERNCOMPS}
     19 RUMPKERNLIBS+=lib${var}
     20 RUMPKERNLDADD+=-lrumpkern_${var}
     21 .endfor
     22