summaryrefslogtreecommitdiff
path: root/Build/source/utils/chktex
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-04-01 06:37:08 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-04-01 06:37:08 +0000
commit130e660fb979d78b0d5fe49e2fb1d01d3f01b7a9 (patch)
treee75fceb0cd099a4f70dd7a57968bc6fd516a57c0 /Build/source/utils/chktex
parent02550d8b7a9abf4b5d9efbb7968f5995133f6e61 (diff)
utils/xindy and texk/tex4htk: Use Makefile fragment for linked scripts
git-svn-id: svn://tug.org/texlive/trunk@21911 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/chktex')
-rw-r--r--Build/source/utils/chktex/Makefile.am2
-rw-r--r--Build/source/utils/chktex/Makefile.in33
2 files changed, 27 insertions, 8 deletions
diff --git a/Build/source/utils/chktex/Makefile.am b/Build/source/utils/chktex/Makefile.am
index 4955ff22348..ad73f819b04 100644
--- a/Build/source/utils/chktex/Makefile.am
+++ b/Build/source/utils/chktex/Makefile.am
@@ -62,7 +62,7 @@ texmfdir = ${prefix}/$(scriptsdir)
nodist_texmf_SCRIPTS = $(perl_scripts:=.pl)
install-data-hook: install-perl-links
-uninstall-hook: uninstall-perl-links
+uninstall-hook: uninstall-links
if !WIN32
bin_SCRIPTS = $(CHKTEX_TREE)/chkweb
diff --git a/Build/source/utils/chktex/Makefile.in b/Build/source/utils/chktex/Makefile.in
index 10b61a55a27..010cf1d73c7 100644
--- a/Build/source/utils/chktex/Makefile.in
+++ b/Build/source/utils/chktex/Makefile.in
@@ -47,7 +47,7 @@ DIST_COMMON = $(am__configure_deps) $(dist_pdfdoc_DATA) \
../../build-aux/depcomp ../../build-aux/install-sh \
../../build-aux/ltmain.sh ../../build-aux/missing \
../../build-aux/texinfo.tex ../../build-aux/ylwrap ChangeLog
-@WIN32_TRUE@@WIN32_WRAP_TRUE@am__append_1 = $(perl_wrappers)
+@WIN32_TRUE@@WIN32_WRAP_TRUE@am__append_1 = $(wrappers)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../../m4/kpse-progs.m4 \
@@ -251,7 +251,8 @@ man_MANS = \
perl_scripts = deweb
scriptsdir = texmf/scripts/chktex
nodist_bin_SCRIPTS = $(am__append_1)
-@WIN32_TRUE@@WIN32_WRAP_TRUE@perl_wrappers = $(perl_scripts:=.exe)
+all_scripts = $(perl_scripts) $(shell_scripts)
+@WIN32_TRUE@@WIN32_WRAP_TRUE@wrappers = $(all_scripts:=.exe)
@WIN32_TRUE@@WIN32_WRAP_TRUE@runscript = $(top_srcdir)/../../texk/texlive/w32_wrapper/runscript.exe
texmfdir = ${prefix}/$(scriptsdir)
nodist_texmf_SCRIPTS = $(perl_scripts:=.pl)
@@ -1102,10 +1103,12 @@ uninstall-man: uninstall-man1
# in case of an SVN repository
dist-hook:
rm -rf `find $(distdir) -name .svn`
-.PHONY: install-perl-links make-perl-links uninstall-perl-links
-@WIN32_TRUE@@WIN32_WRAP_TRUE@$(perl_wrappers): $(runscript)
+.PHONY: install-perl-links make-perl-links \
+ install-shell-links make-shell-links uninstall-links
+@WIN32_TRUE@@WIN32_WRAP_TRUE@$(wrappers): $(runscript)
@WIN32_TRUE@@WIN32_WRAP_TRUE@ $(LN_S) $(runscript) $@
+# We support both multiplatform and non-multiplatform builds.
install-perl-links:
@WIN32_FALSE@ case "$(bindir)" in \
@WIN32_FALSE@ */bin) $(MAKE) $(AM_MAKEFLAGS) REL=.. make-perl-links;; \
@@ -1114,6 +1117,14 @@ install-perl-links:
@WIN32_FALSE@ exit 1;; \
@WIN32_FALSE@ esac
+install-shell-links:
+@WIN32_FALSE@ case "$(bindir)" in \
+@WIN32_FALSE@ */bin) $(MAKE) $(AM_MAKEFLAGS) REL=.. make-shell-links;; \
+@WIN32_FALSE@ */bin/*) $(MAKE) $(AM_MAKEFLAGS) REL=../.. make-shell-links;; \
+@WIN32_FALSE@ *) echo "strange directory '$(bindir)' for linked scripts" >&2; \
+@WIN32_FALSE@ exit 1;; \
+@WIN32_FALSE@ esac
+
make-perl-links:
@cd $(DESTDIR)$(bindir) && \
for f in $(perl_scripts); do \
@@ -1122,14 +1133,22 @@ make-perl-links:
$(LN_S) $(REL)/$(scriptsdir)/$$f.pl $$f || exit 1; \
done
-uninstall-perl-links:
-@WIN32_FALSE@ @for f in $(perl_scripts); do \
+make-shell-links:
+ @cd $(DESTDIR)$(bindir) && \
+ for f in $(shell_scripts); do \
+ rm -f $$f; \
+ echo "creating link '$$f' -> '$(REL)/$(scriptsdir)/$$f.sh'"; \
+ $(LN_S) $(REL)/$(scriptsdir)/$$f.sh $$f || exit 1; \
+ done
+
+uninstall-links:
+@WIN32_FALSE@ @for f in $(all_scripts); do \
@WIN32_FALSE@ echo "rm -f '$(DESTDIR)$(bindir)/$$f'"; \
@WIN32_FALSE@ rm -f "$(DESTDIR)$(bindir)/$$f"; \
@WIN32_FALSE@ done
install-data-hook: install-perl-links
-uninstall-hook: uninstall-perl-links
+uninstall-hook: uninstall-links
ChkTeX.pdf: $(PDF_DEPEND)
$(PDFLATEX) -interaction batchmode $(srcdir)/ChkTeX.tex