summaryrefslogtreecommitdiff
path: root/minix/servers/rs/Makefile
blob: 3edcb53f4b988e027f546b6ccf357d6d6356f950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.include <bsd.own.mk>

# Makefile for Reincarnation Server (RS)
PROG=	rs
SRCS=	exec.c main.c request.c manager.c table.c utility.c error.c update.c

.if ${USE_PCI} != "no"
CPPFLAGS+= -DUSE_PCI
.endif

.if ${USE_PCI} != "no"
CPPFLAGS+= -DUSE_PCI
.endif

DPADD+=	${LIBSYS} ${LIBEXEC}
LDADD+=	-lsys -lexec

CPPFLAGS+=	-I${NETBSDSRCDIR}/minix

.include <minix.service.mk>