1.PATH: ${ZFSTOP}/man/man4 2.PATH: ${ZFSTOP}/man/man5 3.PATH: ${ZFSTOP}/man/man7 4.PATH: ${ZFSTOP}/man/man8 5.PATH: ${ZFSTOP}/cmd/zpool 6.PATH: ${ZFSTOP}/cmd/zpool/os/freebsd 7 8 9PACKAGE= zfs 10PROG= zpool 11MAN= \ 12 spl.4 \ 13 vdevprops.7 \ 14 zfs.4 \ 15 zpool.8 \ 16 zpool-add.8 \ 17 zpool-attach.8 \ 18 zpool-checkpoint.8 \ 19 zpool-clear.8 \ 20 zpool-create.8 \ 21 zpool-destroy.8 \ 22 zpool-detach.8 \ 23 zpool-ddtprune.8 \ 24 zpool-events.8 \ 25 zpool-export.8 \ 26 zpool-features.7 \ 27 zpool-get.8 \ 28 zpool-history.8 \ 29 zpool-import.8 \ 30 zpool-initialize.8 \ 31 zpool-iostat.8 \ 32 zpool-labelclear.8 \ 33 zpool-list.8 \ 34 zpool-offline.8 \ 35 zpool-prefetch.8 \ 36 zpool-reguid.8 \ 37 zpool-remove.8 \ 38 zpool-reopen.8 \ 39 zpool-replace.8 \ 40 zpool-resilver.8 \ 41 zpool-scrub.8 \ 42 zpool-split.8 \ 43 zpool-status.8 \ 44 zpool-sync.8 \ 45 zpool-trim.8 \ 46 zpool-upgrade.8 \ 47 zpool-wait.8 \ 48 zpoolconcepts.7 \ 49 zpoolprops.7 50MLINKS= \ 51 zpool-offline.8 zpool-online.8 \ 52 zpool-get.8 zpool-set.8 53SRCS= \ 54 zpool_iter.c \ 55 zpool_main.c \ 56 zpool_util.c \ 57 zpool_util.h \ 58 zpool_vdev.c \ 59 zpool_vdev_os.c 60 61WARNS?= 2 62 63CFLAGS+= \ 64 -DIN_BASE \ 65 -I${ZFSTOP}/include \ 66 -I${ZFSTOP}/lib/libspl/include \ 67 -I${ZFSTOP}/lib/libspl/include/os/freebsd \ 68 -I${ZFSTOP}/lib/libzpool/include \ 69 -I${SRCTOP}/sys \ 70 -I${SRCTOP}/cddl/compat/opensolaris/include \ 71 -I${ZFSTOP}/cmd/zpool \ 72 -include ${ZFSTOP}/include/os/freebsd/spl/sys/ccompile.h \ 73 -DHAVE_ISSETUGID \ 74 -include ${SRCTOP}/sys/modules/zfs/zfs_config.h \ 75 -DSYSCONFDIR=\"/etc\" \ 76 -DPKGDATADIR=\"/usr/share/zfs\" 77 78LIBADD= geom nvpair zfs zutil avl spl zfs_core m 79LDADD+= -pthread 80.include <bsd.prog.mk> 81