Home | History | Annotate | Line # | Download | only in kern
Makefile.rumpkerncomp revision 1.11
      1 #	$NetBSD: Makefile.rumpkerncomp,v 1.11 2015/01/07 22:24:03 pooka Exp $
      2 #
      3 
      4 .include <bsd.own.mk>
      5 
      6 RUMPKERNCOMPS=	crypto sysproxy 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