Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Unified Diff: Makefile.am

Issue 7109015: Update XZ Utils to 5.0.3 (in deps) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « INSTALL.generic ('k') | NEWS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.am
===================================================================
--- Makefile.am (revision 50504)
+++ Makefile.am (working copy)
@@ -27,18 +27,24 @@
doc/xz-file-format.txt \
doc/lzma-file-format.txt
+examplesdir = $(docdir)/examples
+dist_examples_DATA = \
+ doc/examples/xz_pipe_comp.c \
+ doc/examples/xz_pipe_decomp.c
+
EXTRA_DIST = \
extra \
dos \
windows \
autogen.sh \
- version.sh \
Doxyfile.in \
COPYING.GPLv2 \
COPYING.GPLv3 \
COPYING.LGPLv2.1 \
INSTALL.generic \
- PACKAGERS
+ PACKAGERS \
+ build-aux/manconv.sh \
+ build-aux/version.sh
ACLOCAL_AMFLAGS = -I m4
@@ -64,19 +70,21 @@
$(MKDIR_P) "$$dest/pdf-a4" "$$dest/pdf-letter" "$$dest/txt" && \
for FILE in $(manfiles); do \
BASE=`basename $$FILE .1` && \
- groff -man -t -Tps -P-pa4 < "$(srcdir)/$$FILE" \
- | ps2pdf - - \
+ sh "$(srcdir)/build-aux/manconv.sh" pdf a4 \
+ < "$(srcdir)/$$FILE" \
> "$$dest/pdf-a4/$$BASE-a4.pdf" && \
- groff -man -t -Tps -P-pletter < "$(srcdir)/$$FILE" \
- | ps2pdf - - \
+ sh "$(srcdir)/build-aux/manconv.sh" pdf letter \
+ < "$(srcdir)/$$FILE" \
> "$$dest/pdf-letter/$$BASE-letter.pdf" && \
- groff -man -t -Tascii < "$(srcdir)/$$FILE" \
- | col -bx > "$$dest/txt/$$BASE.txt"; \
+ sh "$(srcdir)/build-aux/manconv.sh" ascii \
+ < "$(srcdir)/$$FILE" \
+ > "$$dest/txt/$$BASE.txt"; \
done; \
fi
# This works with GNU tar and gives cleaner package than normal 'make dist'.
mydist:
+ VERSION=$(VERSION); \
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
« no previous file with comments | « INSTALL.generic ('k') | NEWS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698