diff options
Diffstat (limited to 'Build/source/Makefile.in')
-rw-r--r-- | Build/source/Makefile.in | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/Build/source/Makefile.in b/Build/source/Makefile.in index ccf647ad3e0..0f3c90663f6 100644 --- a/Build/source/Makefile.in +++ b/Build/source/Makefile.in @@ -46,6 +46,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-common.m4 \ $(top_srcdir)/m4/kpse-freetype2-flags.m4 \ $(top_srcdir)/m4/kpse-gd-flags.m4 \ $(top_srcdir)/m4/kpse-graphite-flags.m4 \ + $(top_srcdir)/m4/kpse-icu-flags.m4 \ $(top_srcdir)/m4/kpse-kpathsea-flags.m4 \ $(top_srcdir)/m4/kpse-libpng-flags.m4 \ $(top_srcdir)/m4/kpse-options.m4 $(top_srcdir)/m4/kpse-pkgs.m4 \ @@ -72,6 +73,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-common.m4 \ $(top_srcdir)/texk/web2c/ac/web2c.ac \ $(top_srcdir)/texk/afm2pl/ac/withenable.ac \ $(top_srcdir)/texk/bibtex8/ac/withenable.ac \ + $(top_srcdir)/texk/bibtexu/ac/withenable.ac \ $(top_srcdir)/texk/cjkutils/ac/withenable.ac \ $(top_srcdir)/texk/detex/ac/withenable.ac \ $(top_srcdir)/texk/devnag/ac/withenable.ac \ @@ -123,6 +125,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-common.m4 \ $(top_srcdir)/libs/xpdf/ac/xpdf.ac \ $(top_srcdir)/libs/graphite/ac/graphite.ac \ $(top_srcdir)/libs/teckit/ac/teckit.ac \ + $(top_srcdir)/libs/icu/ac/icu.ac \ $(top_srcdir)/texk/kpathsea/ac/kpathsea.ac \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ @@ -148,7 +151,6 @@ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags -DIST_SUBDIRS = libs utils texk texk/kpathsea DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -181,10 +183,8 @@ am__relativize = \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" -DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ @@ -214,6 +214,7 @@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FT2_CONFIG = @FT2_CONFIG@ GREP = @GREP@ +ICU_CONFIG = @ICU_CONFIG@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -241,6 +242,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ @@ -313,6 +315,8 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ACLOCAL_AMFLAGS = -I m4 --force DISTCHECK_CONFIGURE_FLAGS = -C +distuninstallcheck_listfiles = find . -type f -o -type l -print +distcleancheck_listfiles = find . -type f -o -type l -print EXTRA_DIST = \ Build \ README.config \ @@ -326,6 +330,7 @@ EXTRA_DIST = \ @build_kpathsea_FALSE@SUBDIRS = libs utils texk @build_kpathsea_TRUE@SUBDIRS = texk/kpathsea libs utils texk +DIST_SUBDIRS = auxdir/auxsub texk/kpathsea libs utils texk all: all-recursive .SUFFIXES: @@ -580,6 +585,7 @@ distdir: $(DISTFILES) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) + dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) @@ -587,7 +593,6 @@ dist-bzip2: distdir dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) - dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) @@ -607,7 +612,7 @@ dist-zip: distdir dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then @@ -811,7 +816,7 @@ dist-hook: # This is the default target for the Build script in TeX Live. .PHONY: world -# Run texlinks here since the binaries won't be there +# Run texlinks here since the binaries won't be there # at install-data, and fmtutil.cnf won't be there at install-exec, # and there is no install-hook or install-local. world: all |