diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,4 +1,15 @@ -install : gpcfhw.cls +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 |