summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/pkuthss/doc/example/Make.bat
blob: efbd3dfa4adc659265ebbccf42f96baa011edaf3 (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
@echo off

@rem Copyright (c) 2008-2009 solvethis
@rem Copyright (c) 2010-2012,2019 Casper Ti. Vector
@rem Public domain.

if "%1"=="" goto doc
if "%1"=="doc" goto doc
if "%1"=="clean" (goto clean) else (goto usage)

:doc
latexmk
goto end

:clean
latexmk -c
goto end

:usage
echo %0 [doc] [clean]
goto end

:end
pause

@rem vim:ts=4:sw=4