c0c8d25799
Makes things easier for pkgsrc
17 lines
284 B
Makefile
17 lines
284 B
Makefile
# Makefile for Reincarnation Server (RS)
|
|
.include <bsd.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 <bsd.prog.mk>
|