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