diff options
author | rsc <devnull@localhost> | 2004-04-14 20:09:21 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-04-14 20:09:21 +0000 |
commit | ff3adf608207084d1454acddfdb8904bb139c5e4 (patch) | |
tree | 5910aeb723542a38d374f84c575e94ddfd935eb9 /src/cmd/bzip2/mkfile | |
parent | 4314729ddef28cb619ce97d50f0968ca24c93803 (diff) | |
download | plan9port-ff3adf608207084d1454acddfdb8904bb139c5e4.tar.gz plan9port-ff3adf608207084d1454acddfdb8904bb139c5e4.tar.bz2 plan9port-ff3adf608207084d1454acddfdb8904bb139c5e4.zip |
add gzip, bzip2
'
Diffstat (limited to 'src/cmd/bzip2/mkfile')
-rw-r--r-- | src/cmd/bzip2/mkfile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/cmd/bzip2/mkfile b/src/cmd/bzip2/mkfile new file mode 100644 index 00000000..a1781fc4 --- /dev/null +++ b/src/cmd/bzip2/mkfile @@ -0,0 +1,45 @@ +PLAN9=../../.. +<$PLAN9/src/mkhdr + +OFILES= + +TARG=\ + bzip2\ + bunzip2\ + +HFILES=\ + lib/os.h\ + lib/bzlib.h\ + lib/plan9.h\ + +LIB=lib/libbzip2.a + +SHORTLIB=bio 9 +<$PLAN9/src/mkmany + +CFLAGS=$CFLAGS -p -DPLAN9 -Ilib + +test:V: $O.bzip2 $O.bunzip2 + ./$O.bzip2 -1 < sample1.ref > sample1.rb2 + ./$O.bzip2 -2 < sample2.ref > sample2.rb2 + ./$O.bzip2 -3 < sample3.ref > sample3.rb2 + ./$O.bunzip2 < sample1.bz2 > sample1.tst + ./$O.bunzip2 < sample2.bz2 > sample2.tst + ./$O.bunzip2 < sample3.bz2 > sample3.tst + cmp sample1.bz2 sample1.rb2 + cmp sample2.bz2 sample2.rb2 + cmp sample3.bz2 sample3.rb2 + cmp sample1.tst sample1.ref + cmp sample2.tst sample2.ref + cmp sample3.tst sample3.ref + +bzip2recover.$O: bzip2recover.c + pcc -D_POSIX_SOURCE -D_BSD_EXTENSION -c bzip2recover.c + +clean:V: + rm -f *.[$OS] y.tab.? y.debug y.output [$OS].* $TARG *.rb2 *.tst + cd lib; mk clean + +lib/libbzip2.a: + cd lib; mk + |