blob: 70910a0419331369fe679f194163bfbc9cd63ecb (
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
41
42
43
|
# Copyright Reinhard Kotucha and Nguyen Tan Khoa
# License: LPPL version 1.3 or newer
default: print screen
screen:
pdflatex lshort-vi.tex
pdflatex lshort-vi.tex
pdflatex lshort-vi.tex
makeindex lshort-vi.idx
pdflatex lshort-vi.tex
thumbpdf lshort-vi.pdf
pdflatex lshort-vi.tex
print:
pdflatex lshort-print-vi.tex
pdflatex lshort-print-vi.tex
pdflatex lshort-print-vi.tex
makeindex lshort-print-vi.idx
pdflatex lshort-print-vi.tex
clean:
rm -vf *.{aux,lo?,out,idx,toc,exa,ilg,ind,tpt}
distclean: clean
rm *.pdf
ctan: screen print clean
cp -pf README.txt ..
mv *.pdf ..
(cd ../.. && tar -czvf vietnamese.tar.gz vietnamese)
####
USER=reinhard-k@shells.sourceforge.net
DIR=home/groups/v/vn/vntex/htdocs/doc/lshort-vi
LSHORTDIR="$(USER):/$(DIR)"
vntex:
cd .. && scp -pr * $(LSHORTDIR)
|