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

Side by Side Diff: xz/lib/Makefile.am

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « xz/extra/scanlzma/scanlzma.c ('k') | xz/lib/getopt.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 ##
2 ## Copyright (C) 2004-2007 Free Software Foundation, Inc.
3 ##
4 ## This program is free software; you can redistribute it and/or modify
5 ## it under the terms of the GNU General Public License as published by
6 ## the Free Software Foundation; either version 2 of the License, or
7 ## (at your option) any later version.
8 ##
9 ## This program is distributed in the hope that it will be useful,
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ## GNU General Public License for more details.
13 ##
14
15 ## Not using gnulib-tool, at least for now. It is likely that we won't
16 ## need anything else from Gnulib than getopt_long().
17
18 noinst_LIBRARIES = libgnu.a
19
20 libgnu_a_SOURCES =
21 libgnu_a_DEPENDENCIES = $(LIBOBJS)
22 libgnu_a_LIBADD = $(LIBOBJS)
23
24 EXTRA_DIST = getopt.in.h getopt.c getopt1.c getopt_int.h
25 BUILT_SOURCES = $(GETOPT_H)
26 MOSTLYCLEANFILES = getopt.h getopt.h-t
27
28 getopt.h: getopt.in.h
29 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
30 cat $(srcdir)/getopt.in.h; \
31 } > $@-t
32 mv -f $@-t $@
OLDNEW
« no previous file with comments | « xz/extra/scanlzma/scanlzma.c ('k') | xz/lib/getopt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698