20 lines
337 B
Makefile
20 lines
337 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 memory.c error.c
|
|
|
|
.if ${USE_PCI} != "no"
|
|
CPPFLAGS+= -DUSE_PCI
|
|
.endif
|
|
|
|
DPADD+= ${LIBSYS} ${LIBEXEC}
|
|
LDADD+= -lsys -lexec
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}
|
|
|
|
.include <minix.bootprog.mk>
|