summaryrefslogtreecommitdiff
path: root/Build/source/texk/tetex/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/tetex/Makefile.in')
-rw-r--r--Build/source/texk/tetex/Makefile.in85
1 files changed, 42 insertions, 43 deletions
diff --git a/Build/source/texk/tetex/Makefile.in b/Build/source/texk/tetex/Makefile.in
index 7d122212bbd..140ee4c5fc6 100644
--- a/Build/source/texk/tetex/Makefile.in
+++ b/Build/source/texk/tetex/Makefile.in
@@ -97,7 +97,7 @@ am__remove_distdir = \
{ test ! -d "$(distdir)" \
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr "$(distdir)"; }; }
-DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
+DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
@@ -137,6 +137,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@
SET_MAKE = @SET_MAKE@
@@ -231,14 +232,6 @@ dist_man1_MANS = \
kpsetool.man \
kpsewhere.man \
mkjobtexmf.man \
- mkocp.man \
- mkofm.man \
- ofm2opl.man \
- opl2ofm.man \
- otp2ocp.man \
- outocp.man \
- ovf2ovp.man \
- ovp2ovf.man \
ps2frag.man \
pslatex.man \
rubibtex.man \
@@ -247,7 +240,6 @@ dist_man1_MANS = \
texdoctk.man \
texlinks.man \
thumbpdf.man \
- ttf2afm.man \
updmap.man
dist_man5_MANS = \
@@ -274,6 +266,21 @@ dist_texconfig_SCRIPTS = tcfmgr
dist_texconfig_DATA = tcfmgr.map
web2cdir = ${prefix}/texmf/web2c
dist_web2c_DATA = fmtutil.cnf
+
+# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
+bin_links = \
+ allcm:allec \
+ fmtutil:mktexfmt \
+ kpsetool:kpsexpand \
+ kpsetool:kpsepath
+
+
+# Symlinks within $(man1dir): FILE:LINK indicates LINK.1->FILE.1
+man1_links = $(bin_links) \
+ fmtutil:fmtutil-sys \
+ texconfig:texconfig-sys \
+ updmap:updmap-sys
+
EXTRA_DIST = README.a2ping README.texdoctk doc/Makefile \
doc/TETEXDOC.bib doc/TETEXDOC.tex fontinst.bat pdfetex-pl.pool \
updmap.pl win32/epstopdf.c win32/epstopdf.txt
@@ -595,6 +602,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)
@@ -622,7 +630,6 @@ 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
$(am__remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
@@ -838,42 +845,34 @@ uninstall-man: uninstall-man1 uninstall-man5
install-exec-hook:
- cd $(DESTDIR)$(bindir) \
- && rm -f allec kpsexpand kpsepath mktexfmt texhash \
- && $(LN_S) allcm allec \
- && $(LN_S) fmtutil mktexfmt \
- && $(LN_S) kpsetool kpsexpand \
- && $(LN_S) kpsetool kpsepath \
- && $(LN_S) mktexlsr texhash
+ @cd $(DESTDIR)$(bindir) && \
+ for s in $(bin_links); do \
+ link=`echo $$s | sed 's,.*:,,'`; \
+ file=`echo $$s | sed 's,:.*,,'`; \
+ rm -f $$link; \
+ echo "creating link '$$link' -> '$$file'"; \
+ $(LN_S) $$file $$link; \
+ done
install-data-hook:
- cd $(DESTDIR)$(man1dir) \
- && rm -f allec.1 ctangle.1 cweave.1 fmtutil-sys.1 kpsexpand.1 \
- kpsepath.1 lambda.1 mf-nowin.1 mktexfmt.1 odvicopy.1 \
- odvitype.1 pdflatex.1 texconfig-sys.1 texhash.1 updmap-sys.1 \
- && $(LN_S) aleph.1 lambda.1 \
- && $(LN_S) allcm.1 allec.1 \
- && $(LN_S) cweb.1 ctangle.1 \
- && $(LN_S) cweb.1 cweave.1 \
- && $(LN_S) dvicopy.1 odvicopy.1 \
- && $(LN_S) dvitype.1 odvitype.1 \
- && $(LN_S) fmtutil.1 fmtutil-sys.1 \
- && $(LN_S) fmtutil.1 mktexfmt.1 \
- && $(LN_S) kpsetool.1 kpsexpand.1 \
- && $(LN_S) kpsetool.1 kpsepath.1 \
- && $(LN_S) mf.1 mf-nowin.1 \
- && $(LN_S) mktexlsr.1 texhash.1 \
- && $(LN_S) pdftex.1 pdflatex.1 \
- && $(LN_S) texconfig.1 texconfig-sys.1 \
- && $(LN_S) updmap.1 updmap-sys.1
+ @cd $(DESTDIR)$(man1dir) && \
+ for s in $(man1_links); do \
+ link=`echo $$s | sed 's,.*:,,'`; \
+ file=`echo $$s | sed 's,:.*,,'`; \
+ rm -f $$link.1; \
+ echo "creating link '$$link.1' -> '$$file.1'"; \
+ $(LN_S) $$file.1 $$link.1; \
+ done
uninstall-hook:
- cd $(DESTDIR)$(bindir) \
- && rm -f allec kpsexpand kpsepath mktexfmt texhash
- cd $(DESTDIR)$(man1dir) \
- && rm -f allec.1 ctangle.1 cweave.1 fmtutil-sys.1 kpsexpand.1 \
- kpsepath.1 lambda.1 mf-nowin.1 mktexfmt.1 odvicopy.1 \
- odvitype.1 pdflatex.1 texconfig-sys.1 texhash.1 updmap-sys.1
+ @for s in $(bin_links); do \
+ link=`echo $$s | sed 's,.*:,,'`; \
+ rm -f $(DESTDIR)$(bindir)/$$link; \
+ done
+ @for s in $(man1_links); do \
+ link=`echo $$s | sed 's,.*:,,'`; \
+ rm -f $(DESTDIR)$(man1dir)/$$link.1; \
+ done
run-texlinks:
PATH="$(bindir):$(PATH)"; export PATH; $(run_texlinks)