1 # $NetBSD: Makefile,v 1.5 2015/11/08 20:00:22 christos Exp $ 2 3 .include <bsd.own.mk> 4 5 PROG= mount_sysctlfs 6 SRCS= sysctlfs.c 7 8 DPAPP+= ${LIBPUFFS} ${LIBUTIL} 9 LDADD+= -lpuffs -lutil 10 11 MAN= mount_sysctlfs.8 12 13 .if (${MKRUMP} != "no") 14 .ifdef RUMP_ACTION 15 CPPFLAGS+= -DRUMP_ACTION 16 LDADD+= -lrump -lrumpuser -lpthread 17 .endif 18 .endif 19 20 .include <bsd.prog.mk> 21