X-Git-Url: https://git.distorted.org.uk/~mdw/strayman/blobdiff_plain/9398428ac37194a610aa6c41a575b965cee30a45..e673b6d13629fcf620a440c13de6e6f2da44df1d:/Makefile.m4 diff --git a/Makefile.m4 b/Makefile.m4 index 0ce54dd..c610da7 100644 --- a/Makefile.m4 +++ b/Makefile.m4 @@ -1,6 +1,4 @@ -## -*-makefile-*- -## -## $Id: Makefile.m4,v 1.2 2002/02/24 12:45:56 mdw Exp $ +## -*-m4-*- ## ## Build system for strayman ## @@ -27,7 +25,6 @@ AUTOMAKE_OPTIONS = foreign -texmfdir = @texmfdir@ pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE} pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE} @@ -37,6 +34,8 @@ define(`BASE', `strayman') AUX = gpl.tex strayman.cls SRC = addsuffix(BASE, `.dtx') DVI = addsuffix(BASE, `.dvi') +PS = addsuffix(BASE, `.ps') +PDF = addsuffix(BASE, `.pdf') OBJ = \ strayman.8pt \ strayman.9pt \ @@ -47,17 +46,18 @@ OBJ = \ strayman.cls pkglatex_DATA = $(OBJ) -pkgdoc_DATA = $(DVI) +pkgdoc_DATA = $(DVI) $(PS) $(PDF) -SUFFIXES = .dtx .tex .dvi +SUFFIXES = .dtx .tex .dvi .ps .pdf define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<" latex "\def\indexing{y} \nonstopmode \input $<" makeindex -s gind.ist $`'*.idx latex "\def\indexing{n} \nonstopmode \input $<"') $(DVI): $(AUX) -.dtx.dvi: - run_latex +.dtx.dvi:; run_latex +.dvi.ps:; dvips $< +.ps.pdf:; ps2pdf $< $@ $(OBJ): $(SRC) strayman.ins tex strayman.ins @@ -65,7 +65,7 @@ $(OBJ): $(SRC) strayman.ins EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) strayman.ins Makefile.m4 MAINTAINERCLEANFILES = $(OBJ) $(DVI) -CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans +CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans *.ps *.pdf Makefile.am: Makefile.m4 cd $(srcdir) && m4 Makefile.m4 >Makefile.am