xref: /minix3/minix/servers/rs/Makefile (revision fb6bd596bf41ca2d95a06bd463dc3aeed822b3d4)
1.include <bsd.own.mk>
2
3# Makefile for Reincarnation Server (RS)
4PROG=	rs
5SRCS=	exec.c main.c request.c manager.c table.c utility.c error.c update.c
6
7.if ${USE_PCI} != "no"
8CPPFLAGS+= -DUSE_PCI
9.endif
10
11.if ${USE_PCI} != "no"
12CPPFLAGS+= -DUSE_PCI
13.endif
14
15DPADD+=	${LIBSYS} ${LIBEXEC}
16LDADD+=	-lsys -lexec
17
18CPPFLAGS+=	-I${NETBSDSRCDIR}/minix
19
20.include <minix.service.mk>
21