blob: fc139a7891367806d7d139929df6abfb8cbd2f05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
PACKAGE = *.dtx \
*.ins \
eledmac.pdf \
eledpar.pdf \
README \
Makefile
.PHONY: all dist clean
all: eledmac.sty eledmac.pdf eledpar.sty eledpar.pdf dist
doc: *.pdf
%.sty: %.ins %.dtx
rm -f $*.sty led*tex
@pdflatex $*.ins
%.pdf: %.sty %.dtx
@pdflatex $*.dtx
@makeindex -s gind.ist -o $*.ind $*.idx
@makeindex -s gglo.ist -o $*.gls $*.glo
@pdflatex $*.dtx
@pdflatex $*.dtx
dist: $(PACKAGE)
@$(RM) ../eledmac.zip
zip ../eledmac.zip $(PACKAGE)
clean:
@$(RM) *.aux *.log *.out *.toc *tex *.pdf eledmac.sty eledpar.sty *ind *ilg *lof *idx *glo *gls ../eledmac.zip
|