diff options
Diffstat (limited to 'macros/latex/contrib/texvc/Makefile')
-rw-r--r-- | macros/latex/contrib/texvc/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macros/latex/contrib/texvc/Makefile b/macros/latex/contrib/texvc/Makefile new file mode 100644 index 0000000000..d32d473d3b --- /dev/null +++ b/macros/latex/contrib/texvc/Makefile @@ -0,0 +1,17 @@ +PACKAGE = texvc +all: $(PACKAGE).pdf + +$(PACKAGE).sty: $(PACKAGE).dtx $(PACKAGE).ins + pdflatex $(PACKAGE).ins + +$(PACKAGE).idx: $(PACKAGE).dtx $(PACKAGE).sty + pdflatex $(PACKAGE).dtx + +$(PACKAGE).ind: $(PACKAGE).idx $(PACKAGE).sty + makeindex -s gind.ist $(PACKAGE).idx + +$(PACKAGE).gls: $(PACKAGE).idx $(PACKAGE).sty + makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo + +$(PACKAGE).pdf: $(PACKAGE).dtx $(PACKAGE).sty $(PACKAGE).ind $(PACKAGE).gls + pdflatex $(PACKAGE).dtx |