mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
e0031d86b7
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: bunder2015 <omfgbunder@gmail.com> Closes #6409 Closes #6411
37 lines
622 B
Makefile
37 lines
622 B
Makefile
dist_man_MANS = \
|
|
fsck.zfs.8 \
|
|
mount.zfs.8 \
|
|
vdev_id.8 \
|
|
zdb.8 \
|
|
zfs.8 \
|
|
zgenhostid.8 \
|
|
zinject.8 \
|
|
zpool.8 \
|
|
zstreamdump.8
|
|
|
|
nodist_man_MANS = \
|
|
zed.8
|
|
|
|
EXTRA_DIST = \
|
|
zed.8.in
|
|
|
|
zed.8: $(srcdir)/zed.8.in
|
|
|
|
do_subst = $(SED) \
|
|
-e 's|@libexecdir[@]|$(libexecdir)|g' \
|
|
-e 's|@runstatedir[@]|$(runstatedir)|g' \
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g'
|
|
|
|
$(nodist_man_MANS): Makefile
|
|
$(RM) $@ $@.tmp
|
|
srcdir=''; \
|
|
test -f ./$@.in || srcdir=$(srcdir)/; \
|
|
$(do_subst) $${srcdir}$@.in >$@.tmp
|
|
mv $@.tmp $@
|
|
|
|
install-data-local:
|
|
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man8"
|
|
|
|
CLEANFILES = \
|
|
$(nodist_man_MANS)
|