minix/servers/rs/Makefile
Arun Thomas 436d6012a3 Convert drivers/ and servers/ over to bsdmake
-Move libdriver to lib/
-Install all boot image services on filesystem to aid restartability
2010-03-22 21:25:22 +00:00

19 lines
302 B
Makefile

# Makefile for Reincarnation Server (RS)
.include <minix.own.mk>
PROG= rs
SRCS= exec.c main.c request.c manager.c table.c utility.c memory.c error.c
DPADD+= ${LIBSYS}
LDADD+= -lsys
MAN=
BINDIR?= /usr/sbin
INSTALLFLAGS+= -S 850k
SUBDIR= service
.include <minix.prog.mk>
.include <minix.subdir.mk>