summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/geometry/test/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-11 23:53:43 +0000
committerKarl Berry <karl@freefriends.org>2006-01-11 23:53:43 +0000
commite4c3d9af333e856471e26c80bca1f1bcd8ec172b (patch)
tree4c3a80ac20b7131aa8ad74c4b1948e1bf5b3c9a4 /Master/texmf-dist/source/latex/geometry/test/Makefile
parent0f0d49bc3ec60b16a83351299d981850c1acf704 (diff)
trunk/Master/texmf-dist/source/latex/geometry
git-svn-id: svn://tug.org/texlive/trunk@307 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/geometry/test/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/geometry/test/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/geometry/test/Makefile b/Master/texmf-dist/source/latex/geometry/test/Makefile
new file mode 100644
index 00000000000..ff46011bca7
--- /dev/null
+++ b/Master/texmf-dist/source/latex/geometry/test/Makefile
@@ -0,0 +1,26 @@
+RM=rm -f
+SHELL=sh
+VERSION=3.0
+JUNKS=*.aux *.toc *.idx *.drv *.dvi *.log *.lof *.ist *.ilg *.ind *.out
+
+all: test
+
+#
+# You need to put the new geometry.sty in
+# the current directory or a directory searched by LaTeX.
+#
+test:
+ @echo
+ @(for f in gtest*tex; do latex $$f; done)
+ @echo
+ @echo "--- Summary of Tests ---"
+ @(grep -h Test gtest*.log)
+ @echo "-------------------------"
+
+clean:
+ @$(RM) $(JUNKS) *~ \#*
+ @echo 'Test directory has been cleaned up except geometry.{sty,cfg}.'
+
+veryclean: clean
+ @$(RM) geometry.sty geometry.cfg
+ @echo Test directory has been cleaned up.