blob: 5132211b304ec8fa38872c807efb43d0d0680ad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.PHONY:all clean
all:facture.pdf exemple.pdf exemplesansTVA.pdf
zip facture.zip facture.ins facture.dtx *pdf README makefile *.tex
%.cls:%.ins %.dtx
$(RM) $*.cls
@xelatex $*.ins
facture.pdf:facture.cls facture.dtx
@xelatex facture.dtx
@makeindex -s gglo.ist -o facture.gls facture.glo
@xelatex facture.dtx
@xelatex facture.dtx
%.pdf:%.tex facture.cls
@xelatex $*
clean:
rm -f *out *aux *log *pdf *glo *zip *cls *ilg *idx *gls *toc
|