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

Side by Side Diff: chrome/installer/mac/third_party/bsdiff/Makefile

Issue 2789003: Add unpatched bsdiff 4.3 to chrome/installer/mac/third_party/bsdiff (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 CFLAGS += -O3 -lbz2
2
3 PREFIX ?= /usr/local
4 INSTALL_PROGRAM ?= ${INSTALL} -c -s -m 555
5 INSTALL_MAN ?= ${INSTALL} -c -m 444
6
7 all: bsdiff bspatch
8 bsdiff: bsdiff.c
9 bspatch: bspatch.c
10
11 install:
12 ${INSTALL_PROGRAM} bsdiff bspatch ${PREFIX}/bin
13 .ifndef WITHOUT_MAN
14 ${INSTALL_MAN} bsdiff.1 bspatch.1 ${PREFIX}/man/man1
15 .endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698