Home | History | Annotate | Line # | Download | only in kern
Makefile.rumpkerncomp revision 1.12
      1  1.12   pooka #	$NetBSD: Makefile.rumpkerncomp,v 1.12 2015/11/15 16:54:16 pooka Exp $
      2   1.1   pooka #
      3   1.1   pooka 
      4   1.4   joerg .include <bsd.own.mk>
      5   1.4   joerg 
      6  1.11   pooka RUMPKERNCOMPS=	crypto sysproxy tty z
      7  1.12   pooka RUMPSYSEMUS=	sys_cygwin sys_linux sys_sunos
      8   1.7  martin 
      9  1.12   pooka .if make(rumpdescribe)
     10  1.12   pooka RUMPKERNCOMPS+=	${RUMPSYSEMUS}
     11  1.12   pooka .endif
     12  1.12   pooka 
     13  1.12   pooka .if ${MKSLJIT} != "no" || make(rumpdescribe)
     14   1.7  martin RUMPKERNCOMPS+=	sljit
     15   1.7  martin .endif
     16   1.1   pooka 
     17  1.12   pooka .if ${MKZFS} != "no" || make(rumpdescribe)
     18   1.3    haad RUMPKERNCOMPS+=    solaris
     19   1.3    haad .endif
     20   1.3    haad 
     21   1.1   pooka .for var in ${RUMPKERNCOMPS}
     22   1.1   pooka RUMPKERNLIBS+=lib${var}
     23   1.1   pooka RUMPKERNLDADD+=-lrumpkern_${var}
     24   1.1   pooka .endfor
     25