X-Git-Url: https://git.distorted.org.uk/~mdw/mdwtools/blobdiff_plain/86f6a31e4b41acb71ba37f3838a9ce75f7743330..f5a14467558d34dabf42e936ff435eb31a631723:/Makefile.m4 diff --git a/Makefile.m4 b/Makefile.m4 index 380b5a0..7712571 100644 --- a/Makefile.m4 +++ b/Makefile.m4 @@ -1,7 +1,5 @@ ## -*-makefile-*- ## -## $Id: Makefile.m4,v 1.1 2002/02/03 20:49:02 mdw Exp $ -## ## Build system for mdwtools ## ## (c) 2002 Mark Wooding @@ -25,67 +23,70 @@ ## along with mdwtools; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -##----- Revision history ---------------------------------------------------- -## -## $Log: Makefile.m4,v $ -## Revision 1.1 2002/02/03 20:49:02 mdw -## Checkin for new build system. -## - AUTOMAKE_OPTIONS = foreign -texmfdir = @texmfdir@ -pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE} -pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE} +texmfpath = @texmfpath@ +pkglatexdir = ${texmfpath}/tex/latex/${PACKAGE} +pkgdocdir = ${texmfpath}/doc/latex/${PACKAGE} -define(`addsuffix', `patsubst(`$1', `\>', `.$2')') +define(`addsuffix', `patsubst(`$1', `\>', `$2')') define(`BASE', `\ - at cmtt crypto doafter exercise footnote \ - mdwlist mdwmath mdwtab mdwthm poetry sverb syntax') + at centre cmtt colour crypto doafter exercise footnote mdwkey \ + mdwlist mdwmath mdwref mdwtab mdwthm poetry slowbox sverb syntax') -SRC = addsuffix(BASE, `dtx') -DVI = addsuffix(BASE, `dvi') mdwtools.dvi +AUX = mdwtools.tex gpl.tex +SRC = addsuffix(BASE, `.dtx') +DVI = addsuffix(BASE, `.dvi') mdwtools.dvi +PS = addsuffix(BASE, `.ps') mdwtools.ps OBJ = \ at.sty \ - cmtt.sty mTTcmtt.fd mTTenc.def \ + cmtt.sty mttcmtt.fd mttenc.def \ + colour.sty \ crypto.sty \ doafter.sty \ doafter.tex \ exercise.sty \ footnote.sty \ + mdwkey.sty \ mdwlist.sty \ mdwmath.sty \ - mdwtab.sty mathenv.sty \ + mdwref.sty \ + mdwtab.sty mathenv.sty mtcolour.sty mtcolor.sty \ mdwthm.sty mdwmargin.thm \ poetry.sty \ - sverb.sty \ + slowbox.sty \ + sverb.sty svcolor.sty svcolour.sty svsplit.sty \ syntax.sty -pkglatex_DATA = $(OBJ) -pkgdoc_DATA = $(DVI) +pkglatex_DATA = $(OBJ) mdwtools.tex +pkgdoc_DATA = $(DVI) $(PS) -SUFFIXES = .dtx .tex .dvi +SUFFIXES = .dtx .tex .dvi .ps 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 $<"') -.dtx.dvi: gpl.tex mdwtools.tex +.dtx.dvi: run_latex -.tex.dvi: gpl.tex +.tex.dvi: run_latex +.dvi.ps: + dvips -e0 -o $@ $< -all: $(OBJ) -dvi: $(DVI) +$(DVI): gpl.tex $(OBJ) mdwtools.tex $(OBJ): $(SRC) mdwtools.ins tex mdwtools.ins +EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) $(PS) mdwtools.ins Makefile.m4 + MAINTAINERCLEANFILES = $(OBJ) $(DVI) CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans Makefile.am: Makefile.m4 - cd $(srcdir) && m4 Makefile.m4 >Makefile.am + m4 $(srcdir)/Makefile.m4 >Makefile.am.new + mv Makefile.am.new $(srcdir)/Makefile.am .PHONY: dvi