diff options
Diffstat (limited to 'Build/source/texk/am/bin_links.am')
-rw-r--r-- | Build/source/texk/am/bin_links.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Build/source/texk/am/bin_links.am b/Build/source/texk/am/bin_links.am new file mode 100644 index 00000000000..da0cf92c88b --- /dev/null +++ b/Build/source/texk/am/bin_links.am @@ -0,0 +1,36 @@ +## texk/am/bin_links.am: Makefile fragment for bindir links. +## +## Copyright (C) 2011 Peter Breitenlohner <tex-live@tug.org> +## You may freely use, modify and/or distribute this file. +## +## requires conditional WIN32 +## requires $(bin_links) +## Symlinks within $(bindir): FILE:LINK indicates LINK->FILE +## for binaries and scripts use, e.g., +## binprog$(EXEEXT):foo +## script:bar +## respectively, such that the links created on cygwin are +## 'foo->binprog.exe' and 'bar->script'. +## for scripts use, +.PHONY: install-bin-links uninstall-bin-links + +install-bin-links: +if !WIN32 + @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 || exit 1; \ + done +endif !WIN32 + +uninstall-bin-links: +if !WIN32 + @for s in $(bin_links); do \ + link=`echo $$s | sed 's,.*:,,'`; \ + rm -f $(DESTDIR)$(bindir)/$$link; \ + done +endif !WIN32 + |