b48b037fbe
servers/hgfs/hgfs_server => servers/hgfs servers/hgfs/libhgfs => lib/libhgfs servers/rs/service => commands/service drivers/memory/memory_driver => drivers/memory drivers/memory/ramdisk => drivers/ramdisk
17 lines
288 B
Makefile
17 lines
288 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}
|
|
|
|
.include <minix.prog.mk>
|