summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/nomake.cmd
blob: 8541b2d85d50d206768634035581ddfe9610d29f (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
44
@echo off

rem nomake script for LaTeX projects
rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com>

setlocal enabledelayedexpansion

set target=thesis
if "!texmf!"=="" set texmf=%programfiles%\miktex
if "!docdir!"=="" set docdir=!texmf!\doc\latex\disser
if "!subdirs!"=="" set subdirs=bachelor ..\master ..\candidate ..\doctor

if "%CMDEXTVERSION%"=="" (
	echo Error: This script requires command interpreter from Windows 2000 or above.
	goto :eof
)

if "%1"=="help" (
:help
	cd bachelor & call nomake help & cd ..
	echo   install    install templates to TeX tree
	echo   uninstall  uninstall templates
	echo   reinstall  reinstall templates
goto :eof
) else if "%1"=="install" (
:install
	if not exist "%docdir%" md "%docdir%"
	xcopy /y /e /i /f ..\templates "%docdir%\templates"
	xcopy /y /e /i /f ..\include "%docdir%\include"
goto :eof
) else if "%1"=="uninstall" (
:uninstall
	rmdir /s /q %docdir%\templates
	rmdir /s /q %docdir%\include
	rmdir %docdir%
goto :eof
) else if "%1"=="reinstall" (
:reinstall
	call :uninstall
	call :install
goto :eof
)

for %%i in (%subdirs%) do @cd %%i & call nomake %*