Edit

thodg/libiconv/src/Makefile.in

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2023-05-12 22:50:18
    Hash : af375a34
    Message : Integrate the last change. * src/Makefile.in (SOURCE_FILES): Add zos-tag.h. * tests/Makefile.in (SOURCE_FILES): Add check-tag. * NEWS: Mention the new functionality.

  • src/Makefile.in
  • # Makefile for libiconv/src
    
    #### Start of system configuration section. ####
    
    # Directories used by "make":
    srcdir = @srcdir@
    top_srcdir = @top_srcdir@
    
    # Directories used by "make install":
    prefix = @prefix@
    local_prefix = /usr/local
    exec_prefix = @exec_prefix@
    bindir = @bindir@
    libdir = @libdir@
    datarootdir = @datarootdir@
    datadir = @datadir@
    localedir = @localedir@
    
    # Programs used by "make":
    CC = @CC@
    CFLAGS = @CFLAGS@
    CPPFLAGS = @CPPFLAGS@
    LDFLAGS = @LDFLAGS@
    INCLUDES = -I. -I$(srcdir) -I.. -I../include -I$(srcdir)/../include -I../srclib -I$(srcdir)/../srclib
    LIBTOOL = @LIBTOOL@
    LIBTOOL_COMPILE = $(LIBTOOL) --mode=compile
    LIBTOOL_LINK = $(LIBTOOL) --mode=link
    LIBTOOL_INSTALL = $(LIBTOOL) --mode=install
    LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall
    WINDRES = @WINDRES@
    RM = rm -f
    @SET_MAKE@
    
    # Programs used by "make install":
    INSTALL = @INSTALL@
    INSTALL_PROGRAM = @INSTALL_PROGRAM@
    INSTALL_DATA = @INSTALL_DATA@
    mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
    
    # Programs used by "make install-strip":
    STRIP = @STRIP@
    INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
    install_sh = @install_sh@
    
    #### End of system configuration section. ####
    
    SHELL = @SHELL@
    
    PACKAGE_VERSION = @VERSION@
    
    # Needed by $(LIBTOOL).
    top_builddir = ..
    
    # Needed by SET_RELOCATABLE.
    EXEEXT = @EXEEXT@
    
    # Needed by RELOCATABLE_LDFLAGS.
    host = @host@
    
    OBJECTS_RES_yes = iconv.res
    OBJECTS_RES_no =
    
    # We cannot link with libintl until libiconv is installed. (When we call
    # libtool with arguments "../lib/libiconv.la -lintl", libtool will call ld
    # with "../lib/.libs/libiconv.so $libdir/libintl.so $libdir/libiconv.so",
    # (remember that $libdir/libintl.la lists $libdir/libiconv.so as a dependency),
    # and this gives a fatal linker error on Solaris because the two libiconv.so
    # files are different but have the same soname.
    # So we can link the iconv executable only after we have installed libiconv,
    # i.e. during "make install". The intermediate 'iconv' executable is built
    # without internationalization and not linked with libintl.
    
    all : iconv_no_i18n$(EXEEXT) iconv.@OBJEXT@ $(OBJECTS_RES_@WOE32@)
    	test `ls -ld . | sed -e 's/^d\(.........\).*/\1/'` = rwxrwxrwx || chmod 777 .
    
    # This is the temporary iconv executable, without internationalization.
    iconv_no_i18n$(EXEEXT) : iconv_no_i18n.@OBJEXT@ ../lib/libiconv.la $(OBJECTS_RES_@WOE32@)
    	$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) iconv_no_i18n.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la $(OBJECTS_RES_@WOE32@) -o $@
    
    iconv_no_i18n.@OBJEXT@ : $(srcdir)/iconv_no_i18n.c $(srcdir)/iconv.c
    	$(CC) -c $(INCLUDES) -I../lib $(CFLAGS) $(CPPFLAGS) -DINSTALLDIR=\"$(bindir)\" -DLOCALEDIR=\"$(localedir)\" $(srcdir)/iconv_no_i18n.c
    
    iconv.@OBJEXT@ : $(srcdir)/iconv.c
    	$(CC) -c $(INCLUDES) -I../lib $(CFLAGS) $(CPPFLAGS) -DINSTALLDIR=\"$(bindir)\" -DLOCALEDIR=\"$(localedir)\" $(srcdir)/iconv.c
    
    iconv.res : $(srcdir)/../windows/iconv.rc
    	$(WINDRES) `$(SHELL) $(srcdir)/../windows/windres-options --escape $(PACKAGE_VERSION)` -i $(srcdir)/../windows/iconv.rc -o iconv.res --output-format=coff
    
    # The following rule is necessary to avoid a toplevel "make -n check" failure.
    ../lib/libiconv.la :
    	cd ../lib && $(MAKE) libiconv.la
    
    # Support for relocatability.
    RELOCATABLE_LIBRARY_PATH = $(libdir)
    RELOCATABLE_SRC_DIR = $(top_srcdir)/srclib
    RELOCATABLE_BUILD_DIR = ../srclib
    RELOCATABLE_CONFIG_H_DIR = ..
    RELOCATABLE_LDFLAGS = @RELOCATABLE_LDFLAGS@
    RELOCATABLE_STRIP = :
    INSTALL_PROGRAM_ENV = @INSTALL_PROGRAM_ENV@
    iconv_LDFLAGS = `if test -n '$(RELOCATABLE_LDFLAGS)'; then $(RELOCATABLE_LDFLAGS) $(bindir); fi`
    
    # During "make install", we can build the final iconv executable.
    # On HP-UX, in order to ensure that the new libiconv.sl will override the old
    # one that is hardcoded in libintl.sl, we need to mention libiconv.sl before
    # libintl.sl on the link command line. We have to bypass libtool in order to
    # achieve this.
    # On Solaris, the linker gives an error if we are using libintl.so and it
    # refers to a libiconv.so in $prefix/lib since then it sees two libiconv.so's,
    # one in $prefix/lib and one in ../lib/.libs. So we have to avoid using
    # ../lib/libiconv.la entirely.
    install : all force
    	if [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi
    	case "@host_os@" in \
    	  hpux*) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a -L$(DESTDIR)$(libdir) -liconv @LIBINTL@ $(OBJECTS_RES_@WOE32@) `if test -n '$(DESTDIR)'; then echo " -Wl,+b -Wl,$(libdir)"; fi` -o iconv$(EXEEXT);; \
    	  *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a @LTLIBINTL@ $(DESTDIR)$(libdir)/libiconv.la $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \
    	esac
    	$(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) iconv$(EXEEXT) $(DESTDIR)$(bindir)/iconv$(EXEEXT)
    
    install-strip : force
    	case '$(INSTALL_PROGRAM)' in \
    	  */install-reloc) \
    	    $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' RELOCATABLE_STRIP='$(STRIP)' ;; \
    	  *) \
    	    $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' INSTALL_PROGRAM='$(INSTALL_STRIP_PROGRAM)' ;; \
    	esac
    
    installdirs : force
    	if [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi
    
    uninstall : force
    	$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(bindir)/iconv$(EXEEXT)
    
    check : all
    
    mostlyclean : clean
    
    clean : force
    	$(RM) *.@OBJEXT@ *.lo iconv.res iconv_no_i18n iconv_no_i18n$(EXEEXT) iconv$(EXEEXT) core *.stackdump
    	$(RM) -r .libs _libs
    
    distclean : clean
    	$(RM) Makefile
    
    maintainer-clean : distclean
    
    # List of source files.
    SOURCE_FILES = \
      Makefile.in \
      iconv.c iconv_no_i18n.c \
      zos-tag.h
    # List of distributed files imported from other packages.
    IMPORTED_FILES =
    # List of distributed files generated by autotools or Makefile.devel.
    GENERATED_FILES =
    # List of distributed files generated by "make".
    DISTRIBUTED_BUILT_FILES =
    # List of distributed files.
    DISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)
    
    distdir : $(DISTFILES)
    	for file in $(DISTFILES); do \
    	  if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \
    	  cp -p "$$dir/$$file" '$(distdir)'/$$file || exit 1; \
    	done
    
    force :