11
22# This Makefile builds a shared version of the library,
3- # libbz2.so.1.0.7 , with soname libbz2.so.1.0,
3+ # libbz2.so.1.0.8 , with soname libbz2.so.1.0,
44# at least on x86-Linux (RedHat 7.2),
55# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98).
66# Please see the README file for some important info
1010# This file is part of bzip2/libbzip2, a program and library for
1111# lossless, block-sorting data compression.
1212#
13- # bzip2/libbzip2 version 1.0.6 of 6 September 2010
14- # Copyright (C) 1996-2010 Julian Seward <jseward@acm.org>
13+ # bzip2/libbzip2 version 1.0.8 of 13 July 2019
14+ # Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
1515#
1616# Please read the WARNING, DISCLAIMER and PATENTS sections in the
1717# README file.
@@ -35,13 +35,13 @@ OBJS= blocksort.o \
3535 bzlib.o
3636
3737all: $(OBJS)
38- $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.7 $(OBJS)
39- $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.7
38+ $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.8 $(OBJS)
39+ $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8
4040 rm -f libbz2.so.1.0
41- ln -s libbz2.so.1.0.7 libbz2.so.1.0
41+ ln -s libbz2.so.1.0.8 libbz2.so.1.0
4242
4343clean:
44- rm -f $(OBJS) bzip2.o libbz2.so.1.0.7 libbz2.so.1.0 bzip2-shared
44+ rm -f $(OBJS) bzip2.o libbz2.so.1.0.8 libbz2.so.1.0 bzip2-shared
4545
4646blocksort.o: blocksort.c
4747 $(CC) $(CFLAGS) -c blocksort.c
0 commit comments