summaryrefslogtreecommitdiff
path: root/Build/source/utils/texcount/Makefile.in
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-01-13 22:31:25 +0000
committerNorbert Preining <preining@logic.at>2008-01-13 22:31:25 +0000
commit5c22279bea757066e928d8dbe5f628e89a4f9d20 (patch)
tree8552a0a284aef3ba95712130276a299c391e86ad /Build/source/utils/texcount/Makefile.in
parent0a893c4f259e3d5e05655b3aaced7d50a96747a5 (diff)
add texcount to build process
git-svn-id: svn://tug.org/texlive/trunk@6220 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, 40 insertions, 0 deletions
diff --git a/Build/source/utils/texcount/Makefile.in b/Build/source/utils/texcount/Makefile.in
new file mode 100644
index 00000000000..cf8c124b325
--- /dev/null
+++ b/Build/source/utils/texcount/Makefile.in
@@ -0,0 +1,40 @@
+# 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
+