2 TD=`if id|grep '^uid=0' >/dev/null; then kpsewhich --expand-path='$$TEXMFLOCAL'; else kpsewhich --expand-path='$$HOMETEXMF'; fi | sed -e 's,.$$,&/,'`
3 LTXDIR=tex/latex/mlastyle
4 DOCDIR=doc/latex/mlastyle
5 BSTDIR=bibtex/bst/mlastyle
6 SRCDIR=source/latex/mlastyle
7 #VERSION=`grep '^\\\\def\\\\fileversion' mlastyle.dtx | sed 's/^\\\\def\\\\fileversion{\\(.*\\)\\.\\(.*\\)}/\\1_\\2/'`
8 VERSION=`grep '^%<[a-z]*> *\[[0-9/]* *v' mlastyle.dtx | sed 's/^%<[a-z]*> *\[[0-9/]* *v\([-_.0-9a-z]*\).*/\1/'`
12 MAKEINDEX=/usr/bin/makeindex
13 FAKEROOT=`[ -x /usr/bin/fakeroot ] && echo /usr/bin/fakeroot`
15 .SUFFIXES: .sty .ins .dtx .dvi .ps .pdf .ind .idx .gls .glo
16 .PHONY: clean distclean tar zip install target mlastyle instructions
19 $(MAKEINDEX) -s gglo.ist -o $*.gls $*.glo
20 $(MAKEINDEX) -s gind.ist -o $*.ind $*.idx
21 [ ! -f $*.bib ] || bibtex $*.aux
26 %.dvi: %.sty %.dtx %.ind
40 target: mlastyle.sty mlastyle.dvi instructions
42 all: mlastyle.sty mlastyle.dvi mlastyle.pdf mlastyle.ps zip tar
44 mlastyle: mlastyle.sty
46 mlastyle.sty: mlastyle.ins mlastyle.dtx
48 mlastyle.dvi: mlastyle.sty
51 rm -f *.glo *.gls *.idx *.ilg *.ind *.toc *.log *.aux *.blg *.bib *.bbl *~
54 rm -f mlastyle.sty mlastyle.dvi mlastyle.ps mlastyle.pdf
55 rm -rf tex doc source bibtex
57 tar: mlastyle.sty mlastyle.dvi clean
58 mkdir mlastyle-$(VERSION)
59 rm -f mlastyle_$(VERSION).tar.gz
60 install -m644 *.dtx *.ins *.bst Makefile README mlastyle-$(VERSION)
61 $(FAKEROOT) tar czf mlastyle_$(VERSION).tar.gz \
63 rm -rf mlastyle-$(VERSION)
65 zip: mlastyle.sty mlastyle.dvi clean
70 install -m644 *.sty $(LTXDIR)
71 install -m644 mlastyle.dvi $(DOCDIR)
72 [ ! -f mlastyle.pdf ] ||install -m644 mlastyle.pdf $(DOCDIR)
73 [ ! -f mlastyle.ps ] ||install -m644 mlastyle.ps $(DOCDIR)
74 install -m644 *.dtx *.ins *.bst Makefile README $(SRCDIR)
75 install -m644 *.bst $(BSTDIR)
77 zip -r mlastyle.zip tex doc source bibtex
78 rm -rf tex doc source bibtex
81 if [ ! -d $(TD)$(LTXDIR) ]; then mkdirhier $(TD)$(LTXDIR); fi
82 if [ ! -d $(TD)$(DOCDIR) ]; then mkdirhier $(TD)$(DOCDIR); fi
83 if [ ! -d $(TD)$(SRCDIR) ]; then mkdirhier $(TD)$(SRCDIR); fi
84 if [ ! -d $(TD)$(BSTDIR) ]; then mkdirhier $(TD)$(BSTDIR); fi
85 install -m644 *.sty $(TD)$(LTXDIR)
86 install -m644 *.ins *.dtx *.bst Makefile README $(TD)$(SRCDIR)
87 install -m644 mlastyle.dvi $(TD)$(DOCDIR)
88 [ ! -f mlastyle.pdf ] ||install -m644 mlastyle.pdf $(TD)$(DOCDIR)
89 [ ! -f mlastyle.ps ] ||install -m644 mlastyle.ps $(TD)$(DOCDIR)
90 install -m644 *.bst $(TD)$(BSTDIR)
94 @echo "Now run make install, or copy mlastyle.sty to a directory"
95 @echo "in the LaTeX search path and mlastyle.bst to a directory."
96 @echo "in the BibTeX search path."