blob: 30c92352b7d6b80792411d13c036af30d5295d93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
gpcfhw.cls :
yes | latex gpcfhw.ins
gpcfmac.sty :
yes | latex gpcfmac.ins
install : clean gpcfhw.cls gpcfmac.sty
mkdir -p ~/texmf/tex/latex/gpcfhw/
mkdir -p ~/texmf/tex/latex/gpcfmac/
cp gpcfmac.sty ~/texmf/tex/latex/gpcfmac/
cp gpcfhw.cls ~/texmf/tex/latex/gpcfhw/
texhash ~/texmf
clean :
rm -f *.aux *.idx *.glo *.log *.pdf *.sty *.cls *.ind *.ilg *.gls
doc :
pdflatex gpcfmac.dtx
pdflatex gpcfhw.dtx
|