2000-06-24 23:56:58 -04:00
|
|
|
--- Makefile.orig Fri Jun 23 16:34:47 2000
|
2000-09-14 09:56:21 -04:00
|
|
|
+++ Makefile Thu Sep 14 09:42:55 2000
|
2000-09-14 05:30:32 -04:00
|
|
|
@@ -3,6 +3,7 @@
|
2000-08-07 07:18:39 -04:00
|
|
|
CC=gcc
|
2000-06-24 23:56:58 -04:00
|
|
|
BIGFILES=-D_FILE_OFFSET_BITS=64
|
|
|
|
CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
|
2000-08-07 07:18:39 -04:00
|
|
|
+LIBTOOL=libtool --quiet
|
2000-06-24 23:56:58 -04:00
|
|
|
|
2000-09-14 05:30:32 -04:00
|
|
|
OBJS= blocksort.o \
|
|
|
|
huffman.o \
|
|
|
|
@@ -12,86 +13,73 @@
|
|
|
|
decompress.o \
|
|
|
|
bzlib.o
|
2000-06-24 23:56:58 -04:00
|
|
|
|
|
|
|
-all: libbz2.a bzip2 bzip2recover test
|
2000-09-14 09:56:21 -04:00
|
|
|
+all: libbz2.la bzip2 bzip2recover
|
2000-06-24 23:56:58 -04:00
|
|
|
|
2000-09-14 09:56:21 -04:00
|
|
|
-bzip2: libbz2.a bzip2.o
|
2000-06-24 23:56:58 -04:00
|
|
|
- $(CC) $(CFLAGS) -o bzip2 bzip2.o -L. -lbz2
|
2000-09-14 09:56:21 -04:00
|
|
|
+bzip2: libbz2.la bzip2.o
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o bzip2 bzip2.lo libbz2.la
|
2000-06-24 23:56:58 -04:00
|
|
|
|
2000-09-14 05:30:32 -04:00
|
|
|
bzip2recover: bzip2recover.o
|
2000-06-24 23:56:58 -04:00
|
|
|
- $(CC) $(CFLAGS) -o bzip2recover bzip2recover.o
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o bzip2recover bzip2recover.lo
|
2000-06-24 23:56:58 -04:00
|
|
|
|
2000-09-14 09:56:21 -04:00
|
|
|
-libbz2.a: $(OBJS)
|
2000-06-24 23:56:58 -04:00
|
|
|
- rm -f libbz2.a
|
|
|
|
- ar cq libbz2.a $(OBJS)
|
|
|
|
- @if ( test -f /usr/bin/ranlib -o -f /bin/ranlib -o \
|
|
|
|
- -f /usr/ccs/bin/ranlib ) ; then \
|
|
|
|
- echo ranlib libbz2.a ; \
|
|
|
|
- ranlib libbz2.a ; \
|
|
|
|
- fi
|
2000-09-14 09:56:21 -04:00
|
|
|
+libbz2.la: $(OBJS)
|
2000-09-14 05:30:32 -04:00
|
|
|
+ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libbz2.la $(OBJS:.o=.lo) \
|
|
|
|
+ -version-info 10:1:0 -rpath $(PREFIX)/lib
|
2000-06-24 23:56:58 -04:00
|
|
|
|
|
|
|
test: bzip2
|
|
|
|
- @cat words1
|
|
|
|
- ./bzip2 -1 < sample1.ref > sample1.rb2
|
|
|
|
- ./bzip2 -2 < sample2.ref > sample2.rb2
|
|
|
|
- ./bzip2 -3 < sample3.ref > sample3.rb2
|
|
|
|
- ./bzip2 -d < sample1.bz2 > sample1.tst
|
|
|
|
- ./bzip2 -d < sample2.bz2 > sample2.tst
|
|
|
|
- ./bzip2 -ds < 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
|
|
|
|
- @cat words3
|
2000-09-14 05:30:32 -04:00
|
|
|
-
|
|
|
|
-PREFIX=/usr
|
2000-06-24 23:56:58 -04:00
|
|
|
+ ./bzip2 -1 < sample1.ref > sample1.rb2 || exit 1
|
|
|
|
+ ./bzip2 -2 < sample2.ref > sample2.rb2 || exit 1
|
|
|
|
+ ./bzip2 -3 < sample3.ref > sample3.rb2 || exit 1
|
|
|
|
+ ./bzip2 -d < sample1.bz2 > sample1.tst || exit 1
|
|
|
|
+ ./bzip2 -d < sample2.bz2 > sample2.tst || exit 1
|
|
|
|
+ ./bzip2 -ds < sample3.bz2 > sample3.tst || exit 1
|
|
|
|
+ cmp sample1.bz2 sample1.rb2 || exit 1
|
|
|
|
+ cmp sample2.bz2 sample2.rb2 || exit 1
|
|
|
|
+ cmp sample3.bz2 sample3.rb2 || exit 1
|
|
|
|
+ cmp sample1.tst sample1.ref || exit 1
|
|
|
|
+ cmp sample2.tst sample2.ref || exit 1
|
|
|
|
+ cmp sample3.tst sample3.ref || exit 1
|
|
|
|
|
|
|
|
install: bzip2 bzip2recover
|
|
|
|
- if ( test ! -d $(PREFIX)/bin ) ; then mkdir $(PREFIX)/bin ; fi
|
|
|
|
- if ( test ! -d $(PREFIX)/lib ) ; then mkdir $(PREFIX)/lib ; fi
|
|
|
|
- if ( test ! -d $(PREFIX)/man ) ; then mkdir $(PREFIX)/man ; fi
|
|
|
|
- if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir $(PREFIX)/man/man1 ; fi
|
|
|
|
- if ( test ! -d $(PREFIX)/include ) ; then mkdir $(PREFIX)/include ; fi
|
|
|
|
- cp -f bzip2 $(PREFIX)/bin/bzip2
|
|
|
|
- cp -f bzip2 $(PREFIX)/bin/bunzip2
|
|
|
|
- cp -f bzip2 $(PREFIX)/bin/bzcat
|
|
|
|
- cp -f bzip2recover $(PREFIX)/bin/bzip2recover
|
|
|
|
- chmod a+x $(PREFIX)/bin/bzip2
|
|
|
|
- chmod a+x $(PREFIX)/bin/bunzip2
|
|
|
|
- chmod a+x $(PREFIX)/bin/bzcat
|
|
|
|
- chmod a+x $(PREFIX)/bin/bzip2recover
|
|
|
|
- cp -f bzip2.1 $(PREFIX)/man/man1
|
|
|
|
- chmod a+r $(PREFIX)/man/man1/bzip2.1
|
|
|
|
- cp -f bzlib.h $(PREFIX)/include
|
|
|
|
- chmod a+r $(PREFIX)/include/bzlib.h
|
|
|
|
- cp -f libbz2.a $(PREFIX)/lib
|
|
|
|
- chmod a+r $(PREFIX)/lib/libbz2.a
|
|
|
|
+ if ( test ! -d $(DESTDIR)$(PREFIX)/bin ) ; then $(BSD_INSTALL_PROGRAM_DIR) $(DESTDIR)$(PREFIX)/bin ; fi
|
|
|
|
+ if ( test ! -d $(DESTDIR)$(PREFIX)/lib ) ; then $(BSD_INSTALL_DATA_DIR) $(DESTDIR)$(PREFIX)/lib ; fi
|
|
|
|
+ if ( test ! -d $(DESTDIR)$(PREFIX)/man ) ; then $(BSD_INSTALL_MAN_DIR) $(DESTDIR)$(PREFIX)/man ; fi
|
|
|
|
+ if ( test ! -d $(DESTDIR)$(PREFIX)/man/man1 ) ; then $(BSD_INSTALL_MAN_DIR) $(DESTDIR)$(PREFIX)/man/man1 ; fi
|
|
|
|
+ if ( test ! -d $(DESTDIR)$(PREFIX)/include ) ; then $(BSD_INSTALL_DATA_DIR) $(DESTDIR)$(PREFIX)/include ; fi
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=install $(BSD_INSTALL_PROGRAM) bzip2 $(DESTDIR)$(PREFIX)/bin
|
2000-06-24 23:56:58 -04:00
|
|
|
+ @cd $(DESTDIR)$(PREFIX)/bin; ln -fs bzip2 bunzip2; \
|
|
|
|
+ ln -fs bzip2 bzcat
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=install $(BSD_INSTALL_PROGRAM) bzip2recover $(DESTDIR)$(PREFIX)/bin
|
2000-06-24 23:56:58 -04:00
|
|
|
+ $(BSD_INSTALL_MAN) bzip2.1 $(DESTDIR)$(PREFIX)/man/man1
|
|
|
|
+ $(BSD_INSTALL_MAN) bzip2.1 $(DESTDIR)$(PREFIX)/man/man1/bunzip2.1
|
|
|
|
+ $(BSD_INSTALL_MAN) bzip2.1 $(DESTDIR)$(PREFIX)/man/man1/bzcat.1
|
|
|
|
+ $(BSD_INSTALL_MAN) bzip2.1 $(DESTDIR)$(PREFIX)/man/man1/bzip2recover.1
|
|
|
|
+ $(BSD_INSTALL_DATA) bzlib.h $(DESTDIR)$(PREFIX)/include
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) libbz2.la $(DESTDIR)$(PREFIX)/lib
|
2000-06-24 23:56:58 -04:00
|
|
|
|
|
|
|
clean:
|
|
|
|
- rm -f *.o libbz2.a bzip2 bzip2recover \
|
2000-09-14 05:30:32 -04:00
|
|
|
+ rm -f *.o *.lo libbz2.a libbz2.so.* bzip2 bzip2recover \
|
2000-06-24 23:56:58 -04:00
|
|
|
sample1.rb2 sample2.rb2 sample3.rb2 \
|
|
|
|
sample1.tst sample2.tst sample3.tst
|
|
|
|
|
2000-09-14 05:30:32 -04:00
|
|
|
blocksort.o: blocksort.c
|
2000-06-24 23:56:58 -04:00
|
|
|
@cat words0
|
|
|
|
- $(CC) $(CFLAGS) -c blocksort.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c blocksort.c
|
2000-09-14 05:30:32 -04:00
|
|
|
huffman.o: huffman.c
|
|
|
|
- $(CC) $(CFLAGS) -c huffman.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c huffman.c
|
2000-09-14 05:30:32 -04:00
|
|
|
crctable.o: crctable.c
|
|
|
|
- $(CC) $(CFLAGS) -c crctable.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c crctable.c
|
2000-09-14 05:30:32 -04:00
|
|
|
randtable.o: randtable.c
|
|
|
|
- $(CC) $(CFLAGS) -c randtable.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c randtable.c
|
2000-09-14 05:30:32 -04:00
|
|
|
compress.o: compress.c
|
|
|
|
- $(CC) $(CFLAGS) -c compress.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c compress.c
|
2000-09-14 05:30:32 -04:00
|
|
|
decompress.o: decompress.c
|
|
|
|
- $(CC) $(CFLAGS) -c decompress.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c decompress.c
|
2000-09-14 05:30:32 -04:00
|
|
|
bzlib.o: bzlib.c
|
|
|
|
- $(CC) $(CFLAGS) -c bzlib.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c bzlib.c
|
2000-09-14 05:30:32 -04:00
|
|
|
bzip2.o: bzip2.c
|
|
|
|
- $(CC) $(CFLAGS) -c bzip2.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c bzip2.c
|
2000-09-14 05:30:32 -04:00
|
|
|
bzip2recover.o: bzip2recover.c
|
|
|
|
- $(CC) $(CFLAGS) -c bzip2recover.c
|
2000-08-07 07:18:39 -04:00
|
|
|
+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c bzip2recover.c
|
2000-06-24 23:56:58 -04:00
|
|
|
|
|
|
|
DISTNAME=bzip2-1.0.1
|
|
|
|
tarfile:
|