summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/nomake.cmd
blob: 5767e9c44fad1f55f661577174fa37abdfb5e820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off

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

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

if "%1"=="help" (
	set subdirs=bachelor
) else (
	set subdirs=bachelor ..\master ..\candidate ..\doctor
)

for %%i in (%subdirs%) do @cd %%i & nomake %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..