blob: 4f28f1e0134c60336d27f804bef85f5b22cf4163 (
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
38
39
40
|
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 $*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 -rf eledmac
mkdir eledmac
cp $(PACKAGE) eledmac
@$(RM) ../eledmac.zip
zip -r ../eledmac.zip eledmac
clean:
@$(RM) *.aux *.log *.out *.toc *tex *.pdf eledmac.sty eledpar.sty *ind *ilg *lof *idx *glo *gls ../eledmac.zip
|