diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2017-02-19 20:27:02 +0100 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2017-02-19 20:27:02 +0100 |
commit | 73f5279fe5a5e0a37bd9bd41630f4fc97427605d (patch) | |
tree | 6d56675128c44ad2a2da34c2c9167694db547d7e /Makefile | |
parent | 21ee89afb4198e4d0e580cbf07e046e7e8350382 (diff) | |
download | gpcfhw-73f5279fe5a5e0a37bd9bd41630f4fc97427605d.tar.gz gpcfhw-73f5279fe5a5e0a37bd9bd41630f4fc97427605d.tar.bz2 gpcfhw-73f5279fe5a5e0a37bd9bd41630f4fc97427605d.zip |
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 |