Skip to content

Commit

Permalink
* configure, Makefile.in: Rebuilt.
Browse files Browse the repository at this point in the history
	* Makefile.am (EXTRA_LTLIBRARIES): New macro.
	(toolexeclib_LTLIBRARIES): Use @target_all@.
	* configure.in: Recognize --with-system-zlib.  Subst target_all.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26854 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
tromey committed May 10, 1999
1 parent 9958c68 commit a709977
Show file tree
Hide file tree
Showing 5 changed files with 168 additions and 83 deletions.
7 changes: 7 additions & 0 deletions zlib/ChangeLog.gcj
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1999-05-10 Tom Tromey <tromey@cygnus.com>

* configure, Makefile.in: Rebuilt.
* Makefile.am (EXTRA_LTLIBRARIES): New macro.
(toolexeclib_LTLIBRARIES): Use @target_all@.
* configure.in: Recognize --with-system-zlib. Subst target_all.

1999-05-04 Tom Tromey <tromey@cygnus.com>

* Makefile.in: Replace with automake-generated file.
Expand Down
3 changes: 2 additions & 1 deletion zlib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ toolexeclibdir = $(toolexecdir)/lib$(MULTISUBDIR)

## We don't use `libz.la' because we don't want to conflict with a
## system library of that name.
toolexeclib_LTLIBRARIES = libzgcj.la
toolexeclib_LTLIBRARIES = @target_all@
EXTRA_LTLIBRARIES = libzgcj.la

libzgcj_la_SOURCES = adler32.c compress.c crc32.c deflate.c deflate.h \
gzio.c infblock.c infblock.h infcodes.c infcodes.h inffast.c inffast.h \
Expand Down
6 changes: 4 additions & 2 deletions zlib/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ PACKAGE = @PACKAGE@
RANLIB = @RANLIB@
USE_SYMBOL_UNDERSCORE = @USE_SYMBOL_UNDERSCORE@
VERSION = @VERSION@
target_all = @target_all@
zlib_basedir = @zlib_basedir@

AUTOMAKE_OPTIONS = cygnus
Expand All @@ -94,7 +95,8 @@ MULTICLEAN = true
toolexecdir = $(exec_prefix)/$(target_alias)
toolexeclibdir = $(toolexecdir)/lib$(MULTISUBDIR)

toolexeclib_LTLIBRARIES = libzgcj.la
toolexeclib_LTLIBRARIES = @target_all@
EXTRA_LTLIBRARIES = libzgcj.la

libzgcj_la_SOURCES = adler32.c compress.c crc32.c deflate.c deflate.h \
gzio.c infblock.c infblock.h infcodes.c infcodes.h inffast.c inffast.h \
Expand Down Expand Up @@ -215,7 +217,7 @@ distclean-libtool:
maintainer-clean-libtool:

libzgcj.la: $(libzgcj_la_OBJECTS) $(libzgcj_la_DEPENDENCIES)
$(LINK) -rpath $(toolexeclibdir) $(libzgcj_la_LDFLAGS) $(libzgcj_la_OBJECTS) $(libzgcj_la_LIBADD) $(LIBS)
$(LINK) $(libzgcj_la_LDFLAGS) $(libzgcj_la_OBJECTS) $(libzgcj_la_LIBADD) $(LIBS)

tags: TAGS

Expand Down
Loading

0 comments on commit a709977

Please sign in to comment.