diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-08-10 11:22:31 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-08-10 11:22:31 +0300 |
commit | e1ce2291e759b50ebfcf7cbbcc04cd098f1705a4 (patch) | |
tree | de704f173d441e2b64c6d78756fed43d9d284055 /src/xz/Makefile.am | |
parent | “xzdiff a.xz b.xz” always fails (diff) | |
download | xz-e1ce2291e759b50ebfcf7cbbcc04cd098f1705a4.tar.xz |
Added a rough version of the xz man page.
Diffstat (limited to 'src/xz/Makefile.am')
-rw-r--r-- | src/xz/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/xz/Makefile.am b/src/xz/Makefile.am index 8716752f..773654e9 100644 --- a/src/xz/Makefile.am +++ b/src/xz/Makefile.am @@ -58,6 +58,9 @@ xz_LDADD += $(LTLIBINTL) $(xz_CPPFLAGS) $(CPPFLAGS) $(RCFLAGS) -i $< -o $@ +dist_man_MANS = xz.1 + + ## Create symlinks for unxz and xzcat for convenience. Create symlinks also ## for lzma, unlzma, and lzcat for compatibility with LZMA Utils 4.32.x. xzlinks = unxz xzcat lzma unlzma lzcat @@ -70,6 +73,13 @@ install-exec-hook: rm -f $$link && \ $(LN_S) $$target $$link; \ done + cd $(DESTDIR)$(mandir)/man1 && \ + target=`echo xz | sed '$(transform)'` && \ + for name in $(xzlinks); do \ + link=`echo $$name | sed '$(transform)'` && \ + rm -f $$link.1 && \ + $(LN_S) $$target.1 $$link.1; \ + done uninstall-hook: cd $(DESTDIR)$(bindir) && \ @@ -77,3 +87,8 @@ uninstall-hook: link=`echo $$name | sed '$(transform)'` && \ rm -f $$link; \ done + cd $(DESTDIR)$(mandir)/man1 && \ + for name in $(xzlinks); do \ + link=`echo $$name | sed '$(transform)'` && \ + rm -f $$link.1; \ + done |