From: Alexandre Oliva Date: Sat, 4 Dec 1999 02:46:42 +0000 (+0000) Subject: The beginnings of multi-compiler/language support in libtool. X-Git-Tag: multi-language-merge-point~283 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29656c5af09cfdf7cd01333701db528d1c3b5f81;p=thirdparty%2Flibtool.git The beginnings of multi-compiler/language support in libtool. Integrated Alexandre's configuration tags patch. --- diff --git a/Makefile.am b/Makefile.am index 0d2d23928..7baefb26e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,20 +30,24 @@ bin_SCRIPTS = libtool libtoolize libtool: $(srcdir)/ltmain.sh $(srcdir)/ltconfig AR="$(AR)" CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" \ - FILE="$(FILE)" LD="$(LD)" LDFLAGS="$(LDFLAGS)" LIBS="$(LIBS)" \ - LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" STRIP="$(STRIP)" \ - AS="$(AS)" DLLTOOL="$(DLLTOOL)" OBJDUMP="$(OBJDUMP)" \ - objext="$(OBJEXT)" exeext="$(EXEEXT)" reload_flag="$(reload_flag)" \ - deplibs_check_method="$(deplibs_check_method)" file_magic_cmd="$(file_magic_cmd)" \ + LTCC="$(CC)" FILE="$(FILE)" LD="$(LD)" LDFLAGS="$(LDFLAGS)" \ + LIBS="$(LIBS)" LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" \ + STRIP="$(STRIP)" AS="$(AS)" DLLTOOL="$(DLLTOOL)" \ + OBJDUMP="$(OBJDUMP)" \ + objext="$(OBJEXT)" exeext="$(EXEEXT)" \ + reload_flag="$(reload_flag)" \ + deplibs_check_method="$(deplibs_check_method)" \ + file_magic_cmd="$(file_magic_cmd)" \ $(SHELL) $(srcdir)/ltconfig $(LIBTOOL_FLAGS) --srcdir=$(srcdir) \ --output=$@ $(srcdir)/ltmain.sh # Experimental C version of libtool. clibtool: $(srcdir)/ltmain.c $(srcdir)/ltconfig AR="$(AR)" CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" \ - FILE="$(FILE)" LD="$(LD)" LDFLAGS="$(LDFLAGS)" LIBS="$(LIBS)" \ - LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" STRIP="$(STRIP)" \ - AS="$(AS)" DLLTOOL="$(DLLTOOL)" OBJDUMP="$(OBJDUMP)" \ + LTCC="$(CC)" FILE="$(FILE)" LD="$(LD)" LDFLAGS="$(LDFLAGS)" \ + LIBS="$(LIBS)" LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" \ + STRIP="$(STRIP)" AS="$(AS)" DLLTOOL="$(DLLTOOL)" \ + OBJDUMP="$(OBJDUMP)" \ objext="$(objext)" exeext="$(exeext)" reload_flag="$(reload_flag)" \ deplibs_check_method="$(deplibs_check_method)" file_magic_cmd="$(file_magic_cmd)" \ $(SHELL) $(srcdir)/ltconfig $(LIBTOOL_FLAGS) --srcdir=$(srcdir) \