summaryrefslogtreecommitdiff
path: root/Build/source/utils/texcount/Makefile.in
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-03-11 00:11:19 +0000
committerKarl Berry <karl@freefriends.org>2008-03-11 00:11:19 +0000
commit4fc19da7bf2b940d88ea293c3675e7530a348648 (patch)
treed7c5df42eba823d1ff37a2d8a5f9d770d958e05a /Build/source/utils/texcount/Makefile.in
parent8017667ed3356ee00be78791ddd88d53283a440a (diff)
texcount update, plus doc, plus symlink to scripts instead of building
git-svn-id: svn://tug.org/texlive/trunk@6936 c570f23f-e606-0410-a88d-b1316a301751
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
-