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

Side by Side Diff: Makefile.am

Issue 62403002: Update XZ Utils to 5.0.5 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | NEWS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1 ##
2 ## Author: Lasse Collin 2 ## Author: Lasse Collin
3 ## 3 ##
4 ## This file has been put into the public domain. 4 ## This file has been put into the public domain.
5 ## You can do whatever you want with this file. 5 ## You can do whatever you want with this file.
6 ## 6 ##
7 7
8 # Use -n to prevent gzip from adding a timestamp to the .gz headers. 8 # Use -n to prevent gzip from adding a timestamp to the .gz headers.
9 GZIP_ENV = -9n 9 GZIP_ENV = -9n
10 10
(...skipping 29 matching lines...) Expand all
40 40
41 examplesolddir = $(docdir)/examples_old 41 examplesolddir = $(docdir)/examples_old
42 dist_examplesold_DATA = \ 42 dist_examplesold_DATA = \
43 doc/examples_old/xz_pipe_comp.c \ 43 doc/examples_old/xz_pipe_comp.c \
44 doc/examples_old/xz_pipe_decomp.c 44 doc/examples_old/xz_pipe_decomp.c
45 45
46 EXTRA_DIST = \ 46 EXTRA_DIST = \
47 extra \ 47 extra \
48 dos \ 48 dos \
49 windows \ 49 windows \
50 macosx \
50 autogen.sh \ 51 autogen.sh \
51 Doxyfile.in \ 52 Doxyfile.in \
52 COPYING.GPLv2 \ 53 COPYING.GPLv2 \
53 COPYING.GPLv3 \ 54 COPYING.GPLv3 \
54 COPYING.LGPLv2.1 \ 55 COPYING.LGPLv2.1 \
55 INSTALL.generic \ 56 INSTALL.generic \
56 PACKAGERS \ 57 PACKAGERS \
57 build-aux/manconv.sh \ 58 build-aux/manconv.sh \
58 build-aux/version.sh 59 build-aux/version.sh
59 60
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 96
96 # This works with GNU tar and gives cleaner package than normal 'make dist'. 97 # This works with GNU tar and gives cleaner package than normal 'make dist'.
97 mydist: 98 mydist:
98 VERSION=$(VERSION); \ 99 VERSION=$(VERSION); \
99 if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \ 100 if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
100 SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \ 101 SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
101 test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \ 102 test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
102 fi; \ 103 fi; \
103 TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \ 104 TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
104 $(MAKE) VERSION="$$VERSION" dist-gzip 105 $(MAKE) VERSION="$$VERSION" dist-gzip
OLDNEW
« no previous file with comments | « no previous file | NEWS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698