]> sourceware.org Git - lvm2.git/commitdiff
man: Add lvmthin(7).
authorAlasdair G Kergon <agk@redhat.com>
Fri, 4 Apr 2014 00:14:25 +0000 (01:14 +0100)
committerAlasdair G Kergon <agk@redhat.com>
Fri, 4 Apr 2014 00:14:25 +0000 (01:14 +0100)
WHATS_NEW
man/Makefile.in

index 0a95f3d32318e561417a05288c81da58f7e1b7f3..70b39c160d40b3d61e68cf7b678578424e8975d2 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.106 - 
 ====================================
+  Add lvmthin man page to section 7.
   Extend internal validation of lv names size is less then 128 chars.
   Fail in resume for lvrename will result in failing command.
   Validate length of new LV name in lvrename to not exceed 127 characters.
index 72098e61c296968b3468562f24d7dcb452e89e86..6c59c8e62d5e3b0349cae0c000a35246b8d3396d 100644 (file)
@@ -56,18 +56,26 @@ ifneq ("@CLVMD@", "none")
 else
   MAN8CLUSTER=
 endif
+
 ifeq ("@BUILD_CMIRRORD@", "yes")
   MAN8CLUSTER+=cmirrord.8
 endif
 
+ifneq ("@THIN@", "none")
+  MAN7=lvmthin.7
+else
+  MAN7=
+endif
+
 MAN8DM=dmsetup.8 $(DMEVENTDMAN)
 MAN5DIR=$(mandir)/man5
+MAN7DIR=$(mandir)/man7
 MAN8DIR=$(mandir)/man8
 
 MAN8SYSTEMD_GENERATORS=lvm2-activation-generator.8
 
-CLEAN_TARGETS=$(MAN5) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(BLKDEACTIVATEMAN) $(DMEVENTDMAN) $(MAN8DM)
-DISTCLEAN_TARGETS=fsadm.8 clvmd.8 cmirrord.8 dmeventd.8
+CLEAN_TARGETS=$(MAN5) $(MAN7) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(BLKDEACTIVATEMAN) $(DMEVENTDMAN) $(MAN8DM)
+DISTCLEAN_TARGETS=fsadm.8 clvmd.8 cmirrord.8 dmeventd.8 lvmthin.7 blkdeactivate.8
 
 include $(top_builddir)/make.tmpl
 
@@ -77,13 +85,13 @@ endif
 
 all: man device-mapper
 
-.PHONY: man install_man5 install_man8
+.PHONY: man install_man5 install_man7 install_man8
 
 device-mapper: $(MAN8DM)
 
-man: $(MAN5) $(MAN8) $(MAN8CLUSTER)
+man: $(MAN5) $(MAN7) $(MAN8) $(MAN8CLUSTER)
 
-$(MAN5) $(MAN8) $(MAN8DM) $(MAN8CLUSTER):      Makefile
+$(MAN5) $(MAN7) $(MAN8) $(MAN8DM) $(MAN8CLUSTER):      Makefile
 
 %: %.in
        @case "$@" in \
@@ -95,11 +103,15 @@ install_man5: $(MAN5)
        $(INSTALL) -d $(MAN5DIR)
        $(INSTALL_DATA) $(MAN5) $(MAN5DIR)/
 
+install_man7: $(MAN8)
+       $(INSTALL) -d $(MAN7DIR)
+       $(INSTALL_DATA) $(MAN7) $(MAN7DIR)/
+
 install_man8: $(MAN8)
        $(INSTALL) -d $(MAN8DIR)
        $(INSTALL_DATA) $(MAN8) $(MAN8DIR)/
 
-install_lvm2: install_man5 install_man8
+install_lvm2: install_man5 install_man7 install_man8
 
 install_cluster: $(MAN8CLUSTER)
        $(INSTALL) -d $(MAN8DIR)
This page took 0.049285 seconds and 5 git commands to generate.