minix/servers/rs/Makefile
Arun Thomas b0159ad168 Buildsystem changes for GCC
-Makefile updates
-Update mkdep
-Build fixes/warning cleanups for some programs
-Restore leading underscores on global syms in kernel asm files
-Increase ramdisk size
2010-05-19 13:24:15 +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 1050k
CPPFLAGS+= -I${MINIXSRCDIR}
SUBDIR= service
.include <minix.prog.mk>
.include <minix.subdir.mk>