Home | History | Annotate | Line # | Download | only in rump_allserver
Makefile revision 1.15
      1 #	$NetBSD: Makefile,v 1.15 2021/11/01 21:37:33 nia Exp $
      2 #
      3 
      4 PROG=	rump_allserver
      5 MLINKS+=rump_allserver.1 rump_server.1
      6 
      7 NOFULLRELRO=	yes
      8 
      9 RUMPTOP=${.CURDIR}/../../sys/rump
     10 
     11 .include "${RUMPTOP}/dev/Makefile.rumpdevcomp"
     12 .include "${RUMPTOP}/fs/Makefile.rumpfscomp"
     13 .include "${RUMPTOP}/kern/Makefile.rumpkerncomp"
     14 .include "${RUMPTOP}/net/Makefile.rumpnetcomp"
     15 
     16 LDADD+=	${RUMPDEVLDADD} ${RUMPFSLDADD} ${RUMPKERNLDADD} ${RUMPNETLDADD}
     17 LDADD+= -lrumpdev -lrumpnet -lrumpvfs -lrump -lrumpvfs -lrumpvfs_nofifofs -lrump -lrumpuser -lpthread
     18 
     19 .if ${RUMP_SANITIZE:Uno} != "no"
     20 LDADD+=	-fsanitize=${RUMP_SANITIZE}
     21 .endif
     22 
     23 .include <bsd.prog.mk>
     24