minix3/servers/rs/Makefile

17 lines
316 B
Makefile
Raw Normal View History

2020-02-21 00:59:27 +05:30
.include <bsd.own.mk>
# Makefile for Reincarnation Server (RS)
PROG= rs
SRCS= exec.c main.c request.c manager.c table.c utility.c memory.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>