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

Side by Side Diff: doc/examples/Makefile

Issue 12568011: Update XZ Utils to 5.0.4 (third_party) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 7 years, 9 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #
2 # Author: Lasse Collin
3 #
4 # This file has been put into the public domain.
5 # You can do whatever you want with this file.
6 #
7
8 CC = c99
9 CFLAGS = -g
10 LDFLAGS = -llzma
11
12 PROGS = \
13 01_compress_easy \
14 02_decompress \
15 03_compress_custom
16
17 all: $(PROGS)
18
19 .c:
20 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
21
22 clean:
23 -rm -f $(PROGS)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698