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