93ae43f577
Not yet fully spec-compliant; work in progress
15 lines
285 B
Makefile
15 lines
285 B
Makefile
# Makefile for Reincarnation Server (RS)
|
|
PROG= rs
|
|
SRCS= exec.c main.c request.c manager.c table.c utility.c memory.c error.c
|
|
|
|
DPADD+= ${LIBSYS} ${LIBEXEC}
|
|
LDADD+= -lsys -lexec
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
INSTALLFLAGS+= -S 8125k
|
|
|
|
CPPFLAGS+= -I${MINIXSRCDIR}
|
|
|
|
.include <minix.bootprog.mk>
|