f93afa00e9
NETBSDSRCDIR is used all over the place anyway, and this reduces our diff with NetBSD a little.
18 lines
288 B
Makefile
18 lines
288 B
Makefile
# Makefile for ProcFS server
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= procfs
|
|
SRCS= buf.c main.c pid.c root.c tree.c util.c cpuinfo.c
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR} -I${NETBSDSRCDIR}/servers
|
|
|
|
DPADD+= ${LIBVTREEFS} ${LIBSYS}
|
|
LDADD+= -lvtreefs -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /sbin
|
|
|
|
.include <minix.service.mk>
|