Accomodated embedded bibliography
[latex-mlastyle.git] / Makefile
1 PKG=mlastyle
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/'`
9 LATEX=latex
10 PDFLATEX=pdflatex
11 DVIPS=dvips
12 MAKEINDEX=/usr/bin/makeindex
13 FAKEROOT=`[ -x /usr/bin/fakeroot ] && echo /usr/bin/fakeroot`
14
15 .SUFFIXES: .sty .ins .dtx .dvi .ps .pdf .ind .idx .gls .glo
16 .PHONY: clean distclean tar zip install target mlastyle instructions
17
18 %.ind: %.idx
19         $(MAKEINDEX) -s gglo.ist -o $*.gls $*.glo
20         $(MAKEINDEX) -s gind.ist -o $*.ind $*.idx
21         [ ! -f $*.bib ] || bibtex $*.aux
22
23 %.idx: %.dtx
24         $(LATEX) $<
25
26 %.dvi: %.sty %.dtx %.ind
27         $(LATEX) $*.dtx
28         $(LATEX) $*.dtx
29
30 %.sty: %.ins %.dtx
31         $(LATEX) $*.ins
32
33 %.ps: %.dvi
34         $(DVIPS) -o $@ $<
35
36 %.pdf: %.dtx %.ind
37         $(PDFLATEX) $*.dtx
38         $(PDFLATEX) $*.dtx
39
40 target: mlastyle.sty mlastyle.dvi instructions
41
42 all: mlastyle.sty mlastyle.dvi mlastyle.pdf mlastyle.ps zip tar
43
44 mlastyle: mlastyle.sty
45
46 mlastyle.sty: mlastyle.ins mlastyle.dtx
47
48 mlastyle.dvi: mlastyle.sty
49
50 clean:
51         rm -f *.glo *.gls *.idx *.ilg *.ind *.toc *.log *.aux *.blg *.bib *.bbl *~
52
53 distclean: clean
54         rm -f mlastyle.sty mlastyle.dvi mlastyle.ps mlastyle.pdf
55         rm -rf tex doc source bibtex
56
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 \
62           mlastyle-$(VERSION)
63         rm -rf mlastyle-$(VERSION)
64
65 zip:    mlastyle.sty mlastyle.dvi clean
66         mkdirhier $(LTXDIR)
67         mkdirhier $(DOCDIR)
68         mkdirhier $(SRCDIR)
69         mkdirhier $(BSTDIR)
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)
76         rm -f mlastyle.zip
77         zip -r mlastyle.zip tex doc source bibtex
78         rm -rf tex doc source bibtex
79
80 install: all
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)
91         texhash
92
93 instructions:
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."
97