summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/onlyamsmath/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/onlyamsmath/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/onlyamsmath/Makefile56
1 files changed, 56 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/onlyamsmath/Makefile b/Master/texmf-dist/source/latex/onlyamsmath/Makefile
new file mode 100644
index 00000000000..e194a0fea8c
--- /dev/null
+++ b/Master/texmf-dist/source/latex/onlyamsmath/Makefile
@@ -0,0 +1,56 @@
+# $Id: Makefile,v 1.2 2001/03/12 17:22:36 harders Exp $
+
+.SUFFIXES: .sty .ins .dtx .dvi .ps
+
+
+.ins.sty:
+ latex $<
+
+.dtx.dvi:
+ latex $<
+ latex $<
+ makeindex -s gind.ist $(*D)/$(*F)
+ makeindex -s gglo.ist -o $(*D)/$(*F).gls $(*D)/$(*F).glo
+ latex $<
+
+.dvi.ps:
+ dvips -o $(*D)/$(*F).ps $(*D)/$(*F)
+
+
+all: onlyamsmath onlyamsmath.dvi onlyamsmath.ps message
+
+onlyamsmathtest.dvi:
+ latex onlyamsmathtest
+
+
+onlyamsmath:
+ latex onlyamsmath.ins
+
+
+
+clean:
+ @-rm -f onlyamsmath.{glo,gls,idx,ilg,ind,aux,log,toc}
+ @-rm -f onlyamsmathtest.{log,aux}
+ @-rm -f *~
+
+distclean: clean
+ @-rm -f onlyamsmath.{sty,dvi,ps}
+ @-rm -f onlyamsmathtest.{dvi,ps}
+
+tar: all clean
+ echo Lege onlyamsmath.tar.gz an
+ -rm -f onlyamsmath.tar.gz
+ cd ..; tar czf onlyamsmath.tar.gz \
+ onlyamsmath/README onlyamsmath/Makefile \
+ onlyamsmath/onlyamsmath.{dtx,ins,dvi} \
+ onlyamsmath/onlyamsmathtest.tex \
+ onlyamsmath/onlyamsmath.xml
+ mv ../onlyamsmath.tar.gz .
+
+
+message:
+ @echo "Please copy onlyamsmath.sty to a directory"
+ @echo "in the LaTeX search path"
+ @echo "Then run \`latex onlyamsmathtest' to see an example"
+
+