minix/minix/servers/rs/Makefile
Cristiano Giuffrida 7f439d4656 rs: Ditch dead code to munmap zero pages.
Change-Id: Ib184839e3b607986716fc48aec5ebd8ee796a065
2015-09-16 11:03:52 +00:00

17 lines
307 B
Makefile

.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
.if ${USE_PCI} != "no"
CPPFLAGS+= -DUSE_PCI
.endif
DPADD+= ${LIBSYS} ${LIBEXEC}
LDADD+= -lsys -lexec
CPPFLAGS+= -I${NETBSDSRCDIR}/minix
.include <minix.service.mk>