aboutsummaryrefslogtreecommitdiff
path: root/contrib/bzip2/Makefile-libbz2_so
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2005-05-16 18:31:55 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2005-05-16 18:31:55 +0000
commitf7a4f99f70313385df697229c92ab37cb671d8ea (patch)
tree1ab456aa9146f4b57bf41375952059b5cceae392 /contrib/bzip2/Makefile-libbz2_so
parented14b6e01afaf82e6d03c114f68404bbb1aaa47a (diff)
Virgin import (trimmed) of Bzip2 version 1.0.3.
Notes
Notes: svn path=/vendor/bzip2/dist/; revision=146293
Diffstat (limited to 'contrib/bzip2/Makefile-libbz2_so')
-rw-r--r--contrib/bzip2/Makefile-libbz2_so12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/bzip2/Makefile-libbz2_so b/contrib/bzip2/Makefile-libbz2_so
index 4986fe2ad8a7..458c5a135e79 100644
--- a/contrib/bzip2/Makefile-libbz2_so
+++ b/contrib/bzip2/Makefile-libbz2_so
@@ -1,6 +1,6 @@
# This Makefile builds a shared version of the library,
-# libbz2.so.1.0.2, with soname libbz2.so.1.0,
+# libbz2.so.1.0.3, with soname libbz2.so.1.0,
# at least on x86-Linux (RedHat 7.2),
# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98).
# Please see the README file for some
@@ -9,7 +9,7 @@
SHELL=/bin/sh
CC=gcc
BIGFILES=-D_FILE_OFFSET_BITS=64
-CFLAGS=-fpic -fPIC -Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+CFLAGS=-fpic -fPIC -Wall -Winline -O -g
OBJS= blocksort.o \
huffman.o \
@@ -20,13 +20,13 @@ OBJS= blocksort.o \
bzlib.o
all: $(OBJS)
- $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.2 $(OBJS)
- $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.2
+ $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.3 $(OBJS)
+ $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.3
rm -f libbz2.so.1.0
- ln -s libbz2.so.1.0.2 libbz2.so.1.0
+ ln -s libbz2.so.1.0.3 libbz2.so.1.0
clean:
- rm -f $(OBJS) bzip2.o libbz2.so.1.0.2 libbz2.so.1.0 bzip2-shared
+ rm -f $(OBJS) bzip2.o libbz2.so.1.0.3 libbz2.so.1.0 bzip2-shared
blocksort.o: blocksort.c
$(CC) $(CFLAGS) -c blocksort.c