summaryrefslogtreecommitdiff
path: root/Build/source/utils/texcount/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/texcount/Makefile.in')
-rw-r--r--Build/source/utils/texcount/Makefile.in40
1 files changed, 0 insertions, 40 deletions
diff --git a/Build/source/utils/texcount/Makefile.in b/Build/source/utils/texcount/Makefile.in
deleted file mode 100644
index cf8c124b325..00000000000
--- a/Build/source/utils/texcount/Makefile.in
+++ /dev/null
@@ -1,40 +0,0 @@
-# Makefile.in
-# Makefile.in for TeXCount
-#
-# Copyright 2008 by Heiko Oberdiek.
-#
-# The file is part of the TeX Live distribution and was written for
-# inclusion of TeXCount (CTAN/support/texcount) into the Build process.
-#
-# Licensed under GPL
-#
-
-VPATH = @srcdir@
-srcdir = @srcdir@
-SHELL = @SHELL@
-
-prefix = @prefix@
-datarootdir = @datarootdir@
-exec_prefix = @exec_prefix@
-bindir = @bindir@
-
-INSTALL = @INSTALL@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-
-default all:
-
-texcount: TeXcount.pl
- (echo "#! /usr/bin/env perl"; echo '$^W = 1;' ; tail --lines=+2 TeXcount.pl) > texcount
-install:
- $(INSTALL) -d $(bindir)
- $(INSTALL_SCRIPT) $(srcdir)/texcount $(bindir)/texcount
-
-uninstall:
- -rm -f $(bindir)/texcount
-
-clean:
- -rm -f texcount
-
-distclean: clean
- -rm -f Makefile config.status config.log config.cache
-