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

Side by Side Diff: third_party/zlib/contrib/minizip/Makefile

Issue 16605: Add zlib/contrib/minizip to third_party/zlib... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 12 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 CC=cc
2 CFLAGS=-O -I../..
3
4 UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a
5 ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a
6
7 .c.o:
8 $(CC) -c $(CFLAGS) $*.c
9
10 all: miniunz minizip
11
12 miniunz: $(UNZ_OBJS)
13 $(CC) $(CFLAGS) -o $@ $(UNZ_OBJS)
14
15 minizip: $(ZIP_OBJS)
16 $(CC) $(CFLAGS) -o $@ $(ZIP_OBJS)
17
18 test: miniunz minizip
19 ./minizip test readme.txt
20 ./miniunz -l test.zip
21 mv readme.txt readme.old
22 ./miniunz test.zip
23
24 clean:
25 /bin/rm -f *.o *~ minizip miniunz
OLDNEW
« no previous file with comments | « third_party/zlib/contrib/minizip/ChangeLogUnzip ('k') | third_party/zlib/contrib/minizip/crypt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698