phunix/servers/rs/Makefile
Arun Thomas 007104d60e GCC build fixes/updates
-Set stack sizes for boot image processes
-Increase RS stack size
-Reduce ramdisk size
-HARDWARE task should use kernel stack
-Minor asm tweaks for leading underscores
2010-05-26 18:45:55 +00:00

21 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 1225k
CPPFLAGS+= -I${MINIXSRCDIR}
SUBDIR= service
.include <minix.prog.mk>
.include <minix.subdir.mk>