NetBSD/usr.sbin/puffs/mount_sysctlfs/Makefile
pooka c7528563f1 If compiled with RUMP_ACTION, access rump kernel instead of host
kernel.  This is an easy way to browse & modify the sysctl tree
offered by a rump kernel instance.
2010-08-06 15:04:13 +00:00

17 lines
288 B
Makefile

# $NetBSD: Makefile,v 1.4 2010/08/06 15:04:13 pooka Exp $
PROG= mount_sysctlfs
SRCS= sysctlfs.c
DPAPP+= ${LIBPUFFS} ${LIBUTIL}
LDADD+= -lpuffs -lutil
MAN= mount_sysctlfs.8
.ifdef RUMP_ACTION
CPPFLAGS+= -DRUMP_ACTION
LDADD+= -lrump -lrumpuser -lpthread
.endif
.include <bsd.prog.mk>