diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-02-01 16:28:01 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-02-01 16:28:01 +0000 |
commit | ed14b6e01afaf82e6d03c114f68404bbb1aaa47a (patch) | |
tree | a3ca69a02ff78d685a9ad50cd867c166ab387609 /contrib/bzip2/Makefile-libbz2_so | |
parent | df9de0eba10ac3f17697c3626efff3f484b3333a (diff) |
Virgin import (trimmed) of Bzip2 version 1.0.2vendor/bzip2/1.0.2
Notes
Notes:
svn path=/vendor/bzip2/dist/; revision=90067
svn path=/vendor/bzip2/1.0.2/; revision=90069; tag=vendor/bzip2/1.0.2
Diffstat (limited to 'contrib/bzip2/Makefile-libbz2_so')
-rw-r--r-- | contrib/bzip2/Makefile-libbz2_so | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/contrib/bzip2/Makefile-libbz2_so b/contrib/bzip2/Makefile-libbz2_so index a347c50e9b28..4986fe2ad8a7 100644 --- a/contrib/bzip2/Makefile-libbz2_so +++ b/contrib/bzip2/Makefile-libbz2_so @@ -1,8 +1,9 @@ # This Makefile builds a shared version of the library, -# libbz2.so.1.0.1, with soname libbz2.so.1.0, -# at least on x86-Linux (RedHat 5.2), -# with gcc-2.7.2.3. Please see the README file for some +# libbz2.so.1.0.2, 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 # important info about building the library like this. SHELL=/bin/sh @@ -19,13 +20,13 @@ OBJS= blocksort.o \ bzlib.o all: $(OBJS) - $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.1 $(OBJS) - $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.1 + $(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 rm -f libbz2.so.1.0 - ln -s libbz2.so.1.0.1 libbz2.so.1.0 + ln -s libbz2.so.1.0.2 libbz2.so.1.0 clean: - rm -f $(OBJS) bzip2.o libbz2.so.1.0.1 libbz2.so.1.0 bzip2-shared + rm -f $(OBJS) bzip2.o libbz2.so.1.0.2 libbz2.so.1.0 bzip2-shared blocksort.o: blocksort.c $(CC) $(CFLAGS) -c blocksort.c |