--- embedaddon/libiconv/man/Makefile.in 2012/02/21 22:57:48 1.1.1.1 +++ embedaddon/libiconv/man/Makefile.in 2021/03/17 13:38:46 1.1.1.2 @@ -27,7 +27,7 @@ mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinst #### End of system configuration section. #### -SHELL = /bin/sh +SHELL = @SHELL@ # Used by docdir. PACKAGE = @PACKAGE@ @@ -64,6 +64,36 @@ distclean : force $(RM) Makefile maintainer-clean : distclean + +# List of source files. +SOURCE_FILES = \ + Makefile.in \ + iconv.1 \ + iconv.3 \ + iconv_close.3 \ + iconv_open.3 \ + iconvctl.3 \ + iconv_open_into.3 +# List of distributed files imported from other packages. +IMPORTED_FILES = +# List of distributed files generated by autotools or Makefile.devel. +GENERATED_FILES = \ + iconv.1.html \ + iconv.3.html \ + iconv_close.3.html \ + iconv_open.3.html \ + iconvctl.3.html \ + iconv_open_into.3.html +# 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 :