code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
@echo off
:: Generation of Reprise Help
..\deps\win32\bin\doxygen ..\source\Reprise\Doxyfile
cd Reprise\html
..\..\..\deps\win32\bin\hhc index.hhp
cd ..\..
:: Generation of OPS_Core Help
..\deps\win32\bin\doxygen ..\source\OPS_Core\Doxyfile
cd OPS_Core\html
..\..\..\deps\win32\bin\hhc index.hhp
cd ..\.. | OpsGroup/open-ops | docs/buildhelp.bat | bat | bsd-3-clause | 305 |
%JAVA_HOME%/bin/java -cp ../../../lib/ant/ant.jar;../../../lib/ant/ant-launcher.jar;%JAVA_HOME%/lib/tools.jar org.apache.tools.ant.Main %1
| dachengxi/spring1.1.1_source | samples/jpetstore/attributes/build.bat | bat | mit | 139 |
@echo off
call configuration.bat
call setup.bat
msbuild monoprog.vcxproj
%BUILDDIR%\debug\monoprog.exe %*
| getopenmono/appveyor-test-1 | run.bat | bat | mit | 108 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\..\..\esprima-fb\bin\esparse.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\..\..\esprima-fb\bin\esparse.js" %*
) | gauravyeole/iDigBio-appliance | node_modules/jstransform/node_modules/.bin/esparse.cmd | bat | mit | 204 |
cmd_net/sched/built-in.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-ld -m elf32ltsmip -r -o net/sched/built-in.o net/sched/sch_generic.o net/sched/sch_api.o net/sched/sch_blackhole.o net/sched/cls_api.o net/sched/act_police.o net/sched/sch_fifo.o net/sched/sch_htb.o net/sched/sch_ingress.o net/sched/sch_sfq.o net/sched/sch_prio.o net/sched/cls_u32.o net/sched/cls_route.o net/sched/cls_fw.o net/sched/cls_tcindex.o net/sched/cls_basic.o
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/net/sched/.built-in.o.cmd | bat | gpl-2.0 | 448 |
zip -9 %1 COPYING Makefile *.cpp *.h *.c *.rc CMakeLists.txt unused/* zlib/*.c zlib/*.h zlib/CMakeLists.txt
kzip b%1 COPYING Makefile *.cpp *.h *.c *.rc CMakeLists.txt unused/* zlib/*.c zlib/*.h zlib/CMakeLists.txt
zipmix %1 b%1
del b%1 | rheit/zdbsp | zipsrc.bat | bat | gpl-2.0 | 241 |
gor.windows.386.exe compile
gor.windows.386.exe http | hopehook/liteide_org_source | run.bat | bat | gpl-3.0 | 53 |
@echo off
rem This batch file searches your dfm files for any use of JVCL components (classes starting with TJv) and
rem puts the results into a text file. Initial idea provided by Heinz Zastrau.
rem Uses Borland's grep utility (included with Delphi and CBuilder)
echo. Searching, please wait...
grep -di "object [a-z0-9_]*: TJv" *.dfm >UsedJVCL.txt
echo. Done. Results are in UsedJVCL.txt
| tavultesoft/keymanweb | windows/src/ext/jedi/jvcl/tests/archive/jvcl/devtools/bin/UsedJVCL.bat | bat | apache-2.0 | 393 |
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:S3_EUSB_OperateIo_OSRFX2_ReadSwitches /Logger:trx
pause
| dongruiqing/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPEUSB/S3_EUSB_OperateIo_OSRFX2_ReadSwitches.cmd | bat | mit | 226 |
@echo off
rem ==========================================================================
rem Shortcuts for various tasks, emulating UNIX "make" on Windows.
rem It is primarly intended as a shortcut for compiling / installing
rem psutil ("make.bat build", "make.bat install") and running tests
rem ("make.bat test").
rem
rem This script is modeled after my Windows installation which uses:
rem - Visual studio 2008 for Python 2.6, 2.7, 3.2
rem - Visual studio 2010 for Python 3.3+
rem ...therefore it might not work on your Windows installation.
rem
rem By default C:\Python27\python.exe is used.
rem To compile for a specific Python version run:
rem
rem set PYTHON=C:\Python26\python.exe & make.bat build
rem
rem ==========================================================================
if "%PYTHON%" == "" (
set PYTHON=C:\Python27\python.exe
)
if "%TSCRIPT%" == "" (
set TSCRIPT=test\test_psutil.py
)
rem Needed to compile using Mingw.
set PATH=C:\MinGW\bin;%PATH%
rem Needed to locate the .pypirc file and upload exes on PYPI.
set HOME=%USERPROFILE%
rem ==========================================================================
if "%1" == "help" (
:help
echo Run `make ^<target^>` where ^<target^> is one of:
echo build compile without installing
echo build-exes create exe installers in dist directory
echo build-wheels create wheel installers in dist directory
echo clean clean build files
echo install compile and install
echo setup-env install pip, unittest2, wheels for all python versions
echo test run tests
echo test-memleaks run memory leak tests
echo test-process run process related tests
echo test-system run system APIs related tests
echo uninstall uninstall
echo upload-exes upload exe installers on pypi
echo upload-wheels upload wheel installers on pypi
goto :eof
)
if "%1" == "clean" (
:clean
for /r %%R in (__pycache__) do if exist %%R (rmdir /S /Q %%R)
for /r %%R in (*.pyc) do if exist %%R (del /s %%R)
for /r %%R in (*.pyd) do if exist %%R (del /s %%R)
for /r %%R in (*.orig) do if exist %%R (del /s %%R)
for /r %%R in (*.bak) do if exist %%R (del /s %%R)
for /r %%R in (*.rej) do if exist %%R (del /s %%R)
if exist psutil.egg-info (rmdir /S /Q psutil.egg-info)
if exist build (rmdir /S /Q build)
if exist dist (rmdir /S /Q dist)
goto :eof
)
if "%1" == "build" (
:build
%PYTHON% setup.py build
if %errorlevel% neq 0 goto :error
goto :eof
)
if "%1" == "install" (
:install
%PYTHON% setup.py build install
goto :eof
)
if "%1" == "uninstall" (
:uninstall
for %%A in ("%PYTHON%") do (
set folder=%%~dpA
)
for /F "delims=" %%i in ('dir /b %folder%\Lib\site-packages\*psutil*') do (
rmdir /S /Q %folder%\Lib\site-packages\%%i
)
goto :eof
)
if "%1" == "test" (
:test
call :install
%PYTHON% %TSCRIPT%
goto :eof
)
if "%1" == "test-process" (
:test
call :install
%PYTHON% -m unittest -v test.test_psutil.TestProcess
goto :eof
)
if "%1" == "test-system" (
:test
call :install
%PYTHON% -m unittest -v test.test_psutil.TestSystem
goto :eof
)
if "%1" == "test-memleaks" (
:memtest
call :install
%PYTHON% test\test_memory_leaks.py
goto :eof
)
if "%1" == "build-exes" (
:build-exes
rem "standard" 32 bit versions, using VS 2008 (2.6, 2.7) or VS 2010 (3.3+)
C:\Python26\python.exe setup.py build bdist_wininst || goto :error
C:\Python27\python.exe setup.py build bdist_wininst || goto :error
C:\Python33\python.exe setup.py build bdist_wininst || goto :error
C:\Python34\python.exe setup.py build bdist_wininst || goto :error
rem 64 bit versions
rem Python 2.7 + VS 2008 requires vcvars64.bat to be run first:
rem http://stackoverflow.com/questions/11072521/
rem Windows SDK and .NET Framework 3.5 SP1 also need to be installed (sigh)
"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat"
C:\Python27-64\python.exe setup.py build bdist_wininst || goto :error
C:\Python33-64\python.exe setup.py build bdist_wininst || goto :error
C:\Python34-64\python.exe setup.py build bdist_wininst || goto :error
echo OK
goto :eof
)
if "%1" == "upload-exes" (
:upload-exes
rem "standard" 32 bit versions, using VS 2008 (2.6, 2.7) or VS 2010 (3.3+)
C:\Python26\python.exe setup.py bdist_wininst upload || goto :error
C:\Python27\python.exe setup.py bdist_wininst upload || goto :error
C:\Python33\python.exe setup.py bdist_wininst upload || goto :error
C:\Python34\python.exe setup.py bdist_wininst upload || goto :error
rem 64 bit versions
C:\Python27-64\python.exe setup.py build bdist_wininst upload || goto :error
C:\Python33-64\python.exe setup.py build bdist_wininst upload || goto :error
C:\Python34-64\python.exe setup.py build bdist_wininst upload || goto :error
echo OK
goto :eof
)
if "%1" == "setup-env" (
:setup-env
C:\python27\python.exe -c "import urllib2; url = urllib2.urlopen('https://raw.github.com/pypa/pip/master/contrib/get-pip.py'); data = url.read(); f = open('get-pip.py', 'w'); f.write(data)"
C:\python26\python.exe get-pip.py & C:\python26\scripts\pip install unittest2 wheel --upgrade
C:\python27\python.exe get-pip.py & C:\python27\scripts\pip install wheel --upgrade
C:\python33\python.exe get-pip.py & C:\python33\scripts\pip install wheel --upgrade
C:\python34\scripts\easy_install.exe wheel
rem 64-bit versions
C:\python27-64\python.exe get-pip.py & C:\python27-64\scripts\pip install wheel --upgrade
C:\python33-64\python.exe get-pip.py & C:\python33-64\scripts\pip install wheel --upgrade
C:\python34-64\scripts\easy_install.exe wheel
goto :eof
)
if "%1" == "build-wheels" (
:build-wheels
C:\Python26\python.exe setup.py build bdist_wheel || goto :error
C:\Python27\python.exe setup.py build bdist_wheel || goto :error
C:\Python33\python.exe setup.py build bdist_wheel || goto :error
C:\Python34\python.exe setup.py build bdist_wheel || goto :error
rem 64 bit versions
rem Python 2.7 + VS 2008 requires vcvars64.bat to be run first:
rem http://stackoverflow.com/questions/11072521/
rem Windows SDK and .NET Framework 3.5 SP1 also need to be installed (sigh)
"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat"
C:\Python27-64\python.exe setup.py build bdist_wheel || goto :error
C:\Python33-64\python.exe setup.py build bdist_wheel || goto :error
C:\Python34-64\python.exe setup.py build bdist_wheel || goto :error
echo OK
goto :eof
)
if "%1" == "upload-wheels" (
:build-wheels
C:\Python26\python.exe setup.py build bdist_wheel upload || goto :error
C:\Python27\python.exe setup.py build bdist_wheel upload || goto :error
C:\Python33\python.exe setup.py build bdist_wheel upload || goto :error
C:\Python34\python.exe setup.py build bdist_wheel upload || goto :error
rem 64 bit versions
rem Python 2.7 + VS 2008 requires vcvars64.bat to be run first:
rem http://stackoverflow.com/questions/11072521/
rem Windows SDK and .NET Framework 3.5 SP1 also need to be installed (sigh)
"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat"
C:\Python27-64\python.exe setup.py build bdist_wheel upload || goto :error
C:\Python33-64\python.exe setup.py build bdist_wheel upload || goto :error
C:\Python34-64\python.exe setup.py build bdist_wheel upload || goto :error
echo OK
goto :eof
)
goto :help
:error
echo last command exited with error code %errorlevel%
exit /b %errorlevel%
goto :eof
| michimussato/pypelyne2 | pypelyne2/payload/psutil-2.2.1/make.bat | bat | gpl-2.0 | 7,797 |
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
| h2oai/sparkling-water | py/conda/h2o_pysparkling_SUBST_SPARK_MAJOR_VERSION/bld.bat | bat | apache-2.0 | 105 |
@echo off
set PATH=%~dp0\bin;%PATH%
set XDG_CONFIG_DIRS=%~dp0etc\xdg
set XDG_DATA_DIRS=%~dp0share
set GTK_DATA_PREFIX=%~dp0
set GTK_EXE_PREFIX=%~dp0
set GTK_PATH=%~dp0
set GTK2_RC_FILES=%~dp0etc\gtk-2.0\gtkrc
set GTK_IM_MODULE_FILE=%~dp0etc\gtk-2.0\gtk.immodules
set GDK_PIXBUF_MODULE_FILE=%~dp0etc\gtk-2.0\gdk-pixbuf.loaders
set leksah_bindir=%~dp0bin
set leksah_libdir=%~dp0leksah\ghc-6.12.1
set leksah_datadir=%~dp0leksah
set leksah_libexecdir=%~dp0bin
set leksah_server_bindir=%~dp0bin
set leksah_server_libdir=%~dp0leksah\ghc-6.12.1
set leksah_server_datadir=%~dp0leksah
set leksah_server_libexecdir=%~dp0bin
set hlint_datadir=%~dp0hlint
set pretty_show_datadir=%~dp0pretty-show
leksah.exe
if errorlevel 1 pause
if not errorlevel 0 pause
| 573/leksah | win32/leksah.bat | bat | gpl-2.0 | 778 |
setenv console ttyO2,115200n8
setenv vram '16M'
setenv dvimode 'hd720 omapfb.vram=0:8M,1:4M,2:4M'
run loaduimage
run mmcboot
| wwright2/dcim3-angstrom1 | sources/meta-angstrom/recipes-angstrom/angstrom/angstrom-uboot-scripts/720p-ttyO2.cmd | bat | mit | 125 |
02; // Get firmware version
// Reads content of a Mifare UltraLight
// PLEASE PUT ULTRALIGHT TAG NOW
4A 01 00; // 1 target requested
// Read memory content from address 4
40 01 30 00; Read 16 bytes from address 0x00
40 01 30 04; Read 16 bytes from address 0x04
40 01 30 08; Read 16 bytes from address 0x08
40 01 30 0C; Read 16 bytes from address 0x0C
| x414e54/grouping-proof | libnfc-read-only/examples/pn53x-tamashell-scripts/UltraLightRead.cmd | bat | bsd-3-clause | 492 |
@echo off
REM Close all windows: there might be things to save!
call %~dp0close-all-windows.bat
REM Backup before shutting the computer down
wscript %~dp0backup\backup-dev.vbs %~dp0backup\idrive-backup-data.txt %~dp0backup\local-backup-data.txt
REM Shutdown
C:\Windows\System32\shutdown.exe -s -f -t 0 | ThomasKrauss/Reconnect | my-utilities/resources/commands/shutdown.bat | bat | mit | 306 |
call npm install
call npm run build
call cd %DEPLOYMENT_TARGET%
for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)
xcopy /d %DEPLOYMENT_SOURCE%\dist %DEPLOYMENT_TARGET%\dist /s /i
xcopy /d %DEPLOYMENT_SOURCE%\index.html %DEPLOYMENT_TARGET%\index.html*
xcopy /d %DEPLOYMENT_SOURCE%\server.js %DEPLOYMENT_TARGET%\server.js*
xcopy /d %DEPLOYMENT_SOURCE%\package.json %DEPLOYMENT_TARGET%\package.json*
xcopy /d %DEPLOYMENT_SOURCE%\build\web.config %DEPLOYMENT_TARGET%\web.config*
call npm install --only=production
echo Deployed | OakRaven/vue-spa-from-scratch | build/deploy.cmd | bat | mit | 551 |
/* Rxfh2lnk RexxFunctionHandler-to-Linkerfile */
PARSE ARG args
lnkfile=STRIP(args)
SAY lnkfile
CALL STREAM lnkfile,'C','OPEN READ'
i=1
DO WHILE LINES(lnkfile)>0
PARSE VALUE LINEIN(lnkfile) WITH key file.i
IF STRIP(TRANSLATE(key))='FILE' THEN i=i+1
END
file.0=i-1
CALL STREAM lnkfile,'C','CLOSE'
count=0
CALL STREAM lnkfile,'C','OPEN WRITE'
DO i=1 TO file.0
f=LEFT(TRANSLATE(file.i,'/','\'),LASTPOS('.',file.i))||'c'
SAY f
CALL STREAM f,'C','OPEN READ'
DO WHILE LINES(f)>0
PARSE VALUE LINEIN(f) WITH w1 w2
IF STRIP(w1)='RexxFunctionHandler' THEN DO
PARSE VALUE w2 WITH w2';'w3
CALL LINEOUT lnkfile,LEFT('export '||w2,32,' ')||'.'||count
CALL LINEOUT lnkfile,LEFT('export '||TRANSLATE(w2),32,' ')||'= '||w2
count=count+1
END
IF STRIP(w1)='CIntFunctionHandler' THEN DO
PARSE VALUE w2 WITH w2'('w3
CALL LINEOUT lnkfile,LEFT('export '||w2,32,' ')||'.'||count
count=count+1
END
IF STRIP(w1)='CLongFunctionHandler' THEN DO
PARSE VALUE w2 WITH w2'('w3
CALL LINEOUT lnkfile,LEFT('export '||w2,32,' ')||'.'||count
count=count+1
END
END
CALL STREAM f,'C','CLOSE'
END
CALL STREAM lnkfile,'C','CLOSE'
| sptim/legacy-sputils | scripts/rxfh2lnk.cmd | bat | mit | 1,147 |
@echo off
copy /B/Y .\..\..\..\baserom\lm1mb_sa1.smc .\patched.smc
echo.
IF %ERRORLEVEL% NEQ 0 (
echo Copying "lm1mb_sa1.smc" to "patched.smc" failed.
echo.
pause
exit %ERRORLEVEL%
) ELSE (
echo Copied "lm1mb_sa1.smc" to "patched.smc".
echo.
)
.\..\..\..\tools\asar\asar.exe .\..\free_7F4000.asm .\patched.smc
echo.
IF %ERRORLEVEL% NEQ 0 (
echo Patching "free_7F4000.asm" to "patched.smc" failed.
echo.
pause
exit %ERRORLEVEL%
) ELSE (
echo Patched "free_7F4000.asm" to "patched.smc".
echo.
) | RPGHacker/SMW-Workspace | patches/free_7F4000/test/patch_sa1.bat | bat | mit | 510 |
@echo off
set DEPENDENCIES_DIR=sample\build\dependencies\unpackaged
set JAR_FILE=build\libs\lightweight-jar.jar
set COMPRESS_LEVEL=9
java -jar %JAR_FILE% build -a sample\src\main\java -s %DEPENDENCIES_DIR%\source -c %DEPENDENCIES_DIR%\binary --encoding UTF-8 --compress-level %COMPRESS_LEVEL% -m sample.Main -j sample --spring-boot
| opengl-8080/lightweight-jar | build.bat | bat | mit | 341 |
cmd_kernel/power/process.o := arm-none-linux-gnueabi-gcc -Wp,-MD,kernel/power/.process.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(process)" -D"KBUILD_MODNAME=KBUILD_STR(process)" -c -o kernel/power/.tmp_process.o kernel/power/process.c
deps_kernel/power/process.o := \
kernel/power/process.c \
include/linux/interrupt.h \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
$(wildcard include/config/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/irq/time/accounting.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/debug/lock/alloc.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hardirq.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
$(wildcard include/config/mm/owner.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/nodemask.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
include/linux/srcu.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/trace/events/irq.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/oom.h \
include/linux/suspend.h \
$(wildcard include/config/vt.h) \
$(wildcard include/config/vt/console.h) \
$(wildcard include/config/suspend.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/suspend/nvs.h) \
include/linux/swap.h \
$(wildcard include/config/migration.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \
include/linux/memcontrol.h \
$(wildcard include/config/cgroup/mem/cont.h) \
include/linux/cgroup.h \
include/linux/cgroupstats.h \
include/linux/taskstats.h \
include/linux/prio_heap.h \
include/linux/gfp.h \
$(wildcard include/config/debug/vm.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/idr.h \
include/linux/node.h \
$(wildcard include/config/memory/hotplug/sparse.h) \
$(wildcard include/config/hugetlbfs.h) \
include/linux/sysdev.h \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/range.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/syscalls.h \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/mips.h) \
$(wildcard include/config/have/syscall/wrappers.h) \
include/linux/unistd.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unistd.h \
$(wildcard include/config/oabi/compat.h) \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/trace/syscall.h \
include/linux/ftrace_event.h \
include/linux/ring_buffer.h \
$(wildcard include/config/ring/buffer/allow/swap.h) \
include/linux/kmemcheck.h \
include/linux/seq_file.h \
include/linux/trace_seq.h \
include/linux/fs.h \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/blk_types.h \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/perf_event.h \
$(wildcard include/config/perf/use/vmalloc.h) \
include/linux/pid_namespace.h \
$(wildcard include/config/pid/ns.h) \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/ftrace.h \
$(wildcard include/config/function/tracer.h) \
$(wildcard include/config/stack/tracer.h) \
$(wildcard include/config/dynamic/ftrace.h) \
$(wildcard include/config/frame/pointer.h) \
include/linux/trace_clock.h \
include/linux/kallsyms.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ftrace.h \
$(wildcard include/config/old/mcount.h) \
include/linux/cpu.h \
$(wildcard include/config/arch/cpu/probe/release.h) \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/irq_work.h \
include/linux/jump_label_ref.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/freezer.h \
$(wildcard include/config/cgroup/freezer.h) \
include/linux/delay.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/delay.h \
kernel/power/process.o: $(deps_kernel/power/process.o)
$(deps_kernel/power/process.o):
| srinugnt2000/linux-2.6.37 | kernel/power/.process.o.cmd | bat | gpl-2.0 | 25,914 |
doxygen nl.doxygen.cfg
cd doc\html\
zip nl-doc.zip *.*
cd ..\..
move doc\html\nl-doc.zip nl-doc.zip
| NikolaiZolotykh/nl-software | makedoc.bat | bat | gpl-2.0 | 109 |
:: ------------------------------------------------------------------------
:: FusionInventory Agent Installer for Microsoft Windows
:: Copyright (C) 2010-2019 by the FusionInventory Development Team.
::
:: http://www.fusioninventory.org/ http://forge.fusioninventory.org/
:: ------------------------------------------------------------------------
::
:: LICENSE
::
:: This file is part of FusionInventory project.
::
:: FusionInventory Agent Installer for Microsoft Windows is free software;
:: you can redistribute it and/or modify it under the terms of the GNU
:: General Public License as published by the Free Software Foundation;
:: either version 2 of the License, or (at your option) any later version.
::
::
:: FusionInventory Agent Installer for Microsoft Windows is distributed in
:: the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
:: the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
:: PURPOSE. See the GNU General Public License for more details.
::
:: You should have received a copy of the GNU General Public License
:: along with this program; if not, write to the Free Software Foundation,
:: Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA,
:: or see <http://www.gnu.org/licenses/>.
::
:: ------------------------------------------------------------------------
::
:: @package FusionInventory Agent Installer for Microsoft Windows
:: @file .\NSIS\FusionInventory-Agent-Portable.bat
:: @author Tomas Abad <[email protected]>
:: Guillaume Bougard <gbougard at teclib.com>
:: @copyright Copyright (c) 2010-2019 FusionInventory Team
:: @license GNU GPL version 2 or (at your option) any later version
:: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
:: @link http://www.fusioninventory.org/
:: @link http://forge.fusioninventory.org/projects/fusioninventory-agent
:: @since 2012
::
:: ------------------------------------------------------------------------
@echo off
for %%p in (".") do pushd "%%~fsp"
cd /d "%~dp0"
set MINGW_PATH=%SYSTEMDRIVE%\MinGW
set MSYS_PATH=%MINGW_PATH%\msys\1.0
set MSYSTEM=MSYS
if not exist "%MINGW_PATH%" goto mingw_not_installed
:: MinGW/MSYS is already installed
del /Q *-portable.exe 2>nul
FOR %%I IN (*.exe) DO (
echo Running %%I
start /W %%I /S /acceptlicense /installtype=from-scratch /execmode=portable /installtasks=Full /logger=stderr /installdir=%~dp0\Portable\FusionInventory-Agent
%MSYS_PATH%\bin\bash.exe "%~dpn0.sh" %%I
)
goto end_of_file
:mingw_not_installed
:: MinGW/MSYS is not installed
echo.
echo It seems that MinGW/MSYS is not installed into "%MINGW_PATH%".
echo Please, launch '..\Perl\Scripts\install-gnu-utilities-collection.bat'
echo to install MinGW/MSYS ^(www.mingw.org^) and try again.
echo.
:end_of_file
:: Unset environment variables
set MINGW_PATH=
popd
exit /b 0
| fusioninventory/fusioninventory-agent-windows-installer | NSIS/FusionInventory-Agent-Portable.bat | bat | gpl-2.0 | 2,890 |
cmd_libbb/messages.o := arm-linux-musleabihf-gcc -Wp,-MD,libbb/.messages.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(messages)" -D"KBUILD_MODNAME=KBUILD_STR(messages)" -c -o libbb/messages.o libbb/messages.c
deps_libbb/messages.o := \
libbb/messages.c \
$(wildcard include/config/busybox/exec/path.h) \
$(wildcard include/config/feature/wtmp.h) \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
libbb/messages.o: $(deps_libbb/messages.o)
$(deps_libbb/messages.o):
| ThinkIntegrate/busybox | libbb/.messages.o.cmd | bat | gpl-2.0 | 11,451 |
cmd_net/core/built-in.o := arm-poky-linux-gnueabi-ld -EL -r -o net/core/built-in.o net/core/sock.o net/core/request_sock.o net/core/skbuff.o net/core/iovec.o net/core/datagram.o net/core/stream.o net/core/scm.o net/core/gen_stats.o net/core/gen_estimator.o net/core/net_namespace.o net/core/secure_seq.o net/core/flow_dissector.o net/core/sysctl_net_core.o net/core/dev.o net/core/ethtool.o net/core/dev_addr_lists.o net/core/dst.o net/core/netevent.o net/core/neighbour.o net/core/rtnetlink.o net/core/utils.o net/core/link_watch.o net/core/filter.o net/core/sock_diag.o net/core/dev_ioctl.o net/core/tso.o net/core/flow.o net/core/net-sysfs.o net/core/net-procfs.o
| heyoufei2/yocto3.14.38_kernel | net/core/.built-in.o.cmd | bat | gpl-2.0 | 672 |
zip \dskx13s stringe\* dskxtrct\* * -x *.lib
| OS2World/UTIL-SYSTEM-dskxtrct | distrib.cmd | bat | gpl-2.0 | 45 |
cmd_net/netlink/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/netlink/built-in.o net/netlink/af_netlink.o net/netlink/genetlink.o
| sleshepic/epic_touch_kernel | net/netlink/.built-in.o.cmd | bat | gpl-2.0 | 184 |
cmd_drivers/net/smsc911x.o := arm-eabi-gcc -Wp,-MD,drivers/net/.smsc911x.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(smsc911x)" -D"KBUILD_MODNAME=KBUILD_STR(smsc911x)" -D"DEBUG_HASH=35" -D"DEBUG_HASH2=13" -c -o drivers/net/smsc911x.o drivers/net/smsc911x.c
deps_drivers/net/smsc911x.o := \
drivers/net/smsc911x.c \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/pm.h) \
include/linux/crc32.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/data/repos/kernels/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/repos/kernels/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
include/linux/bitrev.h \
include/linux/delay.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \
include/linux/linkage.h \
/data/repos/kernels/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/repos/kernels/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/data/repos/kernels/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/data/repos/kernels/arch/arm/include/asm/irqflags.h \
/data/repos/kernels/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/data/repos/kernels/arch/arm/include/asm/hwcap.h \
/data/repos/kernels/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/data/repos/kernels/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/repos/kernels/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/repos/kernels/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/data/repos/kernels/arch/arm/include/asm/div64.h \
/data/repos/kernels/arch/arm/include/asm/delay.h \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/errno.h \
/data/repos/kernels/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/etherdevice.h \
$(wildcard include/config/have/efficient/unaligned/access.h) \
include/linux/if_ether.h \
$(wildcard include/config/sysctl.h) \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/kmemcheck.h \
$(wildcard include/config/kmemcheck.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/repos/kernels/arch/arm/include/asm/auxvec.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/data/repos/kernels/arch/arm/include/asm/processor.h \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/repos/kernels/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/repos/kernels/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/repos/kernels/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/data/repos/kernels/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/completion.h \
include/linux/wait.h \
/data/repos/kernels/arch/arm/include/asm/current.h \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/data/repos/kernels/arch/arm/include/asm/string.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/data/repos/kernels/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/data/repos/kernels/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/data/repos/kernels/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/data/repos/kernels/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
/data/repos/kernels/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/math64.h \
include/linux/net.h \
include/linux/socket.h \
/data/repos/kernels/arch/arm/include/asm/socket.h \
/data/repos/kernels/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/random.h \
include/linux/ioctl.h \
/data/repos/kernels/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/data/repos/kernels/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
include/linux/sysctl.h \
include/linux/ratelimit.h \
include/linux/param.h \
include/linux/textsearch.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/stat.h \
/data/repos/kernels/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/repos/kernels/arch/arm/include/asm/smp.h \
arch/arm/mach-msm/include/mach/smp.h \
/data/repos/kernels/arch/arm/include/asm/hardware/gic.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/data/repos/kernels/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
/data/repos/kernels/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/data/repos/kernels/arch/arm/include/asm/elf.h \
/data/repos/kernels/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
/data/repos/kernels/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/err.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/net/checksum.h \
/data/repos/kernels/arch/arm/include/asm/uaccess.h \
/data/repos/kernels/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/data/repos/kernels/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/data/repos/kernels/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
$(wildcard include/config/need/dma/map/state.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/data/repos/kernels/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/range.h \
/data/repos/kernels/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/data/repos/kernels/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/repos/kernels/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/vmsplit/2g.h) \
/data/repos/kernels/arch/arm/include/asm/pgtable-hwdef.h \
/data/repos/kernels/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
$(wildcard include/config/arm/errata/720789.h) \
$(wildcard include/config/arch/msm8x60.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
include/linux/capability.h \
/data/repos/kernels/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/repos/kernels/arch/arm/include/asm/ipcbuf.h \
/data/repos/kernels/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/repos/kernels/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/data/repos/kernels/arch/arm/include/asm/sigcontext.h \
/data/repos/kernels/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/repos/kernels/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/data/repos/kernels/arch/arm/include/asm/io.h \
$(wildcard include/config/sec/debug/regrw/log.h) \
arch/arm/mach-msm/include/mach/sec_debug.h \
$(wildcard include/config/sec/debug.h) \
$(wildcard include/config/sec/debug/sched/log.h) \
$(wildcard include/config/sec/debug/irq/exit/log.h) \
$(wildcard include/config/sec/debug/semaphore/log.h) \
$(wildcard include/config/sec/debug/dcvs/log.h) \
$(wildcard include/config/sec/debug/fuelgauge/log.h) \
$(wildcard include/config/sec/debug/mdp/log.h) \
$(wildcard include/config/sec/debug/sdio/log.h) \
include/linux/semaphore.h \
arch/arm/mach-msm/include/mach/io.h \
/data/repos/kernels/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_packet.h \
include/linux/if_link.h \
include/linux/netlink.h \
include/linux/pm_qos_params.h \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/linux/u64_stats_sync.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/mroute/multiple/tables.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/mroute/multiple/tables.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/data/repos/kernels/arch/arm/include/asm/hardirq.h \
/data/repos/kernels/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8960.h) \
arch/arm/mach-msm/include/mach/irqs-8x60.h \
include/linux/irq_cpustat.h \
/data/repos/kernels/arch/arm/include/asm/unaligned.h \
include/linux/unaligned/le_byteshift.h \
include/linux/unaligned/be_byteshift.h \
include/linux/unaligned/generic.h \
include/linux/platform_device.h \
include/linux/mod_devicetable.h \
include/linux/gpio.h \
$(wildcard include/config/generic/gpio.h) \
/data/repos/kernels/arch/arm/include/asm/gpio.h \
arch/arm/mach-msm/include/mach/gpio.h \
$(wildcard include/config/msm/v2/tlmm.h) \
include/asm-generic/gpio.h \
$(wildcard include/config/gpiolib.h) \
$(wildcard include/config/gpio/sysfs.h) \
$(wildcard include/config/have/gpio/lib.h) \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumasks/offstack.h) \
/data/repos/kernels/arch/arm/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
/data/repos/kernels/arch/arm/include/asm/hw_irq.h \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
include/linux/phy.h \
include/linux/mii.h \
include/linux/smsc911x.h \
drivers/net/smsc911x.h \
drivers/net/smsc911x.o: $(deps_drivers/net/smsc911x.o)
$(deps_drivers/net/smsc911x.o):
| bigbiff/i717-GB-Kernel | drivers/net/.smsc911x.o.cmd | bat | gpl-2.0 | 33,124 |
cmd_firmware/built-in.o := rm -f firmware/built-in.o; /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ar rcsD firmware/built-in.o
| domintech/PandaBoard-LinuxKernel | firmware/.built-in.o.cmd | bat | gpl-2.0 | 204 |
java -cp mysql-connector-java-5.1.28-bin.jar;classes;. EOPLibrary | jlask2/education | csc429ObjectOrientedSoftwareDevelopment/eop/phutzbah_runEOPLibraryApp.bat | bat | gpl-2.0 | 65 |
<<<<<<< HEAD
@ECHO OFF
::
:: FCKeditor - The text editor for Internet - http://www.fckeditor.net
:: Copyright (C) 2003-2010 Frederico Caldeira Knabben
::
:: == BEGIN LICENSE ==
::
:: Licensed under the terms of any of the following licenses at your
:: choice:
::
:: - GNU General Public License Version 2 or later (the "GPL")
:: http://www.gnu.org/licenses/gpl.html
::
:: - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
:: http://www.gnu.org/licenses/lgpl.html
::
:: - Mozilla Public License Version 1.1 or later (the "MPL")
:: http://www.mozilla.org/MPL/MPL-1.1.html
::
:: == END LICENSE ==
::
:: adt -package SIGNING_OPTIONS air_file app_xml [file_or_dir | -C dir file_or_dir | -e file dir ...] ...
"C:\Adobe AIR SDK\bin\adt" -package -storetype pkcs12 -keystore sample01_cert.pfx -storepass 123abc FCKeditor.air application.xml -C ../../ .
=======
@ECHO OFF
::
:: FCKeditor - The text editor for Internet - http://www.fckeditor.net
:: Copyright (C) 2003-2010 Frederico Caldeira Knabben
::
:: == BEGIN LICENSE ==
::
:: Licensed under the terms of any of the following licenses at your
:: choice:
::
:: - GNU General Public License Version 2 or later (the "GPL")
:: http://www.gnu.org/licenses/gpl.html
::
:: - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
:: http://www.gnu.org/licenses/lgpl.html
::
:: - Mozilla Public License Version 1.1 or later (the "MPL")
:: http://www.mozilla.org/MPL/MPL-1.1.html
::
:: == END LICENSE ==
::
:: adt -package SIGNING_OPTIONS air_file app_xml [file_or_dir | -C dir file_or_dir | -e file dir ...] ...
"C:\Adobe AIR SDK\bin\adt" -package -storetype pkcs12 -keystore sample01_cert.pfx -storepass 123abc FCKeditor.air application.xml -C ../../ .
>>>>>>> origin/master
| marvoey/live-web | sites/all/libraries/fckeditor/_samples/adobeair/package.bat | bat | gpl-2.0 | 1,777 |
cmd_net/bluetooth/hidp/hidp.o := ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ld -EL -r -o net/bluetooth/hidp/hidp.o net/bluetooth/hidp/core.o net/bluetooth/hidp/sock.o
| spacecaker/CM7_Space_Kernel_Cooper | net/bluetooth/hidp/.hidp.o.cmd | bat | gpl-2.0 | 178 |
cmd_drivers/net/built-in.o := /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/net/built-in.o drivers/net/mii.o drivers/net/Space.o drivers/net/loopback.o drivers/net/phy/built-in.o drivers/net/ethernet/built-in.o drivers/net/wireless/built-in.o drivers/net/usb/built-in.o
| domintech/PandaBoard-LinuxKernel | drivers/net/.built-in.o.cmd | bat | gpl-2.0 | 371 |
cmd_sound/pci/lola/built-in.o := rm -f sound/pci/lola/built-in.o; /mnt/disk2/Dev/UG802/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD sound/pci/lola/built-in.o
| aloksinha2001/picuntu-3.0.8-alok | sound/pci/lola/.built-in.o.cmd | bat | gpl-2.0 | 175 |
cmd_kernel/sched.o := arm-linux-gnueabi-gcc -Wp,-MD,kernel/.sched.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -fno-omit-frame-pointer -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(sched)" -D"KBUILD_MODNAME=KBUILD_STR(sched)" -c -o kernel/sched.o kernel/sched.c
deps_kernel/sched.o := \
kernel/sched.c \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/cgroup/sched.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/sched/hrtick.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/cgroup/cpuacct.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/magic/sysrq.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/64bit.h) \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/hibernation.h) \
include/linux/errno.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/spinlock.h \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock_api_up.h \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
include/linux/cpumask.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/mach/es209ra.h) \
$(wildcard include/config/vmsplit/2g.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
include/linux/sched.h \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/jiffies.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/have/mlocked/page/bit.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/nmi.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/highmem.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
$(wildcard include/config/arm/errata/411920.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmparam.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/kmap_types.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu_context.h \
include/asm-generic/mm_hooks.h \
include/linux/interrupt.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/debug/shirq.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \
include/linux/irq_cpustat.h \
include/linux/kernel_stat.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumasks/offstack.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hw_irq.h \
include/linux/perf_event.h \
$(wildcard include/config/perf/use/vmalloc.h) \
include/linux/pid_namespace.h \
$(wildcard include/config/pid/ns.h) \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/msgbuf.h \
include/linux/xfrm.h \
include/net/flow.h \
include/linux/in6.h \
include/linux/profile.h \
$(wildcard include/config/profiling.h) \
include/linux/freezer.h \
$(wildcard include/config/freezer.h) \
$(wildcard include/config/cgroup/freezer.h) \
include/linux/vmalloc.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/runtime.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/pagemap.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/writeback.h \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
include/linux/bsg.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/linux/elevator.h \
include/linux/delay.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/delay.h \
include/linux/cpu.h \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/sysdev.h \
include/linux/node.h \
include/linux/cpuset.h \
include/linux/cgroup.h \
include/linux/cgroupstats.h \
include/linux/taskstats.h \
include/linux/prio_heap.h \
include/linux/idr.h \
include/linux/kthread.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/magic.h \
include/linux/seq_file.h \
include/linux/syscalls.h \
$(wildcard include/config/event/profile.h) \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/mips.h) \
$(wildcard include/config/have/syscall/wrappers.h) \
include/linux/unistd.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unistd.h \
$(wildcard include/config/oabi/compat.h) \
include/trace/syscall.h \
include/linux/ftrace_event.h \
include/linux/ring_buffer.h \
$(wildcard include/config/ring/buffer/allow/swap.h) \
include/linux/kmemcheck.h \
include/linux/trace_seq.h \
include/linux/times.h \
include/linux/tsacct_kern.h \
include/linux/kprobes.h \
$(wildcard include/config/kprobes.h) \
$(wildcard include/config/kretprobes.h) \
$(wildcard include/config/kprobes/sanity/test.h) \
include/linux/delayacct.h \
include/linux/tick.h \
$(wildcard include/config/generic/clockevents.h) \
$(wildcard include/config/generic/clockevents/broadcast.h) \
$(wildcard include/config/tick/oneshot.h) \
include/linux/clockchips.h \
$(wildcard include/config/generic/clockevents/build.h) \
include/linux/clocksource.h \
$(wildcard include/config/clocksource/watchdog.h) \
$(wildcard include/config/generic/time/vsyscall.h) \
include/linux/debugfs.h \
include/linux/ctype.h \
include/linux/ftrace.h \
$(wildcard include/config/function/tracer.h) \
$(wildcard include/config/stack/tracer.h) \
$(wildcard include/config/dynamic/ftrace.h) \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/hw/branch/tracer.h) \
include/linux/trace_clock.h \
include/linux/kallsyms.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ftrace.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlb.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgalloc.h \
kernel/sched_cpupri.h \
include/trace/events/sched.h \
kernel/sched_features.h \
kernel/sched_stats.h \
kernel/sched_idletask.c \
kernel/sched_fair.c \
kernel/sched_rt.c \
kernel/sched.o: $(deps_kernel/sched.o)
$(deps_kernel/sched.o):
| b8e5n/KTG-kernel_es209ra | kernel/.sched.o.cmd | bat | gpl-2.0 | 30,857 |
cmd_kernel/ksysfs.o := gcc -Wp,-MD,kernel/.ksysfs.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ksysfs)" -D"KBUILD_MODNAME=KBUILD_STR(ksysfs)" -c -o kernel/ksysfs.o kernel/ksysfs.c
deps_kernel/ksysfs.o := \
kernel/ksysfs.c \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/net.h) \
$(wildcard include/config/kexec.h) \
include/linux/kobject.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/asm/posix_types.h \
$(wildcard include/config/x86/32.h) \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/paravirt.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/cmov.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
include/asm/alternative.h \
include/asm/asm.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/compat/vdso.h) \
include/asm/user.h \
include/asm/user_32.h \
include/asm/auxvec.h \
include/asm/vdso.h \
include/asm/desc.h \
include/asm/ldt.h \
include/asm/mmu.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/asm-x86/mach-default/mach_apicdef.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slabinfo.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/asm/module.h \
$(wildcard include/config/m486.h) \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip2.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
include/linux/kexec.h \
$(wildcard include/config/.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/asm/timex.h \
$(wildcard include/config/x86/rdc321x.h) \
include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/auxvec.h \
include/linux/prio_tree.h \
include/linux/completion.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
include/asm-generic/signal.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/asm/seccomp.h \
include/asm/seccomp_32.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/asm/unistd_32.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
kernel/ksysfs.o: $(deps_kernel/ksysfs.o)
$(deps_kernel/ksysfs.o):
| namgk/kernel-tut | kernel/.ksysfs.o.cmd | bat | gpl-2.0 | 16,922 |
@echo off
cd C:\Users\Paran\Documents\Study\Thesis
del /s /q out | paranhaslett/PersonalizedViews | clean.bat | bat | gpl-2.0 | 64 |
@ECHO OFF
ECHO "Setting environment ...."
call setenv.bat
ECHO Set Microsoft Visual Studio Environment using VS supplied batch file
IF "%VS_ENV_SCRIPT%"=="" EXIT 1
IF NOT "%VS_ENV_SCRIPT%"=="" call "%VS_ENV_SCRIPT%"
cd "%OSPL_HOME%"
ECHO Set OSPL runtime environment
call release.bat
REM The Studio solution files for the ISO C++
REM examples reference $(BOOST_ROOT) in case users
REM wish to (re)build using Boost. If this value is not
REM set however (& this is the usual case) VS will emit the message:
REM Project : warning PRJ0018 : The following environment variables were not found:
REM $(BOOST_ROOT)
REM This is benign but cannot be suppressed. We can't easily
REM filter it out as it occurs across two lines & we don't want to ignore
REM the forst line always in case a different "wrong" environment variable is referenced.
REM So: we set BOOST_ROOT to some harmless nonsense value if it's not already set.
IF "%BOOST_ROOT%"=="" SET BOOST_ROOT=bibble
ECHO Change to the examples directory
cd "%OSPL_HOME%"/examples
ECHO Build examples
REM See @todo OSPL-2710. We do /rebuild without the usual
REM trailing configuration(s) (e.g. Debug &/or Release). This will build
REM the 'default' configuration only. This is OK (for a small +ve value
REM of OK < 1) as we are currently creating solutions with one configuration only.
REM Note MSBuild.exe (and hence devenv.com) no longer has an 'All' mode.
REM Go figure.
ECHO Building Visual Studio examples....
ECHO Building all Visual Studio example solutions
FOR %%f IN (*.sln) DO (
ECHO -----------------------------------------------------------------------
ECHO Building solution file %%f using devenv.com
ECHO devenv.com %%f /rebuild
devenv.com %%f /rebuild
IF ERRORLEVEL 1 ECHO ***** Error building %%f using devenv.com Return code %ERRORLEVEL%
)
ECHO Building Java examples....
FOR %%f IN (BUILD*.bat) DO (
ECHO -----------------------------------------------------------------------
ECHO Calling java build batch file %%f
call %%f
IF ERRORLEVEL 1 ECHO ***** Error calling %%f Return code %ERRORLEVEL%
cd "%OSPL_HOME%"/examples
)
ECHO -----------------------------------------------------------------------
ECHO ON
cd "%~dp0\..\..\..\testsuite\tests"
ECHO Building system testcases
REM IF "%VS80COMNTOOLS%"=="" devenv tests.sln /upgrade
REM devenv tests.sln /Clean %BUILD_CONFIG%
REM devenv tests.sln /Rebuild %BUILD_CONFIG%
ECHO OFF
cd "%OSPL_HOME%/examples"
| SanderMertens/opensplice | build/scripts/overnight/build_examples.bat | bat | gpl-3.0 | 2,555 |
@echo off
set R=%SRC_DIR%
set B_BV=1_78
set B_BOOST=C:\local\boost_%B_BV%_0
cd /D "%B_BOOST%\lib64-msvc-14.1"
mkdir "%R%\lib\x64"
mkdir "%R%\bin\x64\Release_CUDA"
copy boost_unit_test_framework-vc141-mt-x64-%B_BV%.lib %R%\lib\x64
copy libboost_chrono-vc141-mt-x64-%B_BV%.lib %R%\lib\x64
copy libboost_date_time-vc141-mt-x64-%B_BV%.lib %R%\lib\x64
copy libboost_system-vc141-mt-x64-%B_BV%.lib %R%\lib\x64
copy libboost_thread-vc141-mt-x64-%B_BV%.lib %R%\lib\x64
cd %B_BOOST%
xcopy /i /e /q /y boost "%R%\lib\include\boost"
cd /D %R%
cd python
set CL=/DASTRA_CUDA /DASTRA_PYTHON "/I%R%\include" "/I%R%\lib\include" "/I%CUDA_PATH%\include"
copy "%LIBRARY_LIB%\AstraCuda64.lib" astra.lib
python builder.py build_ext --compiler=msvc install
| astra-toolbox/astra-toolbox | python/conda/astra-toolbox/bld.bat | bat | gpl-3.0 | 746 |
md mus
cd mus
rem $8000
bcut ..\MOMOKO_1.dsk DRIVER.BIN 0xA300 0x0B00
rem $9800
bcut ..\MOMOKO_1.dsk FDAT.BIN 0xE200 0x1b00
bcut ..\MOMOKO_1.dsk PDAT.BIN 0x10000 0x1800
rem $0100
bcut ..\MOMOKO_1.dsk MAIN.BIN 0x2400 0x0D00
cd ..
| rururutan/hoot-patches | msx/nichibutu/hana_no_momokogumi/cut/cut.bat | bat | gpl-3.0 | 231 |
xamarin-component package emgucv_v3\component
| neutmute/emgucv | platforms/xamarin/build.bat | bat | gpl-3.0 | 48 |
@ECHO OFF
nssm.exe stop Pywebdriver
nssm.exe remove Pywebdriver confirm
| akretion/pywebdriver | windows/uninstall.bat | bat | gpl-3.0 | 72 |
@echo off
REM **************************************************************************************
REM * The contents of this file are subject to the vtiger CRM Public License Version 1.0 *
REM * ("License"); You may not use this file except in compliance with the License *
REM * The Original Code is: vtiger CRM Open Source *
REM * The Initial Developer of the Original Code is vtiger. *
REM * Portions created by vtiger are Copyright (C) vtiger. *
REM * All Rights Reserved. *
REM * *
REM **************************************************************************************
set PHP_EXE="C:\xampp\php\php.exe"
cd /D "C:\xampp\htdocs\plugins\erpconnector\Map_load"
%PHP_EXE% -f Map.php | andreadanzi/rotho_dev | plugins/erpconnector/Map_load/Map.bat | bat | mpl-2.0 | 949 |
@0461 < horizon.%1.in
@type horizon.%1.out
| dk00/old-stuff | ntuj/t.bat | bat | unlicense | 44 |
@echo off
setlocal enabledelayedexpansion
set PGSHELL_CONFDIR=%~1
rem Get list of Database Name which you want to monitor.
rem The default settings are excepted template databases(template0/template1).
rem
rem :Example
rem
rem If you want to monitor "foo" and "bar" databases, you set the GETDB as
rem GETDB="select datname from pg_database where datname in ('foo','bar');"
set GETDB="select datname from pg_database where datistemplate = 'f';"
rem Load the pgsql connection option parameters.
for /f "tokens=1,2 delims==" %%i in (%PGSHELL_CONFDIR%\pgsql_funcs.conf) do set %%i=%%j
psql -h %PGHOST% -p %PGPORT% -U %PGROLE% -d %PGDATABASE% -t -c %GETDB%>db.list 2>&1
if %errorlevel% NEQ 0 (
type db.list
del db.list
exit
)
for /f "tokens=1 delims= " %%i in (db.list) do (
set dblist=!dblist!,{"{#DBNAME}":"%%i"}
)
del db.list
if defined dblist set dblist=%dblist:~1%
echo {"data":[%dblist% ]}
| laiyuandong/test | pg_monz_win/usr-local-bin/find_dbname.bat | bat | apache-2.0 | 904 |
coffee --compile --watch --output js\generated coffeescript | jazeee/crossfilterd3dc | compile.bat | bat | apache-2.0 | 59 |
@echo off
echo %~dp0
set a= %~dp0
set b=windows-x64
set c=windows-x86
set d=hello.jar
set d=%a%%d%
if exist %windir%\SysWOW64 (
java -Djava.library.path=%a%%b%
) else (
java -Djava.library.path=%a%%c%
)
echo Input you file name:
set /p Input=
echo Your Input number is %Input%.
echo Please wait....
java -jar %d% %Input%
echo ...complet...
pause
| crazylinuxsir/WebpTool | Windows.bat | bat | apache-2.0 | 351 |
@echo off
REM ############################################################################################################################
REM # (c) 2017 TIBCO Software Inc. All rights reserved.
REM #
REM # Except as specified below, this software is licensed pursuant to the Eclipse Public License v. 1.0.
REM # The details can be found in the file LICENSE.
REM #
REM # The following proprietary files are included as a convenience, and may not be used except pursuant
REM # to valid license to Composite Information Server or TIBCO(R) Data Virtualization Server:
REM # csadmin-XXXX.jar, csarchive-XXXX.jar, csbase-XXXX.jar, csclient-XXXX.jar, cscommon-XXXX.jar,
REM # csext-XXXX.jar, csjdbc-XXXX.jar, csserverutil-XXXX.jar, csserver-XXXX.jar, cswebapi-XXXX.jar,
REM # and customproc-XXXX.jar (where -XXXX is an optional version number). Any included third party files
REM # are licensed under the terms contained in their own accompanying LICENSE files, generally named .LICENSE.txt.
REM #
REM # This software is licensed AS-IS. Support for this software is not covered by standard maintenance agreements with TIBCO.
REM # If you would like to obtain assistance with this software, such assistance may be obtained through a separate paid consulting
REM # agreement with TIBCO.
REM #
REM ############################################################################################################################
REM # Author: Mike Tinius, Data Virtualization Business Unit, Advanced Services
REM # Date: June 2015
REM # PDTool Regression Module - Migration Automated Test Framework
REM #=======================================================================================
REM # copyPlanTemplates.bat
REM #
REM # Purpose:
REM # The purpose of this batch file is to make it easy to copy plan templates for doing regression testing.
REM # This batch file will automatically generate the PDTool Regression Module scripts for a given
REM # project/business line/business area/subject area as represented by the published database, catalog and schema.
REM # This batch file will generate the necessary plan files, modules XML file and documentation from templates
REM # found in the templates folder.
REM # Note: Executing this batch file more than once will overwrite any existing generated files.
REM #
REM # Instructions:
REM # Automated:
REM # copyPlanTemplates.bat [PROMPT_USER] [GENERATE_XSL_TRANSFORM] [GENERATE_TEMPLATES] [BusLineBusAreaSubjArea] [DATA_SOURCE_NAME] [RESOURCE_NAME]
REM #
REM # PROMPT_USER - when doing automated set PROMPT_USER=false so that it does not prompt the user to edit the Regression Module XML file. Values=true or false
REM #
REM # GENERATE_XSL_TRANSFORM - Generate the server attributes XSL transformation only if this flag is set to true. Values=true or false
REM #
REM # GENERATE_TEMPLATES - Generate the BusLineBusAreaSubjArea templates only if this flag is set to true. Values=true or false
REM #
REM # BusLineBusAreaSubjArea - The BusLineBusAreaSubjArea is the portion of the deployment plan file name that occurs prior to the mandatory test type descriptor.
REM # Affix any prefix or postfix desired to BusLineBusAreaSubjArea such as prefix_BusLineBusAreaSubjArea_postfix
REM # Test type descriptor: _1Smoke_gen.dp, _1Smoke_exec.dp, _2Regression_exec.dp, _2Regression_compare.dp, _3Performance_exec.dp, _3Performance_compare.dp, _4Security_gen.dp, _4Security_exec.dp
REM # Example constructed Deployment plan: prefix_MyProject1_MySubject_post_3Performance_exec.dp
REM # |____BusLineBusAreaSubjArea____|
REM # |______________Deployment Plan File Name____________|
REM #
REM # DATA_SOURCE_NAME - This is published Composite data source to connect to for generating or executing queries.
REM #
REM # RESOURCE_NAME - This may be CATALOG.SCHEMA.* or it may just be CATALOG.*. This is the filter based on Business Line and Business Area.
REM #
REM # Prompt User:
REM # From windows explorer, double click on the copyPlanTemplates.bat and it will prompt the user for the following:
REM # GENERATE_XSL_TRANSFORM
REM # GENERATE_TEMPLATES
REM # BusLineBusAreaSubjArea
REM # DATA_SOURCE_NAME
REM # RESOURCE_NAME
REM #=======================================================================================
REM #
REM ###############################################
REM # Environment Variable Section
REM ###############################################
REM #
REM # Invoke the script to set the variables
if not exist setVars.bat (
echo.
echo.ERROR: Unable to locate and execute setVars.bat.
echo. Execute from directory \AutomatedTestFramework\migration\bin
echo.
exit /b 1
)
call setVars.bat
REM ###############################################
REM # Validation Section
REM ###############################################
REM #
if not exist "%EDITOR%" (
echo.######################################################################################################
echo.%0
echo.
echo.The variable EDITOR contains a path that does not exist:
echo. EDITOR="%EDITOR%"
echo.
echo.Open copyPlanTemplates.bat and modify EDITOR to point to an editor in your file system which exists.
echo.Example notepad is located here: %windir%\system32\notepad.exe
echo.
echo.######################################################################################################
exit /b 1
)
set PROMPT_USER=%1
set GENERATE_XSL_TRANSFORM=%2
set GENERATE_TEMPLATES=%3
set BusLineBusAreaSubjArea=%4
set DATA_SOURCE_NAME=%5
set RESOURCE_NAME=%6
REM # Set the ATF_HOME to an actual path
cd %ATF_HOME%
set ATF_HOME=%CD%
cd %ATF_HOME%/bin
REM # Remove double quotes
setlocal EnableDelayedExpansion
if defined PROMPT_USER set PROMPT_USER=!PROMPT_USER:"=!
if defined GENERATE_XSL_TRANSFORM set GENERATE_XSL_TRANSFORM=!GENERATE_XSL_TRANSFORM:"=!
if defined GENERATE_TEMPLATES set GENERATE_TEMPLATES=!GENERATE_TEMPLATES:"=!
if defined BusLineBusAreaSubjArea set BusLineBusAreaSubjArea=!BusLineBusAreaSubjArea:"=!
if defined DATA_SOURCE_NAME set DATA_SOURCE_NAME=!DATA_SOURCE_NAME:"=!
if defined RESOURCE_NAME set RESOURCE_NAME=!RESOURCE_NAME:"=!
echo.###########################
echo.Input Parameters
echo.###########################
echo.PROMPT_USER= [%PROMPT_USER%]
echo.GENERATE_XSL_TRANSFORM=[%GENERATE_XSL_TRANSFORM%]
echo.GENERATE_TEMPLATES= [%GENERATE_TEMPLATES%]
echo.BusLineBusAreaSubjArea=[%BusLineBusAreaSubjArea%]
echo.DATA_SOURCE_NAME= [%DATA_SOURCE_NAME%]
echo.RESOURCE_NAME= [%RESOURCE_NAME%]
set SCRIPT_HOME=%ATF_HOME%
set PLANS_HOME=%SCRIPT_HOME%\plans
set MODULES_HOME=%SCRIPT_HOME%\modules
set XSLT_HOME=%SCRIPT_HOME%\bin\Xslt
set TEMPLATES=%SCRIPT_HOME%\templates
set DOCS_HOME=%SCRIPT_HOME%\docs
set REPLACE_HOME=%SCRIPT_HOME%\bin\ReplaceText
echo.
echo.###########################
echo.Additional Settings
echo.###########################
echo.SCRIPT_HOME= [%SCRIPT_HOME%]
echo.PLANS_HOME= [%PLANS_HOME%]
echo.MODULES_HOME= [%MODULES_HOME%]
echo.XSLT_HOME= [%XSLT_HOME%]
echo.TEMPLATES= [%TEMPLATES%]
echo.DOCS_HOME= [%DOCS_HOME%]
echo.REPLACE_HOME= [%REPLACE_HOME%]
REM # Set default values
if not defined PROMPT_USER set PROMPT_USER=TRUE
CALL :UCase PROMPT_USER PROMPT_USER
REM # Get user input
if "%PROMPT_USER%" == "FALSE" goto INPUT_CONTINUE
:INPUT
IF NOT DEFINED GENERATE_XSL_TRANSFORM (
echo.----------------------------------------------------------------------------------------
echo.
echo.Provide the flag [GENERATE_XSL_TRANSFORM] to generate server attributes XSL Transform or not: [true or false].
echo. Generate the server attributes XSL Transform only if this flag is set to true.
echo.
set /P GENERATE_XSL_TRANSFORM=enter GENERATE_XSL_TRANSFORM:
if not defined GENERATE_XSL_TRANSFORM goto INPUT
)
CALL :UCase GENERATE_XSL_TRANSFORM GENERATE_XSL_TRANSFORM
set VALID_GENERATE_XSL_TRANSFORM=0
if "%GENERATE_XSL_TRANSFORM%"=="T" set GENERATE_XSL_TRANSFORM=TRUE
if "%GENERATE_XSL_TRANSFORM%"=="F" set GENERATE_XSL_TRANSFORM=FALSE
if "%GENERATE_XSL_TRANSFORM%"=="TRUE" set VALID_GENERATE_XSL_TRANSFORM=1
if "%GENERATE_XSL_TRANSFORM%"=="FALSE" set VALID_GENERATE_XSL_TRANSFORM=1
if "%DEBUG%"=="Y" echo.[DEBUG] VALID_GENERATE_XSL_TRANSFORM=[%VALID_GENERATE_XSL_TRANSFORM%]
if "%DEBUG%"=="Y" echo.[DEBUG] GENERATE_XSL_TRANSFORM=[%GENERATE_XSL_TRANSFORM%]
if %VALID_GENERATE_XSL_TRANSFORM% NEQ 1 (
set GENERATE_XSL_TRANSFORM=
goto INPUT
)
IF NOT DEFINED GENERATE_TEMPLATES (
echo.----------------------------------------------------------------------------------------
echo.
echo.Provide the flag [GENERATE_TEMPLATES] to generate BusLineBusAreaSubjArea templates or not: [true or false].
echo. Generate the BusLineBusAreaSubjArea templates only if this flag is set to true.
echo.
set /P GENERATE_TEMPLATES=enter GENERATE_TEMPLATES:
if not defined GENERATE_TEMPLATES goto INPUT
)
CALL :UCase GENERATE_TEMPLATES GENERATE_TEMPLATES
set VALID_GENERATE_TEMPLATES=0
if "%GENERATE_TEMPLATES%"=="T" set GENERATE_TEMPLATES=TRUE
if "%GENERATE_TEMPLATES%"=="F" set GENERATE_TEMPLATES=FALSE
if "%GENERATE_TEMPLATES%"=="TRUE" set VALID_GENERATE_TEMPLATES=1
if "%GENERATE_TEMPLATES%"=="FALSE" set VALID_GENERATE_TEMPLATES=1
if "%DEBUG%"=="Y" echo.[DEBUG] VALID_GENERATE_TEMPLATES=[%VALID_GENERATE_TEMPLATES%]
if "%DEBUG%"=="Y" echo.[DEBUG] GENERATE_TEMPLATES=[%GENERATE_TEMPLATES%]
if %VALID_GENERATE_TEMPLATES% NEQ 1 (
set GENERATE_TEMPLATES=
goto INPUT
)
if "%GENERATE_TEMPLATES%"=="FALSE" goto INPUT_CONTINUE
IF NOT DEFINED BusLineBusAreaSubjArea (
echo.----------------------------------------------------------------------------------------
echo.
echo.Provide the project identifier [BusLineBusAreaSubjArea] for a deployment plan.
echo. This is the portion of the deployment plan file name that occurs prior to the mandatory test type descriptor.
echo. 1. Affix any prefix or postfix desired to BusLineBusAreaSubjArea such as prefix_BusLineBusAreaSubjArea_postfix
echo. 2. Test type descriptor: _1Smoke_gen.dp, _1Smoke_exec.dp, _2Regression_exec.dp, _2Regression_compare.dp,
echo. _3Performance_exec.dp, _3Performance_compare.dp, _4Security_gen.dp, _4Security_exec.dp
echo. 3. Example constructed Deployment plan: prefix_MyProject1_MySubject_post_3Performance_exec.dp
echo. :____BusLineBusAreaSubjArea____:
echo. :______________Deployment Plan File Name____________:
echo.
set /P BusLineBusAreaSubjArea=enter BusLineBusAreaSubjArea:
if not defined BusLineBusAreaSubjArea goto INPUT
)
if "%DEBUG%"=="Y" echo.[DEBUG] BusLineBusAreaSubjArea=[%BusLineBusAreaSubjArea%]
IF NOT DEFINED DATA_SOURCE_NAME (
echo.----------------------------------------------------------------------------------------
echo.
echo.Provide the DATA_ [DATA_SOURCE_NAME] for the RegressionModule.xml.
echo.This is published Composite data source to connect to for generating or executing queries.
echo.
set /P DATA_SOURCE_NAME=enter DATA_SOURCE_NAME:
if not defined DATA_SOURCE_NAME goto INPUT
)
if "%DEBUG%"=="Y" echo.[DEBUG] DATA_SOURCE_NAME=[%DATA_SOURCE_NAME%]
IF NOT DEFINED RESOURCE_NAME (
echo.----------------------------------------------------------------------------------------
echo.
echo.Provide the CATALOG.SCHEMA.* [RESOURCE_NAME] for the RegressionModule.xml.
echo.This may be CATALOG.SCHEMA.* or it may just be CATALOG.*. This is the filter based on Business Line and Business Area.
echo.
set /P RESOURCE_NAME=enter RESOURCE_NAME:
if not defined RESOURCE_NAME goto INPUT
)
if "%DEBUG%"=="Y" echo.[DEBUG] RESOURCE_NAME=[%RESOURCE_NAME%]
:INPUT_CONTINUE
if not defined GENERATE_XSL_TRANSFORM set GENERATE_XSL_TRANSFORM=FALSE
if not defined GENERATE_TEMPLATES set GENERATE_TEMPLATES=FALSE
CALL :UCase GENERATE_XSL_TRANSFORM GENERATE_XSL_TRANSFORM
CALL :UCase GENERATE_TEMPLATES GENERATE_TEMPLATES
echo.
echo.###########################
echo.User Parameters
echo.###########################
echo.PROMPT_USER= [%PROMPT_USER%]
echo.GENERATE_XSL_TRANSFORM=[%GENERATE_XSL_TRANSFORM%]
echo.GENERATE_TEMPLATES= [%GENERATE_TEMPLATES%]
echo.BusLineBusAreaSubjArea=[%BusLineBusAreaSubjArea%]
echo.DATA_SOURCE_NAME= [%DATA_SOURCE_NAME%]
echo.RESOURCE_NAME= [%RESOURCE_NAME%]
REM ###############################################
REM # XSL Transformation File Section
REM ###############################################
REM #
if "%GENERATE_XSL_TRANSFORM%"=="TRUE" (
call:XSL_TRANSFORM_TEMPLATE ERROR
if %ERROR% NEQ 0 echo GENERATE XSL TRANSFORM ERROR=%ERROR%. An error occurred creating the XSL Transformation template.
if %ERROR% NEQ 0 goto END
)
REM ###############################################
REM # Create Templates Section
REM ###############################################
REM #
if "%GENERATE_TEMPLATES%"=="TRUE" (
call:CREATE_TEMPLATES ERROR
if %ERROR% NEQ 0 echo GENERATE TEMPLATE ERROR=%ERROR%. An error occurred creating the BusLineBusAreaSubjArea templates.
if %ERROR% NEQ 0 goto END
)
REM ###############################################
REM # End of Script Section
REM ###############################################
REM #
set ERROR=0
:END
ENDLOCAL &SET ERROR=%ERROR%
set PROMPT_USER=
set GENERATE_XSL_TRANSFORM=
set GENERATE_TEMPLATES=
set BusLineBusAreaSubjArea=
set DATA_SOURCE_NAME=
set RESOURCE_NAME=
if %ERROR% NEQ 0 (
echo.
echo.Script failed with error. Address the error and try again.
echo.
)
exit /B %ERROR%
REM ###############################################
REM #
REM # FUNCTIONS
REM #
REM ###############################################
::-----------------------------------------------
:CREATE_TEMPLATES
::-----------------------------------------------
:: Create the BusLineBusAreaSubjArea templates
::
REM ###############################################
REM # Create Documentation Section
REM ###############################################
REM #
echo.
echo.###########################
echo.Copying Documentation
echo.###########################
set DOCUMENTATION=%DOCS_HOME%\documentation_%BusLineBusAreaSubjArea%.txt
echo.Location of documentation: "%DOCUMENTATION%"
if exist "%DOCUMENTATION%" del /F "%DOCUMENTATION%"
echo.
call:CREATE_MIGRATION_DOCUMENTATION
REM ###############################################
REM # Plan File Section
REM ###############################################
REM #
echo.
echo.###########################
echo.Copying PLAN files
echo.###########################
echo.
CALL:COPY_FILE "%TEMPLATES%\BusLineBusAreaSubjArea_1Smoke_gen.dp" "%PLANS_HOME%\%BusLineBusAreaSubjArea%_1Smoke_gen.dp" "Smoke Generate deployment plan" ERROR
if %ERROR%==1 goto END_ERROR
CALL:COPY_FILE "%TEMPLATES%\BusLineBusAreaSubjArea_2Regression_exec.dp" "%PLANS_HOME%\%BusLineBusAreaSubjArea%_2Regression_exec.dp" "Regression Execute deployment plan" ERROR
if %ERROR%==1 goto END_ERROR
CALL:COPY_FILE "%TEMPLATES%\BusLineBusAreaSubjArea_2Regression_compare.dp" "%PLANS_HOME%\%BusLineBusAreaSubjArea%_2Regression_compare.dp" "Regression Compare deployment plan" ERROR
if %ERROR%==1 goto END_ERROR
CALL:COPY_FILE "%TEMPLATES%\BusLineBusAreaSubjArea_3Performance_exec.dp" "%PLANS_HOME%\%BusLineBusAreaSubjArea%_3Performance_exec.dp" "Performance Execute deployment plan" ERROR
if %ERROR%==1 goto END_ERROR
CALL:COPY_FILE "%TEMPLATES%\BusLineBusAreaSubjArea_3Performance_compare.dp" "%PLANS_HOME%\%BusLineBusAreaSubjArea%_3Performance_compare.dp" "Performance Compare deployment plan" ERROR
REM ###############################################
REM # XML Module File Section
REM ###############################################
REM #
echo.
echo.###########################
echo. Copying MODULE file
echo.###########################
echo.
CALL:COPY_FILE "%TEMPLATES%\BusLineBusAreaSubjArea_RegressionModule.xml" "%MODULES_HOME%\%BusLineBusAreaSubjArea%_RegressionModule.xml" "Regression Module XML file" ERROR
if %ERROR%==1 goto END_ERROR
echo.
echo.###########################
echo. Replace Text in MODULE file
echo.###########################
set ERROR=1
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%MODULES_HOME%\%BusLineBusAreaSubjArea%_RegressionModule.xml" "" "BusLineBusAreaSubjArea" "%BusLineBusAreaSubjArea%"
if %ERRORLEVEL%==1 goto END_ERROR
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%MODULES_HOME%\%BusLineBusAreaSubjArea%_RegressionModule.xml" "" "DATA_SOURCE_NAME" "%DATA_SOURCE_NAME%"
if %ERRORLEVEL%==1 goto END_ERROR
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%MODULES_HOME%\%BusLineBusAreaSubjArea%_RegressionModule.xml" "" "CATALOG.SCHEMA.*" "%RESOURCE_NAME%"
if %ERRORLEVEL%==1 goto END_ERROR
REM ###############################################
REM # Instructions Section
REM ###############################################
REM #
echo.
echo.###########################
echo. INSTRUCTIONS:
echo.###########################
echo.Review Regression Module for accuracy:
echo. %MODULES_HOME%\%BusLineBusAreaSubjArea%_RegressionModule.xml
echo 1. Verify "BusLineBusAreaSubjArea" with your project identifier: %BusLineBusAreaSubjArea%
echo This is the same name provided when copying the plan templates
echo 2. Verify "DATA_SOURCE_NAME" with the actual Composite published data source name.
echo 3. Verify "CATALOG.SCHEMA.*" with the actual Composite published catalog and schema if applicable.
echo It could be just CATALOG.* if desired to get all schemas automatically.
echo 4. Save.
echo.
REM # Edit the Regression Module XML if PROMPT_USER=true or TRUE
if "%PROMPT_USER%" == "TRUE" call:EDIT_REGRESSION_MODULE
set ERROR=0
:END_ERROR
set %1=%ERROR%
GOTO:EOF
::-----------------------------------------------
:EDIT_REGRESSION_MODULE
::-----------------------------------------------
:: This function is used to edit the Regression Module XML
rem pause
"%EDITOR%" "%MODULES_HOME%\%BusLineBusAreaSubjArea%_RegressionModule.xml"
GOTO:EOF
::-----------------------------------------------
:COPY_FILE
::-----------------------------------------------
:: Copy source to target
set SOURCE=%1
set TARGET=%2
set MESSAGE=%3
if defined MESSAGE set MESSAGE=!MESSAGE:"=!
REM Perform the copy from source to target
echo.copy /Y %SOURCE% %TARGET%
copy /Y %SOURCE% %TARGET%
set ERROR=%ERRORLEVEL%
if %ERROR% NEQ 0 echo.COPY ERROR: %MESSAGE%
set %4=%ERROR%
GOTO:EOF
::-----------------------------------------------
:CREATE_MIGRATION_DOCUMENTATION
::-----------------------------------------------
:: This function generates the documentation.
echo.=========================================================================>>"%DOCUMENTATION%"
echo.Migration Test Plan Documentation for %BusLineBusAreaSubjArea%>>"%DOCUMENTATION%"
echo.=========================================================================>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.######################################################################>>"%DOCUMENTATION%"
echo.# (c) 2017 TIBCO Software Inc. All rights reserved.>>"%DOCUMENTATION%"
echo.# >>"%DOCUMENTATION%"
echo.# Except as specified below, this software is licensed pursuant to the Eclipse Public License v. 1.0.>>"%DOCUMENTATION%"
echo.# The details can be found in the file LICENSE.>>"%DOCUMENTATION%"
echo.# >>"%DOCUMENTATION%"
echo.# The following proprietary files are included as a convenience, and may not be used except pursuant>>"%DOCUMENTATION%"
echo.# to valid license to Composite Information Server or TIBCO® Data Virtualization Server:>>"%DOCUMENTATION%"
echo.# csadmin-XXXX.jar, csarchive-XXXX.jar, csbase-XXXX.jar, csclient-XXXX.jar, cscommon-XXXX.jar,>>"%DOCUMENTATION%"
echo.# csext-XXXX.jar, csjdbc-XXXX.jar, csserverutil-XXXX.jar, csserver-XXXX.jar, cswebapi-XXXX.jar,>>"%DOCUMENTATION%"
echo.# and customproc-XXXX.jar (where -XXXX is an optional version number). Any included third party files>>"%DOCUMENTATION%"
echo.# are licensed under the terms contained in their own accompanying LICENSE files, generally named .LICENSE.txt.>>"%DOCUMENTATION%"
echo.# >>"%DOCUMENTATION%"
echo.# This software is licensed AS-IS. Support for this software is not covered by standard maintenance agreements with TIBCO.>>"%DOCUMENTATION%"
echo.# If you would like to obtain assistance with this software, such assistance may be obtained through a separate paid consulting>>"%DOCUMENTATION%"
echo.# agreement with TIBCO.>>"%DOCUMENTATION%"
echo.# >>"%DOCUMENTATION%"
echo.######################################################################>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.------------------------------------------------------------------------------------>>"%DOCUMENTATION%"
echo.PURPOSE:>>"%DOCUMENTATION%"
echo.The purpose of these scripts are to perform "MIGRATION" testing when migrating from CIS 7.0 to CIS 8.0.>>"%DOCUMENTATION%"
echo.The "Migration Automated Test Framework" uses PDTool Regression Module to execute the scripts.>>"%DOCUMENTATION%"
echo.Migration testing assumes that both CIS 7.0 and CIS 8.0 instances are available across all of the environments that require testing.>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.The following steps are repeated for each Business Line, Business Area, Subject Area>>"%DOCUMENTATION%"
echo.------------------------------------------------------------------------------------>>"%DOCUMENTATION%"
echo.1. Prepare the test scripts>>"%DOCUMENTATION%"
echo. a. Execute the script copyPlanTemplates.bat by double clicking on it.>>"%DOCUMENTATION%"
echo. It will prompt for the "BusLineBusAreaSubjArea" project identifier.>>"%DOCUMENTATION%"
echo. It will prompt for the "DATA_SOURCE_NAME" used to connect to generate or execute queries.>>"%DOCUMENTATION%"
echo. It will prompt for the "RESOURCE_NAME" used as a filter for CATALOG.SCHEMA.*.>>"%DOCUMENTATION%"
echo. It will prompt you to edit/verify the Regression Module XML file.>>"%DOCUMENTATION%"
echo. It will copy the following files.>>"%DOCUMENTATION%"
echo." \migration\templates\BusLineBusAreaSubjArea_1Smoke_gen.dp --> \migration\plans\%BusLineBusAreaSubjArea%_1Smoke_gen.dp">>"%DOCUMENTATION%"
echo." \migration\templates\BusLineBusAreaSubjArea_2Regression_exec.dp --> \migration\plans\%BusLineBusAreaSubjArea%_2Regression_exec.dp">>"%DOCUMENTATION%"
echo." \migration\templates\BusLineBusAreaSubjArea_2Regression_compare.dp --> \migration\plans\%BusLineBusAreaSubjArea%_2Regression_compare.dp">>"%DOCUMENTATION%"
echo." \migration\templates\BusLineBusAreaSubjArea_3Performance_exec.dp --> \migration\plans\%BusLineBusAreaSubjArea%_3Performance_exec.dp">>"%DOCUMENTATION%"
echo." \migration\templates\BusLineBusAreaSubjArea_3Performance_compare.dp --> \migration\plans\%BusLineBusAreaSubjArea%_3Performance_compare.dp">>"%DOCUMENTATION%"
echo." \migration\templates\BusLineBusAreaSubjArea_RegressionModule.xml --> \migration\modules\%BusLineBusAreaSubjArea%_RegressionModule.xml">>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.------------------------------------------------------------------------------------>>"%DOCUMENTATION%"
echo.Replacements performed:>>"%DOCUMENTATION%"
echo.------------------------------------------------------------------------------------>>"%DOCUMENTATION%"
echo. BusLineBusAreaSubjArea=%BusLineBusAreaSubjArea%>>"%DOCUMENTATION%"
echo. DATA_SOURCE_NAME=%DATA_SOURCE_NAME%>>"%DOCUMENTATION%"
echo. RESOURCE_NAME=%RESOURCE_NAME%>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.2. Open command line window for script execution>>"%DOCUMENTATION%"
echo. cd %ATF_HOME%>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo. Script Parameters General Information>>"%DOCUMENTATION%"
echo. ------------------------------------->>"%DOCUMENTATION%"
echo. script_test_62.bat and script_test_70.bat parameter definitions:>>"%DOCUMENTATION%"
echo. ENV - Example: [DEV,UAT,PROD]>>"%DOCUMENTATION%"
echo. DEPLOYMENT_PLAN - The name of the deployment plan such as:>>"%DOCUMENTATION%"
echo. 1. BusLineBusArea_1Smoke_gen.dp>>"%DOCUMENTATION%"
echo. 2. BusLineBusArea_2Regression_exec.dp>>"%DOCUMENTATION%"
echo. 3. BusLineBusArea_2Regression_compare.dp>>"%DOCUMENTATION%"
echo. 4. BusLineBusArea_3Performance_exec.dp>>"%DOCUMENTATION%"
echo. 5. BusLineBusArea_3Performance_compare.dp>>"%DOCUMENTATION%"
echo. >>"%DOCUMENTATION%"
echo. CUSTOM - [optional] variable>>"%DOCUMENTATION%"
echo. 1. blank or "" - generate or execute using SQL SELECT COUNT(1) cnt or SELECT COUNT(*) cnt.>>"%DOCUMENTATION%"
echo. 2. TOP - If the word TOP is provided then generate or execute using the SELECT TOP 1 * command. Top is a special type of CUSTOM.>>"%DOCUMENTATION%"
echo. 3. CUSTOM value - If any other word is used then execute the SQL file using this pattern and the value of the CUSTOM variable:>>"%DOCUMENTATION%"
echo. Example: Developer creates a custom SQL file where the custom name = MyQueries>>"%DOCUMENTATION%"
echo. Template: Example:>>"%DOCUMENTATION%"
echo. \sql\BusLineBusArea_RegressionTest_SQL_%%CUSTOM%%.txt = \sql\BusLineBusArea_RegressionTest_SQL_MyQueries.txt>>"%DOCUMENTATION%"
echo. \sql\BusLineBusArea_PerfTest_SQL_%%CUSTOM%%.txt = \sql\BusLineBusArea_PerfTest_SQL_MyQueries.txt>>"%DOCUMENTATION%"
echo. >>"%DOCUMENTATION%"
echo. RENAME_REL - [optional] variable. Default=true>>"%DOCUMENTATION%"
echo. 1. blank or "" or true - force a rename of the release output folders upon each execution of this script.>>"%DOCUMENTATION%"
echo. 2. false - disable the rename function and allow the results to go to the existing RELEASE_FOLDER1 directory.>>"%DOCUMENTATION%"
echo. Example. This can be useful when executing a series of tests for the same release such as the following:>>"%DOCUMENTATION%"
echo. Smoke Test, Regression Test, Performance Test and Security Test.>>"%DOCUMENTATION%"
echo. Note: This script will automatically ignore renaming the output folder for the following and thus the RENAME_REL does not have to be set.>>"%DOCUMENTATION%"
echo. Generating Smoke Test, Compare Regression Test, Compare Performance Test and Generate Security Test.>>"%DOCUMENTATION%"
echo. >>"%DOCUMENTATION%"
echo. PAUSE - [optional] variable. Default=true >>"%DOCUMENTATION%"
echo. 1. blank or "" or true - pause during script execution.>>"%DOCUMENTATION%"
echo. 2. false - no pause during script execution.>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.3. Test 1: Generate Smoke Test SQL for ENV>>"%DOCUMENTATION%"
echo. a. Generate Smoke Test for SELECT COUNT(*)>>"%DOCUMENTATION%"
echo. script_test_62.bat ENV %BusLineBusAreaSubjArea%_1Smoke_gen.dp "" "" [PAUSE]>>"%DOCUMENTATION%"
echo. script_test_70.bat ENV %BusLineBusAreaSubjArea%_1Smoke_gen.dp "" "" [PAUSE]>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo. If desired...>>"%DOCUMENTATION%"
echo. Copy queries from %BusLineBusAreaSubjArea%_SmokeTest_SQL.txt into %BusLineBusAreaSubjArea%_RegressionTest_SQL.txt>>"%DOCUMENTATION%"
echo. Copy queries from %BusLineBusAreaSubjArea%_SmokeTest_SQL.txt into %BusLineBusAreaSubjArea%_PerfTest_SQL.txt>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo. b. Generate Smoke Test for SELECT TOP 1 *>>"%DOCUMENTATION%"
echo. script_test_62.bat ENV %BusLineBusAreaSubjArea%_1Smoke_gen.dp TOP "" [PAUSE]>>"%DOCUMENTATION%"
echo. script_test_70.bat ENV %BusLineBusAreaSubjArea%_1Smoke_gen.dp TOP "" [PAUSE]>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo. If desired...>>"%DOCUMENTATION%"
echo. Copy queries from %BusLineBusAreaSubjArea%_SmokeTest_SQL_TOP.txt into %BusLineBusAreaSubjArea%_RegressionTest_SQL_TOP.txt>>"%DOCUMENTATION%"
echo. Copy queries from %BusLineBusAreaSubjArea%_SmokeTest_SQL_TOP.txt into %BusLineBusAreaSubjArea%_PerfTest_SQL_TOP.txt>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.4. Test 2: Execute Regression Test for ENV>>"%DOCUMENTATION%"
echo. 7.0: script_test_62.bat ENV %BusLineBusAreaSubjArea%_2Regression_exec.dp [CUSTOM] [RENAME_REL] [PAUSE]>>"%DOCUMENTATION%"
echo. 8.0: script_test_70.bat ENV %BusLineBusAreaSubjArea%_2Regression_exec.dp [CUSTOM] [RENAME_REL] [PAUSE]>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.5. Test 2: Execute Regression Test Compare for ENV - Compare 7.0 and 8.0 files and logs for difference>>"%DOCUMENTATION%"
echo. 8.0: script_test_70.bat ENV %BusLineBusAreaSubjArea%_2Regression_compare.dp [CUSTOM] "" [PAUSE]>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.6. Test 3: Execute Performance Test for ENV>>"%DOCUMENTATION%"
echo. 7.0: script_test_62.bat ENV %BusLineBusAreaSubjArea%_3Performance_exec.dp [CUSTOM] [RENAME_REL] [PAUSE]>>"%DOCUMENTATION%"
echo. 8.0: script_test_70.bat ENV %BusLineBusAreaSubjArea%_3Performance_exec.dp [CUSTOM] [RENAME_REL] [PAUSE]>>"%DOCUMENTATION%"
echo.>>"%DOCUMENTATION%"
echo.7. Test 3: Execute Performance Test Compare for ENV - Compare 7.0 and 8.0 logs for difference>>"%DOCUMENTATION%"
echo. 8.0: script_test_70.bat ENV %BusLineBusAreaSubjArea%_3Performance_compare.dp [CUSTOM] "" [PAUSE]>>"%DOCUMENTATION%"
GOTO:EOF
REM ###############################################
REM # XSL Transformation File Function
REM ###############################################
REM #
::-----------------------------------------------
:XSL_TRANSFORM_TEMPLATE
::-----------------------------------------------
:: Copy the XSL Transform file and modify the various paths based on the variables set in setVars.bat
::
echo.###########################
echo. Copying XSL Transform file
echo.###########################
echo.
CALL:COPY_FILE "%TEMPLATES%\ServerAttributes_Transform_62_to_70.xsl" "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "Server Attribute XSL Transform file" ERROR
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
echo.
echo.####################################
echo. Replace Text in XSL Transform file
echo.####################################
REM # Removed double quotes
if defined CIS_PATH_PREV_VERSION_1 set CIS_PATH_PREV_VERSION_1=!CIS_PATH_PREV_VERSION_1:"=!
if defined CIS_PATH_NEW_VERSION_1 set CIS_PATH_NEW_VERSION_1=!CIS_PATH_NEW_VERSION_1:"=!
if defined CIS_PATH_PREV_VERSION_2 set CIS_PATH_PREV_VERSION_2=!CIS_PATH_PREV_VERSION_2:"=!
if defined CIS_PATH_NEW_VERSION_2 set CIS_PATH_NEW_VERSION_2=!CIS_PATH_NEW_VERSION_2:"=!
if defined CIS_PATH_PREV_VERSION_3 set CIS_PATH_PREV_VERSION_3=!CIS_PATH_PREV_VERSION_3:"=!
if defined CIS_PATH_NEW_VERSION_3 set CIS_PATH_NEW_VERSION_3=!CIS_PATH_NEW_VERSION_3:"=!
if defined CIS_PATH_PREV_VERSION_4 set CIS_PATH_PREV_VERSION_4=!CIS_PATH_PREV_VERSION_4:"=!
if defined CIS_PATH_NEW_VERSION_4 set CIS_PATH_NEW_VERSION_4=!CIS_PATH_NEW_VERSION_4:"=!
if defined CIS_PATH_PREV_VERSION_5 set CIS_PATH_PREV_VERSION_5=!CIS_PATH_PREV_VERSION_5:"=!
if defined CIS_PATH_NEW_VERSION_5 set CIS_PATH_NEW_VERSION_5=!CIS_PATH_NEW_VERSION_5:"=!
REM # Check for CIS Path Versions not defined or blank and set to a default value
if not defined CIS_PATH_PREV_VERSION_1 set CIS_PATH_PREV_VERSION_1=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_NEW_VERSION_1 set CIS_PATH_NEW_VERSION_1=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_PREV_VERSION_1%"=="" set CIS_PATH_PREV_VERSION_1=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_NEW_VERSION_1%"=="" set CIS_PATH_NEW_VERSION_1=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_PREV_VERSION_2 set CIS_PATH_PREV_VERSION_2=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_NEW_VERSION_2 set CIS_PATH_NEW_VERSION_2=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_PREV_VERSION_2%"=="" set CIS_PATH_PREV_VERSION_2=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_NEW_VERSION_2%"=="" set CIS_PATH_NEW_VERSION_2=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_PREV_VERSION_3 set CIS_PATH_PREV_VERSION_3=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_NEW_VERSION_3 set CIS_PATH_NEW_VERSION_3=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_PREV_VERSION_3%"=="" set CIS_PATH_PREV_VERSION_3=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_NEW_VERSION_3%"=="" set CIS_PATH_NEW_VERSION_3=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_PREV_VERSION_4 set CIS_PATH_PREV_VERSION_4=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_NEW_VERSION_4 set CIS_PATH_NEW_VERSION_4=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_PREV_VERSION_4%"=="" set CIS_PATH_PREV_VERSION_4=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_NEW_VERSION_4%"=="" set CIS_PATH_NEW_VERSION_4=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_PREV_VERSION_5 set CIS_PATH_PREV_VERSION_5=_NO_TRANSFORM_OPERATION_
if not defined CIS_PATH_NEW_VERSION_5 set CIS_PATH_NEW_VERSION_5=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_PREV_VERSION_5%"=="" set CIS_PATH_PREV_VERSION_5=_NO_TRANSFORM_OPERATION_
if "%CIS_PATH_NEW_VERSION_5%"=="" set CIS_PATH_NEW_VERSION_5=_NO_TRANSFORM_OPERATION_
REM # The CIS_PREV_VERSION and CIS_NEW_VERSION represent the portion of the various CIS paths within the Server Attribute XML file.
REM # If CIS previous and new install are installed on the same base path then it will only be necessary to change the version as
REM # shown below. However, if they are installed on different paths, then the full base path should be provided for both variables.
REM #
REM # <!-- CIS Path Version 1 -->
REM # <xsl:variable name="CIS_PATH_PREV_VERSION_1" select="'REPLACE_CIS_PATH_PREV_VERSION_1'"/>
REM # <xsl:variable name="CIS_PATH_NEW_VERSION_1" select="'REPLACE_CIS_PATH_NEW_VERSION_1'"/>
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_PREV_VERSION_1" "%CIS_PATH_PREV_VERSION_1%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_NEW_VERSION_1" "%CIS_PATH_NEW_VERSION_1%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
REM #
REM # <!-- CIS Path Version 2 -->
REM # <xsl:variable name="CIS_PATH_PREV_VERSION_2" select="'REPLACE_CIS_PATH_PREV_VERSION_2'"/>
REM # <xsl:variable name="CIS_PATH_NEW_VERSION_2" select="'REPLACE_CIS_PATH_NEW_VERSION_2'"/>
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_PREV_VERSION_2" "%CIS_PATH_PREV_VERSION_2%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_NEW_VERSION_2" "%CIS_PATH_NEW_VERSION_2%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
REM #
REM # <!-- CIS Path Version 3 -->
REM # <xsl:variable name="CIS_PATH_PREV_VERSION_3" select="'REPLACE_CIS_PATH_PREV_VERSION_3'"/>
REM # <xsl:variable name="CIS_PATH_NEW_VERSION_3" select="'REPLACE_CIS_PATH_NEW_VERSION_3'"/>
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_PREV_VERSION_3" "%CIS_PATH_PREV_VERSION_3%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_NEW_VERSION_3" "%CIS_PATH_NEW_VERSION_3%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
REM #
REM # <!-- CIS Path Version 4 -->
REM # <xsl:variable name="CIS_PATH_PREV_VERSION_4" select="'REPLACE_CIS_PATH_PREV_VERSION_4'"/>
REM # <xsl:variable name="CIS_PATH_NEW_VERSION_4" select="'REPLACE_CIS_PATH_NEW_VERSION_4'"/>
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_PREV_VERSION_4" "%CIS_PATH_PREV_VERSION_4%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_NEW_VERSION_4" "%CIS_PATH_NEW_VERSION_4%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
REM #
REM # <!-- CIS Path Version 5 -->
REM # <xsl:variable name="CIS_PATH_PREV_VERSION_5" select="'REPLACE_CIS_PATH_PREV_VERSION_5'"/>
REM # <xsl:variable name="CIS_PATH_NEW_VERSION_5" select="'REPLACE_CIS_PATH_NEW_VERSION_5'"/>
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_PREV_VERSION_5" "%CIS_PATH_PREV_VERSION_5%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
call "%REPLACE_HOME%\ReplaceText.bat" "%REPLACE_HOME%" replaceAllText "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%" "" "REPLACE_CIS_PATH_NEW_VERSION_5" "%CIS_PATH_NEW_VERSION_5%"
if %ERRORLEVEL%==1 goto XSLT_ERROR_1
REM # Edit the Regression Module XML if PROMPT_USER=true or TRUE
if "%PROMPT_USER%" == "true" "%EDITOR%" "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%"
if "%PROMPT_USER%" == "TRUE" "%EDITOR%" "%XSLT_HOME%\%XSL_TRANSFORM_SCRIPT%"
set ERROR=0
goto XSLT_END
:XSLT_ERROR_1
set ERROR=1
:XSLT_END
set %1=%ERROR%
GOTO:EOF
::=====================================================================
:LCase
:UCase
::=====================================================================
:: Converts to upper/lower case variable contents
:: Syntax: CALL :UCase _VAR1 _VAR2
:: Syntax: CALL :LCase _VAR1 _VAR2
:: _VAR1 = Variable NAME whose VALUE is to be converted to upper/lower case
:: _VAR2 = NAME of variable to hold the converted value
:: Note: Use variable NAMES in the CALL, not values (pass "by reference")
SET _UCase=A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
SET _LCase=a b c d e f g h i j k l m n o p q r s t u v w x y z
SET _Lib_UCase_Tmp=!%1!
IF /I "%0"==":UCase" SET _Abet=%_UCase%
IF /I "%0"==":LCase" SET _Abet=%_LCase%
FOR %%Z IN (%_Abet%) DO SET _Lib_UCase_Tmp=!_Lib_UCase_Tmp:%%Z=%%Z!
SET %2=%_Lib_UCase_Tmp%
GOTO:EOF
| cisco/PDTool | AutomatedTestFramework/migration/bin/copyPlanTemplates.bat | bat | bsd-3-clause | 39,118 |
@ECHO off
dir %1
| Recdeclec-Public/batchgames | The Hallows/chapters/1/Program Files/ls.bat | bat | mit | 21 |
call gradlew.bat :nodebb-integration-common:build
call gradlew.bat :nodebb-integration-bukkit:build
call gradlew.bat :nodebb-integration-sponge:build
call gradlew.bat :nodebb-integration-forge:build
call gradlew.bat :nodebb-integration-common:shadowJar
call gradlew.bat :nodebb-integration-bukkit:shadowJar
call gradlew.bat :nodebb-integration-sponge:shadowJar
call gradlew.bat :nodebb-integration-forge:shadowJar
call gradlew.bat :nodebb-integration-universal:shadowJar
PAUSE 5 | yariplus/minecraft-nodebb-integration | package.bat | bat | cc0-1.0 | 487 |
cmd_net/bluetooth/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o net/bluetooth/built-in.o net/bluetooth/bluetooth.o net/bluetooth/hidp/built-in.o
| friedrich420/Note-3-AEL-Kernel | net/bluetooth/.built-in.o.cmd | bat | gpl-2.0 | 193 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\deployer.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\deployer.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| martinarroyo/deployer | doc/make.bat | bat | mpl-2.0 | 7,257 |
@echo off
REM make.bat, 2014/06/25
REM Copyright (C) 2014 Luiz E. M. Lima ([email protected])
REM
REM This make.bat provide commands to make compiling LaTeX files.
REM Set local variables
setlocal EnableDelayedExpansion
REM Source
set src=Modelo_Dissertacao.tex
if "%src%" == "" (set /p src="Enter source filename with 3-digits extension: ")
REM Base name
set base_name=%src:~0,-4%
REM Title
title %base_name%
REM Commands
set program_latex=latex
set program_pdflatex=pdflatex
set program_dvips=dvips
set program_ps2pdf=ps2pdf
set program_bibtex=bibtex
set program_makeindex=makeindex
REM Options
set config_latex=--interaction=errorstopmode
set config_dvips=-P pdf
REM Create dvi file
set "dvi_cmd=%program_latex% %config_latex% %base_name%.tex & #"^
"%program_bibtex% %base_name%& #"^
"@echo %program_makeindex% -s estilo-glossario.ist -t %base_name%.glg -o %base_name%.gls %base_name%.glo & #"^
"@echo %program_makeindex% -s estilo-indice.ist -t %base_name%.ilg -o %base_name%.ind %base_name%.idx & #"^
"@echo %program_makeindex% -s tabela-abreviaturas.ist -t %base_name%.abrel -o %base_name%.abrevia %base_name%.abreviax & #"^
"@echo %program_makeindex% -s tabela-abreviaturas.ist -t %base_name%.acrl -o %base_name%.acron %base_name%.acronx & #"^
"@echo %program_makeindex% %base_name%.nlo -s nomencl.ist -o %base_name%.nls & #"^
"%program_latex% %config_latex% %base_name%.tex & #"^
"%program_latex% %config_latex% %base_name%.tex"
set "dvi_cmd=!dvi_cmd:#" "=!"
if %1 == dvi (%dvi_cmd%)
REM Create ps file
set "ps_cmd=%dvi_cmd% & #"^
"%program_dvips% %config_dvips% %base_name%.dvi -o %base_name%.ps"
set "ps_cmd=!ps_cmd:#" "=!"
if %1 == ps (%ps_cmd%)
REM Create pdf file using latex
set "pdf1_cmd=%ps_cmd% & #"^
"%program_ps2pdf% %base_name%.ps %base_name%.pdf"
set "pdf1_cmd=!pdf1_cmd:#" "=!"
if %1 == pdf1 (%pdf1_cmd%)
REM Create pdf file using pdflatex
set "pdf2_cmd= %program_pdflatex% %base_name%.tex & #"^
"%program_bibtex% %base_name% & #"^
"%program_makeindex% -s estilo-glossario.ist -t %base_name%.glg -o %base_name%.gls %base_name%.glo & #"^
"%program_makeindex% -s estilo-indice.ist -t %base_name%.ilg -o %base_name%.ind %base_name%.idx & #"^
"%program_makeindex% -s tabela-abreviaturas.ist -t %base_name%.abrel -o %base_name%.abrevia %base_name%.abreviax & #"^
"%program_makeindex% -s tabela-abreviaturas.ist -t %base_name%.acrl -o %base_name%.acron %base_name%.acronx & #"^
"%program_makeindex% %base_name%.nlo -s utfpr-siglas.ist -o %base_name%.nls & #"^
"%program_pdflatex% %base_name%.tex & #"^
"%program_pdflatex% %base_name%.tex"
set "pdf2_cmd=!pdf2_cmd:#" "=!"
if %1 == pdf2 (%pdf2_cmd%)
REM Remove intermediate files
set inter_files=*.aux *.log *.bbl *.blg *.brf *.mw *.out^
*.abr *.abrevia *.abreviax *.glo *.gls *.idx *.ilg *.ind *.ist *.nlo *.nls^
*.flt *.flx *.ftg *.glg *.grf *.loa *.lof *.loh *.lop *.lot *.tdo *.toc^
*.los *.qdr *.bak *.tmp *.acn *.acrl *.acron *.acronx
set "clean_cmd=del /s %inter_files% & del /s %base_name%.dvi %base_name%*.ps"
if %1 == clean (%clean_cmd%)
REM Create pdf file using latex and remove intermediate files
if %1 == all1 (%pdf1_cmd% & %clean_cmd%)
REM Create pdf file using pdflatex and remove intermediate files
if %1 == all2 (%pdf2_cmd% & %clean_cmd%)
REM Show help
if %1 == help (
@echo ##############################################################################
@echo # Commands to make compiling LaTeX source files
@echo ##############################################################################
@echo # make dvi: create dvi, convert tex-dvi.
@echo # make ps: create ps, convert tex-dvi-ps.
@echo # make pdf1: create pdf using latex, convert tex-dvi-ps-pdf.
@echo # make pdf2: create pdf using pdflatex, convert tex-pdf.
@echo # make clean: remove intermediate.
@echo # make all1: create pdf using latex and remove intermediate.
@echo # make all2: create pdf using pdflatex and remove intermediate.
@echo # make help: show help.
@echo ##############################################################################
)
REM Unset local variables
REM endlocal
| utfpr-cp/utfpr-modelo-latex | utfpr-modelo-latex-dissertacao/make.bat | bat | apache-2.0 | 4,225 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\password-hash\bin\nodepw" %*
) ELSE (
node "%~dp0\..\password-hash\bin\nodepw" %*
) | eriknygren/let-me-explain-it | server/node_modules/.bin/nodepw.cmd | bat | mit | 145 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\CrowData.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\CrowData.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| the-engine-room/replication-sprint-02 | docs/make.bat | bat | mit | 6,714 |
/******************************************************************************
*
* hibernate_ccs.cmd - CCS linker configuration file for hibernate.
*
* Copyright (c) 2011-2017 Texas Instruments Incorporated. All rights reserved.
* Software License Agreement
*
* Texas Instruments (TI) is supplying this software for use solely and
* exclusively on TI's microcontroller products. The software is owned by
* TI and/or its suppliers, and is protected under applicable copyright
* laws. You may not combine this software with "viral" open-source
* software in order to form a larger program.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
* NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
* NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
* CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
* DAMAGES, FOR ANY REASON WHATSOEVER.
*
* This is part of revision 2.1.4.178 of the DK-TM4C123G Firmware Package.
*
*****************************************************************************/
--retain=g_pfnVectors
/* The following command line options are set as part of the CCS project. */
/* If you are building using the command line, or for some reason want to */
/* define them here, you can uncomment and modify these lines as needed. */
/* If you are using CCS for building, it is probably better to make any such */
/* modifications in your CCS project and leave this file alone. */
/* */
/* --heap_size=0 */
/* --stack_size=256 */
/* --library=rtsv7M3_T_le_eabi.lib */
/* The starting address of the application. Normally the interrupt vectors */
/* must be located at the beginning of the application. */
#define APP_BASE 0x00000000
#define RAM_BASE 0x20000000
/* System memory map */
MEMORY
{
/* Application stored in and executes from internal flash */
FLASH (RX) : origin = APP_BASE, length = 0x00040000
/* Application uses internal RAM for data */
SRAM (RWX) : origin = 0x20000000, length = 0x00008000
}
/* Section allocation in memory */
SECTIONS
{
.intvecs: > APP_BASE
.text : > FLASH
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.vtable : > RAM_BASE
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}
__STACK_TOP = __stack + 512;
| cergatgmu/xbs_xbd | platforms/ek-tm4c129exl_16mhz/hal/tivaware/examples/boards/dk-tm4c123g/hibernate/hibernate_ccs.cmd | bat | gpl-3.0 | 2,797 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-W -d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyChapel.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyChapel.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| chapel-lang/pychapel | docs/make.bat | bat | apache-2.0 | 6,717 |
@ECHO Off
SETLOCAL ENABLEDELAYEDEXPANSION
SET UTC=YYYYMMDDHHmmss
REM Get the UTC date-time string to use
CALL :GetFormattedCurrentUTCDate UTC
ECHO "Formatted UTC Date time : %UTC%"
SET "output=%UTC%_world.sql"
ECHO DROP PROCEDURE IF EXISTS add_migration;>> migrations/%output%
ECHO delimiter ??>> migrations/%output%
ECHO CREATE PROCEDURE `add_migration`()>> migrations/%output%
ECHO BEGIN>> migrations/%output%
ECHO DECLARE v INT DEFAULT 1;>> migrations/%output%
ECHO SET v = (SELECT COUNT(*) FROM `migrations` WHERE `id`='%UTC%');>> migrations/%output%
ECHO IF v=0 THEN>> migrations/%output%
ECHO INSERT INTO `migrations` VALUES ('%UTC%');>> migrations/%output%
ECHO -- Add your query below.>> migrations/%output%
ECHO.>> migrations/%output%
ECHO.>> migrations/%output%
ECHO.>> migrations/%output%
ECHO -- End of migration.>> migrations/%output%
ECHO END IF;>> migrations/%output%
ECHO END??>> migrations/%output%
ECHO delimiter ; >> migrations/%output%
ECHO CALL add_migration();>> migrations/%output%
ECHO DROP PROCEDURE IF EXISTS add_migration;>> migrations/%output%
REM End of the script Body
:EndOfScriptBody
ECHO "Exiting ..."
GOTO EndOfScript
REM Sub routine to get the current UTC date as formatted string YYYYMMDD_HHmmss
:GetFormattedCurrentUTCDate outString
FOR /F "tokens=* DELIMS=^=" %%a IN ('WMIC Path Win32_UTCTime Get Year^,Month^,Day^,Hour^,Minute^,Second /Value') DO (
SET LINE=%%a
FOR /f "tokens=1-2 delims=^=" %%i IN ("!LINE!") DO (
IF "%%i" == "Year" ( SET year=%%j)
IF "%%i" == "Month" ( SET month=%%j)
IF "%%i" == "Day" ( SET day=%%j)
IF "%%i" == "Hour" ( SET hour=%%j)
IF "%%i" == "Minute" ( SET minute=%%j)
IF "%%i" == "Second" ( SET second=%%j)
)
)
REM Prepend Zero to the number if less than Ten
IF %month% LSS 10 SET month=0%month%
IF %day% LSS 10 SET day=0%day%
IF %hour% LSS 10 SET hour=0%hour%
IF %minute% LSS 10 SET minute=0%minute%
IF %second% LSS 10 SET second=0%second%
SET %1=%year%%month%%day%%hour%%minute%%second%
REM END of :GetFormattedCurrentUTCDate
GOTO EndOfScript
:EndOfScript | Dahkelor/theorycraft | sql/make_migration.bat | bat | gpl-2.0 | 2,065 |
@echo off
pushd %~dp0
IF EXIST packages\FAKE\tools\Fake.exe GOTO FAKEINSTALLED
"..\lib\nuget\NuGet.exe" "install" "FAKE" "-OutputDirectory" "packages" "-ExcludeVersion" "-Prerelease"
:FAKEINSTALLED
SET TARGET="All"
IF NOT [%1]==[] (set TARGET="%1")
"packages\FAKE\tools\Fake.exe" "build.fsx" "target=%TARGET%"
popd
| Ming-Tang/fsharpbinding | vim/install.cmd | bat | apache-2.0 | 324 |
::!/bin/csh -f
::*****************************************************************************
:: (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
::
:: This file contains confidential and proprietary information
:: of Xilinx, Inc. and is protected under U.S. and
:: international copyright and other intellectual property
:: laws.
::
:: DISCLAIMER
:: This disclaimer is not a license and does not grant any
:: rights to the materials distributed herewith. Except as
:: otherwise provided in a valid license issued to you by
:: Xilinx, and to the maximum extent permitted by applicable
:: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
:: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
:: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
:: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
:: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
:: (2) Xilinx shall not be liable (whether in contract or tort,
:: including negligence, or under any other theory of
:: liability) for any loss or damage of any kind or nature
:: related to, arising under or in connection with these
:: materials, including for any direct, or any indirect,
:: special, incidental, or consequential loss or damage
:: (including loss of data, profits, goodwill, or any type of
:: loss or damage suffered as a result of any action brought
:: by a third party) even if such damage or loss was
:: reasonably foreseeable or Xilinx had been advised of the
:: possibility of the same.
::
:: CRITICAL APPLICATIONS
:: Xilinx products are not designed or intended to be fail-
:: safe, or for use in any application requiring fail-safe
:: performance, such as life-support or safety devices or
:: systems, Class III medical devices, nuclear facilities,
:: applications related to the deployment of airbags, or any
:: other applications that could lead to death, personal
:: injury, or severe property or environmental damage
:: (individually and collectively, "Critical
:: Applications"). Customer assumes the sole risk and
:: liability of any use of Xilinx products in Critical
:: Applications, subject only to applicable laws and
:: regulations governing limitations on product liability.
::
:: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
:: PART OF THIS FILE AT ALL TIMES.
::
:: ****************************************************************************
:: ____ ____
:: / /\/ /
:: /___/ \ / Vendor : Xilinx
:: \ \ \/ Version : 1.9
:: \ \ Application : MIG
:: / / Filename : creat_ise.bat
:: /___/ /\ Date Last Modified : $Date: 2011/06/02 08:31:12 $
:: \ \ / \ Date Created : Tue Sept 21 2010
:: \___\/\___\
::
:: Device : 7 Series
:: Design Name : DDR3 SDRAM
:: Purpose : Batch file to run PAR through ISE
:: Reference :
:: Revision History :
:: ****************************************************************************
call rem_files.bat
xtclsh set_ise_prop.tcl
| monotone-RK/FACE | MCSoC-15/8-way_8-parallel/ise/ipcore_dir/dram/example_design/par/create_ise.bat | bat | mit | 3,066 |
mkdir vc2010
cd vc2010
cmake -G "Visual Studio 10" ../src
PAUSE | abreheret/polygon-intersection | make_vc2010.bat | bat | mit | 63 |
curl -v -uatteq:bozemoj -H"Content-Type: application/json" -X POST -d@cache_output_task.txt http://localhost:5000/task/test/cache_output_task
| AtteqCom/zsl | test_data/cache_output_task.cmd | bat | mit | 143 |
::===============kodmunki™ build process==============
:: This build process is dependent upon yuicompressor
:: and a specific directory structure:
::
:: root
:: _build (This build script and the yuicompressor)
:: bin (The compiled scripts will appear here)
:: src (All script files go here)
::
:: The following variables found in setup () are
:: expected to be changed by the developer running
:: this process:
::
:: PROJNAME (The name of your project)
:: STARTMSG (A message to echo at start of build)
:: ENDMSG (A message to echo at end of build)
::====================================================
@echo off
CALL :setup
CALL :openlink
CALL :link
CALL :closelink
CALL :compile
CALL :teardown
GOTO :eof
:setup
SET PROJNAME=example
SET STARTMSG=Building %PROJNAME%
SET ENDMSG=%PROJNAME% Complete :{)}
SET BIN=..\bin
SET SRC=..\src
SET COMPRESSOR=yuicompressor-2.4.6\build\yuicompressor-2.4.6.jar
SET LNKGFILE=%BIN%\%PROJNAME%-link.js
SET COMPFILE=%BIN%\%PROJNAME%-comp.js
SET JSFILE=%BIN%\%PROJNAME%-uncompressed.js
SET MINFILE=%BIN%\%PROJNAME%.js
@echo %STARTMSG%
GOTO :eof
:openlink
echo (function(l){>> %LNKGFILE%
GOTO :eof
:link
@echo Linking
FOR /R %SRC% %%D IN (*.js) DO CALL :linkfile %%D
GOTO :eof
:closelink
echo })();>> %LNKGFILE%
GOTO :eof
:linkfile
type %1 >> %LNKGFILE%
echo. >> %LNKGFILE%
GOTO :eof
:compile
@echo Compiling
echo.> %COMPFILE%
java -jar %COMPRESSOR% %LNKGFILE% -o %COMPFILE%
IF EXIST %MINFILE% del %MINFILE%
type %COMPFILE%>> %MINFILE%
IF EXIST %JSFILE% del %JSFILE%
type %LNKGFILE%>> %JSFILE%
GOTO :eof
:teardown
del %LNKGFILE%
del %COMPFILE%
@echo %ENDMSG%
GOTO :eof | kodmunki/ku4js-webApp | _example/javascript/_build/build.cmd | bat | mit | 1,633 |
http-server -p 8089 | nafSadh/resume | serve-on-local-node-http.bat | bat | mit | 19 |
fromelf --bin --output o.bin %1
nrfutil dfu genpkg dfu.zip --application o.bin --application-version 0x0108 --dev-revision 1 --dev-type 1 --sd-req 0x64
del o.bin
| ubi-naist/SenStick | binary/create_dfu.bat | bat | mit | 162 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\ipuz.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ipuz.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| svisser/ipuz | docs/make.bat | bat | mit | 6,697 |
@echo off
echo Press any key to publish
pause
".nuget\NuGet.exe" push Rssdp.2.0.0.2.nupkg
pause | stickybun/RSSDP | src/Main/PublishNugetPackage.cmd | bat | mit | 95 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\nickmabasync_util.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\nickmabasync_util.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| nickmab/async_util | docs/make.bat | bat | mit | 7,266 |
cd App
npm install
bower install
| dflor003/ko-select2-multiselect-binding | install.bat | bat | mit | 33 |
@ECHO OFF
REM ############################################
REM #
REM # This installs YourAPP to BB simulator.
REM #
REM ############################################
set JAVALOADER_HOME=%RIM_HOME%\%DEVICE_OS%\bin
set oldPATH=%PATH%
set PATH=%JAVALOADER_HOME%;%PATH%
pushd %JAVALOADER_HOME%
REM Replace YourAPP with your product name
call JavaLoader.exe -p%DEVICE_PORT% -p%DEVICE_PIN% -q -u load YourAPP%DEVICE_BUILD%_%Version%.jad
REM Replace YourAPP with your product name
rem del %JAVALOADER_HOME%\YourAPP*.jar
rem del %JAVALOADER_HOME%\YourAPP*.jad
rem del %JAVALOADER_HOME%\YourAPP*.cod
set PATH=%oldPATH%
popd
| eing/moet | common/bb/javaloaderStart.bat | bat | epl-1.0 | 622 |
REM
REM Makefile.bat ipadic-2.6.3
REM
..\makemat
..\makeda chadic *.dic
| takayuki/natume | ipadic-2.7.0/Makefile.bat | bat | gpl-2.0 | 80 |
cmd_sound/isa/wavefront/built-in.o := rm -f sound/isa/wavefront/built-in.o; /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ar rcs sound/isa/wavefront/built-in.o
| yohanes/Acer-BeTouch-E130-Linux-Kernel | sound/isa/wavefront/.built-in.o.cmd | bat | gpl-2.0 | 158 |
cmd_drivers/media/rc/keymaps/built-in.o := rm -f drivers/media/rc/keymaps/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/media/rc/keymaps/built-in.o
| asopov/linux-tpt-2.6.39 | drivers/media/rc/keymaps/.built-in.o.cmd | bat | gpl-2.0 | 209 |
cmd_sound/pci/ice1712/built-in.o := rm -f sound/pci/ice1712/built-in.o; ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ar rcs sound/pci/ice1712/built-in.o
| spacecaker/CM7_Space_Kernel_Cooper | sound/pci/ice1712/.built-in.o.cmd | bat | gpl-2.0 | 159 |
cmd_arch/arm/lib/copy_to_user.o := arm-linux-androideabi-gcc -Wp,-MD,arch/arm/lib/.copy_to_user.o.d -nostdinc -isystem /usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include -I/usr/src/dell/lhbalanced/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/copy_to_user.o arch/arm/lib/copy_to_user.S
deps_arch/arm/lib/copy_to_user.o := \
arch/arm/lib/copy_to_user.S \
$(wildcard include/config/thumb2/kernel.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/linkage.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/hwcap.h \
arch/arm/lib/copy_template.S \
arch/arm/lib/copy_to_user.o: $(deps_arch/arm/lib/copy_to_user.o)
$(deps_arch/arm/lib/copy_to_user.o):
| tenorntex/lhbalanced | arch/arm/lib/.copy_to_user.o.cmd | bat | gpl-2.0 | 1,743 |
"I:\!lucho-temp\netradiant-1.5.0-20110819\q3map2.exe" -fs_basepath "C:\openarena-0.8.1" -fs_game "baseoa" -game "oa" -onlyents "C:\openarena-0.8.1\baseoa\maps\oa_bprison.map"
Pause
"I:\!lucho-temp\netradiant-1.5.0-20110819\bspc.exe" -bsp2aas "C:\openarena-0.8.1\baseoa\maps\oa_bprison.bsp" -forcesidesvisible -optimize -grapplereach
| NeonKnightOA/oaassets | tools/compile-scripts/batch/oa_bprison.bat | bat | gpl-2.0 | 333 |
cmd_scripts/kconfig/lxdialog/textbox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.textbox.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/textbox.o scripts/kconfig/lxdialog/textbox.c
deps_scripts/kconfig/lxdialog/textbox.o := \
scripts/kconfig/lxdialog/textbox.c \
scripts/kconfig/lxdialog/dialog.h \
/usr/include/sys/types.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-64.h \
/usr/include/bits/types.h \
/usr/include/bits/typesizes.h \
/usr/include/time.h \
/usr/lib/gcc/x86_64-linux-gnu/4.4.3/include/stddef.h \
/usr/include/endian.h \
/usr/include/bits/endian.h \
/usr/include/bits/byteswap.h \
/usr/include/sys/select.h \
/usr/include/bits/select.h \
/usr/include/bits/sigset.h \
/usr/include/bits/time.h \
/usr/include/sys/sysmacros.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/fcntl.h \
/usr/include/bits/fcntl.h \
/usr/include/bits/fcntl2.h \
/usr/include/unistd.h \
/usr/include/bits/posix_opt.h \
/usr/include/bits/confname.h \
/usr/include/getopt.h \
/usr/include/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/stdlib.h \
/usr/include/alloca.h \
/usr/include/bits/stdlib.h \
/usr/include/string.h \
/usr/include/bits/string.h \
/usr/include/bits/string2.h \
/usr/include/bits/string3.h \
/usr/lib/gcc/x86_64-linux-gnu/4.4.3/include/stdbool.h \
/usr/include/libintl.h \
/usr/include/locale.h \
/usr/include/bits/locale.h \
/usr/include/ncurses.h \
/usr/include/ncurses_dll.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.4.3/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio2.h \
/usr/include/unctrl.h \
/usr/include/curses.h \
scripts/kconfig/lxdialog/textbox.o: $(deps_scripts/kconfig/lxdialog/textbox.o)
$(deps_scripts/kconfig/lxdialog/textbox.o):
| bizcuite/Kernel_ICS_Archos_Gen8 | scripts/kconfig/lxdialog/.textbox.o.cmd | bat | gpl-2.0 | 2,181 |
cmd_fs/debugfs/debugfs.o := /home/dman3285/CM10/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/debugfs/debugfs.o fs/debugfs/inode.o fs/debugfs/file.o
| AOSP-ZEUS/android_kernel_samsung_n1 | fs/debugfs/.debugfs.o.cmd | bat | gpl-2.0 | 180 |
:: "\xff\xd8\xff[\xe0-\xef].{0,32}?[jJ][fF][a-zA-Z]{2}.*?(?:\n|.)*?\xff\xd9"
:: "\xff\xd8\xff[\xe0-\xef].{0,10000000}?\xff\xd9"
@re -p %* ^
"\xff.\xff...(([jJ][fF])|([eE][xX]))[iI][fF]((?!JFIF).){0,1000}?(\xff...(([jJ][fF])|([eE][xX]))((?!Exif|JFIF).)*?\xff\xd9)?((?!JFIF).){0,25000000}?\xff\xd9" ^
-fl Singleline ^
-max 1000000000 ^
-asm -b -s -e ^
try { ^
var e = file ^| io.ext @()$_.ToLower(); ^
if (m.Index == 0 ^&^& (e == '.jpg' ^|^| e == '.jpeg')) ret null; ^
console.success('Found JPG in {0} at offset 0x{1:x8}', file, m.Index); ^
reader.BaseStream.Position = m.Index.long(); ^
reader.ReadBytes(m.Length) @io.bytes('{0}_Carved_{1:D8}.jpg' ::[file, m.Index]); ^
} catch (e) { ^
console.error('Error carving file {0}: {1}', file, e.message); ^
} ^
| John-Leitch/Aphid | Components.Aphid/Tools/CarveJpg.cmd | bat | gpl-2.0 | 847 |
cmd_block/blk-map.o := gcc -Wp,-MD,block/.blk-map.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(blk_map)" -D"KBUILD_MODNAME=KBUILD_STR(blk_map)" -c -o block/blk-map.o block/blk-map.c
deps_block/blk-map.o := \
block/blk-map.c \
include/linux/kernel.h \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/asm/posix_types.h \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
$(wildcard include/config/x86/cmov.h) \
include/asm/alternative.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/paravirt.h) \
include/asm/asm.h \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/compat/vdso.h) \
include/asm/user.h \
include/asm/user_32.h \
include/asm/auxvec.h \
include/asm/vdso.h \
include/asm/desc.h \
include/asm/ldt.h \
include/asm/mmu.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/asm-x86/mach-default/mach_apicdef.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slabinfo.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/asm/module.h \
$(wildcard include/config/m486.h) \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip2.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
include/linux/bio.h \
$(wildcard include/config/block.h) \
include/linux/highmem.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.h \
include/linux/namei.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/auxvec.h \
include/linux/completion.h \
include/asm/pgtable.h \
include/asm/pgtable_32.h \
$(wildcard include/config/highpte.h) \
include/asm/paravirt.h \
include/asm/pgtable-2level-defs.h \
include/asm/pgtable-2level.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/uaccess.h \
include/asm/uaccess.h \
include/asm/uaccess_32.h \
$(wildcard include/config/x86/intel/usercopy.h) \
$(wildcard include/config/x86/wp/works/ok.h) \
include/asm/cacheflush.h \
$(wildcard include/config/debug/rodata.h) \
$(wildcard include/config/debug/rodata/test.h) \
include/asm/highmem.h \
include/linux/interrupt.h \
$(wildcard include/config/high/res/timers.h) \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/timex.h \
include/asm/timex.h \
$(wildcard include/config/x86/rdc321x.h) \
include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/jiffies.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
include/asm-generic/signal.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/asm/seccomp.h \
include/asm/seccomp_32.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/asm/unistd_32.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm/hardirq.h \
include/asm/hardirq_32.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
include/asm/irq_32.h \
include/asm-x86/mach-default/irq_vectors.h \
include/asm-x86/mach-default/irq_vectors_limits.h \
include/asm/irq_regs.h \
include/asm/irq_regs_32.h \
include/asm/hw_irq.h \
include/asm/hw_irq_32.h \
include/linux/profile.h \
include/asm/sections.h \
include/asm-generic/sections.h \
include/linux/irq_cpustat.h \
include/asm/tlbflush.h \
include/linux/mempool.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
include/asm/io.h \
include/asm/io_32.h \
include/asm-generic/iomap.h \
include/linux/vmalloc.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/asm/device.h \
$(wildcard include/config/dmar.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/pagemap.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/bsg.h \
include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/linux/elevator.h \
include/scsi/sg.h \
block/blk.h \
block/blk-map.o: $(deps_block/blk-map.o)
$(deps_block/blk-map.o):
| namgk/kernel-tut | block/.blk-map.o.cmd | bat | gpl-2.0 | 21,351 |
cmd_lib/lcm.o := arm-none-linux-gnueabi-gcc -Wp,-MD,lib/.lcm.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(lcm)" -D"KBUILD_MODNAME=KBUILD_STR(lcm)" -c -o lib/.tmp_lcm.o lib/lcm.c
deps_lib/lcm.o := \
lib/lcm.c \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/gcd.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/completion.h \
include/linux/rcutree.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
lib/lcm.o: $(deps_lib/lcm.o)
$(deps_lib/lcm.o):
| srinugnt2000/linux-2.6.37 | lib/.lcm.o.cmd | bat | gpl-2.0 | 15,368 |
cmd_fs/ext3/built-in.o := arm-arago-linux-gnueabi-ld -EL -r -o fs/ext3/built-in.o fs/ext3/ext3.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | fs/ext3/.built-in.o.cmd | bat | gpl-2.0 | 102 |
for /d %%i in (*) do (
echo %%i
)
pause
| solvery/lang-features | windows_bat/forall_dir.bat | bat | gpl-2.0 | 49 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\brobot.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\brobot.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| keseldude/brobot | docs/make.bat | bat | gpl-3.0 | 4,681 |
cmd_scripts/kconfig/lxdialog/checklist.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.checklist.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu89 -D_GNU_SOURCE -I/usr/include/ncursesw -DCURSES_LOC="<ncurses.h>" -DNCURSES_WIDECHAR=1 -DLOCALE -c -o scripts/kconfig/lxdialog/checklist.o scripts/kconfig/lxdialog/checklist.c
source_scripts/kconfig/lxdialog/checklist.o := scripts/kconfig/lxdialog/checklist.c
deps_scripts/kconfig/lxdialog/checklist.o := \
/usr/include/stdc-predef.h \
scripts/kconfig/lxdialog/dialog.h \
/usr/include/sys/types.h \
/usr/include/features.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-64.h \
/usr/include/bits/types.h \
/usr/include/bits/typesizes.h \
/usr/include/time.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3/include/stddef.h \
/usr/include/endian.h \
/usr/include/bits/endian.h \
/usr/include/bits/byteswap.h \
/usr/include/bits/byteswap-16.h \
/usr/include/sys/select.h \
/usr/include/bits/select.h \
/usr/include/bits/sigset.h \
/usr/include/bits/time.h \
/usr/include/bits/select2.h \
/usr/include/sys/sysmacros.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/fcntl.h \
/usr/include/bits/fcntl.h \
/usr/include/bits/fcntl-linux.h \
/usr/include/bits/uio.h \
/usr/include/bits/stat.h \
/usr/include/bits/fcntl2.h \
/usr/include/unistd.h \
/usr/include/bits/posix_opt.h \
/usr/include/bits/environments.h \
/usr/include/bits/confname.h \
/usr/include/getopt.h \
/usr/include/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/stdlib.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/bits/stdlib-bsearch.h \
/usr/include/bits/stdlib-float.h \
/usr/include/bits/stdlib.h \
/usr/include/string.h \
/usr/include/bits/string.h \
/usr/include/bits/string2.h \
/usr/include/bits/string3.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3/include/stdbool.h \
/usr/include/libintl.h \
/usr/include/locale.h \
/usr/include/bits/locale.h \
/usr/include/ncursesw/ncurses.h \
/usr/include/ncursesw/ncurses_dll.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3/include/stdint.h \
/usr/include/stdint.h \
/usr/include/bits/wchar.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio2.h \
/usr/include/bits/wchar2.h \
/usr/include/ncursesw/unctrl.h \
/usr/include/ncursesw/curses.h \
scripts/kconfig/lxdialog/checklist.o: $(deps_scripts/kconfig/lxdialog/checklist.o)
$(deps_scripts/kconfig/lxdialog/checklist.o):
| Kronos3/Minux | src/config/scripts/kconfig/lxdialog/.checklist.o.cmd | bat | gpl-3.0 | 2,869 |
@ECHO OFF
REM (C) 2009-2019 see Authors.txt
REM
REM This file is part of MPC-HC.
REM
REM MPC-HC is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation; either version 3 of the License, or
REM (at your option) any later version.
REM
REM MPC-HC is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with this program. If not, see <http://www.gnu.org/licenses/>.
SETLOCAL
SET "FILE_DIR=%~dp0"
PUSHD "%FILE_DIR%"
IF EXIST "build.user.bat" CALL "build.user.bat"
IF DEFINED MPCHC_MINGW64 GOTO VarOk
ECHO ERROR: Please define MPCHC_MINGW64 environment variable
ENDLOCAL
EXIT /B
:VarOk
FOR /f "tokens=1,2 delims=" %%K IN (
'%MPCHC_MINGW64%\bin\gcc -dumpversion'
) DO (
SET "gccver=%%K" & Call :SubGCCVer %%gccver:*Z=%%
)
SET LIBDIR=lib
COPY /V /Y "%MPCHC_MINGW64%\lib\gcc\i686-w64-mingw32\%gccver%\libgcc.a" %LIBDIR%\
COPY /V /Y "%MPCHC_MINGW64%\lib\gcc\x86_64-w64-mingw32\%gccver%\libgcc.a" %LIBDIR%64\
COPY /V /Y "%MPCHC_MINGW64%\i686-w64-mingw32\lib\libmingwex.a" %LIBDIR%\
lib -remove:lib32_libmingwex_a-strtoimax.o -remove:lib32_libmingwex_a-strtof.o -remove:lib32_libmingwex_a-cos.o -remove:lib32_libmingwex_a-sin.o -remove:lib32_libmingwex_a-pow.o -remove:lib32_libmingwex_a-sqrt.o -remove:lib32_libmingwex_a-powi.o "%LIBDIR%\libmingwex.a"
MOVE /Y %LIBDIR%\libmingwex.lib %LIBDIR%\libmingwex-stripped.a
COPY /V /Y "%MPCHC_MINGW64%\x86_64-w64-mingw32\lib\libmingwex.a" %LIBDIR%64\
lib -remove:lib64_libmingwex_a-strtoimax.o -remove:lib64_libmingwex_a-strtof.o -remove:lib64_libmingwex_a-cos.o -remove:lib64_libmingwex_a-sin.o -remove:lib64_libmingwex_a-pow.o -remove:lib64_libmingwex_a-sqrt.o -remove:lib64_libmingwex_a-sqrtf.o -remove:lib64_libmingwex_a-powi.o "%LIBDIR%64\libmingwex.a"
MOVE /Y %LIBDIR%64\libmingwex.lib %LIBDIR%64\libmingwex-stripped.a
EXIT /B
:SubGCCVer
SET gccver=%*
@ECHO gccver=%*
EXIT /B
| clsid2/mpc-hc | update_mingwlib.bat | bat | gpl-3.0 | 2,197 |
REM This script installs all dependencies of PyFRAP for OSX, assuming Anaconda is installed.
REM Downgrade to PyQt4
conda remove -y qt pyqt
conda install -y qt=4 pyqt=4.10.4
REM Reinstall MPL
conda remove -y pywavelets
conda install -y matplotlib=1.4.3
REM Reinstall skimage
conda install -y scikit-image=0.11.3
REM Install extra packages
conda install -y vtk
conda install -y colorama
REM Install extra packages using
pip install numpy-stl
pip install solidpython
pip install wget
pip install pysparse
pip install fipy
pip install python-bioformats
REM Install PyFRAP
python setup.py install
| alexblaessle/PyFRAP | install_win.bat | bat | gpl-3.0 | 601 |
set OPTS=-DDAO_WITH_THREAD
set OPTS=main.c
set OPTS=
rem if exist dao\kernel\daomain.c move dao\kernel\daomain.c dao\kernel\daomain.c.bak
cl /Fedao.exe -I dao\kernel /Ox /Oy /MT /DNDEBUG dao\kernel\*.c -DWIN32 winmm.lib %OPTS%
del *.obj
| r-lyeh/scriptorium | dao/make.bat | bat | unlicense | 243 |
docker run -v c:/face/scripts:/app -p 8080:8080 -t -i bamos/openface bash "./app/init.sh"
| gradosevic/OpenFace | start.bat | bat | apache-2.0 | 90 |
echo /*** Ignore minified library code below ***/ >> EasyAPI.min.cs
CSharpMinifier\CSharpMinify --locals --members --types --spaces --regions --comments --namespaces --to-string-methods --enum-to-int --line-length 100000 --skip-compile EasyAPI.lib.cs >> EasyAPI.min.cs
copy /b ^
modules\BootstrapEasyAPI\BootstrapEasyAPI.cs +^
EasyAPI.min.cs ^
EasyAPI.cs
copy /b ^
modules\BootstrapEasyAPI\BootstrapEasyAPI.cs +^
EasyAPI.lib.cs ^
EasyAPI.debug.cs
del EasyAPI.lib.cs
del EasyAPI.min.cs
pause
| paillardf/SpaceEngineersScripts | build.bat | bat | apache-2.0 | 503 |
java -jar C:\chkbugreport-0.4-164.jar bugreport.log | GdZ/scriptfile | sh/chkbugreport-0.4-164/BugReport_V164.bat | bat | mit | 51 |
2YKPV-BFXFW-X8GJQ-9KQFF-KCXGD
| mgiljum/Windows-7-Pro-Activator | Activator/Certs/MSI/Starter B/OEM/slp.cmd | bat | mit | 33 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCFXICS.S01_SyncFastTransferInvalidParameter_TestSuite.MSOXCFXICS_S01_SyncFastTransferInvalidParameter_TestSuite8 /testcontainer:..\..\MS-OXCFXICS\TestSuite\bin\Debug\MS-OXCFXICS_TestSuite.dll /runconfig:..\..\MS-OXCFXICS\MS-OXCFXICS.testsettings /unique
pause | OfficeDev/Interop-TestSuites | ExchangeMAPI/Source/Scripts/MS-OXCFXICS/RunMSOXCFXICS_S01_SyncFastTransferInvalidParameter_TestSuite8.cmd | bat | mit | 355 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASEMAIL.S04_MeetingRequest.MSASEMAIL_S04_TC11_MeetingRequest_FullUpdate /testcontainer:..\..\MS-ASEMAIL\TestSuite\bin\Debug\MS-ASEMAIL_TestSuite.dll /runconfig:..\..\MS-ASEMAIL\MS-ASEMAIL.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeActiveSync/Source/Scripts/MS-ASEMAIL/RunMSASEMAIL_S04_TC11_MeetingRequest_FullUpdate.cmd | bat | mit | 308 |
for /d %%g IN (*) DO (
pushd "%%~g"
call :injext
CALL "%GBC%\MSDSinject.bat"
popd
)
exit /b
:injext
call "%GBC%\CreateGamSubDir.bat"
for /f "tokens=* delims= " %%a in ('dir /b/a-d-h') do (
if /I "%%~xa"==".lnk" "%GBC%\fart.exe" "*.bat" [EXT] lnk
)
:skp | HoodlumDTX/rom-jacket | extinjMSDS1.bat | bat | gpl-2.0 | 274 |
@echo off
title OpenRA
FOR /F "tokens=1,2 delims==" %%A IN (mod.config) DO (set %%A=%%B)
if exist user.config (FOR /F "tokens=1,2 delims==" %%A IN (user.config) DO (set %%A=%%B))
set TEMPLATE_LAUNCHER=%0
set MOD_SEARCH_PATHS=%~dp0mods
if %INCLUDE_DEFAULT_MODS% neq "True" goto launch
set MOD_SEARCH_PATHS=%MOD_SEARCH_PATHS%,./mods
:launch
set TEMPLATE_DIR=%CD%
if not exist %ENGINE_DIRECTORY%\OpenRA.Game.exe goto noengine
cd %ENGINE_DIRECTORY%
OpenRA.Game.exe Game.Mod=%MOD_ID% Engine.LaunchPath="%TEMPLATE_LAUNCHER%" "Engine.ModSearchPaths=%MOD_SEARCH_PATHS%" "%*"
set ERROR=%errorlevel%
cd %TEMPLATE_DIR%
if %ERROR% neq 0 goto crashdialog
exit /b
:noengine
echo Required engine files not found.
echo Run `make all` in the mod directory to fetch and build the required files, then try again.
pause
exit /b
:crashdialog
echo ----------------------------------------
echo OpenRA has encountered a fatal error.
echo * Log Files are available in Documents\OpenRA\Logs
echo * FAQ is available at https://github.com/OpenRA/OpenRA/wiki/FAQ
echo ----------------------------------------
pause
| IronDominion/IronDominion | launch-game.cmd | bat | gpl-3.0 | 1,098 |
cd D:\cloud\LYM
REM perl D:\cloud\LYM\cmd\PG_confGenerator-v3.prl effe\configuration\LYM_effe-head-double.csv effe\scenarios\LYM_effeComposite-scenario-v1.csv effe\shaders\LYM_Drawing_effe-FS.glsl effe\shaders\LYM_Drawing_effe-FS_full.glsl effe\shaders\LYM_Composition_effe-FS.glsl effe\shaders\LYM_Composition_effe-FS_full.glsl effe\shaders\LYM_Camera_effe-FS.glsl effe\shaders\LYM_Camera_effe-FS_full.glsl effe\shaders\LYM_Final_effe-FS.glsl effe\shaders\LYM_Final_effe-FS_full.glsl ..\Porphyrograph\Porphyrograph-effe-src\pg_script_header.h ..\Porphyrograph\Porphyrograph-effe-src\pg_script_body.cpp ..\Porphyrograph\Porphyrograph-effe-src\pg_shader_header.h ..\Porphyrograph\Porphyrograph-effe-src\pg_shader_body_decl.cpp ..\Porphyrograph\Porphyrograph-effe-src\pg_shader_body_bind.cpp ..\Porphyrograph\Porphyrograph-effe-src\pg_draw_body.cpp
D:\cloud\Porphyrograph\Porphyrograph-VC17\Release\effe\Porphyrograph_effe.exe ./effe/configuration/LYM_effe-head-double.csv ./effe/scenarios/\LYM_effeComposite-scenario-v1.csv
| yukao/Porphyrograph | LYM-projects/batFiles/project-archives/CompositeSoundInitiative/effeComposite.PG-double.bat | bat | gpl-3.0 | 1,024 |
@echo off
cls
.paket\paket.exe restore
packages\FAKE\tools\FAKE.exe build.fsx %* | quantalea/AleaTK | build.bat | bat | apache-2.0 | 80 |
@echo off
set RUNTIMEDIR=%1
if defined RUNTIMEDIR goto build
echo Parameter missing, please do not execute generic scripts directly
exit /b
:build
if exist .\data\cars\categories\free\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\free\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\free\free.xml copy .\data\cars\categories\free\free.xml .\%RUNTIMEDIR%\categories\free.xml
if exist .\data\cars\categories\Historic\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Historic\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Historic\Historic.xml copy .\data\cars\categories\Historic\Historic.xml .\%RUNTIMEDIR%\categories\Historic.xml
if exist .\data\cars\categories\Offroad-4WD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Offroad-4WD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Offroad-4WD-GrA\Offroad-4WD-GrA.xml copy .\data\cars\categories\Offroad-4WD-GrA\Offroad-4WD-GrA.xml .\%RUNTIMEDIR%\categories\Offroad-4WD-GrA.xml
if exist .\data\cars\categories\Offroad-RWD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Offroad-RWD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Offroad-RWD-GrA\Offroad-RWD-GrA.xml copy .\data\cars\categories\Offroad-RWD-GrA\Offroad-RWD-GrA.xml .\%RUNTIMEDIR%\categories\Offroad-RWD-GrA.xml
if exist .\data\cars\categories\Track-4WD-GrB\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Track-4WD-GrB\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Track-4WD-GrB\Track-4WD-GrB.xml copy .\data\cars\categories\Track-4WD-GrB\Track-4WD-GrB.xml .\%RUNTIMEDIR%\categories\Track-4WD-GrB.xml
if exist .\data\cars\categories\Track-FWD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Track-FWD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Track-FWD-GrA\Track-FWD-GrA.xml copy .\data\cars\categories\Track-FWD-GrA\Track-FWD-GrA.xml .\%RUNTIMEDIR%\categories\Track-FWD-GrA.xml
if exist .\data\cars\categories\Track-FWD-GrB\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Track-FWD-GrB\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Track-FWD-GrB\Track-FWD-GrB.xml copy .\data\cars\categories\Track-FWD-GrB\Track-FWD-GrB.xml .\%RUNTIMEDIR%\categories\Track-FWD-GrB.xml
if exist .\data\cars\categories\Track-RWD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Track-RWD-GrA\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Track-RWD-GrA\Track-RWD-GrA.xml copy .\data\cars\categories\Track-RWD-GrA\Track-RWD-GrA.xml .\%RUNTIMEDIR%\categories\Track-RWD-GrA.xml
if exist .\data\cars\categories\Track-RWD-GrB\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Track-RWD-GrB\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Track-RWD-GrB\Track-RWD-GrB.xml copy .\data\cars\categories\Track-RWD-GrB\Track-RWD-GrB.xml .\%RUNTIMEDIR%\categories\Track-RWD-GrB.xml
if exist .\data\cars\categories\Track-RWD-GrC\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\Track-RWD-GrC\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\Track-RWD-GrC\Track-RWD-GrC.xml copy .\data\cars\categories\Track-RWD-GrC\Track-RWD-GrC.xml .\%RUNTIMEDIR%\categories\Track-RWD-GrC.xml
if exist .\data\cars\categories\ow1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\ow1\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\ow1\ow1.xml copy .\data\cars\categories\ow1\ow1.xml .\%RUNTIMEDIR%\categories\ow1.xml
if exist .\data\cars\categories\trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\trb1\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\trb1\trb1.xml copy .\data\cars\categories\trb1\trb1.xml .\%RUNTIMEDIR%\categories\trb1.xml
if exist .\data\cars\categories\trb3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\trb3\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\trb3\trb3.xml copy .\data\cars\categories\trb3\trb3.xml .\%RUNTIMEDIR%\categories\trb3.xml
if exist .\data\cars\categories\stock1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\categories\stock1\*.* call .\create_dir .\%RUNTIMEDIR%\categories
if exist .\data\cars\categories\stock1\stock1.xml copy .\data\cars\categories\stock1\stock1.xml .\%RUNTIMEDIR%\categories\stock1.xml
if exist .\data\cars\wheels\openwheel1-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\openwheel1-1\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\openwheel1-1\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\openwheel1-1
if exist .\data\cars\wheels\openwheel1-1\readme.txt copy .\data\cars\wheels\openwheel1-1\readme.txt .\%RUNTIMEDIR%\wheels\openwheel1-1\readme.txt
if exist .\data\cars\wheels\openwheel1-1\wheel0.acc copy .\data\cars\wheels\openwheel1-1\wheel0.acc .\%RUNTIMEDIR%\wheels\openwheel1-1\wheel0.acc
if exist .\data\cars\wheels\openwheel1-1\wheel1.acc copy .\data\cars\wheels\openwheel1-1\wheel1.acc .\%RUNTIMEDIR%\wheels\openwheel1-1\wheel1.acc
if exist .\data\cars\wheels\openwheel1-1\wheel2.acc copy .\data\cars\wheels\openwheel1-1\wheel2.acc .\%RUNTIMEDIR%\wheels\openwheel1-1\wheel2.acc
if exist .\data\cars\wheels\openwheel1-1\wheel3.acc copy .\data\cars\wheels\openwheel1-1\wheel3.acc .\%RUNTIMEDIR%\wheels\openwheel1-1\wheel3.acc
if exist .\data\cars\wheels\openwheel1-1\wheel3d.png copy .\data\cars\wheels\openwheel1-1\wheel3d.png .\%RUNTIMEDIR%\wheels\openwheel1-1\wheel3d.png
if exist .\data\cars\wheels\trb1-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\trb1-1\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\trb1-1\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\trb1-1
if exist .\data\cars\wheels\trb1-1\readme.txt copy .\data\cars\wheels\trb1-1\readme.txt .\%RUNTIMEDIR%\wheels\trb1-1\readme.txt
if exist .\data\cars\wheels\trb1-1\wheel0.acc copy .\data\cars\wheels\trb1-1\wheel0.acc .\%RUNTIMEDIR%\wheels\trb1-1\wheel0.acc
if exist .\data\cars\wheels\trb1-1\wheel1.acc copy .\data\cars\wheels\trb1-1\wheel1.acc .\%RUNTIMEDIR%\wheels\trb1-1\wheel1.acc
if exist .\data\cars\wheels\trb1-1\wheel2.acc copy .\data\cars\wheels\trb1-1\wheel2.acc .\%RUNTIMEDIR%\wheels\trb1-1\wheel2.acc
if exist .\data\cars\wheels\trb1-1\wheel3.acc copy .\data\cars\wheels\trb1-1\wheel3.acc .\%RUNTIMEDIR%\wheels\trb1-1\wheel3.acc
if exist .\data\cars\wheels\trb1-1\wheel3d.png copy .\data\cars\wheels\trb1-1\wheel3d.png .\%RUNTIMEDIR%\wheels\trb1-1\wheel3d.png
if exist .\data\cars\wheels\trb1-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\trb1-2\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\trb1-2\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\trb1-2
if exist .\data\cars\wheels\trb1-2\readme.txt copy .\data\cars\wheels\trb1-2\readme.txt .\%RUNTIMEDIR%\wheels\trb1-2\readme.txt
if exist .\data\cars\wheels\trb1-2\wheel0.acc copy .\data\cars\wheels\trb1-2\wheel0.acc .\%RUNTIMEDIR%\wheels\trb1-2\wheel0.acc
if exist .\data\cars\wheels\trb1-2\wheel1.acc copy .\data\cars\wheels\trb1-2\wheel1.acc .\%RUNTIMEDIR%\wheels\trb1-2\wheel1.acc
if exist .\data\cars\wheels\trb1-2\wheel2.acc copy .\data\cars\wheels\trb1-2\wheel2.acc .\%RUNTIMEDIR%\wheels\trb1-2\wheel2.acc
if exist .\data\cars\wheels\trb1-2\wheel3.acc copy .\data\cars\wheels\trb1-2\wheel3.acc .\%RUNTIMEDIR%\wheels\trb1-2\wheel3.acc
if exist .\data\cars\wheels\trb1-2\wheel3d.png copy .\data\cars\wheels\trb1-2\wheel3d.png .\%RUNTIMEDIR%\wheels\trb1-2\wheel3d.png
if exist .\data\cars\wheels\trb1-3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\trb1-3\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\trb1-3\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\trb1-3
if exist .\data\cars\wheels\trb1-3\readme.txt copy .\data\cars\wheels\trb1-3\readme.txt .\%RUNTIMEDIR%\wheels\trb1-3\readme.txt
if exist .\data\cars\wheels\trb1-3\wheel0.acc copy .\data\cars\wheels\trb1-3\wheel0.acc .\%RUNTIMEDIR%\wheels\trb1-3\wheel0.acc
if exist .\data\cars\wheels\trb1-3\wheel1.acc copy .\data\cars\wheels\trb1-3\wheel1.acc .\%RUNTIMEDIR%\wheels\trb1-3\wheel1.acc
if exist .\data\cars\wheels\trb1-3\wheel2.acc copy .\data\cars\wheels\trb1-3\wheel2.acc .\%RUNTIMEDIR%\wheels\trb1-3\wheel2.acc
if exist .\data\cars\wheels\trb1-3\wheel3.acc copy .\data\cars\wheels\trb1-3\wheel3.acc .\%RUNTIMEDIR%\wheels\trb1-3\wheel3.acc
if exist .\data\cars\wheels\trb1-3\wheel3d.png copy .\data\cars\wheels\trb1-3\wheel3d.png .\%RUNTIMEDIR%\wheels\trb1-3\wheel3d.png
if exist .\data\cars\wheels\trb1-4\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\trb1-4\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\trb1-4\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\trb1-4
if exist .\data\cars\wheels\trb1-4\readme.txt copy .\data\cars\wheels\trb1-4\readme.txt .\%RUNTIMEDIR%\wheels\trb1-4\readme.txt
if exist .\data\cars\wheels\trb1-4\wheel0.acc copy .\data\cars\wheels\trb1-4\wheel0.acc .\%RUNTIMEDIR%\wheels\trb1-4\wheel0.acc
if exist .\data\cars\wheels\trb1-4\wheel1.acc copy .\data\cars\wheels\trb1-4\wheel1.acc .\%RUNTIMEDIR%\wheels\trb1-4\wheel1.acc
if exist .\data\cars\wheels\trb1-4\wheel2.acc copy .\data\cars\wheels\trb1-4\wheel2.acc .\%RUNTIMEDIR%\wheels\trb1-4\wheel2.acc
if exist .\data\cars\wheels\trb1-4\wheel3.acc copy .\data\cars\wheels\trb1-4\wheel3.acc .\%RUNTIMEDIR%\wheels\trb1-4\wheel3.acc
if exist .\data\cars\wheels\trb1-4\wheel3d.png copy .\data\cars\wheels\trb1-4\wheel3d.png .\%RUNTIMEDIR%\wheels\trb1-4\wheel3d.png
if exist .\data\cars\wheels\trb1-5\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\trb1-5\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\trb1-5\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\trb1-5
if exist .\data\cars\wheels\trb1-5\readme.txt copy .\data\cars\wheels\trb1-5\readme.txt .\%RUNTIMEDIR%\wheels\trb1-5\readme.txt
if exist .\data\cars\wheels\trb1-5\wheel0.acc copy .\data\cars\wheels\trb1-5\wheel0.acc .\%RUNTIMEDIR%\wheels\trb1-5\wheel0.acc
if exist .\data\cars\wheels\trb1-5\wheel1.acc copy .\data\cars\wheels\trb1-5\wheel1.acc .\%RUNTIMEDIR%\wheels\trb1-5\wheel1.acc
if exist .\data\cars\wheels\trb1-5\wheel2.acc copy .\data\cars\wheels\trb1-5\wheel2.acc .\%RUNTIMEDIR%\wheels\trb1-5\wheel2.acc
if exist .\data\cars\wheels\trb1-5\wheel3.acc copy .\data\cars\wheels\trb1-5\wheel3.acc .\%RUNTIMEDIR%\wheels\trb1-5\wheel3.acc
if exist .\data\cars\wheels\trb1-5\wheel3d.png copy .\data\cars\wheels\trb1-5\wheel3d.png .\%RUNTIMEDIR%\wheels\trb1-5\wheel3d.png
if exist .\data\cars\wheels\trb1-6\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\trb1-6\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\trb1-6\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\trb1-6
if exist .\data\cars\wheels\trb1-6\readme.txt copy .\data\cars\wheels\trb1-6\readme.txt .\%RUNTIMEDIR%\wheels\trb1-6\readme.txt
if exist .\data\cars\wheels\trb1-6\wheel0.acc copy .\data\cars\wheels\trb1-6\wheel0.acc .\%RUNTIMEDIR%\wheels\trb1-6\wheel0.acc
if exist .\data\cars\wheels\trb1-6\wheel1.acc copy .\data\cars\wheels\trb1-6\wheel1.acc .\%RUNTIMEDIR%\wheels\trb1-6\wheel1.acc
if exist .\data\cars\wheels\trb1-6\wheel2.acc copy .\data\cars\wheels\trb1-6\wheel2.acc .\%RUNTIMEDIR%\wheels\trb1-6\wheel2.acc
if exist .\data\cars\wheels\trb1-6\wheel3.acc copy .\data\cars\wheels\trb1-6\wheel3.acc .\%RUNTIMEDIR%\wheels\trb1-6\wheel3.acc
if exist .\data\cars\wheels\trb1-6\wheel3d.png copy .\data\cars\wheels\trb1-6\wheel3d.png .\%RUNTIMEDIR%\wheels\trb1-6\wheel3d.png
if exist .\data\cars\wheels\stock1-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\stock1-1\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\stock1-1\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\stock1-1
if exist .\data\cars\wheels\stock1-1\readme.txt copy .\data\cars\wheels\stock1-1\readme.txt .\%RUNTIMEDIR%\wheels\stock1-1\readme.txt
if exist .\data\cars\wheels\stock1-1\wheel0.acc copy .\data\cars\wheels\stock1-1\wheel0.acc .\%RUNTIMEDIR%\wheels\stock1-1\wheel0.acc
if exist .\data\cars\wheels\stock1-1\wheel1.acc copy .\data\cars\wheels\stock1-1\wheel1.acc .\%RUNTIMEDIR%\wheels\stock1-1\wheel1.acc
if exist .\data\cars\wheels\stock1-1\wheel2.acc copy .\data\cars\wheels\stock1-1\wheel2.acc .\%RUNTIMEDIR%\wheels\stock1-1\wheel2.acc
if exist .\data\cars\wheels\stock1-1\wheel3.acc copy .\data\cars\wheels\stock1-1\wheel3.acc .\%RUNTIMEDIR%\wheels\stock1-1\wheel3.acc
if exist .\data\cars\wheels\stock1-1\wheel3d.png copy .\data\cars\wheels\stock1-1\wheel3d.png .\%RUNTIMEDIR%\wheels\stock1-1\wheel3d.png
if exist .\data\cars\wheels\stock1-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\stock1-2\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\stock1-2\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\stock1-2
if exist .\data\cars\wheels\stock1-2\readme.txt copy .\data\cars\wheels\stock1-2\readme.txt .\%RUNTIMEDIR%\wheels\stock1-2\readme.txt
if exist .\data\cars\wheels\stock1-2\wheel0.acc copy .\data\cars\wheels\stock1-2\wheel0.acc .\%RUNTIMEDIR%\wheels\stock1-2\wheel0.acc
if exist .\data\cars\wheels\stock1-2\wheel1.acc copy .\data\cars\wheels\stock1-2\wheel1.acc .\%RUNTIMEDIR%\wheels\stock1-2\wheel1.acc
if exist .\data\cars\wheels\stock1-2\wheel2.acc copy .\data\cars\wheels\stock1-2\wheel2.acc .\%RUNTIMEDIR%\wheels\stock1-2\wheel2.acc
if exist .\data\cars\wheels\stock1-2\wheel3.acc copy .\data\cars\wheels\stock1-2\wheel3.acc .\%RUNTIMEDIR%\wheels\stock1-2\wheel3.acc
if exist .\data\cars\wheels\stock1-2\wheel3d.png copy .\data\cars\wheels\stock1-2\wheel3d.png .\%RUNTIMEDIR%\wheels\stock1-2\wheel3d.png
if exist .\data\cars\wheels\stock1-3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\wheels\stock1-3\*.* call .\create_dir .\%RUNTIMEDIR%\wheels
if exist .\data\cars\wheels\stock1-3\*.* call .\create_dir .\%RUNTIMEDIR%\wheels\stock1-3
if exist .\data\cars\wheels\stock1-3\readme.txt copy .\data\cars\wheels\stock1-3\readme.txt .\%RUNTIMEDIR%\wheels\stock1-3\readme.txt
if exist .\data\cars\wheels\stock1-3\wheel0.acc copy .\data\cars\wheels\stock1-3\wheel0.acc .\%RUNTIMEDIR%\wheels\stock1-3\wheel0.acc
if exist .\data\cars\wheels\stock1-3\wheel1.acc copy .\data\cars\wheels\stock1-3\wheel1.acc .\%RUNTIMEDIR%\wheels\stock1-3\wheel1.acc
if exist .\data\cars\wheels\stock1-3\wheel2.acc copy .\data\cars\wheels\stock1-3\wheel2.acc .\%RUNTIMEDIR%\wheels\stock1-3\wheel2.acc
if exist .\data\cars\wheels\stock1-3\wheel3.acc copy .\data\cars\wheels\stock1-3\wheel3.acc .\%RUNTIMEDIR%\wheels\stock1-3\wheel3.acc
if exist .\data\cars\wheels\stock1-3\wheel3d.png copy .\data\cars\wheels\stock1-3\wheel3d.png .\%RUNTIMEDIR%\wheels\stock1-3\wheel3d.png
if exist .\data\cars\models\155-DTM\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\155-DTM\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\155-DTM\*.* call .\create_dir .\%RUNTIMEDIR%\cars\155-DTM
if exist .\data\cars\models\155-DTM\155-DTM.xml copy .\data\cars\models\155-DTM\155-DTM.xml .\%RUNTIMEDIR%\cars\155-DTM\155-DTM.xml
if exist .\data\cars\models\155-DTM\155-DTM.rgb copy .\data\cars\models\155-DTM\155-DTM.rgb .\%RUNTIMEDIR%\cars\155-DTM\155-DTM.rgb
if exist .\data\cars\models\155-DTM\tex-wheel.rgb copy .\data\cars\models\155-DTM\tex-wheel.rgb .\%RUNTIMEDIR%\cars\155-DTM\tex-wheel.rgb
if exist .\data\cars\models\155-DTM\shadow.rgb copy .\data\cars\models\155-DTM\shadow.rgb .\%RUNTIMEDIR%\cars\155-DTM\shadow.rgb
if exist .\data\cars\models\155-DTM\155-DTM.acc copy .\data\cars\models\155-DTM\155-DTM.acc .\%RUNTIMEDIR%\cars\155-DTM\155-DTM.acc
if exist .\data\cars\models\155-DTM\155-DTM-lod1.acc copy .\data\cars\models\155-DTM\155-DTM-lod1.acc .\%RUNTIMEDIR%\cars\155-DTM\155-DTM-lod1.acc
if exist .\data\cars\models\155-DTM\155-DTM-lod2.acc copy .\data\cars\models\155-DTM\155-DTM-lod2.acc .\%RUNTIMEDIR%\cars\155-DTM\155-DTM-lod2.acc
if exist .\data\cars\models\155-DTM\readme.txt copy .\data\cars\models\155-DTM\readme.txt .\%RUNTIMEDIR%\cars\155-DTM\readme.txt
if exist .\data\cars\models\car1-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car1-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car1-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car1-trb1
if exist .\data\cars\models\car1-trb1\car1-trb1.xml copy .\data\cars\models\car1-trb1\car1-trb1.xml .\%RUNTIMEDIR%\cars\car1-trb1\car1-trb1.xml
if exist .\data\cars\models\car1-trb1\readme.txt copy .\data\cars\models\car1-trb1\readme.txt .\%RUNTIMEDIR%\cars\car1-trb1\readme.txt
if exist .\data\cars\models\car1-trb1\car1-trb1.rgb copy .\data\cars\models\car1-trb1\car1-trb1.rgb .\%RUNTIMEDIR%\cars\car1-trb1\car1-trb1.rgb
if exist .\data\cars\models\car1-trb1\tex-wheel.rgb copy .\data\cars\models\car1-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car1-trb1\tex-wheel.rgb
if exist .\data\cars\models\car1-trb1\shadow.rgb copy .\data\cars\models\car1-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car1-trb1\shadow.rgb
if exist .\data\cars\models\car1-trb1\car1-trb1.acc copy .\data\cars\models\car1-trb1\car1-trb1.acc .\%RUNTIMEDIR%\cars\car1-trb1\car1-trb1.acc
if exist .\data\cars\models\car2-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car2-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car2-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car2-trb1
if exist .\data\cars\models\car2-trb1\car2-trb1.xml copy .\data\cars\models\car2-trb1\car2-trb1.xml .\%RUNTIMEDIR%\cars\car2-trb1\car2-trb1.xml
if exist .\data\cars\models\car2-trb1\readme.txt copy .\data\cars\models\car2-trb1\readme.txt .\%RUNTIMEDIR%\cars\car2-trb1\readme.txt
if exist .\data\cars\models\car2-trb1\car2-trb1.rgb copy .\data\cars\models\car2-trb1\car2-trb1.rgb .\%RUNTIMEDIR%\cars\car2-trb1\car2-trb1.rgb
if exist .\data\cars\models\car2-trb1\tex-wheel.rgb copy .\data\cars\models\car2-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car2-trb1\tex-wheel.rgb
if exist .\data\cars\models\car2-trb1\shadow.rgb copy .\data\cars\models\car2-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car2-trb1\shadow.rgb
if exist .\data\cars\models\car2-trb1\car2-trb1.acc copy .\data\cars\models\car2-trb1\car2-trb1.acc .\%RUNTIMEDIR%\cars\car2-trb1\car2-trb1.acc
if exist .\data\cars\models\car3-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car3-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car3-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car3-trb1
if exist .\data\cars\models\car3-trb1\car3-trb1.xml copy .\data\cars\models\car3-trb1\car3-trb1.xml .\%RUNTIMEDIR%\cars\car3-trb1\car3-trb1.xml
if exist .\data\cars\models\car3-trb1\readme.txt copy .\data\cars\models\car3-trb1\readme.txt .\%RUNTIMEDIR%\cars\car3-trb1\readme.txt
if exist .\data\cars\models\car3-trb1\car3-trb1.rgb copy .\data\cars\models\car3-trb1\car3-trb1.rgb .\%RUNTIMEDIR%\cars\car3-trb1\car3-trb1.rgb
if exist .\data\cars\models\car3-trb1\tex-wheel.rgb copy .\data\cars\models\car3-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car3-trb1\tex-wheel.rgb
if exist .\data\cars\models\car3-trb1\shadow.rgb copy .\data\cars\models\car3-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car3-trb1\shadow.rgb
if exist .\data\cars\models\car3-trb1\car3-trb1.acc copy .\data\cars\models\car3-trb1\car3-trb1.acc .\%RUNTIMEDIR%\cars\car3-trb1\car3-trb1.acc
if exist .\data\cars\models\car4-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car4-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car4-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car4-trb1
if exist .\data\cars\models\car4-trb1\car4-trb1.xml copy .\data\cars\models\car4-trb1\car4-trb1.xml .\%RUNTIMEDIR%\cars\car4-trb1\car4-trb1.xml
if exist .\data\cars\models\car4-trb1\readme.txt copy .\data\cars\models\car4-trb1\readme.txt .\%RUNTIMEDIR%\cars\car4-trb1\readme.txt
if exist .\data\cars\models\car4-trb1\car4-trb1.rgb copy .\data\cars\models\car4-trb1\car4-trb1.rgb .\%RUNTIMEDIR%\cars\car4-trb1\car4-trb1.rgb
if exist .\data\cars\models\car4-trb1\tex-wheel.rgb copy .\data\cars\models\car4-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car4-trb1\tex-wheel.rgb
if exist .\data\cars\models\car4-trb1\shadow.rgb copy .\data\cars\models\car4-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car4-trb1\shadow.rgb
if exist .\data\cars\models\car4-trb1\car4-trb1.acc copy .\data\cars\models\car4-trb1\car4-trb1.acc .\%RUNTIMEDIR%\cars\car4-trb1\car4-trb1.acc
if exist .\data\cars\models\car5-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car5-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car5-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car5-trb1
if exist .\data\cars\models\car5-trb1\car5-trb1.xml copy .\data\cars\models\car5-trb1\car5-trb1.xml .\%RUNTIMEDIR%\cars\car5-trb1\car5-trb1.xml
if exist .\data\cars\models\car5-trb1\readme.txt copy .\data\cars\models\car5-trb1\readme.txt .\%RUNTIMEDIR%\cars\car5-trb1\readme.txt
if exist .\data\cars\models\car5-trb1\car5-trb1.rgb copy .\data\cars\models\car5-trb1\car5-trb1.rgb .\%RUNTIMEDIR%\cars\car5-trb1\car5-trb1.rgb
if exist .\data\cars\models\car5-trb1\tex-wheel.rgb copy .\data\cars\models\car5-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car5-trb1\tex-wheel.rgb
if exist .\data\cars\models\car5-trb1\shadow.rgb copy .\data\cars\models\car5-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car5-trb1\shadow.rgb
if exist .\data\cars\models\car5-trb1\car5-trb1.acc copy .\data\cars\models\car5-trb1\car5-trb1.acc .\%RUNTIMEDIR%\cars\car5-trb1\car5-trb1.acc
if exist .\data\cars\models\car5-trb1\driver.rgb copy .\data\cars\models\car5-trb1\driver.rgb .\%RUNTIMEDIR%\cars\car5-trb1\driver.rgb
if exist .\data\cars\models\car6-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car6-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car6-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car6-trb1
if exist .\data\cars\models\car6-trb1\car6-trb1.xml copy .\data\cars\models\car6-trb1\car6-trb1.xml .\%RUNTIMEDIR%\cars\car6-trb1\car6-trb1.xml
if exist .\data\cars\models\car6-trb1\readme.txt copy .\data\cars\models\car6-trb1\readme.txt .\%RUNTIMEDIR%\cars\car6-trb1\readme.txt
if exist .\data\cars\models\car6-trb1\car6-trb1.rgb copy .\data\cars\models\car6-trb1\car6-trb1.rgb .\%RUNTIMEDIR%\cars\car6-trb1\car6-trb1.rgb
if exist .\data\cars\models\car6-trb1\tex-wheel.rgb copy .\data\cars\models\car6-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car6-trb1\tex-wheel.rgb
if exist .\data\cars\models\car6-trb1\shadow.rgb copy .\data\cars\models\car6-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car6-trb1\shadow.rgb
if exist .\data\cars\models\car6-trb1\car6-trb1.acc copy .\data\cars\models\car6-trb1\car6-trb1.acc .\%RUNTIMEDIR%\cars\car6-trb1\car6-trb1.acc
if exist .\data\cars\models\car6-trb1\driver.rgb copy .\data\cars\models\car6-trb1\driver.rgb .\%RUNTIMEDIR%\cars\car6-trb1\driver.rgb
if exist .\data\cars\models\car7-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car7-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car7-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car7-trb1
if exist .\data\cars\models\car7-trb1\car7-trb1.xml copy .\data\cars\models\car7-trb1\car7-trb1.xml .\%RUNTIMEDIR%\cars\car7-trb1\car7-trb1.xml
if exist .\data\cars\models\car7-trb1\readme.txt copy .\data\cars\models\car7-trb1\readme.txt .\%RUNTIMEDIR%\cars\car7-trb1\readme.txt
if exist .\data\cars\models\car7-trb1\car7-trb1.rgb copy .\data\cars\models\car7-trb1\car7-trb1.rgb .\%RUNTIMEDIR%\cars\car7-trb1\car7-trb1.rgb
if exist .\data\cars\models\car7-trb1\tex-wheel.rgb copy .\data\cars\models\car7-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car7-trb1\tex-wheel.rgb
if exist .\data\cars\models\car7-trb1\shadow.rgb copy .\data\cars\models\car7-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car7-trb1\shadow.rgb
if exist .\data\cars\models\car7-trb1\car7-trb1.acc copy .\data\cars\models\car7-trb1\car7-trb1.acc .\%RUNTIMEDIR%\cars\car7-trb1\car7-trb1.acc
if exist .\data\cars\models\car7-trb1\driver.rgb copy .\data\cars\models\car7-trb1\driver.rgb .\%RUNTIMEDIR%\cars\car7-trb1\driver.rgb
if exist .\data\cars\models\car8-trb1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car8-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car8-trb1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car8-trb1
if exist .\data\cars\models\car8-trb1\car8-trb1.xml copy .\data\cars\models\car8-trb1\car8-trb1.xml .\%RUNTIMEDIR%\cars\car8-trb1\car8-trb1.xml
if exist .\data\cars\models\car8-trb1\readme.txt copy .\data\cars\models\car8-trb1\readme.txt .\%RUNTIMEDIR%\cars\car8-trb1\readme.txt
if exist .\data\cars\models\car8-trb1\car8-trb1.rgb copy .\data\cars\models\car8-trb1\car8-trb1.rgb .\%RUNTIMEDIR%\cars\car8-trb1\car8-trb1.rgb
if exist .\data\cars\models\car8-trb1\tex-wheel.rgb copy .\data\cars\models\car8-trb1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car8-trb1\tex-wheel.rgb
if exist .\data\cars\models\car8-trb1\shadow.rgb copy .\data\cars\models\car8-trb1\shadow.rgb .\%RUNTIMEDIR%\cars\car8-trb1\shadow.rgb
if exist .\data\cars\models\car8-trb1\car8-trb1.acc copy .\data\cars\models\car8-trb1\car8-trb1.acc .\%RUNTIMEDIR%\cars\car8-trb1\car8-trb1.acc
if exist .\data\cars\models\car8-trb1\driver.rgb copy .\data\cars\models\car8-trb1\driver.rgb .\%RUNTIMEDIR%\cars\car8-trb1\driver.rgb
if exist .\data\cars\models\car1-trb3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car1-trb3\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car1-trb3\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car1-trb3
if exist .\data\cars\models\car1-trb3\car1-trb3.xml copy .\data\cars\models\car1-trb3\car1-trb3.xml .\%RUNTIMEDIR%\cars\car1-trb3\car1-trb3.xml
if exist .\data\cars\models\car1-trb3\readme.txt copy .\data\cars\models\car1-trb3\readme.txt .\%RUNTIMEDIR%\cars\car1-trb3\readme.txt
if exist .\data\cars\models\car1-trb3\car1-trb3.rgb copy .\data\cars\models\car1-trb3\car1-trb3.rgb .\%RUNTIMEDIR%\cars\car1-trb3\car1-trb3.rgb
if exist .\data\cars\models\car1-trb3\tex-wheel.rgb copy .\data\cars\models\car1-trb3\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car1-trb3\tex-wheel.rgb
if exist .\data\cars\models\car1-trb3\shadow.rgb copy .\data\cars\models\car1-trb3\shadow.rgb .\%RUNTIMEDIR%\cars\car1-trb3\shadow.rgb
if exist .\data\cars\models\car1-trb3\car1-trb3.acc copy .\data\cars\models\car1-trb3\car1-trb3.acc .\%RUNTIMEDIR%\cars\car1-trb3\car1-trb3.acc
if exist .\data\cars\models\car1-trb3\car1-trb3-lod1.acc copy .\data\cars\models\car1-trb3\car1-trb3-lod1.acc .\%RUNTIMEDIR%\cars\car1-trb3\car1-trb3-lod1.acc
if exist .\data\cars\models\car1-trb3\car1-trb3-lod2.acc copy .\data\cars\models\car1-trb3\car1-trb3-lod2.acc .\%RUNTIMEDIR%\cars\car1-trb3\car1-trb3-lod2.acc
if exist .\data\cars\models\car1-stock1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car1-stock1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car1-stock1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car1-stock1
if exist .\data\cars\models\car1-stock1\car1-stock1.xml copy .\data\cars\models\car1-stock1\car1-stock1.xml .\%RUNTIMEDIR%\cars\car1-stock1\car1-stock1.xml
if exist .\data\cars\models\car1-stock1\readme.txt copy .\data\cars\models\car1-stock1\readme.txt .\%RUNTIMEDIR%\cars\car1-stock1\readme.txt
if exist .\data\cars\models\car1-stock1\car1-stock1.rgb copy .\data\cars\models\car1-stock1\car1-stock1.rgb .\%RUNTIMEDIR%\cars\car1-stock1\car1-stock1.rgb
if exist .\data\cars\models\car1-stock1\tex-wheel.rgb copy .\data\cars\models\car1-stock1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car1-stock1\tex-wheel.rgb
if exist .\data\cars\models\car1-stock1\shadow.rgb copy .\data\cars\models\car1-stock1\shadow.rgb .\%RUNTIMEDIR%\cars\car1-stock1\shadow.rgb
if exist .\data\cars\models\car1-stock1\car1-stock1.acc copy .\data\cars\models\car1-stock1\car1-stock1.acc .\%RUNTIMEDIR%\cars\car1-stock1\car1-stock1.acc
if exist .\data\cars\models\car1-stock1\carbon-128.rgb copy .\data\cars\models\car1-stock1\carbon-128.rgb .\%RUNTIMEDIR%\cars\car1-stock1\carbon-128.rgb
if exist .\data\cars\models\car1-stock1\grill.rgb copy .\data\cars\models\car1-stock1\grill.rgb .\%RUNTIMEDIR%\cars\car1-stock1\grill.rgb
if exist .\data\cars\models\car1-stock1\driver.rgb copy .\data\cars\models\car1-stock1\driver.rgb .\%RUNTIMEDIR%\cars\car1-stock1\driver.rgb
if exist .\data\cars\models\acura-nsx-sz\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\acura-nsx-sz\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\acura-nsx-sz\*.* call .\create_dir .\%RUNTIMEDIR%\cars\acura-nsx-sz
if exist .\data\cars\models\acura-nsx-sz\acura-nsx-sz.xml copy .\data\cars\models\acura-nsx-sz\acura-nsx-sz.xml .\%RUNTIMEDIR%\cars\acura-nsx-sz\acura-nsx-sz.xml
if exist .\data\cars\models\acura-nsx-sz\acura-nsx-sz.rgb copy .\data\cars\models\acura-nsx-sz\acura-nsx-sz.rgb .\%RUNTIMEDIR%\cars\acura-nsx-sz\acura-nsx-sz.rgb
if exist .\data\cars\models\acura-nsx-sz\tex-wheel.rgb copy .\data\cars\models\acura-nsx-sz\tex-wheel.rgb .\%RUNTIMEDIR%\cars\acura-nsx-sz\tex-wheel.rgb
if exist .\data\cars\models\acura-nsx-sz\shadow.rgb copy .\data\cars\models\acura-nsx-sz\shadow.rgb .\%RUNTIMEDIR%\cars\acura-nsx-sz\shadow.rgb
if exist .\data\cars\models\acura-nsx-sz\acura-nsx-sz.acc copy .\data\cars\models\acura-nsx-sz\acura-nsx-sz.acc .\%RUNTIMEDIR%\cars\acura-nsx-sz\acura-nsx-sz.acc
if exist .\data\cars\models\acura-nsx-sz\acura-nsx-sz-lod1.acc copy .\data\cars\models\acura-nsx-sz\acura-nsx-sz-lod1.acc .\%RUNTIMEDIR%\cars\acura-nsx-sz\acura-nsx-sz-lod1.acc
if exist .\data\cars\models\acura-nsx-sz\acura-nsx-sz-lod2.acc copy .\data\cars\models\acura-nsx-sz\acura-nsx-sz-lod2.acc .\%RUNTIMEDIR%\cars\acura-nsx-sz\acura-nsx-sz-lod2.acc
if exist .\data\cars\models\acura-nsx-sz\readme.txt copy .\data\cars\models\acura-nsx-sz\readme.txt .\%RUNTIMEDIR%\cars\acura-nsx-sz\readme.txt
if exist .\data\cars\models\baja-bug\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\baja-bug\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\baja-bug\*.* call .\create_dir .\%RUNTIMEDIR%\cars\baja-bug
if exist .\data\cars\models\baja-bug\baja-bug.xml copy .\data\cars\models\baja-bug\baja-bug.xml .\%RUNTIMEDIR%\cars\baja-bug\baja-bug.xml
if exist .\data\cars\models\baja-bug\baja-bug.rgb copy .\data\cars\models\baja-bug\baja-bug.rgb .\%RUNTIMEDIR%\cars\baja-bug\baja-bug.rgb
if exist .\data\cars\models\baja-bug\tex-wheel.rgb copy .\data\cars\models\baja-bug\tex-wheel.rgb .\%RUNTIMEDIR%\cars\baja-bug\tex-wheel.rgb
if exist .\data\cars\models\baja-bug\shadow.rgb copy .\data\cars\models\baja-bug\shadow.rgb .\%RUNTIMEDIR%\cars\baja-bug\shadow.rgb
if exist .\data\cars\models\baja-bug\baja-bug.acc copy .\data\cars\models\baja-bug\baja-bug.acc .\%RUNTIMEDIR%\cars\baja-bug\baja-bug.acc
if exist .\data\cars\models\baja-bug\baja-bug-lod1.acc copy .\data\cars\models\baja-bug\baja-bug-lod1.acc .\%RUNTIMEDIR%\cars\baja-bug\baja-bug-lod1.acc
if exist .\data\cars\models\baja-bug\baja-bug-lod2.acc copy .\data\cars\models\baja-bug\baja-bug-lod2.acc .\%RUNTIMEDIR%\cars\baja-bug\baja-bug-lod2.acc
if exist .\data\cars\models\baja-bug\readme.txt copy .\data\cars\models\baja-bug\readme.txt .\%RUNTIMEDIR%\cars\baja-bug\readme.txt
if exist .\data\cars\models\buggy\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\buggy\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\buggy\*.* call .\create_dir .\%RUNTIMEDIR%\cars\buggy
if exist .\data\cars\models\buggy\buggy.xml copy .\data\cars\models\buggy\buggy.xml .\%RUNTIMEDIR%\cars\buggy\buggy.xml
if exist .\data\cars\models\buggy\buggy.rgb copy .\data\cars\models\buggy\buggy.rgb .\%RUNTIMEDIR%\cars\buggy\buggy.rgb
if exist .\data\cars\models\buggy\tex-wheel.rgb copy .\data\cars\models\buggy\tex-wheel.rgb .\%RUNTIMEDIR%\cars\buggy\tex-wheel.rgb
if exist .\data\cars\models\buggy\shadow.rgb copy .\data\cars\models\buggy\shadow.rgb .\%RUNTIMEDIR%\cars\buggy\shadow.rgb
if exist .\data\cars\models\buggy\buggy.acc copy .\data\cars\models\buggy\buggy.acc .\%RUNTIMEDIR%\cars\buggy\buggy.acc
if exist .\data\cars\models\buggy\buggy-lod1.acc copy .\data\cars\models\buggy\buggy-lod1.acc .\%RUNTIMEDIR%\cars\buggy\buggy-lod1.acc
if exist .\data\cars\models\buggy\buggy-lod2.acc copy .\data\cars\models\buggy\buggy-lod2.acc .\%RUNTIMEDIR%\cars\buggy\buggy-lod2.acc
if exist .\data\cars\models\buggy\readme.txt copy .\data\cars\models\buggy\readme.txt .\%RUNTIMEDIR%\cars\buggy\readme.txt
if exist .\data\cars\models\car1-ow1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\car1-ow1\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\car1-ow1\*.* call .\create_dir .\%RUNTIMEDIR%\cars\car1-ow1
if exist .\data\cars\models\car1-ow1\car1-ow1.xml copy .\data\cars\models\car1-ow1\car1-ow1.xml .\%RUNTIMEDIR%\cars\car1-ow1\car1-ow1.xml
if exist .\data\cars\models\car1-ow1\car1-ow1.rgb copy .\data\cars\models\car1-ow1\car1-ow1.rgb .\%RUNTIMEDIR%\cars\car1-ow1\car1-ow1.rgb
if exist .\data\cars\models\car1-ow1\shadow.rgb copy .\data\cars\models\car1-ow1\shadow.rgb .\%RUNTIMEDIR%\cars\car1-ow1\shadow.rgb
if exist .\data\cars\models\car1-ow1\tex-wheel.rgb copy .\data\cars\models\car1-ow1\tex-wheel.rgb .\%RUNTIMEDIR%\cars\car1-ow1\tex-wheel.rgb
if exist .\data\cars\models\car1-ow1\car1-ow1.acc copy .\data\cars\models\car1-ow1\car1-ow1.acc .\%RUNTIMEDIR%\cars\car1-ow1\car1-ow1.acc
if exist .\data\cars\models\car1-ow1\readme.txt copy .\data\cars\models\car1-ow1\readme.txt .\%RUNTIMEDIR%\cars\car1-ow1\readme.txt
if exist .\data\cars\models\kc-2000gt\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-2000gt\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-2000gt\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-2000gt
if exist .\data\cars\models\kc-2000gt\kc-2000gt.acc copy .\data\cars\models\kc-2000gt\kc-2000gt.acc .\%RUNTIMEDIR%\cars\kc-2000gt\kc-2000gt.acc
if exist .\data\cars\models\kc-2000gt\kc-2000gt-lod1.acc copy .\data\cars\models\kc-2000gt\kc-2000gt-lod1.acc .\%RUNTIMEDIR%\cars\kc-2000gt\kc-2000gt-lod1.acc
if exist .\data\cars\models\kc-2000gt\kc-2000gt-lod2.acc copy .\data\cars\models\kc-2000gt\kc-2000gt-lod2.acc .\%RUNTIMEDIR%\cars\kc-2000gt\kc-2000gt-lod2.acc
if exist .\data\cars\models\kc-2000gt\kc-2000gt-lod3.acc copy .\data\cars\models\kc-2000gt\kc-2000gt-lod3.acc .\%RUNTIMEDIR%\cars\kc-2000gt\kc-2000gt-lod3.acc
if exist .\data\cars\models\kc-2000gt\kc-2000gt.rgb copy .\data\cars\models\kc-2000gt\kc-2000gt.rgb .\%RUNTIMEDIR%\cars\kc-2000gt\kc-2000gt.rgb
if exist .\data\cars\models\kc-2000gt\kc-2000gt.xml copy .\data\cars\models\kc-2000gt\kc-2000gt.xml .\%RUNTIMEDIR%\cars\kc-2000gt\kc-2000gt.xml
if exist .\data\cars\models\kc-2000gt\readme.txt copy .\data\cars\models\kc-2000gt\readme.txt .\%RUNTIMEDIR%\cars\kc-2000gt\readme.txt
if exist .\data\cars\models\kc-2000gt\shadow.rgb copy .\data\cars\models\kc-2000gt\shadow.rgb .\%RUNTIMEDIR%\cars\kc-2000gt\shadow.rgb
if exist .\data\cars\models\kc-2000gt\tex-wheel.rgb copy .\data\cars\models\kc-2000gt\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-2000gt\tex-wheel.rgb
if exist .\data\cars\models\kc-5300gt\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-5300gt\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-5300gt\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-5300gt
if exist .\data\cars\models\kc-5300gt\kc-5300gt.acc copy .\data\cars\models\kc-5300gt\kc-5300gt.acc .\%RUNTIMEDIR%\cars\kc-5300gt\kc-5300gt.acc
if exist .\data\cars\models\kc-5300gt\kc-5300gt-lod1.acc copy .\data\cars\models\kc-5300gt\kc-5300gt-lod1.acc .\%RUNTIMEDIR%\cars\kc-5300gt\kc-5300gt-lod1.acc
if exist .\data\cars\models\kc-5300gt\kc-5300gt-lod2.acc copy .\data\cars\models\kc-5300gt\kc-5300gt-lod2.acc .\%RUNTIMEDIR%\cars\kc-5300gt\kc-5300gt-lod2.acc
if exist .\data\cars\models\kc-5300gt\kc-5300gt-lod3.acc copy .\data\cars\models\kc-5300gt\kc-5300gt-lod3.acc .\%RUNTIMEDIR%\cars\kc-5300gt\kc-5300gt-lod3.acc
if exist .\data\cars\models\kc-5300gt\kc-5300gt.rgb copy .\data\cars\models\kc-5300gt\kc-5300gt.rgb .\%RUNTIMEDIR%\cars\kc-5300gt\kc-5300gt.rgb
if exist .\data\cars\models\kc-5300gt\kc-5300gt.xml copy .\data\cars\models\kc-5300gt\kc-5300gt.xml .\%RUNTIMEDIR%\cars\kc-5300gt\kc-5300gt.xml
if exist .\data\cars\models\kc-5300gt\kmh1.rgb copy .\data\cars\models\kc-5300gt\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-5300gt\kmh1.rgb
if exist .\data\cars\models\kc-5300gt\readme.txt copy .\data\cars\models\kc-5300gt\readme.txt .\%RUNTIMEDIR%\cars\kc-5300gt\readme.txt
if exist .\data\cars\models\kc-5300gt\rpm1.rgb copy .\data\cars\models\kc-5300gt\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-5300gt\rpm1.rgb
if exist .\data\cars\models\kc-5300gt\shadow.rgb copy .\data\cars\models\kc-5300gt\shadow.rgb .\%RUNTIMEDIR%\cars\kc-5300gt\shadow.rgb
if exist .\data\cars\models\kc-5300gt\tex-wheel.rgb copy .\data\cars\models\kc-5300gt\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-5300gt\tex-wheel.rgb
if exist .\data\cars\models\kc-a110\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-a110\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-a110\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-a110
if exist .\data\cars\models\kc-a110\kc-a110.acc copy .\data\cars\models\kc-a110\kc-a110.acc .\%RUNTIMEDIR%\cars\kc-a110\kc-a110.acc
if exist .\data\cars\models\kc-a110\kc-a110-lod1.acc copy .\data\cars\models\kc-a110\kc-a110-lod1.acc .\%RUNTIMEDIR%\cars\kc-a110\kc-a110-lod1.acc
if exist .\data\cars\models\kc-a110\kc-a110-lod2.acc copy .\data\cars\models\kc-a110\kc-a110-lod2.acc .\%RUNTIMEDIR%\cars\kc-a110\kc-a110-lod2.acc
if exist .\data\cars\models\kc-a110\kc-a110-lod3.acc copy .\data\cars\models\kc-a110\kc-a110-lod3.acc .\%RUNTIMEDIR%\cars\kc-a110\kc-a110-lod3.acc
if exist .\data\cars\models\kc-a110\kc-a110.rgb copy .\data\cars\models\kc-a110\kc-a110.rgb .\%RUNTIMEDIR%\cars\kc-a110\kc-a110.rgb
if exist .\data\cars\models\kc-a110\kc-a110.xml copy .\data\cars\models\kc-a110\kc-a110.xml .\%RUNTIMEDIR%\cars\kc-a110\kc-a110.xml
if exist .\data\cars\models\kc-a110\readme.txt copy .\data\cars\models\kc-a110\readme.txt .\%RUNTIMEDIR%\cars\kc-a110\readme.txt
if exist .\data\cars\models\kc-a110\shadow.rgb copy .\data\cars\models\kc-a110\shadow.rgb .\%RUNTIMEDIR%\cars\kc-a110\shadow.rgb
if exist .\data\cars\models\kc-a110\tex-wheel.rgb copy .\data\cars\models\kc-a110\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-a110\tex-wheel.rgb
if exist .\data\cars\models\kc-alfatz2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-alfatz2\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-alfatz2\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-alfatz2
if exist .\data\cars\models\kc-alfatz2\kc-alfatz2.acc copy .\data\cars\models\kc-alfatz2\kc-alfatz2.acc .\%RUNTIMEDIR%\cars\kc-alfatz2\kc-alfatz2.acc
if exist .\data\cars\models\kc-alfatz2\kc-alfatz2-lod1.acc copy .\data\cars\models\kc-alfatz2\kc-alfatz2-lod1.acc .\%RUNTIMEDIR%\cars\kc-alfatz2\kc-alfatz2-lod1.acc
if exist .\data\cars\models\kc-alfatz2\kc-alfatz2-lod2.acc copy .\data\cars\models\kc-alfatz2\kc-alfatz2-lod2.acc .\%RUNTIMEDIR%\cars\kc-alfatz2\kc-alfatz2-lod2.acc
if exist .\data\cars\models\kc-alfatz2\kc-alfatz2-lod3.acc copy .\data\cars\models\kc-alfatz2\kc-alfatz2-lod3.acc .\%RUNTIMEDIR%\cars\kc-alfatz2\kc-alfatz2-lod3.acc
if exist .\data\cars\models\kc-alfatz2\kc-alfatz2.rgb copy .\data\cars\models\kc-alfatz2\kc-alfatz2.rgb .\%RUNTIMEDIR%\cars\kc-alfatz2\kc-alfatz2.rgb
if exist .\data\cars\models\kc-alfatz2\kc-alfatz2.xml copy .\data\cars\models\kc-alfatz2\kc-alfatz2.xml .\%RUNTIMEDIR%\cars\kc-alfatz2\kc-alfatz2.xml
if exist .\data\cars\models\kc-alfatz2\kmh1.rgb copy .\data\cars\models\kc-alfatz2\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-alfatz2\kmh1.rgb
if exist .\data\cars\models\kc-alfatz2\readme.txt copy .\data\cars\models\kc-alfatz2\readme.txt .\%RUNTIMEDIR%\cars\kc-alfatz2\readme.txt
if exist .\data\cars\models\kc-alfatz2\rpm1.rgb copy .\data\cars\models\kc-alfatz2\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-alfatz2\rpm1.rgb
if exist .\data\cars\models\kc-alfatz2\shadow.rgb copy .\data\cars\models\kc-alfatz2\shadow.rgb .\%RUNTIMEDIR%\cars\kc-alfatz2\shadow.rgb
if exist .\data\cars\models\kc-alfatz2\tex-wheel.rgb copy .\data\cars\models\kc-alfatz2\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-alfatz2\tex-wheel.rgb
if exist .\data\cars\models\kc-bigh\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-bigh\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-bigh\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-bigh
if exist .\data\cars\models\kc-bigh\kc-bigh.acc copy .\data\cars\models\kc-bigh\kc-bigh.acc .\%RUNTIMEDIR%\cars\kc-bigh\kc-bigh.acc
if exist .\data\cars\models\kc-bigh\kc-bigh-lod1.acc copy .\data\cars\models\kc-bigh\kc-bigh-lod1.acc .\%RUNTIMEDIR%\cars\kc-bigh\kc-bigh-lod1.acc
if exist .\data\cars\models\kc-bigh\kc-bigh-lod2.acc copy .\data\cars\models\kc-bigh\kc-bigh-lod2.acc .\%RUNTIMEDIR%\cars\kc-bigh\kc-bigh-lod2.acc
if exist .\data\cars\models\kc-bigh\kc-bigh-lod3.acc copy .\data\cars\models\kc-bigh\kc-bigh-lod3.acc .\%RUNTIMEDIR%\cars\kc-bigh\kc-bigh-lod3.acc
if exist .\data\cars\models\kc-bigh\kc-bigh.rgb copy .\data\cars\models\kc-bigh\kc-bigh.rgb .\%RUNTIMEDIR%\cars\kc-bigh\kc-bigh.rgb
if exist .\data\cars\models\kc-bigh\kc-bigh.xml copy .\data\cars\models\kc-bigh\kc-bigh.xml .\%RUNTIMEDIR%\cars\kc-bigh\kc-bigh.xml
if exist .\data\cars\models\kc-bigh\readme.txt copy .\data\cars\models\kc-bigh\readme.txt .\%RUNTIMEDIR%\cars\kc-bigh\readme.txt
if exist .\data\cars\models\kc-bigh\shadow.rgb copy .\data\cars\models\kc-bigh\shadow.rgb .\%RUNTIMEDIR%\cars\kc-bigh\shadow.rgb
if exist .\data\cars\models\kc-bigh\tex-wheel.rgb copy .\data\cars\models\kc-bigh\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-bigh\tex-wheel.rgb
if exist .\data\cars\models\kc-bmw507\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-bmw507\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-bmw507\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-bmw507
if exist .\data\cars\models\kc-bmw507\kc-bmw507.acc copy .\data\cars\models\kc-bmw507\kc-bmw507.acc .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507.acc
if exist .\data\cars\models\kc-bmw507\kc-bmw507-lod1.acc copy .\data\cars\models\kc-bmw507\kc-bmw507-lod1.acc .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507-lod1.acc
if exist .\data\cars\models\kc-bmw507\kc-bmw507-lod2.acc copy .\data\cars\models\kc-bmw507\kc-bmw507-lod2.acc .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507-lod2.acc
if exist .\data\cars\models\kc-bmw507\kc-bmw507-lod3.acc copy .\data\cars\models\kc-bmw507\kc-bmw507-lod3.acc .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507-lod3.acc
if exist .\data\cars\models\kc-bmw507\kc-bmw507-lod4.acc copy .\data\cars\models\kc-bmw507\kc-bmw507-lod4.acc .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507-lod4.acc
if exist .\data\cars\models\kc-bmw507\kc-bmw507.rgb copy .\data\cars\models\kc-bmw507\kc-bmw507.rgb .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507.rgb
if exist .\data\cars\models\kc-bmw507\kc-bmw507.xml copy .\data\cars\models\kc-bmw507\kc-bmw507.xml .\%RUNTIMEDIR%\cars\kc-bmw507\kc-bmw507.xml
if exist .\data\cars\models\kc-bmw507\readme.txt copy .\data\cars\models\kc-bmw507\readme.txt .\%RUNTIMEDIR%\cars\kc-bmw507\readme.txt
if exist .\data\cars\models\kc-bmw507\shadow.rgb copy .\data\cars\models\kc-bmw507\shadow.rgb .\%RUNTIMEDIR%\cars\kc-bmw507\shadow.rgb
if exist .\data\cars\models\kc-bmw507\tex-wheel.rgb copy .\data\cars\models\kc-bmw507\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-bmw507\tex-wheel.rgb
if exist .\data\cars\models\kc-cobra\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-cobra\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-cobra\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-cobra
if exist .\data\cars\models\kc-cobra\kc-cobra.acc copy .\data\cars\models\kc-cobra\kc-cobra.acc .\%RUNTIMEDIR%\cars\kc-cobra\kc-cobra.acc
if exist .\data\cars\models\kc-cobra\kc-cobra-lod1.acc copy .\data\cars\models\kc-cobra\kc-cobra-lod1.acc .\%RUNTIMEDIR%\cars\kc-cobra\kc-cobra-lod1.acc
if exist .\data\cars\models\kc-cobra\kc-cobra-lod2.acc copy .\data\cars\models\kc-cobra\kc-cobra-lod2.acc .\%RUNTIMEDIR%\cars\kc-cobra\kc-cobra-lod2.acc
if exist .\data\cars\models\kc-cobra\kc-cobra-lod3.acc copy .\data\cars\models\kc-cobra\kc-cobra-lod3.acc .\%RUNTIMEDIR%\cars\kc-cobra\kc-cobra-lod3.acc
if exist .\data\cars\models\kc-cobra\kc-cobra.rgb copy .\data\cars\models\kc-cobra\kc-cobra.rgb .\%RUNTIMEDIR%\cars\kc-cobra\kc-cobra.rgb
if exist .\data\cars\models\kc-cobra\kc-cobra.xml copy .\data\cars\models\kc-cobra\kc-cobra.xml .\%RUNTIMEDIR%\cars\kc-cobra\kc-cobra.xml
if exist .\data\cars\models\kc-cobra\readme.txt copy .\data\cars\models\kc-cobra\readme.txt .\%RUNTIMEDIR%\cars\kc-cobra\readme.txt
if exist .\data\cars\models\kc-cobra\shadow.rgb copy .\data\cars\models\kc-cobra\shadow.rgb .\%RUNTIMEDIR%\cars\kc-cobra\shadow.rgb
if exist .\data\cars\models\kc-cobra\tex-wheel.rgb copy .\data\cars\models\kc-cobra\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-cobra\tex-wheel.rgb
if exist .\data\cars\models\kc-coda\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-coda\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-coda\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-coda
if exist .\data\cars\models\kc-coda\kc-coda.acc copy .\data\cars\models\kc-coda\kc-coda.acc .\%RUNTIMEDIR%\cars\kc-coda\kc-coda.acc
if exist .\data\cars\models\kc-coda\kc-coda-lod1.acc copy .\data\cars\models\kc-coda\kc-coda-lod1.acc .\%RUNTIMEDIR%\cars\kc-coda\kc-coda-lod1.acc
if exist .\data\cars\models\kc-coda\kc-coda-lod2.acc copy .\data\cars\models\kc-coda\kc-coda-lod2.acc .\%RUNTIMEDIR%\cars\kc-coda\kc-coda-lod2.acc
if exist .\data\cars\models\kc-coda\kc-coda-lod3.acc copy .\data\cars\models\kc-coda\kc-coda-lod3.acc .\%RUNTIMEDIR%\cars\kc-coda\kc-coda-lod3.acc
if exist .\data\cars\models\kc-coda\kc-coda.rgb copy .\data\cars\models\kc-coda\kc-coda.rgb .\%RUNTIMEDIR%\cars\kc-coda\kc-coda.rgb
if exist .\data\cars\models\kc-coda\kc-coda.xml copy .\data\cars\models\kc-coda\kc-coda.xml .\%RUNTIMEDIR%\cars\kc-coda\kc-coda.xml
if exist .\data\cars\models\kc-coda\readme.txt copy .\data\cars\models\kc-coda\readme.txt .\%RUNTIMEDIR%\cars\kc-coda\readme.txt
if exist .\data\cars\models\kc-coda\shadow.rgb copy .\data\cars\models\kc-coda\shadow.rgb .\%RUNTIMEDIR%\cars\kc-coda\shadow.rgb
if exist .\data\cars\models\kc-coda\tex-wheel.rgb copy .\data\cars\models\kc-coda\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-coda\tex-wheel.rgb
if exist .\data\cars\models\kc-conrero\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-conrero\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-conrero\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-conrero
if exist .\data\cars\models\kc-conrero\kc-conrero.acc copy .\data\cars\models\kc-conrero\kc-conrero.acc .\%RUNTIMEDIR%\cars\kc-conrero\kc-conrero.acc
if exist .\data\cars\models\kc-conrero\kc-conrero-lod1.acc copy .\data\cars\models\kc-conrero\kc-conrero-lod1.acc .\%RUNTIMEDIR%\cars\kc-conrero\kc-conrero-lod1.acc
if exist .\data\cars\models\kc-conrero\kc-conrero-lod2.acc copy .\data\cars\models\kc-conrero\kc-conrero-lod2.acc .\%RUNTIMEDIR%\cars\kc-conrero\kc-conrero-lod2.acc
if exist .\data\cars\models\kc-conrero\kc-conrero-lod3.acc copy .\data\cars\models\kc-conrero\kc-conrero-lod3.acc .\%RUNTIMEDIR%\cars\kc-conrero\kc-conrero-lod3.acc
if exist .\data\cars\models\kc-conrero\kc-conrero.rgb copy .\data\cars\models\kc-conrero\kc-conrero.rgb .\%RUNTIMEDIR%\cars\kc-conrero\kc-conrero.rgb
if exist .\data\cars\models\kc-conrero\kc-conrero.xml copy .\data\cars\models\kc-conrero\kc-conrero.xml .\%RUNTIMEDIR%\cars\kc-conrero\kc-conrero.xml
if exist .\data\cars\models\kc-conrero\kmh1.rgb copy .\data\cars\models\kc-conrero\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-conrero\kmh1.rgb
if exist .\data\cars\models\kc-conrero\readme.txt copy .\data\cars\models\kc-conrero\readme.txt .\%RUNTIMEDIR%\cars\kc-conrero\readme.txt
if exist .\data\cars\models\kc-conrero\rpm1.rgb copy .\data\cars\models\kc-conrero\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-conrero\rpm1.rgb
if exist .\data\cars\models\kc-conrero\shadow.rgb copy .\data\cars\models\kc-conrero\shadow.rgb .\%RUNTIMEDIR%\cars\kc-conrero\shadow.rgb
if exist .\data\cars\models\kc-conrero\tex-wheel.rgb copy .\data\cars\models\kc-conrero\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-conrero\tex-wheel.rgb
if exist .\data\cars\models\kc-corvette-ttop\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-corvette-ttop\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-corvette-ttop\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-corvette-ttop
if exist .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop.acc copy .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop.acc .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kc-corvette-ttop.acc
if exist .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop-lod1.acc copy .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop-lod1.acc .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kc-corvette-ttop-lod1.acc
if exist .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop-lod2.acc copy .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop-lod2.acc .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kc-corvette-ttop-lod2.acc
if exist .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop-lod3.acc copy .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop-lod3.acc .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kc-corvette-ttop-lod3.acc
if exist .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop.rgb copy .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop.rgb .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kc-corvette-ttop.rgb
if exist .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop.xml copy .\data\cars\models\kc-corvette-ttop\kc-corvette-ttop.xml .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kc-corvette-ttop.xml
if exist .\data\cars\models\kc-corvette-ttop\kmh1.rgb copy .\data\cars\models\kc-corvette-ttop\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-corvette-ttop\kmh1.rgb
if exist .\data\cars\models\kc-corvette-ttop\readme.txt copy .\data\cars\models\kc-corvette-ttop\readme.txt .\%RUNTIMEDIR%\cars\kc-corvette-ttop\readme.txt
if exist .\data\cars\models\kc-corvette-ttop\rpm1.rgb copy .\data\cars\models\kc-corvette-ttop\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-corvette-ttop\rpm1.rgb
if exist .\data\cars\models\kc-corvette-ttop\shadow.rgb copy .\data\cars\models\kc-corvette-ttop\shadow.rgb .\%RUNTIMEDIR%\cars\kc-corvette-ttop\shadow.rgb
if exist .\data\cars\models\kc-corvette-ttop\tex-wheel.rgb copy .\data\cars\models\kc-corvette-ttop\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-corvette-ttop\tex-wheel.rgb
if exist .\data\cars\models\kc-daytona\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-daytona\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-daytona\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-daytona
if exist .\data\cars\models\kc-daytona\kc-daytona.acc copy .\data\cars\models\kc-daytona\kc-daytona.acc .\%RUNTIMEDIR%\cars\kc-daytona\kc-daytona.acc
if exist .\data\cars\models\kc-daytona\kc-daytona-lod1.acc copy .\data\cars\models\kc-daytona\kc-daytona-lod1.acc .\%RUNTIMEDIR%\cars\kc-daytona\kc-daytona-lod1.acc
if exist .\data\cars\models\kc-daytona\kc-daytona-lod2.acc copy .\data\cars\models\kc-daytona\kc-daytona-lod2.acc .\%RUNTIMEDIR%\cars\kc-daytona\kc-daytona-lod2.acc
if exist .\data\cars\models\kc-daytona\kc-daytona-lod3.acc copy .\data\cars\models\kc-daytona\kc-daytona-lod3.acc .\%RUNTIMEDIR%\cars\kc-daytona\kc-daytona-lod3.acc
if exist .\data\cars\models\kc-daytona\kc-daytona.rgb copy .\data\cars\models\kc-daytona\kc-daytona.rgb .\%RUNTIMEDIR%\cars\kc-daytona\kc-daytona.rgb
if exist .\data\cars\models\kc-daytona\kc-daytona.xml copy .\data\cars\models\kc-daytona\kc-daytona.xml .\%RUNTIMEDIR%\cars\kc-daytona\kc-daytona.xml
if exist .\data\cars\models\kc-daytona\kmh1.rgb copy .\data\cars\models\kc-daytona\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-daytona\kmh1.rgb
if exist .\data\cars\models\kc-daytona\readme.txt copy .\data\cars\models\kc-daytona\readme.txt .\%RUNTIMEDIR%\cars\kc-daytona\readme.txt
if exist .\data\cars\models\kc-daytona\rpm1.rgb copy .\data\cars\models\kc-daytona\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-daytona\rpm1.rgb
if exist .\data\cars\models\kc-daytona\shadow.rgb copy .\data\cars\models\kc-daytona\shadow.rgb .\%RUNTIMEDIR%\cars\kc-daytona\shadow.rgb
if exist .\data\cars\models\kc-daytona\tex-wheel.rgb copy .\data\cars\models\kc-daytona\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-daytona\tex-wheel.rgb
if exist .\data\cars\models\kc-db4z\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-db4z\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-db4z\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-db4z
if exist .\data\cars\models\kc-db4z\kc-db4z.acc copy .\data\cars\models\kc-db4z\kc-db4z.acc .\%RUNTIMEDIR%\cars\kc-db4z\kc-db4z.acc
if exist .\data\cars\models\kc-db4z\kc-db4z-lod1.acc copy .\data\cars\models\kc-db4z\kc-db4z-lod1.acc .\%RUNTIMEDIR%\cars\kc-db4z\kc-db4z-lod1.acc
if exist .\data\cars\models\kc-db4z\kc-db4z-lod2.acc copy .\data\cars\models\kc-db4z\kc-db4z-lod2.acc .\%RUNTIMEDIR%\cars\kc-db4z\kc-db4z-lod2.acc
if exist .\data\cars\models\kc-db4z\kc-db4z-lod3.acc copy .\data\cars\models\kc-db4z\kc-db4z-lod3.acc .\%RUNTIMEDIR%\cars\kc-db4z\kc-db4z-lod3.acc
if exist .\data\cars\models\kc-db4z\kc-db4z.rgb copy .\data\cars\models\kc-db4z\kc-db4z.rgb .\%RUNTIMEDIR%\cars\kc-db4z\kc-db4z.rgb
if exist .\data\cars\models\kc-db4z\kc-db4z.xml copy .\data\cars\models\kc-db4z\kc-db4z.xml .\%RUNTIMEDIR%\cars\kc-db4z\kc-db4z.xml
if exist .\data\cars\models\kc-db4z\readme.txt copy .\data\cars\models\kc-db4z\readme.txt .\%RUNTIMEDIR%\cars\kc-db4z\readme.txt
if exist .\data\cars\models\kc-db4z\shadow.rgb copy .\data\cars\models\kc-db4z\shadow.rgb .\%RUNTIMEDIR%\cars\kc-db4z\shadow.rgb
if exist .\data\cars\models\kc-db4z\tex-wheel.rgb copy .\data\cars\models\kc-db4z\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-db4z\tex-wheel.rgb
if exist .\data\cars\models\kc-dbs\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-dbs\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-dbs\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-dbs
if exist .\data\cars\models\kc-dbs\kc-dbs.acc copy .\data\cars\models\kc-dbs\kc-dbs.acc .\%RUNTIMEDIR%\cars\kc-dbs\kc-dbs.acc
if exist .\data\cars\models\kc-dbs\kc-dbs-lod1.acc copy .\data\cars\models\kc-dbs\kc-dbs-lod1.acc .\%RUNTIMEDIR%\cars\kc-dbs\kc-dbs-lod1.acc
if exist .\data\cars\models\kc-dbs\kc-dbs-lod2.acc copy .\data\cars\models\kc-dbs\kc-dbs-lod2.acc .\%RUNTIMEDIR%\cars\kc-dbs\kc-dbs-lod2.acc
if exist .\data\cars\models\kc-dbs\kc-dbs.rgb copy .\data\cars\models\kc-dbs\kc-dbs.rgb .\%RUNTIMEDIR%\cars\kc-dbs\kc-dbs.rgb
if exist .\data\cars\models\kc-dbs\kc-dbs.xml copy .\data\cars\models\kc-dbs\kc-dbs.xml .\%RUNTIMEDIR%\cars\kc-dbs\kc-dbs.xml
if exist .\data\cars\models\kc-dbs\readme.txt copy .\data\cars\models\kc-dbs\readme.txt .\%RUNTIMEDIR%\cars\kc-dbs\readme.txt
if exist .\data\cars\models\kc-dbs\shadow.rgb copy .\data\cars\models\kc-dbs\shadow.rgb .\%RUNTIMEDIR%\cars\kc-dbs\shadow.rgb
if exist .\data\cars\models\kc-dbs\tex-wheel.rgb copy .\data\cars\models\kc-dbs\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-dbs\tex-wheel.rgb
if exist .\data\cars\models\kc-dino\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-dino\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-dino\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-dino
if exist .\data\cars\models\kc-dino\kc-dino.acc copy .\data\cars\models\kc-dino\kc-dino.acc .\%RUNTIMEDIR%\cars\kc-dino\kc-dino.acc
if exist .\data\cars\models\kc-dino\kc-dino-lod1.acc copy .\data\cars\models\kc-dino\kc-dino-lod1.acc .\%RUNTIMEDIR%\cars\kc-dino\kc-dino-lod1.acc
if exist .\data\cars\models\kc-dino\kc-dino-lod2.acc copy .\data\cars\models\kc-dino\kc-dino-lod2.acc .\%RUNTIMEDIR%\cars\kc-dino\kc-dino-lod2.acc
if exist .\data\cars\models\kc-dino\kc-dino.rgb copy .\data\cars\models\kc-dino\kc-dino.rgb .\%RUNTIMEDIR%\cars\kc-dino\kc-dino.rgb
if exist .\data\cars\models\kc-dino\kc-dino.xml copy .\data\cars\models\kc-dino\kc-dino.xml .\%RUNTIMEDIR%\cars\kc-dino\kc-dino.xml
if exist .\data\cars\models\kc-dino\kmh1.rgb copy .\data\cars\models\kc-dino\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-dino\kmh1.rgb
if exist .\data\cars\models\kc-dino\readme.txt copy .\data\cars\models\kc-dino\readme.txt .\%RUNTIMEDIR%\cars\kc-dino\readme.txt
if exist .\data\cars\models\kc-dino\rpm1.rgb copy .\data\cars\models\kc-dino\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-dino\rpm1.rgb
if exist .\data\cars\models\kc-dino\shadow.rgb copy .\data\cars\models\kc-dino\shadow.rgb .\%RUNTIMEDIR%\cars\kc-dino\shadow.rgb
if exist .\data\cars\models\kc-dino\tex-wheel.rgb copy .\data\cars\models\kc-dino\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-dino\tex-wheel.rgb
if exist .\data\cars\models\kc-ghibli\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-ghibli\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-ghibli\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-ghibli
if exist .\data\cars\models\kc-ghibli\kc-ghibli.acc copy .\data\cars\models\kc-ghibli\kc-ghibli.acc .\%RUNTIMEDIR%\cars\kc-ghibli\kc-ghibli.acc
if exist .\data\cars\models\kc-ghibli\kc-ghibli-lod1.acc copy .\data\cars\models\kc-ghibli\kc-ghibli-lod1.acc .\%RUNTIMEDIR%\cars\kc-ghibli\kc-ghibli-lod1.acc
if exist .\data\cars\models\kc-ghibli\kc-ghibli-lod2.acc copy .\data\cars\models\kc-ghibli\kc-ghibli-lod2.acc .\%RUNTIMEDIR%\cars\kc-ghibli\kc-ghibli-lod2.acc
if exist .\data\cars\models\kc-ghibli\kc-ghibli-lod3.acc copy .\data\cars\models\kc-ghibli\kc-ghibli-lod3.acc .\%RUNTIMEDIR%\cars\kc-ghibli\kc-ghibli-lod3.acc
if exist .\data\cars\models\kc-ghibli\kc-ghibli.rgb copy .\data\cars\models\kc-ghibli\kc-ghibli.rgb .\%RUNTIMEDIR%\cars\kc-ghibli\kc-ghibli.rgb
if exist .\data\cars\models\kc-ghibli\kc-ghibli.xml copy .\data\cars\models\kc-ghibli\kc-ghibli.xml .\%RUNTIMEDIR%\cars\kc-ghibli\kc-ghibli.xml
if exist .\data\cars\models\kc-ghibli\readme.txt copy .\data\cars\models\kc-ghibli\readme.txt .\%RUNTIMEDIR%\cars\kc-ghibli\readme.txt
if exist .\data\cars\models\kc-ghibli\shadow.rgb copy .\data\cars\models\kc-ghibli\shadow.rgb .\%RUNTIMEDIR%\cars\kc-ghibli\shadow.rgb
if exist .\data\cars\models\kc-ghibli\tex-wheel.rgb copy .\data\cars\models\kc-ghibli\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-ghibli\tex-wheel.rgb
if exist .\data\cars\models\kc-giulietta\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-giulietta\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-giulietta\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-giulietta
if exist .\data\cars\models\kc-giulietta\kc-giulietta.acc copy .\data\cars\models\kc-giulietta\kc-giulietta.acc .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta.acc
if exist .\data\cars\models\kc-giulietta\kc-giulietta-lod1.acc copy .\data\cars\models\kc-giulietta\kc-giulietta-lod1.acc .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta-lod1.acc
if exist .\data\cars\models\kc-giulietta\kc-giulietta-lod2.acc copy .\data\cars\models\kc-giulietta\kc-giulietta-lod2.acc .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta-lod2.acc
if exist .\data\cars\models\kc-giulietta\kc-giulietta-lod3.acc copy .\data\cars\models\kc-giulietta\kc-giulietta-lod3.acc .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta-lod3.acc
if exist .\data\cars\models\kc-giulietta\kc-giulietta-lod4.acc copy .\data\cars\models\kc-giulietta\kc-giulietta-lod4.acc .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta-lod4.acc
if exist .\data\cars\models\kc-giulietta\kc-giulietta.rgb copy .\data\cars\models\kc-giulietta\kc-giulietta.rgb .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta.rgb
if exist .\data\cars\models\kc-giulietta\kc-giulietta.xml copy .\data\cars\models\kc-giulietta\kc-giulietta.xml .\%RUNTIMEDIR%\cars\kc-giulietta\kc-giulietta.xml
if exist .\data\cars\models\kc-giulietta\readme.txt copy .\data\cars\models\kc-giulietta\readme.txt .\%RUNTIMEDIR%\cars\kc-giulietta\readme.txt
if exist .\data\cars\models\kc-giulietta\shadow.rgb copy .\data\cars\models\kc-giulietta\shadow.rgb .\%RUNTIMEDIR%\cars\kc-giulietta\shadow.rgb
if exist .\data\cars\models\kc-giulietta\tex-wheel.rgb copy .\data\cars\models\kc-giulietta\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-giulietta\tex-wheel.rgb
if exist .\data\cars\models\kc-grifo\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-grifo\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-grifo\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-grifo
if exist .\data\cars\models\kc-grifo\kc-grifo.acc copy .\data\cars\models\kc-grifo\kc-grifo.acc .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo.acc
if exist .\data\cars\models\kc-grifo\kc-grifo-lod1.acc copy .\data\cars\models\kc-grifo\kc-grifo-lod1.acc .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo-lod1.acc
if exist .\data\cars\models\kc-grifo\kc-grifo-lod2.acc copy .\data\cars\models\kc-grifo\kc-grifo-lod2.acc .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo-lod2.acc
if exist .\data\cars\models\kc-grifo\kc-grifo-lod3.acc copy .\data\cars\models\kc-grifo\kc-grifo-lod3.acc .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo-lod3.acc
if exist .\data\cars\models\kc-grifo\kc-grifo-lod4.acc copy .\data\cars\models\kc-grifo\kc-grifo-lod4.acc .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo-lod4.acc
if exist .\data\cars\models\kc-grifo\kc-grifo.rgb copy .\data\cars\models\kc-grifo\kc-grifo.rgb .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo.rgb
if exist .\data\cars\models\kc-grifo\kc-grifo.xml copy .\data\cars\models\kc-grifo\kc-grifo.xml .\%RUNTIMEDIR%\cars\kc-grifo\kc-grifo.xml
if exist .\data\cars\models\kc-grifo\kmh1.rgb copy .\data\cars\models\kc-grifo\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-grifo\kmh1.rgb
if exist .\data\cars\models\kc-grifo\readme.txt copy .\data\cars\models\kc-grifo\readme.txt .\%RUNTIMEDIR%\cars\kc-grifo\readme.txt
if exist .\data\cars\models\kc-grifo\rpm1.rgb copy .\data\cars\models\kc-grifo\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-grifo\rpm1.rgb
if exist .\data\cars\models\kc-grifo\shadow.rgb copy .\data\cars\models\kc-grifo\shadow.rgb .\%RUNTIMEDIR%\cars\kc-grifo\shadow.rgb
if exist .\data\cars\models\kc-grifo\tex-wheel.rgb copy .\data\cars\models\kc-grifo\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-grifo\tex-wheel.rgb
if exist .\data\cars\models\kc-gt40\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-gt40\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-gt40\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-gt40
if exist .\data\cars\models\kc-gt40\gt40.acc copy .\data\cars\models\kc-gt40\gt40.acc .\%RUNTIMEDIR%\cars\kc-gt40\gt40.acc
if exist .\data\cars\models\kc-gt40\kc-gt40.acc copy .\data\cars\models\kc-gt40\kc-gt40.acc .\%RUNTIMEDIR%\cars\kc-gt40\kc-gt40.acc
if exist .\data\cars\models\kc-gt40\kc-gt40-lod1.acc copy .\data\cars\models\kc-gt40\kc-gt40-lod1.acc .\%RUNTIMEDIR%\cars\kc-gt40\kc-gt40-lod1.acc
if exist .\data\cars\models\kc-gt40\kc-gt40-lod2.acc copy .\data\cars\models\kc-gt40\kc-gt40-lod2.acc .\%RUNTIMEDIR%\cars\kc-gt40\kc-gt40-lod2.acc
if exist .\data\cars\models\kc-gt40\kc-gt40-lod3.acc copy .\data\cars\models\kc-gt40\kc-gt40-lod3.acc .\%RUNTIMEDIR%\cars\kc-gt40\kc-gt40-lod3.acc
if exist .\data\cars\models\kc-gt40\kc-gt40.rgb copy .\data\cars\models\kc-gt40\kc-gt40.rgb .\%RUNTIMEDIR%\cars\kc-gt40\kc-gt40.rgb
if exist .\data\cars\models\kc-gt40\kc-gt40.xml copy .\data\cars\models\kc-gt40\kc-gt40.xml .\%RUNTIMEDIR%\cars\kc-gt40\kc-gt40.xml
if exist .\data\cars\models\kc-gt40\kmh1.rgb copy .\data\cars\models\kc-gt40\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-gt40\kmh1.rgb
if exist .\data\cars\models\kc-gt40\readme.txt copy .\data\cars\models\kc-gt40\readme.txt .\%RUNTIMEDIR%\cars\kc-gt40\readme.txt
if exist .\data\cars\models\kc-gt40\rpm1.rgb copy .\data\cars\models\kc-gt40\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-gt40\rpm1.rgb
if exist .\data\cars\models\kc-gt40\shadow.rgb copy .\data\cars\models\kc-gt40\shadow.rgb .\%RUNTIMEDIR%\cars\kc-gt40\shadow.rgb
if exist .\data\cars\models\kc-gt40\tex-wheel.rgb copy .\data\cars\models\kc-gt40\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-gt40\tex-wheel.rgb
if exist .\data\cars\models\kc-gto\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-gto\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-gto\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-gto
if exist .\data\cars\models\kc-gto\kc-gto.acc copy .\data\cars\models\kc-gto\kc-gto.acc .\%RUNTIMEDIR%\cars\kc-gto\kc-gto.acc
if exist .\data\cars\models\kc-gto\kc-gto-lod1.acc copy .\data\cars\models\kc-gto\kc-gto-lod1.acc .\%RUNTIMEDIR%\cars\kc-gto\kc-gto-lod1.acc
if exist .\data\cars\models\kc-gto\kc-gto-lod2.acc copy .\data\cars\models\kc-gto\kc-gto-lod2.acc .\%RUNTIMEDIR%\cars\kc-gto\kc-gto-lod2.acc
if exist .\data\cars\models\kc-gto\kc-gto-lod3.acc copy .\data\cars\models\kc-gto\kc-gto-lod3.acc .\%RUNTIMEDIR%\cars\kc-gto\kc-gto-lod3.acc
if exist .\data\cars\models\kc-gto\kc-gto-lod4.acc copy .\data\cars\models\kc-gto\kc-gto-lod4.acc .\%RUNTIMEDIR%\cars\kc-gto\kc-gto-lod4.acc
if exist .\data\cars\models\kc-gto\kc-gto.rgb copy .\data\cars\models\kc-gto\kc-gto.rgb .\%RUNTIMEDIR%\cars\kc-gto\kc-gto.rgb
if exist .\data\cars\models\kc-gto\kc-gto.xml copy .\data\cars\models\kc-gto\kc-gto.xml .\%RUNTIMEDIR%\cars\kc-gto\kc-gto.xml
if exist .\data\cars\models\kc-gto\kmh1.rgb copy .\data\cars\models\kc-gto\kmh1.rgb .\%RUNTIMEDIR%\cars\kc-gto\kmh1.rgb
if exist .\data\cars\models\kc-gto\readme.txt copy .\data\cars\models\kc-gto\readme.txt .\%RUNTIMEDIR%\cars\kc-gto\readme.txt
if exist .\data\cars\models\kc-gto\rpm1.rgb copy .\data\cars\models\kc-gto\rpm1.rgb .\%RUNTIMEDIR%\cars\kc-gto\rpm1.rgb
if exist .\data\cars\models\kc-gto\shadow.rgb copy .\data\cars\models\kc-gto\shadow.rgb .\%RUNTIMEDIR%\cars\kc-gto\shadow.rgb
if exist .\data\cars\models\kc-gto\tex-wheel.rgb copy .\data\cars\models\kc-gto\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-gto\tex-wheel.rgb
if exist .\data\cars\models\kc-gullwing\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-gullwing\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-gullwing\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-gullwing
if exist .\data\cars\models\kc-gullwing\kc-gullwing.acc copy .\data\cars\models\kc-gullwing\kc-gullwing.acc .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing.acc
if exist .\data\cars\models\kc-gullwing\kc-gullwing-lod1.acc copy .\data\cars\models\kc-gullwing\kc-gullwing-lod1.acc .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing-lod1.acc
if exist .\data\cars\models\kc-gullwing\kc-gullwing-lod2.acc copy .\data\cars\models\kc-gullwing\kc-gullwing-lod2.acc .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing-lod2.acc
if exist .\data\cars\models\kc-gullwing\kc-gullwing-lod3.acc copy .\data\cars\models\kc-gullwing\kc-gullwing-lod3.acc .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing-lod3.acc
if exist .\data\cars\models\kc-gullwing\kc-gullwing-lod4.acc copy .\data\cars\models\kc-gullwing\kc-gullwing-lod4.acc .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing-lod4.acc
if exist .\data\cars\models\kc-gullwing\kc-gullwing.rgb copy .\data\cars\models\kc-gullwing\kc-gullwing.rgb .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing.rgb
if exist .\data\cars\models\kc-gullwing\kc-gullwing.xml copy .\data\cars\models\kc-gullwing\kc-gullwing.xml .\%RUNTIMEDIR%\cars\kc-gullwing\kc-gullwing.xml
if exist .\data\cars\models\kc-gullwing\readme.txt copy .\data\cars\models\kc-gullwing\readme.txt .\%RUNTIMEDIR%\cars\kc-gullwing\readme.txt
if exist .\data\cars\models\kc-gullwing\shadow.rgb copy .\data\cars\models\kc-gullwing\shadow.rgb .\%RUNTIMEDIR%\cars\kc-gullwing\shadow.rgb
if exist .\data\cars\models\kc-gullwing\tex-wheel.rgb copy .\data\cars\models\kc-gullwing\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-gullwing\tex-wheel.rgb
if exist .\data\cars\models\kc-lightweight\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-lightweight\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-lightweight\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-lightweight
if exist .\data\cars\models\kc-lightweight\kc-lightweight.acc copy .\data\cars\models\kc-lightweight\kc-lightweight.acc .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight.acc
if exist .\data\cars\models\kc-lightweight\kc-lightweight-lod1.acc copy .\data\cars\models\kc-lightweight\kc-lightweight-lod1.acc .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight-lod1.acc
if exist .\data\cars\models\kc-lightweight\kc-lightweight-lod2.acc copy .\data\cars\models\kc-lightweight\kc-lightweight-lod2.acc .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight-lod2.acc
if exist .\data\cars\models\kc-lightweight\kc-lightweight-lod3.acc copy .\data\cars\models\kc-lightweight\kc-lightweight-lod3.acc .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight-lod3.acc
if exist .\data\cars\models\kc-lightweight\kc-lightweight-lod4.acc copy .\data\cars\models\kc-lightweight\kc-lightweight-lod4.acc .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight-lod4.acc
if exist .\data\cars\models\kc-lightweight\kc-lightweight.rgb copy .\data\cars\models\kc-lightweight\kc-lightweight.rgb .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight.rgb
if exist .\data\cars\models\kc-lightweight\kc-lightweight.xml copy .\data\cars\models\kc-lightweight\kc-lightweight.xml .\%RUNTIMEDIR%\cars\kc-lightweight\kc-lightweight.xml
if exist .\data\cars\models\kc-lightweight\readme.txt copy .\data\cars\models\kc-lightweight\readme.txt .\%RUNTIMEDIR%\cars\kc-lightweight\readme.txt
if exist .\data\cars\models\kc-lightweight\shadow.rgb copy .\data\cars\models\kc-lightweight\shadow.rgb .\%RUNTIMEDIR%\cars\kc-lightweight\shadow.rgb
if exist .\data\cars\models\kc-lightweight\tex-wheel.rgb copy .\data\cars\models\kc-lightweight\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-lightweight\tex-wheel.rgb
if exist .\data\cars\models\kc-mangusta\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-mangusta\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-mangusta\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-mangusta
if exist .\data\cars\models\kc-mangusta\kc-mangusta.acc copy .\data\cars\models\kc-mangusta\kc-mangusta.acc .\%RUNTIMEDIR%\cars\kc-mangusta\kc-mangusta.acc
if exist .\data\cars\models\kc-mangusta\kc-mangusta-lod1.acc copy .\data\cars\models\kc-mangusta\kc-mangusta-lod1.acc .\%RUNTIMEDIR%\cars\kc-mangusta\kc-mangusta-lod1.acc
if exist .\data\cars\models\kc-mangusta\kc-mangusta-lod2.acc copy .\data\cars\models\kc-mangusta\kc-mangusta-lod2.acc .\%RUNTIMEDIR%\cars\kc-mangusta\kc-mangusta-lod2.acc
if exist .\data\cars\models\kc-mangusta\kc-mangusta-lod3.acc copy .\data\cars\models\kc-mangusta\kc-mangusta-lod3.acc .\%RUNTIMEDIR%\cars\kc-mangusta\kc-mangusta-lod3.acc
if exist .\data\cars\models\kc-mangusta\kc-mangusta.rgb copy .\data\cars\models\kc-mangusta\kc-mangusta.rgb .\%RUNTIMEDIR%\cars\kc-mangusta\kc-mangusta.rgb
if exist .\data\cars\models\kc-mangusta\kc-mangusta.xml copy .\data\cars\models\kc-mangusta\kc-mangusta.xml .\%RUNTIMEDIR%\cars\kc-mangusta\kc-mangusta.xml
if exist .\data\cars\models\kc-mangusta\readme.txt copy .\data\cars\models\kc-mangusta\readme.txt .\%RUNTIMEDIR%\cars\kc-mangusta\readme.txt
if exist .\data\cars\models\kc-mangusta\shadow.rgb copy .\data\cars\models\kc-mangusta\shadow.rgb .\%RUNTIMEDIR%\cars\kc-mangusta\shadow.rgb
if exist .\data\cars\models\kc-mangusta\tex-wheel.rgb copy .\data\cars\models\kc-mangusta\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-mangusta\tex-wheel.rgb
if exist .\data\cars\models\kc-mclaren\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-mclaren\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-mclaren\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-mclaren
if exist .\data\cars\models\kc-mclaren\kc-mclaren.acc copy .\data\cars\models\kc-mclaren\kc-mclaren.acc .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren.acc
if exist .\data\cars\models\kc-mclaren\kc-mclaren-lod1.acc copy .\data\cars\models\kc-mclaren\kc-mclaren-lod1.acc .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren-lod1.acc
if exist .\data\cars\models\kc-mclaren\kc-mclaren-lod2.acc copy .\data\cars\models\kc-mclaren\kc-mclaren-lod2.acc .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren-lod2.acc
if exist .\data\cars\models\kc-mclaren\kc-mclaren-lod3.acc copy .\data\cars\models\kc-mclaren\kc-mclaren-lod3.acc .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren-lod3.acc
if exist .\data\cars\models\kc-mclaren\kc-mclaren-lod4.acc copy .\data\cars\models\kc-mclaren\kc-mclaren-lod4.acc .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren-lod4.acc
if exist .\data\cars\models\kc-mclaren\kc-mclaren.rgb copy .\data\cars\models\kc-mclaren\kc-mclaren.rgb .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren.rgb
if exist .\data\cars\models\kc-mclaren\kc-mclaren.xml copy .\data\cars\models\kc-mclaren\kc-mclaren.xml .\%RUNTIMEDIR%\cars\kc-mclaren\kc-mclaren.xml
if exist .\data\cars\models\kc-mclaren\readme.txt copy .\data\cars\models\kc-mclaren\readme.txt .\%RUNTIMEDIR%\cars\kc-mclaren\readme.txt
if exist .\data\cars\models\kc-mclaren\shadow.rgb copy .\data\cars\models\kc-mclaren\shadow.rgb .\%RUNTIMEDIR%\cars\kc-mclaren\shadow.rgb
if exist .\data\cars\models\kc-mclaren\tex-wheel.rgb copy .\data\cars\models\kc-mclaren\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-mclaren\tex-wheel.rgb
if exist .\data\cars\models\kc-mga\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-mga\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-mga\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-mga
if exist .\data\cars\models\kc-mga\kc-mga.acc copy .\data\cars\models\kc-mga\kc-mga.acc .\%RUNTIMEDIR%\cars\kc-mga\kc-mga.acc
if exist .\data\cars\models\kc-mga\kc-mga-lod1.acc copy .\data\cars\models\kc-mga\kc-mga-lod1.acc .\%RUNTIMEDIR%\cars\kc-mga\kc-mga-lod1.acc
if exist .\data\cars\models\kc-mga\kc-mga-lod2.acc copy .\data\cars\models\kc-mga\kc-mga-lod2.acc .\%RUNTIMEDIR%\cars\kc-mga\kc-mga-lod2.acc
if exist .\data\cars\models\kc-mga\kc-mga-lod3.acc copy .\data\cars\models\kc-mga\kc-mga-lod3.acc .\%RUNTIMEDIR%\cars\kc-mga\kc-mga-lod3.acc
if exist .\data\cars\models\kc-mga\kc-mga-lod4.acc copy .\data\cars\models\kc-mga\kc-mga-lod4.acc .\%RUNTIMEDIR%\cars\kc-mga\kc-mga-lod4.acc
if exist .\data\cars\models\kc-mga\kc-mga.rgb copy .\data\cars\models\kc-mga\kc-mga.rgb .\%RUNTIMEDIR%\cars\kc-mga\kc-mga.rgb
if exist .\data\cars\models\kc-mga\kc-mga.xml copy .\data\cars\models\kc-mga\kc-mga.xml .\%RUNTIMEDIR%\cars\kc-mga\kc-mga.xml
if exist .\data\cars\models\kc-mga\readme.txt copy .\data\cars\models\kc-mga\readme.txt .\%RUNTIMEDIR%\cars\kc-mga\readme.txt
if exist .\data\cars\models\kc-mga\shadow.rgb copy .\data\cars\models\kc-mga\shadow.rgb .\%RUNTIMEDIR%\cars\kc-mga\shadow.rgb
if exist .\data\cars\models\kc-mga\tex-wheel.rgb copy .\data\cars\models\kc-mga\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-mga\tex-wheel.rgb
if exist .\data\cars\models\kc-mgb\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-mgb\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-mgb\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-mgb
if exist .\data\cars\models\kc-mgb\kc-mgb.acc copy .\data\cars\models\kc-mgb\kc-mgb.acc .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb.acc
if exist .\data\cars\models\kc-mgb\kc-mgb-lod1.acc copy .\data\cars\models\kc-mgb\kc-mgb-lod1.acc .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb-lod1.acc
if exist .\data\cars\models\kc-mgb\kc-mgb-lod2.acc copy .\data\cars\models\kc-mgb\kc-mgb-lod2.acc .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb-lod2.acc
if exist .\data\cars\models\kc-mgb\kc-mgb-lod3.acc copy .\data\cars\models\kc-mgb\kc-mgb-lod3.acc .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb-lod3.acc
if exist .\data\cars\models\kc-mgb\kc-mgb-lod4.acc copy .\data\cars\models\kc-mgb\kc-mgb-lod4.acc .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb-lod4.acc
if exist .\data\cars\models\kc-mgb\kc-mgb.rgb copy .\data\cars\models\kc-mgb\kc-mgb.rgb .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb.rgb
if exist .\data\cars\models\kc-mgb\kc-mgb.xml copy .\data\cars\models\kc-mgb\kc-mgb.xml .\%RUNTIMEDIR%\cars\kc-mgb\kc-mgb.xml
if exist .\data\cars\models\kc-mgb\readme.txt copy .\data\cars\models\kc-mgb\readme.txt .\%RUNTIMEDIR%\cars\kc-mgb\readme.txt
if exist .\data\cars\models\kc-mgb\shadow.rgb copy .\data\cars\models\kc-mgb\shadow.rgb .\%RUNTIMEDIR%\cars\kc-mgb\shadow.rgb
if exist .\data\cars\models\kc-mgb\tex-wheel.rgb copy .\data\cars\models\kc-mgb\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-mgb\tex-wheel.rgb
if exist .\data\cars\models\kc-p4\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-p4\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-p4\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-p4
if exist .\data\cars\models\kc-p4\kc-p4.acc copy .\data\cars\models\kc-p4\kc-p4.acc .\%RUNTIMEDIR%\cars\kc-p4\kc-p4.acc
if exist .\data\cars\models\kc-p4\kc-p4-lod1.acc copy .\data\cars\models\kc-p4\kc-p4-lod1.acc .\%RUNTIMEDIR%\cars\kc-p4\kc-p4-lod1.acc
if exist .\data\cars\models\kc-p4\kc-p4-lod2.acc copy .\data\cars\models\kc-p4\kc-p4-lod2.acc .\%RUNTIMEDIR%\cars\kc-p4\kc-p4-lod2.acc
if exist .\data\cars\models\kc-p4\kc-p4-lod3.acc copy .\data\cars\models\kc-p4\kc-p4-lod3.acc .\%RUNTIMEDIR%\cars\kc-p4\kc-p4-lod3.acc
if exist .\data\cars\models\kc-p4\kc-p4.rgb copy .\data\cars\models\kc-p4\kc-p4.rgb .\%RUNTIMEDIR%\cars\kc-p4\kc-p4.rgb
if exist .\data\cars\models\kc-p4\kc-p4.xml copy .\data\cars\models\kc-p4\kc-p4.xml .\%RUNTIMEDIR%\cars\kc-p4\kc-p4.xml
if exist .\data\cars\models\kc-p4\readme.txt copy .\data\cars\models\kc-p4\readme.txt .\%RUNTIMEDIR%\cars\kc-p4\readme.txt
if exist .\data\cars\models\kc-p4\shadow.rgb copy .\data\cars\models\kc-p4\shadow.rgb .\%RUNTIMEDIR%\cars\kc-p4\shadow.rgb
if exist .\data\cars\models\kc-p4\tex-wheel.rgb copy .\data\cars\models\kc-p4\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-p4\tex-wheel.rgb
if exist .\data\cars\models\kc-p400s\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-p400s\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-p400s\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-p400s
if exist .\data\cars\models\kc-p400s\kc-p400s.acc copy .\data\cars\models\kc-p400s\kc-p400s.acc .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s.acc
if exist .\data\cars\models\kc-p400s\kc-p400s-lod1.acc copy .\data\cars\models\kc-p400s\kc-p400s-lod1.acc .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s-lod1.acc
if exist .\data\cars\models\kc-p400s\kc-p400s-lod2.acc copy .\data\cars\models\kc-p400s\kc-p400s-lod2.acc .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s-lod2.acc
if exist .\data\cars\models\kc-p400s\kc-p400s-lod3.acc copy .\data\cars\models\kc-p400s\kc-p400s-lod3.acc .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s-lod3.acc
if exist .\data\cars\models\kc-p400s\kc-p400s-lod4.acc copy .\data\cars\models\kc-p400s\kc-p400s-lod4.acc .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s-lod4.acc
if exist .\data\cars\models\kc-p400s\kc-p400s.rgb copy .\data\cars\models\kc-p400s\kc-p400s.rgb .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s.rgb
if exist .\data\cars\models\kc-p400s\kc-p400s.xml copy .\data\cars\models\kc-p400s\kc-p400s.xml .\%RUNTIMEDIR%\cars\kc-p400s\kc-p400s.xml
if exist .\data\cars\models\kc-p400s\readme.txt copy .\data\cars\models\kc-p400s\readme.txt .\%RUNTIMEDIR%\cars\kc-p400s\readme.txt
if exist .\data\cars\models\kc-p400s\shadow.rgb copy .\data\cars\models\kc-p400s\shadow.rgb .\%RUNTIMEDIR%\cars\kc-p400s\shadow.rgb
if exist .\data\cars\models\kc-p400s\tex-wheel.rgb copy .\data\cars\models\kc-p400s\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-p400s\tex-wheel.rgb
if exist .\data\cars\models\kc-stratos\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\kc-stratos\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\kc-stratos\*.* call .\create_dir .\%RUNTIMEDIR%\cars\kc-stratos
if exist .\data\cars\models\kc-stratos\kc-stratos.acc copy .\data\cars\models\kc-stratos\kc-stratos.acc .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos.acc
if exist .\data\cars\models\kc-stratos\kc-stratos-lod1.acc copy .\data\cars\models\kc-stratos\kc-stratos-lod1.acc .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos-lod1.acc
if exist .\data\cars\models\kc-stratos\kc-stratos-lod2.acc copy .\data\cars\models\kc-stratos\kc-stratos-lod2.acc .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos-lod2.acc
if exist .\data\cars\models\kc-stratos\kc-stratos-lod3.acc copy .\data\cars\models\kc-stratos\kc-stratos-lod3.acc .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos-lod3.acc
if exist .\data\cars\models\kc-stratos\kc-stratos-lod4.acc copy .\data\cars\models\kc-stratos\kc-stratos-lod4.acc .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos-lod4.acc
if exist .\data\cars\models\kc-stratos\kc-stratos.rgb copy .\data\cars\models\kc-stratos\kc-stratos.rgb .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos.rgb
if exist .\data\cars\models\kc-stratos\kc-stratos.xml copy .\data\cars\models\kc-stratos\kc-stratos.xml .\%RUNTIMEDIR%\cars\kc-stratos\kc-stratos.xml
if exist .\data\cars\models\kc-stratos\readme.txt copy .\data\cars\models\kc-stratos\readme.txt .\%RUNTIMEDIR%\cars\kc-stratos\readme.txt
if exist .\data\cars\models\kc-stratos\shadow.rgb copy .\data\cars\models\kc-stratos\shadow.rgb .\%RUNTIMEDIR%\cars\kc-stratos\shadow.rgb
if exist .\data\cars\models\kc-stratos\tex-wheel.rgb copy .\data\cars\models\kc-stratos\tex-wheel.rgb .\%RUNTIMEDIR%\cars\kc-stratos\tex-wheel.rgb
if exist .\data\cars\models\p406\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\p406\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\p406\*.* call .\create_dir .\%RUNTIMEDIR%\cars\p406
if exist .\data\cars\models\p406\p406.xml copy .\data\cars\models\p406\p406.xml .\%RUNTIMEDIR%\cars\p406\p406.xml
if exist .\data\cars\models\p406\p406.acc copy .\data\cars\models\p406\p406.acc .\%RUNTIMEDIR%\cars\p406\p406.acc
if exist .\data\cars\models\p406\p406-lod1.acc copy .\data\cars\models\p406\p406-lod1.acc .\%RUNTIMEDIR%\cars\p406\p406-lod1.acc
if exist .\data\cars\models\p406\p406-lod2.acc copy .\data\cars\models\p406\p406-lod2.acc .\%RUNTIMEDIR%\cars\p406\p406-lod2.acc
if exist .\data\cars\models\p406\p406-lod3.acc copy .\data\cars\models\p406\p406-lod3.acc .\%RUNTIMEDIR%\cars\p406\p406-lod3.acc
if exist .\data\cars\models\p406\p406-lod4.acc copy .\data\cars\models\p406\p406-lod4.acc .\%RUNTIMEDIR%\cars\p406\p406-lod4.acc
if exist .\data\cars\models\p406\p406-lod5.acc copy .\data\cars\models\p406\p406-lod5.acc .\%RUNTIMEDIR%\cars\p406\p406-lod5.acc
if exist .\data\cars\models\p406\p406-lod6.acc copy .\data\cars\models\p406\p406-lod6.acc .\%RUNTIMEDIR%\cars\p406\p406-lod6.acc
if exist .\data\cars\models\p406\p406-lod7.acc copy .\data\cars\models\p406\p406-lod7.acc .\%RUNTIMEDIR%\cars\p406\p406-lod7.acc
if exist .\data\cars\models\p406\p406.rgb copy .\data\cars\models\p406\p406.rgb .\%RUNTIMEDIR%\cars\p406\p406.rgb
if exist .\data\cars\models\p406\shadow.rgb copy .\data\cars\models\p406\shadow.rgb .\%RUNTIMEDIR%\cars\p406\shadow.rgb
if exist .\data\cars\models\p406\tex-wheel.rgb copy .\data\cars\models\p406\tex-wheel.rgb .\%RUNTIMEDIR%\cars\p406\tex-wheel.rgb
if exist .\data\cars\models\p406\readme.txt copy .\data\cars\models\p406\readme.txt .\%RUNTIMEDIR%\cars\p406\readme.txt
if exist .\data\cars\models\pw-206wrc\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-206wrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-206wrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-206wrc
if exist .\data\cars\models\pw-206wrc\pw-206wrc.xml copy .\data\cars\models\pw-206wrc\pw-206wrc.xml .\%RUNTIMEDIR%\cars\pw-206wrc\pw-206wrc.xml
if exist .\data\cars\models\pw-206wrc\pw-206wrc.rgb copy .\data\cars\models\pw-206wrc\pw-206wrc.rgb .\%RUNTIMEDIR%\cars\pw-206wrc\pw-206wrc.rgb
if exist .\data\cars\models\pw-206wrc\shadow.rgb copy .\data\cars\models\pw-206wrc\shadow.rgb .\%RUNTIMEDIR%\cars\pw-206wrc\shadow.rgb
if exist .\data\cars\models\pw-206wrc\tex-wheel.rgb copy .\data\cars\models\pw-206wrc\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-206wrc\tex-wheel.rgb
if exist .\data\cars\models\pw-206wrc\pw-206wrc.acc copy .\data\cars\models\pw-206wrc\pw-206wrc.acc .\%RUNTIMEDIR%\cars\pw-206wrc\pw-206wrc.acc
if exist .\data\cars\models\pw-206wrc\pw-206wrc-lod1.acc copy .\data\cars\models\pw-206wrc\pw-206wrc-lod1.acc .\%RUNTIMEDIR%\cars\pw-206wrc\pw-206wrc-lod1.acc
if exist .\data\cars\models\pw-206wrc\pw-206wrc-lod2.acc copy .\data\cars\models\pw-206wrc\pw-206wrc-lod2.acc .\%RUNTIMEDIR%\cars\pw-206wrc\pw-206wrc-lod2.acc
if exist .\data\cars\models\pw-206wrc\readme.txt copy .\data\cars\models\pw-206wrc\readme.txt .\%RUNTIMEDIR%\cars\pw-206wrc\readme.txt
if exist .\data\cars\models\pw-306wrc\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-306wrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-306wrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-306wrc
if exist .\data\cars\models\pw-306wrc\pw-306wrc.xml copy .\data\cars\models\pw-306wrc\pw-306wrc.xml .\%RUNTIMEDIR%\cars\pw-306wrc\pw-306wrc.xml
if exist .\data\cars\models\pw-306wrc\pw-306wrc.rgb copy .\data\cars\models\pw-306wrc\pw-306wrc.rgb .\%RUNTIMEDIR%\cars\pw-306wrc\pw-306wrc.rgb
if exist .\data\cars\models\pw-306wrc\shadow.rgb copy .\data\cars\models\pw-306wrc\shadow.rgb .\%RUNTIMEDIR%\cars\pw-306wrc\shadow.rgb
if exist .\data\cars\models\pw-306wrc\tex-wheel.rgb copy .\data\cars\models\pw-306wrc\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-306wrc\tex-wheel.rgb
if exist .\data\cars\models\pw-306wrc\pw-306wrc.acc copy .\data\cars\models\pw-306wrc\pw-306wrc.acc .\%RUNTIMEDIR%\cars\pw-306wrc\pw-306wrc.acc
if exist .\data\cars\models\pw-306wrc\pw-306wrc-lod1.acc copy .\data\cars\models\pw-306wrc\pw-306wrc-lod1.acc .\%RUNTIMEDIR%\cars\pw-306wrc\pw-306wrc-lod1.acc
if exist .\data\cars\models\pw-306wrc\pw-306wrc-lod2.acc copy .\data\cars\models\pw-306wrc\pw-306wrc-lod2.acc .\%RUNTIMEDIR%\cars\pw-306wrc\pw-306wrc-lod2.acc
if exist .\data\cars\models\pw-306wrc\readme.txt copy .\data\cars\models\pw-306wrc\readme.txt .\%RUNTIMEDIR%\cars\pw-306wrc\readme.txt
if exist .\data\cars\models\pw-corollawrc\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-corollawrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-corollawrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-corollawrc
if exist .\data\cars\models\pw-corollawrc\pw-corollawrc.xml copy .\data\cars\models\pw-corollawrc\pw-corollawrc.xml .\%RUNTIMEDIR%\cars\pw-corollawrc\pw-corollawrc.xml
if exist .\data\cars\models\pw-corollawrc\pw-corollawrc.rgb copy .\data\cars\models\pw-corollawrc\pw-corollawrc.rgb .\%RUNTIMEDIR%\cars\pw-corollawrc\pw-corollawrc.rgb
if exist .\data\cars\models\pw-corollawrc\shadow.rgb copy .\data\cars\models\pw-corollawrc\shadow.rgb .\%RUNTIMEDIR%\cars\pw-corollawrc\shadow.rgb
if exist .\data\cars\models\pw-corollawrc\tex-wheel.rgb copy .\data\cars\models\pw-corollawrc\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-corollawrc\tex-wheel.rgb
if exist .\data\cars\models\pw-corollawrc\pw-corollawrc.acc copy .\data\cars\models\pw-corollawrc\pw-corollawrc.acc .\%RUNTIMEDIR%\cars\pw-corollawrc\pw-corollawrc.acc
if exist .\data\cars\models\pw-corollawrc\pw-corollawrc-lod1.acc copy .\data\cars\models\pw-corollawrc\pw-corollawrc-lod1.acc .\%RUNTIMEDIR%\cars\pw-corollawrc\pw-corollawrc-lod1.acc
if exist .\data\cars\models\pw-corollawrc\pw-corollawrc-lod2.acc copy .\data\cars\models\pw-corollawrc\pw-corollawrc-lod2.acc .\%RUNTIMEDIR%\cars\pw-corollawrc\pw-corollawrc-lod2.acc
if exist .\data\cars\models\pw-corollawrc\readme.txt copy .\data\cars\models\pw-corollawrc\readme.txt .\%RUNTIMEDIR%\cars\pw-corollawrc\readme.txt
if exist .\data\cars\models\pw-evoviwrc\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-evoviwrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-evoviwrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-evoviwrc
if exist .\data\cars\models\pw-evoviwrc\pw-evoviwrc.xml copy .\data\cars\models\pw-evoviwrc\pw-evoviwrc.xml .\%RUNTIMEDIR%\cars\pw-evoviwrc\pw-evoviwrc.xml
if exist .\data\cars\models\pw-evoviwrc\pw-evoviwrc.rgb copy .\data\cars\models\pw-evoviwrc\pw-evoviwrc.rgb .\%RUNTIMEDIR%\cars\pw-evoviwrc\pw-evoviwrc.rgb
if exist .\data\cars\models\pw-evoviwrc\shadow.rgb copy .\data\cars\models\pw-evoviwrc\shadow.rgb .\%RUNTIMEDIR%\cars\pw-evoviwrc\shadow.rgb
if exist .\data\cars\models\pw-evoviwrc\tex-wheel.rgb copy .\data\cars\models\pw-evoviwrc\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-evoviwrc\tex-wheel.rgb
if exist .\data\cars\models\pw-evoviwrc\pw-evoviwrc.acc copy .\data\cars\models\pw-evoviwrc\pw-evoviwrc.acc .\%RUNTIMEDIR%\cars\pw-evoviwrc\pw-evoviwrc.acc
if exist .\data\cars\models\pw-evoviwrc\pw-evoviwrc-lod1.acc copy .\data\cars\models\pw-evoviwrc\pw-evoviwrc-lod1.acc .\%RUNTIMEDIR%\cars\pw-evoviwrc\pw-evoviwrc-lod1.acc
if exist .\data\cars\models\pw-evoviwrc\pw-evoviwrc-lod2.acc copy .\data\cars\models\pw-evoviwrc\pw-evoviwrc-lod2.acc .\%RUNTIMEDIR%\cars\pw-evoviwrc\pw-evoviwrc-lod2.acc
if exist .\data\cars\models\pw-evoviwrc\readme.txt copy .\data\cars\models\pw-evoviwrc\readme.txt .\%RUNTIMEDIR%\cars\pw-evoviwrc\readme.txt
if exist .\data\cars\models\pw-evovwrc-k\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-evovwrc-k\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-evovwrc-k\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-evovwrc-k
if exist .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k.xml copy .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k.xml .\%RUNTIMEDIR%\cars\pw-evovwrc-k\pw-evovwrc-k.xml
if exist .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k.rgb copy .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k.rgb .\%RUNTIMEDIR%\cars\pw-evovwrc-k\pw-evovwrc-k.rgb
if exist .\data\cars\models\pw-evovwrc-k\shadow.rgb copy .\data\cars\models\pw-evovwrc-k\shadow.rgb .\%RUNTIMEDIR%\cars\pw-evovwrc-k\shadow.rgb
if exist .\data\cars\models\pw-evovwrc-k\tex-wheel.rgb copy .\data\cars\models\pw-evovwrc-k\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-evovwrc-k\tex-wheel.rgb
if exist .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k.acc copy .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k.acc .\%RUNTIMEDIR%\cars\pw-evovwrc-k\pw-evovwrc-k.acc
if exist .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k-lod1.acc copy .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k-lod1.acc .\%RUNTIMEDIR%\cars\pw-evovwrc-k\pw-evovwrc-k-lod1.acc
if exist .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k-lod2.acc copy .\data\cars\models\pw-evovwrc-k\pw-evovwrc-k-lod2.acc .\%RUNTIMEDIR%\cars\pw-evovwrc-k\pw-evovwrc-k-lod2.acc
if exist .\data\cars\models\pw-evovwrc-k\readme.txt copy .\data\cars\models\pw-evovwrc-k\readme.txt .\%RUNTIMEDIR%\cars\pw-evovwrc-k\readme.txt
if exist .\data\cars\models\pw-focuswrc\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-focuswrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-focuswrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-focuswrc
if exist .\data\cars\models\pw-focuswrc\pw-focuswrc.xml copy .\data\cars\models\pw-focuswrc\pw-focuswrc.xml .\%RUNTIMEDIR%\cars\pw-focuswrc\pw-focuswrc.xml
if exist .\data\cars\models\pw-focuswrc\pw-focuswrc.rgb copy .\data\cars\models\pw-focuswrc\pw-focuswrc.rgb .\%RUNTIMEDIR%\cars\pw-focuswrc\pw-focuswrc.rgb
if exist .\data\cars\models\pw-focuswrc\shadow.rgb copy .\data\cars\models\pw-focuswrc\shadow.rgb .\%RUNTIMEDIR%\cars\pw-focuswrc\shadow.rgb
if exist .\data\cars\models\pw-focuswrc\tex-wheel.rgb copy .\data\cars\models\pw-focuswrc\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-focuswrc\tex-wheel.rgb
if exist .\data\cars\models\pw-focuswrc\pw-focuswrc.acc copy .\data\cars\models\pw-focuswrc\pw-focuswrc.acc .\%RUNTIMEDIR%\cars\pw-focuswrc\pw-focuswrc.acc
if exist .\data\cars\models\pw-focuswrc\pw-focuswrc-lod1.acc copy .\data\cars\models\pw-focuswrc\pw-focuswrc-lod1.acc .\%RUNTIMEDIR%\cars\pw-focuswrc\pw-focuswrc-lod1.acc
if exist .\data\cars\models\pw-focuswrc\pw-focuswrc-lod2.acc copy .\data\cars\models\pw-focuswrc\pw-focuswrc-lod2.acc .\%RUNTIMEDIR%\cars\pw-focuswrc\pw-focuswrc-lod2.acc
if exist .\data\cars\models\pw-focuswrc\readme.txt copy .\data\cars\models\pw-focuswrc\readme.txt .\%RUNTIMEDIR%\cars\pw-focuswrc\readme.txt
if exist .\data\cars\models\pw-imprezawrc\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\cars\models\pw-imprezawrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars
if exist .\data\cars\models\pw-imprezawrc\*.* call .\create_dir .\%RUNTIMEDIR%\cars\pw-imprezawrc
if exist .\data\cars\models\pw-imprezawrc\pw-imprezawrc.xml copy .\data\cars\models\pw-imprezawrc\pw-imprezawrc.xml .\%RUNTIMEDIR%\cars\pw-imprezawrc\pw-imprezawrc.xml
if exist .\data\cars\models\pw-imprezawrc\pw-imprezawrc.rgb copy .\data\cars\models\pw-imprezawrc\pw-imprezawrc.rgb .\%RUNTIMEDIR%\cars\pw-imprezawrc\pw-imprezawrc.rgb
if exist .\data\cars\models\pw-imprezawrc\shadow.rgb copy .\data\cars\models\pw-imprezawrc\shadow.rgb .\%RUNTIMEDIR%\cars\pw-imprezawrc\shadow.rgb
if exist .\data\cars\models\pw-imprezawrc\tex-wheel.rgb copy .\data\cars\models\pw-imprezawrc\tex-wheel.rgb .\%RUNTIMEDIR%\cars\pw-imprezawrc\tex-wheel.rgb
if exist .\data\cars\models\pw-imprezawrc\pw-imprezawrc.acc copy .\data\cars\models\pw-imprezawrc\pw-imprezawrc.acc .\%RUNTIMEDIR%\cars\pw-imprezawrc\pw-imprezawrc.acc
if exist .\data\cars\models\pw-imprezawrc\pw-imprezawrc-lod1.acc copy .\data\cars\models\pw-imprezawrc\pw-imprezawrc-lod1.acc .\%RUNTIMEDIR%\cars\pw-imprezawrc\pw-imprezawrc-lod1.acc
if exist .\data\cars\models\pw-imprezawrc\pw-imprezawrc-lod2.acc copy .\data\cars\models\pw-imprezawrc\pw-imprezawrc-lod2.acc .\%RUNTIMEDIR%\cars\pw-imprezawrc\pw-imprezawrc-lod2.acc
if exist .\data\cars\models\pw-imprezawrc\readme.txt copy .\data\cars\models\pw-imprezawrc\readme.txt .\%RUNTIMEDIR%\cars\pw-imprezawrc\readme.txt
if exist .\data\data\fonts\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\fonts\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\fonts\*.* call .\create_dir .\%RUNTIMEDIR%\data\fonts
if exist .\data\data\fonts\b5.glf copy .\data\data\fonts\b5.glf .\%RUNTIMEDIR%\data\fonts\b5.glf
if exist .\data\data\fonts\b6.glf copy .\data\data\fonts\b6.glf .\%RUNTIMEDIR%\data\fonts\b6.glf
if exist .\data\data\fonts\b7.glf copy .\data\data\fonts\b7.glf .\%RUNTIMEDIR%\data\fonts\b7.glf
if exist .\data\data\fonts\digital.glf copy .\data\data\fonts\digital.glf .\%RUNTIMEDIR%\data\fonts\digital.glf
if exist .\data\data\fonts\fragile.glf copy .\data\data\fonts\fragile.glf .\%RUNTIMEDIR%\data\fonts\fragile.glf
if exist .\data\data\img\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\img\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\img\*.* call .\create_dir .\%RUNTIMEDIR%\data\img
if exist .\data\data\img\arrow-down.png copy .\data\data\img\arrow-down.png .\%RUNTIMEDIR%\data\img\arrow-down.png
if exist .\data\data\img\arrow-down-pushed.png copy .\data\data\img\arrow-down-pushed.png .\%RUNTIMEDIR%\data\img\arrow-down-pushed.png
if exist .\data\data\img\arrow-left.png copy .\data\data\img\arrow-left.png .\%RUNTIMEDIR%\data\img\arrow-left.png
if exist .\data\data\img\arrow-left-pushed.png copy .\data\data\img\arrow-left-pushed.png .\%RUNTIMEDIR%\data\img\arrow-left-pushed.png
if exist .\data\data\img\arrow-right.png copy .\data\data\img\arrow-right.png .\%RUNTIMEDIR%\data\img\arrow-right.png
if exist .\data\data\img\arrow-right-pushed.png copy .\data\data\img\arrow-right-pushed.png .\%RUNTIMEDIR%\data\img\arrow-right-pushed.png
if exist .\data\data\img\arrow-up.png copy .\data\data\img\arrow-up.png .\%RUNTIMEDIR%\data\img\arrow-up.png
if exist .\data\data\img\arrow-up-pushed.png copy .\data\data\img\arrow-up-pushed.png .\%RUNTIMEDIR%\data\img\arrow-up-pushed.png
if exist .\data\data\img\ruler.png copy .\data\data\img\ruler.png .\%RUNTIMEDIR%\data\img\ruler.png
if exist .\data\data\img\ruler-pushed.png copy .\data\data\img\ruler-pushed.png .\%RUNTIMEDIR%\data\img\ruler-pushed.png
if exist .\data\data\img\splash-ctrlconf.png copy .\data\data\img\splash-ctrlconf.png .\%RUNTIMEDIR%\data\img\splash-ctrlconf.png
if exist .\data\data\img\splash-dtm.png copy .\data\data\img\splash-dtm.png .\%RUNTIMEDIR%\data\img\splash-dtm.png
if exist .\data\data\img\splash-dtmstart.png copy .\data\data\img\splash-dtmstart.png .\%RUNTIMEDIR%\data\img\splash-dtmstart.png
if exist .\data\data\img\splash-filesel.png copy .\data\data\img\splash-filesel.png .\%RUNTIMEDIR%\data\img\splash-filesel.png
if exist .\data\data\img\splash-graphconf.png copy .\data\data\img\splash-graphconf.png .\%RUNTIMEDIR%\data\img\splash-graphconf.png
if exist .\data\data\img\splash-graphic.png copy .\data\data\img\splash-graphic.png .\%RUNTIMEDIR%\data\img\splash-graphic.png
if exist .\data\data\img\splash-joycal.png copy .\data\data\img\splash-joycal.png .\%RUNTIMEDIR%\data\img\splash-joycal.png
if exist .\data\data\img\splash-joyconf.png copy .\data\data\img\splash-joyconf.png .\%RUNTIMEDIR%\data\img\splash-joyconf.png
if exist .\data\data\img\splash-keyconf.png copy .\data\data\img\splash-keyconf.png .\%RUNTIMEDIR%\data\img\splash-keyconf.png
if exist .\data\data\img\splash-main.png copy .\data\data\img\splash-main.png .\%RUNTIMEDIR%\data\img\splash-main.png
if exist .\data\data\img\splash-mousecal.png copy .\data\data\img\splash-mousecal.png .\%RUNTIMEDIR%\data\img\splash-mousecal.png
if exist .\data\data\img\splash-mouseconf.png copy .\data\data\img\splash-mouseconf.png .\%RUNTIMEDIR%\data\img\splash-mouseconf.png
if exist .\data\data\img\splash-options.png copy .\data\data\img\splash-options.png .\%RUNTIMEDIR%\data\img\splash-options.png
if exist .\data\data\img\splash.png copy .\data\data\img\splash.png .\%RUNTIMEDIR%\data\img\splash.png
if exist .\data\data\img\splash-practice.png copy .\data\data\img\splash-practice.png .\%RUNTIMEDIR%\data\img\splash-practice.png
if exist .\data\data\img\splash-prsess.png copy .\data\data\img\splash-prsess.png .\%RUNTIMEDIR%\data\img\splash-prsess.png
if exist .\data\data\img\splash-qrdrv.png copy .\data\data\img\splash-qrdrv.png .\%RUNTIMEDIR%\data\img\splash-qrdrv.png
if exist .\data\data\img\splash-qrloading.png copy .\data\data\img\splash-qrloading.png .\%RUNTIMEDIR%\data\img\splash-qrloading.png
if exist .\data\data\img\splash-qr.png copy .\data\data\img\splash-qr.png .\%RUNTIMEDIR%\data\img\splash-qr.png
if exist .\data\data\img\splash-qrtrk.png copy .\data\data\img\splash-qrtrk.png .\%RUNTIMEDIR%\data\img\splash-qrtrk.png
if exist .\data\data\img\splash-quit.png copy .\data\data\img\splash-quit.png .\%RUNTIMEDIR%\data\img\splash-quit.png
if exist .\data\data\img\splash-raceopt.png copy .\data\data\img\splash-raceopt.png .\%RUNTIMEDIR%\data\img\splash-raceopt.png
if exist .\data\data\img\splash-result.png copy .\data\data\img\splash-result.png .\%RUNTIMEDIR%\data\img\splash-result.png
if exist .\data\data\img\splash-run-practice.png copy .\data\data\img\splash-run-practice.png .\%RUNTIMEDIR%\data\img\splash-run-practice.png
if exist .\data\data\img\splash-single-player.png copy .\data\data\img\splash-single-player.png .\%RUNTIMEDIR%\data\img\splash-single-player.png
if exist .\data\data\img\splash-simucfg.png copy .\data\data\img\splash-simucfg.png .\%RUNTIMEDIR%\data\img\splash-simucfg.png
if exist .\data\data\menu\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\menu\*.* call .\create_dir .\%RUNTIMEDIR%\menu
if exist .\data\data\menu\entry.xml copy .\data\data\menu\entry.xml .\%RUNTIMEDIR%\menu\entry.xml
if exist .\data\data\objects\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\objects\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\objects\*.* call .\create_dir .\%RUNTIMEDIR%\data\objects
if exist .\data\data\objects\ad1.ac copy .\data\data\objects\ad1.ac .\%RUNTIMEDIR%\data\objects\ad1.ac
if exist .\data\data\objects\bridge.ac copy .\data\data\objects\bridge.ac .\%RUNTIMEDIR%\data\objects\bridge.ac
if exist .\data\data\objects\bridge-arch.ac copy .\data\data\objects\bridge-arch.ac .\%RUNTIMEDIR%\data\objects\bridge-arch.ac
if exist .\data\data\objects\building1.ac copy .\data\data\objects\building1.ac .\%RUNTIMEDIR%\data\objects\building1.ac
if exist .\data\data\objects\building2.ac copy .\data\data\objects\building2.ac .\%RUNTIMEDIR%\data\objects\building2.ac
if exist .\data\data\objects\forest1.ac copy .\data\data\objects\forest1.ac .\%RUNTIMEDIR%\data\objects\forest1.ac
if exist .\data\data\objects\forest2.ac copy .\data\data\objects\forest2.ac .\%RUNTIMEDIR%\data\objects\forest2.ac
if exist .\data\data\objects\forest3.ac copy .\data\data\objects\forest3.ac .\%RUNTIMEDIR%\data\objects\forest3.ac
if exist .\data\data\objects\needle.ac copy .\data\data\objects\needle.ac .\%RUNTIMEDIR%\data\objects\needle.ac
if exist .\data\data\objects\stadium1.ac copy .\data\data\objects\stadium1.ac .\%RUNTIMEDIR%\data\objects\stadium1.ac
if exist .\data\data\objects\stand-inter.ac copy .\data\data\objects\stand-inter.ac .\%RUNTIMEDIR%\data\objects\stand-inter.ac
if exist .\data\data\objects\stand-main.ac copy .\data\data\objects\stand-main.ac .\%RUNTIMEDIR%\data\objects\stand-main.ac
if exist .\data\data\objects\stand-wall.ac copy .\data\data\objects\stand-wall.ac .\%RUNTIMEDIR%\data\objects\stand-wall.ac
if exist .\data\data\objects\tree10.ac copy .\data\data\objects\tree10.ac .\%RUNTIMEDIR%\data\objects\tree10.ac
if exist .\data\data\objects\tree11.ac copy .\data\data\objects\tree11.ac .\%RUNTIMEDIR%\data\objects\tree11.ac
if exist .\data\data\objects\tree12.ac copy .\data\data\objects\tree12.ac .\%RUNTIMEDIR%\data\objects\tree12.ac
if exist .\data\data\objects\tree13.ac copy .\data\data\objects\tree13.ac .\%RUNTIMEDIR%\data\objects\tree13.ac
if exist .\data\data\objects\tree14.ac copy .\data\data\objects\tree14.ac .\%RUNTIMEDIR%\data\objects\tree14.ac
if exist .\data\data\objects\tree15.ac copy .\data\data\objects\tree15.ac .\%RUNTIMEDIR%\data\objects\tree15.ac
if exist .\data\data\objects\tree16.ac copy .\data\data\objects\tree16.ac .\%RUNTIMEDIR%\data\objects\tree16.ac
if exist .\data\data\objects\tree17.ac copy .\data\data\objects\tree17.ac .\%RUNTIMEDIR%\data\objects\tree17.ac
if exist .\data\data\objects\tree1.ac copy .\data\data\objects\tree1.ac .\%RUNTIMEDIR%\data\objects\tree1.ac
if exist .\data\data\objects\tree2.ac copy .\data\data\objects\tree2.ac .\%RUNTIMEDIR%\data\objects\tree2.ac
if exist .\data\data\objects\tree3.ac copy .\data\data\objects\tree3.ac .\%RUNTIMEDIR%\data\objects\tree3.ac
if exist .\data\data\objects\tree4.ac copy .\data\data\objects\tree4.ac .\%RUNTIMEDIR%\data\objects\tree4.ac
if exist .\data\data\objects\tree5.ac copy .\data\data\objects\tree5.ac .\%RUNTIMEDIR%\data\objects\tree5.ac
if exist .\data\data\objects\tree6.ac copy .\data\data\objects\tree6.ac .\%RUNTIMEDIR%\data\objects\tree6.ac
if exist .\data\data\objects\tree7.ac copy .\data\data\objects\tree7.ac .\%RUNTIMEDIR%\data\objects\tree7.ac
if exist .\data\data\objects\tree8.ac copy .\data\data\objects\tree8.ac .\%RUNTIMEDIR%\data\objects\tree8.ac
if exist .\data\data\objects\tree9.ac copy .\data\data\objects\tree9.ac .\%RUNTIMEDIR%\data\objects\tree9.ac
if exist .\data\data\objects\treeg1.ac copy .\data\data\objects\treeg1.ac .\%RUNTIMEDIR%\data\objects\treeg1.ac
if exist .\data\data\sound\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\sound\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\sound\*.* call .\create_dir .\%RUNTIMEDIR%\data\sound
if exist .\data\data\sound\axle.wav copy .\data\data\sound\axle.wav .\%RUNTIMEDIR%\data\sound\axle.wav
if exist .\data\data\sound\boom.wav copy .\data\data\sound\boom.wav .\%RUNTIMEDIR%\data\sound\boom.wav
if exist .\data\data\sound\bottom_crash.wav copy .\data\data\sound\bottom_crash.wav .\%RUNTIMEDIR%\data\sound\bottom_crash.wav
if exist .\data\data\sound\corolla1400hi2.wav copy .\data\data\sound\corolla1400hi2.wav .\%RUNTIMEDIR%\data\sound\corolla1400hi2.wav
if exist .\data\data\sound\corolla1400hi.wav copy .\data\data\sound\corolla1400hi.wav .\%RUNTIMEDIR%\data\sound\corolla1400hi.wav
if exist .\data\data\sound\corolla1400.wav copy .\data\data\sound\corolla1400.wav .\%RUNTIMEDIR%\data\sound\corolla1400.wav
if exist .\data\data\sound\corolla1.wav copy .\data\data\sound\corolla1.wav .\%RUNTIMEDIR%\data\sound\corolla1.wav
if exist .\data\data\sound\corolla_l.wav copy .\data\data\sound\corolla_l.wav .\%RUNTIMEDIR%\data\sound\corolla_l.wav
if exist .\data\data\sound\crash1.wav copy .\data\data\sound\crash1.wav .\%RUNTIMEDIR%\data\sound\crash1.wav
if exist .\data\data\sound\crash2.wav copy .\data\data\sound\crash2.wav .\%RUNTIMEDIR%\data\sound\crash2.wav
if exist .\data\data\sound\crash3.wav copy .\data\data\sound\crash3.wav .\%RUNTIMEDIR%\data\sound\crash3.wav
if exist .\data\data\sound\crash4.wav copy .\data\data\sound\crash4.wav .\%RUNTIMEDIR%\data\sound\crash4.wav
if exist .\data\data\sound\crash5.wav copy .\data\data\sound\crash5.wav .\%RUNTIMEDIR%\data\sound\crash5.wav
if exist .\data\data\sound\crash6.wav copy .\data\data\sound\crash6.wav .\%RUNTIMEDIR%\data\sound\crash6.wav
if exist .\data\data\sound\engine-10.wav copy .\data\data\sound\engine-10.wav .\%RUNTIMEDIR%\data\sound\engine-10.wav
if exist .\data\data\sound\engine-11.wav copy .\data\data\sound\engine-11.wav .\%RUNTIMEDIR%\data\sound\engine-11.wav
if exist .\data\data\sound\engine-12.wav copy .\data\data\sound\engine-12.wav .\%RUNTIMEDIR%\data\sound\engine-12.wav
if exist .\data\data\sound\engine-1.wav copy .\data\data\sound\engine-1.wav .\%RUNTIMEDIR%\data\sound\engine-1.wav
if exist .\data\data\sound\engine-2t.wav copy .\data\data\sound\engine-2t.wav .\%RUNTIMEDIR%\data\sound\engine-2t.wav
if exist .\data\data\sound\engine-2.wav copy .\data\data\sound\engine-2.wav .\%RUNTIMEDIR%\data\sound\engine-2.wav
if exist .\data\data\sound\engine-3.wav copy .\data\data\sound\engine-3.wav .\%RUNTIMEDIR%\data\sound\engine-3.wav
if exist .\data\data\sound\engine-4.wav copy .\data\data\sound\engine-4.wav .\%RUNTIMEDIR%\data\sound\engine-4.wav
if exist .\data\data\sound\engine-5.wav copy .\data\data\sound\engine-5.wav .\%RUNTIMEDIR%\data\sound\engine-5.wav
if exist .\data\data\sound\engine-7.wav copy .\data\data\sound\engine-7.wav .\%RUNTIMEDIR%\data\sound\engine-7.wav
if exist .\data\data\sound\engine-8.wav copy .\data\data\sound\engine-8.wav .\%RUNTIMEDIR%\data\sound\engine-8.wav
if exist .\data\data\sound\engine-9.wav copy .\data\data\sound\engine-9.wav .\%RUNTIMEDIR%\data\sound\engine-9.wav
if exist .\data\data\sound\engine-torcs.wav copy .\data\data\sound\engine-torcs.wav .\%RUNTIMEDIR%\data\sound\engine-torcs.wav
if exist .\data\data\sound\ferrarif355.wav copy .\data\data\sound\ferrarif355.wav .\%RUNTIMEDIR%\data\sound\ferrarif355.wav
if exist .\data\data\sound\ferrarif50.wav copy .\data\data\sound\ferrarif50.wav .\%RUNTIMEDIR%\data\sound\ferrarif50.wav
if exist .\data\data\sound\lamborghinidiablo_lp.wav copy .\data\data\sound\lamborghinidiablo_lp.wav .\%RUNTIMEDIR%\data\sound\lamborghinidiablo_lp.wav
if exist .\data\data\sound\lamborghinidiablo.wav copy .\data\data\sound\lamborghinidiablo.wav .\%RUNTIMEDIR%\data\sound\lamborghinidiablo.wav
if exist .\data\data\sound\locked.wav copy .\data\data\sound\locked.wav .\%RUNTIMEDIR%\data\sound\locked.wav
if exist .\data\data\sound\mclarenf1.wav copy .\data\data\sound\mclarenf1.wav .\%RUNTIMEDIR%\data\sound\mclarenf1.wav
if exist .\data\data\sound\out_of_road-3.wav copy .\data\data\sound\out_of_road-3.wav .\%RUNTIMEDIR%\data\sound\out_of_road-3.wav
if exist .\data\data\sound\out_of_road.wav copy .\data\data\sound\out_of_road.wav .\%RUNTIMEDIR%\data\sound\out_of_road.wav
if exist .\data\data\sound\road-ride.wav copy .\data\data\sound\road-ride.wav .\%RUNTIMEDIR%\data\sound\road-ride.wav
if exist .\data\data\sound\skid_metal.wav copy .\data\data\sound\skid_metal.wav .\%RUNTIMEDIR%\data\sound\skid_metal.wav
if exist .\data\data\sound\skid_tyres.wav copy .\data\data\sound\skid_tyres.wav .\%RUNTIMEDIR%\data\sound\skid_tyres.wav
if exist .\data\data\sound\skid.wav copy .\data\data\sound\skid.wav .\%RUNTIMEDIR%\data\sound\skid.wav
if exist .\data\data\sound\test.wav copy .\data\data\sound\test.wav .\%RUNTIMEDIR%\data\sound\test.wav
if exist .\data\data\sound\ford1b.wav copy .\data\data\sound\ford1b.wav .\%RUNTIMEDIR%\data\sound\ford1b.wav
if exist .\data\data\sound\gear_change1.wav copy .\data\data\sound\gear_change1.wav .\%RUNTIMEDIR%\data\sound\gear_change1.wav
if exist .\data\data\sound\backfire.wav copy .\data\data\sound\backfire.wav .\%RUNTIMEDIR%\data\sound\backfire.wav
if exist .\data\data\sound\backfire_loop.wav copy .\data\data\sound\backfire_loop.wav .\%RUNTIMEDIR%\data\sound\backfire_loop.wav
if exist .\data\data\sound\viper2.wav copy .\data\data\sound\viper2.wav .\%RUNTIMEDIR%\data\sound\viper2.wav
if exist .\data\data\sound\ford2c.wav copy .\data\data\sound\ford2c.wav .\%RUNTIMEDIR%\data\sound\ford2c.wav
if exist .\data\data\sound\206_engine.wav copy .\data\data\sound\206_engine.wav .\%RUNTIMEDIR%\data\sound\206_engine.wav
if exist .\data\data\sound\evo7_engine_f.wav copy .\data\data\sound\evo7_engine_f.wav .\%RUNTIMEDIR%\data\sound\evo7_engine_f.wav
if exist .\data\data\sound\evo7_engine.wav copy .\data\data\sound\evo7_engine.wav .\%RUNTIMEDIR%\data\sound\evo7_engine.wav
if exist .\data\data\sound\impreza2002_engine.wav copy .\data\data\sound\impreza2002_engine.wav .\%RUNTIMEDIR%\data\sound\impreza2002_engine.wav
if exist .\data\data\sound\porsche_engine.wav copy .\data\data\sound\porsche_engine.wav .\%RUNTIMEDIR%\data\sound\porsche_engine.wav
if exist .\data\data\sound\xj220.wav copy .\data\data\sound\xj220.wav .\%RUNTIMEDIR%\data\sound\xj220.wav
if exist .\data\data\music\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\music\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\music\*.* call .\create_dir .\%RUNTIMEDIR%\data\music
if exist .\data\data\music\torcs1.ogg copy .\data\data\music\torcs1.ogg .\%RUNTIMEDIR%\data\music\torcs1.ogg
if exist .\data\data\sound\935.wav copy .\data\data\sound\935.wav .\%RUNTIMEDIR%\data\sound\935.wav
if exist .\data\data\sound\944.wav copy .\data\data\sound\944.wav .\%RUNTIMEDIR%\data\sound\944.wav
if exist .\data\data\sound\alpha-romeo.wav copy .\data\data\sound\alpha-romeo.wav .\%RUNTIMEDIR%\data\sound\alpha-romeo.wav
if exist .\data\data\sound\clkdtmb2.wav copy .\data\data\sound\clkdtmb2.wav .\%RUNTIMEDIR%\data\sound\clkdtmb2.wav
if exist .\data\data\sound\f360.wav copy .\data\data\sound\f360.wav .\%RUNTIMEDIR%\data\sound\f360.wav
if exist .\data\data\sound\gt40.wav copy .\data\data\sound\gt40.wav .\%RUNTIMEDIR%\data\sound\gt40.wav
if exist .\data\data\sound\lotus.wav copy .\data\data\sound\lotus.wav .\%RUNTIMEDIR%\data\sound\lotus.wav
if exist .\data\data\sound\nsx.wav copy .\data\data\sound\nsx.wav .\%RUNTIMEDIR%\data\sound\nsx.wav
if exist .\data\data\sound\renault-v10.wav copy .\data\data\sound\renault-v10.wav .\%RUNTIMEDIR%\data\sound\renault-v10.wav
if exist .\data\data\sound\turbo1.wav copy .\data\data\sound\turbo1.wav .\%RUNTIMEDIR%\data\sound\turbo1.wav
if exist .\data\data\sound\viper_long.wav copy .\data\data\sound\viper_long.wav .\%RUNTIMEDIR%\data\sound\viper_long.wav
if exist .\data\data\textures\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\textures\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\textures\*.* call .\create_dir .\%RUNTIMEDIR%\data\textures
if exist .\data\data\textures\background.png copy .\data\data\textures\background.png .\%RUNTIMEDIR%\data\textures\background.png
if exist .\data\data\textures\bushes_side.png copy .\data\data\textures\bushes_side.png .\%RUNTIMEDIR%\data\textures\bushes_side.png
if exist .\data\data\textures\cut_red_earth_side.png copy .\data\data\textures\cut_red_earth_side.png .\%RUNTIMEDIR%\data\textures\cut_red_earth_side.png
if exist .\data\data\textures\earth_and_grass.png copy .\data\data\textures\earth_and_grass.png .\%RUNTIMEDIR%\data\textures\earth_and_grass.png
if exist .\data\data\textures\env.png copy .\data\data\textures\env.png .\%RUNTIMEDIR%\data\textures\env.png
if exist .\data\data\textures\envshadow.png copy .\data\data\textures\envshadow.png .\%RUNTIMEDIR%\data\textures\envshadow.png
if exist .\data\data\textures\fields_small.png copy .\data\data\textures\fields_small.png .\%RUNTIMEDIR%\data\textures\fields_small.png
if exist .\data\data\textures\forest_far_above.png copy .\data\data\textures\forest_far_above.png .\%RUNTIMEDIR%\data\textures\forest_far_above.png
if exist .\data\data\textures\grey_rock_side.png copy .\data\data\textures\grey_rock_side.png .\%RUNTIMEDIR%\data\textures\grey_rock_side.png
if exist .\data\data\textures\red_dirt.png copy .\data\data\textures\red_dirt.png .\%RUNTIMEDIR%\data\textures\red_dirt.png
if exist .\data\data\textures\red_earth.png copy .\data\data\textures\red_earth.png .\%RUNTIMEDIR%\data\textures\red_earth.png
if exist .\data\data\textures\red_rock_side.png copy .\data\data\textures\red_rock_side.png .\%RUNTIMEDIR%\data\textures\red_rock_side.png
if exist .\data\data\textures\road_concrete_boundary.png copy .\data\data\textures\road_concrete_boundary.png .\%RUNTIMEDIR%\data\textures\road_concrete_boundary.png
if exist .\data\data\textures\road_earth_boundary.png copy .\data\data\textures\road_earth_boundary.png .\%RUNTIMEDIR%\data\textures\road_earth_boundary.png
if exist .\data\data\textures\road_gravel_boundary.png copy .\data\data\textures\road_gravel_boundary.png .\%RUNTIMEDIR%\data\textures\road_gravel_boundary.png
if exist .\data\data\textures\rusted_barrier.png copy .\data\data\textures\rusted_barrier.png .\%RUNTIMEDIR%\data\textures\rusted_barrier.png
if exist .\data\data\textures\yellow_rock_side.png copy .\data\data\textures\yellow_rock_side.png .\%RUNTIMEDIR%\data\textures\yellow_rock_side.png
if exist .\data\data\textures\ancient-concrete1.rgb copy .\data\data\textures\ancient-concrete1.rgb .\%RUNTIMEDIR%\data\textures\ancient-concrete1.rgb
if exist .\data\data\textures\ancient-concrete-bump.rgb copy .\data\data\textures\ancient-concrete-bump.rgb .\%RUNTIMEDIR%\data\textures\ancient-concrete-bump.rgb
if exist .\data\data\textures\back-sign.rgb copy .\data\data\textures\back-sign.rgb .\%RUNTIMEDIR%\data\textures\back-sign.rgb
if exist .\data\data\textures\basalt1_2.rgb copy .\data\data\textures\basalt1_2.rgb .\%RUNTIMEDIR%\data\textures\basalt1_2.rgb
if exist .\data\data\textures\basalt1.rgb copy .\data\data\textures\basalt1.rgb .\%RUNTIMEDIR%\data\textures\basalt1.rgb
if exist .\data\data\textures\basalt2_2b.rgb copy .\data\data\textures\basalt2_2b.rgb .\%RUNTIMEDIR%\data\textures\basalt2_2b.rgb
if exist .\data\data\textures\basalt2_2.rgb copy .\data\data\textures\basalt2_2.rgb .\%RUNTIMEDIR%\data\textures\basalt2_2.rgb
if exist .\data\data\textures\basalt2.rgb copy .\data\data\textures\basalt2.rgb .\%RUNTIMEDIR%\data\textures\basalt2.rgb
if exist .\data\data\textures\breaklight1.rgb copy .\data\data\textures\breaklight1.rgb .\%RUNTIMEDIR%\data\textures\breaklight1.rgb
if exist .\data\data\textures\breaklight2.rgb copy .\data\data\textures\breaklight2.rgb .\%RUNTIMEDIR%\data\textures\breaklight2.rgb
if exist .\data\data\textures\building1.rgb copy .\data\data\textures\building1.rgb .\%RUNTIMEDIR%\data\textures\building1.rgb
if exist .\data\data\textures\building2.rgb copy .\data\data\textures\building2.rgb .\%RUNTIMEDIR%\data\textures\building2.rgb
if exist .\data\data\textures\bump-2.rgb copy .\data\data\textures\bump-2.rgb .\%RUNTIMEDIR%\data\textures\bump-2.rgb
if exist .\data\data\textures\bump-3.rgb copy .\data\data\textures\bump-3.rgb .\%RUNTIMEDIR%\data\textures\bump-3.rgb
if exist .\data\data\textures\bump-4.rgb copy .\data\data\textures\bump-4.rgb .\%RUNTIMEDIR%\data\textures\bump-4.rgb
if exist .\data\data\textures\bump-5.rgb copy .\data\data\textures\bump-5.rgb .\%RUNTIMEDIR%\data\textures\bump-5.rgb
if exist .\data\data\textures\bump-6.rgb copy .\data\data\textures\bump-6.rgb .\%RUNTIMEDIR%\data\textures\bump-6.rgb
if exist .\data\data\textures\bump-7.rgb copy .\data\data\textures\bump-7.rgb .\%RUNTIMEDIR%\data\textures\bump-7.rgb
if exist .\data\data\textures\bump-8.rgb copy .\data\data\textures\bump-8.rgb .\%RUNTIMEDIR%\data\textures\bump-8.rgb
if exist .\data\data\textures\bump-9.rgb copy .\data\data\textures\bump-9.rgb .\%RUNTIMEDIR%\data\textures\bump-9.rgb
if exist .\data\data\textures\bump-as.rgb copy .\data\data\textures\bump-as.rgb .\%RUNTIMEDIR%\data\textures\bump-as.rgb
if exist .\data\data\textures\bump-finegrain.rgb copy .\data\data\textures\bump-finegrain.rgb .\%RUNTIMEDIR%\data\textures\bump-finegrain.rgb
if exist .\data\data\textures\bump-sand.rgb copy .\data\data\textures\bump-sand.rgb .\%RUNTIMEDIR%\data\textures\bump-sand.rgb
if exist .\data\data\textures\concrete2.rgb copy .\data\data\textures\concrete2.rgb .\%RUNTIMEDIR%\data\textures\concrete2.rgb
if exist .\data\data\textures\concrete.rgb copy .\data\data\textures\concrete.rgb .\%RUNTIMEDIR%\data\textures\concrete.rgb
if exist .\data\data\textures\counter-bg-10.rgb copy .\data\data\textures\counter-bg-10.rgb .\%RUNTIMEDIR%\data\textures\counter-bg-10.rgb
if exist .\data\data\textures\counter-bg2.rgb copy .\data\data\textures\counter-bg2.rgb .\%RUNTIMEDIR%\data\textures\counter-bg2.rgb
if exist .\data\data\textures\counter-bg.rgb copy .\data\data\textures\counter-bg.rgb .\%RUNTIMEDIR%\data\textures\counter-bg.rgb
if exist .\data\data\textures\counter-bg-rpm.rgb copy .\data\data\textures\counter-bg-rpm.rgb .\%RUNTIMEDIR%\data\textures\counter-bg-rpm.rgb
if exist .\data\data\textures\counter.rgb copy .\data\data\textures\counter.rgb .\%RUNTIMEDIR%\data\textures\counter.rgb
if exist .\data\data\textures\fire0.rgb copy .\data\data\textures\fire0.rgb .\%RUNTIMEDIR%\data\textures\fire0.rgb
if exist .\data\data\textures\fire1.rgb copy .\data\data\textures\fire1.rgb .\%RUNTIMEDIR%\data\textures\fire1.rgb
if exist .\data\data\textures\forest1.rgb copy .\data\data\textures\forest1.rgb .\%RUNTIMEDIR%\data\textures\forest1.rgb
if exist .\data\data\textures\forest1-r.rgb copy .\data\data\textures\forest1-r.rgb .\%RUNTIMEDIR%\data\textures\forest1-r.rgb
if exist .\data\data\textures\forest2.rgb copy .\data\data\textures\forest2.rgb .\%RUNTIMEDIR%\data\textures\forest2.rgb
if exist .\data\data\textures\forest3.rgb copy .\data\data\textures\forest3.rgb .\%RUNTIMEDIR%\data\textures\forest3.rgb
if exist .\data\data\textures\frontlight1.rgb copy .\data\data\textures\frontlight1.rgb .\%RUNTIMEDIR%\data\textures\frontlight1.rgb
if exist .\data\data\textures\frontlight2.rgb copy .\data\data\textures\frontlight2.rgb .\%RUNTIMEDIR%\data\textures\frontlight2.rgb
if exist .\data\data\textures\grassg1.rgb copy .\data\data\textures\grassg1.rgb .\%RUNTIMEDIR%\data\textures\grassg1.rgb
if exist .\data\data\textures\grassg2.rgb copy .\data\data\textures\grassg2.rgb .\%RUNTIMEDIR%\data\textures\grassg2.rgb
if exist .\data\data\textures\grassg3.rgb copy .\data\data\textures\grassg3.rgb .\%RUNTIMEDIR%\data\textures\grassg3.rgb
if exist .\data\data\textures\grey-tracks.rgb copy .\data\data\textures\grey-tracks.rgb .\%RUNTIMEDIR%\data\textures\grey-tracks.rgb
if exist .\data\data\textures\hard-dirt1.rgb copy .\data\data\textures\hard-dirt1.rgb .\%RUNTIMEDIR%\data\textures\hard-dirt1.rgb
if exist .\data\data\textures\hard-dirt1-side.rgb copy .\data\data\textures\hard-dirt1-side.rgb .\%RUNTIMEDIR%\data\textures\hard-dirt1-side.rgb
if exist .\data\data\textures\hard-dirt.rgb copy .\data\data\textures\hard-dirt.rgb .\%RUNTIMEDIR%\data\textures\hard-dirt.rgb
if exist .\data\data\textures\logo.rgb copy .\data\data\textures\logo.rgb .\%RUNTIMEDIR%\data\textures\logo.rgb
if exist .\data\data\textures\mud-gravel1.rgb copy .\data\data\textures\mud-gravel1.rgb .\%RUNTIMEDIR%\data\textures\mud-gravel1.rgb
if exist .\data\data\textures\mud-gravel-side.rgb copy .\data\data\textures\mud-gravel-side.rgb .\%RUNTIMEDIR%\data\textures\mud-gravel-side.rgb
if exist .\data\data\textures\mud-hard-dirt.rgb copy .\data\data\textures\mud-hard-dirt.rgb .\%RUNTIMEDIR%\data\textures\mud-hard-dirt.rgb
if exist .\data\data\textures\mud-river.rgb copy .\data\data\textures\mud-river.rgb .\%RUNTIMEDIR%\data\textures\mud-river.rgb
if exist .\data\data\textures\panel-empty.rgb copy .\data\data\textures\panel-empty.rgb .\%RUNTIMEDIR%\data\textures\panel-empty.rgb
if exist .\data\data\textures\people1.rgb copy .\data\data\textures\people1.rgb .\%RUNTIMEDIR%\data\textures\people1.rgb
if exist .\data\data\textures\pit-left.rgb copy .\data\data\textures\pit-left.rgb .\%RUNTIMEDIR%\data\textures\pit-left.rgb
if exist .\data\data\textures\pit-right.rgb copy .\data\data\textures\pit-right.rgb .\%RUNTIMEDIR%\data\textures\pit-right.rgb
if exist .\data\data\textures\poutre3.rgb copy .\data\data\textures\poutre3.rgb .\%RUNTIMEDIR%\data\textures\poutre3.rgb
if exist .\data\data\textures\pylon1.rgb copy .\data\data\textures\pylon1.rgb .\%RUNTIMEDIR%\data\textures\pylon1.rgb
if exist .\data\data\textures\pylon2.rgb copy .\data\data\textures\pylon2.rgb .\%RUNTIMEDIR%\data\textures\pylon2.rgb
if exist .\data\data\textures\pylon3.rgb copy .\data\data\textures\pylon3.rgb .\%RUNTIMEDIR%\data\textures\pylon3.rgb
if exist .\data\data\textures\rearlight1.rgb copy .\data\data\textures\rearlight1.rgb .\%RUNTIMEDIR%\data\textures\rearlight1.rgb
if exist .\data\data\textures\rearlight2.rgb copy .\data\data\textures\rearlight2.rgb .\%RUNTIMEDIR%\data\textures\rearlight2.rgb
if exist .\data\data\textures\red-light-off.rgb copy .\data\data\textures\red-light-off.rgb .\%RUNTIMEDIR%\data\textures\red-light-off.rgb
if exist .\data\data\textures\red-light-on.rgb copy .\data\data\textures\red-light-on.rgb .\%RUNTIMEDIR%\data\textures\red-light-on.rgb
if exist .\data\data\textures\rock2.rgb copy .\data\data\textures\rock2.rgb .\%RUNTIMEDIR%\data\textures\rock2.rgb
if exist .\data\data\textures\rock3.rgb copy .\data\data\textures\rock3.rgb .\%RUNTIMEDIR%\data\textures\rock3.rgb
if exist .\data\data\textures\rpm5500.rgb copy .\data\data\textures\rpm5500.rgb .\%RUNTIMEDIR%\data\textures\rpm5500.rgb
if exist .\data\data\textures\rpm7000.rgb copy .\data\data\textures\rpm7000.rgb .\%RUNTIMEDIR%\data\textures\rpm7000.rgb
if exist .\data\data\textures\rpm8000.rgb copy .\data\data\textures\rpm8000.rgb .\%RUNTIMEDIR%\data\textures\rpm8000.rgb
if exist .\data\data\textures\rpm8500.rgb copy .\data\data\textures\rpm8500.rgb .\%RUNTIMEDIR%\data\textures\rpm8500.rgb
if exist .\data\data\textures\rpm20000.rgb copy .\data\data\textures\rpm20000.rgb .\%RUNTIMEDIR%\data\textures\rpm20000.rgb
if exist .\data\data\textures\smoke.rgb copy .\data\data\textures\smoke.rgb .\%RUNTIMEDIR%\data\textures\smoke.rgb
if exist .\data\data\textures\speed240.rgb copy .\data\data\textures\speed240.rgb .\%RUNTIMEDIR%\data\textures\speed240.rgb
if exist .\data\data\textures\speed300.rgb copy .\data\data\textures\speed300.rgb .\%RUNTIMEDIR%\data\textures\speed300.rgb
if exist .\data\data\textures\speed360.rgb copy .\data\data\textures\speed360.rgb .\%RUNTIMEDIR%\data\textures\speed360.rgb
if exist .\data\data\textures\torcs-ad1.rgb copy .\data\data\textures\torcs-ad1.rgb .\%RUNTIMEDIR%\data\textures\torcs-ad1.rgb
if exist .\data\data\textures\torcsad1.rgb copy .\data\data\textures\torcsad1.rgb .\%RUNTIMEDIR%\data\textures\torcsad1.rgb
if exist .\data\data\textures\torcsad2.rgb copy .\data\data\textures\torcsad2.rgb .\%RUNTIMEDIR%\data\textures\torcsad2.rgb
if exist .\data\data\textures\trans-mud-hard-dirt.rgb copy .\data\data\textures\trans-mud-hard-dirt.rgb .\%RUNTIMEDIR%\data\textures\trans-mud-hard-dirt.rgb
if exist .\data\data\textures\tr-asphalt-both_nmm.rgb copy .\data\data\textures\tr-asphalt-both_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-both_nmm.rgb
if exist .\data\data\textures\tr-asphalt-both.rgb copy .\data\data\textures\tr-asphalt-both.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-both.rgb
if exist .\data\data\textures\tr-asphalt-grass-l.rgb copy .\data\data\textures\tr-asphalt-grass-l.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-grass-l.rgb
if exist .\data\data\textures\tr-asphalt-grass-r.rgb copy .\data\data\textures\tr-asphalt-grass-r.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-grass-r.rgb
if exist .\data\data\textures\tr-asphalt-left_nmm.rgb copy .\data\data\textures\tr-asphalt-left_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-left_nmm.rgb
if exist .\data\data\textures\tr-asphalt-left.rgb copy .\data\data\textures\tr-asphalt-left.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-left.rgb
if exist .\data\data\textures\tr-asphalt-l_nmm.rgb copy .\data\data\textures\tr-asphalt-l_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-l_nmm.rgb
if exist .\data\data\textures\tr-asphalt-l.rgb copy .\data\data\textures\tr-asphalt-l.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-l.rgb
if exist .\data\data\textures\tr-asphalt_nmm.rgb copy .\data\data\textures\tr-asphalt_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt_nmm.rgb
if exist .\data\data\textures\tr-asphalt-p_nmm.rgb copy .\data\data\textures\tr-asphalt-p_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-p_nmm.rgb
if exist .\data\data\textures\tr-asphalt-p.rgb copy .\data\data\textures\tr-asphalt-p.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-p.rgb
if exist .\data\data\textures\tr-asphalt.rgb copy .\data\data\textures\tr-asphalt.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt.rgb
if exist .\data\data\textures\tr-asphalt-right_nmm.rgb copy .\data\data\textures\tr-asphalt-right_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-right_nmm.rgb
if exist .\data\data\textures\tr-asphalt-right.rgb copy .\data\data\textures\tr-asphalt-right.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-right.rgb
if exist .\data\data\textures\tr-asphalt-road1.rgb copy .\data\data\textures\tr-asphalt-road1.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-road1.rgb
if exist .\data\data\textures\tr-asphalt-sand.rgb copy .\data\data\textures\tr-asphalt-sand.rgb .\%RUNTIMEDIR%\data\textures\tr-asphalt-sand.rgb
if exist .\data\data\textures\tr-bar-gr.rgb copy .\data\data\textures\tr-bar-gr.rgb .\%RUNTIMEDIR%\data\textures\tr-bar-gr.rgb
if exist .\data\data\textures\tr-bar-gr_n.rgb copy .\data\data\textures\tr-bar-gr_n.rgb .\%RUNTIMEDIR%\data\textures\tr-bar-gr_n.rgb
if exist .\data\data\textures\tr-bar.rgb copy .\data\data\textures\tr-bar.rgb .\%RUNTIMEDIR%\data\textures\tr-bar.rgb
if exist .\data\data\textures\tr-barrier.rgb copy .\data\data\textures\tr-barrier.rgb .\%RUNTIMEDIR%\data\textures\tr-barrier.rgb
if exist .\data\data\textures\tr-bar-turn1.rgb copy .\data\data\textures\tr-bar-turn1.rgb .\%RUNTIMEDIR%\data\textures\tr-bar-turn1.rgb
if exist .\data\data\textures\tr-b-asphalt-grass6-l1.rgb copy .\data\data\textures\tr-b-asphalt-grass6-l1.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-grass6-l1.rgb
if exist .\data\data\textures\tr-b-asphalt-grass6.rgb copy .\data\data\textures\tr-b-asphalt-grass6.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-grass6.rgb
if exist .\data\data\textures\tr-b-asphalt-grass7-l1.rgb copy .\data\data\textures\tr-b-asphalt-grass7-l1.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-grass7-l1.rgb
if exist .\data\data\textures\tr-b-asphalt-grass7.rgb copy .\data\data\textures\tr-b-asphalt-grass7.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-grass7.rgb
if exist .\data\data\textures\tr-b-asphalt-gravel-l1.rgb copy .\data\data\textures\tr-b-asphalt-gravel-l1.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-gravel-l1.rgb
if exist .\data\data\textures\tr-b-asphalt-gravel.rgb copy .\data\data\textures\tr-b-asphalt-gravel.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-gravel.rgb
if exist .\data\data\textures\tr-b-asphalt-l1p.rgb copy .\data\data\textures\tr-b-asphalt-l1p.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-l1p.rgb
if exist .\data\data\textures\tr-b-asphalt-l1.rgb copy .\data\data\textures\tr-b-asphalt-l1.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-l1.rgb
if exist .\data\data\textures\tr-b-asphalt.rgb copy .\data\data\textures\tr-b-asphalt.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt.rgb
if exist .\data\data\textures\tr-b-asphalt-sand3-l1.rgb copy .\data\data\textures\tr-b-asphalt-sand3-l1.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-sand3-l1.rgb
if exist .\data\data\textures\tr-b-asphalt-sand3.rgb copy .\data\data\textures\tr-b-asphalt-sand3.rgb .\%RUNTIMEDIR%\data\textures\tr-b-asphalt-sand3.rgb
if exist .\data\data\textures\tr-b-concrete4-concrete-l1p.rgb copy .\data\data\textures\tr-b-concrete4-concrete-l1p.rgb .\%RUNTIMEDIR%\data\textures\tr-b-concrete4-concrete-l1p.rgb
if exist .\data\data\textures\tr-b-concrete4-concrete-l1.rgb copy .\data\data\textures\tr-b-concrete4-concrete-l1.rgb .\%RUNTIMEDIR%\data\textures\tr-b-concrete4-concrete-l1.rgb
if exist .\data\data\textures\tr-b-road1-grass6-l2.rgb copy .\data\data\textures\tr-b-road1-grass6-l2.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-grass6-l2.rgb
if exist .\data\data\textures\tr-b-road1-grass6.rgb copy .\data\data\textures\tr-b-road1-grass6.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-grass6.rgb
if exist .\data\data\textures\tr-b-road1-gravel-l2.rgb copy .\data\data\textures\tr-b-road1-gravel-l2.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-gravel-l2.rgb
if exist .\data\data\textures\tr-b-road1-l2p.rgb copy .\data\data\textures\tr-b-road1-l2p.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-l2p.rgb
if exist .\data\data\textures\tr-b-road1-l2.rgb copy .\data\data\textures\tr-b-road1-l2.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-l2.rgb
if exist .\data\data\textures\tr-b-road1-sand3-l2.rgb copy .\data\data\textures\tr-b-road1-sand3-l2.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-sand3-l2.rgb
if exist .\data\data\textures\tr-b-road1-sand3.rgb copy .\data\data\textures\tr-b-road1-sand3.rgb .\%RUNTIMEDIR%\data\textures\tr-b-road1-sand3.rgb
if exist .\data\data\textures\tr-concrete4.rgb copy .\data\data\textures\tr-concrete4.rgb .\%RUNTIMEDIR%\data\textures\tr-concrete4.rgb
if exist .\data\data\textures\tr-concrete_nmm.rgb copy .\data\data\textures\tr-concrete_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-concrete_nmm.rgb
if exist .\data\data\textures\tr-concrete-pit.rgb copy .\data\data\textures\tr-concrete-pit.rgb .\%RUNTIMEDIR%\data\textures\tr-concrete-pit.rgb
if exist .\data\data\textures\tr-concrete.rgb copy .\data\data\textures\tr-concrete.rgb .\%RUNTIMEDIR%\data\textures\tr-concrete.rgb
if exist .\data\data\textures\tr-curb-l.rgb copy .\data\data\textures\tr-curb-l.rgb .\%RUNTIMEDIR%\data\textures\tr-curb-l.rgb
if exist .\data\data\textures\tr-curb-r.rgb copy .\data\data\textures\tr-curb-r.rgb .\%RUNTIMEDIR%\data\textures\tr-curb-r.rgb
if exist .\data\data\textures\tr-dirtb.rgb copy .\data\data\textures\tr-dirtb.rgb .\%RUNTIMEDIR%\data\textures\tr-dirtb.rgb
if exist .\data\data\textures\tr-dirt.rgb copy .\data\data\textures\tr-dirt.rgb .\%RUNTIMEDIR%\data\textures\tr-dirt.rgb
if exist .\data\data\textures\tree10.rgb copy .\data\data\textures\tree10.rgb .\%RUNTIMEDIR%\data\textures\tree10.rgb
if exist .\data\data\textures\tree11.rgb copy .\data\data\textures\tree11.rgb .\%RUNTIMEDIR%\data\textures\tree11.rgb
if exist .\data\data\textures\tree12.rgb copy .\data\data\textures\tree12.rgb .\%RUNTIMEDIR%\data\textures\tree12.rgb
if exist .\data\data\textures\tree13.rgb copy .\data\data\textures\tree13.rgb .\%RUNTIMEDIR%\data\textures\tree13.rgb
if exist .\data\data\textures\tree14.rgb copy .\data\data\textures\tree14.rgb .\%RUNTIMEDIR%\data\textures\tree14.rgb
if exist .\data\data\textures\tree15.rgb copy .\data\data\textures\tree15.rgb .\%RUNTIMEDIR%\data\textures\tree15.rgb
if exist .\data\data\textures\tree16.rgb copy .\data\data\textures\tree16.rgb .\%RUNTIMEDIR%\data\textures\tree16.rgb
if exist .\data\data\textures\tree17.rgb copy .\data\data\textures\tree17.rgb .\%RUNTIMEDIR%\data\textures\tree17.rgb
if exist .\data\data\textures\tree18.rgb copy .\data\data\textures\tree18.rgb .\%RUNTIMEDIR%\data\textures\tree18.rgb
if exist .\data\data\textures\tree19.rgb copy .\data\data\textures\tree19.rgb .\%RUNTIMEDIR%\data\textures\tree19.rgb
if exist .\data\data\textures\tree1.rgb copy .\data\data\textures\tree1.rgb .\%RUNTIMEDIR%\data\textures\tree1.rgb
if exist .\data\data\textures\tree20.rgb copy .\data\data\textures\tree20.rgb .\%RUNTIMEDIR%\data\textures\tree20.rgb
if exist .\data\data\textures\tree2.rgb copy .\data\data\textures\tree2.rgb .\%RUNTIMEDIR%\data\textures\tree2.rgb
if exist .\data\data\textures\tree3.rgb copy .\data\data\textures\tree3.rgb .\%RUNTIMEDIR%\data\textures\tree3.rgb
if exist .\data\data\textures\tree4.rgb copy .\data\data\textures\tree4.rgb .\%RUNTIMEDIR%\data\textures\tree4.rgb
if exist .\data\data\textures\tree5.rgb copy .\data\data\textures\tree5.rgb .\%RUNTIMEDIR%\data\textures\tree5.rgb
if exist .\data\data\textures\tree7.rgb copy .\data\data\textures\tree7.rgb .\%RUNTIMEDIR%\data\textures\tree7.rgb
if exist .\data\data\textures\tree8.rgb copy .\data\data\textures\tree8.rgb .\%RUNTIMEDIR%\data\textures\tree8.rgb
if exist .\data\data\textures\tree9.rgb copy .\data\data\textures\tree9.rgb .\%RUNTIMEDIR%\data\textures\tree9.rgb
if exist .\data\data\textures\treebui1.rgb copy .\data\data\textures\treebui1.rgb .\%RUNTIMEDIR%\data\textures\treebui1.rgb
if exist .\data\data\textures\treebui2.rgb copy .\data\data\textures\treebui2.rgb .\%RUNTIMEDIR%\data\textures\treebui2.rgb
if exist .\data\data\textures\treeg1.rgb copy .\data\data\textures\treeg1.rgb .\%RUNTIMEDIR%\data\textures\treeg1.rgb
if exist .\data\data\textures\tr-fake-road-2.rgb copy .\data\data\textures\tr-fake-road-2.rgb .\%RUNTIMEDIR%\data\textures\tr-fake-road-2.rgb
if exist .\data\data\textures\tr-fake-road-borders.rgb copy .\data\data\textures\tr-fake-road-borders.rgb .\%RUNTIMEDIR%\data\textures\tr-fake-road-borders.rgb
if exist .\data\data\textures\tr-fake-road-lines.rgb copy .\data\data\textures\tr-fake-road-lines.rgb .\%RUNTIMEDIR%\data\textures\tr-fake-road-lines.rgb
if exist .\data\data\textures\tr-fake-road.rgb copy .\data\data\textures\tr-fake-road.rgb .\%RUNTIMEDIR%\data\textures\tr-fake-road.rgb
if exist .\data\data\textures\tr-grass2.rgb copy .\data\data\textures\tr-grass2.rgb .\%RUNTIMEDIR%\data\textures\tr-grass2.rgb
if exist .\data\data\textures\tr-grass3.rgb copy .\data\data\textures\tr-grass3.rgb .\%RUNTIMEDIR%\data\textures\tr-grass3.rgb
if exist .\data\data\textures\tr-grass4.rgb copy .\data\data\textures\tr-grass4.rgb .\%RUNTIMEDIR%\data\textures\tr-grass4.rgb
if exist .\data\data\textures\tr-grass5.rgb copy .\data\data\textures\tr-grass5.rgb .\%RUNTIMEDIR%\data\textures\tr-grass5.rgb
if exist .\data\data\textures\tr-grass6.rgb copy .\data\data\textures\tr-grass6.rgb .\%RUNTIMEDIR%\data\textures\tr-grass6.rgb
if exist .\data\data\textures\tr-grass7.rgb copy .\data\data\textures\tr-grass7.rgb .\%RUNTIMEDIR%\data\textures\tr-grass7.rgb
if exist .\data\data\textures\tr-grass.rgb copy .\data\data\textures\tr-grass.rgb .\%RUNTIMEDIR%\data\textures\tr-grass.rgb
if exist .\data\data\textures\tr-gravel.rgb copy .\data\data\textures\tr-gravel.rgb .\%RUNTIMEDIR%\data\textures\tr-gravel.rgb
if exist .\data\data\textures\tr-road1-asphalt.rgb copy .\data\data\textures\tr-road1-asphalt.rgb .\%RUNTIMEDIR%\data\textures\tr-road1-asphalt.rgb
if exist .\data\data\textures\tr-road1-pit.rgb copy .\data\data\textures\tr-road1-pit.rgb .\%RUNTIMEDIR%\data\textures\tr-road1-pit.rgb
if exist .\data\data\textures\tr-road1.rgb copy .\data\data\textures\tr-road1.rgb .\%RUNTIMEDIR%\data\textures\tr-road1.rgb
if exist .\data\data\textures\tr-sand2.rgb copy .\data\data\textures\tr-sand2.rgb .\%RUNTIMEDIR%\data\textures\tr-sand2.rgb
if exist .\data\data\textures\tr-sand3.rgb copy .\data\data\textures\tr-sand3.rgb .\%RUNTIMEDIR%\data\textures\tr-sand3.rgb
if exist .\data\data\textures\tr-sand.rgb copy .\data\data\textures\tr-sand.rgb .\%RUNTIMEDIR%\data\textures\tr-sand.rgb
if exist .\data\data\textures\tr-snow.rgb copy .\data\data\textures\tr-snow.rgb .\%RUNTIMEDIR%\data\textures\tr-snow.rgb
if exist .\data\data\textures\tr-stone-wall2.rgb copy .\data\data\textures\tr-stone-wall2.rgb .\%RUNTIMEDIR%\data\textures\tr-stone-wall2.rgb
if exist .\data\data\textures\tr-stone-wall.rgb copy .\data\data\textures\tr-stone-wall.rgb .\%RUNTIMEDIR%\data\textures\tr-stone-wall.rgb
if exist .\data\data\textures\tr-tirewall.rgb copy .\data\data\textures\tr-tirewall.rgb .\%RUNTIMEDIR%\data\textures\tr-tirewall.rgb
if exist .\data\data\textures\tr-wall_nmm.rgb copy .\data\data\textures\tr-wall_nmm.rgb .\%RUNTIMEDIR%\data\textures\tr-wall_nmm.rgb
if exist .\data\data\textures\tr-wall.rgb copy .\data\data\textures\tr-wall.rgb .\%RUNTIMEDIR%\data\textures\tr-wall.rgb
if exist .\data\data\textures\tr-water.rgb copy .\data\data\textures\tr-water.rgb .\%RUNTIMEDIR%\data\textures\tr-water.rgb
if exist .\data\data\textures\turn100L.rgb copy .\data\data\textures\turn100L.rgb .\%RUNTIMEDIR%\data\textures\turn100L.rgb
if exist .\data\data\textures\turn100R.rgb copy .\data\data\textures\turn100R.rgb .\%RUNTIMEDIR%\data\textures\turn100R.rgb
if exist .\data\data\textures\turn150L.rgb copy .\data\data\textures\turn150L.rgb .\%RUNTIMEDIR%\data\textures\turn150L.rgb
if exist .\data\data\textures\turn150R.rgb copy .\data\data\textures\turn150R.rgb .\%RUNTIMEDIR%\data\textures\turn150R.rgb
if exist .\data\data\textures\turn200L.rgb copy .\data\data\textures\turn200L.rgb .\%RUNTIMEDIR%\data\textures\turn200L.rgb
if exist .\data\data\textures\turn200R.rgb copy .\data\data\textures\turn200R.rgb .\%RUNTIMEDIR%\data\textures\turn200R.rgb
if exist .\data\data\textures\turn300L.rgb copy .\data\data\textures\turn300L.rgb .\%RUNTIMEDIR%\data\textures\turn300L.rgb
if exist .\data\data\textures\turn300R.rgb copy .\data\data\textures\turn300R.rgb .\%RUNTIMEDIR%\data\textures\turn300R.rgb
if exist .\data\data\textures\turn50L.rgb copy .\data\data\textures\turn50L.rgb .\%RUNTIMEDIR%\data\textures\turn50L.rgb
if exist .\data\data\textures\turn50R.rgb copy .\data\data\textures\turn50R.rgb .\%RUNTIMEDIR%\data\textures\turn50R.rgb
if exist .\data\data\textures\arbor2_n.rgb copy .\data\data\textures\arbor2_n.rgb .\%RUNTIMEDIR%\data\textures\arbor2_n.rgb
if exist .\data\data\tracks\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\data\tracks\*.* call .\create_dir .\%RUNTIMEDIR%\data
if exist .\data\data\tracks\*.* call .\create_dir .\%RUNTIMEDIR%\data\tracks
if exist .\data\data\tracks\dirt.xml copy .\data\data\tracks\dirt.xml .\%RUNTIMEDIR%\data\tracks\dirt.xml
if exist .\data\data\tracks\objects.xml copy .\data\data\tracks\objects.xml .\%RUNTIMEDIR%\data\tracks\objects.xml
if exist .\data\data\tracks\oval.xml copy .\data\data\tracks\oval.xml .\%RUNTIMEDIR%\data\tracks\oval.xml
if exist .\data\data\tracks\road.xml copy .\data\data\tracks\road.xml .\%RUNTIMEDIR%\data\tracks\road.xml
if exist .\data\data\tracks\surfaces.xml copy .\data\data\tracks\surfaces.xml .\%RUNTIMEDIR%\data\tracks\surfaces.xml
if exist .\data\tracks\aalborg\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\aalborg\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\aalborg\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\aalborg\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\aalborg
if exist .\data\tracks\aalborg\aalborg.xml copy .\data\tracks\aalborg\aalborg.xml .\%RUNTIMEDIR%\tracks\road\aalborg\aalborg.xml
if exist .\data\tracks\aalborg\aalborg.acc copy .\data\tracks\aalborg\aalborg.acc .\%RUNTIMEDIR%\tracks\road\aalborg\aalborg.acc
if exist .\data\tracks\aalborg\aalborg.png copy .\data\tracks\aalborg\aalborg.png .\%RUNTIMEDIR%\tracks\road\aalborg\aalborg.png
if exist .\data\tracks\aalborg\readme.txt copy .\data\tracks\aalborg\readme.txt .\%RUNTIMEDIR%\tracks\road\aalborg\readme.txt
if exist .\data\tracks\aalborg\allborg-trees_n.rgb copy .\data\tracks\aalborg\allborg-trees_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\allborg-trees_n.rgb
if exist .\data\tracks\aalborg\shadow2.rgb copy .\data\tracks\aalborg\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\shadow2.rgb
if exist .\data\tracks\aalborg\tr-barrier-aa-1.rgb copy .\data\tracks\aalborg\tr-barrier-aa-1.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-barrier-aa-1.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-l_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-l_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-l_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-pt-bw1_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-pt-bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-pt-bw1_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-bw1_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-bw1_n.rgb
if exist .\data\tracks\aalborg\tarmac-wall-2-g2.rgb copy .\data\tracks\aalborg\tarmac-wall-2-g2.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tarmac-wall-2-g2.rgb
if exist .\data\tracks\aalborg\spectator.rgb copy .\data\tracks\aalborg\spectator.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\spectator.rgb
if exist .\data\tracks\aalborg\barr1.rgb copy .\data\tracks\aalborg\barr1.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\barr1.rgb
if exist .\data\tracks\aalborg\torcs1.rgb copy .\data\tracks\aalborg\torcs1.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\torcs1.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-pe-bw1_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-pe-bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-pe-bw1_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-ro-bw1_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-ro-bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-ro-bw1_n.rgb
if exist .\data\tracks\aalborg\poutre4.rgb copy .\data\tracks\aalborg\poutre4.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\poutre4.rgb
if exist .\data\tracks\aalborg\tr-curb-bw-aa-r.rgb copy .\data\tracks\aalborg\tr-curb-bw-aa-r.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-curb-bw-aa-r.rgb
if exist .\data\tracks\aalborg\grass-aa.rgb copy .\data\tracks\aalborg\grass-aa.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\grass-aa.rgb
if exist .\data\tracks\aalborg\tr-g-to-asphalt-aa-l_n.rgb copy .\data\tracks\aalborg\tr-g-to-asphalt-aa-l_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-g-to-asphalt-aa-l_n.rgb
if exist .\data\tracks\aalborg\tr-grass-aa-l_n.rgb copy .\data\tracks\aalborg\tr-grass-aa-l_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-grass-aa-l_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-2-aa-r_n.rgb copy .\data\tracks\aalborg\tr-asphalt-2-aa-r_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-2-aa-r_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-bw2-e_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-bw2-e_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-bw2-e_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-bw2_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-bw2_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-bw2_n.rgb
if exist .\data\tracks\aalborg\tarmac-wall-1-g2.rgb copy .\data\tracks\aalborg\tarmac-wall-1-g2.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tarmac-wall-1-g2.rgb
if exist .\data\tracks\aalborg\tr-asphalt-to-g-aa-l_n.rgb copy .\data\tracks\aalborg\tr-asphalt-to-g-aa-l_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-to-g-aa-l_n.rgb
if exist .\data\tracks\aalborg\tr-asphalt-aa-bw2-s_n.rgb copy .\data\tracks\aalborg\tr-asphalt-aa-bw2-s_n.rgb .\%RUNTIMEDIR%\tracks\road\aalborg\tr-asphalt-aa-bw2-s_n.rgb
if exist .\data\tracks\aalborg\aalborg.png copy .\data\tracks\aalborg\aalborg.png .\%RUNTIMEDIR%\tracks\road\aalborg\aalborg.png
if exist .\data\tracks\aalborg\background.png copy .\data\tracks\aalborg\background.png .\%RUNTIMEDIR%\tracks\road\aalborg\background.png
if exist .\data\tracks\a-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\a-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\a-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\a-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\a-speedway
if exist .\data\tracks\a-speedway\a-speedway.xml copy .\data\tracks\a-speedway\a-speedway.xml .\%RUNTIMEDIR%\tracks\oval\a-speedway\a-speedway.xml
if exist .\data\tracks\a-speedway\background.png copy .\data\tracks\a-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\a-speedway\background.png
if exist .\data\tracks\a-speedway\a-speedway.ac copy .\data\tracks\a-speedway\a-speedway.ac .\%RUNTIMEDIR%\tracks\oval\a-speedway\a-speedway.ac
if exist .\data\tracks\a-speedway\a-speedway.png copy .\data\tracks\a-speedway\a-speedway.png .\%RUNTIMEDIR%\tracks\oval\a-speedway\a-speedway.png
if exist .\data\tracks\dirt\dirt-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\dirt\dirt-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\dirt\dirt-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\dirt\dirt-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\dirt-1
if exist .\data\tracks\dirt\dirt-1\dirt-1.xml copy .\data\tracks\dirt\dirt-1\dirt-1.xml .\%RUNTIMEDIR%\tracks\dirt\dirt-1\dirt-1.xml
if exist .\data\tracks\dirt\dirt-1\dirt-1.acc copy .\data\tracks\dirt\dirt-1\dirt-1.acc .\%RUNTIMEDIR%\tracks\dirt\dirt-1\dirt-1.acc
if exist .\data\tracks\dirt\dirt-1\dirt-1.png copy .\data\tracks\dirt\dirt-1\dirt-1.png .\%RUNTIMEDIR%\tracks\dirt\dirt-1\dirt-1.png
if exist .\data\tracks\dirt\dirt-1\readme.txt copy .\data\tracks\dirt\dirt-1\readme.txt .\%RUNTIMEDIR%\tracks\dirt\dirt-1\readme.txt
if exist .\data\tracks\dirt\dirt-1\background.png copy .\data\tracks\dirt\dirt-1\background.png .\%RUNTIMEDIR%\tracks\dirt\dirt-1\background.png
if exist .\data\tracks\dirt\dirt-1\castle-arbor_n.rgb copy .\data\tracks\dirt\dirt-1\castle-arbor_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\castle-arbor_n.rgb
if exist .\data\tracks\dirt\dirt-1\concrete_white.rgb copy .\data\tracks\dirt\dirt-1\concrete_white.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\concrete_white.rgb
if exist .\data\tracks\dirt\dirt-1\pylon3.rgb copy .\data\tracks\dirt\dirt-1\pylon3.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\pylon3.rgb
if exist .\data\tracks\dirt\dirt-1\pylon-arbor_n.rgb copy .\data\tracks\dirt\dirt-1\pylon-arbor_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\pylon-arbor_n.rgb
if exist .\data\tracks\dirt\dirt-1\rock3.rgb copy .\data\tracks\dirt\dirt-1\rock3.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\rock3.rgb
if exist .\data\tracks\dirt\dirt-1\shadow2.rgb copy .\data\tracks\dirt\dirt-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\shadow2.rgb
if exist .\data\tracks\dirt\dirt-1\tr-barrier-curve.rgb copy .\data\tracks\dirt\dirt-1\tr-barrier-curve.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tr-barrier-curve.rgb
if exist .\data\tracks\dirt\dirt-1\tr-barrier.rgb copy .\data\tracks\dirt\dirt-1\tr-barrier.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tr-barrier.rgb
if exist .\data\tracks\dirt\dirt-1\tr-barrier-start.rgb copy .\data\tracks\dirt\dirt-1\tr-barrier-start.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tr-barrier-start.rgb
if exist .\data\tracks\dirt\dirt-1\tr-dirtb.rgb copy .\data\tracks\dirt\dirt-1\tr-dirtb.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tr-dirtb.rgb
if exist .\data\tracks\dirt\dirt-1\tr-dirt.rgb copy .\data\tracks\dirt\dirt-1\tr-dirt.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tr-dirt.rgb
if exist .\data\tracks\dirt\dirt-1\tree13_n.rgb copy .\data\tracks\dirt\dirt-1\tree13_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree13_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree15_n.rgb copy .\data\tracks\dirt\dirt-1\tree15_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree15_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree16_n.rgb copy .\data\tracks\dirt\dirt-1\tree16_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree16_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree17_n.rgb copy .\data\tracks\dirt\dirt-1\tree17_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree17_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree1_n.rgb copy .\data\tracks\dirt\dirt-1\tree1_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree1_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree2_n.rgb copy .\data\tracks\dirt\dirt-1\tree2_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree2_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree3_n.rgb copy .\data\tracks\dirt\dirt-1\tree3_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree3_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree4_n.rgb copy .\data\tracks\dirt\dirt-1\tree4_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree4_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree5_n.rgb copy .\data\tracks\dirt\dirt-1\tree5_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree5_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree7_n.rgb copy .\data\tracks\dirt\dirt-1\tree7_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree7_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree8_n.rgb copy .\data\tracks\dirt\dirt-1\tree8_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree8_n.rgb
if exist .\data\tracks\dirt\dirt-1\tree9_n.rgb copy .\data\tracks\dirt\dirt-1\tree9_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tree9_n.rgb
if exist .\data\tracks\dirt\dirt-1\tr-grass.rgb copy .\data\tracks\dirt\dirt-1\tr-grass.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\tr-grass.rgb
if exist .\data\tracks\dirt\dirt-1\waterplants-arbor_n.rgb copy .\data\tracks\dirt\dirt-1\waterplants-arbor_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\waterplants-arbor_n.rgb
if exist .\data\tracks\dirt\dirt-1\water.rgb copy .\data\tracks\dirt\dirt-1\water.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-1\water.rgb
if exist .\data\tracks\dirt-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\dirt-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\dirt-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\dirt-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\dirt-2
if exist .\data\tracks\dirt-2\dirt-2.xml copy .\data\tracks\dirt-2\dirt-2.xml .\%RUNTIMEDIR%\tracks\dirt\dirt-2\dirt-2.xml
if exist .\data\tracks\dirt-2\background.png copy .\data\tracks\dirt-2\background.png .\%RUNTIMEDIR%\tracks\dirt\dirt-2\background.png
if exist .\data\tracks\dirt-2\dirt-2.ac copy .\data\tracks\dirt-2\dirt-2.ac .\%RUNTIMEDIR%\tracks\dirt\dirt-2\dirt-2.ac
if exist .\data\tracks\dirt-2\dirt-2.png copy .\data\tracks\dirt-2\dirt-2.png .\%RUNTIMEDIR%\tracks\dirt\dirt-2\dirt-2.png
if exist .\data\tracks\dirt-4\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\dirt-4\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\dirt-4\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\dirt-4\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\dirt-4
if exist .\data\tracks\dirt-4\dirt-4.xml copy .\data\tracks\dirt-4\dirt-4.xml .\%RUNTIMEDIR%\tracks\dirt\dirt-4\dirt-4.xml
if exist .\data\tracks\dirt-4\background.png copy .\data\tracks\dirt-4\background.png .\%RUNTIMEDIR%\tracks\dirt\dirt-4\background.png
if exist .\data\tracks\dirt-4\dirt-4.ac copy .\data\tracks\dirt-4\dirt-4.ac .\%RUNTIMEDIR%\tracks\dirt\dirt-4\dirt-4.ac
if exist .\data\tracks\dirt-4\dirt-4.png copy .\data\tracks\dirt-4\dirt-4.png .\%RUNTIMEDIR%\tracks\dirt\dirt-4\dirt-4.png
if exist .\data\tracks\dirt-5\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\dirt-5\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\dirt-5\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\dirt-5\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\dirt-5
if exist .\data\tracks\dirt-5\dirt-5.xml copy .\data\tracks\dirt-5\dirt-5.xml .\%RUNTIMEDIR%\tracks\dirt\dirt-5\dirt-5.xml
if exist .\data\tracks\dirt-5\background.png copy .\data\tracks\dirt-5\background.png .\%RUNTIMEDIR%\tracks\dirt\dirt-5\background.png
if exist .\data\tracks\dirt-5\dirt-5.ac copy .\data\tracks\dirt-5\dirt-5.ac .\%RUNTIMEDIR%\tracks\dirt\dirt-5\dirt-5.ac
if exist .\data\tracks\dirt-5\dirt-5.png copy .\data\tracks\dirt-5\dirt-5.png .\%RUNTIMEDIR%\tracks\dirt\dirt-5\dirt-5.png
if exist .\data\tracks\dirt-6\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\dirt-6\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\dirt-6\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\dirt-6\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\dirt-6
if exist .\data\tracks\dirt-6\dirt-6.xml copy .\data\tracks\dirt-6\dirt-6.xml .\%RUNTIMEDIR%\tracks\dirt\dirt-6\dirt-6.xml
if exist .\data\tracks\dirt-6\background.png copy .\data\tracks\dirt-6\background.png .\%RUNTIMEDIR%\tracks\dirt\dirt-6\background.png
if exist .\data\tracks\dirt-6\dirt-6.ac copy .\data\tracks\dirt-6\dirt-6.ac .\%RUNTIMEDIR%\tracks\dirt\dirt-6\dirt-6.ac
if exist .\data\tracks\dirt-6\dirt-6.png copy .\data\tracks\dirt-6\dirt-6.png .\%RUNTIMEDIR%\tracks\dirt\dirt-6\dirt-6.png
if exist .\data\tracks\eroad\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\eroad\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\eroad\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\eroad\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\eroad
if exist .\data\tracks\eroad\eroad.xml copy .\data\tracks\eroad\eroad.xml .\%RUNTIMEDIR%\tracks\road\eroad\eroad.xml
if exist .\data\tracks\eroad\background.png copy .\data\tracks\eroad\background.png .\%RUNTIMEDIR%\tracks\road\eroad\background.png
if exist .\data\tracks\eroad\eroad.acc copy .\data\tracks\eroad\eroad.acc .\%RUNTIMEDIR%\tracks\road\eroad\eroad.acc
if exist .\data\tracks\eroad\eroad.png copy .\data\tracks\eroad\eroad.png .\%RUNTIMEDIR%\tracks\road\eroad\eroad.png
if exist .\data\tracks\eroad\readme.txt copy .\data\tracks\eroad\readme.txt .\%RUNTIMEDIR%\tracks\road\eroad\readme.txt
if exist .\data\tracks\eroad\tr-wall-torcs1-left.rgb copy .\data\tracks\eroad\tr-wall-torcs1-left.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-wall-torcs1-left.rgb
if exist .\data\tracks\eroad\tr-wall-torcs1-right.rgb copy .\data\tracks\eroad\tr-wall-torcs1-right.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-wall-torcs1-right.rgb
if exist .\data\tracks\eroad\tr-asphalt-l2bw1_n.rgb copy .\data\tracks\eroad\tr-asphalt-l2bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-asphalt-l2bw1_n.rgb
if exist .\data\tracks\eroad\shadow2.rgb copy .\data\tracks\eroad\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\eroad\shadow2.rgb
if exist .\data\tracks\eroad\tr-asphalt-bw1-pits_n.rgb copy .\data\tracks\eroad\tr-asphalt-bw1-pits_n.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-asphalt-bw1-pits_n.rgb
if exist .\data\tracks\eroad\tr-asphalt-l2bw1-pe_n.rgb copy .\data\tracks\eroad\tr-asphalt-l2bw1-pe_n.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-asphalt-l2bw1-pe_n.rgb
if exist .\data\tracks\eroad\tr-asphalt-l2bw1-pl_n.rgb copy .\data\tracks\eroad\tr-asphalt-l2bw1-pl_n.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-asphalt-l2bw1-pl_n.rgb
if exist .\data\tracks\eroad\tr-barrier-bw2.rgb copy .\data\tracks\eroad\tr-barrier-bw2.rgb .\%RUNTIMEDIR%\tracks\road\eroad\tr-barrier-bw2.rgb
if exist .\data\tracks\e-track-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\e-track-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\e-track-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\e-track-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\e-track-1
if exist .\data\tracks\e-track-1\e-track-1.xml copy .\data\tracks\e-track-1\e-track-1.xml .\%RUNTIMEDIR%\tracks\road\e-track-1\e-track-1.xml
if exist .\data\tracks\e-track-1\background.png copy .\data\tracks\e-track-1\background.png .\%RUNTIMEDIR%\tracks\road\e-track-1\background.png
if exist .\data\tracks\e-track-1\e-track-1.acc copy .\data\tracks\e-track-1\e-track-1.acc .\%RUNTIMEDIR%\tracks\road\e-track-1\e-track-1.acc
if exist .\data\tracks\e-track-1\e-track-1.png copy .\data\tracks\e-track-1\e-track-1.png .\%RUNTIMEDIR%\tracks\road\e-track-1\e-track-1.png
if exist .\data\tracks\e-track-1\readme.txt copy .\data\tracks\e-track-1\readme.txt .\%RUNTIMEDIR%\tracks\road\e-track-1\readme.txt
if exist .\data\tracks\e-track-1\geo-bw1.rgb copy .\data\tracks\e-track-1\geo-bw1.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\geo-bw1.rgb
if exist .\data\tracks\e-track-1\shadow2.rgb copy .\data\tracks\e-track-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\shadow2.rgb
if exist .\data\tracks\e-track-1\tr-barrier-bw.rgb copy .\data\tracks\e-track-1\tr-barrier-bw.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-barrier-bw.rgb
if exist .\data\tracks\e-track-1\tr-curb-bw-l.rgb copy .\data\tracks\e-track-1\tr-curb-bw-l.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-curb-bw-l.rgb
if exist .\data\tracks\e-track-1\tr-curb-bw-r.rgb copy .\data\tracks\e-track-1\tr-curb-bw-r.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-curb-bw-r.rgb
if exist .\data\tracks\e-track-1\tr-grass-bw1.rgb copy .\data\tracks\e-track-1\tr-grass-bw1.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-grass-bw1.rgb
if exist .\data\tracks\e-track-1\tr-grass-bw2.rgb copy .\data\tracks\e-track-1\tr-grass-bw2.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-grass-bw2.rgb
if exist .\data\tracks\e-track-1\tr-asphalt-bw3-pit-e_n.rgb copy .\data\tracks\e-track-1\tr-asphalt-bw3-pit-e_n.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-asphalt-bw3-pit-e_n.rgb
if exist .\data\tracks\e-track-1\tr-asphalt-bw3-pit-l_n.rgb copy .\data\tracks\e-track-1\tr-asphalt-bw3-pit-l_n.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-asphalt-bw3-pit-l_n.rgb
if exist .\data\tracks\e-track-1\tr-asphalt-bw3-pit_n.rgb copy .\data\tracks\e-track-1\tr-asphalt-bw3-pit_n.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-asphalt-bw3-pit_n.rgb
if exist .\data\tracks\e-track-1\tr-asphalt-bw3_n.rgb copy .\data\tracks\e-track-1\tr-asphalt-bw3_n.rgb .\%RUNTIMEDIR%\tracks\road\e-track-1\tr-asphalt-bw3_n.rgb
if exist .\data\tracks\e-track-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\e-track-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\e-track-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\e-track-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\e-track-2
if exist .\data\tracks\e-track-2\e-track-2.xml copy .\data\tracks\e-track-2\e-track-2.xml .\%RUNTIMEDIR%\tracks\road\e-track-2\e-track-2.xml
if exist .\data\tracks\e-track-2\e-track-2.acc copy .\data\tracks\e-track-2\e-track-2.acc .\%RUNTIMEDIR%\tracks\road\e-track-2\e-track-2.acc
if exist .\data\tracks\e-track-2\background.png copy .\data\tracks\e-track-2\background.png .\%RUNTIMEDIR%\tracks\road\e-track-2\background.png
if exist .\data\tracks\e-track-2\e-track-2.png copy .\data\tracks\e-track-2\e-track-2.png .\%RUNTIMEDIR%\tracks\road\e-track-2\e-track-2.png
if exist .\data\tracks\e-track-2\env.png copy .\data\tracks\e-track-2\env.png .\%RUNTIMEDIR%\tracks\road\e-track-2\env.png
if exist .\data\tracks\e-track-2\pylon3.rgb copy .\data\tracks\e-track-2\pylon3.rgb .\%RUNTIMEDIR%\tracks\road\e-track-2\pylon3.rgb
if exist .\data\tracks\e-track-3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\e-track-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\e-track-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\e-track-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\e-track-3
if exist .\data\tracks\e-track-3\e-track-3.xml copy .\data\tracks\e-track-3\e-track-3.xml .\%RUNTIMEDIR%\tracks\road\e-track-3\e-track-3.xml
if exist .\data\tracks\e-track-3\background.png copy .\data\tracks\e-track-3\background.png .\%RUNTIMEDIR%\tracks\road\e-track-3\background.png
if exist .\data\tracks\e-track-3\env.rgb copy .\data\tracks\e-track-3\env.rgb .\%RUNTIMEDIR%\tracks\road\e-track-3\env.rgb
if exist .\data\tracks\e-track-3\e-track-3.ac copy .\data\tracks\e-track-3\e-track-3.ac .\%RUNTIMEDIR%\tracks\road\e-track-3\e-track-3.ac
if exist .\data\tracks\e-track-3\e-track-3.png copy .\data\tracks\e-track-3\e-track-3.png .\%RUNTIMEDIR%\tracks\road\e-track-3\e-track-3.png
if exist .\data\tracks\e-track-4\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\e-track-4\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\e-track-4\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\e-track-4\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\e-track-4
if exist .\data\tracks\e-track-4\e-track-4.xml copy .\data\tracks\e-track-4\e-track-4.xml .\%RUNTIMEDIR%\tracks\road\e-track-4\e-track-4.xml
if exist .\data\tracks\e-track-4\background.png copy .\data\tracks\e-track-4\background.png .\%RUNTIMEDIR%\tracks\road\e-track-4\background.png
if exist .\data\tracks\e-track-4\e-track-4.ac copy .\data\tracks\e-track-4\e-track-4.ac .\%RUNTIMEDIR%\tracks\road\e-track-4\e-track-4.ac
if exist .\data\tracks\e-track-4\e-track-4.png copy .\data\tracks\e-track-4\e-track-4.png .\%RUNTIMEDIR%\tracks\road\e-track-4\e-track-4.png
if exist .\data\tracks\e-track-5\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\e-track-5\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\e-track-5\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\e-track-5\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\e-track-5
if exist .\data\tracks\e-track-5\e-track-5.xml copy .\data\tracks\e-track-5\e-track-5.xml .\%RUNTIMEDIR%\tracks\oval\e-track-5\e-track-5.xml
if exist .\data\tracks\e-track-5\background.png copy .\data\tracks\e-track-5\background.png .\%RUNTIMEDIR%\tracks\oval\e-track-5\background.png
if exist .\data\tracks\e-track-5\e-track-5.ac copy .\data\tracks\e-track-5\e-track-5.ac .\%RUNTIMEDIR%\tracks\oval\e-track-5\e-track-5.ac
if exist .\data\tracks\e-track-5\e-track-5.png copy .\data\tracks\e-track-5\e-track-5.png .\%RUNTIMEDIR%\tracks\oval\e-track-5\e-track-5.png
if exist .\data\tracks\road\e-track-6\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\e-track-6\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\e-track-6\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\e-track-6\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\e-track-6
if exist .\data\tracks\road\e-track-6\e-track-6.xml copy .\data\tracks\road\e-track-6\e-track-6.xml .\%RUNTIMEDIR%\tracks\road\e-track-6\e-track-6.xml
if exist .\data\tracks\road\e-track-6\e-track-6.acc copy .\data\tracks\road\e-track-6\e-track-6.acc .\%RUNTIMEDIR%\tracks\road\e-track-6\e-track-6.acc
if exist .\data\tracks\road\e-track-6\readme.txt copy .\data\tracks\road\e-track-6\readme.txt .\%RUNTIMEDIR%\tracks\road\e-track-6\readme.txt
if exist .\data\tracks\road\e-track-6\01.png copy .\data\tracks\road\e-track-6\01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\01.png
if exist .\data\tracks\road\e-track-6\02.png copy .\data\tracks\road\e-track-6\02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\02.png
if exist .\data\tracks\road\e-track-6\ALAUBM.png copy .\data\tracks\road\e-track-6\ALAUBM.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ALAUBM.png
if exist .\data\tracks\road\e-track-6\armco.png copy .\data\tracks\road\e-track-6\armco.png .\%RUNTIMEDIR%\tracks\road\e-track-6\armco.png
if exist .\data\tracks\road\e-track-6\background.png copy .\data\tracks\road\e-track-6\background.png .\%RUNTIMEDIR%\tracks\road\e-track-6\background.png
if exist .\data\tracks\road\e-track-6\BLBDBK.png copy .\data\tracks\road\e-track-6\BLBDBK.png .\%RUNTIMEDIR%\tracks\road\e-track-6\BLBDBK.png
if exist .\data\tracks\road\e-track-6\BRDGA.png copy .\data\tracks\road\e-track-6\BRDGA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\BRDGA.png
if exist .\data\tracks\road\e-track-6\BRDGB.png copy .\data\tracks\road\e-track-6\BRDGB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\BRDGB.png
if exist .\data\tracks\road\e-track-6\BRIQUE.png copy .\data\tracks\road\e-track-6\BRIQUE.png .\%RUNTIMEDIR%\tracks\road\e-track-6\BRIQUE.png
if exist .\data\tracks\road\e-track-6\BUS.png copy .\data\tracks\road\e-track-6\BUS.png .\%RUNTIMEDIR%\tracks\road\e-track-6\BUS.png
if exist .\data\tracks\road\e-track-6\CAMPER01.png copy .\data\tracks\road\e-track-6\CAMPER01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAMPER01.png
if exist .\data\tracks\road\e-track-6\CAMPER02.png copy .\data\tracks\road\e-track-6\CAMPER02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAMPER02.png
if exist .\data\tracks\road\e-track-6\CAMPER3.png copy .\data\tracks\road\e-track-6\CAMPER3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAMPER3.png
if exist .\data\tracks\road\e-track-6\CAMPER41.png copy .\data\tracks\road\e-track-6\CAMPER41.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAMPER41.png
if exist .\data\tracks\road\e-track-6\CAMPER4.png copy .\data\tracks\road\e-track-6\CAMPER4.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAMPER4.png
if exist .\data\tracks\road\e-track-6\CAR01.png copy .\data\tracks\road\e-track-6\CAR01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR01.png
if exist .\data\tracks\road\e-track-6\CAR02.png copy .\data\tracks\road\e-track-6\CAR02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR02.png
if exist .\data\tracks\road\e-track-6\CAR03.png copy .\data\tracks\road\e-track-6\CAR03.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR03.png
if exist .\data\tracks\road\e-track-6\CAR04.png copy .\data\tracks\road\e-track-6\CAR04.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR04.png
if exist .\data\tracks\road\e-track-6\CAR05.png copy .\data\tracks\road\e-track-6\CAR05.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR05.png
if exist .\data\tracks\road\e-track-6\CAR06.png copy .\data\tracks\road\e-track-6\CAR06.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR06.png
if exist .\data\tracks\road\e-track-6\CAR07.png copy .\data\tracks\road\e-track-6\CAR07.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR07.png
if exist .\data\tracks\road\e-track-6\CAR08.png copy .\data\tracks\road\e-track-6\CAR08.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CAR08.png
if exist .\data\tracks\road\e-track-6\CHtree_n.png copy .\data\tracks\road\e-track-6\CHtree_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CHtree_n.png
if exist .\data\tracks\road\e-track-6\cliff2.png copy .\data\tracks\road\e-track-6\cliff2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\cliff2.png
if exist .\data\tracks\road\e-track-6\CMNTA.png copy .\data\tracks\road\e-track-6\CMNTA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CMNTA.png
if exist .\data\tracks\road\e-track-6\CMNTBB.png copy .\data\tracks\road\e-track-6\CMNTBB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CMNTBB.png
if exist .\data\tracks\road\e-track-6\CMNTB.png copy .\data\tracks\road\e-track-6\CMNTB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CMNTB.png
if exist .\data\tracks\road\e-track-6\conc.png copy .\data\tracks\road\e-track-6\conc.png .\%RUNTIMEDIR%\tracks\road\e-track-6\conc.png
if exist .\data\tracks\road\e-track-6\CONCSH01.png copy .\data\tracks\road\e-track-6\CONCSH01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CONCSH01.png
if exist .\data\tracks\road\e-track-6\CONCTP.png copy .\data\tracks\road\e-track-6\CONCTP.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CONCTP.png
if exist .\data\tracks\road\e-track-6\CRNA.png copy .\data\tracks\road\e-track-6\CRNA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CRNA.png
if exist .\data\tracks\road\e-track-6\CRNB.png copy .\data\tracks\road\e-track-6\CRNB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CRNB.png
if exist .\data\tracks\road\e-track-6\CRNC.png copy .\data\tracks\road\e-track-6\CRNC.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CRNC.png
if exist .\data\tracks\road\e-track-6\CRND.png copy .\data\tracks\road\e-track-6\CRND.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CRND.png
if exist .\data\tracks\road\e-track-6\CRNF.png copy .\data\tracks\road\e-track-6\CRNF.png .\%RUNTIMEDIR%\tracks\road\e-track-6\CRNF.png
if exist .\data\tracks\road\e-track-6\DIST01.png copy .\data\tracks\road\e-track-6\DIST01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\DIST01.png
if exist .\data\tracks\road\e-track-6\DIST03.png copy .\data\tracks\road\e-track-6\DIST03.png .\%RUNTIMEDIR%\tracks\road\e-track-6\DIST03.png
if exist .\data\tracks\road\e-track-6\DIST04.png copy .\data\tracks\road\e-track-6\DIST04.png .\%RUNTIMEDIR%\tracks\road\e-track-6\DIST04.png
if exist .\data\tracks\road\e-track-6\e-track-6.png copy .\data\tracks\road\e-track-6\e-track-6.png .\%RUNTIMEDIR%\tracks\road\e-track-6\e-track-6.png
if exist .\data\tracks\road\e-track-6\F3BASE.png copy .\data\tracks\road\e-track-6\F3BASE.png .\%RUNTIMEDIR%\tracks\road\e-track-6\F3BASE.png
if exist .\data\tracks\road\e-track-6\FENCWIRE_arbor_n.png copy .\data\tracks\road\e-track-6\FENCWIRE_arbor_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\FENCWIRE_arbor_n.png
if exist .\data\tracks\road\e-track-6\FNCEB.png copy .\data\tracks\road\e-track-6\FNCEB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\FNCEB.png
if exist .\data\tracks\road\e-track-6\GBtree_n.png copy .\data\tracks\road\e-track-6\GBtree_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\GBtree_n.png
if exist .\data\tracks\road\e-track-6\GEtree_n.png copy .\data\tracks\road\e-track-6\GEtree_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\GEtree_n.png
if exist .\data\tracks\road\e-track-6\grass3.png copy .\data\tracks\road\e-track-6\grass3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\grass3.png
if exist .\data\tracks\road\e-track-6\GRASSAND.png copy .\data\tracks\road\e-track-6\GRASSAND.png .\%RUNTIMEDIR%\tracks\road\e-track-6\GRASSAND.png
if exist .\data\tracks\road\e-track-6\GRASS.png copy .\data\tracks\road\e-track-6\GRASS.png .\%RUNTIMEDIR%\tracks\road\e-track-6\GRASS.png
if exist .\data\tracks\road\e-track-6\GSPAtree.png copy .\data\tracks\road\e-track-6\GSPAtree.png .\%RUNTIMEDIR%\tracks\road\e-track-6\GSPAtree.png
if exist .\data\tracks\road\e-track-6\GSTNDA.png copy .\data\tracks\road\e-track-6\GSTNDA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\GSTNDA.png
if exist .\data\tracks\road\e-track-6\H15FRNT.png copy .\data\tracks\road\e-track-6\H15FRNT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H15FRNT.png
if exist .\data\tracks\road\e-track-6\H15RF.png copy .\data\tracks\road\e-track-6\H15RF.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H15RF.png
if exist .\data\tracks\road\e-track-6\H15SFRNT.png copy .\data\tracks\road\e-track-6\H15SFRNT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H15SFRNT.png
if exist .\data\tracks\road\e-track-6\H15SIDE1.png copy .\data\tracks\road\e-track-6\H15SIDE1.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H15SIDE1.png
if exist .\data\tracks\road\e-track-6\H15SIDE2.png copy .\data\tracks\road\e-track-6\H15SIDE2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H15SIDE2.png
if exist .\data\tracks\road\e-track-6\H15SIDE3.png copy .\data\tracks\road\e-track-6\H15SIDE3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H15SIDE3.png
if exist .\data\tracks\road\e-track-6\H17F1.png copy .\data\tracks\road\e-track-6\H17F1.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17F1.png
if exist .\data\tracks\road\e-track-6\H17F2.png copy .\data\tracks\road\e-track-6\H17F2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17F2.png
if exist .\data\tracks\road\e-track-6\H17F3.png copy .\data\tracks\road\e-track-6\H17F3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17F3.png
if exist .\data\tracks\road\e-track-6\H17F4.png copy .\data\tracks\road\e-track-6\H17F4.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17F4.png
if exist .\data\tracks\road\e-track-6\H17F5.png copy .\data\tracks\road\e-track-6\H17F5.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17F5.png
if exist .\data\tracks\road\e-track-6\H17F6.png copy .\data\tracks\road\e-track-6\H17F6.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17F6.png
if exist .\data\tracks\road\e-track-6\H17FA.png copy .\data\tracks\road\e-track-6\H17FA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17FA.png
if exist .\data\tracks\road\e-track-6\H17FB.png copy .\data\tracks\road\e-track-6\H17FB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17FB.png
if exist .\data\tracks\road\e-track-6\H17FNT.png copy .\data\tracks\road\e-track-6\H17FNT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17FNT.png
if exist .\data\tracks\road\e-track-6\H17SID.png copy .\data\tracks\road\e-track-6\H17SID.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17SID.png
if exist .\data\tracks\road\e-track-6\H17TOP.png copy .\data\tracks\road\e-track-6\H17TOP.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H17TOP.png
if exist .\data\tracks\road\e-track-6\H21F1.png copy .\data\tracks\road\e-track-6\H21F1.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21F1.png
if exist .\data\tracks\road\e-track-6\H21F2.png copy .\data\tracks\road\e-track-6\H21F2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21F2.png
if exist .\data\tracks\road\e-track-6\H21F3.png copy .\data\tracks\road\e-track-6\H21F3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21F3.png
if exist .\data\tracks\road\e-track-6\H21F4.png copy .\data\tracks\road\e-track-6\H21F4.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21F4.png
if exist .\data\tracks\road\e-track-6\H21F5.png copy .\data\tracks\road\e-track-6\H21F5.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21F5.png
if exist .\data\tracks\road\e-track-6\H21F6.png copy .\data\tracks\road\e-track-6\H21F6.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21F6.png
if exist .\data\tracks\road\e-track-6\H21FA.png copy .\data\tracks\road\e-track-6\H21FA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21FA.png
if exist .\data\tracks\road\e-track-6\H21FB.png copy .\data\tracks\road\e-track-6\H21FB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21FB.png
if exist .\data\tracks\road\e-track-6\H21FNT.png copy .\data\tracks\road\e-track-6\H21FNT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21FNT.png
if exist .\data\tracks\road\e-track-6\H21SID.png copy .\data\tracks\road\e-track-6\H21SID.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21SID.png
if exist .\data\tracks\road\e-track-6\H21TOP.png copy .\data\tracks\road\e-track-6\H21TOP.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H21TOP.png
if exist .\data\tracks\road\e-track-6\H25RF.png copy .\data\tracks\road\e-track-6\H25RF.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H25RF.png
if exist .\data\tracks\road\e-track-6\H26F1.png copy .\data\tracks\road\e-track-6\H26F1.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26F1.png
if exist .\data\tracks\road\e-track-6\H26F2.png copy .\data\tracks\road\e-track-6\H26F2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26F2.png
if exist .\data\tracks\road\e-track-6\H26F3.png copy .\data\tracks\road\e-track-6\H26F3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26F3.png
if exist .\data\tracks\road\e-track-6\H26F4.png copy .\data\tracks\road\e-track-6\H26F4.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26F4.png
if exist .\data\tracks\road\e-track-6\H26F5.png copy .\data\tracks\road\e-track-6\H26F5.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26F5.png
if exist .\data\tracks\road\e-track-6\H26F6.png copy .\data\tracks\road\e-track-6\H26F6.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26F6.png
if exist .\data\tracks\road\e-track-6\H26FA.png copy .\data\tracks\road\e-track-6\H26FA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26FA.png
if exist .\data\tracks\road\e-track-6\H26FB.png copy .\data\tracks\road\e-track-6\H26FB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26FB.png
if exist .\data\tracks\road\e-track-6\H26FNT.png copy .\data\tracks\road\e-track-6\H26FNT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26FNT.png
if exist .\data\tracks\road\e-track-6\H26SID.png copy .\data\tracks\road\e-track-6\H26SID.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26SID.png
if exist .\data\tracks\road\e-track-6\H26TOP.png copy .\data\tracks\road\e-track-6\H26TOP.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H26TOP.png
if exist .\data\tracks\road\e-track-6\H28FRNT.png copy .\data\tracks\road\e-track-6\H28FRNT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\H28FRNT.png
if exist .\data\tracks\road\e-track-6\IYtree_n.png copy .\data\tracks\road\e-track-6\IYtree_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\IYtree_n.png
if exist .\data\tracks\road\e-track-6\LAMAOP.png copy .\data\tracks\road\e-track-6\LAMAOP.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LAMAOP.png
if exist .\data\tracks\road\e-track-6\LOGOAG2.png copy .\data\tracks\road\e-track-6\LOGOAG2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOAG2.png
if exist .\data\tracks\road\e-track-6\LOGOAG.png copy .\data\tracks\road\e-track-6\LOGOAG.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOAG.png
if exist .\data\tracks\road\e-track-6\LOGOAT.png copy .\data\tracks\road\e-track-6\LOGOAT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOAT.png
if exist .\data\tracks\road\e-track-6\LOGODUN2.png copy .\data\tracks\road\e-track-6\LOGODUN2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGODUN2.png
if exist .\data\tracks\road\e-track-6\LOGOFSTN.png copy .\data\tracks\road\e-track-6\LOGOFSTN.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOFSTN.png
if exist .\data\tracks\road\e-track-6\LOGOGFLG.png copy .\data\tracks\road\e-track-6\LOGOGFLG.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOGFLG.png
if exist .\data\tracks\road\e-track-6\LOGOMBIL.png copy .\data\tracks\road\e-track-6\LOGOMBIL.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOMBIL.png
if exist .\data\tracks\road\e-track-6\LOGOPANA.png copy .\data\tracks\road\e-track-6\LOGOPANA.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOPANA.png
if exist .\data\tracks\road\e-track-6\LOGOSUIS.png copy .\data\tracks\road\e-track-6\LOGOSUIS.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOSUIS.png
if exist .\data\tracks\road\e-track-6\LOGOTSUB.png copy .\data\tracks\road\e-track-6\LOGOTSUB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\LOGOTSUB.png
if exist .\data\tracks\road\e-track-6\M40A.png copy .\data\tracks\road\e-track-6\M40A.png .\%RUNTIMEDIR%\tracks\road\e-track-6\M40A.png
if exist .\data\tracks\road\e-track-6\MASE01.png copy .\data\tracks\road\e-track-6\MASE01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\MASE01.png
if exist .\data\tracks\road\e-track-6\MASE02.png copy .\data\tracks\road\e-track-6\MASE02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\MASE02.png
if exist .\data\tracks\road\e-track-6\MOB1DUO.png copy .\data\tracks\road\e-track-6\MOB1DUO.png .\%RUNTIMEDIR%\tracks\road\e-track-6\MOB1DUO.png
if exist .\data\tracks\road\e-track-6\MUR43A.png copy .\data\tracks\road\e-track-6\MUR43A.png .\%RUNTIMEDIR%\tracks\road\e-track-6\MUR43A.png
if exist .\data\tracks\road\e-track-6\MUR43B.png copy .\data\tracks\road\e-track-6\MUR43B.png .\%RUNTIMEDIR%\tracks\road\e-track-6\MUR43B.png
if exist .\data\tracks\road\e-track-6\OBJA24_arbor_n.png copy .\data\tracks\road\e-track-6\OBJA24_arbor_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\OBJA24_arbor_n.png
if exist .\data\tracks\road\e-track-6\PDKKA13.png copy .\data\tracks\road\e-track-6\PDKKA13.png .\%RUNTIMEDIR%\tracks\road\e-track-6\PDKKA13.png
if exist .\data\tracks\road\e-track-6\PITWB.png copy .\data\tracks\road\e-track-6\PITWB.png .\%RUNTIMEDIR%\tracks\road\e-track-6\PITWB.png
if exist .\data\tracks\road\e-track-6\RA4BRIG5.png copy .\data\tracks\road\e-track-6\RA4BRIG5.png .\%RUNTIMEDIR%\tracks\road\e-track-6\RA4BRIG5.png
if exist .\data\tracks\road\e-track-6\RDGRTRAN.png copy .\data\tracks\road\e-track-6\RDGRTRAN.png .\%RUNTIMEDIR%\tracks\road\e-track-6\RDGRTRAN.png
if exist .\data\tracks\road\e-track-6\ROAD2_n.png copy .\data\tracks\road\e-track-6\ROAD2_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROAD2_n.png
if exist .\data\tracks\road\e-track-6\ROADC.png copy .\data\tracks\road\e-track-6\ROADC.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROADC.png
if exist .\data\tracks\road\e-track-6\roadgras.png copy .\data\tracks\road\e-track-6\roadgras.png .\%RUNTIMEDIR%\tracks\road\e-track-6\roadgras.png
if exist .\data\tracks\road\e-track-6\roadgrsd.png copy .\data\tracks\road\e-track-6\roadgrsd.png .\%RUNTIMEDIR%\tracks\road\e-track-6\roadgrsd.png
if exist .\data\tracks\road\e-track-6\ROAD_n.png copy .\data\tracks\road\e-track-6\ROAD_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROAD_n.png
if exist .\data\tracks\road\e-track-6\ROADPARK.png copy .\data\tracks\road\e-track-6\ROADPARK.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROADPARK.png
if exist .\data\tracks\road\e-track-6\ROADPE_n.png copy .\data\tracks\road\e-track-6\ROADPE_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROADPE_n.png
if exist .\data\tracks\road\e-track-6\ROADPL_n.png copy .\data\tracks\road\e-track-6\ROADPL_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROADPL_n.png
if exist .\data\tracks\road\e-track-6\ROADPT_n.png copy .\data\tracks\road\e-track-6\ROADPT_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ROADPT_n.png
if exist .\data\tracks\road\e-track-6\roadsand.png copy .\data\tracks\road\e-track-6\roadsand.png .\%RUNTIMEDIR%\tracks\road\e-track-6\roadsand.png
if exist .\data\tracks\road\e-track-6\rroadgrs.png copy .\data\tracks\road\e-track-6\rroadgrs.png .\%RUNTIMEDIR%\tracks\road\e-track-6\rroadgrs.png
if exist .\data\tracks\road\e-track-6\RSA02.png copy .\data\tracks\road\e-track-6\RSA02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\RSA02.png
if exist .\data\tracks\road\e-track-6\S463ET.png copy .\data\tracks\road\e-track-6\S463ET.png .\%RUNTIMEDIR%\tracks\road\e-track-6\S463ET.png
if exist .\data\tracks\road\e-track-6\S46POR.png copy .\data\tracks\road\e-track-6\S46POR.png .\%RUNTIMEDIR%\tracks\road\e-track-6\S46POR.png
if exist .\data\tracks\road\e-track-6\SAND02.png copy .\data\tracks\road\e-track-6\SAND02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\SAND02.png
if exist .\data\tracks\road\e-track-6\SEMA02.png copy .\data\tracks\road\e-track-6\SEMA02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\SEMA02.png
if exist .\data\tracks\road\e-track-6\shadow2.png copy .\data\tracks\road\e-track-6\shadow2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\shadow2.png
if exist .\data\tracks\road\e-track-6\shadow3.png copy .\data\tracks\road\e-track-6\shadow3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\shadow3.png
if exist .\data\tracks\road\e-track-6\STAIRSD.png copy .\data\tracks\road\e-track-6\STAIRSD.png .\%RUNTIMEDIR%\tracks\road\e-track-6\STAIRSD.png
if exist .\data\tracks\road\e-track-6\STAIRS.png copy .\data\tracks\road\e-track-6\STAIRS.png .\%RUNTIMEDIR%\tracks\road\e-track-6\STAIRS.png
if exist .\data\tracks\road\e-track-6\TENTG.png copy .\data\tracks\road\e-track-6\TENTG.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TENTG.png
if exist .\data\tracks\road\e-track-6\TENTH.png copy .\data\tracks\road\e-track-6\TENTH.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TENTH.png
if exist .\data\tracks\road\e-track-6\TOITCAS.png copy .\data\tracks\road\e-track-6\TOITCAS.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TOITCAS.png
if exist .\data\tracks\road\e-track-6\TOPCROWD.png copy .\data\tracks\road\e-track-6\TOPCROWD.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TOPCROWD.png
if exist .\data\tracks\road\e-track-6\tree_apple_n.png copy .\data\tracks\road\e-track-6\tree_apple_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\tree_apple_n.png
if exist .\data\tracks\road\e-track-6\tree_bush_n.png copy .\data\tracks\road\e-track-6\tree_bush_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\tree_bush_n.png
if exist .\data\tracks\road\e-track-6\treefc_n.png copy .\data\tracks\road\e-track-6\treefc_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\treefc_n.png
if exist .\data\tracks\road\e-track-6\tree-fir_n.png copy .\data\tracks\road\e-track-6\tree-fir_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\tree-fir_n.png
if exist .\data\tracks\road\e-track-6\treeline_n.png copy .\data\tracks\road\e-track-6\treeline_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\treeline_n.png
if exist .\data\tracks\road\e-track-6\tree_maple_n.png copy .\data\tracks\road\e-track-6\tree_maple_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\tree_maple_n.png
if exist .\data\tracks\road\e-track-6\tree-pine1_n.png copy .\data\tracks\road\e-track-6\tree-pine1_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\tree-pine1_n.png
if exist .\data\tracks\road\e-track-6\TreeRNS3.png copy .\data\tracks\road\e-track-6\TreeRNS3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TreeRNS3.png
if exist .\data\tracks\road\e-track-6\TreeRNS4.png copy .\data\tracks\road\e-track-6\TreeRNS4.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TreeRNS4.png
if exist .\data\tracks\road\e-track-6\TreeRNS5.png copy .\data\tracks\road\e-track-6\TreeRNS5.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TreeRNS5.png
if exist .\data\tracks\road\e-track-6\treeUGLIES01_n.png copy .\data\tracks\road\e-track-6\treeUGLIES01_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\treeUGLIES01_n.png
if exist .\data\tracks\road\e-track-6\treeUGLIES02_n.png copy .\data\tracks\road\e-track-6\treeUGLIES02_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\treeUGLIES02_n.png
if exist .\data\tracks\road\e-track-6\treeUGLIES04_n.png copy .\data\tracks\road\e-track-6\treeUGLIES04_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\treeUGLIES04_n.png
if exist .\data\tracks\road\e-track-6\TRIBA07_arbor_n.png copy .\data\tracks\road\e-track-6\TRIBA07_arbor_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBA07_arbor_n.png
if exist .\data\tracks\road\e-track-6\TRIBA08.png copy .\data\tracks\road\e-track-6\TRIBA08.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBA08.png
if exist .\data\tracks\road\e-track-6\TRIBA09_arbor_n.png copy .\data\tracks\road\e-track-6\TRIBA09_arbor_n.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBA09_arbor_n.png
if exist .\data\tracks\road\e-track-6\TRIBA11.png copy .\data\tracks\road\e-track-6\TRIBA11.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBA11.png
if exist .\data\tracks\road\e-track-6\TRIBB01.png copy .\data\tracks\road\e-track-6\TRIBB01.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBB01.png
if exist .\data\tracks\road\e-track-6\TRIBB02.png copy .\data\tracks\road\e-track-6\TRIBB02.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBB02.png
if exist .\data\tracks\road\e-track-6\TRIBB03.png copy .\data\tracks\road\e-track-6\TRIBB03.png .\%RUNTIMEDIR%\tracks\road\e-track-6\TRIBB03.png
if exist .\data\tracks\road\e-track-6\wall2.png copy .\data\tracks\road\e-track-6\wall2.png .\%RUNTIMEDIR%\tracks\road\e-track-6\wall2.png
if exist .\data\tracks\road\e-track-6\WHEEL.png copy .\data\tracks\road\e-track-6\WHEEL.png .\%RUNTIMEDIR%\tracks\road\e-track-6\WHEEL.png
if exist .\data\tracks\road\e-track-6\WHEELS6.png copy .\data\tracks\road\e-track-6\WHEELS6.png .\%RUNTIMEDIR%\tracks\road\e-track-6\WHEELS6.png
if exist .\data\tracks\road\e-track-6\ZBRID.png copy .\data\tracks\road\e-track-6\ZBRID.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ZBRID.png
if exist .\data\tracks\road\e-track-6\ZPIT3.png copy .\data\tracks\road\e-track-6\ZPIT3.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ZPIT3.png
if exist .\data\tracks\road\e-track-6\ZPIT.png copy .\data\tracks\road\e-track-6\ZPIT.png .\%RUNTIMEDIR%\tracks\road\e-track-6\ZPIT.png
if exist .\data\tracks\road\e-track-6\block1.rgb copy .\data\tracks\road\e-track-6\block1.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\block1.rgb
if exist .\data\tracks\road\e-track-6\concrete2.rgb copy .\data\tracks\road\e-track-6\concrete2.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\concrete2.rgb
if exist .\data\tracks\road\e-track-6\concrete.rgb copy .\data\tracks\road\e-track-6\concrete.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\concrete.rgb
if exist .\data\tracks\road\e-track-6\pylon1.rgb copy .\data\tracks\road\e-track-6\pylon1.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\pylon1.rgb
if exist .\data\tracks\road\e-track-6\shadow2.rgb copy .\data\tracks\road\e-track-6\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\shadow2.rgb
if exist .\data\tracks\road\e-track-6\torcsad1.rgb copy .\data\tracks\road\e-track-6\torcsad1.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\torcsad1.rgb
if exist .\data\tracks\road\e-track-6\torcsad2.rgb copy .\data\tracks\road\e-track-6\torcsad2.rgb .\%RUNTIMEDIR%\tracks\road\e-track-6\torcsad2.rgb
if exist .\data\tracks\g-track-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\g-track-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\g-track-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\g-track-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\g-track-1
if exist .\data\tracks\g-track-1\g-track-1.xml copy .\data\tracks\g-track-1\g-track-1.xml .\%RUNTIMEDIR%\tracks\road\g-track-1\g-track-1.xml
if exist .\data\tracks\g-track-1\g-track-1.acc copy .\data\tracks\g-track-1\g-track-1.acc .\%RUNTIMEDIR%\tracks\road\g-track-1\g-track-1.acc
if exist .\data\tracks\g-track-1\background.png copy .\data\tracks\g-track-1\background.png .\%RUNTIMEDIR%\tracks\road\g-track-1\background.png
if exist .\data\tracks\g-track-1\g-track-1.png copy .\data\tracks\g-track-1\g-track-1.png .\%RUNTIMEDIR%\tracks\road\g-track-1\g-track-1.png
if exist .\data\tracks\g-track-1\readme.txt copy .\data\tracks\g-track-1\readme.txt .\%RUNTIMEDIR%\tracks\road\g-track-1\readme.txt
if exist .\data\tracks\g-track-1\asphalt-bw-g1-1_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-1_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-1_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-patch-1_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-patch-1_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-patch-1_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-patch-2_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-patch-2_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-patch-2_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-patch-3_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-patch-3_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-patch-3_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-pit_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-pit_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-pit_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-pitentry-side_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-pitentry-side_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-pitentry-side_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-pitentry_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-pitentry_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-pitentry_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-sidel-end_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-sidel-end_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-sidel-end_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-sidel-start_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-sidel-start_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-sidel-start_n.rgb
if exist .\data\tracks\g-track-1\asphalt-bw-g1-sidel_n.rgb copy .\data\tracks\g-track-1\asphalt-bw-g1-sidel_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\asphalt-bw-g1-sidel_n.rgb
if exist .\data\tracks\g-track-1\barr1.rgb copy .\data\tracks\g-track-1\barr1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\barr1.rgb
if exist .\data\tracks\g-track-1\earth_and_grass.rgb copy .\data\tracks\g-track-1\earth_and_grass.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\earth_and_grass.rgb
if exist .\data\tracks\g-track-1\facade1-512.rgb copy .\data\tracks\g-track-1\facade1-512.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\facade1-512.rgb
if exist .\data\tracks\g-track-1\facade6-512.rgb copy .\data\tracks\g-track-1\facade6-512.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\facade6-512.rgb
if exist .\data\tracks\g-track-1\facade7.rgb copy .\data\tracks\g-track-1\facade7.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\facade7.rgb
if exist .\data\tracks\g-track-1\fence-arbor_n.rgb copy .\data\tracks\g-track-1\fence-arbor_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\fence-arbor_n.rgb
if exist .\data\tracks\g-track-1\grass-g1.rgb copy .\data\tracks\g-track-1\grass-g1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\grass-g1.rgb
if exist .\data\tracks\g-track-1\poutre3_arbor_n.rgb copy .\data\tracks\g-track-1\poutre3_arbor_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\poutre3_arbor_n.rgb
if exist .\data\tracks\g-track-1\poutre4.rgb copy .\data\tracks\g-track-1\poutre4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\poutre4.rgb
if exist .\data\tracks\g-track-1\roof1.rgb copy .\data\tracks\g-track-1\roof1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\roof1.rgb
if exist .\data\tracks\g-track-1\roof3.rgb copy .\data\tracks\g-track-1\roof3.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\roof3.rgb
if exist .\data\tracks\g-track-1\spectator.rgb copy .\data\tracks\g-track-1\spectator.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\spectator.rgb
if exist .\data\tracks\g-track-1\std.rgb copy .\data\tracks\g-track-1\std.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\std.rgb
if exist .\data\tracks\g-track-1\tarmac-wall-2-g2.rgb copy .\data\tracks\g-track-1\tarmac-wall-2-g2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\tarmac-wall-2-g2.rgb
if exist .\data\tracks\g-track-1\tent.rgb copy .\data\tracks\g-track-1\tent.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\tent.rgb
if exist .\data\tracks\g-track-1\torcs0_arbor_n.rgb copy .\data\tracks\g-track-1\torcs0_arbor_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\torcs0_arbor_n.rgb
if exist .\data\tracks\g-track-1\torcs1.rgb copy .\data\tracks\g-track-1\torcs1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\torcs1.rgb
if exist .\data\tracks\g-track-1\tr-asphalt-aa-bw1_n.rgb copy .\data\tracks\g-track-1\tr-asphalt-aa-bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\tr-asphalt-aa-bw1_n.rgb
if exist .\data\tracks\g-track-1\tree53_n.rgb copy .\data\tracks\g-track-1\tree53_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\tree53_n.rgb
if exist .\data\tracks\g-track-1\truck_arbor_berniw_n.rgb copy .\data\tracks\g-track-1\truck_arbor_berniw_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\truck_arbor_berniw_n.rgb
if exist .\data\tracks\g-track-1\truck_arbor_bt_n.rgb copy .\data\tracks\g-track-1\truck_arbor_bt_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\truck_arbor_bt_n.rgb
if exist .\data\tracks\g-track-1\truck_arbor_inferno_n.rgb copy .\data\tracks\g-track-1\truck_arbor_inferno_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\truck_arbor_inferno_n.rgb
if exist .\data\tracks\g-track-1\truck_arbor_speedy_n.rgb copy .\data\tracks\g-track-1\truck_arbor_speedy_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\truck_arbor_speedy_n.rgb
if exist .\data\tracks\g-track-1\truck_arbor_tita_n.rgb copy .\data\tracks\g-track-1\truck_arbor_tita_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\truck_arbor_tita_n.rgb
if exist .\data\tracks\g-track-1\wall-green-yellow.rgb copy .\data\tracks\g-track-1\wall-green-yellow.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\wall-green-yellow.rgb
if exist .\data\tracks\g-track-1\wall-grey.rgb copy .\data\tracks\g-track-1\wall-grey.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\wall-grey.rgb
if exist .\data\tracks\g-track-1\wall4.rgb copy .\data\tracks\g-track-1\wall4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\wall4.rgb
if exist .\data\tracks\g-track-1\shadow2.rgb copy .\data\tracks\g-track-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-1\shadow2.rgb
if exist .\data\tracks\oval\michigan\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\michigan\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\michigan\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\michigan\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\michigan
if exist .\data\tracks\oval\michigan\michigan.xml copy .\data\tracks\oval\michigan\michigan.xml .\%RUNTIMEDIR%\tracks\oval\michigan\michigan.xml
if exist .\data\tracks\oval\michigan\background.png copy .\data\tracks\oval\michigan\background.png .\%RUNTIMEDIR%\tracks\oval\michigan\background.png
if exist .\data\tracks\oval\michigan\michigan.acc copy .\data\tracks\oval\michigan\michigan.acc .\%RUNTIMEDIR%\tracks\oval\michigan\michigan.acc
if exist .\data\tracks\oval\michigan\michigan.png copy .\data\tracks\oval\michigan\michigan.png .\%RUNTIMEDIR%\tracks\oval\michigan\michigan.png
if exist .\data\tracks\oval\michigan\readme.txt copy .\data\tracks\oval\michigan\readme.txt .\%RUNTIMEDIR%\tracks\oval\michigan\readme.txt
if exist .\data\tracks\oval\michigan\allborg-trees_n.rgb copy .\data\tracks\oval\michigan\allborg-trees_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\allborg-trees_n.rgb
if exist .\data\tracks\oval\michigan\arbor_frame_n.rgb copy .\data\tracks\oval\michigan\arbor_frame_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\arbor_frame_n.rgb
if exist .\data\tracks\oval\michigan\asphalt-bw-m1-1_n.rgb copy .\data\tracks\oval\michigan\asphalt-bw-m1-1_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\asphalt-bw-m1-1_n.rgb
if exist .\data\tracks\oval\michigan\asphalt-bw-m1-pit-1_n.rgb copy .\data\tracks\oval\michigan\asphalt-bw-m1-pit-1_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\asphalt-bw-m1-pit-1_n.rgb
if exist .\data\tracks\oval\michigan\asphalt-bw-m1-pitentry-1_n.rgb copy .\data\tracks\oval\michigan\asphalt-bw-m1-pitentry-1_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\asphalt-bw-m1-pitentry-1_n.rgb
if exist .\data\tracks\oval\michigan\asphalt-bw-m1-pitentry-leftside-1_n.rgb copy .\data\tracks\oval\michigan\asphalt-bw-m1-pitentry-leftside-1_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\asphalt-bw-m1-pitentry-leftside-1_n.rgb
if exist .\data\tracks\oval\michigan\block1.rgb copy .\data\tracks\oval\michigan\block1.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\block1.rgb
if exist .\data\tracks\oval\michigan\block2.rgb copy .\data\tracks\oval\michigan\block2.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\block2.rgb
if exist .\data\tracks\oval\michigan\border-dirt.rgb copy .\data\tracks\oval\michigan\border-dirt.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\border-dirt.rgb
if exist .\data\tracks\oval\michigan\facade4-512.rgb copy .\data\tracks\oval\michigan\facade4-512.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\facade4-512.rgb
if exist .\data\tracks\oval\michigan\forest1-tree-m1_n.rgb copy .\data\tracks\oval\michigan\forest1-tree-m1_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\forest1-tree-m1_n.rgb
if exist .\data\tracks\oval\michigan\grass-m1-2.rgb copy .\data\tracks\oval\michigan\grass-m1-2.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\grass-m1-2.rgb
if exist .\data\tracks\oval\michigan\grass-m1.rgb copy .\data\tracks\oval\michigan\grass-m1.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\grass-m1.rgb
if exist .\data\tracks\oval\michigan\grass-m3-arbor_n.rgb copy .\data\tracks\oval\michigan\grass-m3-arbor_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\grass-m3-arbor_n.rgb
if exist .\data\tracks\oval\michigan\michigan-arbor_n.rgb copy .\data\tracks\oval\michigan\michigan-arbor_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\michigan-arbor_n.rgb
if exist .\data\tracks\oval\michigan\poutre3_arbor_n.rgb copy .\data\tracks\oval\michigan\poutre3_arbor_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\poutre3_arbor_n.rgb
if exist .\data\tracks\oval\michigan\roof3.rgb copy .\data\tracks\oval\michigan\roof3.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\roof3.rgb
if exist .\data\tracks\oval\michigan\roof5.rgb copy .\data\tracks\oval\michigan\roof5.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\roof5.rgb
if exist .\data\tracks\oval\michigan\std.rgb copy .\data\tracks\oval\michigan\std.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\std.rgb
if exist .\data\tracks\oval\michigan\tarmac-wall-2-g2.rgb copy .\data\tracks\oval\michigan\tarmac-wall-2-g2.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\tarmac-wall-2-g2.rgb
if exist .\data\tracks\oval\michigan\tent.rgb copy .\data\tracks\oval\michigan\tent.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\tent.rgb
if exist .\data\tracks\oval\michigan\torcs0_arbor_n.rgb copy .\data\tracks\oval\michigan\torcs0_arbor_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\torcs0_arbor_n.rgb
if exist .\data\tracks\oval\michigan\torcs1.rgb copy .\data\tracks\oval\michigan\torcs1.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\torcs1.rgb
if exist .\data\tracks\oval\michigan\torcs-url-yellow-red.rgb copy .\data\tracks\oval\michigan\torcs-url-yellow-red.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\torcs-url-yellow-red.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_berniw_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_berniw_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_berniw_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_bt_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_bt_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_bt_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_ctd_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_ctd_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_ctd_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_cylos_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_cylos_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_cylos_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_inferno_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_inferno_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_inferno_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_speedy_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_speedy_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_speedy_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_tanhoj_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_tanhoj_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_tanhoj_n.rgb
if exist .\data\tracks\oval\michigan\truck_arbor_tita_n.rgb copy .\data\tracks\oval\michigan\truck_arbor_tita_n.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\truck_arbor_tita_n.rgb
if exist .\data\tracks\oval\michigan\wall4.rgb copy .\data\tracks\oval\michigan\wall4.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\wall4.rgb
if exist .\data\tracks\oval\michigan\wall-m1-2.rgb copy .\data\tracks\oval\michigan\wall-m1-2.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\wall-m1-2.rgb
if exist .\data\tracks\oval\michigan\wall-m1.rgb copy .\data\tracks\oval\michigan\wall-m1.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\wall-m1.rgb
if exist .\data\tracks\oval\michigan\wall-torcs.rgb copy .\data\tracks\oval\michigan\wall-torcs.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\wall-torcs.rgb
if exist .\data\tracks\oval\michigan\shadow2.rgb copy .\data\tracks\oval\michigan\shadow2.rgb .\%RUNTIMEDIR%\tracks\oval\michigan\shadow2.rgb
if exist .\data\tracks\road\ruudskogen\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\ruudskogen\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\ruudskogen\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\ruudskogen\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\ruudskogen
if exist .\data\tracks\road\ruudskogen\ruudskogen.xml copy .\data\tracks\road\ruudskogen\ruudskogen.xml .\%RUNTIMEDIR%\tracks\road\ruudskogen\ruudskogen.xml
if exist .\data\tracks\road\ruudskogen\ruudskogen.acc copy .\data\tracks\road\ruudskogen\ruudskogen.acc .\%RUNTIMEDIR%\tracks\road\ruudskogen\ruudskogen.acc
if exist .\data\tracks\road\ruudskogen\ruudskogen.png copy .\data\tracks\road\ruudskogen\ruudskogen.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\ruudskogen.png
if exist .\data\tracks\road\ruudskogen\readme.txt copy .\data\tracks\road\ruudskogen\readme.txt .\%RUNTIMEDIR%\tracks\road\ruudskogen\readme.txt
if exist .\data\tracks\road\ruudskogen\background.png copy .\data\tracks\road\ruudskogen\background.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\background.png
if exist .\data\tracks\road\ruudskogen\shadow2.rgb copy .\data\tracks\road\ruudskogen\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\ruudskogen\shadow2.rgb
if exist .\data\tracks\road\ruudskogen\env.png copy .\data\tracks\road\ruudskogen\env.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\env.png
if exist .\data\tracks\road\ruudskogen\arb01_n.png copy .\data\tracks\road\ruudskogen\arb01_n.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\arb01_n.png
if exist .\data\tracks\road\ruudskogen\arb02_n.png copy .\data\tracks\road\ruudskogen\arb02_n.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\arb02_n.png
if exist .\data\tracks\road\ruudskogen\background.png copy .\data\tracks\road\ruudskogen\background.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\background.png
if exist .\data\tracks\road\ruudskogen\dekk01.png copy .\data\tracks\road\ruudskogen\dekk01.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\dekk01.png
if exist .\data\tracks\road\ruudskogen\grass01.png copy .\data\tracks\road\ruudskogen\grass01.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\grass01.png
if exist .\data\tracks\road\ruudskogen\grass02.png copy .\data\tracks\road\ruudskogen\grass02.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\grass02.png
if exist .\data\tracks\road\ruudskogen\hus02.png copy .\data\tracks\road\ruudskogen\hus02.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\hus02.png
if exist .\data\tracks\road\ruudskogen\hytte01.png copy .\data\tracks\road\ruudskogen\hytte01.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\hytte01.png
if exist .\data\tracks\road\ruudskogen\lave01.png copy .\data\tracks\road\ruudskogen\lave01.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\lave01.png
if exist .\data\tracks\road\ruudskogen\lave02.png copy .\data\tracks\road\ruudskogen\lave02.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\lave02.png
if exist .\data\tracks\road\ruudskogen\rk_tree_1_n.png copy .\data\tracks\road\ruudskogen\rk_tree_1_n.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\rk_tree_1_n.png
if exist .\data\tracks\road\ruudskogen\rk_tree_2_n.png copy .\data\tracks\road\ruudskogen\rk_tree_2_n.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\rk_tree_2_n.png
if exist .\data\tracks\road\ruudskogen\rk_tree_3_n.png copy .\data\tracks\road\ruudskogen\rk_tree_3_n.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\rk_tree_3_n.png
if exist .\data\tracks\road\ruudskogen\road01-dashlines.png copy .\data\tracks\road\ruudskogen\road01-dashlines.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road01-dashlines.png
if exist .\data\tracks\road\ruudskogen\road01-pitentry.png copy .\data\tracks\road\ruudskogen\road01-pitentry.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road01-pitentry.png
if exist .\data\tracks\road\ruudskogen\road01-pits_n.png copy .\data\tracks\road\ruudskogen\road01-pits_n.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road01-pits_n.png
if exist .\data\tracks\road\ruudskogen\road01.png copy .\data\tracks\road\ruudskogen\road01.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road01.png
if exist .\data\tracks\road\ruudskogen\road02.png copy .\data\tracks\road\ruudskogen\road02.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road02.png
if exist .\data\tracks\road\ruudskogen\road03.png copy .\data\tracks\road\ruudskogen\road03.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road03.png
if exist .\data\tracks\road\ruudskogen\road-edge.png copy .\data\tracks\road\ruudskogen\road-edge.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\road-edge.png
if exist .\data\tracks\road\ruudskogen\ruudskog_arbor.png copy .\data\tracks\road\ruudskogen\ruudskog_arbor.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\ruudskog_arbor.png
if exist .\data\tracks\road\ruudskogen\sand01.png copy .\data\tracks\road\ruudskogen\sand01.png .\%RUNTIMEDIR%\tracks\road\ruudskogen\sand01.png
if exist .\data\tracks\mixed-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\mixed-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\mixed-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\mixed-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\mixed-1
if exist .\data\tracks\mixed-1\background.png copy .\data\tracks\mixed-1\background.png .\%RUNTIMEDIR%\tracks\dirt\mixed-1\background.png
if exist .\data\tracks\mixed-1\env1.png copy .\data\tracks\mixed-1\env1.png .\%RUNTIMEDIR%\tracks\dirt\mixed-1\env1.png
if exist .\data\tracks\mixed-1\mixed-1.acc copy .\data\tracks\mixed-1\mixed-1.acc .\%RUNTIMEDIR%\tracks\dirt\mixed-1\mixed-1.acc
if exist .\data\tracks\mixed-1\mixed-1.png copy .\data\tracks\mixed-1\mixed-1.png .\%RUNTIMEDIR%\tracks\dirt\mixed-1\mixed-1.png
if exist .\data\tracks\mixed-1\mixed-1.xml copy .\data\tracks\mixed-1\mixed-1.xml .\%RUNTIMEDIR%\tracks\dirt\mixed-1\mixed-1.xml
if exist .\data\tracks\mixed-1\shadow2.rgb copy .\data\tracks\mixed-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\dirt\mixed-1\shadow2.rgb
if exist .\data\tracks\mixed-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\mixed-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\mixed-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\mixed-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\mixed-2
if exist .\data\tracks\mixed-2\mixed-2.xml copy .\data\tracks\mixed-2\mixed-2.xml .\%RUNTIMEDIR%\tracks\dirt\mixed-2\mixed-2.xml
if exist .\data\tracks\mixed-2\background.png copy .\data\tracks\mixed-2\background.png .\%RUNTIMEDIR%\tracks\dirt\mixed-2\background.png
if exist .\data\tracks\mixed-2\env.rgb copy .\data\tracks\mixed-2\env.rgb .\%RUNTIMEDIR%\tracks\dirt\mixed-2\env.rgb
if exist .\data\tracks\mixed-2\mixed-2.ac copy .\data\tracks\mixed-2\mixed-2.ac .\%RUNTIMEDIR%\tracks\dirt\mixed-2\mixed-2.ac
if exist .\data\tracks\mixed-2\mixed-2.png copy .\data\tracks\mixed-2\mixed-2.png .\%RUNTIMEDIR%\tracks\dirt\mixed-2\mixed-2.png
if exist .\data\tracks\oval\b-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\b-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\b-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\b-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\b-speedway
if exist .\data\tracks\oval\b-speedway\background.png copy .\data\tracks\oval\b-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\b-speedway\background.png
if exist .\data\tracks\oval\b-speedway\b-speedway.ac copy .\data\tracks\oval\b-speedway\b-speedway.ac .\%RUNTIMEDIR%\tracks\oval\b-speedway\b-speedway.ac
if exist .\data\tracks\oval\b-speedway\b-speedway.png copy .\data\tracks\oval\b-speedway\b-speedway.png .\%RUNTIMEDIR%\tracks\oval\b-speedway\b-speedway.png
if exist .\data\tracks\oval\b-speedway\b-speedway.xml copy .\data\tracks\oval\b-speedway\b-speedway.xml .\%RUNTIMEDIR%\tracks\oval\b-speedway\b-speedway.xml
if exist .\data\tracks\oval\c-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\c-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\c-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\c-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\c-speedway
if exist .\data\tracks\oval\c-speedway\background.png copy .\data\tracks\oval\c-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\c-speedway\background.png
if exist .\data\tracks\oval\c-speedway\c-speedway.ac copy .\data\tracks\oval\c-speedway\c-speedway.ac .\%RUNTIMEDIR%\tracks\oval\c-speedway\c-speedway.ac
if exist .\data\tracks\oval\c-speedway\c-speedway.png copy .\data\tracks\oval\c-speedway\c-speedway.png .\%RUNTIMEDIR%\tracks\oval\c-speedway\c-speedway.png
if exist .\data\tracks\oval\c-speedway\c-speedway.xml copy .\data\tracks\oval\c-speedway\c-speedway.xml .\%RUNTIMEDIR%\tracks\oval\c-speedway\c-speedway.xml
if exist .\data\tracks\oval\d-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\d-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\d-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\d-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\d-speedway
if exist .\data\tracks\oval\d-speedway\background.png copy .\data\tracks\oval\d-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\d-speedway\background.png
if exist .\data\tracks\oval\d-speedway\d-speedway.ac copy .\data\tracks\oval\d-speedway\d-speedway.ac .\%RUNTIMEDIR%\tracks\oval\d-speedway\d-speedway.ac
if exist .\data\tracks\oval\d-speedway\d-speedway.png copy .\data\tracks\oval\d-speedway\d-speedway.png .\%RUNTIMEDIR%\tracks\oval\d-speedway\d-speedway.png
if exist .\data\tracks\oval\d-speedway\d-speedway.xml copy .\data\tracks\oval\d-speedway\d-speedway.xml .\%RUNTIMEDIR%\tracks\oval\d-speedway\d-speedway.xml
if exist .\data\tracks\oval\e-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\e-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\e-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\e-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\e-speedway
if exist .\data\tracks\oval\e-speedway\background.png copy .\data\tracks\oval\e-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\e-speedway\background.png
if exist .\data\tracks\oval\e-speedway\e-speedway.ac copy .\data\tracks\oval\e-speedway\e-speedway.ac .\%RUNTIMEDIR%\tracks\oval\e-speedway\e-speedway.ac
if exist .\data\tracks\oval\e-speedway\e-speedway.png copy .\data\tracks\oval\e-speedway\e-speedway.png .\%RUNTIMEDIR%\tracks\oval\e-speedway\e-speedway.png
if exist .\data\tracks\oval\e-speedway\e-speedway.xml copy .\data\tracks\oval\e-speedway\e-speedway.xml .\%RUNTIMEDIR%\tracks\oval\e-speedway\e-speedway.xml
if exist .\data\tracks\oval\f-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\f-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\f-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\f-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\f-speedway
if exist .\data\tracks\oval\f-speedway\background.png copy .\data\tracks\oval\f-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\f-speedway\background.png
if exist .\data\tracks\oval\f-speedway\f-speedway.ac copy .\data\tracks\oval\f-speedway\f-speedway.ac .\%RUNTIMEDIR%\tracks\oval\f-speedway\f-speedway.ac
if exist .\data\tracks\oval\f-speedway\f-speedway.png copy .\data\tracks\oval\f-speedway\f-speedway.png .\%RUNTIMEDIR%\tracks\oval\f-speedway\f-speedway.png
if exist .\data\tracks\oval\f-speedway\f-speedway.xml copy .\data\tracks\oval\f-speedway\f-speedway.xml .\%RUNTIMEDIR%\tracks\oval\f-speedway\f-speedway.xml
if exist .\data\tracks\oval\g-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\g-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\g-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\g-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\g-speedway
if exist .\data\tracks\oval\g-speedway\background.png copy .\data\tracks\oval\g-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\g-speedway\background.png
if exist .\data\tracks\oval\g-speedway\g-speedway.ac copy .\data\tracks\oval\g-speedway\g-speedway.ac .\%RUNTIMEDIR%\tracks\oval\g-speedway\g-speedway.ac
if exist .\data\tracks\oval\g-speedway\g-speedway.png copy .\data\tracks\oval\g-speedway\g-speedway.png .\%RUNTIMEDIR%\tracks\oval\g-speedway\g-speedway.png
if exist .\data\tracks\oval\g-speedway\g-speedway.xml copy .\data\tracks\oval\g-speedway\g-speedway.xml .\%RUNTIMEDIR%\tracks\oval\g-speedway\g-speedway.xml
if exist .\data\tracks\oval\h-speedway\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\oval\h-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\oval\h-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval
if exist .\data\tracks\oval\h-speedway\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\oval\h-speedway
if exist .\data\tracks\oval\h-speedway\background.png copy .\data\tracks\oval\h-speedway\background.png .\%RUNTIMEDIR%\tracks\oval\h-speedway\background.png
if exist .\data\tracks\oval\h-speedway\h-speedway.ac copy .\data\tracks\oval\h-speedway\h-speedway.ac .\%RUNTIMEDIR%\tracks\oval\h-speedway\h-speedway.ac
if exist .\data\tracks\oval\h-speedway\h-speedway.png copy .\data\tracks\oval\h-speedway\h-speedway.png .\%RUNTIMEDIR%\tracks\oval\h-speedway\h-speedway.png
if exist .\data\tracks\oval\h-speedway\h-speedway.xml copy .\data\tracks\oval\h-speedway\h-speedway.xml .\%RUNTIMEDIR%\tracks\oval\h-speedway\h-speedway.xml
if exist .\data\tracks\road\alpine-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\alpine-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\alpine-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\alpine-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\alpine-1
if exist .\data\tracks\road\alpine-1\alpine-1.acc copy .\data\tracks\road\alpine-1\alpine-1.acc .\%RUNTIMEDIR%\tracks\road\alpine-1\alpine-1.acc
if exist .\data\tracks\road\alpine-1\alpine-1.png copy .\data\tracks\road\alpine-1\alpine-1.png .\%RUNTIMEDIR%\tracks\road\alpine-1\alpine-1.png
if exist .\data\tracks\road\alpine-1\alpine-1.xml copy .\data\tracks\road\alpine-1\alpine-1.xml .\%RUNTIMEDIR%\tracks\road\alpine-1\alpine-1.xml
if exist .\data\tracks\road\alpine-1\arbor01.rgb copy .\data\tracks\road\alpine-1\arbor01.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\arbor01.rgb
if exist .\data\tracks\road\alpine-1\asgrassr_n.rgb copy .\data\tracks\road\alpine-1\asgrassr_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\asgrassr_n.rgb
if exist .\data\tracks\road\alpine-1\background.png copy .\data\tracks\road\alpine-1\background.png .\%RUNTIMEDIR%\tracks\road\alpine-1\background.png
if exist .\data\tracks\road\alpine-1\barg3.rgb copy .\data\tracks\road\alpine-1\barg3.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\barg3.rgb
if exist .\data\tracks\road\alpine-1\barrier.rgb copy .\data\tracks\road\alpine-1\barrier.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\barrier.rgb
if exist .\data\tracks\road\alpine-1\cham2.rgb copy .\data\tracks\road\alpine-1\cham2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\cham2.rgb
if exist .\data\tracks\road\alpine-1\concdal.rgb copy .\data\tracks\road\alpine-1\concdal.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\concdal.rgb
if exist .\data\tracks\road\alpine-1\gconcrete.rgb copy .\data\tracks\road\alpine-1\gconcrete.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\gconcrete.rgb
if exist .\data\tracks\road\alpine-1\ggrass3.rgb copy .\data\tracks\road\alpine-1\ggrass3.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\ggrass3.rgb
if exist .\data\tracks\road\alpine-1\house.rgb copy .\data\tracks\road\alpine-1\house.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\house.rgb
if exist .\data\tracks\road\alpine-1\mur2.rgb copy .\data\tracks\road\alpine-1\mur2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\mur2.rgb
if exist .\data\tracks\road\alpine-1\murpub.rgb copy .\data\tracks\road\alpine-1\murpub.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\murpub.rgb
if exist .\data\tracks\road\alpine-1\poutre3.rgb copy .\data\tracks\road\alpine-1\poutre3.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\poutre3.rgb
if exist .\data\tracks\road\alpine-1\road1.rgb copy .\data\tracks\road\alpine-1\road1.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\road1.rgb
if exist .\data\tracks\road\alpine-1\road4.rgb copy .\data\tracks\road\alpine-1\road4.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\road4.rgb
if exist .\data\tracks\road\alpine-1\rockg0.rgb copy .\data\tracks\road\alpine-1\rockg0.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\rockg0.rgb
if exist .\data\tracks\road\alpine-1\shadow2.rgb copy .\data\tracks\road\alpine-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\shadow2.rgb
if exist .\data\tracks\road\alpine-1\torcs2.rgb copy .\data\tracks\road\alpine-1\torcs2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\torcs2.rgb
if exist .\data\tracks\road\alpine-1\treeg10.rgb copy .\data\tracks\road\alpine-1\treeg10.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\treeg10.rgb
if exist .\data\tracks\road\alpine-1\truck0.rgb copy .\data\tracks\road\alpine-1\truck0.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\truck0.rgb
if exist .\data\tracks\road\alpine-1\truck1.rgb copy .\data\tracks\road\alpine-1\truck1.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\truck1.rgb
if exist .\data\tracks\road\alpine-1\walls2.rgb copy .\data\tracks\road\alpine-1\walls2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\walls2.rgb
if exist .\data\tracks\road\alpine-1\walls.rgb copy .\data\tracks\road\alpine-1\walls.rgb .\%RUNTIMEDIR%\tracks\road\alpine-1\walls.rgb
if exist .\data\tracks\road\g-track-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\g-track-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\g-track-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\g-track-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\g-track-2
if exist .\data\tracks\road\g-track-2\g-track-2.xml copy .\data\tracks\road\g-track-2\g-track-2.xml .\%RUNTIMEDIR%\tracks\road\g-track-2\g-track-2.xml
if exist .\data\tracks\road\g-track-2\g-track-2.acc copy .\data\tracks\road\g-track-2\g-track-2.acc .\%RUNTIMEDIR%\tracks\road\g-track-2\g-track-2.acc
if exist .\data\tracks\road\g-track-2\g-track-2.png copy .\data\tracks\road\g-track-2\g-track-2.png .\%RUNTIMEDIR%\tracks\road\g-track-2\g-track-2.png
if exist .\data\tracks\road\g-track-2\background.png copy .\data\tracks\road\g-track-2\background.png .\%RUNTIMEDIR%\tracks\road\g-track-2\background.png
if exist .\data\tracks\road\g-track-2\readme.txt copy .\data\tracks\road\g-track-2\readme.txt .\%RUNTIMEDIR%\tracks\road\g-track-2\readme.txt
if exist .\data\tracks\road\g-track-2\alltree.rgb copy .\data\tracks\road\g-track-2\alltree.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\alltree.rgb
if exist .\data\tracks\road\g-track-2\arbor01.rgb copy .\data\tracks\road\g-track-2\arbor01.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\arbor01.rgb
if exist .\data\tracks\road\g-track-2\gconcrete.rgb copy .\data\tracks\road\g-track-2\gconcrete.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\gconcrete.rgb
if exist .\data\tracks\road\g-track-2\poutre3_arbor_n.rgb copy .\data\tracks\road\g-track-2\poutre3_arbor_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\poutre3_arbor_n.rgb
if exist .\data\tracks\road\g-track-2\concdal.rgb copy .\data\tracks\road\g-track-2\concdal.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\concdal.rgb
if exist .\data\tracks\road\g-track-2\asp_n.rgb copy .\data\tracks\road\g-track-2\asp_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\asp_n.rgb
if exist .\data\tracks\road\g-track-2\asphalt4.rgb copy .\data\tracks\road\g-track-2\asphalt4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\asphalt4.rgb
if exist .\data\tracks\road\g-track-2\asphalt.rgb copy .\data\tracks\road\g-track-2\asphalt.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\asphalt.rgb
if exist .\data\tracks\road\g-track-2\barr1.rgb copy .\data\tracks\road\g-track-2\barr1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\barr1.rgb
if exist .\data\tracks\road\g-track-2\spec.rgb copy .\data\tracks\road\g-track-2\spec.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\spec.rgb
if exist .\data\tracks\road\g-track-2\torcs1.rgb copy .\data\tracks\road\g-track-2\torcs1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\torcs1.rgb
if exist .\data\tracks\road\g-track-2\poutre4.rgb copy .\data\tracks\road\g-track-2\poutre4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\poutre4.rgb
if exist .\data\tracks\road\g-track-2\tent.rgb copy .\data\tracks\road\g-track-2\tent.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\tent.rgb
if exist .\data\tracks\road\g-track-2\barg2.rgb copy .\data\tracks\road\g-track-2\barg2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\barg2.rgb
if exist .\data\tracks\road\g-track-2\torcs2.rgb copy .\data\tracks\road\g-track-2\torcs2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\torcs2.rgb
if exist .\data\tracks\road\g-track-2\std.rgb copy .\data\tracks\road\g-track-2\std.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\std.rgb
if exist .\data\tracks\road\g-track-2\asconcr.rgb copy .\data\tracks\road\g-track-2\asconcr.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\asconcr.rgb
if exist .\data\tracks\road\g-track-2\trcurbr.rgb copy .\data\tracks\road\g-track-2\trcurbr.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\trcurbr.rgb
if exist .\data\tracks\road\g-track-2\trcurbl.rgb copy .\data\tracks\road\g-track-2\trcurbl.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\trcurbl.rgb
if exist .\data\tracks\road\g-track-2\barg3.rgb copy .\data\tracks\road\g-track-2\barg3.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\barg3.rgb
if exist .\data\tracks\road\g-track-2\rock4.rgb copy .\data\tracks\road\g-track-2\rock4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\rock4.rgb
if exist .\data\tracks\road\g-track-2\gtirewall.rgb copy .\data\tracks\road\g-track-2\gtirewall.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\gtirewall.rgb
if exist .\data\tracks\road\g-track-2\gsand.rgb copy .\data\tracks\road\g-track-2\gsand.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\gsand.rgb
if exist .\data\tracks\road\g-track-2\treewate.rgb copy .\data\tracks\road\g-track-2\treewate.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\treewate.rgb
if exist .\data\tracks\road\g-track-2\torcs0_arbor_n.rgb copy .\data\tracks\road\g-track-2\torcs0_arbor_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\torcs0_arbor_n.rgb
if exist .\data\tracks\road\g-track-2\grassg1.rgb copy .\data\tracks\road\g-track-2\grassg1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\grassg1.rgb
if exist .\data\tracks\road\g-track-2\grassg3.rgb copy .\data\tracks\road\g-track-2\grassg3.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\grassg3.rgb
if exist .\data\tracks\road\g-track-2\shadow2.rgb copy .\data\tracks\road\g-track-2\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-2\shadow2.rgb
if exist .\data\tracks\road\g-track-3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\g-track-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\g-track-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\g-track-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\g-track-3
if exist .\data\tracks\road\g-track-3\g-track-3.xml copy .\data\tracks\road\g-track-3\g-track-3.xml .\%RUNTIMEDIR%\tracks\road\g-track-3\g-track-3.xml
if exist .\data\tracks\road\g-track-3\g-track-3.acc copy .\data\tracks\road\g-track-3\g-track-3.acc .\%RUNTIMEDIR%\tracks\road\g-track-3\g-track-3.acc
if exist .\data\tracks\road\g-track-3\g-track-3.png copy .\data\tracks\road\g-track-3\g-track-3.png .\%RUNTIMEDIR%\tracks\road\g-track-3\g-track-3.png
if exist .\data\tracks\road\g-track-3\arbor-wood_n.rgb copy .\data\tracks\road\g-track-3\arbor-wood_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\arbor-wood_n.rgb
if exist .\data\tracks\road\g-track-3\arbor01.rgb copy .\data\tracks\road\g-track-3\arbor01.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\arbor01.rgb
if exist .\data\tracks\road\g-track-3\asasphr.rgb copy .\data\tracks\road\g-track-3\asasphr.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\asasphr.rgb
if exist .\data\tracks\road\g-track-3\asconcr.rgb copy .\data\tracks\road\g-track-3\asconcr.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\asconcr.rgb
if exist .\data\tracks\road\g-track-3\asgrassr_n.rgb copy .\data\tracks\road\g-track-3\asgrassr_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\asgrassr_n.rgb
if exist .\data\tracks\road\g-track-3\asp_n.rgb copy .\data\tracks\road\g-track-3\asp_n.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\asp_n.rgb
if exist .\data\tracks\road\g-track-3\asphalt4.rgb copy .\data\tracks\road\g-track-3\asphalt4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\asphalt4.rgb
if exist .\data\tracks\road\g-track-3\assandr.rgb copy .\data\tracks\road\g-track-3\assandr.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\assandr.rgb
if exist .\data\tracks\road\g-track-3\barg2.rgb copy .\data\tracks\road\g-track-3\barg2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\barg2.rgb
if exist .\data\tracks\road\g-track-3\barg3.rgb copy .\data\tracks\road\g-track-3\barg3.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\barg3.rgb
if exist .\data\tracks\road\g-track-3\concdal.rgb copy .\data\tracks\road\g-track-3\concdal.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\concdal.rgb
if exist .\data\tracks\road\g-track-3\gconcrete.rgb copy .\data\tracks\road\g-track-3\gconcrete.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\gconcrete.rgb
if exist .\data\tracks\road\g-track-3\ggrass3.rgb copy .\data\tracks\road\g-track-3\ggrass3.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\ggrass3.rgb
if exist .\data\tracks\road\g-track-3\gsand.rgb copy .\data\tracks\road\g-track-3\gsand.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\gsand.rgb
if exist .\data\tracks\road\g-track-3\gtirewall.rgb copy .\data\tracks\road\g-track-3\gtirewall.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\gtirewall.rgb
if exist .\data\tracks\road\g-track-3\house.rgb copy .\data\tracks\road\g-track-3\house.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\house.rgb
if exist .\data\tracks\road\g-track-3\mur2.rgb copy .\data\tracks\road\g-track-3\mur2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\mur2.rgb
if exist .\data\tracks\road\g-track-3\road1.rgb copy .\data\tracks\road\g-track-3\road1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\road1.rgb
if exist .\data\tracks\road\g-track-3\road2.rgb copy .\data\tracks\road\g-track-3\road2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\road2.rgb
if exist .\data\tracks\road\g-track-3\road3.rgb copy .\data\tracks\road\g-track-3\road3.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\road3.rgb
if exist .\data\tracks\road\g-track-3\road4.rgb copy .\data\tracks\road\g-track-3\road4.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\road4.rgb
if exist .\data\tracks\road\g-track-3\road5.rgb copy .\data\tracks\road\g-track-3\road5.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\road5.rgb
if exist .\data\tracks\road\g-track-3\rockg0.rgb copy .\data\tracks\road\g-track-3\rockg0.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\rockg0.rgb
if exist .\data\tracks\road\g-track-3\torcs1.rgb copy .\data\tracks\road\g-track-3\torcs1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\torcs1.rgb
if exist .\data\tracks\road\g-track-3\torcs2.rgb copy .\data\tracks\road\g-track-3\torcs2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\torcs2.rgb
if exist .\data\tracks\road\g-track-3\treebui1.rgb copy .\data\tracks\road\g-track-3\treebui1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\treebui1.rgb
if exist .\data\tracks\road\g-track-3\treeg10.rgb copy .\data\tracks\road\g-track-3\treeg10.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\treeg10.rgb
if exist .\data\tracks\road\g-track-3\truck0.rgb copy .\data\tracks\road\g-track-3\truck0.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\truck0.rgb
if exist .\data\tracks\road\g-track-3\truck1.rgb copy .\data\tracks\road\g-track-3\truck1.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\truck1.rgb
if exist .\data\tracks\road\g-track-3\walls.rgb copy .\data\tracks\road\g-track-3\walls.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\walls.rgb
if exist .\data\tracks\road\g-track-3\walls2.rgb copy .\data\tracks\road\g-track-3\walls2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\walls2.rgb
if exist .\data\tracks\road\g-track-3\readme.txt copy .\data\tracks\road\g-track-3\readme.txt .\%RUNTIMEDIR%\tracks\road\g-track-3\readme.txt
if exist .\data\tracks\road\g-track-3\background.png copy .\data\tracks\road\g-track-3\background.png .\%RUNTIMEDIR%\tracks\road\g-track-3\background.png
if exist .\data\tracks\road\g-track-3\shadow2.rgb copy .\data\tracks\road\g-track-3\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\shadow2.rgb
if exist .\data\tracks\road\g-track-3\skid_m2.rgb copy .\data\tracks\road\g-track-3\skid_m2.rgb .\%RUNTIMEDIR%\tracks\road\g-track-3\skid_m2.rgb
if exist .\data\tracks\road\ole-road-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\ole-road-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\ole-road-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\ole-road-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\ole-road-1
if exist .\data\tracks\road\ole-road-1\ole-road-1.xml copy .\data\tracks\road\ole-road-1\ole-road-1.xml .\%RUNTIMEDIR%\tracks\road\ole-road-1\ole-road-1.xml
if exist .\data\tracks\road\ole-road-1\ole-road-1.acc copy .\data\tracks\road\ole-road-1\ole-road-1.acc .\%RUNTIMEDIR%\tracks\road\ole-road-1\ole-road-1.acc
if exist .\data\tracks\road\ole-road-1\ole-road-1.png copy .\data\tracks\road\ole-road-1\ole-road-1.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\ole-road-1.png
if exist .\data\tracks\road\ole-road-1\concrete-patch.png copy .\data\tracks\road\ole-road-1\concrete-patch.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\concrete-patch.png
if exist .\data\tracks\road\ole-road-1\cracked-asphalt.png copy .\data\tracks\road\ole-road-1\cracked-asphalt.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\cracked-asphalt.png
if exist .\data\tracks\road\ole-road-1\ole-concrete-pits.png copy .\data\tracks\road\ole-road-1\ole-concrete-pits.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\ole-concrete-pits.png
if exist .\data\tracks\road\ole-road-1\ole-concrete-side.png copy .\data\tracks\road\ole-road-1\ole-concrete-side.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\ole-concrete-side.png
if exist .\data\tracks\road\ole-road-1\patched-asphalt-1.png copy .\data\tracks\road\ole-road-1\patched-asphalt-1.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\patched-asphalt-1.png
if exist .\data\tracks\road\ole-road-1\patched-asphalt-2.png copy .\data\tracks\road\ole-road-1\patched-asphalt-2.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\patched-asphalt-2.png
if exist .\data\tracks\road\ole-road-1\readme.txt copy .\data\tracks\road\ole-road-1\readme.txt .\%RUNTIMEDIR%\tracks\road\ole-road-1\readme.txt
if exist .\data\tracks\road\ole-road-1\shadow2.rgb copy .\data\tracks\road\ole-road-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\ole-road-1\shadow2.rgb
if exist .\data\tracks\road\ole-road-1\tr-asphalt-l_nmm.rgb copy .\data\tracks\road\ole-road-1\tr-asphalt-l_nmm.rgb .\%RUNTIMEDIR%\tracks\road\ole-road-1\tr-asphalt-l_nmm.rgb
if exist .\data\tracks\road\ole-road-1\close-bush.rgb copy .\data\tracks\road\ole-road-1\close-bush.rgb .\%RUNTIMEDIR%\tracks\road\ole-road-1\close-bush.rgb
if exist .\data\tracks\road\ole-road-1\background.png copy .\data\tracks\road\ole-road-1\background.png .\%RUNTIMEDIR%\tracks\road\ole-road-1\background.png
if exist .\data\tracks\road\spring\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\spring\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\spring\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\spring\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\spring
if exist .\data\tracks\road\spring\spring.xml copy .\data\tracks\road\spring\spring.xml .\%RUNTIMEDIR%\tracks\road\spring\spring.xml
if exist .\data\tracks\road\spring\spring.ac copy .\data\tracks\road\spring\spring.ac .\%RUNTIMEDIR%\tracks\road\spring\spring.ac
if exist .\data\tracks\road\spring\spring.png copy .\data\tracks\road\spring\spring.png .\%RUNTIMEDIR%\tracks\road\spring\spring.png
if exist .\data\tracks\wheel-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\wheel-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\wheel-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\wheel-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\wheel-1
if exist .\data\tracks\wheel-1\wheel-1.xml copy .\data\tracks\wheel-1\wheel-1.xml .\%RUNTIMEDIR%\tracks\road\wheel-1\wheel-1.xml
if exist .\data\tracks\wheel-1\background.png copy .\data\tracks\wheel-1\background.png .\%RUNTIMEDIR%\tracks\road\wheel-1\background.png
if exist .\data\tracks\wheel-1\env.rgb copy .\data\tracks\wheel-1\env.rgb .\%RUNTIMEDIR%\tracks\road\wheel-1\env.rgb
if exist .\data\tracks\wheel-1\wheel-1.ac copy .\data\tracks\wheel-1\wheel-1.ac .\%RUNTIMEDIR%\tracks\road\wheel-1\wheel-1.ac
if exist .\data\tracks\wheel-1\wheel-1.png copy .\data\tracks\wheel-1\wheel-1.png .\%RUNTIMEDIR%\tracks\road\wheel-1\wheel-1.png
if exist .\data\tracks\road\wheel-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\wheel-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\wheel-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\wheel-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\wheel-2
if exist .\data\tracks\road\wheel-2\wheel-2.xml copy .\data\tracks\road\wheel-2\wheel-2.xml .\%RUNTIMEDIR%\tracks\road\wheel-2\wheel-2.xml
if exist .\data\tracks\road\wheel-2\wheel-2.acc copy .\data\tracks\road\wheel-2\wheel-2.acc .\%RUNTIMEDIR%\tracks\road\wheel-2\wheel-2.acc
if exist .\data\tracks\road\wheel-2\wheel-2.png copy .\data\tracks\road\wheel-2\wheel-2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\wheel-2.png
if exist .\data\tracks\road\wheel-2\readme.txt copy .\data\tracks\road\wheel-2\readme.txt .\%RUNTIMEDIR%\tracks\road\wheel-2\readme.txt
if exist .\data\tracks\road\wheel-2\asphalt_mr-pitentry_n.png copy .\data\tracks\road\wheel-2\asphalt_mr-pitentry_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\asphalt_mr-pitentry_n.png
if exist .\data\tracks\road\wheel-2\asphalt_n.png copy .\data\tracks\road\wheel-2\asphalt_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\asphalt_n.png
if exist .\data\tracks\road\wheel-2\asphalt-pit_n.png copy .\data\tracks\road\wheel-2\asphalt-pit_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\asphalt-pit_n.png
if exist .\data\tracks\road\wheel-2\asphalt-sidel_n.png copy .\data\tracks\road\wheel-2\asphalt-sidel_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\asphalt-sidel_n.png
if exist .\data\tracks\road\wheel-2\background.png copy .\data\tracks\road\wheel-2\background.png .\%RUNTIMEDIR%\tracks\road\wheel-2\background.png
if exist .\data\tracks\road\wheel-2\building1.png copy .\data\tracks\road\wheel-2\building1.png .\%RUNTIMEDIR%\tracks\road\wheel-2\building1.png
if exist .\data\tracks\road\wheel-2\building2.png copy .\data\tracks\road\wheel-2\building2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\building2.png
if exist .\data\tracks\road\wheel-2\clkdtm.png copy .\data\tracks\road\wheel-2\clkdtm.png .\%RUNTIMEDIR%\tracks\road\wheel-2\clkdtm.png
if exist .\data\tracks\road\wheel-2\girder_tree_n.png copy .\data\tracks\road\wheel-2\girder_tree_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\girder_tree_n.png
if exist .\data\tracks\road\wheel-2\grass.png copy .\data\tracks\road\wheel-2\grass.png .\%RUNTIMEDIR%\tracks\road\wheel-2\grass.png
if exist .\data\tracks\road\wheel-2\rmbl.png copy .\data\tracks\road\wheel-2\rmbl.png .\%RUNTIMEDIR%\tracks\road\wheel-2\rmbl.png
if exist .\data\tracks\road\wheel-2\sand.png copy .\data\tracks\road\wheel-2\sand.png .\%RUNTIMEDIR%\tracks\road\wheel-2\sand.png
if exist .\data\tracks\road\wheel-2\sbridge2.png copy .\data\tracks\road\wheel-2\sbridge2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\sbridge2.png
if exist .\data\tracks\road\wheel-2\shadow2.png copy .\data\tracks\road\wheel-2\shadow2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\shadow2.png
if exist .\data\tracks\road\wheel-2\sign1.png copy .\data\tracks\road\wheel-2\sign1.png .\%RUNTIMEDIR%\tracks\road\wheel-2\sign1.png
if exist .\data\tracks\road\wheel-2\sign2.png copy .\data\tracks\road\wheel-2\sign2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\sign2.png
if exist .\data\tracks\road\wheel-2\sign3.png copy .\data\tracks\road\wheel-2\sign3.png .\%RUNTIMEDIR%\tracks\road\wheel-2\sign3.png
if exist .\data\tracks\road\wheel-2\swall2.png copy .\data\tracks\road\wheel-2\swall2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\swall2.png
if exist .\data\tracks\road\wheel-2\tirewall.png copy .\data\tracks\road\wheel-2\tirewall.png .\%RUNTIMEDIR%\tracks\road\wheel-2\tirewall.png
if exist .\data\tracks\road\wheel-2\tr-barrier.png copy .\data\tracks\road\wheel-2\tr-barrier.png .\%RUNTIMEDIR%\tracks\road\wheel-2\tr-barrier.png
if exist .\data\tracks\road\wheel-2\tr-barrier-tree_n.png copy .\data\tracks\road\wheel-2\tr-barrier-tree_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\tr-barrier-tree_n.png
if exist .\data\tracks\road\wheel-2\treeg11_n.png copy .\data\tracks\road\wheel-2\treeg11_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\treeg11_n.png
if exist .\data\tracks\road\wheel-2\treeline.png copy .\data\tracks\road\wheel-2\treeline.png .\%RUNTIMEDIR%\tracks\road\wheel-2\treeline.png
if exist .\data\tracks\road\wheel-2\tree_n.png copy .\data\tracks\road\wheel-2\tree_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\tree_n.png
if exist .\data\tracks\road\wheel-2\tr-spec.png copy .\data\tracks\road\wheel-2\tr-spec.png .\%RUNTIMEDIR%\tracks\road\wheel-2\tr-spec.png
if exist .\data\tracks\road\wheel-2\truck_arbor_ctd_n.png copy .\data\tracks\road\wheel-2\truck_arbor_ctd_n.png .\%RUNTIMEDIR%\tracks\road\wheel-2\truck_arbor_ctd_n.png
if exist .\data\tracks\road\wheel-2\water_green2.png copy .\data\tracks\road\wheel-2\water_green2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\water_green2.png
if exist .\data\tracks\road\wheel-2\wheel-2.png copy .\data\tracks\road\wheel-2\wheel-2.png .\%RUNTIMEDIR%\tracks\road\wheel-2\wheel-2.png
if exist .\data\tracks\road\wheel-2\wheel.png copy .\data\tracks\road\wheel-2\wheel.png .\%RUNTIMEDIR%\tracks\road\wheel-2\wheel.png
if exist .\data\tracks\road\wheel-2\barr1_n.rgb copy .\data\tracks\road\wheel-2\barr1_n.rgb .\%RUNTIMEDIR%\tracks\road\wheel-2\barr1_n.rgb
if exist .\data\tracks\road\wheel-2\concdal.rgb copy .\data\tracks\road\wheel-2\concdal.rgb .\%RUNTIMEDIR%\tracks\road\wheel-2\concdal.rgb
if exist .\data\tracks\road\wheel-2\shadow2.rgb copy .\data\tracks\road\wheel-2\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\wheel-2\shadow2.rgb
if exist .\data\tracks\road\wheel-2\texwheel.rgb copy .\data\tracks\road\wheel-2\texwheel.rgb .\%RUNTIMEDIR%\tracks\road\wheel-2\texwheel.rgb
if exist .\data\tracks\road\wheel-2\torcs1.rgb copy .\data\tracks\road\wheel-2\torcs1.rgb .\%RUNTIMEDIR%\tracks\road\wheel-2\torcs1.rgb
if exist .\data\tracks\road\wheel-2\truck0.rgb copy .\data\tracks\road\wheel-2\truck0.rgb .\%RUNTIMEDIR%\tracks\road\wheel-2\truck0.rgb
if exist .\data\tracks\road\street-1\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\street-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\street-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\street-1\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\street-1
if exist .\data\tracks\road\street-1\street-1.xml copy .\data\tracks\road\street-1\street-1.xml .\%RUNTIMEDIR%\tracks\road\street-1\street-1.xml
if exist .\data\tracks\road\street-1\street-1.acc copy .\data\tracks\road\street-1\street-1.acc .\%RUNTIMEDIR%\tracks\road\street-1\street-1.acc
if exist .\data\tracks\road\street-1\street-1.png copy .\data\tracks\road\street-1\street-1.png .\%RUNTIMEDIR%\tracks\road\street-1\street-1.png
if exist .\data\tracks\road\street-1\background.png copy .\data\tracks\road\street-1\background.png .\%RUNTIMEDIR%\tracks\road\street-1\background.png
if exist .\data\tracks\road\street-1\barr1.rgb copy .\data\tracks\road\street-1\barr1.rgb .\%RUNTIMEDIR%\tracks\road\street-1\barr1.rgb
if exist .\data\tracks\road\street-1\concdal.rgb copy .\data\tracks\road\street-1\concdal.rgb .\%RUNTIMEDIR%\tracks\road\street-1\concdal.rgb
if exist .\data\tracks\road\street-1\grass-aa.rgb copy .\data\tracks\road\street-1\grass-aa.rgb .\%RUNTIMEDIR%\tracks\road\street-1\grass-aa.rgb
if exist .\data\tracks\road\street-1\house.rgb copy .\data\tracks\road\street-1\house.rgb .\%RUNTIMEDIR%\tracks\road\street-1\house.rgb
if exist .\data\tracks\road\street-1\poutre3_arbor_n.rgb copy .\data\tracks\road\street-1\poutre3_arbor_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\poutre3_arbor_n.rgb
if exist .\data\tracks\road\street-1\roof1.rgb copy .\data\tracks\road\street-1\roof1.rgb .\%RUNTIMEDIR%\tracks\road\street-1\roof1.rgb
if exist .\data\tracks\road\street-1\shadow2.rgb copy .\data\tracks\road\street-1\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\street-1\shadow2.rgb
if exist .\data\tracks\road\street-1\std.rgb copy .\data\tracks\road\street-1\std.rgb .\%RUNTIMEDIR%\tracks\road\street-1\std.rgb
if exist .\data\tracks\road\street-1\texte1.png copy .\data\tracks\road\street-1\texte1.png .\%RUNTIMEDIR%\tracks\road\street-1\texte1.png
if exist .\data\tracks\road\street-1\torcs1.rgb copy .\data\tracks\road\street-1\torcs1.rgb .\%RUNTIMEDIR%\tracks\road\street-1\torcs1.rgb
if exist .\data\tracks\road\street-1\town-border-arbor.png copy .\data\tracks\road\street-1\town-border-arbor.png .\%RUNTIMEDIR%\tracks\road\street-1\town-border-arbor.png
if exist .\data\tracks\road\street-1\tr-asphalt-2-aa-r_n.png copy .\data\tracks\road\street-1\tr-asphalt-2-aa-r_n.png .\%RUNTIMEDIR%\tracks\road\street-1\tr-asphalt-2-aa-r_n.png
if exist .\data\tracks\road\street-1\tr-asphalt-aa-bw1_n.rgb copy .\data\tracks\road\street-1\tr-asphalt-aa-bw1_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-asphalt-aa-bw1_n.rgb
if exist .\data\tracks\road\street-1\tr-building1.rgb copy .\data\tracks\road\street-1\tr-building1.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building1.rgb
if exist .\data\tracks\road\street-1\tr-building2.rgb copy .\data\tracks\road\street-1\tr-building2.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building2.rgb
if exist .\data\tracks\road\street-1\tr-building3.rgb copy .\data\tracks\road\street-1\tr-building3.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building3.rgb
if exist .\data\tracks\road\street-1\tr-building5.rgb copy .\data\tracks\road\street-1\tr-building5.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building5.rgb
if exist .\data\tracks\road\street-1\tr-building6.rgb copy .\data\tracks\road\street-1\tr-building6.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building6.rgb
if exist .\data\tracks\road\street-1\tr-building7.rgb copy .\data\tracks\road\street-1\tr-building7.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building7.rgb
if exist .\data\tracks\road\street-1\tr-building8.rgb copy .\data\tracks\road\street-1\tr-building8.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building8.rgb
if exist .\data\tracks\road\street-1\tr-building9.rgb copy .\data\tracks\road\street-1\tr-building9.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-building9.rgb
if exist .\data\tracks\road\street-1\tr-curb-bw-aa-r.rgb copy .\data\tracks\road\street-1\tr-curb-bw-aa-r.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-curb-bw-aa-r.rgb
if exist .\data\tracks\road\street-1\tree-border_n.rgb copy .\data\tracks\road\street-1\tree-border_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tree-border_n.rgb
if exist .\data\tracks\road\street-1\treeg10_n.rgb copy .\data\tracks\road\street-1\treeg10_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\treeg10_n.rgb
if exist .\data\tracks\road\street-1\tree-new_n.rgb copy .\data\tracks\road\street-1\tree-new_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tree-new_n.rgb
if exist .\data\tracks\road\street-1\tree-poplar_n.rgb copy .\data\tracks\road\street-1\tree-poplar_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tree-poplar_n.rgb
if exist .\data\tracks\road\street-1\tr-house-arbor_n.png copy .\data\tracks\road\street-1\tr-house-arbor_n.png .\%RUNTIMEDIR%\tracks\road\street-1\tr-house-arbor_n.png
if exist .\data\tracks\road\street-1\tr-house-arbor2_n.png copy .\data\tracks\road\street-1\tr-house-arbor2_n.png .\%RUNTIMEDIR%\tracks\road\street-1\tr-house-arbor2_n.png
if exist .\data\tracks\road\street-1\tr-road1_n.rgb copy .\data\tracks\road\street-1\tr-road1_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-road1_n.rgb
if exist .\data\tracks\road\street-1\tr-road1-pit_n.rgb copy .\data\tracks\road\street-1\tr-road1-pit_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\tr-road1-pit_n.rgb
if exist .\data\tracks\road\street-1\tr-spec.png copy .\data\tracks\road\street-1\tr-spec.png .\%RUNTIMEDIR%\tracks\road\street-1\tr-spec.png
if exist .\data\tracks\road\street-1\truck_arbor_ctd_n.rgb copy .\data\tracks\road\street-1\truck_arbor_ctd_n.rgb .\%RUNTIMEDIR%\tracks\road\street-1\truck_arbor_ctd_n.rgb
if exist .\data\tracks\road\street-1\truck0.rgb copy .\data\tracks\road\street-1\truck0.rgb .\%RUNTIMEDIR%\tracks\road\street-1\truck0.rgb
if exist .\data\tracks\road\street-1\walls.rgb copy .\data\tracks\road\street-1\walls.rgb .\%RUNTIMEDIR%\tracks\road\street-1\walls.rgb
if exist .\data\tracks\road\street-1\walls2.rgb copy .\data\tracks\road\street-1\walls2.rgb .\%RUNTIMEDIR%\tracks\road\street-1\walls2.rgb
if exist .\data\tracks\road\street-1\readme.txt copy .\data\tracks\road\street-1\readme.txt .\%RUNTIMEDIR%\tracks\road\street-1\readme.txt
if exist .\data\tracks\dirt\dirt-3\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\dirt\dirt-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\dirt\dirt-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt
if exist .\data\tracks\dirt\dirt-3\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\dirt\dirt-3
if exist .\data\tracks\dirt\dirt-3\dirt-3.xml copy .\data\tracks\dirt\dirt-3\dirt-3.xml .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-3.xml
if exist .\data\tracks\dirt\dirt-3\dirt-3.acc copy .\data\tracks\dirt\dirt-3\dirt-3.acc .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-3.acc
if exist .\data\tracks\dirt\dirt-3\dirt-3.png copy .\data\tracks\dirt\dirt-3\dirt-3.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-3.png
if exist .\data\tracks\dirt\dirt-3\readme.txt copy .\data\tracks\dirt\dirt-3\readme.txt .\%RUNTIMEDIR%\tracks\dirt\dirt-3\readme.txt
if exist .\data\tracks\dirt\dirt-3\background.png copy .\data\tracks\dirt\dirt-3\background.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\background.png
if exist .\data\tracks\dirt\dirt-3\ambush-inn.png copy .\data\tracks\dirt\dirt-3\ambush-inn.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\ambush-inn.png
if exist .\data\tracks\dirt\dirt-3\dirt-grass.png copy .\data\tracks\dirt\dirt-3\dirt-grass.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-grass.png
if exist .\data\tracks\dirt\dirt-3\sign-left_n.png copy .\data\tracks\dirt\dirt-3\sign-left_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\sign-left_n.png
if exist .\data\tracks\dirt\dirt-3\dirt-pits.png copy .\data\tracks\dirt\dirt-3\dirt-pits.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-pits.png
if exist .\data\tracks\dirt\dirt-3\sign-pit_n.png copy .\data\tracks\dirt\dirt-3\sign-pit_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\sign-pit_n.png
if exist .\data\tracks\dirt\dirt-3\barrier-fence_n.png copy .\data\tracks\dirt\dirt-3\barrier-fence_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\barrier-fence_n.png
if exist .\data\tracks\dirt\dirt-3\dirt-side.png copy .\data\tracks\dirt\dirt-3\dirt-side.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-side.png
if exist .\data\tracks\dirt\dirt-3\stone1.png copy .\data\tracks\dirt\dirt-3\stone1.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\stone1.png
if exist .\data\tracks\dirt\dirt-3\barrier-rusty.png copy .\data\tracks\dirt\dirt-3\barrier-rusty.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\barrier-rusty.png
if exist .\data\tracks\dirt\dirt-3\grass-clump-arbor_n.png copy .\data\tracks\dirt\dirt-3\grass-clump-arbor_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\grass-clump-arbor_n.png
if exist .\data\tracks\dirt\dirt-3\tank.png copy .\data\tracks\dirt\dirt-3\tank.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\tank.png
if exist .\data\tracks\dirt\dirt-3\barrier-wooden_n.png copy .\data\tracks\dirt\dirt-3\barrier-wooden_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\barrier-wooden_n.png
if exist .\data\tracks\dirt\dirt-3\hat.png copy .\data\tracks\dirt\dirt-3\hat.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\hat.png
if exist .\data\tracks\dirt\dirt-3\tree_bush2_arbor_n.png copy .\data\tracks\dirt\dirt-3\tree_bush2_arbor_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\tree_bush2_arbor_n.png
if exist .\data\tracks\dirt\dirt-3\black.png copy .\data\tracks\dirt\dirt-3\black.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\black.png
if exist .\data\tracks\dirt\dirt-3\newdirt2.png copy .\data\tracks\dirt\dirt-3\newdirt2.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\newdirt2.png
if exist .\data\tracks\dirt\dirt-3\tree_gum2_arbor_n.png copy .\data\tracks\dirt\dirt-3\tree_gum2_arbor_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\tree_gum2_arbor_n.png
if exist .\data\tracks\dirt\dirt-3\bridgeplanks.png copy .\data\tracks\dirt\dirt-3\bridgeplanks.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\bridgeplanks.png
if exist .\data\tracks\dirt\dirt-3\newdirt.png copy .\data\tracks\dirt\dirt-3\newdirt.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\newdirt.png
if exist .\data\tracks\dirt\dirt-3\tree_gum_arbor_n.png copy .\data\tracks\dirt\dirt-3\tree_gum_arbor_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\tree_gum_arbor_n.png
if exist .\data\tracks\dirt\dirt-3\cabin.png copy .\data\tracks\dirt\dirt-3\cabin.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\cabin.png
if exist .\data\tracks\dirt\dirt-3\newgrass.png copy .\data\tracks\dirt\dirt-3\newgrass.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\newgrass.png
if exist .\data\tracks\dirt\dirt-3\tr-house-arbor_n.png copy .\data\tracks\dirt\dirt-3\tr-house-arbor_n.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\tr-house-arbor_n.png
if exist .\data\tracks\dirt\dirt-3\pit-walls.png copy .\data\tracks\dirt\dirt-3\pit-walls.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\pit-walls.png
if exist .\data\tracks\dirt\dirt-3\poutre2_arbor_n.rgb copy .\data\tracks\dirt\dirt-3\poutre2_arbor_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-3\poutre2_arbor_n.rgb
if exist .\data\tracks\dirt\dirt-3\poutre3_arbor_n.rgb copy .\data\tracks\dirt\dirt-3\poutre3_arbor_n.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-3\poutre3_arbor_n.rgb
if exist .\data\tracks\dirt\dirt-3\shadow2.rgb copy .\data\tracks\dirt\dirt-3\shadow2.rgb .\%RUNTIMEDIR%\tracks\dirt\dirt-3\shadow2.rgb
if exist .\data\tracks\dirt\dirt-3\dirt-grass2.png copy .\data\tracks\dirt\dirt-3\dirt-grass2.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\dirt-grass2.png
if exist .\data\tracks\dirt\dirt-3\shadow2.png copy .\data\tracks\dirt\dirt-3\shadow2.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\shadow2.png
if exist .\data\tracks\dirt\dirt-3\shadow3.png copy .\data\tracks\dirt\dirt-3\shadow3.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\shadow3.png
if exist .\data\tracks\dirt\dirt-3\advert-cola.png copy .\data\tracks\dirt\dirt-3\advert-cola.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\advert-cola.png
if exist .\data\tracks\dirt\dirt-3\advert-joes.png copy .\data\tracks\dirt\dirt-3\advert-joes.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\advert-joes.png
if exist .\data\tracks\dirt\dirt-3\advert-ols.png copy .\data\tracks\dirt\dirt-3\advert-ols.png .\%RUNTIMEDIR%\tracks\dirt\dirt-3\advert-ols.png
if exist .\data\tracks\road\forza\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\forza\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\forza\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\forza\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\forza
if exist .\data\tracks\road\forza\forza.xml copy .\data\tracks\road\forza\forza.xml .\%RUNTIMEDIR%\tracks\road\forza\forza.xml
if exist .\data\tracks\road\forza\forza.acc copy .\data\tracks\road\forza\forza.acc .\%RUNTIMEDIR%\tracks\road\forza\forza.acc
if exist .\data\tracks\road\forza\forza.png copy .\data\tracks\road\forza\forza.png .\%RUNTIMEDIR%\tracks\road\forza\forza.png
if exist .\data\tracks\road\forza\readme.txt copy .\data\tracks\road\forza\readme.txt .\%RUNTIMEDIR%\tracks\road\forza\readme.txt
if exist .\data\tracks\road\forza\100.png copy .\data\tracks\road\forza\100.png .\%RUNTIMEDIR%\tracks\road\forza\100.png
if exist .\data\tracks\road\forza\300.png copy .\data\tracks\road\forza\300.png .\%RUNTIMEDIR%\tracks\road\forza\300.png
if exist .\data\tracks\road\forza\ABtree_n.png copy .\data\tracks\road\forza\ABtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\ABtree_n.png
if exist .\data\tracks\road\forza\background.png copy .\data\tracks\road\forza\background.png .\%RUNTIMEDIR%\tracks\road\forza\background.png
if exist .\data\tracks\road\forza\BAtree_n.png copy .\data\tracks\road\forza\BAtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\BAtree_n.png
if exist .\data\tracks\road\forza\BEtree_n.png copy .\data\tracks\road\forza\BEtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\BEtree_n.png
if exist .\data\tracks\road\forza\BLBDBK.png copy .\data\tracks\road\forza\BLBDBK.png .\%RUNTIMEDIR%\tracks\road\forza\BLBDBK.png
if exist .\data\tracks\road\forza\BLDAB.png copy .\data\tracks\road\forza\BLDAB.png .\%RUNTIMEDIR%\tracks\road\forza\BLDAB.png
if exist .\data\tracks\road\forza\BLDA.png copy .\data\tracks\road\forza\BLDA.png .\%RUNTIMEDIR%\tracks\road\forza\BLDA.png
if exist .\data\tracks\road\forza\BLUPOLE.png copy .\data\tracks\road\forza\BLUPOLE.png .\%RUNTIMEDIR%\tracks\road\forza\BLUPOLE.png
if exist .\data\tracks\road\forza\BRtree_n.png copy .\data\tracks\road\forza\BRtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\BRtree_n.png
if exist .\data\tracks\road\forza\BTOWB.png copy .\data\tracks\road\forza\BTOWB.png .\%RUNTIMEDIR%\tracks\road\forza\BTOWB.png
if exist .\data\tracks\road\forza\BUtree_n.png copy .\data\tracks\road\forza\BUtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\BUtree_n.png
if exist .\data\tracks\road\forza\CAtree_n.png copy .\data\tracks\road\forza\CAtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\CAtree_n.png
if exist .\data\tracks\road\forza\CHtree_n.png copy .\data\tracks\road\forza\CHtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\CHtree_n.png
if exist .\data\tracks\road\forza\CMNTA.png copy .\data\tracks\road\forza\CMNTA.png .\%RUNTIMEDIR%\tracks\road\forza\CMNTA.png
if exist .\data\tracks\road\forza\CMNTBB.png copy .\data\tracks\road\forza\CMNTBB.png .\%RUNTIMEDIR%\tracks\road\forza\CMNTBB.png
if exist .\data\tracks\road\forza\CMNTB.png copy .\data\tracks\road\forza\CMNTB.png .\%RUNTIMEDIR%\tracks\road\forza\CMNTB.png
if exist .\data\tracks\road\forza\conc.png copy .\data\tracks\road\forza\conc.png .\%RUNTIMEDIR%\tracks\road\forza\conc.png
if exist .\data\tracks\road\forza\CONCTP.png copy .\data\tracks\road\forza\CONCTP.png .\%RUNTIMEDIR%\tracks\road\forza\CONCTP.png
if exist .\data\tracks\road\forza\CRNA.png copy .\data\tracks\road\forza\CRNA.png .\%RUNTIMEDIR%\tracks\road\forza\CRNA.png
if exist .\data\tracks\road\forza\CRNB.png copy .\data\tracks\road\forza\CRNB.png .\%RUNTIMEDIR%\tracks\road\forza\CRNB.png
if exist .\data\tracks\road\forza\CRNC.png copy .\data\tracks\road\forza\CRNC.png .\%RUNTIMEDIR%\tracks\road\forza\CRNC.png
if exist .\data\tracks\road\forza\CRND.png copy .\data\tracks\road\forza\CRND.png .\%RUNTIMEDIR%\tracks\road\forza\CRND.png
if exist .\data\tracks\road\forza\CRNF.png copy .\data\tracks\road\forza\CRNF.png .\%RUNTIMEDIR%\tracks\road\forza\CRNF.png
if exist .\data\tracks\road\forza\DBLOGO.png copy .\data\tracks\road\forza\DBLOGO.png .\%RUNTIMEDIR%\tracks\road\forza\DBLOGO.png
if exist .\data\tracks\road\forza\FERRED.png copy .\data\tracks\road\forza\FERRED.png .\%RUNTIMEDIR%\tracks\road\forza\FERRED.png
if exist .\data\tracks\road\forza\FLTBLK.png copy .\data\tracks\road\forza\FLTBLK.png .\%RUNTIMEDIR%\tracks\road\forza\FLTBLK.png
if exist .\data\tracks\road\forza\FNCEB.png copy .\data\tracks\road\forza\FNCEB.png .\%RUNTIMEDIR%\tracks\road\forza\FNCEB.png
if exist .\data\tracks\road\forza\forza.png copy .\data\tracks\road\forza\forza.png .\%RUNTIMEDIR%\tracks\road\forza\forza.png
if exist .\data\tracks\road\forza\FRRI.png copy .\data\tracks\road\forza\FRRI.png .\%RUNTIMEDIR%\tracks\road\forza\FRRI.png
if exist .\data\tracks\road\forza\FRtree_n.png copy .\data\tracks\road\forza\FRtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\FRtree_n.png
if exist .\data\tracks\road\forza\G2tree_n.png copy .\data\tracks\road\forza\G2tree_n.png .\%RUNTIMEDIR%\tracks\road\forza\G2tree_n.png
if exist .\data\tracks\road\forza\GBtree_n.png copy .\data\tracks\road\forza\GBtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GBtree_n.png
if exist .\data\tracks\road\forza\GCtree_n.png copy .\data\tracks\road\forza\GCtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GCtree_n.png
if exist .\data\tracks\road\forza\GDtree_n.png copy .\data\tracks\road\forza\GDtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GDtree_n.png
if exist .\data\tracks\road\forza\GEtree_n.png copy .\data\tracks\road\forza\GEtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GEtree_n.png
if exist .\data\tracks\road\forza\GFtree_n.png copy .\data\tracks\road\forza\GFtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GFtree_n.png
if exist .\data\tracks\road\forza\GGtree.png copy .\data\tracks\road\forza\GGtree.png .\%RUNTIMEDIR%\tracks\road\forza\GGtree.png
if exist .\data\tracks\road\forza\GNtree_n.png copy .\data\tracks\road\forza\GNtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GNtree_n.png
if exist .\data\tracks\road\forza\GRAS2B.png copy .\data\tracks\road\forza\GRAS2B.png .\%RUNTIMEDIR%\tracks\road\forza\GRAS2B.png
if exist .\data\tracks\road\forza\GRtree_n.png copy .\data\tracks\road\forza\GRtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GRtree_n.png
if exist .\data\tracks\road\forza\GSBLUE.png copy .\data\tracks\road\forza\GSBLUE.png .\%RUNTIMEDIR%\tracks\road\forza\GSBLUE.png
if exist .\data\tracks\road\forza\GSBSTAIR.png copy .\data\tracks\road\forza\GSBSTAIR.png .\%RUNTIMEDIR%\tracks\road\forza\GSBSTAIR.png
if exist .\data\tracks\road\forza\GSDH.png copy .\data\tracks\road\forza\GSDH.png .\%RUNTIMEDIR%\tracks\road\forza\GSDH.png
if exist .\data\tracks\road\forza\GSPAtree.png copy .\data\tracks\road\forza\GSPAtree.png .\%RUNTIMEDIR%\tracks\road\forza\GSPAtree.png
if exist .\data\tracks\road\forza\GSRNDF.png copy .\data\tracks\road\forza\GSRNDF.png .\%RUNTIMEDIR%\tracks\road\forza\GSRNDF.png
if exist .\data\tracks\road\forza\GSSOLID.png copy .\data\tracks\road\forza\GSSOLID.png .\%RUNTIMEDIR%\tracks\road\forza\GSSOLID.png
if exist .\data\tracks\road\forza\GStree_n.png copy .\data\tracks\road\forza\GStree_n.png .\%RUNTIMEDIR%\tracks\road\forza\GStree_n.png
if exist .\data\tracks\road\forza\GSUNDER.png copy .\data\tracks\road\forza\GSUNDER.png .\%RUNTIMEDIR%\tracks\road\forza\GSUNDER.png
if exist .\data\tracks\road\forza\ITtree_n.png copy .\data\tracks\road\forza\ITtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\ITtree_n.png
if exist .\data\tracks\road\forza\IYtree_n.png copy .\data\tracks\road\forza\IYtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\IYtree_n.png
if exist .\data\tracks\road\forza\LIGHT.png copy .\data\tracks\road\forza\LIGHT.png .\%RUNTIMEDIR%\tracks\road\forza\LIGHT.png
if exist .\data\tracks\road\forza\LOGOAGIP.png copy .\data\tracks\road\forza\LOGOAGIP.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOAGIP.png
if exist .\data\tracks\road\forza\LOGOBRDG.png copy .\data\tracks\road\forza\LOGOBRDG.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOBRDG.png
if exist .\data\tracks\road\forza\LOGOBRDS.png copy .\data\tracks\road\forza\LOGOBRDS.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOBRDS.png
if exist .\data\tracks\road\forza\LOGOCAMP.png copy .\data\tracks\road\forza\LOGOCAMP.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOCAMP.png
if exist .\data\tracks\road\forza\LOGOCAST.png copy .\data\tracks\road\forza\LOGOCAST.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOCAST.png
if exist .\data\tracks\road\forza\LOGODTWO.png copy .\data\tracks\road\forza\LOGODTWO.png .\%RUNTIMEDIR%\tracks\road\forza\LOGODTWO.png
if exist .\data\tracks\road\forza\LOGOFOST.png copy .\data\tracks\road\forza\LOGOFOST.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOFOST.png
if exist .\data\tracks\road\forza\LOGOFSTN.png copy .\data\tracks\road\forza\LOGOFSTN.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOFSTN.png
if exist .\data\tracks\road\forza\LOGOITAL.png copy .\data\tracks\road\forza\LOGOITAL.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOITAL.png
if exist .\data\tracks\road\forza\LOGOJOE.png copy .\data\tracks\road\forza\LOGOJOE.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOJOE.png
if exist .\data\tracks\road\forza\LOGOMAG.png copy .\data\tracks\road\forza\LOGOMAG.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOMAG.png
if exist .\data\tracks\road\forza\LOGOMBLO.png copy .\data\tracks\road\forza\LOGOMBLO.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOMBLO.png
if exist .\data\tracks\road\forza\LOGOSELE.png copy .\data\tracks\road\forza\LOGOSELE.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOSELE.png
if exist .\data\tracks\road\forza\LOGOSHL.png copy .\data\tracks\road\forza\LOGOSHL.png .\%RUNTIMEDIR%\tracks\road\forza\LOGOSHL.png
if exist .\data\tracks\road\forza\MAGNMAR.png copy .\data\tracks\road\forza\MAGNMAR.png .\%RUNTIMEDIR%\tracks\road\forza\MAGNMAR.png
if exist .\data\tracks\road\forza\METALA.png copy .\data\tracks\road\forza\METALA.png .\%RUNTIMEDIR%\tracks\road\forza\METALA.png
if exist .\data\tracks\road\forza\PDtree_n.png copy .\data\tracks\road\forza\PDtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\PDtree_n.png
if exist .\data\tracks\road\forza\PEtree_n.png copy .\data\tracks\road\forza\PEtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\PEtree_n.png
if exist .\data\tracks\road\forza\PFtree_n.png copy .\data\tracks\road\forza\PFtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\PFtree_n.png
if exist .\data\tracks\road\forza\PITBLD.png copy .\data\tracks\road\forza\PITBLD.png .\%RUNTIMEDIR%\tracks\road\forza\PITBLD.png
if exist .\data\tracks\road\forza\PITLITE.png copy .\data\tracks\road\forza\PITLITE.png .\%RUNTIMEDIR%\tracks\road\forza\PITLITE.png
if exist .\data\tracks\road\forza\PITPPL.png copy .\data\tracks\road\forza\PITPPL.png .\%RUNTIMEDIR%\tracks\road\forza\PITPPL.png
if exist .\data\tracks\road\forza\PITWB.png copy .\data\tracks\road\forza\PITWB.png .\%RUNTIMEDIR%\tracks\road\forza\PITWB.png
if exist .\data\tracks\road\forza\POLEA.png copy .\data\tracks\road\forza\POLEA.png .\%RUNTIMEDIR%\tracks\road\forza\POLEA.png
if exist .\data\tracks\road\forza\POLLOL.png copy .\data\tracks\road\forza\POLLOL.png .\%RUNTIMEDIR%\tracks\road\forza\POLLOL.png
if exist .\data\tracks\road\forza\REF.png copy .\data\tracks\road\forza\REF.png .\%RUNTIMEDIR%\tracks\road\forza\REF.png
if exist .\data\tracks\road\forza\Road-crack1.png copy .\data\tracks\road\forza\Road-crack1.png .\%RUNTIMEDIR%\tracks\road\forza\Road-crack1.png
if exist .\data\tracks\road\forza\Road-crack2.png copy .\data\tracks\road\forza\Road-crack2.png .\%RUNTIMEDIR%\tracks\road\forza\Road-crack2.png
if exist .\data\tracks\road\forza\ROADPGC.png copy .\data\tracks\road\forza\ROADPGC.png .\%RUNTIMEDIR%\tracks\road\forza\ROADPGC.png
if exist .\data\tracks\road\forza\ROADPL_n.png copy .\data\tracks\road\forza\ROADPL_n.png .\%RUNTIMEDIR%\tracks\road\forza\ROADPL_n.png
if exist .\data\tracks\road\forza\Road.png copy .\data\tracks\road\forza\Road.png .\%RUNTIMEDIR%\tracks\road\forza\Road.png
if exist .\data\tracks\road\forza\ROADSF_n.png copy .\data\tracks\road\forza\ROADSF_n.png .\%RUNTIMEDIR%\tracks\road\forza\ROADSF_n.png
if exist .\data\tracks\road\forza\RSA_n.png copy .\data\tracks\road\forza\RSA_n.png .\%RUNTIMEDIR%\tracks\road\forza\RSA_n.png
if exist .\data\tracks\road\forza\RSDOT_n.png copy .\data\tracks\road\forza\RSDOT_n.png .\%RUNTIMEDIR%\tracks\road\forza\RSDOT_n.png
if exist .\data\tracks\road\forza\RSGRAS_n.png copy .\data\tracks\road\forza\RSGRAS_n.png .\%RUNTIMEDIR%\tracks\road\forza\RSGRAS_n.png
if exist .\data\tracks\road\forza\RS_n.png copy .\data\tracks\road\forza\RS_n.png .\%RUNTIMEDIR%\tracks\road\forza\RS_n.png
if exist .\data\tracks\road\forza\RSROAD_n.png copy .\data\tracks\road\forza\RSROAD_n.png .\%RUNTIMEDIR%\tracks\road\forza\RSROAD_n.png
if exist .\data\tracks\road\forza\RSSAGR_n.png copy .\data\tracks\road\forza\RSSAGR_n.png .\%RUNTIMEDIR%\tracks\road\forza\RSSAGR_n.png
if exist .\data\tracks\road\forza\RSSAND_n.png copy .\data\tracks\road\forza\RSSAND_n.png .\%RUNTIMEDIR%\tracks\road\forza\RSSAND_n.png
if exist .\data\tracks\road\forza\SAND_n.png copy .\data\tracks\road\forza\SAND_n.png .\%RUNTIMEDIR%\tracks\road\forza\SAND_n.png
if exist .\data\tracks\road\forza\SANDT_n.png copy .\data\tracks\road\forza\SANDT_n.png .\%RUNTIMEDIR%\tracks\road\forza\SANDT_n.png
if exist .\data\tracks\road\forza\shadow2.png copy .\data\tracks\road\forza\shadow2.png .\%RUNTIMEDIR%\tracks\road\forza\shadow2.png
if exist .\data\tracks\road\forza\STAIRSD.png copy .\data\tracks\road\forza\STAIRSD.png .\%RUNTIMEDIR%\tracks\road\forza\STAIRSD.png
if exist .\data\tracks\road\forza\STAIRS.png copy .\data\tracks\road\forza\STAIRS.png .\%RUNTIMEDIR%\tracks\road\forza\STAIRS.png
if exist .\data\tracks\road\forza\STNDUND.png copy .\data\tracks\road\forza\STNDUND.png .\%RUNTIMEDIR%\tracks\road\forza\STNDUND.png
if exist .\data\tracks\road\forza\STNDUNDR.png copy .\data\tracks\road\forza\STNDUNDR.png .\%RUNTIMEDIR%\tracks\road\forza\STNDUNDR.png
if exist .\data\tracks\road\forza\TAGTNTOP.png copy .\data\tracks\road\forza\TAGTNTOP.png .\%RUNTIMEDIR%\tracks\road\forza\TAGTNTOP.png
if exist .\data\tracks\road\forza\TENTA.png copy .\data\tracks\road\forza\TENTA.png .\%RUNTIMEDIR%\tracks\road\forza\TENTA.png
if exist .\data\tracks\road\forza\TENTD.png copy .\data\tracks\road\forza\TENTD.png .\%RUNTIMEDIR%\tracks\road\forza\TENTD.png
if exist .\data\tracks\road\forza\TENTG.png copy .\data\tracks\road\forza\TENTG.png .\%RUNTIMEDIR%\tracks\road\forza\TENTG.png
if exist .\data\tracks\road\forza\TENTH.png copy .\data\tracks\road\forza\TENTH.png .\%RUNTIMEDIR%\tracks\road\forza\TENTH.png
if exist .\data\tracks\road\forza\TEtree_n.png copy .\data\tracks\road\forza\TEtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\TEtree_n.png
if exist .\data\tracks\road\forza\TIME1A.png copy .\data\tracks\road\forza\TIME1A.png .\%RUNTIMEDIR%\tracks\road\forza\TIME1A.png
if exist .\data\tracks\road\forza\TIME1B.png copy .\data\tracks\road\forza\TIME1B.png .\%RUNTIMEDIR%\tracks\road\forza\TIME1B.png
if exist .\data\tracks\road\forza\TIME2A.png copy .\data\tracks\road\forza\TIME2A.png .\%RUNTIMEDIR%\tracks\road\forza\TIME2A.png
if exist .\data\tracks\road\forza\TIME2B.png copy .\data\tracks\road\forza\TIME2B.png .\%RUNTIMEDIR%\tracks\road\forza\TIME2B.png
if exist .\data\tracks\road\forza\TIME2C.png copy .\data\tracks\road\forza\TIME2C.png .\%RUNTIMEDIR%\tracks\road\forza\TIME2C.png
if exist .\data\tracks\road\forza\TIRE2.png copy .\data\tracks\road\forza\TIRE2.png .\%RUNTIMEDIR%\tracks\road\forza\TIRE2.png
if exist .\data\tracks\road\forza\TIRE3.png copy .\data\tracks\road\forza\TIRE3.png .\%RUNTIMEDIR%\tracks\road\forza\TIRE3.png
if exist .\data\tracks\road\forza\TIRE4A.png copy .\data\tracks\road\forza\TIRE4A.png .\%RUNTIMEDIR%\tracks\road\forza\TIRE4A.png
if exist .\data\tracks\road\forza\TIRE4.png copy .\data\tracks\road\forza\TIRE4.png .\%RUNTIMEDIR%\tracks\road\forza\TIRE4.png
if exist .\data\tracks\road\forza\TNTSHD.png copy .\data\tracks\road\forza\TNTSHD.png .\%RUNTIMEDIR%\tracks\road\forza\TNTSHD.png
if exist .\data\tracks\road\forza\TOPCROWD.png copy .\data\tracks\road\forza\TOPCROWD.png .\%RUNTIMEDIR%\tracks\road\forza\TOPCROWD.png
if exist .\data\tracks\road\forza\tree1_n.png copy .\data\tracks\road\forza\tree1_n.png .\%RUNTIMEDIR%\tracks\road\forza\tree1_n.png
if exist .\data\tracks\road\forza\tree2_n.png copy .\data\tracks\road\forza\tree2_n.png .\%RUNTIMEDIR%\tracks\road\forza\tree2_n.png
if exist .\data\tracks\road\forza\tree3_n.png copy .\data\tracks\road\forza\tree3_n.png .\%RUNTIMEDIR%\tracks\road\forza\tree3_n.png
if exist .\data\tracks\road\forza\treefc_n.png copy .\data\tracks\road\forza\treefc_n.png .\%RUNTIMEDIR%\tracks\road\forza\treefc_n.png
if exist .\data\tracks\road\forza\treel1_n.png copy .\data\tracks\road\forza\treel1_n.png .\%RUNTIMEDIR%\tracks\road\forza\treel1_n.png
if exist .\data\tracks\road\forza\treel2_n.png copy .\data\tracks\road\forza\treel2_n.png .\%RUNTIMEDIR%\tracks\road\forza\treel2_n.png
if exist .\data\tracks\road\forza\treel3_n.png copy .\data\tracks\road\forza\treel3_n.png .\%RUNTIMEDIR%\tracks\road\forza\treel3_n.png
if exist .\data\tracks\road\forza\treel4_n.png copy .\data\tracks\road\forza\treel4_n.png .\%RUNTIMEDIR%\tracks\road\forza\treel4_n.png
if exist .\data\tracks\road\forza\treetd_n.png copy .\data\tracks\road\forza\treetd_n.png .\%RUNTIMEDIR%\tracks\road\forza\treetd_n.png
if exist .\data\tracks\road\forza\TRETRNK.png copy .\data\tracks\road\forza\TRETRNK.png .\%RUNTIMEDIR%\tracks\road\forza\TRETRNK.png
if exist .\data\tracks\road\forza\TRKJUMA.png copy .\data\tracks\road\forza\TRKJUMA.png .\%RUNTIMEDIR%\tracks\road\forza\TRKJUMA.png
if exist .\data\tracks\road\forza\TRKJUMB.png copy .\data\tracks\road\forza\TRKJUMB.png .\%RUNTIMEDIR%\tracks\road\forza\TRKJUMB.png
if exist .\data\tracks\road\forza\TRKJUMC.png copy .\data\tracks\road\forza\TRKJUMC.png .\%RUNTIMEDIR%\tracks\road\forza\TRKJUMC.png
if exist .\data\tracks\road\forza\TRKJUM.png copy .\data\tracks\road\forza\TRKJUM.png .\%RUNTIMEDIR%\tracks\road\forza\TRKJUM.png
if exist .\data\tracks\road\forza\TURNA.png copy .\data\tracks\road\forza\TURNA.png .\%RUNTIMEDIR%\tracks\road\forza\TURNA.png
if exist .\data\tracks\road\forza\TURNB.png copy .\data\tracks\road\forza\TURNB.png .\%RUNTIMEDIR%\tracks\road\forza\TURNB.png
if exist .\data\tracks\road\forza\WAtree_n.png copy .\data\tracks\road\forza\WAtree_n.png .\%RUNTIMEDIR%\tracks\road\forza\WAtree_n.png
if exist .\data\tracks\road\forza\WHEEL.png copy .\data\tracks\road\forza\WHEEL.png .\%RUNTIMEDIR%\tracks\road\forza\WHEEL.png
if exist .\data\tracks\road\forza\WIREWOOD.png copy .\data\tracks\road\forza\WIREWOOD.png .\%RUNTIMEDIR%\tracks\road\forza\WIREWOOD.png
if exist .\data\tracks\road\alpine-2\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\alpine-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\alpine-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\alpine-2\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\alpine-2
if exist .\data\tracks\road\alpine-2\alpine-2.xml copy .\data\tracks\road\alpine-2\alpine-2.xml .\%RUNTIMEDIR%\tracks\road\alpine-2\alpine-2.xml
if exist .\data\tracks\road\alpine-2\alpine-2.acc copy .\data\tracks\road\alpine-2\alpine-2.acc .\%RUNTIMEDIR%\tracks\road\alpine-2\alpine-2.acc
if exist .\data\tracks\road\alpine-2\alpine-2.png copy .\data\tracks\road\alpine-2\alpine-2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\alpine-2.png
if exist .\data\tracks\road\alpine-2\readme.txt copy .\data\tracks\road\alpine-2\readme.txt .\%RUNTIMEDIR%\tracks\road\alpine-2\readme.txt
if exist .\data\tracks\road\alpine-2\arbor2_n.rgb copy .\data\tracks\road\alpine-2\arbor2_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\arbor2_n.rgb
if exist .\data\tracks\road\alpine-2\concrete2.rgb copy .\data\tracks\road\alpine-2\concrete2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\concrete2.rgb
if exist .\data\tracks\road\alpine-2\shadow2.rgb copy .\data\tracks\road\alpine-2\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\shadow2.rgb
if exist .\data\tracks\road\alpine-2\tr-stone-wall.rgb copy .\data\tracks\road\alpine-2\tr-stone-wall.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\tr-stone-wall.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_berniw_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_berniw_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_berniw_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_dummy_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_dummy_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_dummy_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_hymie_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_hymie_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_hymie_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_inferno_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_inferno_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_inferno_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_mouse_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_mouse_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_mouse_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_ole_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_ole_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_ole_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_speedy_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_speedy_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_speedy_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_tp_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_tp_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_tp_n.rgb
if exist .\data\tracks\road\alpine-2\truck_arbor_usr_n.rgb copy .\data\tracks\road\alpine-2\truck_arbor_usr_n.rgb .\%RUNTIMEDIR%\tracks\road\alpine-2\truck_arbor_usr_n.rgb
if exist .\data\tracks\road\alpine-2\alpine-2.png copy .\data\tracks\road\alpine-2\alpine-2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\alpine-2.png
if exist .\data\tracks\road\alpine-2\armco2_arbor.png copy .\data\tracks\road\alpine-2\armco2_arbor.png .\%RUNTIMEDIR%\tracks\road\alpine-2\armco2_arbor.png
if exist .\data\tracks\road\alpine-2\armco_snow_arbor.png copy .\data\tracks\road\alpine-2\armco_snow_arbor.png .\%RUNTIMEDIR%\tracks\road\alpine-2\armco_snow_arbor.png
if exist .\data\tracks\road\alpine-2\armcoturn_arbor.png copy .\data\tracks\road\alpine-2\armcoturn_arbor.png .\%RUNTIMEDIR%\tracks\road\alpine-2\armcoturn_arbor.png
if exist .\data\tracks\road\alpine-2\background.png copy .\data\tracks\road\alpine-2\background.png .\%RUNTIMEDIR%\tracks\road\alpine-2\background.png
if exist .\data\tracks\road\alpine-2\BARS_tree_n.png copy .\data\tracks\road\alpine-2\BARS_tree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\BARS_tree_n.png
if exist .\data\tracks\road\alpine-2\BLBDBK.png copy .\data\tracks\road\alpine-2\BLBDBK.png .\%RUNTIMEDIR%\tracks\road\alpine-2\BLBDBK.png
if exist .\data\tracks\road\alpine-2\BLDG05_tree.png copy .\data\tracks\road\alpine-2\BLDG05_tree.png .\%RUNTIMEDIR%\tracks\road\alpine-2\BLDG05_tree.png
if exist .\data\tracks\road\alpine-2\brick01.png copy .\data\tracks\road\alpine-2\brick01.png .\%RUNTIMEDIR%\tracks\road\alpine-2\brick01.png
if exist .\data\tracks\road\alpine-2\cliff.png copy .\data\tracks\road\alpine-2\cliff.png .\%RUNTIMEDIR%\tracks\road\alpine-2\cliff.png
if exist .\data\tracks\road\alpine-2\CMNTA.png copy .\data\tracks\road\alpine-2\CMNTA.png .\%RUNTIMEDIR%\tracks\road\alpine-2\CMNTA.png
if exist .\data\tracks\road\alpine-2\concdark.png copy .\data\tracks\road\alpine-2\concdark.png .\%RUNTIMEDIR%\tracks\road\alpine-2\concdark.png
if exist .\data\tracks\road\alpine-2\CONCRE.png copy .\data\tracks\road\alpine-2\CONCRE.png .\%RUNTIMEDIR%\tracks\road\alpine-2\CONCRE.png
if exist .\data\tracks\road\alpine-2\concrete01.png copy .\data\tracks\road\alpine-2\concrete01.png .\%RUNTIMEDIR%\tracks\road\alpine-2\concrete01.png
if exist .\data\tracks\road\alpine-2\concwall2.png copy .\data\tracks\road\alpine-2\concwall2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\concwall2.png
if exist .\data\tracks\road\alpine-2\concwall.png copy .\data\tracks\road\alpine-2\concwall.png .\%RUNTIMEDIR%\tracks\road\alpine-2\concwall.png
if exist .\data\tracks\road\alpine-2\GRDRA_tree_n.png copy .\data\tracks\road\alpine-2\GRDRA_tree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\GRDRA_tree_n.png
if exist .\data\tracks\road\alpine-2\ice.png copy .\data\tracks\road\alpine-2\ice.png .\%RUNTIMEDIR%\tracks\road\alpine-2\ice.png
if exist .\data\tracks\road\alpine-2\LOGOMELA.png copy .\data\tracks\road\alpine-2\LOGOMELA.png .\%RUNTIMEDIR%\tracks\road\alpine-2\LOGOMELA.png
if exist .\data\tracks\road\alpine-2\LOGOMELC.png copy .\data\tracks\road\alpine-2\LOGOMELC.png .\%RUNTIMEDIR%\tracks\road\alpine-2\LOGOMELC.png
if exist .\data\tracks\road\alpine-2\ppla_tree_n.png copy .\data\tracks\road\alpine-2\ppla_tree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\ppla_tree_n.png
if exist .\data\tracks\road\alpine-2\pplb_tree_n.png copy .\data\tracks\road\alpine-2\pplb_tree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\pplb_tree_n.png
if exist .\data\tracks\road\alpine-2\pplc_tree_n.png copy .\data\tracks\road\alpine-2\pplc_tree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\pplc_tree_n.png
if exist .\data\tracks\road\alpine-2\racelinedark2light.png copy .\data\tracks\road\alpine-2\racelinedark2light.png .\%RUNTIMEDIR%\tracks\road\alpine-2\racelinedark2light.png
if exist .\data\tracks\road\alpine-2\racelinedark.png copy .\data\tracks\road\alpine-2\racelinedark.png .\%RUNTIMEDIR%\tracks\road\alpine-2\racelinedark.png
if exist .\data\tracks\road\alpine-2\racelinelight2dark.png copy .\data\tracks\road\alpine-2\racelinelight2dark.png .\%RUNTIMEDIR%\tracks\road\alpine-2\racelinelight2dark.png
if exist .\data\tracks\road\alpine-2\racelinelight.png copy .\data\tracks\road\alpine-2\racelinelight.png .\%RUNTIMEDIR%\tracks\road\alpine-2\racelinelight.png
if exist .\data\tracks\road\alpine-2\RAILtree_n.png copy .\data\tracks\road\alpine-2\RAILtree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\RAILtree_n.png
if exist .\data\tracks\road\alpine-2\road2snow-edge.png copy .\data\tracks\road\alpine-2\road2snow-edge.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road2snow-edge.png
if exist .\data\tracks\road\alpine-2\road2snow.png copy .\data\tracks\road\alpine-2\road2snow.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road2snow.png
if exist .\data\tracks\road\alpine-2\road-line-edge.png copy .\data\tracks\road\alpine-2\road-line-edge.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-line-edge.png
if exist .\data\tracks\road\alpine-2\road-lines2.png copy .\data\tracks\road\alpine-2\road-lines2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-lines2.png
if exist .\data\tracks\road\alpine-2\road-linesbrleft.png copy .\data\tracks\road\alpine-2\road-linesbrleft.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-linesbrleft.png
if exist .\data\tracks\road\alpine-2\road-linesbroken.png copy .\data\tracks\road\alpine-2\road-linesbroken.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-linesbroken.png
if exist .\data\tracks\road\alpine-2\road-linesbrrightt.png copy .\data\tracks\road\alpine-2\road-linesbrrightt.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-linesbrrightt.png
if exist .\data\tracks\road\alpine-2\road-pit.png copy .\data\tracks\road\alpine-2\road-pit.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-pit.png
if exist .\data\tracks\road\alpine-2\road.png copy .\data\tracks\road\alpine-2\road.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road.png
if exist .\data\tracks\road\alpine-2\road-snow.png copy .\data\tracks\road\alpine-2\road-snow.png .\%RUNTIMEDIR%\tracks\road\alpine-2\road-snow.png
if exist .\data\tracks\road\alpine-2\rockwall2.png copy .\data\tracks\road\alpine-2\rockwall2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\rockwall2.png
if exist .\data\tracks\road\alpine-2\rockwall.png copy .\data\tracks\road\alpine-2\rockwall.png .\%RUNTIMEDIR%\tracks\road\alpine-2\rockwall.png
if exist .\data\tracks\road\alpine-2\SEATS.png copy .\data\tracks\road\alpine-2\SEATS.png .\%RUNTIMEDIR%\tracks\road\alpine-2\SEATS.png
if exist .\data\tracks\road\alpine-2\shadow2.png copy .\data\tracks\road\alpine-2\shadow2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\shadow2.png
if exist .\data\tracks\road\alpine-2\snow_2.png copy .\data\tracks\road\alpine-2\snow_2.png .\%RUNTIMEDIR%\tracks\road\alpine-2\snow_2.png
if exist .\data\tracks\road\alpine-2\snow_3.png copy .\data\tracks\road\alpine-2\snow_3.png .\%RUNTIMEDIR%\tracks\road\alpine-2\snow_3.png
if exist .\data\tracks\road\alpine-2\snow_4.png copy .\data\tracks\road\alpine-2\snow_4.png .\%RUNTIMEDIR%\tracks\road\alpine-2\snow_4.png
if exist .\data\tracks\road\alpine-2\snow.png copy .\data\tracks\road\alpine-2\snow.png .\%RUNTIMEDIR%\tracks\road\alpine-2\snow.png
if exist .\data\tracks\road\alpine-2\steel01.png copy .\data\tracks\road\alpine-2\steel01.png .\%RUNTIMEDIR%\tracks\road\alpine-2\steel01.png
if exist .\data\tracks\road\alpine-2\TOWER_tree_n.png copy .\data\tracks\road\alpine-2\TOWER_tree_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\TOWER_tree_n.png
if exist .\data\tracks\road\alpine-2\tree1_n.png copy .\data\tracks\road\alpine-2\tree1_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\tree1_n.png
if exist .\data\tracks\road\alpine-2\tree2_n.png copy .\data\tracks\road\alpine-2\tree2_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\tree2_n.png
if exist .\data\tracks\road\alpine-2\tree3_n.png copy .\data\tracks\road\alpine-2\tree3_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\tree3_n.png
if exist .\data\tracks\road\alpine-2\tree6_n.png copy .\data\tracks\road\alpine-2\tree6_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\tree6_n.png
if exist .\data\tracks\road\alpine-2\tree7_n.png copy .\data\tracks\road\alpine-2\tree7_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\tree7_n.png
if exist .\data\tracks\road\alpine-2\tree8_n.png copy .\data\tracks\road\alpine-2\tree8_n.png .\%RUNTIMEDIR%\tracks\road\alpine-2\tree8_n.png
if exist .\data\tracks\road\alpine-2\WALL.png copy .\data\tracks\road\alpine-2\WALL.png .\%RUNTIMEDIR%\tracks\road\alpine-2\WALL.png
if exist .\data\tracks\road\brondehach\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\brondehach\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\brondehach\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\brondehach\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\brondehach
if exist .\data\tracks\road\brondehach\brondehach.xml copy .\data\tracks\road\brondehach\brondehach.xml .\%RUNTIMEDIR%\tracks\road\brondehach\brondehach.xml
if exist .\data\tracks\road\brondehach\brondehach.acc copy .\data\tracks\road\brondehach\brondehach.acc .\%RUNTIMEDIR%\tracks\road\brondehach\brondehach.acc
if exist .\data\tracks\road\brondehach\readme.txt copy .\data\tracks\road\brondehach\readme.txt .\%RUNTIMEDIR%\tracks\road\brondehach\readme.txt
if exist .\data\tracks\road\brondehach\shadow2.rgb copy .\data\tracks\road\brondehach\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\brondehach\shadow2.rgb
if exist .\data\tracks\road\brondehach\01.png copy .\data\tracks\road\brondehach\01.png .\%RUNTIMEDIR%\tracks\road\brondehach\01.png
if exist .\data\tracks\road\brondehach\02.png copy .\data\tracks\road\brondehach\02.png .\%RUNTIMEDIR%\tracks\road\brondehach\02.png
if exist .\data\tracks\road\brondehach\ALAUBM.png copy .\data\tracks\road\brondehach\ALAUBM.png .\%RUNTIMEDIR%\tracks\road\brondehach\ALAUBM.png
if exist .\data\tracks\road\brondehach\ASSSEM3.png copy .\data\tracks\road\brondehach\ASSSEM3.png .\%RUNTIMEDIR%\tracks\road\brondehach\ASSSEM3.png
if exist .\data\tracks\road\brondehach\ASSSEM7.png copy .\data\tracks\road\brondehach\ASSSEM7.png .\%RUNTIMEDIR%\tracks\road\brondehach\ASSSEM7.png
if exist .\data\tracks\road\brondehach\AUDI01.png copy .\data\tracks\road\brondehach\AUDI01.png .\%RUNTIMEDIR%\tracks\road\brondehach\AUDI01.png
if exist .\data\tracks\road\brondehach\AUDI02.png copy .\data\tracks\road\brondehach\AUDI02.png .\%RUNTIMEDIR%\tracks\road\brondehach\AUDI02.png
if exist .\data\tracks\road\brondehach\background.png copy .\data\tracks\road\brondehach\background.png .\%RUNTIMEDIR%\tracks\road\brondehach\background.png
if exist .\data\tracks\road\brondehach\BMW01.png copy .\data\tracks\road\brondehach\BMW01.png .\%RUNTIMEDIR%\tracks\road\brondehach\BMW01.png
if exist .\data\tracks\road\brondehach\BMW02.png copy .\data\tracks\road\brondehach\BMW02.png .\%RUNTIMEDIR%\tracks\road\brondehach\BMW02.png
if exist .\data\tracks\road\brondehach\BRDG2AB.png copy .\data\tracks\road\brondehach\BRDG2AB.png .\%RUNTIMEDIR%\tracks\road\brondehach\BRDG2AB.png
if exist .\data\tracks\road\brondehach\BRIDGEAD.png copy .\data\tracks\road\brondehach\BRIDGEAD.png .\%RUNTIMEDIR%\tracks\road\brondehach\BRIDGEAD.png
if exist .\data\tracks\road\brondehach\brondehach.png copy .\data\tracks\road\brondehach\brondehach.png .\%RUNTIMEDIR%\tracks\road\brondehach\brondehach.png
if exist .\data\tracks\road\brondehach\BUS.png copy .\data\tracks\road\brondehach\BUS.png .\%RUNTIMEDIR%\tracks\road\brondehach\BUS.png
if exist .\data\tracks\road\brondehach\CAMPER01.png copy .\data\tracks\road\brondehach\CAMPER01.png .\%RUNTIMEDIR%\tracks\road\brondehach\CAMPER01.png
if exist .\data\tracks\road\brondehach\CAMPER02.png copy .\data\tracks\road\brondehach\CAMPER02.png .\%RUNTIMEDIR%\tracks\road\brondehach\CAMPER02.png
if exist .\data\tracks\road\brondehach\CAMPER3.png copy .\data\tracks\road\brondehach\CAMPER3.png .\%RUNTIMEDIR%\tracks\road\brondehach\CAMPER3.png
if exist .\data\tracks\road\brondehach\CAMPER4.png copy .\data\tracks\road\brondehach\CAMPER4.png .\%RUNTIMEDIR%\tracks\road\brondehach\CAMPER4.png
if exist .\data\tracks\road\brondehach\CAMPER41.png copy .\data\tracks\road\brondehach\CAMPER41.png .\%RUNTIMEDIR%\tracks\road\brondehach\CAMPER41.png
if exist .\data\tracks\road\brondehach\concrete2.png copy .\data\tracks\road\brondehach\concrete2.png .\%RUNTIMEDIR%\tracks\road\brondehach\concrete2.png
if exist .\data\tracks\road\brondehach\CONCRETW.png copy .\data\tracks\road\brondehach\CONCRETW.png .\%RUNTIMEDIR%\tracks\road\brondehach\CONCRETW.png
if exist .\data\tracks\road\brondehach\CONCSH01.png copy .\data\tracks\road\brondehach\CONCSH01.png .\%RUNTIMEDIR%\tracks\road\brondehach\CONCSH01.png
if exist .\data\tracks\road\brondehach\CONCSH02.png copy .\data\tracks\road\brondehach\CONCSH02.png .\%RUNTIMEDIR%\tracks\road\brondehach\CONCSH02.png
if exist .\data\tracks\road\brondehach\CWALLPT1.png copy .\data\tracks\road\brondehach\CWALLPT1.png .\%RUNTIMEDIR%\tracks\road\brondehach\CWALLPT1.png
if exist .\data\tracks\road\brondehach\CWALLPT2_arbor_n.png copy .\data\tracks\road\brondehach\CWALLPT2_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\CWALLPT2_arbor_n.png
if exist .\data\tracks\road\brondehach\CWALLPT4.png copy .\data\tracks\road\brondehach\CWALLPT4.png .\%RUNTIMEDIR%\tracks\road\brondehach\CWALLPT4.png
if exist .\data\tracks\road\brondehach\DIST01.png copy .\data\tracks\road\brondehach\DIST01.png .\%RUNTIMEDIR%\tracks\road\brondehach\DIST01.png
if exist .\data\tracks\road\brondehach\DIST02.png copy .\data\tracks\road\brondehach\DIST02.png .\%RUNTIMEDIR%\tracks\road\brondehach\DIST02.png
if exist .\data\tracks\road\brondehach\DIST03.png copy .\data\tracks\road\brondehach\DIST03.png .\%RUNTIMEDIR%\tracks\road\brondehach\DIST03.png
if exist .\data\tracks\road\brondehach\DIST04.png copy .\data\tracks\road\brondehach\DIST04.png .\%RUNTIMEDIR%\tracks\road\brondehach\DIST04.png
if exist .\data\tracks\road\brondehach\FENCWIRE_arbor_n.png copy .\data\tracks\road\brondehach\FENCWIRE_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\FENCWIRE_arbor_n.png
if exist .\data\tracks\road\brondehach\GARAGE01.png copy .\data\tracks\road\brondehach\GARAGE01.png .\%RUNTIMEDIR%\tracks\road\brondehach\GARAGE01.png
if exist .\data\tracks\road\brondehach\GARAGE02.png copy .\data\tracks\road\brondehach\GARAGE02.png .\%RUNTIMEDIR%\tracks\road\brondehach\GARAGE02.png
if exist .\data\tracks\road\brondehach\GRASS01.png copy .\data\tracks\road\brondehach\GRASS01.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS01.png
if exist .\data\tracks\road\brondehach\GRASS02.png copy .\data\tracks\road\brondehach\GRASS02.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS02.png
if exist .\data\tracks\road\brondehach\GRASS03.png copy .\data\tracks\road\brondehach\GRASS03.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS03.png
if exist .\data\tracks\road\brondehach\GRASS04.png copy .\data\tracks\road\brondehach\GRASS04.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS04.png
if exist .\data\tracks\road\brondehach\GRASS05.png copy .\data\tracks\road\brondehach\GRASS05.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS05.png
if exist .\data\tracks\road\brondehach\GRASS06.png copy .\data\tracks\road\brondehach\GRASS06.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS06.png
if exist .\data\tracks\road\brondehach\GRASS07.png copy .\data\tracks\road\brondehach\GRASS07.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS07.png
if exist .\data\tracks\road\brondehach\GRASS08.png copy .\data\tracks\road\brondehach\GRASS08.png .\%RUNTIMEDIR%\tracks\road\brondehach\GRASS08.png
if exist .\data\tracks\road\brondehach\INFOMICH.png copy .\data\tracks\road\brondehach\INFOMICH.png .\%RUNTIMEDIR%\tracks\road\brondehach\INFOMICH.png
if exist .\data\tracks\road\brondehach\ISL1.png copy .\data\tracks\road\brondehach\ISL1.png .\%RUNTIMEDIR%\tracks\road\brondehach\ISL1.png
if exist .\data\tracks\road\brondehach\LAMAOP.png copy .\data\tracks\road\brondehach\LAMAOP.png .\%RUNTIMEDIR%\tracks\road\brondehach\LAMAOP.png
if exist .\data\tracks\road\brondehach\LANCIA01.png copy .\data\tracks\road\brondehach\LANCIA01.png .\%RUNTIMEDIR%\tracks\road\brondehach\LANCIA01.png
if exist .\data\tracks\road\brondehach\LANCIA02.png copy .\data\tracks\road\brondehach\LANCIA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\LANCIA02.png
if exist .\data\tracks\road\brondehach\LOGOALP1.png copy .\data\tracks\road\brondehach\LOGOALP1.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOALP1.png
if exist .\data\tracks\road\brondehach\LOGOCANO.png copy .\data\tracks\road\brondehach\LOGOCANO.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOCANO.png
if exist .\data\tracks\road\brondehach\LOGODUN2.png copy .\data\tracks\road\brondehach\LOGODUN2.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGODUN2.png
if exist .\data\tracks\road\brondehach\LOGOFIRE.png copy .\data\tracks\road\brondehach\LOGOFIRE.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOFIRE.png
if exist .\data\tracks\road\brondehach\LOGOHAN2.png copy .\data\tracks\road\brondehach\LOGOHAN2.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOHAN2.png
if exist .\data\tracks\road\brondehach\LOGOHILL.png copy .\data\tracks\road\brondehach\LOGOHILL.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOHILL.png
if exist .\data\tracks\road\brondehach\LOGOKAWA.png copy .\data\tracks\road\brondehach\LOGOKAWA.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOKAWA.png
if exist .\data\tracks\road\brondehach\LOGOMBIL.png copy .\data\tracks\road\brondehach\LOGOMBIL.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOMBIL.png
if exist .\data\tracks\road\brondehach\LOGOMON2.png copy .\data\tracks\road\brondehach\LOGOMON2.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOMON2.png
if exist .\data\tracks\road\brondehach\LOGONGKB.png copy .\data\tracks\road\brondehach\LOGONGKB.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGONGKB.png
if exist .\data\tracks\road\brondehach\LOGOSH2.png copy .\data\tracks\road\brondehach\LOGOSH2.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOSH2.png
if exist .\data\tracks\road\brondehach\LOGOSHLL.png copy .\data\tracks\road\brondehach\LOGOSHLL.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOSHLL.png
if exist .\data\tracks\road\brondehach\LOGOYAM2.png copy .\data\tracks\road\brondehach\LOGOYAM2.png .\%RUNTIMEDIR%\tracks\road\brondehach\LOGOYAM2.png
if exist .\data\tracks\road\brondehach\MASE01.png copy .\data\tracks\road\brondehach\MASE01.png .\%RUNTIMEDIR%\tracks\road\brondehach\MASE01.png
if exist .\data\tracks\road\brondehach\MASE02.png copy .\data\tracks\road\brondehach\MASE02.png .\%RUNTIMEDIR%\tracks\road\brondehach\MASE02.png
if exist .\data\tracks\road\brondehach\MCN.png copy .\data\tracks\road\brondehach\MCN.png .\%RUNTIMEDIR%\tracks\road\brondehach\MCN.png
if exist .\data\tracks\road\brondehach\MOB1DUO.png copy .\data\tracks\road\brondehach\MOB1DUO.png .\%RUNTIMEDIR%\tracks\road\brondehach\MOB1DUO.png
if exist .\data\tracks\road\brondehach\OBJA01.png copy .\data\tracks\road\brondehach\OBJA01.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA01.png
if exist .\data\tracks\road\brondehach\OBJA02.png copy .\data\tracks\road\brondehach\OBJA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA02.png
if exist .\data\tracks\road\brondehach\OBJA03.png copy .\data\tracks\road\brondehach\OBJA03.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA03.png
if exist .\data\tracks\road\brondehach\OBJA04.png copy .\data\tracks\road\brondehach\OBJA04.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA04.png
if exist .\data\tracks\road\brondehach\OBJA05.png copy .\data\tracks\road\brondehach\OBJA05.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA05.png
if exist .\data\tracks\road\brondehach\OBJA06.png copy .\data\tracks\road\brondehach\OBJA06.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA06.png
if exist .\data\tracks\road\brondehach\OBJA07.png copy .\data\tracks\road\brondehach\OBJA07.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA07.png
if exist .\data\tracks\road\brondehach\OBJA08.png copy .\data\tracks\road\brondehach\OBJA08.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA08.png
if exist .\data\tracks\road\brondehach\OBJA09.png copy .\data\tracks\road\brondehach\OBJA09.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA09.png
if exist .\data\tracks\road\brondehach\OBJA10.png copy .\data\tracks\road\brondehach\OBJA10.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA10.png
if exist .\data\tracks\road\brondehach\OBJA11.png copy .\data\tracks\road\brondehach\OBJA11.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA11.png
if exist .\data\tracks\road\brondehach\OBJA12.png copy .\data\tracks\road\brondehach\OBJA12.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA12.png
if exist .\data\tracks\road\brondehach\OBJA13.png copy .\data\tracks\road\brondehach\OBJA13.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA13.png
if exist .\data\tracks\road\brondehach\OBJA14.png copy .\data\tracks\road\brondehach\OBJA14.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA14.png
if exist .\data\tracks\road\brondehach\OBJA15.png copy .\data\tracks\road\brondehach\OBJA15.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA15.png
if exist .\data\tracks\road\brondehach\OBJA16.png copy .\data\tracks\road\brondehach\OBJA16.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA16.png
if exist .\data\tracks\road\brondehach\OBJA17.png copy .\data\tracks\road\brondehach\OBJA17.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA17.png
if exist .\data\tracks\road\brondehach\OBJA18.png copy .\data\tracks\road\brondehach\OBJA18.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA18.png
if exist .\data\tracks\road\brondehach\OBJA19.png copy .\data\tracks\road\brondehach\OBJA19.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA19.png
if exist .\data\tracks\road\brondehach\OBJA20.png copy .\data\tracks\road\brondehach\OBJA20.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA20.png
if exist .\data\tracks\road\brondehach\OBJA21.png copy .\data\tracks\road\brondehach\OBJA21.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA21.png
if exist .\data\tracks\road\brondehach\OBJA22.png copy .\data\tracks\road\brondehach\OBJA22.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA22.png
if exist .\data\tracks\road\brondehach\OBJA24_arbor_n.png copy .\data\tracks\road\brondehach\OBJA24_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\OBJA24_arbor_n.png
if exist .\data\tracks\road\brondehach\OPEL01.png copy .\data\tracks\road\brondehach\OPEL01.png .\%RUNTIMEDIR%\tracks\road\brondehach\OPEL01.png
if exist .\data\tracks\road\brondehach\OPEL02.png copy .\data\tracks\road\brondehach\OPEL02.png .\%RUNTIMEDIR%\tracks\road\brondehach\OPEL02.png
if exist .\data\tracks\road\brondehach\PALAZA01.png copy .\data\tracks\road\brondehach\PALAZA01.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA01.png
if exist .\data\tracks\road\brondehach\PALAZA02.png copy .\data\tracks\road\brondehach\PALAZA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA02.png
if exist .\data\tracks\road\brondehach\PALAZA03.png copy .\data\tracks\road\brondehach\PALAZA03.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA03.png
if exist .\data\tracks\road\brondehach\PALAZA04.png copy .\data\tracks\road\brondehach\PALAZA04.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA04.png
if exist .\data\tracks\road\brondehach\PALAZA05.png copy .\data\tracks\road\brondehach\PALAZA05.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA05.png
if exist .\data\tracks\road\brondehach\PALAZA06.png copy .\data\tracks\road\brondehach\PALAZA06.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA06.png
if exist .\data\tracks\road\brondehach\PALAZA07.png copy .\data\tracks\road\brondehach\PALAZA07.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA07.png
if exist .\data\tracks\road\brondehach\PALAZA09.png copy .\data\tracks\road\brondehach\PALAZA09.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA09.png
if exist .\data\tracks\road\brondehach\PALAZA10.png copy .\data\tracks\road\brondehach\PALAZA10.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA10.png
if exist .\data\tracks\road\brondehach\PALAZA11.png copy .\data\tracks\road\brondehach\PALAZA11.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA11.png
if exist .\data\tracks\road\brondehach\PALAZA12.png copy .\data\tracks\road\brondehach\PALAZA12.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA12.png
if exist .\data\tracks\road\brondehach\PALAZA13.png copy .\data\tracks\road\brondehach\PALAZA13.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA13.png
if exist .\data\tracks\road\brondehach\PALAZA16.png copy .\data\tracks\road\brondehach\PALAZA16.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA16.png
if exist .\data\tracks\road\brondehach\PALAZA17.png copy .\data\tracks\road\brondehach\PALAZA17.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA17.png
if exist .\data\tracks\road\brondehach\PALAZA22.png copy .\data\tracks\road\brondehach\PALAZA22.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA22.png
if exist .\data\tracks\road\brondehach\PALAZA23_arbor_n.png copy .\data\tracks\road\brondehach\PALAZA23_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA23_arbor_n.png
if exist .\data\tracks\road\brondehach\PALAZA24.png copy .\data\tracks\road\brondehach\PALAZA24.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZA24.png
if exist .\data\tracks\road\brondehach\PALAZB01.png copy .\data\tracks\road\brondehach\PALAZB01.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB01.png
if exist .\data\tracks\road\brondehach\PALAZB02.png copy .\data\tracks\road\brondehach\PALAZB02.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB02.png
if exist .\data\tracks\road\brondehach\PALAZB03.png copy .\data\tracks\road\brondehach\PALAZB03.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB03.png
if exist .\data\tracks\road\brondehach\PALAZB04.png copy .\data\tracks\road\brondehach\PALAZB04.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB04.png
if exist .\data\tracks\road\brondehach\PALAZB06.png copy .\data\tracks\road\brondehach\PALAZB06.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB06.png
if exist .\data\tracks\road\brondehach\PALAZB07.png copy .\data\tracks\road\brondehach\PALAZB07.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB07.png
if exist .\data\tracks\road\brondehach\PALAZB08.png copy .\data\tracks\road\brondehach\PALAZB08.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB08.png
if exist .\data\tracks\road\brondehach\PALAZB11.png copy .\data\tracks\road\brondehach\PALAZB11.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB11.png
if exist .\data\tracks\road\brondehach\PALAZB12.png copy .\data\tracks\road\brondehach\PALAZB12.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB12.png
if exist .\data\tracks\road\brondehach\PALAZB13_arbor_n.png copy .\data\tracks\road\brondehach\PALAZB13_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB13_arbor_n.png
if exist .\data\tracks\road\brondehach\PALAZB14_arbor_n.png copy .\data\tracks\road\brondehach\PALAZB14_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB14_arbor_n.png
if exist .\data\tracks\road\brondehach\PALAZB15.png copy .\data\tracks\road\brondehach\PALAZB15.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB15.png
if exist .\data\tracks\road\brondehach\PALAZB16_arbor_n.png copy .\data\tracks\road\brondehach\PALAZB16_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB16_arbor_n.png
if exist .\data\tracks\road\brondehach\PALAZB17.png copy .\data\tracks\road\brondehach\PALAZB17.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB17.png
if exist .\data\tracks\road\brondehach\PALAZB18.png copy .\data\tracks\road\brondehach\PALAZB18.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB18.png
if exist .\data\tracks\road\brondehach\PALAZB19.png copy .\data\tracks\road\brondehach\PALAZB19.png .\%RUNTIMEDIR%\tracks\road\brondehach\PALAZB19.png
if exist .\data\tracks\road\brondehach\PDKKA01.png copy .\data\tracks\road\brondehach\PDKKA01.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA01.png
if exist .\data\tracks\road\brondehach\PDKKA01T.png copy .\data\tracks\road\brondehach\PDKKA01T.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA01T.png
if exist .\data\tracks\road\brondehach\PDKKA01Y.png copy .\data\tracks\road\brondehach\PDKKA01Y.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA01Y.png
if exist .\data\tracks\road\brondehach\PDKKA02.png copy .\data\tracks\road\brondehach\PDKKA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA02.png
if exist .\data\tracks\road\brondehach\PDKKA03.png copy .\data\tracks\road\brondehach\PDKKA03.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA03.png
if exist .\data\tracks\road\brondehach\PDKKA05.png copy .\data\tracks\road\brondehach\PDKKA05.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA05.png
if exist .\data\tracks\road\brondehach\PDKKA06.png copy .\data\tracks\road\brondehach\PDKKA06.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA06.png
if exist .\data\tracks\road\brondehach\PDKKA07.png copy .\data\tracks\road\brondehach\PDKKA07.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA07.png
if exist .\data\tracks\road\brondehach\PDKKA08.png copy .\data\tracks\road\brondehach\PDKKA08.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA08.png
if exist .\data\tracks\road\brondehach\PDKKA10.png copy .\data\tracks\road\brondehach\PDKKA10.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA10.png
if exist .\data\tracks\road\brondehach\PDKKA11.png copy .\data\tracks\road\brondehach\PDKKA11.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA11.png
if exist .\data\tracks\road\brondehach\PDKKA12.png copy .\data\tracks\road\brondehach\PDKKA12.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA12.png
if exist .\data\tracks\road\brondehach\PDKKA13.png copy .\data\tracks\road\brondehach\PDKKA13.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA13.png
if exist .\data\tracks\road\brondehach\PDKKA13b.png copy .\data\tracks\road\brondehach\PDKKA13b.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA13b.png
if exist .\data\tracks\road\brondehach\PDKKA14.png copy .\data\tracks\road\brondehach\PDKKA14.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA14.png
if exist .\data\tracks\road\brondehach\PDKKA15.png copy .\data\tracks\road\brondehach\PDKKA15.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA15.png
if exist .\data\tracks\road\brondehach\PDKKA18.png copy .\data\tracks\road\brondehach\PDKKA18.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA18.png
if exist .\data\tracks\road\brondehach\PDKKA19.png copy .\data\tracks\road\brondehach\PDKKA19.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA19.png
if exist .\data\tracks\road\brondehach\PDKKA20.png copy .\data\tracks\road\brondehach\PDKKA20.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA20.png
if exist .\data\tracks\road\brondehach\PDKKA21.png copy .\data\tracks\road\brondehach\PDKKA21.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA21.png
if exist .\data\tracks\road\brondehach\PDKKA22.png copy .\data\tracks\road\brondehach\PDKKA22.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA22.png
if exist .\data\tracks\road\brondehach\PDKKA23.png copy .\data\tracks\road\brondehach\PDKKA23.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA23.png
if exist .\data\tracks\road\brondehach\PDKKA24.png copy .\data\tracks\road\brondehach\PDKKA24.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA24.png
if exist .\data\tracks\road\brondehach\PDKKA25.png copy .\data\tracks\road\brondehach\PDKKA25.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA25.png
if exist .\data\tracks\road\brondehach\PDKKA9A.png copy .\data\tracks\road\brondehach\PDKKA9A.png .\%RUNTIMEDIR%\tracks\road\brondehach\PDKKA9A.png
if exist .\data\tracks\road\brondehach\RAX01.png copy .\data\tracks\road\brondehach\RAX01.png .\%RUNTIMEDIR%\tracks\road\brondehach\RAX01.png
if exist .\data\tracks\road\brondehach\road01.png copy .\data\tracks\road\brondehach\road01.png .\%RUNTIMEDIR%\tracks\road\brondehach\road01.png
if exist .\data\tracks\road\brondehach\ROAD02.png copy .\data\tracks\road\brondehach\ROAD02.png .\%RUNTIMEDIR%\tracks\road\brondehach\ROAD02.png
if exist .\data\tracks\road\brondehach\ROAD05.png copy .\data\tracks\road\brondehach\ROAD05.png .\%RUNTIMEDIR%\tracks\road\brondehach\ROAD05.png
if exist .\data\tracks\road\brondehach\ROAD06.png copy .\data\tracks\road\brondehach\ROAD06.png .\%RUNTIMEDIR%\tracks\road\brondehach\ROAD06.png
if exist .\data\tracks\road\brondehach\road08.png copy .\data\tracks\road\brondehach\road08.png .\%RUNTIMEDIR%\tracks\road\brondehach\road08.png
if exist .\data\tracks\road\brondehach\roaddk.png copy .\data\tracks\road\brondehach\roaddk.png .\%RUNTIMEDIR%\tracks\road\brondehach\roaddk.png
if exist .\data\tracks\road\brondehach\roaddt.png copy .\data\tracks\road\brondehach\roaddt.png .\%RUNTIMEDIR%\tracks\road\brondehach\roaddt.png
if exist .\data\tracks\road\brondehach\ROADPARK.png copy .\data\tracks\road\brondehach\ROADPARK.png .\%RUNTIMEDIR%\tracks\road\brondehach\ROADPARK.png
if exist .\data\tracks\road\brondehach\ROADPIT4.png copy .\data\tracks\road\brondehach\ROADPIT4.png .\%RUNTIMEDIR%\tracks\road\brondehach\ROADPIT4.png
if exist .\data\tracks\road\brondehach\RSA01.png copy .\data\tracks\road\brondehach\RSA01.png .\%RUNTIMEDIR%\tracks\road\brondehach\RSA01.png
if exist .\data\tracks\road\brondehach\RSA02.png copy .\data\tracks\road\brondehach\RSA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\RSA02.png
if exist .\data\tracks\road\brondehach\SAND01.png copy .\data\tracks\road\brondehach\SAND01.png .\%RUNTIMEDIR%\tracks\road\brondehach\SAND01.png
if exist .\data\tracks\road\brondehach\SAND02.png copy .\data\tracks\road\brondehach\SAND02.png .\%RUNTIMEDIR%\tracks\road\brondehach\SAND02.png
if exist .\data\tracks\road\brondehach\SEMA02.png copy .\data\tracks\road\brondehach\SEMA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\SEMA02.png
if exist .\data\tracks\road\brondehach\SEMA03.png copy .\data\tracks\road\brondehach\SEMA03.png .\%RUNTIMEDIR%\tracks\road\brondehach\SEMA03.png
if exist .\data\tracks\road\brondehach\SEMA04.png copy .\data\tracks\road\brondehach\SEMA04.png .\%RUNTIMEDIR%\tracks\road\brondehach\SEMA04.png
if exist .\data\tracks\road\brondehach\shadow2.png copy .\data\tracks\road\brondehach\shadow2.png .\%RUNTIMEDIR%\tracks\road\brondehach\shadow2.png
if exist .\data\tracks\road\brondehach\STLIGHT.png copy .\data\tracks\road\brondehach\STLIGHT.png .\%RUNTIMEDIR%\tracks\road\brondehach\STLIGHT.png
if exist .\data\tracks\road\brondehach\STLINE.png copy .\data\tracks\road\brondehach\STLINE.png .\%RUNTIMEDIR%\tracks\road\brondehach\STLINE.png
if exist .\data\tracks\road\brondehach\TANKER.png copy .\data\tracks\road\brondehach\TANKER.png .\%RUNTIMEDIR%\tracks\road\brondehach\TANKER.png
if exist .\data\tracks\road\brondehach\TIREBLAK.png copy .\data\tracks\road\brondehach\TIREBLAK.png .\%RUNTIMEDIR%\tracks\road\brondehach\TIREBLAK.png
if exist .\data\tracks\road\brondehach\TIREBLAK2.png copy .\data\tracks\road\brondehach\TIREBLAK2.png .\%RUNTIMEDIR%\tracks\road\brondehach\TIREBLAK2.png
if exist .\data\tracks\road\brondehach\tr-asphalt.png copy .\data\tracks\road\brondehach\tr-asphalt.png .\%RUNTIMEDIR%\tracks\road\brondehach\tr-asphalt.png
if exist .\data\tracks\road\brondehach\tree1_n.png copy .\data\tracks\road\brondehach\tree1_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\tree1_n.png
if exist .\data\tracks\road\brondehach\tree2_n.png copy .\data\tracks\road\brondehach\tree2_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\tree2_n.png
if exist .\data\tracks\road\brondehach\treebit1_n.png copy .\data\tracks\road\brondehach\treebit1_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\treebit1_n.png
if exist .\data\tracks\road\brondehach\treebit2_n.png copy .\data\tracks\road\brondehach\treebit2_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\treebit2_n.png
if exist .\data\tracks\road\brondehach\treeq1.png copy .\data\tracks\road\brondehach\treeq1.png .\%RUNTIMEDIR%\tracks\road\brondehach\treeq1.png
if exist .\data\tracks\road\brondehach\treeq2_n.png copy .\data\tracks\road\brondehach\treeq2_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\treeq2_n.png
if exist .\data\tracks\road\brondehach\treeUGLIES01_n.png copy .\data\tracks\road\brondehach\treeUGLIES01_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\treeUGLIES01_n.png
if exist .\data\tracks\road\brondehach\treeUGLIES02_n.png copy .\data\tracks\road\brondehach\treeUGLIES02_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\treeUGLIES02_n.png
if exist .\data\tracks\road\brondehach\treeUGLIES03_n.png copy .\data\tracks\road\brondehach\treeUGLIES03_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\treeUGLIES03_n.png
if exist .\data\tracks\road\brondehach\TRETRNK.png copy .\data\tracks\road\brondehach\TRETRNK.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRETRNK.png
if exist .\data\tracks\road\brondehach\TRIBA01.png copy .\data\tracks\road\brondehach\TRIBA01.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA01.png
if exist .\data\tracks\road\brondehach\TRIBA02.png copy .\data\tracks\road\brondehach\TRIBA02.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA02.png
if exist .\data\tracks\road\brondehach\TRIBA03.png copy .\data\tracks\road\brondehach\TRIBA03.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA03.png
if exist .\data\tracks\road\brondehach\TRIBA04.png copy .\data\tracks\road\brondehach\TRIBA04.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA04.png
if exist .\data\tracks\road\brondehach\TRIBA05.png copy .\data\tracks\road\brondehach\TRIBA05.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA05.png
if exist .\data\tracks\road\brondehach\TRIBA06_arbor_n.png copy .\data\tracks\road\brondehach\TRIBA06_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA06_arbor_n.png
if exist .\data\tracks\road\brondehach\TRIBA07_arbor_n.png copy .\data\tracks\road\brondehach\TRIBA07_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA07_arbor_n.png
if exist .\data\tracks\road\brondehach\TRIBA08.png copy .\data\tracks\road\brondehach\TRIBA08.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA08.png
if exist .\data\tracks\road\brondehach\TRIBA09_arbor_n.png copy .\data\tracks\road\brondehach\TRIBA09_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA09_arbor_n.png
if exist .\data\tracks\road\brondehach\TRIBA10.png copy .\data\tracks\road\brondehach\TRIBA10.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA10.png
if exist .\data\tracks\road\brondehach\TRIBA11.png copy .\data\tracks\road\brondehach\TRIBA11.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA11.png
if exist .\data\tracks\road\brondehach\TRIBA12.png copy .\data\tracks\road\brondehach\TRIBA12.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA12.png
if exist .\data\tracks\road\brondehach\TRIBA13.png copy .\data\tracks\road\brondehach\TRIBA13.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA13.png
if exist .\data\tracks\road\brondehach\TRIBA14.png copy .\data\tracks\road\brondehach\TRIBA14.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA14.png
if exist .\data\tracks\road\brondehach\TRIBA15.png copy .\data\tracks\road\brondehach\TRIBA15.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA15.png
if exist .\data\tracks\road\brondehach\TRIBA16.png copy .\data\tracks\road\brondehach\TRIBA16.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA16.png
if exist .\data\tracks\road\brondehach\TRIBA17_arbor_n.png copy .\data\tracks\road\brondehach\TRIBA17_arbor_n.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBA17_arbor_n.png
if exist .\data\tracks\road\brondehach\TRIBB01.png copy .\data\tracks\road\brondehach\TRIBB01.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBB01.png
if exist .\data\tracks\road\brondehach\TRIBB02.png copy .\data\tracks\road\brondehach\TRIBB02.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBB02.png
if exist .\data\tracks\road\brondehach\TRIBB03.png copy .\data\tracks\road\brondehach\TRIBB03.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRIBB03.png
if exist .\data\tracks\road\brondehach\tr-road1.png copy .\data\tracks\road\brondehach\tr-road1.png .\%RUNTIMEDIR%\tracks\road\brondehach\tr-road1.png
if exist .\data\tracks\road\brondehach\tr-road1-border.png copy .\data\tracks\road\brondehach\tr-road1-border.png .\%RUNTIMEDIR%\tracks\road\brondehach\tr-road1-border.png
if exist .\data\tracks\road\brondehach\tr-road1-pit.png copy .\data\tracks\road\brondehach\tr-road1-pit.png .\%RUNTIMEDIR%\tracks\road\brondehach\tr-road1-pit.png
if exist .\data\tracks\road\brondehach\TRUCK01.png copy .\data\tracks\road\brondehach\TRUCK01.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK01.png
if exist .\data\tracks\road\brondehach\TRUCK02.png copy .\data\tracks\road\brondehach\TRUCK02.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK02.png
if exist .\data\tracks\road\brondehach\TRUCK05.png copy .\data\tracks\road\brondehach\TRUCK05.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK05.png
if exist .\data\tracks\road\brondehach\TRUCK06.png copy .\data\tracks\road\brondehach\TRUCK06.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK06.png
if exist .\data\tracks\road\brondehach\TRUCK07.png copy .\data\tracks\road\brondehach\TRUCK07.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK07.png
if exist .\data\tracks\road\brondehach\TRUCK08.png copy .\data\tracks\road\brondehach\TRUCK08.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK08.png
if exist .\data\tracks\road\brondehach\TRUCK09.png copy .\data\tracks\road\brondehach\TRUCK09.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK09.png
if exist .\data\tracks\road\brondehach\TRUCK11.png copy .\data\tracks\road\brondehach\TRUCK11.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK11.png
if exist .\data\tracks\road\brondehach\TRUCK12.png copy .\data\tracks\road\brondehach\TRUCK12.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK12.png
if exist .\data\tracks\road\brondehach\TRUCK13.png copy .\data\tracks\road\brondehach\TRUCK13.png .\%RUNTIMEDIR%\tracks\road\brondehach\TRUCK13.png
if exist .\data\tracks\road\brondehach\wall.png copy .\data\tracks\road\brondehach\wall.png .\%RUNTIMEDIR%\tracks\road\brondehach\wall.png
if exist .\data\tracks\road\brondehach\WHEELS6.png copy .\data\tracks\road\brondehach\WHEELS6.png .\%RUNTIMEDIR%\tracks\road\brondehach\WHEELS6.png
if exist .\data\tracks\road\brondehach\XRW1.png copy .\data\tracks\road\brondehach\XRW1.png .\%RUNTIMEDIR%\tracks\road\brondehach\XRW1.png
if exist .\data\tracks\road\brondehach\XRW1SHD1.png copy .\data\tracks\road\brondehach\XRW1SHD1.png .\%RUNTIMEDIR%\tracks\road\brondehach\XRW1SHD1.png
if exist .\data\tracks\road\corkscrew\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\data\tracks\road\corkscrew\*.* call .\create_dir .\%RUNTIMEDIR%\tracks
if exist .\data\tracks\road\corkscrew\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road
if exist .\data\tracks\road\corkscrew\*.* call .\create_dir .\%RUNTIMEDIR%\tracks\road\corkscrew
if exist .\data\tracks\road\corkscrew\corkscrew.xml copy .\data\tracks\road\corkscrew\corkscrew.xml .\%RUNTIMEDIR%\tracks\road\corkscrew\corkscrew.xml
if exist .\data\tracks\road\corkscrew\corkscrew.acc copy .\data\tracks\road\corkscrew\corkscrew.acc .\%RUNTIMEDIR%\tracks\road\corkscrew\corkscrew.acc
if exist .\data\tracks\road\corkscrew\readme.txt copy .\data\tracks\road\corkscrew\readme.txt .\%RUNTIMEDIR%\tracks\road\corkscrew\readme.txt
if exist .\data\tracks\road\corkscrew\shadow2.rgb copy .\data\tracks\road\corkscrew\shadow2.rgb .\%RUNTIMEDIR%\tracks\road\corkscrew\shadow2.rgb
if exist .\data\tracks\road\corkscrew\01.png copy .\data\tracks\road\corkscrew\01.png .\%RUNTIMEDIR%\tracks\road\corkscrew\01.png
if exist .\data\tracks\road\corkscrew\02.png copy .\data\tracks\road\corkscrew\02.png .\%RUNTIMEDIR%\tracks\road\corkscrew\02.png
if exist .\data\tracks\road\corkscrew\64PASS1.png copy .\data\tracks\road\corkscrew\64PASS1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\64PASS1.png
if exist .\data\tracks\road\corkscrew\64PASS6.png copy .\data\tracks\road\corkscrew\64PASS6.png .\%RUNTIMEDIR%\tracks\road\corkscrew\64PASS6.png
if exist .\data\tracks\road\corkscrew\64PASS9.png copy .\data\tracks\road\corkscrew\64PASS9.png .\%RUNTIMEDIR%\tracks\road\corkscrew\64PASS9.png
if exist .\data\tracks\road\corkscrew\ALFABLK.png copy .\data\tracks\road\corkscrew\ALFABLK.png .\%RUNTIMEDIR%\tracks\road\corkscrew\ALFABLK.png
if exist .\data\tracks\road\corkscrew\asphalt.png copy .\data\tracks\road\corkscrew\asphalt.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt.png
if exist .\data\tracks\road\corkscrew\asphalt2.png copy .\data\tracks\road\corkscrew\asphalt2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt2.png
if exist .\data\tracks\road\corkscrew\asphalt-h.png copy .\data\tracks\road\corkscrew\asphalt-h.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt-h.png
if exist .\data\tracks\road\corkscrew\asphalt-he.png copy .\data\tracks\road\corkscrew\asphalt-he.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt-he.png
if exist .\data\tracks\road\corkscrew\asphalt-hs.png copy .\data\tracks\road\corkscrew\asphalt-hs.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt-hs.png
if exist .\data\tracks\road\corkscrew\asphalt-l.png copy .\data\tracks\road\corkscrew\asphalt-l.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt-l.png
if exist .\data\tracks\road\corkscrew\asphalt-le.png copy .\data\tracks\road\corkscrew\asphalt-le.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt-le.png
if exist .\data\tracks\road\corkscrew\asphalt-ls.png copy .\data\tracks\road\corkscrew\asphalt-ls.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphalt-ls.png
if exist .\data\tracks\road\corkscrew\asphdots_n.png copy .\data\tracks\road\corkscrew\asphdots_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphdots_n.png
if exist .\data\tracks\road\corkscrew\asphsand_n.png copy .\data\tracks\road\corkscrew\asphsand_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphsand_n.png
if exist .\data\tracks\road\corkscrew\asphside_n.png copy .\data\tracks\road\corkscrew\asphside_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\asphside_n.png
if exist .\data\tracks\road\corkscrew\background.png copy .\data\tracks\road\corkscrew\background.png .\%RUNTIMEDIR%\tracks\road\corkscrew\background.png
if exist .\data\tracks\road\corkscrew\back-sign.png copy .\data\tracks\road\corkscrew\back-sign.png .\%RUNTIMEDIR%\tracks\road\corkscrew\back-sign.png
if exist .\data\tracks\road\corkscrew\BAR1.png copy .\data\tracks\road\corkscrew\BAR1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\BAR1.png
if exist .\data\tracks\road\corkscrew\BAR2.png copy .\data\tracks\road\corkscrew\BAR2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\BAR2.png
if exist .\data\tracks\road\corkscrew\BAR3.png copy .\data\tracks\road\corkscrew\BAR3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\BAR3.png
if exist .\data\tracks\road\corkscrew\BOX1.png copy .\data\tracks\road\corkscrew\BOX1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\BOX1.png
if exist .\data\tracks\road\corkscrew\BUS.png copy .\data\tracks\road\corkscrew\BUS.png .\%RUNTIMEDIR%\tracks\road\corkscrew\BUS.png
if exist .\data\tracks\road\corkscrew\CAMP.png copy .\data\tracks\road\corkscrew\CAMP.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAMP.png
if exist .\data\tracks\road\corkscrew\CAMPER1.png copy .\data\tracks\road\corkscrew\CAMPER1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAMPER1.png
if exist .\data\tracks\road\corkscrew\CAMPER2.png copy .\data\tracks\road\corkscrew\CAMPER2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAMPER2.png
if exist .\data\tracks\road\corkscrew\CAMPER3.png copy .\data\tracks\road\corkscrew\CAMPER3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAMPER3.png
if exist .\data\tracks\road\corkscrew\CAMPER4.png copy .\data\tracks\road\corkscrew\CAMPER4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAMPER4.png
if exist .\data\tracks\road\corkscrew\CAR01.png copy .\data\tracks\road\corkscrew\CAR01.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAR01.png
if exist .\data\tracks\road\corkscrew\CAR02.png copy .\data\tracks\road\corkscrew\CAR02.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAR02.png
if exist .\data\tracks\road\corkscrew\CAR05.png copy .\data\tracks\road\corkscrew\CAR05.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAR05.png
if exist .\data\tracks\road\corkscrew\CAR06.png copy .\data\tracks\road\corkscrew\CAR06.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAR06.png
if exist .\data\tracks\road\corkscrew\CAR07.png copy .\data\tracks\road\corkscrew\CAR07.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAR07.png
if exist .\data\tracks\road\corkscrew\CAR08.png copy .\data\tracks\road\corkscrew\CAR08.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CAR08.png
if exist .\data\tracks\road\corkscrew\CARS1.png copy .\data\tracks\road\corkscrew\CARS1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CARS1.png
if exist .\data\tracks\road\corkscrew\CARS2.png copy .\data\tracks\road\corkscrew\CARS2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CARS2.png
if exist .\data\tracks\road\corkscrew\CASA1.png copy .\data\tracks\road\corkscrew\CASA1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CASA1.png
if exist .\data\tracks\road\corkscrew\CASA2.png copy .\data\tracks\road\corkscrew\CASA2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CASA2.png
if exist .\data\tracks\road\corkscrew\CASOT1.png copy .\data\tracks\road\corkscrew\CASOT1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CASOT1.png
if exist .\data\tracks\road\corkscrew\CASOT2.png copy .\data\tracks\road\corkscrew\CASOT2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CASOT2.png
if exist .\data\tracks\road\corkscrew\clkdtm.png copy .\data\tracks\road\corkscrew\clkdtm.png .\%RUNTIMEDIR%\tracks\road\corkscrew\clkdtm.png
if exist .\data\tracks\road\corkscrew\concrete.png copy .\data\tracks\road\corkscrew\concrete.png .\%RUNTIMEDIR%\tracks\road\corkscrew\concrete.png
if exist .\data\tracks\road\corkscrew\concrete2.png copy .\data\tracks\road\corkscrew\concrete2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\concrete2.png
if exist .\data\tracks\road\corkscrew\corkscrew.png copy .\data\tracks\road\corkscrew\corkscrew.png .\%RUNTIMEDIR%\tracks\road\corkscrew\corkscrew.png
if exist .\data\tracks\road\corkscrew\corkscrew_arbor.png copy .\data\tracks\road\corkscrew\corkscrew_arbor.png .\%RUNTIMEDIR%\tracks\road\corkscrew\corkscrew_arbor.png
if exist .\data\tracks\road\corkscrew\CROWD5.png copy .\data\tracks\road\corkscrew\CROWD5.png .\%RUNTIMEDIR%\tracks\road\corkscrew\CROWD5.png
if exist .\data\tracks\road\corkscrew\dekk01.png copy .\data\tracks\road\corkscrew\dekk01.png .\%RUNTIMEDIR%\tracks\road\corkscrew\dekk01.png
if exist .\data\tracks\road\corkscrew\dekk02.png copy .\data\tracks\road\corkscrew\dekk02.png .\%RUNTIMEDIR%\tracks\road\corkscrew\dekk02.png
if exist .\data\tracks\road\corkscrew\FURGONE.png copy .\data\tracks\road\corkscrew\FURGONE.png .\%RUNTIMEDIR%\tracks\road\corkscrew\FURGONE.png
if exist .\data\tracks\road\corkscrew\GARAGE1.png copy .\data\tracks\road\corkscrew\GARAGE1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\GARAGE1.png
if exist .\data\tracks\road\corkscrew\GARAGE2.png copy .\data\tracks\road\corkscrew\GARAGE2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\GARAGE2.png
if exist .\data\tracks\road\corkscrew\GARAGE3.png copy .\data\tracks\road\corkscrew\GARAGE3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\GARAGE3.png
if exist .\data\tracks\road\corkscrew\grassclf.png copy .\data\tracks\road\corkscrew\grassclf.png .\%RUNTIMEDIR%\tracks\road\corkscrew\grassclf.png
if exist .\data\tracks\road\corkscrew\grassct.png copy .\data\tracks\road\corkscrew\grassct.png .\%RUNTIMEDIR%\tracks\road\corkscrew\grassct.png
if exist .\data\tracks\road\corkscrew\grasshil.png copy .\data\tracks\road\corkscrew\grasshil.png .\%RUNTIMEDIR%\tracks\road\corkscrew\grasshil.png
if exist .\data\tracks\road\corkscrew\grassnew.png copy .\data\tracks\road\corkscrew\grassnew.png .\%RUNTIMEDIR%\tracks\road\corkscrew\grassnew.png
if exist .\data\tracks\road\corkscrew\grasssnd.png copy .\data\tracks\road\corkscrew\grasssnd.png .\%RUNTIMEDIR%\tracks\road\corkscrew\grasssnd.png
if exist .\data\tracks\road\corkscrew\gravel.png copy .\data\tracks\road\corkscrew\gravel.png .\%RUNTIMEDIR%\tracks\road\corkscrew\gravel.png
if exist .\data\tracks\road\corkscrew\kilo.png copy .\data\tracks\road\corkscrew\kilo.png .\%RUNTIMEDIR%\tracks\road\corkscrew\kilo.png
if exist .\data\tracks\road\corkscrew\lgtgrn.png copy .\data\tracks\road\corkscrew\lgtgrn.png .\%RUNTIMEDIR%\tracks\road\corkscrew\lgtgrn.png
if exist .\data\tracks\road\corkscrew\lgtred.png copy .\data\tracks\road\corkscrew\lgtred.png .\%RUNTIMEDIR%\tracks\road\corkscrew\lgtred.png
if exist .\data\tracks\road\corkscrew\lgtyel.png copy .\data\tracks\road\corkscrew\lgtyel.png .\%RUNTIMEDIR%\tracks\road\corkscrew\lgtyel.png
if exist .\data\tracks\road\corkscrew\MASE01.png copy .\data\tracks\road\corkscrew\MASE01.png .\%RUNTIMEDIR%\tracks\road\corkscrew\MASE01.png
if exist .\data\tracks\road\corkscrew\MASE02.png copy .\data\tracks\road\corkscrew\MASE02.png .\%RUNTIMEDIR%\tracks\road\corkscrew\MASE02.png
if exist .\data\tracks\road\corkscrew\MONSTART.png copy .\data\tracks\road\corkscrew\MONSTART.png .\%RUNTIMEDIR%\tracks\road\corkscrew\MONSTART.png
if exist .\data\tracks\road\corkscrew\PAD1.png copy .\data\tracks\road\corkscrew\PAD1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PAD1.png
if exist .\data\tracks\road\corkscrew\PAD1a.png copy .\data\tracks\road\corkscrew\PAD1a.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PAD1a.png
if exist .\data\tracks\road\corkscrew\PAD2.png copy .\data\tracks\road\corkscrew\PAD2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PAD2.png
if exist .\data\tracks\road\corkscrew\PAD5.png copy .\data\tracks\road\corkscrew\PAD5.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PAD5.png
if exist .\data\tracks\road\corkscrew\PAD6.png copy .\data\tracks\road\corkscrew\PAD6.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PAD6.png
if exist .\data\tracks\road\corkscrew\PAD8.png copy .\data\tracks\road\corkscrew\PAD8.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PAD8.png
if exist .\data\tracks\road\corkscrew\PADWIN1.png copy .\data\tracks\road\corkscrew\PADWIN1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PADWIN1.png
if exist .\data\tracks\road\corkscrew\PADWIN2.png copy .\data\tracks\road\corkscrew\PADWIN2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PADWIN2.png
if exist .\data\tracks\road\corkscrew\PASS1.png copy .\data\tracks\road\corkscrew\PASS1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS1.png
if exist .\data\tracks\road\corkscrew\PASS10.png copy .\data\tracks\road\corkscrew\PASS10.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS10.png
if exist .\data\tracks\road\corkscrew\PASS2.png copy .\data\tracks\road\corkscrew\PASS2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS2.png
if exist .\data\tracks\road\corkscrew\PASS3.png copy .\data\tracks\road\corkscrew\PASS3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS3.png
if exist .\data\tracks\road\corkscrew\PASS4.png copy .\data\tracks\road\corkscrew\PASS4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS4.png
if exist .\data\tracks\road\corkscrew\PASS7.png copy .\data\tracks\road\corkscrew\PASS7.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS7.png
if exist .\data\tracks\road\corkscrew\PASS8.png copy .\data\tracks\road\corkscrew\PASS8.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PASS8.png
if exist .\data\tracks\road\corkscrew\PEP1.png copy .\data\tracks\road\corkscrew\PEP1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\PEP1.png
if exist .\data\tracks\road\corkscrew\pylon3.png copy .\data\tracks\road\corkscrew\pylon3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\pylon3.png
if exist .\data\tracks\road\corkscrew\ROAD.png copy .\data\tracks\road\corkscrew\ROAD.png .\%RUNTIMEDIR%\tracks\road\corkscrew\ROAD.png
if exist .\data\tracks\road\corkscrew\ROAD4.png copy .\data\tracks\road\corkscrew\ROAD4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\ROAD4.png
if exist .\data\tracks\road\corkscrew\ROAD7.png copy .\data\tracks\road\corkscrew\ROAD7.png .\%RUNTIMEDIR%\tracks\road\corkscrew\ROAD7.png
if exist .\data\tracks\road\corkscrew\roadA-pit.png copy .\data\tracks\road\corkscrew\roadA-pit.png .\%RUNTIMEDIR%\tracks\road\corkscrew\roadA-pit.png
if exist .\data\tracks\road\corkscrew\RSA3.png copy .\data\tracks\road\corkscrew\RSA3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RSA3.png
if exist .\data\tracks\road\corkscrew\RV1.png copy .\data\tracks\road\corkscrew\RV1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RV1.png
if exist .\data\tracks\road\corkscrew\RV2.png copy .\data\tracks\road\corkscrew\RV2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RV2.png
if exist .\data\tracks\road\corkscrew\RV3.png copy .\data\tracks\road\corkscrew\RV3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RV3.png
if exist .\data\tracks\road\corkscrew\RV4.png copy .\data\tracks\road\corkscrew\RV4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RV4.png
if exist .\data\tracks\road\corkscrew\RV5.png copy .\data\tracks\road\corkscrew\RV5.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RV5.png
if exist .\data\tracks\road\corkscrew\RV6.png copy .\data\tracks\road\corkscrew\RV6.png .\%RUNTIMEDIR%\tracks\road\corkscrew\RV6.png
if exist .\data\tracks\road\corkscrew\sandgrvl.png copy .\data\tracks\road\corkscrew\sandgrvl.png .\%RUNTIMEDIR%\tracks\road\corkscrew\sandgrvl.png
if exist .\data\tracks\road\corkscrew\sand-new.png copy .\data\tracks\road\corkscrew\sand-new.png .\%RUNTIMEDIR%\tracks\road\corkscrew\sand-new.png
if exist .\data\tracks\road\corkscrew\sandwtr.png copy .\data\tracks\road\corkscrew\sandwtr.png .\%RUNTIMEDIR%\tracks\road\corkscrew\sandwtr.png
if exist .\data\tracks\road\corkscrew\shadow.png copy .\data\tracks\road\corkscrew\shadow.png .\%RUNTIMEDIR%\tracks\road\corkscrew\shadow.png
if exist .\data\tracks\road\corkscrew\shadow2.png copy .\data\tracks\road\corkscrew\shadow2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\shadow2.png
if exist .\data\tracks\road\corkscrew\STAGE2.png copy .\data\tracks\road\corkscrew\STAGE2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\STAGE2.png
if exist .\data\tracks\road\corkscrew\TENT2_D.png copy .\data\tracks\road\corkscrew\TENT2_D.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENT2_D.png
if exist .\data\tracks\road\corkscrew\TENTA1.png copy .\data\tracks\road\corkscrew\TENTA1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTA1.png
if exist .\data\tracks\road\corkscrew\TENTA2.png copy .\data\tracks\road\corkscrew\TENTA2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTA2.png
if exist .\data\tracks\road\corkscrew\TENTA3.png copy .\data\tracks\road\corkscrew\TENTA3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTA3.png
if exist .\data\tracks\road\corkscrew\TENTA4.png copy .\data\tracks\road\corkscrew\TENTA4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTA4.png
if exist .\data\tracks\road\corkscrew\TENTA5.png copy .\data\tracks\road\corkscrew\TENTA5.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTA5.png
if exist .\data\tracks\road\corkscrew\tentblue.png copy .\data\tracks\road\corkscrew\tentblue.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tentblue.png
if exist .\data\tracks\road\corkscrew\TENTON3.png copy .\data\tracks\road\corkscrew\TENTON3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTON3.png
if exist .\data\tracks\road\corkscrew\TENTPEP1.png copy .\data\tracks\road\corkscrew\TENTPEP1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTPEP1.png
if exist .\data\tracks\road\corkscrew\TENTPEP2.png copy .\data\tracks\road\corkscrew\TENTPEP2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TENTPEP2.png
if exist .\data\tracks\road\corkscrew\tentred.png copy .\data\tracks\road\corkscrew\tentred.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tentred.png
if exist .\data\tracks\road\corkscrew\texwheel.png copy .\data\tracks\road\corkscrew\texwheel.png .\%RUNTIMEDIR%\tracks\road\corkscrew\texwheel.png
if exist .\data\tracks\road\corkscrew\tileroof.png copy .\data\tracks\road\corkscrew\tileroof.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tileroof.png
if exist .\data\tracks\road\corkscrew\TIREBLAK2.png copy .\data\tracks\road\corkscrew\TIREBLAK2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TIREBLAK2.png
if exist .\data\tracks\road\corkscrew\TOW1.png copy .\data\tracks\road\corkscrew\TOW1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TOW1.png
if exist .\data\tracks\road\corkscrew\TOWDISP3.png copy .\data\tracks\road\corkscrew\TOWDISP3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TOWDISP3.png
if exist .\data\tracks\road\corkscrew\TRAVE1.png copy .\data\tracks\road\corkscrew\TRAVE1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRAVE1.png
if exist .\data\tracks\road\corkscrew\TRAVE3.png copy .\data\tracks\road\corkscrew\TRAVE3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRAVE3.png
if exist .\data\tracks\road\corkscrew\TRAVE4.png copy .\data\tracks\road\corkscrew\TRAVE4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRAVE4.png
if exist .\data\tracks\road\corkscrew\tr-barrier-arbor.png copy .\data\tracks\road\corkscrew\tr-barrier-arbor.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-barrier-arbor.png
if exist .\data\tracks\road\corkscrew\tr-barrier-arbor-blue.png copy .\data\tracks\road\corkscrew\tr-barrier-arbor-blue.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-barrier-arbor-blue.png
if exist .\data\tracks\road\corkscrew\tr-barrier-arbor-fence_n.png copy .\data\tracks\road\corkscrew\tr-barrier-arbor-fence_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-barrier-arbor-fence_n.png
if exist .\data\tracks\road\corkscrew\tr-curb-wb-l.png copy .\data\tracks\road\corkscrew\tr-curb-wb-l.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-curb-wb-l.png
if exist .\data\tracks\road\corkscrew\tr-curb-wb-l-o.png copy .\data\tracks\road\corkscrew\tr-curb-wb-l-o.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-curb-wb-l-o.png
if exist .\data\tracks\road\corkscrew\tr-curb-wb-r.png copy .\data\tracks\road\corkscrew\tr-curb-wb-r.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-curb-wb-r.png
if exist .\data\tracks\road\corkscrew\tr-curb-wb-r-o.png copy .\data\tracks\road\corkscrew\tr-curb-wb-r-o.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tr-curb-wb-r-o.png
if exist .\data\tracks\road\corkscrew\tree_n.png copy .\data\tracks\road\corkscrew\tree_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tree_n.png
if exist .\data\tracks\road\corkscrew\tree3_n.png copy .\data\tracks\road\corkscrew\tree3_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tree3_n.png
if exist .\data\tracks\road\corkscrew\tree7_n.png copy .\data\tracks\road\corkscrew\tree7_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\tree7_n.png
if exist .\data\tracks\road\corkscrew\treeC3_n.png copy .\data\tracks\road\corkscrew\treeC3_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeC3_n.png
if exist .\data\tracks\road\corkscrew\treeC4_n.png copy .\data\tracks\road\corkscrew\treeC4_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeC4_n.png
if exist .\data\tracks\road\corkscrew\treeRNS2.png copy .\data\tracks\road\corkscrew\treeRNS2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeRNS2.png
if exist .\data\tracks\road\corkscrew\treeRNS3.png copy .\data\tracks\road\corkscrew\treeRNS3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeRNS3.png
if exist .\data\tracks\road\corkscrew\treeRNS4.png copy .\data\tracks\road\corkscrew\treeRNS4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeRNS4.png
if exist .\data\tracks\road\corkscrew\treeRNS5.png copy .\data\tracks\road\corkscrew\treeRNS5.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeRNS5.png
if exist .\data\tracks\road\corkscrew\treeS3_n.png copy .\data\tracks\road\corkscrew\treeS3_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeS3_n.png
if exist .\data\tracks\road\corkscrew\treeSC_n.png copy .\data\tracks\road\corkscrew\treeSC_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeSC_n.png
if exist .\data\tracks\road\corkscrew\treeSC2_n.png copy .\data\tracks\road\corkscrew\treeSC2_n.png .\%RUNTIMEDIR%\tracks\road\corkscrew\treeSC2_n.png
if exist .\data\tracks\road\corkscrew\TRIB1.png copy .\data\tracks\road\corkscrew\TRIB1.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB1.png
if exist .\data\tracks\road\corkscrew\TRIB2.png copy .\data\tracks\road\corkscrew\TRIB2.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB2.png
if exist .\data\tracks\road\corkscrew\TRIB3.png copy .\data\tracks\road\corkscrew\TRIB3.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB3.png
if exist .\data\tracks\road\corkscrew\TRIB4.png copy .\data\tracks\road\corkscrew\TRIB4.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB4.png
if exist .\data\tracks\road\corkscrew\TRIB5.png copy .\data\tracks\road\corkscrew\TRIB5.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB5.png
if exist .\data\tracks\road\corkscrew\TRIB6.png copy .\data\tracks\road\corkscrew\TRIB6.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB6.png
if exist .\data\tracks\road\corkscrew\TRIB7.png copy .\data\tracks\road\corkscrew\TRIB7.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB7.png
if exist .\data\tracks\road\corkscrew\TRIB8.png copy .\data\tracks\road\corkscrew\TRIB8.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB8.png
if exist .\data\tracks\road\corkscrew\TRIB9.png copy .\data\tracks\road\corkscrew\TRIB9.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRIB9.png
if exist .\data\tracks\road\corkscrew\TRUCK01.png copy .\data\tracks\road\corkscrew\TRUCK01.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK01.png
if exist .\data\tracks\road\corkscrew\TRUCK02.png copy .\data\tracks\road\corkscrew\TRUCK02.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK02.png
if exist .\data\tracks\road\corkscrew\TRUCK03.png copy .\data\tracks\road\corkscrew\TRUCK03.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK03.png
if exist .\data\tracks\road\corkscrew\TRUCK04.png copy .\data\tracks\road\corkscrew\TRUCK04.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK04.png
if exist .\data\tracks\road\corkscrew\TRUCK05.png copy .\data\tracks\road\corkscrew\TRUCK05.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK05.png
if exist .\data\tracks\road\corkscrew\TRUCK06.png copy .\data\tracks\road\corkscrew\TRUCK06.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK06.png
if exist .\data\tracks\road\corkscrew\TRUCK07.png copy .\data\tracks\road\corkscrew\TRUCK07.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK07.png
if exist .\data\tracks\road\corkscrew\TRUCK10.png copy .\data\tracks\road\corkscrew\TRUCK10.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK10.png
if exist .\data\tracks\road\corkscrew\TRUCK11.png copy .\data\tracks\road\corkscrew\TRUCK11.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK11.png
if exist .\data\tracks\road\corkscrew\TRUCK12.png copy .\data\tracks\road\corkscrew\TRUCK12.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK12.png
if exist .\data\tracks\road\corkscrew\TRUCK13.png copy .\data\tracks\road\corkscrew\TRUCK13.png .\%RUNTIMEDIR%\tracks\road\corkscrew\TRUCK13.png
if exist .\data\tracks\road\corkscrew\turn100.png copy .\data\tracks\road\corkscrew\turn100.png .\%RUNTIMEDIR%\tracks\road\corkscrew\turn100.png
if exist .\data\tracks\road\corkscrew\turn150.png copy .\data\tracks\road\corkscrew\turn150.png .\%RUNTIMEDIR%\tracks\road\corkscrew\turn150.png
if exist .\data\tracks\road\corkscrew\turn50.png copy .\data\tracks\road\corkscrew\turn50.png .\%RUNTIMEDIR%\tracks\road\corkscrew\turn50.png
if exist .\data\tracks\road\corkscrew\water.png copy .\data\tracks\road\corkscrew\water.png .\%RUNTIMEDIR%\tracks\road\corkscrew\water.png
if exist .\*.* call .\create_dir .\%RUNTIMEDIR%
if exist .\*.* call .\create_dir .\%RUNTIMEDIR%\.
if exist .\CHANGELOG.html copy .\CHANGELOG.html .\%RUNTIMEDIR%\.\CHANGELOG.html
if exist .\COPYING copy .\COPYING .\%RUNTIMEDIR%\.\COPYING
if exist .\Ticon.png copy .\Ticon.png .\%RUNTIMEDIR%\.\Ticon.png
if exist .\Ticon.ico copy .\Ticon.ico .\%RUNTIMEDIR%\.\Ticon.ico
if exist .\tux.png copy .\tux.png .\%RUNTIMEDIR%\.\tux.png
if exist .\logo-skinner.png copy .\logo-skinner.png .\%RUNTIMEDIR%\.\logo-skinner.png
| joaocc/torcs-git | setup_win32-data-from-CVS_generic.bat | bat | gpl-2.0 | 342,364 |
echo off
cd %~dp0
cd ..
echo on
Core A FE8 -output:%1 "-input:%~dp1Prologue.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch1.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch2.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch3.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch4.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch5.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch5x.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch6.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch7.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch8.txt"
Core A FE8 -output:%1 "-input:%~dp1LordsSplit.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch9Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch10Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch11Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch12Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch13Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch14Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch15Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch16Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch17Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch18Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch19Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch20Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Final1Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Final2Eir.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch9Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch10Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch11Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch12Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch13Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch14Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch15Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch16Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch17Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch18Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch19Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Ch20Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Final1Eph.txt"
Core A FE8 -output:%1 "-input:%~dp1Final2Eph.txt"
pause | diegoisawesome/AME | Dependencies/Hacking/Event assembler/Event assembler/bin/Release/Scripts/Assemble FE8 chapters.cmd | bat | gpl-3.0 | 1,893 |
@echo off
REM *****************************************************************************
REM
REM Pentaho Data Integration
REM
REM Copyright (C) 2012-2017 by Pentaho : http://www.pentaho.com
REM
REM *****************************************************************************
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with
REM the License. You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
REM *****************************************************************************
echo Launching Spoon with console output:
set SPOON_CONSOLE=1
@echo on
"%~dp0spoon.bat"
| ViswesvarSekar/pentaho-kettle | assembly/package-res/SpoonConsole.bat | bat | apache-2.0 | 1,024 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.