summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile6
-rw-r--r--Makefile-libbz2_so14
2 files changed, 10 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 6706685..f8a1772 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@
2# This file is part of bzip2/libbzip2, a program and library for 2# This file is part of bzip2/libbzip2, a program and library for
3# lossless, block-sorting data compression. 3# lossless, block-sorting data compression.
4# 4#
5# bzip2/libbzip2 version 1.0.6 of 6 September 2010 5# bzip2/libbzip2 version 1.0.8 of 13 July 2019
6# Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 6# Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
7# 7#
8# Please read the WARNING, DISCLAIMER and PATENTS sections in the 8# Please read the WARNING, DISCLAIMER and PATENTS sections in the
9# README file. 9# README file.
@@ -137,7 +137,7 @@ bzip2recover.o: bzip2recover.c
137distclean: clean 137distclean: clean
138 rm -f manual.ps manual.html manual.pdf 138 rm -f manual.ps manual.html manual.pdf
139 139
140DISTNAME=bzip2-1.0.7 140DISTNAME=bzip2-1.0.8
141dist: check manual 141dist: check manual
142 rm -f $(DISTNAME) 142 rm -f $(DISTNAME)
143 ln -s -f . $(DISTNAME) 143 ln -s -f . $(DISTNAME)
diff --git a/Makefile-libbz2_so b/Makefile-libbz2_so
index 862eb7d..fb0f230 100644
--- a/Makefile-libbz2_so
+++ b/Makefile-libbz2_so
@@ -1,6 +1,6 @@
1 1
2# This Makefile builds a shared version of the library, 2# 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,
4# at least on x86-Linux (RedHat 7.2), 4# at least on x86-Linux (RedHat 7.2),
5# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98). 5# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98).
6# Please see the README file for some important info 6# Please see the README file for some important info
@@ -10,8 +10,8 @@
10# This file is part of bzip2/libbzip2, a program and library for 10# This file is part of bzip2/libbzip2, a program and library for
11# lossless, block-sorting data compression. 11# lossless, block-sorting data compression.
12# 12#
13# bzip2/libbzip2 version 1.0.6 of 6 September 2010 13# bzip2/libbzip2 version 1.0.8 of 13 July 2019
14# Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 14# Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
15# 15#
16# Please read the WARNING, DISCLAIMER and PATENTS sections in the 16# Please read the WARNING, DISCLAIMER and PATENTS sections in the
17# README file. 17# README file.
@@ -35,13 +35,13 @@ OBJS= blocksort.o \
35 bzlib.o 35 bzlib.o
36 36
37all: $(OBJS) 37all: $(OBJS)
38 $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.7 $(OBJS) 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.7 39 $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8
40 rm -f libbz2.so.1.0 40 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
42 42
43clean: 43clean:
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
45 45
46blocksort.o: blocksort.c 46blocksort.o: blocksort.c
47 $(CC) $(CFLAGS) -c blocksort.c 47 $(CC) $(CFLAGS) -c blocksort.c