Skip to content

Commit

Permalink
pigz version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
madler authored and Jim Meyering committed Jan 25, 2010
1 parent bd6fc1f commit e962190
Show file tree
Hide file tree
Showing 3 changed files with 273 additions and 202 deletions.
21 changes: 19 additions & 2 deletions Makefile
@@ -1,4 +1,4 @@
CFLAGS=-O2 -DDEBUG
CFLAGS=-O2

pigz: pigz.o yarn.o
cc -o pigz pigz.o yarn.o -lpthread -lz
Expand All @@ -7,5 +7,22 @@ pigz.o: pigz.c yarn.h

yarn.o: yarn.c yarn.h

dev: pigz pigzt pigzn

pigzt: pigzt.o yarnt.o
cc -o pigzt pigzt.o yarnt.o -lpthread -lz

pigzt.o: pigz.c yarn.h
cc -Wall -pedantic -O3 -DDEBUG -c -o pigzt.o pigz.c

yarnt.o: yarn.c yarn.h
cc -Wall -pedantic -O3 -DDEBUG -c -o yarnt.o yarn.c

pigzn: pigzn.o
cc -o pigzn pigzn.o -lz

pigzn.o: pigz.c
cc -Wall -pedantic -O3 -DDEBUG -DNOTHREAD -c -o pigzn.o pigz.c

clean:
rm -f pigz pigz.o yarn.o
rm -f *.o pigz pigzn pigzt
4 changes: 2 additions & 2 deletions README
@@ -1,4 +1,4 @@
pigz 2.01 (20 Oct 2008) by Mark Adler
pigz 2.1 (24 Oct 2008) by Mark Adler

pigz, which stands for Parallel Implementation of GZip, is a fully functional
replacement for gzip that exploits multiple processors and multiple cores to
Expand All @@ -15,7 +15,7 @@ Type "pigz" to see the command help and all of the command options.

The latest version of pigz can be found at http://zlib.net/pigz/ . You need
zlib version 1.2.3 or later to compile pigz. You can find the latest version
of zlib at http://zlib.net/ .
of zlib at http://zlib.net/ . You can look in pigz.c for the change history.

Questions, comments, bug reports, fixes, etc. can be emailed to Mark at his
address in the license below.
Expand Down

0 comments on commit e962190

Please sign in to comment.