b0159ad168
-Makefile updates -Update mkdep -Build fixes/warning cleanups for some programs -Restore leading underscores on global syms in kernel asm files -Increase ramdisk size
20 lines
332 B
Makefile
20 lines
332 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 1050k
|
|
|
|
CPPFLAGS+= -I${MINIXSRCDIR}
|
|
|
|
SUBDIR= service
|
|
|
|
.include <minix.prog.mk>
|
|
.include <minix.subdir.mk>
|