blob: a56a60ca62b1279c5a60872c2cdb6c5e964244c7 (
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
|
.PHONY:all clean
all:facture.pdf exemple.pdf exemplesansTVA.pdf exemplesansremise.pdf
rm -f ../facture.zip
rm -rf facture
mkdir facture
ln *pdf *ins *dtx *tex README makefile facture
zip -r ../facture.zip facture
%.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
rm -rf facture
|