436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
18 lines
302 B
Makefile
18 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>
|