2000-01-17 19:00:44 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies foreign
|
|
|
|
|
2007-01-17 19:48:52 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I ../.. -I ../../config
|
|
|
|
|
2000-02-14 21:59:58 +00:00
|
|
|
INCLUDES = $(GCINCS)
|
|
|
|
|
2000-01-17 19:00:44 +00:00
|
|
|
if INSTALL_LTDL
|
|
|
|
include_HEADERS = ltdl.h
|
|
|
|
lib_LTLIBRARIES = libltdl.la
|
|
|
|
else
|
|
|
|
noinst_HEADERS = ltdl.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
if CONVENIENCE_LTDL
|
|
|
|
noinst_LTLIBRARIES = libltdlc.la
|
|
|
|
endif
|
|
|
|
|
re PR libgcj/13056 (import new libltdl)
2003-12-16 Michael Koch <konqueror@gmx.de>
Fix for PR libgcj/13056.
* libltdl/configure.in,
libltdl/config.h.in: Removed.
* libltdl/configure.ac,
libltdl/config-h.in,
libltdl/install-sh,
libltdl/config.guess,
libltdl/config.sub,
libltdl/missing,
libltdl/mkinstalldirs,
libltdl/ltmain.sh: New files.
* libltdl/Makefile.am,
libltdl/acinclude.m4,
libltdl/aclocal.m4,
libltdl/ltdl.c,
libltdl/ltdl.h,
libltdl/README: Update to versions from libtool 1.5.
libltdl/configure,
* libltdl/Makefile.in: Regenerated.
* java/lang/natRuntime.cc (find_symbol):
Use type 'lt_ptr' instead of 'lt_ptr_t'.
From-SVN: r74711
2003-12-16 21:48:25 +00:00
|
|
|
## Make sure these will be cleaned even when they're not built by
|
|
|
|
## default.
|
|
|
|
CLEANFILES = libltdl.la libltdlc.la
|
|
|
|
|
2000-01-17 19:00:44 +00:00
|
|
|
libltdl_la_SOURCES = ltdl.c
|
2006-03-28 19:02:25 +00:00
|
|
|
libltdl_la_LDFLAGS = -no-undefined -version-info 4:1:1
|
2000-01-17 19:00:44 +00:00
|
|
|
libltdl_la_LIBADD = $(LIBADD_DL)
|
|
|
|
|
|
|
|
libltdlc_la_SOURCES = ltdl.c
|
|
|
|
libltdlc_la_LIBADD = $(LIBADD_DL)
|
|
|
|
|
|
|
|
## Because we do not have automatic dependency tracking:
|
|
|
|
ltdl.lo: ltdl.h config.h
|
|
|
|
|
re PR libgcj/13056 (import new libltdl)
2003-12-16 Michael Koch <konqueror@gmx.de>
Fix for PR libgcj/13056.
* libltdl/configure.in,
libltdl/config.h.in: Removed.
* libltdl/configure.ac,
libltdl/config-h.in,
libltdl/install-sh,
libltdl/config.guess,
libltdl/config.sub,
libltdl/missing,
libltdl/mkinstalldirs,
libltdl/ltmain.sh: New files.
* libltdl/Makefile.am,
libltdl/acinclude.m4,
libltdl/aclocal.m4,
libltdl/ltdl.c,
libltdl/ltdl.h,
libltdl/README: Update to versions from libtool 1.5.
libltdl/configure,
* libltdl/Makefile.in: Regenerated.
* java/lang/natRuntime.cc (find_symbol):
Use type 'lt_ptr' instead of 'lt_ptr_t'.
From-SVN: r74711
2003-12-16 21:48:25 +00:00
|
|
|
$(libltdl_la_OBJECTS) $(libltdlc_la_OBJECTS): libtool
|
2000-01-17 19:00:44 +00:00
|
|
|
libtool: $(LIBTOOL_DEPS)
|
|
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
|
2006-03-28 19:02:25 +00:00
|
|
|
## These are installed as a subdirectory of pkgdatadir so that
|
|
|
|
## libtoolize --ltdl can find them later:
|
|
|
|
ltdldatadir = $(datadir)/libtool/libltdl
|
|
|
|
ltdldatafiles = COPYING.LIB README acinclude.m4 aclocal.m4 \
|
|
|
|
Makefile.am Makefile.in configure.ac configure \
|
|
|
|
config-h.in config.guess config.sub \
|
|
|
|
install-sh missing ltmain.sh \
|
|
|
|
ltdl.c ltdl.h
|
|
|
|
|
2006-06-05 15:08:56 +00:00
|
|
|
## GCJ LOCAL: fix install buglet. See PR 27818
|
|
|
|
if INSTALL_LTDL
|
2006-03-28 19:02:25 +00:00
|
|
|
## To avoid spurious reconfiguration when the user installs these files
|
|
|
|
## with libtoolize, we have to preserve their timestamps carefully:
|
|
|
|
install-data-local:
|
|
|
|
-rm -rf $(DESTDIR)$(ltdldatadir)
|
|
|
|
$(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
|
|
|
|
( cd $(srcdir) && $(AMTAR) chf - $(ltdldatafiles); ) \
|
|
|
|
| ( umask 0 && cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
|
2006-06-05 15:08:56 +00:00
|
|
|
endif
|