minix/servers/procfs/Makefile

23 lines
340 B
Makefile
Raw Normal View History

# Makefile for ProcFS server
2011-08-17 15:23:45 +02:00
#
.include <bsd.own.mk>
PROG= procfs
SRCS= buf.c main.c pid.c root.c tree.c util.c cpuinfo.c
CPPFLAGS+= -I${MINIXSRCDIR} -I${MINIXSRCDIR}/servers
2011-08-17 15:23:45 +02:00
.if ${BUILDAVFS} == "yes"
CFLAGS+= -D_USEAVFS
.endif
DPADD+= ${LIBVTREEFS} ${LIBSYS}
LDADD+= -lvtreefs -lsys
MAN=
BINDIR?= /sbin
2011-07-09 15:04:42 +02:00
.include <minix.service.mk>