aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2015-08-21 22:04:10 +0300
committerrelan <relan@users.noreply.github.com>2015-08-26 11:51:36 +0300
commit8421f50a0ac410d5f440fdae89958d460bfeeae7 (patch)
tree8eac1c5e4898680554ca118cdbd3963bff23ebc5
parentd6f9ccd0deaedfabda0c377b7fa09290642a6fd8 (diff)
downloadandroid_external_exfat-8421f50a0ac410d5f440fdae89958d460bfeeae7.tar.gz
android_external_exfat-8421f50a0ac410d5f440fdae89958d460bfeeae7.tar.bz2
android_external_exfat-8421f50a0ac410d5f440fdae89958d460bfeeae7.zip
Include man pages into distribution.
They are not installed.
-rw-r--r--configure.ac2
-rw-r--r--dump/Makefile.am1
-rw-r--r--fsck/Makefile.am1
-rw-r--r--fuse/Makefile.am1
-rw-r--r--label/Makefile.am1
-rw-r--r--mkfs/Makefile.am1
6 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 145169a..597d24c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ AC_INIT([Free exFAT implementation],
[relan@users.noreply.github.com],
[exfat],
[https://github.com/relan/exfat])
-AM_INIT_AUTOMAKE([1.11.2 -Wall -Werror foreign subdir-objects])
+AM_INIT_AUTOMAKE([1.11.2 -Wall -Werror foreign subdir-objects no-installman])
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_RANLIB
diff --git a/dump/Makefile.am b/dump/Makefile.am
index dd68665..340ac0c 100644
--- a/dump/Makefile.am
+++ b/dump/Makefile.am
@@ -21,6 +21,7 @@
#
sbin_PROGRAMS = dumpexfat
+dist_man8_MANS = dumpexfat.8
dumpexfat_SOURCES = main.c
dumpexfat_CPPFLAGS = -I$(top_srcdir)/libexfat
dumpexfat_LDADD = ../libexfat/libexfat.a
diff --git a/fsck/Makefile.am b/fsck/Makefile.am
index 66a883e..5901ae2 100644
--- a/fsck/Makefile.am
+++ b/fsck/Makefile.am
@@ -21,6 +21,7 @@
#
sbin_PROGRAMS = exfatfsck
+dist_man8_MANS = exfatfsck.8
exfatfsck_SOURCES = main.c
exfatfsck_CPPFLAGS = -I$(top_srcdir)/libexfat
exfatfsck_LDADD = ../libexfat/libexfat.a
diff --git a/fuse/Makefile.am b/fuse/Makefile.am
index 62ecaf1..ce36b35 100644
--- a/fuse/Makefile.am
+++ b/fuse/Makefile.am
@@ -21,6 +21,7 @@
#
sbin_PROGRAMS = mount.exfat-fuse
+dist_man8_MANS = mount.exfat-fuse.8
mount_exfat_fuse_SOURCES = main.c
mount_exfat_fuse_CPPFLAGS = -I$(top_srcdir)/libexfat
mount_exfat_fuse_CFLAGS = $(FUSE_CFLAGS)
diff --git a/label/Makefile.am b/label/Makefile.am
index ac27a5a..a2bf9c8 100644
--- a/label/Makefile.am
+++ b/label/Makefile.am
@@ -21,6 +21,7 @@
#
sbin_PROGRAMS = exfatlabel
+dist_man8_MANS = exfatlabel.8
exfatlabel_SOURCES = main.c
exfatlabel_CPPFLAGS = -I$(top_srcdir)/libexfat
exfatlabel_LDADD = ../libexfat/libexfat.a
diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
index 190126a..ea97a1f 100644
--- a/mkfs/Makefile.am
+++ b/mkfs/Makefile.am
@@ -21,6 +21,7 @@
#
sbin_PROGRAMS = mkexfatfs
+dist_man8_MANS = mkexfatfs.8
mkexfatfs_SOURCES = \
cbm.c \
cbm.h \