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
netsh advfirewall firewall add rule name="Open Port 80" dir=in action=allow protocol=TCP localport=80 netsh advfirewall firewall add rule name="Open Port 443" dir=in action=allow protocol=TCP localport=443 netsh advfirewall firewall add rule name="Open Port 3389" dir=in action=allow protocol=TCP localport=3389 netsh advfirewall firewall add rule name="Open Port 5985" dir=in action=allow protocol=TCP localport=5985
hugsy/modern.ie-vagrant
scripts/SetupFirewall.bat
bat
mit
422
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off :: ---------------------- :: KUDU Deployment Script :: Version: 0.1.13 :: ---------------------- :: Prerequisites :: ------------- :: Verify node.js installed where node 2>nul >nul IF %ERRORLEVEL% NEQ 0 ( echo Missing node.js executable, please install node.js, if already installed make sure it can be reached from current environment. goto error ) :: Setup :: ----- setlocal enabledelayedexpansion SET ARTIFACTS=%~dp0%..\artifacts IF NOT DEFINED DEPLOYMENT_SOURCE ( SET DEPLOYMENT_SOURCE=%~dp0%. ) IF NOT DEFINED DEPLOYMENT_TARGET ( SET DEPLOYMENT_TARGET=%ARTIFACTS%\wwwroot ) IF NOT DEFINED NEXT_MANIFEST_PATH ( SET NEXT_MANIFEST_PATH=%ARTIFACTS%\manifest IF NOT DEFINED PREVIOUS_MANIFEST_PATH ( SET PREVIOUS_MANIFEST_PATH=%ARTIFACTS%\manifest ) ) IF NOT DEFINED KUDU_SYNC_CMD ( :: Install kudu sync echo Installing Kudu Sync call npm install kudusync -g --silent IF !ERRORLEVEL! NEQ 0 goto error :: Locally just running "kuduSync" would also work SET KUDU_SYNC_CMD=%appdata%\npm\kuduSync.cmd ) goto Deployment :: Utility Functions :: ----------------- :SelectNodeVersion IF DEFINED KUDU_SELECT_NODE_VERSION_CMD ( :: The following are done only on Windows Azure Websites environment call %KUDU_SELECT_NODE_VERSION_CMD% "%DEPLOYMENT_SOURCE%" "%DEPLOYMENT_TARGET%" "%DEPLOYMENT_TEMP%" IF !ERRORLEVEL! NEQ 0 goto error IF EXIST "%DEPLOYMENT_TEMP%\__nodeVersion.tmp" ( SET /p NODE_EXE=<"%DEPLOYMENT_TEMP%\__nodeVersion.tmp" IF !ERRORLEVEL! NEQ 0 goto error ) IF EXIST "%DEPLOYMENT_TEMP%\__npmVersion.tmp" ( SET /p NPM_JS_PATH=<"%DEPLOYMENT_TEMP%\__npmVersion.tmp" IF !ERRORLEVEL! NEQ 0 goto error ) IF NOT DEFINED NODE_EXE ( SET NODE_EXE=node ) SET NPM_CMD="!NODE_EXE!" "!NPM_JS_PATH!" ) ELSE ( SET NPM_CMD=npm SET NODE_EXE=node ) goto :EOF :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Deployment :: ---------- :Deployment echo Handling node.js deployment. :: 1. KuduSync IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" ( call :ExecuteCmd "%KUDU_SYNC_CMD%" -v 50 -f "%DEPLOYMENT_SOURCE%" -t "%DEPLOYMENT_TARGET%" -n "%NEXT_MANIFEST_PATH%" -p "%PREVIOUS_MANIFEST_PATH%" -i ".git;.hg;.deployment;deploy.cmd" IF !ERRORLEVEL! NEQ 0 goto error ) :: if EXIST %HOME%\site\wwwroot\sites\default\.git ( :: pushd %HOME%\site\wwwroot\sites\default :: git pull :: popd ::) :: 2. Select node version call :SelectNodeVersion :: 3. Install npm packages IF EXIST "%DEPLOYMENT_TARGET%\package.json" ( pushd "%DEPLOYMENT_TARGET%" call :ExecuteCmd !NPM_CMD! install --production IF !ERRORLEVEL! NEQ 0 goto error popd ) :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Post deployment stub IF DEFINED POST_DEPLOYMENT_ACTION call "%POST_DEPLOYMENT_ACTION%" IF !ERRORLEVEL! NEQ 0 goto error goto end :: Execute command routine that will echo out when error :ExecuteCmd setlocal set _CMD_=%* call %_CMD_% if "%ERRORLEVEL%" NEQ "0" echo Failed exitCode=%ERRORLEVEL%, command=%_CMD_% exit /b %ERRORLEVEL% :error endlocal echo An error has occurred during web site deployment. call :exitSetErrorLevel call :exitFromFunction 2>nul :exitSetErrorLevel exit /b 1 :exitFromFunction () :end endlocal echo Finished successfully.
DecentCMS/DecentCMS
deploy.cmd
bat
mit
3,429
@echo off set BRIDLE_HOME=%~dp0\.. set BRIDLE_VERSION=@BRIDLE_VERSION@ set BRIDLE_JAR=%BRIDLE_HOME%\BridleNSIS-%BRIDLE_VERSION%.jar if "%NSIS_HOME%" == "" set NSIS_HOME=C:\Program Files (x86)\NSIS java -jar "%BRIDLE_JAR%" -n "%NSIS_HOME%" -e Cp1252 installer.nsi "/DBRIDLE_VERSION=%BRIDLE_VERSION%" "/DBRIDLE_HOME=%BRIDLE_HOME%"
henrikor2/bridlensis
src/inst/MakeInstaller.bat
bat
mit
341
:: :: Created by Eugeny Grishul :: "%ProgramFiles(x86)%\Bamelg\bamelg.exe" /reformat8 "%~dp0\"
baremetaldude/bamelg
toutf8.cmd
bat
mit
99
java -Dfile.encoding=UTF-8 -cp contrib/* org.nkjmlab.proceedings.ProceedingsComposer sample-proceedings-src/ sample-proceedings/ PAUSE > nul
yuu-nkjm/SimpleProceedingsComposer
compose-sample.bat
bat
mit
145
"$basedir/../streamline/bin/coffee-streamline.cmd" "$@" exit $? ode.exe" ( "%~dp0\node.exe" "%~dp0\..\streamline\bin\coffee-streamline" %* ) ELSE ( node "%~dp0\..\streamline\bin\coffee-streamline" %* )
doowb/grunttest
node_modules/azure/node_modules/.bin/coffee-streamline.cmd
bat
mit
213
@echo off if not exist ".\doc" mkdir ".\doc" del /Q ".\doc\*" if not exist ".\build" mkdir ".\build" del /Q ".\build\*-javadoc.jar" javadoc nl.jochemkuijpers.network -sourcepath src -d doc cd doc jar cf network-xxxxxxxx-javadoc.jar * cd .. move .\doc\network-xxxxxxxx-javadoc.jar .\build\network-xxxxxxxx-javadoc.jar
JochemKuijpers/Network
builddocs.bat
bat
mit
320
DEL "..\..\..\examples\0014-webcharts-visual-tests\testConfig.js" move testConfig.js ..\..\..\examples\0014-webcharts-visual-tests\testConfig.js
RhoInc/Webcharts
test/samples/scripts/file_manipulation.bat
bat
mit
144
@echo off setlocal EnableDelayedExpansion set __ProjectDir=%~dp0 set __ThisScriptShort=%0 set __ThisScriptFull="%~f0" :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Adding environment variables to workaround the "Argument Escape" problem with passing arguments to :: .cmd calls from dotnet-cli-build scripts. :: set __BuildArch=%__WorkaroundCliCoreHostBuildArch% set __DotNetHostBinDir=%__WorkaroundCliCoreHostBinDir% set __HostVer=%__WorkaroundCliCoreHostVer% set __FxrVer=%__WorkaroundCliCoreHostFxrVer% set __PolicyVer=%__WorkaroundCliCoreHostPolicyVer% set __BuildMajor=%__WorkaroundCliCoreHostBuildMajor% set __BuildMinor=%__WorkaroundCliCoreHostBuildMinor% set __VersionTag=%__WorkaroundCliCoreHostVersionTag% :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :Arg_Loop if "%1" == "" goto ArgsDone if /i "%1" == "/?" goto Usage if /i "%1" == "-?" goto Usage if /i "%1" == "/h" goto Usage if /i "%1" == "-h" goto Usage if /i "%1" == "/help" goto Usage if /i "%1" == "-help" goto Usage if /i "%1" == "x64" (set __BuildArch=%1&shift&goto Arg_Loop) if /i "%1" == "x86" (set __BuildArch=%1&shift&goto Arg_Loop) if /i "%1" == "arm" (set __BuildArch=%1&shift&goto Arg_Loop) if /i "%1" == "arm64" (set __BuildArch=%1&shift&goto Arg_Loop) if /i "%1" == "/hostbindir" (set __DotNetHostBinDir=%2&shift&shift&goto Arg_Loop) if /i "%1" == "/hostver" (set __HostVer=%2&shift&shift&goto Arg_Loop) if /i "%1" == "/fxrver" (set __FxrVer=%2&shift&shift&goto Arg_Loop) if /i "%1" == "/policyver" (set __PolicyVer=%2&shift&shift&goto Arg_Loop) if /i "%1" == "/buildmajor" (set __BuildMajor=%2&shift&shift&goto Arg_Loop) if /i "%1" == "/buildminor" (set __BuildMinor=%2&shift&shift&goto Arg_Loop) if /i "%1" == "/vertag" (set __VersionTag=%2&shift&shift&goto Arg_Loop) echo Invalid command line argument: %1 goto Usage :ArgsDone if [%__BuildArch%]==[] (goto Usage) if [%__DotNetHostBinDir%]==[] (goto Usage) :: Initialize the MSBuild Tools call "%__ProjectDir%\init-tools.cmd" :: Restore dependencies mainly to obtain runtime.json pushd "%__ProjectDir%\deps" "%__ProjectDir%\Tools\dotnetcli\dotnet.exe" restore --source "https://dotnet.myget.org/F/dotnet-core" --packages "%__ProjectDir%\packages" popd :: Clean up existing nupkgs if exist "%__ProjectDir%\bin" (rmdir /s /q "%__ProjectDir%\bin") :: Package the assets using Tools copy /y "%__DotNetHostBinDir%\corehost.exe" "%__DotNetHostBinDir%\dotnet.exe" "%__ProjectDir%\Tools\corerun" "%__ProjectDir%\Tools\MSBuild.exe" "%__ProjectDir%\projects\packages.builds" /p:Platform=%__BuildArch% /p:DotNetHostBinDir=%__DotNetHostBinDir% /p:TargetsWindows=true /p:HostVersion=%__HostVer% /p:HostResolverVersion=%__FxrVer% /p:HostPolicyVersion=%__PolicyVer% /p:BuildNumberMajor=%__BuildMajor% /p:BuildNumberMinor=%__BuildMinor% /p:PreReleaseLabel=%__VersionTag% /p:CLIBuildVersion=%__BuildMajor% /verbosity:minimal if not ERRORLEVEL 0 goto :Error exit /b 0 :Usage echo. echo Package the dotnet host artifacts echo. echo Usage: echo %__ThisScriptShort% [x64/x86/arm] /hostbindir path-to-binaries /hostver /fxrver /policyver /build /vertag echo. echo./? -? /h -h /help -help: view this message. :Error echo An error occurred during packing. exit /b 1
brthor/core-setup
pkg/pack.cmd
bat
mit
3,459
:: Fill in/modify as needed :: :: Example: :: msgcat_path=C:\Program Files\poedit\bin\msgcat.exe :: clone_path=C:\wesnoth-es :: :: Do not use quotation marks set msgcat_path=C:\Program Files\poedit\bin\msgcat.exe set clone_path= set mainline_domains=wesnoth wesnoth-ai wesnoth-anl wesnoth-aoi wesnoth-did wesnoth-dm wesnoth-dw wesnoth-editor wesnoth-ei wesnoth-help wesnoth-httt wesnoth-l wesnoth-lib wesnoth-low wesnoth-manpages wesnoth-manual wesnoth-multiplayer wesnoth-nr wesnoth-sof wesnoth-sotbe wesnoth-tb wesnoth-test wesnoth-thot wesnoth-trow wesnoth-tsg wesnoth-tutorial wesnoth-units wesnoth-utbs set umc_domains= for %%X in (%mainline_domains%) do ("%msgcat_path%" %clone_path%\mainline\%%X.po -o %clone_path%\mainline\%%X.po ) for %%X in (%umc_domains%) do ("%msgcat_path%" %clone_path%\umc\%%X.po -o %clone_path%\umc\%%X.po ) pause
Espreon/wesnoth-es
utils/msgcat-all.bat
bat
gpl-2.0
850
cmd_fs/ubifs/ubifs.o := /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ld -EL -r -o fs/ubifs/ubifs.o fs/ubifs/shrinker.o fs/ubifs/journal.o fs/ubifs/file.o fs/ubifs/dir.o fs/ubifs/super.o fs/ubifs/sb.o fs/ubifs/io.o fs/ubifs/tnc.o fs/ubifs/master.o fs/ubifs/scan.o fs/ubifs/replay.o fs/ubifs/log.o fs/ubifs/commit.o fs/ubifs/gc.o fs/ubifs/orphan.o fs/ubifs/budget.o fs/ubifs/find.o fs/ubifs/tnc_commit.o fs/ubifs/compress.o fs/ubifs/lpt.o fs/ubifs/lprops.o fs/ubifs/recovery.o fs/ubifs/ioctl.o fs/ubifs/lpt_commit.o fs/ubifs/tnc_misc.o fs/ubifs/xattr.o fs/ubifs/debug.o
domintech/PandaBoard-LinuxKernel
fs/ubifs/.ubifs.o.cmd
bat
gpl-2.0
648
cmd_drivers/net/bonding/built-in.o := rm -f drivers/net/bonding/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/net/bonding/built-in.o
avareldalton85/rpi2-linux-rt
drivers/net/bonding/.built-in.o.cmd
bat
gpl-2.0
205
@echo off color 07 mode con: cols=80 lines=25 title futility: the game if exist futility.jar ( goto CHECK_FOR_JAVA ) else ( echo hey! where's futility.jar? ensure that the directory is unzipped. echo. echo if that doesn't fix things, try downloading the official build at echo github.com/llevieux/futility/releases echo. pause exit /B ) :CHECK_FOR_JAVA rem check for java. modified from: https://coderwall.com/p/ww4d9a/windows-search-for-java-installation-in-registry-using-batch-script setlocal ENABLEEXTENSIONS if %PROCESSOR_ARCHITECTURE%==AMD64 goto CHECK_JAVA_64 if %PROCESSOR_ARCHITECTURE%==x86 goto CHECK_JAVA_32 :CHECK_JAVA_64 set KEY_NAME="HKEY_LOCAL_MACHINE\Software\Wow6432Node\JavaSoft\Java Runtime Environment" set VALUE_NAME=CurrentVersion set VALUE_FAMILYNAME=Java6FamilyVersion for /F "usebackq skip=2 tokens=1-3" %%A in (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( set ValueName=%%A set ValueType=%%B set ValueValue=%%C ) if "%ValueValue%" == "1.6" ( for /F "usebackq skip=2 tokens=1-3" %%A in (`REG QUERY %KEY_NAME% /v %VALUE_FAMILYNAME% 2^>nul`) DO ( set ValueFamilyName=%%A set ValueFamilyType=%%B set ValueFamilyValue=%%C ) ) if "%ValueValue%" == "1.6" ( if "%ValueFamilyValue%" LSS "1.6.0_16" goto JAVA_NOT_INSTALLED ) SET KEY_NAME="%KEY_NAME:~1,-1%\%ValueValue%" SET VALUE_NAME=JavaHome if defined ValueName ( for /F "usebackq skip=2 tokens=1,2*" %%A in (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( set ValueName2=%%A set ValueType2=%%B set JRE_PATH2=%%C if defined ValueName2 ( set ValueName = %ValueName2% set ValueType = %ValueType2% set ValueValue = %JRE_PATH2% ) ) ) if NOT "%JRE_PATH2%" == "" ( goto START_FUTILITY ) else ( goto JAVA_NOT_INSTALLED ) :CHECK_JAVA_32 set KEY_NAME="HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Runtime Environment" set VALUE_NAME=CurrentVersion set VALUE_FAMILYNAME=Java6FamilyVersion for /F "usebackq skip=2 tokens=1-3" %%A in (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( set ValueName=%%A set ValueType=%%B set ValueValue=%%C ) if "%ValueValue%" == "1.6" ( for /F "usebackq skip=2 tokens=1-3" %%A in (`REG QUERY %KEY_NAME% /v %VALUE_FAMILYNAME% 2^>nul`) DO ( set ValueFamilyName=%%A set ValueFamilyType=%%B set ValueFamilyValue=%%C ) ) if "%ValueValue%" == "1.6" ( if "%ValueFamilyValue%" LSS "1.6.0_16" goto JAVA_NOT_INSTALLED ) SET KEY_NAME="%KEY_NAME:~1,-1%\%ValueValue%" SET VALUE_NAME=JavaHome if defined ValueName ( for /F "usebackq skip=2 tokens=1,2*" %%A in (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( set ValueName2=%%A set ValueType2=%%B set JRE_PATH2=%%C if defined ValueName2 ( set ValueName = %ValueName2% set ValueType = %ValueType2% set ValueValue = %JRE_PATH2% ) ) ) if "%JRE_PATH2%" == "" ( goto JAVA_NOT_INSTALLED ) else ( goto START_FUTILITY ) :JAVA_NOT_INSTALLED echo hey! you don't have a current version of java! echo. echo you'll need it for this. echo. echo. start "" http://www.java.com/en/download/ pause exit /B :START_FUTILITY rem run the jar file (if you open it directly from file explorer, it doesn't run in the commandline) cls java -jar futility.jar
llevieux/futility
src/runme.bat
bat
gpl-2.0
3,551
cmd_arch/x86/lib/getuser_32.o := gcc -Wp,-MD,arch/x86/lib/.getuser_32.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -D__ASSEMBLY__ -m32 -Iinclude/asm-x86/mach-default -c -o arch/x86/lib/getuser_32.o arch/x86/lib/getuser_32.S deps_arch/x86/lib/getuser_32.o := \ arch/x86/lib/getuser_32.S \ 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/asm/dwarf2.h \ include/asm/dwarf2_32.h \ $(wildcard include/config/unwind/info.h) \ $(wildcard include/config/as/cfi/signal/frame.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/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/asm/page.h \ $(wildcard include/config/paravirt.h) \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/highmem64g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/use/3dnow.h) \ $(wildcard include/config/x86/3dnow.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/asm-offsets.h \ arch/x86/lib/getuser_32.o: $(deps_arch/x86/lib/getuser_32.o) $(deps_arch/x86/lib/getuser_32.o):
namgk/kernel-tut
arch/x86/lib/.getuser_32.o.cmd
bat
gpl-2.0
1,909
cmd_arch/arm/kernel/module.o := arm-eabi-gcc -Wp,-MD,arch/arm/kernel/.module.o.d -nostdinc -isystem /usr/bin/../lib/gcc/arm-eabi/4.5.0/include -Iinclude -I/home/jacob/source/wildfire-kernel/arch/arm/include -include include/linux/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 -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -fno-dwarf2-cfi-asm -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(module)" -D"KBUILD_MODNAME=KBUILD_STR(module)" -c -o arch/arm/kernel/module.o arch/arm/kernel/module.c deps_arch/arm/kernel/module.o := \ arch/arm/kernel/module.c \ $(wildcard include/config/xip/kernel.h) \ $(wildcard include/config/mmu.h) \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.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 \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.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/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm7225.h) \ $(wildcard include/config/arch/msm7200a.h) \ $(wildcard include/config/arch/msm7201a.h) \ $(wildcard include/config/arch/msm7x00a.h) \ $(wildcard include/config/mach/desirec.h) \ $(wildcard include/config/arch/msm7227.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ include/asm/mach-types.h \ $(wildcard include/config/arch/ebsa110.h) \ $(wildcard include/config/arch/rpc.h) \ $(wildcard include/config/arch/nexuspci.h) \ $(wildcard include/config/arch/ebsa285.h) \ $(wildcard include/config/arch/netwinder.h) \ $(wildcard include/config/arch/cats.h) \ $(wildcard include/config/arch/tbox.h) \ $(wildcard include/config/arch/co285.h) \ $(wildcard include/config/arch/clps7110.h) \ $(wildcard include/config/arch/arc.h) \ $(wildcard include/config/arch/a5k.h) \ $(wildcard include/config/arch/etoile.h) \ $(wildcard include/config/arch/lacie/nas.h) \ $(wildcard include/config/arch/clps7500.h) \ $(wildcard include/config/arch/shark.h) \ $(wildcard include/config/sa1100/brutus.h) \ $(wildcard include/config/arch/personal/server.h) \ $(wildcard include/config/sa1100/itsy.h) \ $(wildcard include/config/arch/l7200.h) \ $(wildcard include/config/sa1100/pleb.h) \ $(wildcard include/config/arch/integrator.h) \ $(wildcard include/config/sa1100/h3600.h) \ $(wildcard include/config/arch/ixp1200.h) \ $(wildcard include/config/arch/p720t.h) \ $(wildcard include/config/sa1100/assabet.h) \ $(wildcard include/config/sa1100/victor.h) \ $(wildcard include/config/sa1100/lart.h) \ $(wildcard include/config/sa1100/ranger.h) \ $(wildcard include/config/sa1100/graphicsclient.h) \ $(wildcard include/config/sa1100/xp860.h) \ $(wildcard include/config/sa1100/cerf.h) \ $(wildcard include/config/sa1100/nanoengine.h) \ $(wildcard include/config/sa1100/fpic.h) \ $(wildcard include/config/sa1100/extenex1.h) \ $(wildcard include/config/sa1100/sherman.h) \ $(wildcard include/config/sa1100/accelent.h) \ $(wildcard include/config/arch/l7200/accelent.h) \ $(wildcard include/config/sa1100/netport.h) \ $(wildcard include/config/sa1100/pangolin.h) \ $(wildcard include/config/sa1100/yopy.h) \ $(wildcard include/config/sa1100/coolidge.h) \ $(wildcard include/config/sa1100/huw/webpanel.h) \ $(wildcard include/config/arch/spotme.h) \ $(wildcard include/config/arch/freebird.h) \ $(wildcard include/config/arch/ti925.h) \ $(wildcard include/config/arch/riscstation.h) \ $(wildcard include/config/sa1100/cavy.h) \ $(wildcard include/config/sa1100/jornada720.h) \ $(wildcard include/config/sa1100/omnimeter.h) \ $(wildcard include/config/arch/edb7211.h) \ $(wildcard include/config/sa1100/citygo.h) \ $(wildcard include/config/sa1100/pfs168.h) \ $(wildcard include/config/sa1100/spot.h) \ $(wildcard include/config/sa1100/flexanet.h) \ $(wildcard include/config/arch/webpal.h) \ $(wildcard include/config/sa1100/linpda.h) \ $(wildcard include/config/arch/anakin.h) \ $(wildcard include/config/sa1100/mvi.h) \ $(wildcard include/config/sa1100/jupiter.h) \ $(wildcard include/config/arch/psionw.h) \ $(wildcard include/config/sa1100/aln.h) \ $(wildcard include/config/arch/camelot.h) \ $(wildcard include/config/sa1100/gds2200.h) \ $(wildcard include/config/sa1100/psion/series7.h) \ $(wildcard include/config/sa1100/xfile.h) \ $(wildcard include/config/arch/accelent/ep9312.h) \ $(wildcard include/config/arch/ic200.h) \ $(wildcard include/config/sa1100/creditlart.h) \ $(wildcard include/config/sa1100/htm.h) \ $(wildcard include/config/arch/iq80310.h) \ $(wildcard include/config/sa1100/freebot.h) \ $(wildcard include/config/arch/entel.h) \ $(wildcard include/config/arch/enp3510.h) \ $(wildcard include/config/sa1100/trizeps.h) \ $(wildcard include/config/sa1100/nesa.h) \ $(wildcard include/config/arch/venus.h) \ $(wildcard include/config/arch/tardis.h) \ $(wildcard include/config/arch/mercury.h) \ $(wildcard include/config/sa1100/empeg.h) \ $(wildcard include/config/arch/i80200fcc.h) \ $(wildcard include/config/sa1100/itt/cpb.h) \ $(wildcard include/config/sa1100/svc.h) \ $(wildcard include/config/sa1100/alpha2.h) \ $(wildcard include/config/sa1100/alpha1.h) \ $(wildcard include/config/arch/netarm.h) \ $(wildcard include/config/sa1100/simpad.h) \ $(wildcard include/config/arch/pda1.h) \ $(wildcard include/config/arch/lubbock.h) \ $(wildcard include/config/arch/aniko.h) \ $(wildcard include/config/arch/clep7212.h) \ $(wildcard include/config/arch/cs89712.h) \ $(wildcard include/config/sa1100/weararm.h) \ $(wildcard include/config/sa1100/possio/px.h) \ $(wildcard include/config/sa1100/sidearm.h) \ $(wildcard include/config/sa1100/stork.h) \ $(wildcard include/config/sa1100/shannon.h) \ $(wildcard include/config/arch/ace.h) \ $(wildcard include/config/sa1100/ballyarm.h) \ $(wildcard include/config/sa1100/simputer.h) \ $(wildcard include/config/sa1100/nexterm.h) \ $(wildcard include/config/sa1100/sa1100/elf.h) \ $(wildcard include/config/sa1100/gator.h) \ $(wildcard include/config/arch/granite.h) \ $(wildcard include/config/sa1100/consus.h) \ $(wildcard include/config/arch/aaed2000.h) \ $(wildcard include/config/arch/cdb89712.h) \ $(wildcard include/config/sa1100/graphicsmaster.h) \ $(wildcard include/config/sa1100/adsbitsy.h) \ $(wildcard include/config/arch/pxa/idp.h) \ $(wildcard include/config/arch/plce.h) \ $(wildcard include/config/sa1100/pt/system3.h) \ $(wildcard include/config/arch/medalb.h) \ $(wildcard include/config/arch/eagle.h) \ $(wildcard include/config/arch/dsc21.h) \ $(wildcard include/config/arch/dsc24.h) \ $(wildcard include/config/arch/ti5472.h) \ $(wildcard include/config/arch/autcpu12.h) \ $(wildcard include/config/arch/uengine.h) \ $(wildcard include/config/sa1100/bluestem.h) \ $(wildcard include/config/arch/xingu8.h) \ $(wildcard include/config/arch/bushstb.h) \ $(wildcard include/config/sa1100/epsilon1.h) \ $(wildcard include/config/sa1100/balloon.h) \ $(wildcard include/config/arch/puppy.h) \ $(wildcard include/config/sa1100/elroy.h) \ $(wildcard include/config/arch/gms720.h) \ $(wildcard include/config/arch/s24x.h) \ $(wildcard include/config/arch/jtel/clep7312.h) \ $(wildcard include/config/arch/cx821xx.h) \ $(wildcard include/config/arch/edb7312.h) \ $(wildcard include/config/sa1100/bsa1110.h) \ $(wildcard include/config/arch/powerpin.h) \ $(wildcard include/config/arch/openarm.h) \ $(wildcard include/config/sa1100/whitechapel.h) \ $(wildcard include/config/sa1100/h3100.h) \ $(wildcard include/config/sa1100/h3800.h) \ $(wildcard include/config/arch/blue/v1.h) \ $(wildcard include/config/arch/pxa/cerf.h) \ $(wildcard include/config/arch/arm7tevb.h) \ $(wildcard include/config/sa1100/d7400.h) \ $(wildcard include/config/arch/piranha.h) \ $(wildcard include/config/sa1100/sbcamelot.h) \ $(wildcard include/config/sa1100/kings.h) \ $(wildcard include/config/arch/smdk2400.h) \ $(wildcard include/config/sa1100/collie.h) \ $(wildcard include/config/arch/idr.h) \ $(wildcard include/config/sa1100/badge4.h) \ $(wildcard include/config/arch/webnet.h) \ $(wildcard include/config/sa1100/d7300.h) \ $(wildcard include/config/sa1100/cep.h) \ $(wildcard include/config/arch/fortunet.h) \ $(wildcard include/config/arch/vc547x.h) \ $(wildcard include/config/sa1100/filewalker.h) \ $(wildcard include/config/sa1100/netgateway.h) \ $(wildcard include/config/sa1100/symbol2800.h) \ $(wildcard include/config/sa1100/suns.h) \ $(wildcard include/config/sa1100/frodo.h) \ $(wildcard include/config/sa1100/mach/tyte/ms301.h) \ $(wildcard include/config/arch/mx1ads.h) \ $(wildcard include/config/arch/h7201.h) \ $(wildcard include/config/arch/h7202.h) \ $(wildcard include/config/arch/amico.h) \ $(wildcard include/config/sa1100/iam.h) \ $(wildcard include/config/sa1100/tt530.h) \ $(wildcard include/config/arch/sam2400.h) \ $(wildcard include/config/sa1100/jornada56x.h) \ $(wildcard include/config/sa1100/active.h) \ $(wildcard include/config/arch/iq80321.h) \ $(wildcard include/config/sa1100/wid.h) \ $(wildcard include/config/arch/sabinal.h) \ $(wildcard include/config/arch/ixp425/matacumbe.h) \ $(wildcard include/config/sa1100/miniprint.h) \ $(wildcard include/config/arch/adm510x.h) \ $(wildcard include/config/sa1100/svs200.h) \ $(wildcard include/config/arch/atg/tcu.h) \ $(wildcard include/config/sa1100/jornada820.h) \ $(wildcard include/config/arch/s3c44b0.h) \ $(wildcard include/config/arch/margis2.h) \ $(wildcard include/config/arch/ks8695.h) \ $(wildcard include/config/arch/brh.h) \ $(wildcard include/config/arch/s3c2410.h) \ $(wildcard include/config/arch/possio/px30.h) \ $(wildcard include/config/arch/s3c2800.h) \ $(wildcard include/config/sa1100/fleetwood.h) \ $(wildcard include/config/arch/omaha.h) \ $(wildcard include/config/arch/ta7.h) \ $(wildcard include/config/sa1100/nova.h) \ $(wildcard include/config/arch/hmk.h) \ $(wildcard include/config/arch/karo.h) \ $(wildcard include/config/sa1100/fester.h) \ $(wildcard include/config/arch/gpi.h) \ $(wildcard include/config/arch/smdk2410.h) \ $(wildcard include/config/arch/i519.h) \ $(wildcard include/config/sa1100/nexio.h) \ $(wildcard include/config/sa1100/bitbox.h) \ $(wildcard include/config/sa1100/g200.h) \ $(wildcard include/config/sa1100/gill.h) \ $(wildcard include/config/arch/pxa/mercury.h) \ $(wildcard include/config/arch/ceiva.h) \ $(wildcard include/config/sa1100/fret.h) \ $(wildcard include/config/sa1100/emailphone.h) \ $(wildcard include/config/arch/h3900.h) \ $(wildcard include/config/arch/pxa1.h) \ $(wildcard include/config/sa1100/koan369.h) \ $(wildcard include/config/arch/cogent.h) \ $(wildcard include/config/arch/esl/simputer.h) \ $(wildcard include/config/arch/esl/simputer/clr.h) \ $(wildcard include/config/arch/esl/simputer/bw.h) \ $(wildcard include/config/arch/hhp/cradle.h) \ $(wildcard include/config/arch/he500.h) \ $(wildcard include/config/sa1100/inhandelf2.h) \ $(wildcard include/config/sa1100/inhandftip.h) \ $(wildcard include/config/sa1100/dnp1110.h) \ $(wildcard include/config/sa1100/pnp1110.h) \ $(wildcard include/config/arch/csb226.h) \ $(wildcard include/config/sa1100/arnold.h) \ $(wildcard include/config/mach/voiceblue.h) \ $(wildcard include/config/arch/jz8028.h) \ $(wildcard include/config/arch/h5400.h) \ $(wildcard include/config/sa1100/forte.h) \ $(wildcard include/config/sa1100/acam.h) \ $(wildcard include/config/sa1100/abox.h) \ $(wildcard include/config/arch/atmel.h) \ $(wildcard include/config/arch/sitsang.h) \ $(wildcard include/config/sa1100/cpu1110lcdnet.h) \ $(wildcard include/config/arch/mpl/vcma9.h) \ $(wildcard include/config/arch/opus/a1.h) \ $(wildcard include/config/arch/daytona.h) \ $(wildcard include/config/sa1100/killbear.h) \ $(wildcard include/config/arch/yoho.h) \ $(wildcard include/config/arch/jasper.h) \ $(wildcard include/config/arch/dsc25.h) \ $(wildcard include/config/mach/omap/innovator.h) \ $(wildcard include/config/arch/ramses.h) \ $(wildcard include/config/arch/s28x.h) \ $(wildcard include/config/arch/mport3.h) \ $(wildcard include/config/arch/pxa/eagle250.h) \ $(wildcard include/config/arch/pdb.h) \ $(wildcard include/config/sa1100/blue/2g.h) \ $(wildcard include/config/sa1100/bluearch.h) \ $(wildcard include/config/arch/ixdp2400.h) \ $(wildcard include/config/arch/ixdp2800.h) \ $(wildcard include/config/sa1100/explorer.h) \ $(wildcard include/config/arch/ixdp425.h) \ $(wildcard include/config/arch/chimp.h) \ $(wildcard include/config/arch/stork/nest.h) \ $(wildcard include/config/arch/stork/egg.h) \ $(wildcard include/config/sa1100/wismo.h) \ $(wildcard include/config/arch/ezlinx.h) \ $(wildcard include/config/arch/at91rm9200.h) \ $(wildcard include/config/arch/adtech/orion.h) \ $(wildcard include/config/arch/neptune.h) \ $(wildcard include/config/sa1100/hackkit.h) \ $(wildcard include/config/arch/pxa/wins30.h) \ $(wildcard include/config/sa1100/lavinna.h) \ $(wildcard include/config/arch/pxa/uengine.h) \ $(wildcard include/config/arch/innokom.h) \ $(wildcard include/config/arch/bms.h) \ $(wildcard include/config/arch/ixcdp1100.h) \ $(wildcard include/config/arch/prpmc1100.h) \ $(wildcard include/config/arch/at91rm9200dk.h) \ $(wildcard include/config/arch/armstick.h) \ $(wildcard include/config/arch/armonie.h) \ $(wildcard include/config/arch/mport1.h) \ $(wildcard include/config/arch/s3c5410.h) \ $(wildcard include/config/arch/zcp320a.h) \ $(wildcard include/config/arch/i/box.h) \ $(wildcard include/config/arch/stlc1502.h) \ $(wildcard include/config/arch/siren.h) \ $(wildcard include/config/arch/greenlake.h) \ $(wildcard include/config/arch/argus.h) \ $(wildcard include/config/sa1100/combadge.h) \ $(wildcard include/config/arch/rokepxa.h) \ $(wildcard include/config/arch/cintegrator.h) \ $(wildcard include/config/arch/guidea07.h) \ $(wildcard include/config/arch/tat257.h) \ $(wildcard include/config/arch/igp2425.h) \ $(wildcard include/config/arch/bluegramma.h) \ $(wildcard include/config/arch/ipod.h) \ $(wildcard include/config/arch/adsbitsyx.h) \ $(wildcard include/config/arch/trizeps2.h) \ $(wildcard include/config/arch/viper.h) \ $(wildcard include/config/sa1100/adsbitsyplus.h) \ $(wildcard include/config/sa1100/adsagc.h) \ $(wildcard include/config/arch/stp7312.h) \ $(wildcard include/config/mach/nx/phnx.h) \ $(wildcard include/config/arch/wep/ep250.h) \ $(wildcard include/config/arch/inhandelf3.h) \ $(wildcard include/config/arch/adi/coyote.h) \ $(wildcard include/config/arch/iyonix.h) \ $(wildcard include/config/arch/damicam/sa1110.h) \ $(wildcard include/config/arch/meg03.h) \ $(wildcard include/config/arch/pxa/whitechapel.h) \ $(wildcard include/config/arch/nwsc.h) \ $(wildcard include/config/arch/nwlarm.h) \ $(wildcard include/config/arch/ixp425/mguard.h) \ $(wildcard include/config/arch/pxa/netdcu4.h) \ $(wildcard include/config/arch/ixdp2401.h) \ $(wildcard include/config/arch/ixdp2801.h) \ $(wildcard include/config/arch/zodiac.h) \ $(wildcard include/config/arch/armmodul.h) \ $(wildcard include/config/sa1100/ketop.h) \ $(wildcard include/config/arch/av7200.h) \ $(wildcard include/config/arch/arch/ti925.h) \ $(wildcard include/config/arch/acq200.h) \ $(wildcard include/config/sa1100/pt/dafit.h) \ $(wildcard include/config/arch/ihba.h) \ $(wildcard include/config/arch/quinque.h) \ $(wildcard include/config/arch/nimbraone.h) \ $(wildcard include/config/arch/nimbra29x.h) \ $(wildcard include/config/arch/nimbra210.h) \ $(wildcard include/config/arch/hhp/d95xx.h) \ $(wildcard include/config/arch/labarm.h) \ $(wildcard include/config/arch/m825xx.h) \ $(wildcard include/config/sa1100/m7100.h) \ $(wildcard include/config/arch/nipc2.h) \ $(wildcard include/config/arch/fu7202.h) \ $(wildcard include/config/arch/adsagx.h) \ $(wildcard include/config/arch/pxa/pooh.h) \ $(wildcard include/config/arch/bandon.h) \ $(wildcard include/config/arch/pcm7210.h) \ $(wildcard include/config/arch/nms9200.h) \ $(wildcard include/config/arch/logodl.h) \ $(wildcard include/config/sa1100/m7140.h) \ $(wildcard include/config/arch/korebot.h) \ $(wildcard include/config/arch/iq31244.h) \ $(wildcard include/config/sa1100/koan393.h) \ $(wildcard include/config/arch/inhandftip3.h) \ $(wildcard include/config/arch/gonzo.h) \ $(wildcard include/config/arch/bast.h) \ $(wildcard include/config/arch/scanpass.h) \ $(wildcard include/config/arch/ep7312/pooh.h) \ $(wildcard include/config/arch/ta7s.h) \ $(wildcard include/config/arch/ta7v.h) \ $(wildcard include/config/sa1100/icarus.h) \ $(wildcard include/config/arch/h1900.h) \ $(wildcard include/config/sa1100/gemini.h) \ $(wildcard include/config/arch/axim.h) \ $(wildcard include/config/arch/audiotron.h) \ $(wildcard include/config/arch/h2200.h) \ $(wildcard include/config/arch/loox600.h) \ $(wildcard include/config/arch/niop.h) \ $(wildcard include/config/arch/dm310.h) \ $(wildcard include/config/arch/seedpxa/c2.h) \ $(wildcard include/config/arch/ixp4xx/mguard/pci.h) \ $(wildcard include/config/arch/h1940.h) \ $(wildcard include/config/arch/scorpio.h) \ $(wildcard include/config/arch/viva.h) \ $(wildcard include/config/arch/pxa/xcard.h) \ $(wildcard include/config/arch/csb335.h) \ $(wildcard include/config/arch/ixrd425.h) \ $(wildcard include/config/arch/iq80315.h) \ $(wildcard include/config/arch/nmp7312.h) \ $(wildcard include/config/arch/cx861xx.h) \ $(wildcard include/config/arch/enp2611.h) \ $(wildcard include/config/sa1100/xda.h) \ $(wildcard include/config/arch/csir/ims.h) \ $(wildcard include/config/arch/ixp421/dnaeeth.h) \ $(wildcard include/config/arch/pocketserv9200.h) \ $(wildcard include/config/arch/toto.h) \ $(wildcard include/config/arch/s3c2440.h) \ $(wildcard include/config/arch/ks8695p.h) \ $(wildcard include/config/arch/se4000.h) \ $(wildcard include/config/arch/quadriceps.h) \ $(wildcard include/config/arch/bronco.h) \ $(wildcard include/config/arch/esl/wireless/tab.h) \ $(wildcard include/config/arch/esl/sofcomp.h) \ $(wildcard include/config/arch/s5c7375.h) \ $(wildcard include/config/arch/spearhead.h) \ $(wildcard include/config/arch/pantera.h) \ $(wildcard include/config/arch/prayoglite.h) \ $(wildcard include/config/arch/gumstix.h) \ $(wildcard include/config/arch/rcube.h) \ $(wildcard include/config/arch/rea/olv.h) \ $(wildcard include/config/arch/pxa/iphone.h) \ $(wildcard include/config/arch/s3c3410.h) \ $(wildcard include/config/arch/espd/4510b.h) \ $(wildcard include/config/arch/mp1x.h) \ $(wildcard include/config/arch/at91rm9200tb.h) \ $(wildcard include/config/arch/adsvgx.h) \ $(wildcard include/config/mach/omap/h2.h) \ $(wildcard include/config/arch/pelee.h) \ $(wildcard include/config/mach/e740.h) \ $(wildcard include/config/arch/iq80331.h) \ $(wildcard include/config/arch/versatile/pb.h) \ $(wildcard include/config/mach/kev7a400.h) \ $(wildcard include/config/mach/lpd7a400.h) \ $(wildcard include/config/mach/lpd7a404.h) \ $(wildcard include/config/arch/fujitsu/camelot.h) \ $(wildcard include/config/arch/janus2m.h) \ $(wildcard include/config/mach/embtf.h) \ $(wildcard include/config/mach/hpm.h) \ $(wildcard include/config/mach/smdk2410tk.h) \ $(wildcard include/config/mach/smdk2410aj.h) \ $(wildcard include/config/mach/streetracer.h) \ $(wildcard include/config/mach/eframe.h) \ $(wildcard include/config/mach/csb337.h) \ $(wildcard include/config/mach/pxa/lark.h) \ $(wildcard include/config/mach/pnp2110.h) \ $(wildcard include/config/mach/tcc72x.h) \ $(wildcard include/config/mach/altair.h) \ $(wildcard include/config/mach/kc3.h) \ $(wildcard include/config/mach/sinteftd.h) \ $(wildcard include/config/mach/mainstone.h) \ $(wildcard include/config/mach/aday4x.h) \ $(wildcard include/config/mach/lite300.h) \ $(wildcard include/config/mach/s5c7376.h) \ $(wildcard include/config/mach/mt02.h) \ $(wildcard include/config/mach/mport3s.h) \ $(wildcard include/config/mach/ra/alpha.h) \ $(wildcard include/config/mach/xcep.h) \ $(wildcard include/config/mach/arcom/vulcan.h) \ $(wildcard include/config/mach/stargate.h) \ $(wildcard include/config/mach/armadilloj.h) \ $(wildcard include/config/mach/elroy/jack.h) \ $(wildcard include/config/mach/backend.h) \ $(wildcard include/config/mach/s5linbox.h) \ $(wildcard include/config/mach/nomadik.h) \ $(wildcard include/config/mach/ia/cpu/9200.h) \ $(wildcard include/config/mach/at91/bja1.h) \ $(wildcard include/config/mach/corgi.h) \ $(wildcard include/config/mach/poodle.h) \ $(wildcard include/config/mach/ten.h) \ $(wildcard include/config/mach/roverp5p.h) \ $(wildcard include/config/mach/sc2700.h) \ $(wildcard include/config/mach/ex/eagle.h) \ $(wildcard include/config/mach/nx/pxa12.h) \ $(wildcard include/config/mach/nx/pxa5.h) \ $(wildcard include/config/mach/blackboard2.h) \ $(wildcard include/config/mach/i819.h) \ $(wildcard include/config/mach/ixmb995e.h) \ $(wildcard include/config/mach/skyrider.h) \ $(wildcard include/config/mach/skyhawk.h) \ $(wildcard include/config/mach/enterprise.h) \ $(wildcard include/config/mach/dep2410.h) \ $(wildcard include/config/mach/armcore.h) \ $(wildcard include/config/mach/hobbit.h) \ $(wildcard include/config/mach/h7210.h) \ $(wildcard include/config/mach/pxa/netdcu5.h) \ $(wildcard include/config/mach/acc.h) \ $(wildcard include/config/mach/esl/sarva.h) \ $(wildcard include/config/mach/xm250.h) \ $(wildcard include/config/mach/t6tc1xb.h) \ $(wildcard include/config/mach/ess710.h) \ $(wildcard include/config/mach/mx31ads.h) \ $(wildcard include/config/mach/himalaya.h) \ $(wildcard include/config/mach/bolfenk.h) \ $(wildcard include/config/mach/at91rm9200kr.h) \ $(wildcard include/config/mach/edb9312.h) \ $(wildcard include/config/mach/omap/generic.h) \ $(wildcard include/config/mach/aximx3.h) \ $(wildcard include/config/mach/eb67xdip.h) \ $(wildcard include/config/mach/webtxs.h) \ $(wildcard include/config/mach/hawk.h) \ $(wildcard include/config/mach/ccat91sbc001.h) \ $(wildcard include/config/mach/expresso.h) \ $(wildcard include/config/mach/h4000.h) \ $(wildcard include/config/mach/dino.h) \ $(wildcard include/config/mach/ml675k.h) \ $(wildcard include/config/mach/edb9301.h) \ $(wildcard include/config/mach/edb9315.h) \ $(wildcard include/config/mach/reciva/tt.h) \ $(wildcard include/config/mach/cstcb01.h) \ $(wildcard include/config/mach/cstcb1.h) \ $(wildcard include/config/mach/shadwell.h) \ $(wildcard include/config/mach/goepel263.h) \ $(wildcard include/config/mach/acq100.h) \ $(wildcard include/config/mach/mx1fs2.h) \ $(wildcard include/config/mach/hiptop/g1.h) \ $(wildcard include/config/mach/sparky.h) \ $(wildcard include/config/mach/ns9750.h) \ $(wildcard include/config/mach/phoenix.h) \ $(wildcard include/config/mach/vr1000.h) \ $(wildcard include/config/mach/deisterpxa.h) \ $(wildcard include/config/mach/bcm1160.h) \ $(wildcard include/config/mach/pcm022.h) \ $(wildcard include/config/mach/adsgcx.h) \ $(wildcard include/config/mach/dreadnaught.h) \ $(wildcard include/config/mach/dm320.h) \ $(wildcard include/config/mach/markov.h) \ $(wildcard include/config/mach/cos7a400.h) \ $(wildcard include/config/mach/milano.h) \ $(wildcard include/config/mach/ue9328.h) \ $(wildcard include/config/mach/uex255.h) \ $(wildcard include/config/mach/ue2410.h) \ $(wildcard include/config/mach/a620.h) \ $(wildcard include/config/mach/ocelot.h) \ $(wildcard include/config/mach/cheetah.h) \ $(wildcard include/config/mach/omap/perseus2.h) \ $(wildcard include/config/mach/zvue.h) \ $(wildcard include/config/mach/roverp1.h) \ $(wildcard include/config/mach/asidial2.h) \ $(wildcard include/config/mach/s3c24a0.h) \ $(wildcard include/config/mach/e800.h) \ $(wildcard include/config/mach/e750.h) \ $(wildcard include/config/mach/s3c5500.h) \ $(wildcard include/config/mach/smdk5500.h) \ $(wildcard include/config/mach/signalsync.h) \ $(wildcard include/config/mach/nbc.h) \ $(wildcard include/config/mach/kodiak.h) \ $(wildcard include/config/mach/netbookpro.h) \ $(wildcard include/config/mach/hw90200.h) \ $(wildcard include/config/mach/condor.h) \ $(wildcard include/config/mach/cup.h) \ $(wildcard include/config/mach/kite.h) \ $(wildcard include/config/mach/scb9328.h) \ $(wildcard include/config/mach/omap/h3.h) \ $(wildcard include/config/mach/omap/h4.h) \ $(wildcard include/config/mach/n10.h) \ $(wildcard include/config/mach/montajade.h) \ $(wildcard include/config/mach/sg560.h) \ $(wildcard include/config/mach/dp1000.h) \ $(wildcard include/config/mach/omap/osk.h) \ $(wildcard include/config/mach/rg100v3.h) \ $(wildcard include/config/mach/mx2ads.h) \ $(wildcard include/config/mach/pxa/kilo.h) \ $(wildcard include/config/mach/ixp4xx/eagle.h) \ $(wildcard include/config/mach/tosa.h) \ $(wildcard include/config/mach/mb2520f.h) \ $(wildcard include/config/mach/emc1000.h) \ $(wildcard include/config/mach/tidsc25.h) \ $(wildcard include/config/mach/akcpmxl.h) \ $(wildcard include/config/mach/av3xx.h) \ $(wildcard include/config/mach/avila.h) \ $(wildcard include/config/mach/pxa/mpm10.h) \ $(wildcard include/config/mach/pxa/kyanite.h) \ $(wildcard include/config/mach/sgold.h) \ $(wildcard include/config/mach/oscar.h) \ $(wildcard include/config/mach/epxa4usb2.h) \ $(wildcard include/config/mach/xsengine.h) \ $(wildcard include/config/mach/ip600.h) \ $(wildcard include/config/mach/mcan2.h) \ $(wildcard include/config/mach/ddi/blueridge.h) \ $(wildcard include/config/mach/skyminder.h) \ $(wildcard include/config/mach/lpd79520.h) \ $(wildcard include/config/mach/edb9302.h) \ $(wildcard include/config/mach/hw90340.h) \ $(wildcard include/config/mach/cip/box.h) \ $(wildcard include/config/mach/ivpn.h) \ $(wildcard include/config/mach/rsoc2.h) \ $(wildcard include/config/mach/husky.h) \ $(wildcard include/config/mach/boxer.h) \ $(wildcard include/config/mach/shepherd.h) \ $(wildcard include/config/mach/aml42800aa.h) \ $(wildcard include/config/mach/lpc2294.h) \ $(wildcard include/config/mach/switchgrass.h) \ $(wildcard include/config/mach/ens/cmu.h) \ $(wildcard include/config/mach/mm6/sdb.h) \ $(wildcard include/config/mach/saturn.h) \ $(wildcard include/config/mach/i30030evb.h) \ $(wildcard include/config/mach/mxc27530evb.h) \ $(wildcard include/config/mach/smdk2800.h) \ $(wildcard include/config/mach/mtwilson.h) \ $(wildcard include/config/mach/ziti.h) \ $(wildcard include/config/mach/grandfather.h) \ $(wildcard include/config/mach/tengine.h) \ $(wildcard include/config/mach/s3c2460.h) \ $(wildcard include/config/mach/pdm.h) \ $(wildcard include/config/mach/h4700.h) \ $(wildcard include/config/mach/h6300.h) \ $(wildcard include/config/mach/rz1700.h) \ $(wildcard include/config/mach/a716.h) \ $(wildcard include/config/mach/estk2440a.h) \ $(wildcard include/config/mach/atwixp425.h) \ $(wildcard include/config/mach/csb336.h) \ $(wildcard include/config/mach/rirm2.h) \ $(wildcard include/config/mach/cx23518.h) \ $(wildcard include/config/mach/cx2351x.h) \ $(wildcard include/config/mach/computime.h) \ $(wildcard include/config/mach/izarus.h) \ $(wildcard include/config/mach/rts.h) \ $(wildcard include/config/mach/se5100.h) \ $(wildcard include/config/mach/s3c2510.h) \ $(wildcard include/config/mach/csb437tl.h) \ $(wildcard include/config/mach/slauson.h) \ $(wildcard include/config/mach/pearlriver.h) \ $(wildcard include/config/mach/tdc/p210.h) \ $(wildcard include/config/mach/sg580.h) \ $(wildcard include/config/mach/wrsbcarm7.h) \ $(wildcard include/config/mach/ipd.h) \ $(wildcard include/config/mach/pxa/dnp2110.h) \ $(wildcard include/config/mach/xaeniax.h) \ $(wildcard include/config/mach/somn4250.h) \ $(wildcard include/config/mach/pleb2.h) \ $(wildcard include/config/mach/cornwallis.h) \ $(wildcard include/config/mach/gurney/drv.h) \ $(wildcard include/config/mach/chaffee.h) \ $(wildcard include/config/mach/rms101.h) \ $(wildcard include/config/mach/rx3715.h) \ $(wildcard include/config/mach/swift.h) \ $(wildcard include/config/mach/roverp7.h) \ $(wildcard include/config/mach/pr818s.h) \ $(wildcard include/config/mach/trxpro.h) \ $(wildcard include/config/mach/nslu2.h) \ $(wildcard include/config/mach/e400.h) \ $(wildcard include/config/mach/trab.h) \ $(wildcard include/config/mach/cmc/pu2.h) \ $(wildcard include/config/mach/fulcrum.h) \ $(wildcard include/config/mach/netgate42x.h) \ $(wildcard include/config/mach/str710.h) \ $(wildcard include/config/mach/ixdpg425.h) \ $(wildcard include/config/mach/tomtomgo.h) \ $(wildcard include/config/mach/versatile/ab.h) \ $(wildcard include/config/mach/edb9307.h) \ $(wildcard include/config/mach/sg565.h) \ $(wildcard include/config/mach/lpd79524.h) \ $(wildcard include/config/mach/lpd79525.h) \ $(wildcard include/config/mach/rms100.h) \ $(wildcard include/config/mach/kb9200.h) \ $(wildcard include/config/mach/sx1.h) \ $(wildcard include/config/mach/hms39c7092.h) \ $(wildcard include/config/mach/armadillo.h) \ $(wildcard include/config/mach/ipcu.h) \ $(wildcard include/config/mach/loox720.h) \ $(wildcard include/config/mach/ixdp465.h) \ $(wildcard include/config/mach/ixdp2351.h) \ $(wildcard include/config/mach/adsvix.h) \ $(wildcard include/config/mach/dm270.h) \ $(wildcard include/config/mach/socltplus.h) \ $(wildcard include/config/mach/ecia.h) \ $(wildcard include/config/mach/cm4008.h) \ $(wildcard include/config/mach/p2001.h) \ $(wildcard include/config/mach/twister.h) \ $(wildcard include/config/mach/mudshark.h) \ $(wildcard include/config/mach/hb2.h) \ $(wildcard include/config/mach/iq80332.h) \ $(wildcard include/config/mach/sendt.h) \ $(wildcard include/config/mach/mx2jazz.h) \ $(wildcard include/config/mach/multiio.h) \ $(wildcard include/config/mach/hrdisplay.h) \ $(wildcard include/config/mach/mxc27530ads.h) \ $(wildcard include/config/mach/trizeps3.h) \ $(wildcard include/config/mach/zefeerdza.h) \ $(wildcard include/config/mach/zefeerdzb.h) \ $(wildcard include/config/mach/zefeerdzg.h) \ $(wildcard include/config/mach/zefeerdzn.h) \ $(wildcard include/config/mach/zefeerdzq.h) \ $(wildcard include/config/mach/gtwx5715.h) \ $(wildcard include/config/mach/astro/jack.h) \ $(wildcard include/config/mach/tip03.h) \ $(wildcard include/config/mach/a9200ec.h) \ $(wildcard include/config/mach/pnx0105.h) \ $(wildcard include/config/mach/adcpoecpu.h) \ $(wildcard include/config/mach/csb637.h) \ $(wildcard include/config/mach/mb9200.h) \ $(wildcard include/config/mach/kulun.h) \ $(wildcard include/config/mach/snapper.h) \ $(wildcard include/config/mach/optima.h) \ $(wildcard include/config/mach/dlhsbc.h) \ $(wildcard include/config/mach/x30.h) \ $(wildcard include/config/mach/n30.h) \ $(wildcard include/config/mach/manga/ks8695.h) \ $(wildcard include/config/mach/ajax.h) \ $(wildcard include/config/mach/nec/mp900.h) \ $(wildcard include/config/mach/vvtk1000.h) \ $(wildcard include/config/mach/kafa.h) \ $(wildcard include/config/mach/vvtk3000.h) \ $(wildcard include/config/mach/pimx1.h) \ $(wildcard include/config/mach/ollie.h) \ $(wildcard include/config/mach/skymax.h) \ $(wildcard include/config/mach/jazz.h) \ $(wildcard include/config/mach/tel/t3.h) \ $(wildcard include/config/mach/aisino/fcr255.h) \ $(wildcard include/config/mach/btweb.h) \ $(wildcard include/config/mach/dbg/lh79520.h) \ $(wildcard include/config/mach/cm41xx.h) \ $(wildcard include/config/mach/ts72xx.h) \ $(wildcard include/config/mach/nggpxa.h) \ $(wildcard include/config/mach/csb535.h) \ $(wildcard include/config/mach/csb536.h) \ $(wildcard include/config/mach/pxa/trakpod.h) \ $(wildcard include/config/mach/praxis.h) \ $(wildcard include/config/mach/lh75411.h) \ $(wildcard include/config/mach/otom.h) \ $(wildcard include/config/mach/nexcoder/2440.h) \ $(wildcard include/config/mach/loox410.h) \ $(wildcard include/config/mach/westlake.h) \ $(wildcard include/config/mach/nsb.h) \ $(wildcard include/config/mach/esl/sarva/stn.h) \ $(wildcard include/config/mach/esl/sarva/tft.h) \ $(wildcard include/config/mach/esl/sarva/iad.h) \ $(wildcard include/config/mach/esl/sarva/acc.h) \ $(wildcard include/config/mach/typhoon.h) \ $(wildcard include/config/mach/cnav.h) \ $(wildcard include/config/mach/a730.h) \ $(wildcard include/config/mach/netstar.h) \ $(wildcard include/config/mach/phasefale/supercon.h) \ $(wildcard include/config/mach/shiva1100.h) \ $(wildcard include/config/mach/etexsc.h) \ $(wildcard include/config/mach/ixdpg465.h) \ $(wildcard include/config/mach/a9m2410.h) \ $(wildcard include/config/mach/a9m2440.h) \ $(wildcard include/config/mach/a9m9750.h) \ $(wildcard include/config/mach/a9m9360.h) \ $(wildcard include/config/mach/unc90.h) \ $(wildcard include/config/mach/eco920.h) \ $(wildcard include/config/mach/satview.h) \ $(wildcard include/config/mach/roadrunner.h) \ $(wildcard include/config/mach/at91rm9200ek.h) \ $(wildcard include/config/mach/gp32.h) \ $(wildcard include/config/mach/gem.h) \ $(wildcard include/config/mach/i858.h) \ $(wildcard include/config/mach/hx2750.h) \ $(wildcard include/config/mach/mxc91131evb.h) \ $(wildcard include/config/mach/p700.h) \ $(wildcard include/config/mach/cpe.h) \ $(wildcard include/config/mach/spitz.h) \ $(wildcard include/config/mach/nimbra340.h) \ $(wildcard include/config/mach/lpc22xx.h) \ $(wildcard include/config/mach/comet3.h) \ $(wildcard include/config/mach/comet4.h) \ $(wildcard include/config/mach/csb625.h) \ $(wildcard include/config/mach/fortunet2.h) \ $(wildcard include/config/mach/s5h2200.h) \ $(wildcard include/config/mach/optorm920.h) \ $(wildcard include/config/mach/adsbitsyxb.h) \ $(wildcard include/config/mach/adssphere.h) \ $(wildcard include/config/mach/adsportal.h) \ $(wildcard include/config/mach/ln2410sbc.h) \ $(wildcard include/config/mach/cb3rufc.h) \ $(wildcard include/config/mach/mp2usb.h) \ $(wildcard include/config/mach/ntnp425c.h) \ $(wildcard include/config/mach/colibri.h) \ $(wildcard include/config/mach/pcm7220.h) \ $(wildcard include/config/mach/gateway7001.h) \ $(wildcard include/config/mach/pcm027.h) \ $(wildcard include/config/mach/cmpxa.h) \ $(wildcard include/config/mach/anubis.h) \ $(wildcard include/config/mach/ite8152.h) \ $(wildcard include/config/mach/lpc3xxx.h) \ $(wildcard include/config/mach/puppeteer.h) \ $(wildcard include/config/mach/e570.h) \ $(wildcard include/config/mach/x50.h) \ $(wildcard include/config/mach/recon.h) \ $(wildcard include/config/mach/xboardgp8.h) \ $(wildcard include/config/mach/fpic2.h) \ $(wildcard include/config/mach/akita.h) \ $(wildcard include/config/mach/a81.h) \ $(wildcard include/config/mach/svm/sc25x.h) \ $(wildcard include/config/mach/vadatech020.h) \ $(wildcard include/config/mach/tli.h) \ $(wildcard include/config/mach/edb9315lc.h) \ $(wildcard include/config/mach/passec.h) \ $(wildcard include/config/mach/ds/tiger.h) \ $(wildcard include/config/mach/e310.h) \ $(wildcard include/config/mach/e330.h) \ $(wildcard include/config/mach/rt3000.h) \ $(wildcard include/config/mach/nokia770.h) \ $(wildcard include/config/mach/pnx0106.h) \ $(wildcard include/config/mach/hx21xx.h) \ $(wildcard include/config/mach/faraday.h) \ $(wildcard include/config/mach/sbc9312.h) \ $(wildcard include/config/mach/batman.h) \ $(wildcard include/config/mach/jpd201.h) \ $(wildcard include/config/mach/mipsa.h) \ $(wildcard include/config/mach/kacom.h) \ $(wildcard include/config/mach/swarcocpu.h) \ $(wildcard include/config/mach/swarcodsl.h) \ $(wildcard include/config/mach/blueangel.h) \ $(wildcard include/config/mach/hairygrama.h) \ $(wildcard include/config/mach/banff.h) \ $(wildcard include/config/mach/carmeva.h) \ $(wildcard include/config/mach/sam255.h) \ $(wildcard include/config/mach/ppm10.h) \ $(wildcard include/config/mach/edb9315a.h) \ $(wildcard include/config/mach/sunset.h) \ $(wildcard include/config/mach/stargate2.h) \ $(wildcard include/config/mach/intelmote2.h) \ $(wildcard include/config/mach/trizeps4.h) \ $(wildcard include/config/mach/mainstone2.h) \ $(wildcard include/config/mach/ez/ixp42x.h) \ $(wildcard include/config/mach/tapwave/zodiac.h) \ $(wildcard include/config/mach/universalmeter.h) \ $(wildcard include/config/mach/hicoarm9.h) \ $(wildcard include/config/mach/pnx4008.h) \ $(wildcard include/config/mach/kws6000.h) \ $(wildcard include/config/mach/portux920t.h) \ $(wildcard include/config/mach/ez/x5.h) \ $(wildcard include/config/mach/omap/rudolph.h) \ $(wildcard include/config/mach/cpuat91.h) \ $(wildcard include/config/mach/rea9200.h) \ $(wildcard include/config/mach/acts/pune/sa1110.h) \ $(wildcard include/config/mach/ixp425.h) \ $(wildcard include/config/mach/i30030ads.h) \ $(wildcard include/config/mach/perch.h) \ $(wildcard include/config/mach/eis05r1.h) \ $(wildcard include/config/mach/pepperpad.h) \ $(wildcard include/config/mach/sb3010.h) \ $(wildcard include/config/mach/rm9200.h) \ $(wildcard include/config/mach/dma03.h) \ $(wildcard include/config/mach/road/s101.h) \ $(wildcard include/config/mach/iq81340sc.h) \ $(wildcard include/config/mach/iq/nextgen/b.h) \ $(wildcard include/config/mach/iq81340mc.h) \ $(wildcard include/config/mach/iq/nextgen/d.h) \ $(wildcard include/config/mach/iq/nextgen/e.h) \ $(wildcard include/config/mach/mallow/at91.h) \ $(wildcard include/config/mach/cybertracker/i.h) \ $(wildcard include/config/mach/gesbc931x.h) \ $(wildcard include/config/mach/centipad.h) \ $(wildcard include/config/mach/armsoc.h) \ $(wildcard include/config/mach/se4200.h) \ $(wildcard include/config/mach/ems197a.h) \ $(wildcard include/config/mach/micro9.h) \ $(wildcard include/config/mach/micro9l.h) \ $(wildcard include/config/mach/uc5471dsp.h) \ $(wildcard include/config/mach/sj5471eng.h) \ $(wildcard include/config/mach/cmpxa26x.h) \ $(wildcard include/config/mach/nc.h) \ $(wildcard include/config/mach/omap/palmte.h) \ $(wildcard include/config/mach/ajax52x.h) \ $(wildcard include/config/mach/siriustar.h) \ $(wildcard include/config/mach/iodata/hdlg.h) \ $(wildcard include/config/mach/at91rm9200utl.h) \ $(wildcard include/config/mach/biosafe.h) \ $(wildcard include/config/mach/mp1000.h) \ $(wildcard include/config/mach/parsy.h) \ $(wildcard include/config/mach/ccxp.h) \ $(wildcard include/config/mach/omap/gsample.h) \ $(wildcard include/config/mach/realview/eb.h) \ $(wildcard include/config/mach/samoa.h) \ $(wildcard include/config/mach/palmt3.h) \ $(wildcard include/config/mach/i878.h) \ $(wildcard include/config/mach/borzoi.h) \ $(wildcard include/config/mach/gecko.h) \ $(wildcard include/config/mach/ds101.h) \ $(wildcard include/config/mach/omap/palmtt2.h) \ $(wildcard include/config/mach/palmld.h) \ $(wildcard include/config/mach/cc9c.h) \ $(wildcard include/config/mach/sbc1670.h) \ $(wildcard include/config/mach/ixdp28x5.h) \ $(wildcard include/config/mach/omap/palmtt.h) \ $(wildcard include/config/mach/ml696k.h) \ $(wildcard include/config/mach/arcom/zeus.h) \ $(wildcard include/config/mach/osiris.h) \ $(wildcard include/config/mach/maestro.h) \ $(wildcard include/config/mach/palmte2.h) \ $(wildcard include/config/mach/ixbbm.h) \ $(wildcard include/config/mach/mx27ads.h) \ $(wildcard include/config/mach/ax8004.h) \ $(wildcard include/config/mach/at91sam9261ek.h) \ $(wildcard include/config/mach/loft.h) \ $(wildcard include/config/mach/magpie.h) \ $(wildcard include/config/mach/mx21ads.h) \ $(wildcard include/config/mach/mb87m3400.h) \ $(wildcard include/config/mach/mguard/delta.h) \ $(wildcard include/config/mach/davinci/dvdp.h) \ $(wildcard include/config/mach/htcuniversal.h) \ $(wildcard include/config/mach/tpad.h) \ $(wildcard include/config/mach/roverp3.h) \ $(wildcard include/config/mach/jornada928.h) \ $(wildcard include/config/mach/mv88fxx81.h) \ $(wildcard include/config/mach/stmp36xx.h) \ $(wildcard include/config/mach/sxni79524.h) \ $(wildcard include/config/mach/ams/delta.h) \ $(wildcard include/config/mach/uranium.h) \ $(wildcard include/config/mach/ucon.h) \ $(wildcard include/config/mach/nas100d.h) \ $(wildcard include/config/mach/l083/1000.h) \ $(wildcard include/config/mach/ezx.h) \ $(wildcard include/config/mach/pnx5220.h) \ $(wildcard include/config/mach/butte.h) \ $(wildcard include/config/mach/srm2.h) \ $(wildcard include/config/mach/dsbr.h) \ $(wildcard include/config/mach/crystalball.h) \ $(wildcard include/config/mach/tinypxa27x.h) \ $(wildcard include/config/mach/herbie.h) \ $(wildcard include/config/mach/magician.h) \ $(wildcard include/config/mach/cm4002.h) \ $(wildcard include/config/mach/b4.h) \ $(wildcard include/config/mach/maui.h) \ $(wildcard include/config/mach/cybertracker/g.h) \ $(wildcard include/config/mach/nxdkn.h) \ $(wildcard include/config/mach/mio8390.h) \ $(wildcard include/config/mach/omi/board.h) \ $(wildcard include/config/mach/mx21civ.h) \ $(wildcard include/config/mach/mahi/cdac.h) \ $(wildcard include/config/mach/palmtx.h) \ $(wildcard include/config/mach/s3c2413.h) \ $(wildcard include/config/mach/samsys/ep0.h) \ $(wildcard include/config/mach/wg302v1.h) \ $(wildcard include/config/mach/wg302v2.h) \ $(wildcard include/config/mach/eb42x.h) \ $(wildcard include/config/mach/iq331es.h) \ $(wildcard include/config/mach/cosydsp.h) \ $(wildcard include/config/mach/uplat7d.h) \ $(wildcard include/config/mach/ptdavinci.h) \ $(wildcard include/config/mach/mbus.h) \ $(wildcard include/config/mach/nadia2vb.h) \ $(wildcard include/config/mach/r1000.h) \ $(wildcard include/config/mach/hw90250.h) \ $(wildcard include/config/mach/omap/2430sdp.h) \ $(wildcard include/config/mach/davinci/evm.h) \ $(wildcard include/config/mach/omap/tornado.h) \ $(wildcard include/config/mach/olocreek.h) \ $(wildcard include/config/mach/palmz72.h) \ $(wildcard include/config/mach/nxdb500.h) \ $(wildcard include/config/mach/apf9328.h) \ $(wildcard include/config/mach/omap/wipoq.h) \ $(wildcard include/config/mach/omap/twip.h) \ $(wildcard include/config/mach/treo650.h) \ $(wildcard include/config/mach/acumen.h) \ $(wildcard include/config/mach/xp100.h) \ $(wildcard include/config/mach/fs2410.h) \ $(wildcard include/config/mach/pxa270/cerf.h) \ $(wildcard include/config/mach/sq2ftlpalm.h) \ $(wildcard include/config/mach/bsemserver.h) \ $(wildcard include/config/mach/netclient.h) \ $(wildcard include/config/mach/palmt5.h) \ $(wildcard include/config/mach/palmtc.h) \ $(wildcard include/config/mach/omap/apollon.h) \ $(wildcard include/config/mach/mxc30030evb.h) \ $(wildcard include/config/mach/rea/2d.h) \ $(wildcard include/config/mach/ti3e524.h) \ $(wildcard include/config/mach/ateb9200.h) \ $(wildcard include/config/mach/auckland.h) \ $(wildcard include/config/mach/ak3320m.h) \ $(wildcard include/config/mach/duramax.h) \ $(wildcard include/config/mach/n35.h) \ $(wildcard include/config/mach/pronghorn.h) \ $(wildcard include/config/mach/fundy.h) \ $(wildcard include/config/mach/logicpd/pxa270.h) \ $(wildcard include/config/mach/cpu777.h) \ $(wildcard include/config/mach/simicon9201.h) \ $(wildcard include/config/mach/leap2/hpm.h) \ $(wildcard include/config/mach/cm922txa10.h) \ $(wildcard include/config/mach/pxa.h) \ $(wildcard include/config/mach/sandgate2.h) \ $(wildcard include/config/mach/sandgate2g.h) \ $(wildcard include/config/mach/sandgate2p.h) \ $(wildcard include/config/mach/fred/jack.h) \ $(wildcard include/config/mach/ttg/color1.h) \ $(wildcard include/config/mach/nxeb500hmi.h) \ $(wildcard include/config/mach/netdcu8.h) \ $(wildcard include/config/mach/ng/fvx538.h) \ $(wildcard include/config/mach/ng/fvs338.h) \ $(wildcard include/config/mach/pnx4103.h) \ $(wildcard include/config/mach/hesdb.h) \ $(wildcard include/config/mach/xsilo.h) \ $(wildcard include/config/mach/espresso.h) \ $(wildcard include/config/mach/emlc.h) \ $(wildcard include/config/mach/sisteron.h) \ $(wildcard include/config/mach/rx1950.h) \ $(wildcard include/config/mach/tsc/venus.h) \ $(wildcard include/config/mach/ds101j.h) \ $(wildcard include/config/mach/mxc30030ads.h) \ $(wildcard include/config/mach/fujitsu/wimaxsoc.h) \ $(wildcard include/config/mach/dualpcmodem.h) \ $(wildcard include/config/mach/gesbc9312.h) \ $(wildcard include/config/mach/htcapache.h) \ $(wildcard include/config/mach/ixdp435.h) \ $(wildcard include/config/mach/catprovt100.h) \ $(wildcard include/config/mach/picotux1xx.h) \ $(wildcard include/config/mach/picotux2xx.h) \ $(wildcard include/config/mach/dsmg600.h) \ $(wildcard include/config/mach/empc2.h) \ $(wildcard include/config/mach/ventura.h) \ $(wildcard include/config/mach/phidget/sbc.h) \ $(wildcard include/config/mach/ij3k.h) \ $(wildcard include/config/mach/pisgah.h) \ $(wildcard include/config/mach/omap/fsample.h) \ $(wildcard include/config/mach/sg720.h) \ $(wildcard include/config/mach/redfox.h) \ $(wildcard include/config/mach/mysh/ep9315/1.h) \ $(wildcard include/config/mach/tpf106.h) \ $(wildcard include/config/mach/at91rm9200kg.h) \ $(wildcard include/config/mach/sledb.h) \ $(wildcard include/config/mach/ontrack.h) \ $(wildcard include/config/mach/pm1200.h) \ $(wildcard include/config/mach/ess24xxx.h) \ $(wildcard include/config/mach/coremp7.h) \ $(wildcard include/config/mach/nexcoder/6446.h) \ $(wildcard include/config/mach/stvc8380.h) \ $(wildcard include/config/mach/teklynx.h) \ $(wildcard include/config/mach/carbonado.h) \ $(wildcard include/config/mach/sysmos/mp730.h) \ $(wildcard include/config/mach/snapper/cl15.h) \ $(wildcard include/config/mach/pgigim.h) \ $(wildcard include/config/mach/ptx9160p2.h) \ $(wildcard include/config/mach/dcore1.h) \ $(wildcard include/config/mach/victorpxa.h) \ $(wildcard include/config/mach/mx2dtb.h) \ $(wildcard include/config/mach/pxa/irex/er0100.h) \ $(wildcard include/config/mach/omap/palmz71.h) \ $(wildcard include/config/mach/bartec/deg.h) \ $(wildcard include/config/mach/hw50251.h) \ $(wildcard include/config/mach/ibox.h) \ $(wildcard include/config/mach/atlaslh7a404.h) \ $(wildcard include/config/mach/pt2026.h) \ $(wildcard include/config/mach/htcalpine.h) \ $(wildcard include/config/mach/bartec/vtu.h) \ $(wildcard include/config/mach/vcoreii.h) \ $(wildcard include/config/mach/pdnb3.h) \ $(wildcard include/config/mach/htcbeetles.h) \ $(wildcard include/config/mach/s3c6400.h) \ $(wildcard include/config/mach/s3c2443.h) \ $(wildcard include/config/mach/omap/ldk.h) \ $(wildcard include/config/mach/smdk2460.h) \ $(wildcard include/config/mach/smdk2440.h) \ $(wildcard include/config/mach/smdk2412.h) \ $(wildcard include/config/mach/webbox.h) \ $(wildcard include/config/mach/cwwndp.h) \ $(wildcard include/config/mach/dragon.h) \ $(wildcard include/config/mach/opendo/cpu/board.h) \ $(wildcard include/config/mach/ccm2200.h) \ $(wildcard include/config/mach/etwarm.h) \ $(wildcard include/config/mach/m93030.h) \ $(wildcard include/config/mach/cc7u.h) \ $(wildcard include/config/mach/mtt/ranger.h) \ $(wildcard include/config/mach/nexus.h) \ $(wildcard include/config/mach/desman.h) \ $(wildcard include/config/mach/bkde303.h) \ $(wildcard include/config/mach/smdk2413.h) \ $(wildcard include/config/mach/aml/m7200.h) \ $(wildcard include/config/mach/aml/m5900.h) \ $(wildcard include/config/mach/sg640.h) \ $(wildcard include/config/mach/edg79524.h) \ $(wildcard include/config/mach/ai2410.h) \ $(wildcard include/config/mach/ixp465.h) \ $(wildcard include/config/mach/balloon3.h) \ $(wildcard include/config/mach/heins.h) \ $(wildcard include/config/mach/mpluseva.h) \ $(wildcard include/config/mach/rt042.h) \ $(wildcard include/config/mach/cwiem.h) \ $(wildcard include/config/mach/cm/x270.h) \ $(wildcard include/config/mach/cm/x255.h) \ $(wildcard include/config/mach/esh/at91.h) \ $(wildcard include/config/mach/sandgate3.h) \ $(wildcard include/config/mach/primo.h) \ $(wildcard include/config/mach/gemstone.h) \ $(wildcard include/config/mach/pronghornmetro.h) \ $(wildcard include/config/mach/sidewinder.h) \ $(wildcard include/config/mach/picomod1.h) \ $(wildcard include/config/mach/sg590.h) \ $(wildcard include/config/mach/akai9307.h) \ $(wildcard include/config/mach/fontaine.h) \ $(wildcard include/config/mach/wombat.h) \ $(wildcard include/config/mach/acq300.h) \ $(wildcard include/config/mach/mod/270.h) \ $(wildcard include/config/mach/vc0820.h) \ $(wildcard include/config/mach/ani/aim.h) \ $(wildcard include/config/mach/jellyfish.h) \ $(wildcard include/config/mach/amanita.h) \ $(wildcard include/config/mach/vlink.h) \ $(wildcard include/config/mach/dexflex.h) \ $(wildcard include/config/mach/eigen/ttq.h) \ $(wildcard include/config/mach/arcom/titan.h) \ $(wildcard include/config/mach/tabla.h) \ $(wildcard include/config/mach/mdirac3.h) \ $(wildcard include/config/mach/mrhfbp2.h) \ $(wildcard include/config/mach/at91rm9200rb.h) \ $(wildcard include/config/mach/ani/apm.h) \ $(wildcard include/config/mach/ella1.h) \ $(wildcard include/config/mach/inhand/pxa27x.h) \ $(wildcard include/config/mach/inhand/pxa25x.h) \ $(wildcard include/config/mach/empos/xm.h) \ $(wildcard include/config/mach/empos.h) \ $(wildcard include/config/mach/empos/tiny.h) \ $(wildcard include/config/mach/empos/sm.h) \ $(wildcard include/config/mach/egret.h) \ $(wildcard include/config/mach/ostrich.h) \ $(wildcard include/config/mach/n50.h) \ $(wildcard include/config/mach/ecbat91.h) \ $(wildcard include/config/mach/stareast.h) \ $(wildcard include/config/mach/dspg/dw.h) \ $(wildcard include/config/mach/onearm.h) \ $(wildcard include/config/mach/mrg110/6.h) \ $(wildcard include/config/mach/wrt300nv2.h) \ $(wildcard include/config/mach/xm/bulverde.h) \ $(wildcard include/config/mach/msm6100.h) \ $(wildcard include/config/mach/eti/b1.h) \ $(wildcard include/config/mach/zilog/za9l.h) \ $(wildcard include/config/mach/bit2440.h) \ $(wildcard include/config/mach/nbi.h) \ $(wildcard include/config/mach/smdk2443.h) \ $(wildcard include/config/mach/vdavinci.h) \ $(wildcard include/config/mach/atc6.h) \ $(wildcard include/config/mach/multmdw.h) \ $(wildcard include/config/mach/mba2440.h) \ $(wildcard include/config/mach/ecsd.h) \ $(wildcard include/config/mach/palmz31.h) \ $(wildcard include/config/mach/fsg.h) \ $(wildcard include/config/mach/razor101.h) \ $(wildcard include/config/mach/opera/tdm.h) \ $(wildcard include/config/mach/comcerto.h) \ $(wildcard include/config/mach/tb0319.h) \ $(wildcard include/config/mach/kws8000.h) \ $(wildcard include/config/mach/b2.h) \ $(wildcard include/config/mach/lcl54.h) \ $(wildcard include/config/mach/at91sam9260ek.h) \ $(wildcard include/config/mach/glantank.h) \ $(wildcard include/config/mach/n2100.h) \ $(wildcard include/config/mach/n4100.h) \ $(wildcard include/config/mach/vertical/rsc4.h) \ $(wildcard include/config/mach/sg8100.h) \ $(wildcard include/config/mach/im42xx.h) \ $(wildcard include/config/mach/ftxx.h) \ $(wildcard include/config/mach/lwfusion.h) \ $(wildcard include/config/mach/qt2410.h) \ $(wildcard include/config/mach/kixrp435.h) \ $(wildcard include/config/mach/ccw9c.h) \ $(wildcard include/config/mach/dabhs.h) \ $(wildcard include/config/mach/gzmx.h) \ $(wildcard include/config/mach/ipnw100ap.h) \ $(wildcard include/config/mach/cc9p9360dev.h) \ $(wildcard include/config/mach/cc9p9750dev.h) \ $(wildcard include/config/mach/cc9p9360val.h) \ $(wildcard include/config/mach/cc9p9750val.h) \ $(wildcard include/config/mach/nx70v.h) \ $(wildcard include/config/mach/at91rm9200df.h) \ $(wildcard include/config/mach/se/pilot2.h) \ $(wildcard include/config/mach/mtcn/t800.h) \ $(wildcard include/config/mach/vcmx212.h) \ $(wildcard include/config/mach/lynx.h) \ $(wildcard include/config/mach/at91sam9260id.h) \ $(wildcard include/config/mach/hw86052.h) \ $(wildcard include/config/mach/pilz/pmi3.h) \ $(wildcard include/config/mach/edb9302a.h) \ $(wildcard include/config/mach/edb9307a.h) \ $(wildcard include/config/mach/ct/dfs.h) \ $(wildcard include/config/mach/pilz/pmi4.h) \ $(wildcard include/config/mach/xceednp/ixp.h) \ $(wildcard include/config/mach/smdk2442b.h) \ $(wildcard include/config/mach/xnode.h) \ $(wildcard include/config/mach/aidx270.h) \ $(wildcard include/config/mach/rema.h) \ $(wildcard include/config/mach/bps1000.h) \ $(wildcard include/config/mach/hw90350.h) \ $(wildcard include/config/mach/omap/3430sdp.h) \ $(wildcard include/config/mach/bluetouch.h) \ $(wildcard include/config/mach/vstms.h) \ $(wildcard include/config/mach/xsbase270.h) \ $(wildcard include/config/mach/at91sam9260ek/cn.h) \ $(wildcard include/config/mach/adsturboxb.h) \ $(wildcard include/config/mach/oti4110.h) \ $(wildcard include/config/mach/hme/pxa.h) \ $(wildcard include/config/mach/deisterdca.h) \ $(wildcard include/config/mach/ces/ssem2.h) \ $(wildcard include/config/mach/ces/mtr.h) \ $(wildcard include/config/mach/tds/avng/sbc.h) \ $(wildcard include/config/mach/everest.h) \ $(wildcard include/config/mach/pnx4010.h) \ $(wildcard include/config/mach/oxnas.h) \ $(wildcard include/config/mach/fiori.h) \ $(wildcard include/config/mach/ml1200.h) \ $(wildcard include/config/mach/pecos.h) \ $(wildcard include/config/mach/nb2xxx.h) \ $(wildcard include/config/mach/hw6900.h) \ $(wildcard include/config/mach/cdcs/quoll.h) \ $(wildcard include/config/mach/quicksilver.h) \ $(wildcard include/config/mach/uplat926.h) \ $(wildcard include/config/mach/dep2410/thomas.h) \ $(wildcard include/config/mach/dtk2410.h) \ $(wildcard include/config/mach/chili.h) \ $(wildcard include/config/mach/demeter.h) \ $(wildcard include/config/mach/dionysus.h) \ $(wildcard include/config/mach/as352x.h) \ $(wildcard include/config/mach/service.h) \ $(wildcard include/config/mach/cs/e9301.h) \ $(wildcard include/config/mach/micro9m.h) \ $(wildcard include/config/mach/ia/mospck.h) \ $(wildcard include/config/mach/ql201b.h) \ $(wildcard include/config/mach/bbm.h) \ $(wildcard include/config/mach/exxx.h) \ $(wildcard include/config/mach/wma11b.h) \ $(wildcard include/config/mach/pelco/atlas.h) \ $(wildcard include/config/mach/g500.h) \ $(wildcard include/config/mach/bug.h) \ $(wildcard include/config/mach/mx33ads.h) \ $(wildcard include/config/mach/chub.h) \ $(wildcard include/config/mach/neo1973/gta01.h) \ $(wildcard include/config/mach/w90n740.h) \ $(wildcard include/config/mach/medallion/sa2410.h) \ $(wildcard include/config/mach/ia/cpu/9200/2.h) \ $(wildcard include/config/mach/dimmrm9200.h) \ $(wildcard include/config/mach/pm9261.h) \ $(wildcard include/config/mach/ml7304.h) \ $(wildcard include/config/mach/ucp250.h) \ $(wildcard include/config/mach/intboard.h) \ $(wildcard include/config/mach/gulfstream.h) \ $(wildcard include/config/mach/labquest.h) \ $(wildcard include/config/mach/vcmx313.h) \ $(wildcard include/config/mach/urg200.h) \ $(wildcard include/config/mach/cpux255lcdnet.h) \ $(wildcard include/config/mach/netdcu9.h) \ $(wildcard include/config/mach/netdcu10.h) \ $(wildcard include/config/mach/dspg/dga.h) \ $(wildcard include/config/mach/dspg/dvw.h) \ $(wildcard include/config/mach/solos.h) \ $(wildcard include/config/mach/at91sam9263ek.h) \ $(wildcard include/config/mach/osstbox.h) \ $(wildcard include/config/mach/kbat9261.h) \ $(wildcard include/config/mach/ct1100.h) \ $(wildcard include/config/mach/akcppxa.h) \ $(wildcard include/config/mach/ochaya1020.h) \ $(wildcard include/config/mach/hitrack.h) \ $(wildcard include/config/mach/syme1.h) \ $(wildcard include/config/mach/syhl1.h) \ $(wildcard include/config/mach/empca400.h) \ $(wildcard include/config/mach/em7210.h) \ $(wildcard include/config/mach/htchermes.h) \ $(wildcard include/config/mach/eti/c1.h) \ $(wildcard include/config/mach/ac100.h) \ $(wildcard include/config/mach/sneetch.h) \ $(wildcard include/config/mach/studentmate.h) \ $(wildcard include/config/mach/zir2410.h) \ $(wildcard include/config/mach/zir2413.h) \ $(wildcard include/config/mach/dlonip3.h) \ $(wildcard include/config/mach/instream.h) \ $(wildcard include/config/mach/ambarella.h) \ $(wildcard include/config/mach/nevis.h) \ $(wildcard include/config/mach/htc/trinity.h) \ $(wildcard include/config/mach/ql202b.h) \ $(wildcard include/config/mach/vpac270.h) \ $(wildcard include/config/mach/rd129.h) \ $(wildcard include/config/mach/htcwizard.h) \ $(wildcard include/config/mach/treo680.h) \ $(wildcard include/config/mach/tecon/tmezon.h) \ $(wildcard include/config/mach/zylonite.h) \ $(wildcard include/config/mach/gene1270.h) \ $(wildcard include/config/mach/zir2412.h) \ $(wildcard include/config/mach/mx31lite.h) \ $(wildcard include/config/mach/t700wx.h) \ $(wildcard include/config/mach/vf100.h) \ $(wildcard include/config/mach/nsb2.h) \ $(wildcard include/config/mach/nxhmi/bb.h) \ $(wildcard include/config/mach/nxhmi/re.h) \ $(wildcard include/config/mach/n4100pro.h) \ $(wildcard include/config/mach/sam9260.h) \ $(wildcard include/config/mach/omap/treo600.h) \ $(wildcard include/config/mach/indy2410.h) \ $(wildcard include/config/mach/nelt/a.h) \ $(wildcard include/config/mach/n311.h) \ $(wildcard include/config/mach/at91sam9260vgk.h) \ $(wildcard include/config/mach/at91leppe.h) \ $(wildcard include/config/mach/at91lepccn.h) \ $(wildcard include/config/mach/apc7100.h) \ $(wildcard include/config/mach/stargazer.h) \ $(wildcard include/config/mach/sonata.h) \ $(wildcard include/config/mach/schmoogie.h) \ $(wildcard include/config/mach/aztool.h) \ $(wildcard include/config/mach/mioa701.h) \ $(wildcard include/config/mach/sxni9260.h) \ $(wildcard include/config/mach/mxc27520evb.h) \ $(wildcard include/config/mach/armadillo5x0.h) \ $(wildcard include/config/mach/mb9260.h) \ $(wildcard include/config/mach/mb9263.h) \ $(wildcard include/config/mach/ipac9302.h) \ $(wildcard include/config/mach/cc9p9360js.h) \ $(wildcard include/config/mach/gallium.h) \ $(wildcard include/config/mach/msc2410.h) \ $(wildcard include/config/mach/ghi270.h) \ $(wildcard include/config/mach/davinci/leonardo.h) \ $(wildcard include/config/mach/oiab.h) \ $(wildcard include/config/mach/smdk6400.h) \ $(wildcard include/config/mach/nokia/n800.h) \ $(wildcard include/config/mach/greenphone.h) \ $(wildcard include/config/mach/compexwp18.h) \ $(wildcard include/config/mach/xmate.h) \ $(wildcard include/config/mach/energizer.h) \ $(wildcard include/config/mach/ime1.h) \ $(wildcard include/config/mach/swedatms.h) \ $(wildcard include/config/mach/ntnp435c.h) \ $(wildcard include/config/mach/spectro2.h) \ $(wildcard include/config/mach/h6039.h) \ $(wildcard include/config/mach/ep80219.h) \ $(wildcard include/config/mach/samoa/ii.h) \ $(wildcard include/config/mach/cwmxl.h) \ $(wildcard include/config/mach/as9200.h) \ $(wildcard include/config/mach/sfx1149.h) \ $(wildcard include/config/mach/navi010.h) \ $(wildcard include/config/mach/multmdp.h) \ $(wildcard include/config/mach/scb9520.h) \ $(wildcard include/config/mach/htcathena.h) \ $(wildcard include/config/mach/xp179.h) \ $(wildcard include/config/mach/h4300.h) \ $(wildcard include/config/mach/goramo/mlr.h) \ $(wildcard include/config/mach/mxc30020evb.h) \ $(wildcard include/config/mach/adsbitsyg5.h) \ $(wildcard include/config/mach/adsportalplus.h) \ $(wildcard include/config/mach/mmsp2plus.h) \ $(wildcard include/config/mach/em/x270.h) \ $(wildcard include/config/mach/tpp302.h) \ $(wildcard include/config/mach/tpm104.h) \ $(wildcard include/config/mach/tpm102.h) \ $(wildcard include/config/mach/tpm109.h) \ $(wildcard include/config/mach/fbxo1.h) \ $(wildcard include/config/mach/hxd8.h) \ $(wildcard include/config/mach/neo1973/gta02.h) \ $(wildcard include/config/mach/emtest.h) \ $(wildcard include/config/mach/ad6900.h) \ $(wildcard include/config/mach/europa.h) \ $(wildcard include/config/mach/metroconnect.h) \ $(wildcard include/config/mach/ez/s2410.h) \ $(wildcard include/config/mach/ez/s2440.h) \ $(wildcard include/config/mach/ez/ep9312.h) \ $(wildcard include/config/mach/ez/ep9315.h) \ $(wildcard include/config/mach/ez/x7.h) \ $(wildcard include/config/mach/godotdb.h) \ $(wildcard include/config/mach/mistral.h) \ $(wildcard include/config/mach/msm.h) \ $(wildcard include/config/mach/ct5910.h) \ $(wildcard include/config/mach/ct5912.h) \ $(wildcard include/config/mach/hynet/ine.h) \ $(wildcard include/config/mach/hynet/app.h) \ $(wildcard include/config/mach/msm7200.h) \ $(wildcard include/config/mach/msm7600.h) \ $(wildcard include/config/mach/ceb255.h) \ $(wildcard include/config/mach/ciel.h) \ $(wildcard include/config/mach/slm5650.h) \ $(wildcard include/config/mach/at91sam9rlek.h) \ $(wildcard include/config/mach/comtech/router.h) \ $(wildcard include/config/mach/sbc2410x.h) \ $(wildcard include/config/mach/at4x0bd.h) \ $(wildcard include/config/mach/cbifr.h) \ $(wildcard include/config/mach/arcom/quantum.h) \ $(wildcard include/config/mach/matrix520.h) \ $(wildcard include/config/mach/matrix510.h) \ $(wildcard include/config/mach/matrix500.h) \ $(wildcard include/config/mach/m501.h) \ $(wildcard include/config/mach/aaeon1270.h) \ $(wildcard include/config/mach/matrix500ev.h) \ $(wildcard include/config/mach/pac500.h) \ $(wildcard include/config/mach/pnx8181.h) \ $(wildcard include/config/mach/colibri320.h) \ $(wildcard include/config/mach/aztoolbb.h) \ $(wildcard include/config/mach/aztoolg2.h) \ $(wildcard include/config/mach/dvlhost.h) \ $(wildcard include/config/mach/zir9200.h) \ $(wildcard include/config/mach/zir9260.h) \ $(wildcard include/config/mach/cocopah.h) \ $(wildcard include/config/mach/nds.h) \ $(wildcard include/config/mach/rosencrantz.h) \ $(wildcard include/config/mach/fttx/odsc.h) \ $(wildcard include/config/mach/classe/r6904.h) \ $(wildcard include/config/mach/cam60.h) \ $(wildcard include/config/mach/mxc30031ads.h) \ $(wildcard include/config/mach/datacall.h) \ $(wildcard include/config/mach/at91eb01.h) \ $(wildcard include/config/mach/rty.h) \ $(wildcard include/config/mach/dwl2100.h) \ $(wildcard include/config/mach/vinsi.h) \ $(wildcard include/config/mach/db88f5281.h) \ $(wildcard include/config/mach/csb726.h) \ $(wildcard include/config/mach/tik27.h) \ $(wildcard include/config/mach/mx/uc7420.h) \ $(wildcard include/config/mach/rirm3.h) \ $(wildcard include/config/mach/pelco/odyssey.h) \ $(wildcard include/config/mach/adx/abox.h) \ $(wildcard include/config/mach/adx/tpid.h) \ $(wildcard include/config/mach/minicheck.h) \ $(wildcard include/config/mach/idam.h) \ $(wildcard include/config/mach/mario/mx.h) \ $(wildcard include/config/mach/vi1888.h) \ $(wildcard include/config/mach/zr4230.h) \ $(wildcard include/config/mach/t1/ix/blue.h) \ $(wildcard include/config/mach/syhq2.h) \ $(wildcard include/config/mach/computime/r3.h) \ $(wildcard include/config/mach/oratis.h) \ $(wildcard include/config/mach/mikko.h) \ $(wildcard include/config/mach/holon.h) \ $(wildcard include/config/mach/olip8.h) \ $(wildcard include/config/mach/ghi270hg.h) \ $(wildcard include/config/mach/davinci/dm6467/evm.h) \ $(wildcard include/config/mach/davinci/dm355/evm.h) \ $(wildcard include/config/mach/blackriver.h) \ $(wildcard include/config/mach/sandgatewp.h) \ $(wildcard include/config/mach/cdotbwsg.h) \ $(wildcard include/config/mach/quark963.h) \ $(wildcard include/config/mach/csb735.h) \ $(wildcard include/config/mach/littleton.h) \ $(wildcard include/config/mach/mio/p550.h) \ $(wildcard include/config/mach/motion2440.h) \ $(wildcard include/config/mach/imm500.h) \ $(wildcard include/config/mach/homematic.h) \ $(wildcard include/config/mach/ermine.h) \ $(wildcard include/config/mach/kb9202b.h) \ $(wildcard include/config/mach/hs1xx.h) \ $(wildcard include/config/mach/studentmate2440.h) \ $(wildcard include/config/mach/arvoo/l1/z1.h) \ $(wildcard include/config/mach/dep2410k.h) \ $(wildcard include/config/mach/xxsvideo.h) \ $(wildcard include/config/mach/im4004.h) \ $(wildcard include/config/mach/ochaya1050.h) \ $(wildcard include/config/mach/lep9261.h) \ $(wildcard include/config/mach/svenmeb.h) \ $(wildcard include/config/mach/fortunet2ne.h) \ $(wildcard include/config/mach/nxhx.h) \ $(wildcard include/config/mach/realview/pb11mp.h) \ $(wildcard include/config/mach/ids500.h) \ $(wildcard include/config/mach/ors/n725.h) \ $(wildcard include/config/mach/hsdarm.h) \ $(wildcard include/config/mach/sha/pon003.h) \ $(wildcard include/config/mach/sha/pon004.h) \ $(wildcard include/config/mach/sha/pon007.h) \ $(wildcard include/config/mach/sha/pon011.h) \ $(wildcard include/config/mach/h6042.h) \ $(wildcard include/config/mach/h6043.h) \ $(wildcard include/config/mach/looxc550.h) \ $(wildcard include/config/mach/cnty/titan.h) \ $(wildcard include/config/mach/app3xx.h) \ $(wildcard include/config/mach/sideoatsgrama.h) \ $(wildcard include/config/mach/treo700p.h) \ $(wildcard include/config/mach/treo700w.h) \ $(wildcard include/config/mach/treo750.h) \ $(wildcard include/config/mach/treo755p.h) \ $(wildcard include/config/mach/ezreganut9200.h) \ $(wildcard include/config/mach/sarge.h) \ $(wildcard include/config/mach/a696.h) \ $(wildcard include/config/mach/turtle.h) \ $(wildcard include/config/mach/mx27/3ds.h) \ $(wildcard include/config/mach/bishop.h) \ $(wildcard include/config/mach/pxx.h) \ $(wildcard include/config/mach/redwood.h) \ $(wildcard include/config/mach/omap/2430dlp.h) \ $(wildcard include/config/mach/omap/2430osk.h) \ $(wildcard include/config/mach/sardine.h) \ $(wildcard include/config/mach/halibut.h) \ $(wildcard include/config/mach/trout.h) \ $(wildcard include/config/mach/goldfish.h) \ $(wildcard include/config/mach/gesbc2440.h) \ $(wildcard include/config/mach/nomad.h) \ $(wildcard include/config/mach/rosalind.h) \ $(wildcard include/config/mach/cc9p9215.h) \ $(wildcard include/config/mach/cc9p9210.h) \ $(wildcard include/config/mach/cc9p9215js.h) \ $(wildcard include/config/mach/cc9p9210js.h) \ $(wildcard include/config/mach/nasffe.h) \ $(wildcard include/config/mach/tn2x0bd.h) \ $(wildcard include/config/mach/gwmpxa.h) \ $(wildcard include/config/mach/exyplus.h) \ $(wildcard include/config/mach/jadoo21.h) \ $(wildcard include/config/mach/looxn560.h) \ $(wildcard include/config/mach/bonsai.h) \ $(wildcard include/config/mach/adsmilgato.h) \ $(wildcard include/config/mach/gba.h) \ $(wildcard include/config/mach/h6044.h) \ $(wildcard include/config/mach/app.h) \ $(wildcard include/config/mach/tct/hammer.h) \ $(wildcard include/config/mach/herald.h) \ $(wildcard include/config/mach/artemis.h) \ $(wildcard include/config/mach/htctitan.h) \ $(wildcard include/config/mach/qranium.h) \ $(wildcard include/config/mach/adx/wsc2.h) \ $(wildcard include/config/mach/adx/medcom.h) \ $(wildcard include/config/mach/bboard.h) \ $(wildcard include/config/mach/cambria.h) \ $(wildcard include/config/mach/mt7xxx.h) \ $(wildcard include/config/mach/matrix512.h) \ $(wildcard include/config/mach/matrix522.h) \ $(wildcard include/config/mach/ipac5010.h) \ $(wildcard include/config/mach/sakura.h) \ $(wildcard include/config/mach/grocx.h) \ $(wildcard include/config/mach/pm9263.h) \ $(wildcard include/config/mach/sim/one.h) \ $(wildcard include/config/mach/acq132.h) \ $(wildcard include/config/mach/datr.h) \ $(wildcard include/config/mach/actux1.h) \ $(wildcard include/config/mach/actux2.h) \ $(wildcard include/config/mach/actux3.h) \ $(wildcard include/config/mach/flexit.h) \ $(wildcard include/config/mach/bh2x0bd.h) \ $(wildcard include/config/mach/atb2002.h) \ $(wildcard include/config/mach/xenon.h) \ $(wildcard include/config/mach/fm607.h) \ $(wildcard include/config/mach/matrix514.h) \ $(wildcard include/config/mach/matrix524.h) \ $(wildcard include/config/mach/inpod.h) \ $(wildcard include/config/mach/jive.h) \ $(wildcard include/config/mach/tll/mx21.h) \ $(wildcard include/config/mach/sbc2800.h) \ $(wildcard include/config/mach/cc7ucamry.h) \ $(wildcard include/config/mach/ubisys/p9/sc15.h) \ $(wildcard include/config/mach/ubisys/p9/ssc2d10.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3.h) \ $(wildcard include/config/mach/aml/m8000.h) \ $(wildcard include/config/mach/snapper/270.h) \ $(wildcard include/config/mach/omap/bbx.h) \ $(wildcard include/config/mach/ucn2410.h) \ $(wildcard include/config/mach/sam9/l9260.h) \ $(wildcard include/config/mach/eti/c2.h) \ $(wildcard include/config/mach/avalanche.h) \ $(wildcard include/config/mach/realview/pb1176.h) \ $(wildcard include/config/mach/dp1500.h) \ $(wildcard include/config/mach/apple/iphone.h) \ $(wildcard include/config/mach/yl9200.h) \ $(wildcard include/config/mach/rd88f5182.h) \ $(wildcard include/config/mach/kurobox/pro.h) \ $(wildcard include/config/mach/se/poet.h) \ $(wildcard include/config/mach/mx31/3ds.h) \ $(wildcard include/config/mach/r270.h) \ $(wildcard include/config/mach/armour21.h) \ $(wildcard include/config/mach/dt2.h) \ $(wildcard include/config/mach/vt4.h) \ $(wildcard include/config/mach/tyco320.h) \ $(wildcard include/config/mach/adma.h) \ $(wildcard include/config/mach/wp188.h) \ $(wildcard include/config/mach/corsica.h) \ $(wildcard include/config/mach/bigeye.h) \ $(wildcard include/config/mach/tll5000.h) \ $(wildcard include/config/mach/bebot.h) \ $(wildcard include/config/mach/qong.h) \ $(wildcard include/config/mach/tcompact.h) \ $(wildcard include/config/mach/puma5.h) \ $(wildcard include/config/mach/elara.h) \ $(wildcard include/config/mach/ellington.h) \ $(wildcard include/config/mach/xda/atom.h) \ $(wildcard include/config/mach/energizer2.h) \ $(wildcard include/config/mach/odin.h) \ $(wildcard include/config/mach/actux4.h) \ $(wildcard include/config/mach/esl/omap.h) \ $(wildcard include/config/mach/omap2evm.h) \ $(wildcard include/config/mach/omap3evm.h) \ $(wildcard include/config/mach/adx/pcu57.h) \ $(wildcard include/config/mach/monaco.h) \ $(wildcard include/config/mach/levante.h) \ $(wildcard include/config/mach/tmxipx425.h) \ $(wildcard include/config/mach/leep.h) \ $(wildcard include/config/mach/raad.h) \ $(wildcard include/config/mach/dns323.h) \ $(wildcard include/config/mach/ap1000.h) \ $(wildcard include/config/mach/a9sam6432.h) \ $(wildcard include/config/mach/shiny.h) \ $(wildcard include/config/mach/omap3/beagle.h) \ $(wildcard include/config/mach/csr/bdb2.h) \ $(wildcard include/config/mach/nokia/n810.h) \ $(wildcard include/config/mach/c270.h) \ $(wildcard include/config/mach/sentry.h) \ $(wildcard include/config/mach/pcm038.h) \ $(wildcard include/config/mach/anc300.h) \ $(wildcard include/config/mach/htckaiser.h) \ $(wildcard include/config/mach/sbat100.h) \ $(wildcard include/config/mach/modunorm.h) \ $(wildcard include/config/mach/pelos/twarm.h) \ $(wildcard include/config/mach/flank.h) \ $(wildcard include/config/mach/sirloin.h) \ $(wildcard include/config/mach/brisket.h) \ $(wildcard include/config/mach/chuck.h) \ $(wildcard include/config/mach/otter.h) \ $(wildcard include/config/mach/davinci/ldk.h) \ $(wildcard include/config/mach/phreedom.h) \ $(wildcard include/config/mach/sg310.h) \ $(wildcard include/config/mach/ts209.h) \ $(wildcard include/config/mach/at91cap9adk.h) \ $(wildcard include/config/mach/tion9315.h) \ $(wildcard include/config/mach/mast.h) \ $(wildcard include/config/mach/pfw.h) \ $(wildcard include/config/mach/yl/p2440.h) \ $(wildcard include/config/mach/zsbc32.h) \ $(wildcard include/config/mach/omap/pace2.h) \ $(wildcard include/config/mach/imx/pace2.h) \ $(wildcard include/config/mach/mx31moboard.h) \ $(wildcard include/config/mach/mx37/3ds.h) \ $(wildcard include/config/mach/rcc.h) \ $(wildcard include/config/mach/arm9.h) \ $(wildcard include/config/mach/vision/ep9307.h) \ $(wildcard include/config/mach/scly1000.h) \ $(wildcard include/config/mach/fontel/ep.h) \ $(wildcard include/config/mach/voiceblue3g.h) \ $(wildcard include/config/mach/tt9200.h) \ $(wildcard include/config/mach/digi2410.h) \ $(wildcard include/config/mach/terastation/pro2.h) \ $(wildcard include/config/mach/linkstation/pro.h) \ $(wildcard include/config/mach/motorola/a780.h) \ $(wildcard include/config/mach/motorola/e6.h) \ $(wildcard include/config/mach/motorola/e2.h) \ $(wildcard include/config/mach/motorola/e680.h) \ $(wildcard include/config/mach/ur2410.h) \ $(wildcard include/config/mach/tas9261.h) \ $(wildcard include/config/mach/hermes/hd.h) \ $(wildcard include/config/mach/perseo/hd.h) \ $(wildcard include/config/mach/stargazer2.h) \ $(wildcard include/config/mach/e350.h) \ $(wildcard include/config/mach/wpcm450.h) \ $(wildcard include/config/mach/cartesio.h) \ $(wildcard include/config/mach/toybox.h) \ $(wildcard include/config/mach/tx27.h) \ $(wildcard include/config/mach/ts409.h) \ $(wildcard include/config/mach/p300.h) \ $(wildcard include/config/mach/xdacomet.h) \ $(wildcard include/config/mach/dexflex2.h) \ $(wildcard include/config/mach/ow.h) \ $(wildcard include/config/mach/armebs3.h) \ $(wildcard include/config/mach/u3.h) \ $(wildcard include/config/mach/smdk2450.h) \ $(wildcard include/config/mach/rsi/ews.h) \ $(wildcard include/config/mach/tnb.h) \ $(wildcard include/config/mach/toepath.h) \ $(wildcard include/config/mach/kb9263.h) \ $(wildcard include/config/mach/mt7108.h) \ $(wildcard include/config/mach/smtr2440.h) \ $(wildcard include/config/mach/manao.h) \ $(wildcard include/config/mach/cm/x300.h) \ $(wildcard include/config/mach/gulfstream/kp.h) \ $(wildcard include/config/mach/lanreadyfn522.h) \ $(wildcard include/config/mach/arma37.h) \ $(wildcard include/config/mach/mendel.h) \ $(wildcard include/config/mach/pelco/iliad.h) \ $(wildcard include/config/mach/unit2p.h) \ $(wildcard include/config/mach/inc20otter.h) \ $(wildcard include/config/mach/at91sam9g20ek.h) \ $(wildcard include/config/mach/storcenter.h) \ $(wildcard include/config/mach/smdk6410.h) \ $(wildcard include/config/mach/u300.h) \ $(wildcard include/config/mach/u500.h) \ $(wildcard include/config/mach/ds9260.h) \ $(wildcard include/config/mach/riverrock.h) \ $(wildcard include/config/mach/scibath.h) \ $(wildcard include/config/mach/at91sam7se512ek.h) \ $(wildcard include/config/mach/wrt350n/v2.h) \ $(wildcard include/config/mach/multimedia.h) \ $(wildcard include/config/mach/marvin.h) \ $(wildcard include/config/mach/x500.h) \ $(wildcard include/config/mach/awlug4lcu.h) \ $(wildcard include/config/mach/palermoc.h) \ $(wildcard include/config/mach/omap/ldp.h) \ $(wildcard include/config/mach/ip500.h) \ $(wildcard include/config/mach/ase2.h) \ $(wildcard include/config/mach/mx35evb.h) \ $(wildcard include/config/mach/aml/m8050.h) \ $(wildcard include/config/mach/mx35/3ds.h) \ $(wildcard include/config/mach/mars.h) \ $(wildcard include/config/mach/neuros/osd2.h) \ $(wildcard include/config/mach/badger.h) \ $(wildcard include/config/mach/trizeps4wl.h) \ $(wildcard include/config/mach/trizeps5.h) \ $(wildcard include/config/mach/marlin.h) \ $(wildcard include/config/mach/ts78xx.h) \ $(wildcard include/config/mach/hpipaq214.h) \ $(wildcard include/config/mach/at572d940dcm.h) \ $(wildcard include/config/mach/ne1board.h) \ $(wildcard include/config/mach/zante.h) \ $(wildcard include/config/mach/sffsdr.h) \ $(wildcard include/config/mach/tw2662.h) \ $(wildcard include/config/mach/vf10xx.h) \ $(wildcard include/config/mach/zoran43xx.h) \ $(wildcard include/config/mach/sonix926.h) \ $(wildcard include/config/mach/celestialsemi.h) \ $(wildcard include/config/mach/cc9m2443js.h) \ $(wildcard include/config/mach/tw5334.h) \ $(wildcard include/config/mach/htcartemis.h) \ $(wildcard include/config/mach/nal/hlite.h) \ $(wildcard include/config/mach/htcvogue.h) \ $(wildcard include/config/mach/smartweb.h) \ $(wildcard include/config/mach/mv86xx.h) \ $(wildcard include/config/mach/mv87xx.h) \ $(wildcard include/config/mach/songyoungho.h) \ $(wildcard include/config/mach/younghotema.h) \ $(wildcard include/config/mach/pcm037.h) \ $(wildcard include/config/mach/mmvp.h) \ $(wildcard include/config/mach/mmap.h) \ $(wildcard include/config/mach/ptid2410.h) \ $(wildcard include/config/mach/james/926.h) \ $(wildcard include/config/mach/fm6000.h) \ $(wildcard include/config/mach/db88f6281/bp.h) \ $(wildcard include/config/mach/rd88f6192/nas.h) \ $(wildcard include/config/mach/rd88f6281.h) \ $(wildcard include/config/mach/db78x00/bp.h) \ $(wildcard include/config/mach/smdk2416.h) \ $(wildcard include/config/mach/oce/spider/si.h) \ $(wildcard include/config/mach/oce/spider/sk.h) \ $(wildcard include/config/mach/rovern6.h) \ $(wildcard include/config/mach/pelco/evolution.h) \ $(wildcard include/config/mach/wbd111.h) \ $(wildcard include/config/mach/elaracpe.h) \ $(wildcard include/config/mach/mabv3.h) \ $(wildcard include/config/mach/mv2120.h) \ $(wildcard include/config/mach/csb737.h) \ $(wildcard include/config/mach/mx51/3ds.h) \ $(wildcard include/config/mach/g900.h) \ $(wildcard include/config/mach/apf27.h) \ $(wildcard include/config/mach/ggus2000.h) \ $(wildcard include/config/mach/omap/2430/mimic.h) \ $(wildcard include/config/mach/imx27lite.h) \ $(wildcard include/config/mach/almex.h) \ $(wildcard include/config/mach/control.h) \ $(wildcard include/config/mach/mba2410.h) \ $(wildcard include/config/mach/volcano.h) \ $(wildcard include/config/mach/zenith.h) \ $(wildcard include/config/mach/muchip.h) \ $(wildcard include/config/mach/magellan.h) \ $(wildcard include/config/mach/usb/a9260.h) \ $(wildcard include/config/mach/usb/a9263.h) \ $(wildcard include/config/mach/qil/a9260.h) \ $(wildcard include/config/mach/cme9210.h) \ $(wildcard include/config/mach/hczh4.h) \ $(wildcard include/config/mach/spearbasic.h) \ $(wildcard include/config/mach/dep2440.h) \ $(wildcard include/config/mach/hdl/gxr.h) \ $(wildcard include/config/mach/hdl/gt.h) \ $(wildcard include/config/mach/hdl/4g.h) \ $(wildcard include/config/mach/s3c6000.h) \ $(wildcard include/config/mach/mmsp2/mdk.h) \ $(wildcard include/config/mach/mpx220.h) \ $(wildcard include/config/mach/kzm/arm11/01.h) \ $(wildcard include/config/mach/htc/polaris.h) \ $(wildcard include/config/mach/htc/kaiser.h) \ $(wildcard include/config/mach/lg/ks20.h) \ $(wildcard include/config/mach/hhgps.h) \ $(wildcard include/config/mach/nokia/n810/wimax.h) \ $(wildcard include/config/mach/insight.h) \ $(wildcard include/config/mach/sapphire.h) \ $(wildcard include/config/mach/csb637xo.h) \ $(wildcard include/config/mach/evisiong.h) \ $(wildcard include/config/mach/stmp37xx.h) \ $(wildcard include/config/mach/stmp378x.h) \ $(wildcard include/config/mach/tnt.h) \ $(wildcard include/config/mach/tbxt.h) \ $(wildcard include/config/mach/playmate.h) \ $(wildcard include/config/mach/pns10.h) \ $(wildcard include/config/mach/eznavi.h) \ $(wildcard include/config/mach/ps4000.h) \ $(wildcard include/config/mach/ezx/a780.h) \ $(wildcard include/config/mach/ezx/e680.h) \ $(wildcard include/config/mach/ezx/a1200.h) \ $(wildcard include/config/mach/ezx/e6.h) \ $(wildcard include/config/mach/ezx/e2.h) \ $(wildcard include/config/mach/ezx/a910.h) \ $(wildcard include/config/mach/cwmx31.h) \ $(wildcard include/config/mach/sl2312.h) \ $(wildcard include/config/mach/blenny.h) \ $(wildcard include/config/mach/ds107.h) \ $(wildcard include/config/mach/dsx07.h) \ $(wildcard include/config/mach/picocom1.h) \ $(wildcard include/config/mach/lynx/wolverine.h) \ $(wildcard include/config/mach/ubisys/p9/sc19.h) \ $(wildcard include/config/mach/kratos/low.h) \ $(wildcard include/config/mach/m700.h) \ $(wildcard include/config/mach/edmini/v2.h) \ $(wildcard include/config/mach/zipit2.h) \ $(wildcard include/config/mach/hslfemtocell.h) \ $(wildcard include/config/mach/daintree/at91.h) \ $(wildcard include/config/mach/sg560usb.h) \ $(wildcard include/config/mach/omap3/pandora.h) \ $(wildcard include/config/mach/usr8200.h) \ $(wildcard include/config/mach/s1s65k.h) \ $(wildcard include/config/mach/s2s65a.h) \ $(wildcard include/config/mach/icore.h) \ $(wildcard include/config/mach/mss2.h) \ $(wildcard include/config/mach/belmont.h) \ $(wildcard include/config/mach/asusp525.h) \ $(wildcard include/config/mach/lb88rc8480.h) \ $(wildcard include/config/mach/hipxa.h) \ $(wildcard include/config/mach/mx25/3ds.h) \ $(wildcard include/config/mach/m800.h) \ $(wildcard include/config/mach/omap3530/lv/som.h) \ $(wildcard include/config/mach/prima/evb.h) \ $(wildcard include/config/mach/mx31bt1.h) \ $(wildcard include/config/mach/atlas4/evb.h) \ $(wildcard include/config/mach/mx31cicada.h) \ $(wildcard include/config/mach/mi424wr.h) \ $(wildcard include/config/mach/axs/ultrax.h) \ $(wildcard include/config/mach/at572d940deb.h) \ $(wildcard include/config/mach/davinci/da830/evm.h) \ $(wildcard include/config/mach/ep9302.h) \ $(wildcard include/config/mach/at572d940hfeb.h) \ $(wildcard include/config/mach/cybook3.h) \ $(wildcard include/config/mach/wdg002.h) \ $(wildcard include/config/mach/sg560adsl.h) \ $(wildcard include/config/mach/nextio/n2800/ica.h) \ $(wildcard include/config/mach/dove/db.h) \ $(wildcard include/config/mach/marvell/newdb.h) \ $(wildcard include/config/mach/vandihud.h) \ $(wildcard include/config/mach/magx/e8.h) \ $(wildcard include/config/mach/magx/z6.h) \ $(wildcard include/config/mach/magx/v8.h) \ $(wildcard include/config/mach/magx/u9.h) \ $(wildcard include/config/mach/toughcf08.h) \ $(wildcard include/config/mach/zw4400.h) \ $(wildcard include/config/mach/marat91.h) \ $(wildcard include/config/mach/overo.h) \ $(wildcard include/config/mach/at2440evb.h) \ $(wildcard include/config/mach/neocore926.h) \ $(wildcard include/config/mach/wnr854t.h) \ $(wildcard include/config/mach/imx27.h) \ $(wildcard include/config/mach/moose/db.h) \ $(wildcard include/config/mach/fab4.h) \ $(wildcard include/config/mach/htcdiamond.h) \ $(wildcard include/config/mach/fiona.h) \ $(wildcard include/config/mach/mxc30030/x.h) \ $(wildcard include/config/mach/bmp1000.h) \ $(wildcard include/config/mach/logi9200.h) \ $(wildcard include/config/mach/tqma31.h) \ $(wildcard include/config/mach/ccw9p9215js.h) \ $(wildcard include/config/mach/rd88f5181l/ge.h) \ $(wildcard include/config/mach/sifmain.h) \ $(wildcard include/config/mach/sam9/l9261.h) \ $(wildcard include/config/mach/cc9m2443.h) \ $(wildcard include/config/mach/xaria300.h) \ $(wildcard include/config/mach/it9200.h) \ $(wildcard include/config/mach/rd88f5181l/fxo.h) \ $(wildcard include/config/mach/kriss/sensor.h) \ $(wildcard include/config/mach/pilz/pmi5.h) \ $(wildcard include/config/mach/jade.h) \ $(wildcard include/config/mach/ks8695/softplc.h) \ $(wildcard include/config/mach/gprisc3.h) \ $(wildcard include/config/mach/stamp9g20.h) \ $(wildcard include/config/mach/smdk6430.h) \ $(wildcard include/config/mach/smdkc100.h) \ $(wildcard include/config/mach/tavorevb.h) \ $(wildcard include/config/mach/saar.h) \ $(wildcard include/config/mach/deister/eyecam.h) \ $(wildcard include/config/mach/at91sam9m10g45ek.h) \ $(wildcard include/config/mach/linkstation/produo.h) \ $(wildcard include/config/mach/hit/b0.h) \ $(wildcard include/config/mach/adx/rmu.h) \ $(wildcard include/config/mach/xg/cpe/main.h) \ $(wildcard include/config/mach/edb9407a.h) \ $(wildcard include/config/mach/dtb9608.h) \ $(wildcard include/config/mach/em104v1.h) \ $(wildcard include/config/mach/demo.h) \ $(wildcard include/config/mach/logi9260.h) \ $(wildcard include/config/mach/mx31/exm32.h) \ $(wildcard include/config/mach/usb/a9g20.h) \ $(wildcard include/config/mach/picproje2008.h) \ $(wildcard include/config/mach/cs/e9315.h) \ $(wildcard include/config/mach/qil/a9g20.h) \ $(wildcard include/config/mach/sha/pon020.h) \ $(wildcard include/config/mach/nad.h) \ $(wildcard include/config/mach/sbc35/a9260.h) \ $(wildcard include/config/mach/sbc35/a9g20.h) \ $(wildcard include/config/mach/davinci/beginning.h) \ $(wildcard include/config/mach/uwc.h) \ $(wildcard include/config/mach/mxlads.h) \ $(wildcard include/config/mach/htcnike.h) \ $(wildcard include/config/mach/deister/pxa270.h) \ $(wildcard include/config/mach/cme9210js.h) \ $(wildcard include/config/mach/cc9p9360.h) \ $(wildcard include/config/mach/mocha.h) \ $(wildcard include/config/mach/wapd170ag.h) \ $(wildcard include/config/mach/linkstation/mini.h) \ $(wildcard include/config/mach/afeb9260.h) \ $(wildcard include/config/mach/w90x900.h) \ $(wildcard include/config/mach/w90x700.h) \ $(wildcard include/config/mach/kt300ip.h) \ $(wildcard include/config/mach/kt300ip/g20.h) \ $(wildcard include/config/mach/srcm.h) \ $(wildcard include/config/mach/wlnx/9260.h) \ $(wildcard include/config/mach/openmoko/gta03.h) \ $(wildcard include/config/mach/osprey2.h) \ $(wildcard include/config/mach/kbio9260.h) \ $(wildcard include/config/mach/ginza.h) \ $(wildcard include/config/mach/a636n.h) \ $(wildcard include/config/mach/imx27ipcam.h) \ $(wildcard include/config/mach/nemoc.h) \ $(wildcard include/config/mach/geneva.h) \ $(wildcard include/config/mach/htcpharos.h) \ $(wildcard include/config/mach/neonc.h) \ $(wildcard include/config/mach/nas7100.h) \ $(wildcard include/config/mach/teuphone.h) \ $(wildcard include/config/mach/annax/eth2.h) \ $(wildcard include/config/mach/csb733.h) \ $(wildcard include/config/mach/bk3.h) \ $(wildcard include/config/mach/omap/em32.h) \ $(wildcard include/config/mach/et9261cp.h) \ $(wildcard include/config/mach/jasperc.h) \ $(wildcard include/config/mach/issi/arm9.h) \ $(wildcard include/config/mach/ued.h) \ $(wildcard include/config/mach/esiblade.h) \ $(wildcard include/config/mach/eye02.h) \ $(wildcard include/config/mach/imx27kbd.h) \ $(wildcard include/config/mach/sst61vc010/fpga.h) \ $(wildcard include/config/mach/kixvp435.h) \ $(wildcard include/config/mach/kixnp435.h) \ $(wildcard include/config/mach/africa.h) \ $(wildcard include/config/mach/nh233.h) \ $(wildcard include/config/mach/rd88f6183ap/ge.h) \ $(wildcard include/config/mach/bcm4760.h) \ $(wildcard include/config/mach/eddy/v2.h) \ $(wildcard include/config/mach/realview/pba8.h) \ $(wildcard include/config/mach/hid/a7.h) \ $(wildcard include/config/mach/hero.h) \ $(wildcard include/config/mach/omap/poseidon.h) \ $(wildcard include/config/mach/realview/pbx.h) \ $(wildcard include/config/mach/micro9s.h) \ $(wildcard include/config/mach/mako.h) \ $(wildcard include/config/mach/xdaflame.h) \ $(wildcard include/config/mach/phidget/sbc2.h) \ $(wildcard include/config/mach/limestone.h) \ $(wildcard include/config/mach/iprobe/c32.h) \ $(wildcard include/config/mach/rut100.h) \ $(wildcard include/config/mach/asusp535.h) \ $(wildcard include/config/mach/htcraphael.h) \ $(wildcard include/config/mach/sygdg1.h) \ $(wildcard include/config/mach/sygdg2.h) \ $(wildcard include/config/mach/seoul.h) \ $(wildcard include/config/mach/salerno.h) \ $(wildcard include/config/mach/ucn/s3c64xx.h) \ $(wildcard include/config/mach/msm7201a.h) \ $(wildcard include/config/mach/lpr1.h) \ $(wildcard include/config/mach/armadillo500fx.h) \ $(wildcard include/config/mach/g3evm.h) \ $(wildcard include/config/mach/z3/dm355.h) \ $(wildcard include/config/mach/w90p910evb.h) \ $(wildcard include/config/mach/w90p920evb.h) \ $(wildcard include/config/mach/w90p950evb.h) \ $(wildcard include/config/mach/w90n960evb.h) \ $(wildcard include/config/mach/camhd.h) \ $(wildcard include/config/mach/mvc100.h) \ $(wildcard include/config/mach/electrum/200.h) \ $(wildcard include/config/mach/htcjade.h) \ $(wildcard include/config/mach/memphis.h) \ $(wildcard include/config/mach/imx27sbc.h) \ $(wildcard include/config/mach/lextar.h) \ $(wildcard include/config/mach/mv88f6281gtw/ge.h) \ $(wildcard include/config/mach/ncp.h) \ $(wildcard include/config/mach/z32an.h) \ $(wildcard include/config/mach/tmq/capd.h) \ $(wildcard include/config/mach/omap3/wl.h) \ $(wildcard include/config/mach/chumby.h) \ $(wildcard include/config/mach/atsarm9.h) \ $(wildcard include/config/mach/davinci/dm365/evm.h) \ $(wildcard include/config/mach/bahamas.h) \ $(wildcard include/config/mach/das.h) \ $(wildcard include/config/mach/minidas.h) \ $(wildcard include/config/mach/vk1000.h) \ $(wildcard include/config/mach/centro.h) \ $(wildcard include/config/mach/ctera/2bay.h) \ $(wildcard include/config/mach/edgeconnect.h) \ $(wildcard include/config/mach/nd27000.h) \ $(wildcard include/config/mach/gemalto/cobra.h) \ $(wildcard include/config/mach/ingelabs/comet.h) \ $(wildcard include/config/mach/pollux/wiz.h) \ $(wildcard include/config/mach/blackstone.h) \ $(wildcard include/config/mach/topaz.h) \ $(wildcard include/config/mach/aixle.h) \ $(wildcard include/config/mach/mw998.h) \ $(wildcard include/config/mach/nokia/rx51.h) \ $(wildcard include/config/mach/vsc5605ev.h) \ $(wildcard include/config/mach/nt98700dk.h) \ $(wildcard include/config/mach/icontact.h) \ $(wildcard include/config/mach/swarco/frcpu.h) \ $(wildcard include/config/mach/swarco/scpu.h) \ $(wildcard include/config/mach/bbox/p16.h) \ $(wildcard include/config/mach/bstd.h) \ $(wildcard include/config/mach/sbc2440ii.h) \ $(wildcard include/config/mach/pcm034.h) \ $(wildcard include/config/mach/neso.h) \ $(wildcard include/config/mach/wlnx/9g20.h) \ $(wildcard include/config/mach/omap/zoom2.h) \ $(wildcard include/config/mach/totemnova.h) \ $(wildcard include/config/mach/c5000.h) \ $(wildcard include/config/mach/unipo/at91sam9263.h) \ $(wildcard include/config/mach/ethernut5.h) \ $(wildcard include/config/mach/arm11.h) \ $(wildcard include/config/mach/cpuat9260.h) \ $(wildcard include/config/mach/cpupxa255.h) \ $(wildcard include/config/mach/cpuimx27.h) \ $(wildcard include/config/mach/cheflux.h) \ $(wildcard include/config/mach/eb/cpux9k2.h) \ $(wildcard include/config/mach/opcotec.h) \ $(wildcard include/config/mach/yt.h) \ $(wildcard include/config/mach/motoq.h) \ $(wildcard include/config/mach/bsb1.h) \ $(wildcard include/config/mach/acs5k.h) \ $(wildcard include/config/mach/milan.h) \ $(wildcard include/config/mach/quartzv2.h) \ $(wildcard include/config/mach/rsvp.h) \ $(wildcard include/config/mach/rmp200.h) \ $(wildcard include/config/mach/snapper/9260.h) \ $(wildcard include/config/mach/dsm320.h) \ $(wildcard include/config/mach/adsgcm.h) \ $(wildcard include/config/mach/ase2/400.h) \ $(wildcard include/config/mach/pizza.h) \ $(wildcard include/config/mach/spot/ngpl.h) \ $(wildcard include/config/mach/armata.h) \ $(wildcard include/config/mach/exeda.h) \ $(wildcard include/config/mach/mx31sf005.h) \ $(wildcard include/config/mach/f5d8231/4/v2.h) \ $(wildcard include/config/mach/q2440.h) \ $(wildcard include/config/mach/qq2440.h) \ $(wildcard include/config/mach/mini2440.h) \ $(wildcard include/config/mach/colibri300.h) \ $(wildcard include/config/mach/jades.h) \ $(wildcard include/config/mach/spark.h) \ $(wildcard include/config/mach/benzina.h) \ $(wildcard include/config/mach/blaze.h) \ $(wildcard include/config/mach/linkstation/ls/hgl.h) \ $(wildcard include/config/mach/htcvenus.h) \ $(wildcard include/config/mach/sony/prs505.h) \ $(wildcard include/config/mach/hanlin/v3.h) \ $(wildcard include/config/mach/sapphira.h) \ $(wildcard include/config/mach/dack/sda/01.h) \ $(wildcard include/config/mach/armbox.h) \ $(wildcard include/config/mach/harris/rvp.h) \ $(wildcard include/config/mach/ribaldo.h) \ $(wildcard include/config/mach/agora.h) \ $(wildcard include/config/mach/omap3/mini.h) \ $(wildcard include/config/mach/a9sam6432/b.h) \ $(wildcard include/config/mach/usg2410.h) \ $(wildcard include/config/mach/pc72052/i10/revb.h) \ $(wildcard include/config/mach/mx35/exm32.h) \ $(wildcard include/config/mach/topas910.h) \ $(wildcard include/config/mach/hyena.h) \ $(wildcard include/config/mach/pospax.h) \ $(wildcard include/config/mach/hdl/gx.h) \ $(wildcard include/config/mach/ctera/4bay.h) \ $(wildcard include/config/mach/ctera/plug/c.h) \ $(wildcard include/config/mach/crwea/plug/i.h) \ $(wildcard include/config/mach/egauge2.h) \ $(wildcard include/config/mach/didj.h) \ $(wildcard include/config/mach/meister.h) \ $(wildcard include/config/mach/htcblackstone.h) \ $(wildcard include/config/mach/cpuat9g20.h) \ $(wildcard include/config/mach/smdk6440.h) \ $(wildcard include/config/mach/omap/35xx/mvp.h) \ $(wildcard include/config/mach/ctera/plug/i.h) \ $(wildcard include/config/mach/pvg610.h) \ $(wildcard include/config/mach/hprw6815.h) \ $(wildcard include/config/mach/omap3/oswald.h) \ $(wildcard include/config/mach/nas4220b.h) \ $(wildcard include/config/mach/htcraphael/cdma.h) \ $(wildcard include/config/mach/htcdiamond/cdma.h) \ $(wildcard include/config/mach/scaler.h) \ $(wildcard include/config/mach/zylonite2.h) \ $(wildcard include/config/mach/aspenite.h) \ $(wildcard include/config/mach/teton.h) \ $(wildcard include/config/mach/ttc/dkb.h) \ $(wildcard include/config/mach/bishop2.h) \ $(wildcard include/config/mach/ippv5.h) \ $(wildcard include/config/mach/farm926.h) \ $(wildcard include/config/mach/mmccpu.h) \ $(wildcard include/config/mach/sgmsfl.h) \ $(wildcard include/config/mach/tt8000.h) \ $(wildcard include/config/mach/zrn4300lp.h) \ $(wildcard include/config/mach/mptc.h) \ $(wildcard include/config/mach/h6051.h) \ $(wildcard include/config/mach/pvg610/101.h) \ $(wildcard include/config/mach/stamp9261/pc/evb.h) \ $(wildcard include/config/mach/pelco/odysseus.h) \ $(wildcard include/config/mach/tny/a9260.h) \ $(wildcard include/config/mach/tny/a9g20.h) \ $(wildcard include/config/mach/aesop/mp2530f.h) \ $(wildcard include/config/mach/dx900.h) \ $(wildcard include/config/mach/cpodc2.h) \ $(wildcard include/config/mach/tilt/8925.h) \ $(wildcard include/config/mach/davinci/dm357/evm.h) \ $(wildcard include/config/mach/swordfish.h) \ $(wildcard include/config/mach/corvus.h) \ $(wildcard include/config/mach/taurus.h) \ $(wildcard include/config/mach/axm.h) \ $(wildcard include/config/mach/axc.h) \ $(wildcard include/config/mach/baby.h) \ $(wildcard include/config/mach/mp200.h) \ $(wildcard include/config/mach/pcm043.h) \ $(wildcard include/config/mach/hanlin/v3c.h) \ $(wildcard include/config/mach/kbk9g20.h) \ $(wildcard include/config/mach/adsturbog5.h) \ $(wildcard include/config/mach/avenger/lite1.h) \ $(wildcard include/config/mach/suc.h) \ $(wildcard include/config/mach/at91sam7s256.h) \ $(wildcard include/config/mach/mendoza.h) \ $(wildcard include/config/mach/kira.h) \ $(wildcard include/config/mach/mx1hbm.h) \ $(wildcard include/config/mach/quatro43xx.h) \ $(wildcard include/config/mach/quatro4230.h) \ $(wildcard include/config/mach/nsb400.h) \ $(wildcard include/config/mach/drp255.h) \ $(wildcard include/config/mach/thoth.h) \ $(wildcard include/config/mach/firestone.h) \ $(wildcard include/config/mach/asusp750.h) \ $(wildcard include/config/mach/ctera/dl.h) \ $(wildcard include/config/mach/socr.h) \ $(wildcard include/config/mach/htcoxygen.h) \ $(wildcard include/config/mach/heroc.h) \ $(wildcard include/config/mach/zeno6800.h) \ $(wildcard include/config/mach/sc2mcs.h) \ $(wildcard include/config/mach/gene100.h) \ $(wildcard include/config/mach/as353x.h) \ $(wildcard include/config/mach/sheevaplug.h) \ $(wildcard include/config/mach/at91sam9g20.h) \ $(wildcard include/config/mach/mv88f6192gtw/fe.h) \ $(wildcard include/config/mach/cc9200.h) \ $(wildcard include/config/mach/sm9200.h) \ $(wildcard include/config/mach/tp9200.h) \ $(wildcard include/config/mach/snapperdv.h) \ $(wildcard include/config/mach/avengers/lite.h) \ $(wildcard include/config/mach/avengers/lite1.h) \ $(wildcard include/config/mach/omap3axon.h) \ $(wildcard include/config/mach/ma8xx.h) \ $(wildcard include/config/mach/mp201ek.h) \ $(wildcard include/config/mach/davinci/tux.h) \ $(wildcard include/config/mach/mpa1600.h) \ $(wildcard include/config/mach/pelco/troy.h) \ $(wildcard include/config/mach/nsb667.h) \ $(wildcard include/config/mach/rovers5/4mpix.h) \ $(wildcard include/config/mach/twocom.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3r2.h) \ $(wildcard include/config/mach/hero/espresso.h) \ $(wildcard include/config/mach/afeusb.h) \ $(wildcard include/config/mach/t830.h) \ $(wildcard include/config/mach/spd8020/cc.h) \ $(wildcard include/config/mach/om/3d7k.h) \ $(wildcard include/config/mach/picocom2.h) \ $(wildcard include/config/mach/uwg4mx27.h) \ $(wildcard include/config/mach/uwg4mx31.h) \ $(wildcard include/config/mach/cherry.h) \ $(wildcard include/config/mach/mx51/babbage.h) \ $(wildcard include/config/mach/s3c2440turkiye.h) \ $(wildcard include/config/mach/tx37.h) \ $(wildcard include/config/mach/sbc2800/9g20.h) \ $(wildcard include/config/mach/benzglb.h) \ $(wildcard include/config/mach/benztd.h) \ $(wildcard include/config/mach/cartesio/plus.h) \ $(wildcard include/config/mach/solrad/g20.h) \ $(wildcard include/config/mach/mx27wallace.h) \ $(wildcard include/config/mach/fmzwebmodul.h) \ $(wildcard include/config/mach/rd78x00/masa.h) \ $(wildcard include/config/mach/smallogger.h) \ $(wildcard include/config/mach/ccw9p9215.h) \ $(wildcard include/config/mach/dm355/leopard.h) \ $(wildcard include/config/mach/ts219.h) \ $(wildcard include/config/mach/tny/a9263.h) \ $(wildcard include/config/mach/apollo.h) \ $(wildcard include/config/mach/at91cap9stk.h) \ $(wildcard include/config/mach/spc300.h) \ $(wildcard include/config/mach/eko.h) \ $(wildcard include/config/mach/ccw9m2443.h) \ $(wildcard include/config/mach/ccw9m2443js.h) \ $(wildcard include/config/mach/m2m/router/device.h) \ $(wildcard include/config/mach/star9104nas.h) \ $(wildcard include/config/mach/pca100.h) \ $(wildcard include/config/mach/z3/dm365/mod/01.h) \ $(wildcard include/config/mach/hipox.h) \ $(wildcard include/config/mach/omap3/piteds.h) \ $(wildcard include/config/mach/bm150r.h) \ $(wildcard include/config/mach/tbone.h) \ $(wildcard include/config/mach/merlin.h) \ $(wildcard include/config/mach/falcon.h) \ $(wildcard include/config/mach/davinci/da850/evm.h) \ $(wildcard include/config/mach/s5p6440.h) \ $(wildcard include/config/mach/at91sam9g10ek.h) \ $(wildcard include/config/mach/omap/4430sdp.h) \ $(wildcard include/config/mach/lpc313x.h) \ $(wildcard include/config/mach/magx/zn5.h) \ $(wildcard include/config/mach/magx/em30.h) \ $(wildcard include/config/mach/magx/ve66.h) \ $(wildcard include/config/mach/meesc.h) \ $(wildcard include/config/mach/otc570.h) \ $(wildcard include/config/mach/bcu2412.h) \ $(wildcard include/config/mach/beacon.h) \ $(wildcard include/config/mach/actia/tgw.h) \ $(wildcard include/config/mach/e4430.h) \ $(wildcard include/config/mach/ql300.h) \ $(wildcard include/config/mach/btmavb101.h) \ $(wildcard include/config/mach/btmawb101.h) \ $(wildcard include/config/mach/sq201.h) \ $(wildcard include/config/mach/quatro45xx.h) \ $(wildcard include/config/mach/openpad.h) \ $(wildcard include/config/mach/tx25.h) \ $(wildcard include/config/mach/omap3/torpedo.h) \ $(wildcard include/config/mach/htcraphael/k.h) \ $(wildcard include/config/mach/lal43.h) \ $(wildcard include/config/mach/htcraphael/cdma500.h) \ $(wildcard include/config/mach/anw6410.h) \ $(wildcard include/config/mach/htcprophet.h) \ $(wildcard include/config/mach/cfa/10022.h) \ $(wildcard include/config/mach/imx27/visstrim/m10.h) \ $(wildcard include/config/mach/px2imx27.h) \ $(wildcard include/config/mach/stm3210e/eval.h) \ $(wildcard include/config/mach/dvs10.h) \ $(wildcard include/config/mach/portuxg20.h) \ $(wildcard include/config/mach/arm/spv.h) \ $(wildcard include/config/mach/smdkc110.h) \ $(wildcard include/config/mach/cabespresso.h) \ $(wildcard include/config/mach/hmc800.h) \ $(wildcard include/config/mach/sholes.h) \ $(wildcard include/config/mach/btmxc31.h) \ $(wildcard include/config/mach/dt501.h) \ $(wildcard include/config/mach/ktx.h) \ $(wildcard include/config/mach/omap3517evm.h) \ $(wildcard include/config/mach/netspace/v2.h) \ $(wildcard include/config/mach/netspace/max/v2.h) \ $(wildcard include/config/mach/d2net/v2.h) \ $(wildcard include/config/mach/net2big/v2.h) \ $(wildcard include/config/mach/net4big/v2.h) \ $(wildcard include/config/mach/net5big/v2.h) \ $(wildcard include/config/mach/endb2443.h) \ $(wildcard include/config/mach/inetspace/v2.h) \ $(wildcard include/config/mach/tros.h) \ $(wildcard include/config/mach/pelco/homer.h) \ $(wildcard include/config/mach/ofsp8.h) \ $(wildcard include/config/mach/at91sam9g45ekes.h) \ $(wildcard include/config/mach/guf/cupid.h) \ $(wildcard include/config/mach/eab1r.h) \ $(wildcard include/config/mach/cordoba.h) \ $(wildcard include/config/mach/irvine.h) \ $(wildcard include/config/mach/sff772.h) \ $(wildcard include/config/mach/pelco/milano.h) \ $(wildcard include/config/mach/pc7302.h) \ $(wildcard include/config/mach/bip6000.h) \ $(wildcard include/config/mach/silvermoon.h) \ $(wildcard include/config/mach/vc0830.h) \ $(wildcard include/config/mach/dt430.h) \ $(wildcard include/config/mach/ji42pf.h) \ $(wildcard include/config/mach/gnet/ksm.h) \ $(wildcard include/config/mach/gnet/sgm.h) \ $(wildcard include/config/mach/gnet/sgr.h) \ $(wildcard include/config/mach/omap3/icetekevm.h) \ $(wildcard include/config/mach/pnp.h) \ $(wildcard include/config/mach/ctera/2bay/k.h) \ $(wildcard include/config/mach/ctera/2bay/u.h) \ $(wildcard include/config/mach/sas/c.h) \ $(wildcard include/config/mach/vma2315.h) \ $(wildcard include/config/mach/vcs.h) \ $(wildcard include/config/mach/spear600.h) \ $(wildcard include/config/mach/spear300.h) \ $(wildcard include/config/mach/spear1300.h) \ $(wildcard include/config/mach/lilly1131.h) \ $(wildcard include/config/mach/arvoo/ax301.h) \ $(wildcard include/config/mach/mapphone.h) \ $(wildcard include/config/mach/legend.h) \ $(wildcard include/config/mach/salsa.h) \ $(wildcard include/config/mach/lounge.h) \ $(wildcard include/config/mach/vision.h) \ $(wildcard include/config/mach/vmb20.h) \ $(wildcard include/config/mach/hy2410.h) \ $(wildcard include/config/mach/hy9315.h) \ $(wildcard include/config/mach/bullwinkle.h) \ $(wildcard include/config/mach/arm/ultimator2.h) \ $(wildcard include/config/mach/vs/v210.h) \ $(wildcard include/config/mach/vs/v212.h) \ $(wildcard include/config/mach/hmt.h) \ $(wildcard include/config/mach/suen3.h) \ $(wildcard include/config/mach/vesper.h) \ $(wildcard include/config/mach/str9.h) \ $(wildcard include/config/mach/omap3/wl/ff.h) \ $(wildcard include/config/mach/simcom.h) \ $(wildcard include/config/mach/mcwebio.h) \ $(wildcard include/config/mach/omap3/phrazer.h) \ $(wildcard include/config/mach/darwin.h) \ $(wildcard include/config/mach/oratiscomu.h) \ $(wildcard include/config/mach/rtsbc20.h) \ $(wildcard include/config/mach/i780.h) \ $(wildcard include/config/mach/gemini324.h) \ $(wildcard include/config/mach/oratislan.h) \ $(wildcard include/config/mach/oratisalog.h) \ $(wildcard include/config/mach/oratismadi.h) \ $(wildcard include/config/mach/oratisot16.h) \ $(wildcard include/config/mach/oratisdesk.h) \ $(wildcard include/config/mach/v2p/ca9.h) \ $(wildcard include/config/mach/sintexo.h) \ $(wildcard include/config/mach/cm3389.h) \ $(wildcard include/config/mach/omap3/cio.h) \ $(wildcard include/config/mach/sgh/i900.h) \ $(wildcard include/config/mach/bst100.h) \ $(wildcard include/config/mach/passion.h) \ $(wildcard include/config/mach/indesign/at91sam.h) \ $(wildcard include/config/mach/c4/badger.h) \ $(wildcard include/config/mach/c4/viper.h) \ $(wildcard include/config/mach/d2net.h) \ $(wildcard include/config/mach/bigdisk.h) \ $(wildcard include/config/mach/notalvision.h) \ $(wildcard include/config/mach/omap3/kboc.h) \ $(wildcard include/config/mach/cyclone.h) \ $(wildcard include/config/mach/ninja.h) \ $(wildcard include/config/mach/at91sam9g20ek/2mmc.h) \ $(wildcard include/config/mach/bcmring.h) \ $(wildcard include/config/mach/resol/dl2.h) \ $(wildcard include/config/mach/ifosw.h) \ $(wildcard include/config/mach/htcrhodium.h) \ $(wildcard include/config/mach/htctopaz.h) \ $(wildcard include/config/mach/matrix504.h) \ $(wildcard include/config/mach/mrfsa.h) \ $(wildcard include/config/mach/sc/p270.h) \ $(wildcard include/config/mach/atlas5/evb.h) \ $(wildcard include/config/mach/pelco/lobox.h) \ $(wildcard include/config/mach/dilax/pcu200.h) \ $(wildcard include/config/mach/leonardo.h) \ $(wildcard include/config/mach/zoran/approach7.h) \ $(wildcard include/config/mach/dp6xx.h) \ $(wildcard include/config/mach/bcm2153/vesper.h) \ $(wildcard include/config/mach/passionc.h) \ $(wildcard include/config/mach/clickc.h) \ $(wildcard include/config/mach/zb/gateway.h) \ $(wildcard include/config/mach/tazcard.h) \ $(wildcard include/config/mach/tazdev.h) \ $(wildcard include/config/mach/annax/cb/arm.h) \ $(wildcard include/config/mach/annax/dm3.h) \ $(wildcard include/config/mach/cerebric.h) \ $(wildcard include/config/mach/orca.h) \ $(wildcard include/config/mach/pc9260.h) \ $(wildcard include/config/mach/ems285a.h) \ $(wildcard include/config/mach/gec2410.h) \ $(wildcard include/config/mach/gec2440.h) \ $(wildcard include/config/mach/arch/mw903.h) \ $(wildcard include/config/mach/mw2440.h) \ $(wildcard include/config/mach/ecac2378.h) \ $(wildcard include/config/mach/tazkiosk.h) \ $(wildcard include/config/mach/whiterabbit/mch.h) \ $(wildcard include/config/mach/sbox9263.h) \ $(wildcard include/config/mach/oreo.h) \ $(wildcard include/config/mach/smdk6442.h) \ $(wildcard include/config/mach/openrd/base.h) \ $(wildcard include/config/mach/incredible.h) \ $(wildcard include/config/mach/incrediblec.h) \ $(wildcard include/config/mach/heroct.h) \ $(wildcard include/config/mach/mmnet1000.h) \ $(wildcard include/config/mach/devkit8000.h) \ $(wildcard include/config/mach/devkit9000.h) \ $(wildcard include/config/mach/mx31txtr.h) \ $(wildcard include/config/mach/u380.h) \ $(wildcard include/config/mach/hualu/board.h) \ $(wildcard include/config/mach/npcmx50.h) \ $(wildcard include/config/mach/mx51/lange51.h) \ $(wildcard include/config/mach/mx51/lange52.h) \ $(wildcard include/config/mach/riom.h) \ $(wildcard include/config/mach/comcas.h) \ $(wildcard include/config/mach/wsi/mx27.h) \ $(wildcard include/config/mach/cm/t35.h) \ $(wildcard include/config/mach/net2big.h) \ $(wildcard include/config/mach/motorola/a1600.h) \ $(wildcard include/config/mach/igep0020.h) \ $(wildcard include/config/mach/igep0010.h) \ $(wildcard include/config/mach/mv6281gtwge2.h) \ $(wildcard include/config/mach/scat100.h) \ $(wildcard include/config/mach/sanmina.h) \ $(wildcard include/config/mach/momento.h) \ $(wildcard include/config/mach/nuc9xx.h) \ $(wildcard include/config/mach/nuc910evb.h) \ $(wildcard include/config/mach/nuc920evb.h) \ $(wildcard include/config/mach/nuc950evb.h) \ $(wildcard include/config/mach/nuc945evb.h) \ $(wildcard include/config/mach/nuc960evb.h) \ $(wildcard include/config/mach/nuc932evb.h) \ $(wildcard include/config/mach/nuc900.h) \ $(wildcard include/config/mach/sd1soc.h) \ $(wildcard include/config/mach/ln2440bc.h) \ $(wildcard include/config/mach/rsbc.h) \ $(wildcard include/config/mach/openrd/client.h) \ $(wildcard include/config/mach/hpipaq11x.h) \ $(wildcard include/config/mach/wayland.h) \ $(wildcard include/config/mach/acnbsx102.h) \ $(wildcard include/config/mach/hwat91.h) \ $(wildcard include/config/mach/at91sam9263cs.h) \ $(wildcard include/config/mach/csb732.h) \ $(wildcard include/config/mach/u8500.h) \ $(wildcard include/config/mach/huqiu.h) \ $(wildcard include/config/mach/mx51/kunlun.h) \ $(wildcard include/config/mach/pmt1g.h) \ $(wildcard include/config/mach/htcelf.h) \ $(wildcard include/config/mach/armadillo420.h) \ $(wildcard include/config/mach/armadillo440.h) \ $(wildcard include/config/mach/u/chip/dual/arm.h) \ $(wildcard include/config/mach/csr/bdb3.h) \ $(wildcard include/config/mach/dolby/cat1018.h) \ $(wildcard include/config/mach/hy9307.h) \ $(wildcard include/config/mach/a/es.h) \ $(wildcard include/config/mach/davinci/irif.h) \ $(wildcard include/config/mach/agama9263.h) \ $(wildcard include/config/mach/marvell/jasper.h) \ $(wildcard include/config/mach/flint.h) \ $(wildcard include/config/mach/tavorevb3.h) \ $(wildcard include/config/mach/sch/m490.h) \ $(wildcard include/config/mach/rbl01.h) \ $(wildcard include/config/mach/omnifi.h) \ $(wildcard include/config/mach/otavalo.h) \ $(wildcard include/config/mach/sienna.h) \ $(wildcard include/config/mach/htc/excalibur/s620.h) \ $(wildcard include/config/mach/htc/opal.h) \ $(wildcard include/config/mach/touchbook.h) \ $(wildcard include/config/mach/latte.h) \ $(wildcard include/config/mach/xa200.h) \ $(wildcard include/config/mach/nimrod.h) \ $(wildcard include/config/mach/cc9p9215/3g.h) \ $(wildcard include/config/mach/cc9p9215/3gjs.h) \ $(wildcard include/config/mach/tk71.h) \ $(wildcard include/config/mach/comham3525.h) \ $(wildcard include/config/mach/mx31erebus.h) \ $(wildcard include/config/mach/mcardmx27.h) \ $(wildcard include/config/mach/paradise.h) \ $(wildcard include/config/mach/tide.h) \ $(wildcard include/config/mach/wzl2440.h) \ $(wildcard include/config/mach/sdrdemo.h) \ $(wildcard include/config/mach/ethercan2.h) \ $(wildcard include/config/mach/ecmimg20.h) \ $(wildcard include/config/mach/omap/dragon.h) \ $(wildcard include/config/mach/halo.h) \ $(wildcard include/config/mach/huangshan.h) \ $(wildcard include/config/mach/vl/ma2sc.h) \ $(wildcard include/config/mach/raumfeld/rc.h) \ $(wildcard include/config/mach/raumfeld/connector.h) \ $(wildcard include/config/mach/raumfeld/speaker.h) \ $(wildcard include/config/mach/multibus/master.h) \ $(wildcard include/config/mach/multibus/pbk.h) \ $(wildcard include/config/mach/tnetv107x.h) \ $(wildcard include/config/mach/snake.h) \ $(wildcard include/config/mach/cwmx27.h) \ $(wildcard include/config/mach/sch/m480.h) \ $(wildcard include/config/mach/platypus.h) \ $(wildcard include/config/mach/pss2.h) \ $(wildcard include/config/mach/davinci/apm150.h) \ $(wildcard include/config/mach/str9100.h) \ $(wildcard include/config/mach/net5big.h) \ $(wildcard include/config/mach/seabed9263.h) \ $(wildcard include/config/mach/mx51/m2id.h) \ $(wildcard include/config/mach/octvocplus/eb.h) \ $(wildcard include/config/mach/klk/firefox.h) \ $(wildcard include/config/mach/klk/wirma.h) \ $(wildcard include/config/mach/klk/wirma/mmi.h) \ $(wildcard include/config/mach/supersonic.h) \ $(wildcard include/config/mach/liberty.h) \ $(wildcard include/config/mach/mh355.h) \ $(wildcard include/config/mach/pc7802.h) \ $(wildcard include/config/mach/gnet/sgc.h) \ $(wildcard include/config/mach/einstein15.h) \ $(wildcard include/config/mach/cmpd.h) \ $(wildcard include/config/mach/davinci/hase1.h) \ $(wildcard include/config/mach/lgeincitephone.h) \ $(wildcard include/config/mach/ea313x.h) \ $(wildcard include/config/mach/fwbd/39064.h) \ $(wildcard include/config/mach/fwbd/390128.h) \ $(wildcard include/config/mach/pelco/moe.h) \ $(wildcard include/config/mach/minimix27.h) \ $(wildcard include/config/mach/omap3/thunder.h) \ $(wildcard include/config/mach/mx27amata.h) \ $(wildcard include/config/mach/bgat1.h) \ $(wildcard include/config/mach/buzz.h) \ $(wildcard include/config/mach/mb9g20.h) \ $(wildcard include/config/mach/yushan.h) \ $(wildcard include/config/mach/lizard.h) \ $(wildcard include/config/mach/omap3polycom.h) \ $(wildcard include/config/mach/smdkv210.h) \ $(wildcard include/config/mach/bravo.h) \ $(wildcard include/config/mach/siogentoo1.h) \ $(wildcard include/config/mach/siogentoo2.h) \ $(wildcard include/config/mach/sm3k.h) \ $(wildcard include/config/mach/acer/tempo/f900.h) \ $(wildcard include/config/mach/sst61vc010/dev.h) \ $(wildcard include/config/mach/glittertind.h) \ $(wildcard include/config/mach/omap/zoom3.h) \ $(wildcard include/config/mach/omap/3630sdp.h) \ $(wildcard include/config/mach/cybook2440.h) \ $(wildcard include/config/mach/torino/s.h) \ $(wildcard include/config/mach/havana.h) \ $(wildcard include/config/mach/beaumont/11.h) \ $(wildcard include/config/mach/vanguard.h) \ $(wildcard include/config/mach/s5pc110/draco.h) \ $(wildcard include/config/mach/cartesio/two.h) \ $(wildcard include/config/mach/aster.h) \ $(wildcard include/config/mach/voguesv210.h) \ $(wildcard include/config/mach/acm500x.h) \ $(wildcard include/config/mach/km9260.h) \ $(wildcard include/config/mach/nideflexg1.h) \ $(wildcard include/config/mach/ctera/plug/io.h) \ $(wildcard include/config/mach/smartq7.h) \ $(wildcard include/config/mach/at91sam9g10ek2.h) \ $(wildcard include/config/mach/asusp527.h) \ $(wildcard include/config/mach/at91sam9g20mpm2.h) \ $(wildcard include/config/mach/topasa900.h) \ $(wildcard include/config/mach/electrum/100.h) \ $(wildcard include/config/mach/mx51grb.h) \ $(wildcard include/config/mach/xea300.h) \ $(wildcard include/config/mach/htcstartrek.h) \ $(wildcard include/config/mach/lima.h) \ $(wildcard include/config/mach/csb740.h) \ $(wildcard include/config/mach/usb/s8815.h) \ $(wildcard include/config/mach/watson/efm/plugin.h) \ $(wildcard include/config/mach/milkyway.h) \ $(wildcard include/config/mach/g4evm.h) \ $(wildcard include/config/mach/picomod6.h) \ $(wildcard include/config/mach/omapl138/hawkboard.h) \ $(wildcard include/config/mach/ip6000.h) \ $(wildcard include/config/mach/ip6010.h) \ $(wildcard include/config/mach/utm400.h) \ $(wildcard include/config/mach/omap3/zybex.h) \ $(wildcard include/config/mach/wireless/space.h) \ $(wildcard include/config/mach/sx560.h) \ $(wildcard include/config/mach/ts41x.h) \ $(wildcard include/config/mach/elphel10373.h) \ $(wildcard include/config/mach/rhobot.h) \ $(wildcard include/config/mach/mx51/refresh.h) \ $(wildcard include/config/mach/ls9260.h) \ $(wildcard include/config/mach/shank.h) \ $(wildcard include/config/mach/qsd8x50/st1.h) \ $(wildcard include/config/mach/at91sam9m10ekes.h) \ $(wildcard include/config/mach/hiram.h) \ $(wildcard include/config/mach/phy3250.h) \ $(wildcard include/config/mach/ea3250.h) \ $(wildcard include/config/mach/fdi3250.h) \ $(wildcard include/config/mach/whitestone.h) \ $(wildcard include/config/mach/at91sam9263nit.h) \ $(wildcard include/config/mach/ccmx51.h) \ $(wildcard include/config/mach/ccmx51js.h) \ $(wildcard include/config/mach/ccwmx51.h) \ $(wildcard include/config/mach/ccwmx51js.h) \ $(wildcard include/config/mach/mini6410.h) \ $(wildcard include/config/mach/tiny6410.h) \ $(wildcard include/config/mach/nano6410.h) \ $(wildcard include/config/mach/at572d940hfnldb.h) \ $(wildcard include/config/mach/htcleo.h) \ $(wildcard include/config/mach/avp13.h) \ $(wildcard include/config/mach/xxsvideod.h) \ $(wildcard include/config/mach/vpnext.h) \ $(wildcard include/config/mach/swarco/itc3.h) \ $(wildcard include/config/mach/tx51.h) \ $(wildcard include/config/mach/dolby/cat1021.h) \ $(wildcard include/config/mach/mx28evk.h) \ $(wildcard include/config/mach/phoenix260.h) \ $(wildcard include/config/mach/uvaca/stork.h) \ $(wildcard include/config/mach/smartq5.h) \ $(wildcard include/config/mach/all3078.h) \ $(wildcard include/config/mach/ctera/2bay/ds.h) \ $(wildcard include/config/mach/siogentoo3.h) \ $(wildcard include/config/mach/epb5000.h) \ $(wildcard include/config/mach/hy9263.h) \ $(wildcard include/config/mach/acer/tempo/m900.h) \ $(wildcard include/config/mach/acer/tempo/dx900.h) \ $(wildcard include/config/mach/acer/tempo/x960.h) \ $(wildcard include/config/mach/acer/eten/v900.h) \ $(wildcard include/config/mach/acer/eten/x900.h) \ $(wildcard include/config/mach/bonnell.h) \ $(wildcard include/config/mach/oht/mx27.h) \ $(wildcard include/config/mach/htcquartz.h) \ $(wildcard include/config/mach/davinci/dm6467tevm.h) \ $(wildcard include/config/mach/c3ax03.h) \ $(wildcard include/config/mach/mxt/td60.h) \ $(wildcard include/config/mach/esyx.h) \ $(wildcard include/config/mach/dove/db2.h) \ $(wildcard include/config/mach/bulldog.h) \ $(wildcard include/config/mach/derell/me2000.h) \ $(wildcard include/config/mach/bcmring/base.h) \ $(wildcard include/config/mach/bcmring/evm.h) \ $(wildcard include/config/mach/bcmring/evm/jazz.h) \ $(wildcard include/config/mach/bcmring/sp.h) \ $(wildcard include/config/mach/bcmring/sv.h) \ $(wildcard include/config/mach/bcmring/sv/jazz.h) \ $(wildcard include/config/mach/bcmring/tablet.h) \ $(wildcard include/config/mach/bcmring/vp.h) \ $(wildcard include/config/mach/bcmring/evm/seikor.h) \ $(wildcard include/config/mach/bcmring/sp/wqvga.h) \ $(wildcard include/config/mach/bcmring/custom.h) \ $(wildcard include/config/mach/acer/s200.h) \ $(wildcard include/config/mach/bt270.h) \ $(wildcard include/config/mach/iseo.h) \ $(wildcard include/config/mach/cezanne.h) \ $(wildcard include/config/mach/lucca.h) \ $(wildcard include/config/mach/supersmart.h) \ $(wildcard include/config/mach/cs/misano.h) \ $(wildcard include/config/mach/magnolia2.h) \ $(wildcard include/config/mach/emxx.h) \ $(wildcard include/config/mach/outlaw.h) \ $(wildcard include/config/mach/riot/bei2.h) \ $(wildcard include/config/mach/riot/vox.h) \ $(wildcard include/config/mach/riot/x37.h) \ $(wildcard include/config/mach/mega25mx.h) \ $(wildcard include/config/mach/benzina2.h) \ $(wildcard include/config/mach/ignite.h) \ $(wildcard include/config/mach/foggia.h) \ $(wildcard include/config/mach/arezzo.h) \ $(wildcard include/config/mach/leica/skywalker.h) \ $(wildcard include/config/mach/jacinto2/jamr.h) \ $(wildcard include/config/mach/gts/nova.h) \ $(wildcard include/config/mach/p3600.h) \ $(wildcard include/config/mach/dlt2.h) \ $(wildcard include/config/mach/df3120.h) \ $(wildcard include/config/mach/ecucore/9g20.h) \ $(wildcard include/config/mach/nautel/lpc3240.h) \ $(wildcard include/config/mach/glacier.h) \ $(wildcard include/config/mach/phrazer/bulldog.h) \ $(wildcard include/config/mach/omap3/bulldog.h) \ $(wildcard include/config/mach/pca101.h) \ $(wildcard include/config/mach/buzzc.h) \ $(wildcard include/config/mach/sasie2.h) \ $(wildcard include/config/mach/davinci/cio.h) \ $(wildcard include/config/mach/smartmeter/dl.h) \ $(wildcard include/config/mach/wzl6410.h) \ $(wildcard include/config/mach/wzl6410m.h) \ $(wildcard include/config/mach/wzl6410f.h) \ $(wildcard include/config/mach/wzl6410i.h) \ $(wildcard include/config/mach/spacecom1.h) \ $(wildcard include/config/mach/pingu920.h) \ $(wildcard include/config/mach/bravoc.h) \ $(wildcard include/config/mach/cybo2440.h) \ $(wildcard include/config/mach/vdssw.h) \ $(wildcard include/config/mach/romulus.h) \ $(wildcard include/config/mach/omap/magic.h) \ $(wildcard include/config/mach/eltd100.h) \ $(wildcard include/config/mach/capc7117.h) \ $(wildcard include/config/mach/swan.h) \ $(wildcard include/config/mach/veu.h) \ $(wildcard include/config/mach/rm2.h) \ $(wildcard include/config/mach/tt2100.h) \ $(wildcard include/config/mach/venice.h) \ $(wildcard include/config/mach/pc7323.h) \ $(wildcard include/config/mach/masp.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc1.h) \ $(wildcard include/config/mach/lexikon.h) \ $(wildcard include/config/mach/mini2440v2.h) \ $(wildcard include/config/mach/icontrol.h) \ $(wildcard include/config/mach/sheevad.h) \ $(wildcard include/config/mach/qsd8x50a/st1/1.h) \ $(wildcard include/config/mach/qsd8x50a/st1/5.h) \ $(wildcard include/config/mach/bee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/linkage.h \ /home/jacob/source/wildfire-kernel/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/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/linux/stat.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.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/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.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/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.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 \ 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/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/jacob/source/wildfire-kernel/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/relative/pointers.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) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.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/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/math64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.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/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/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 \ /home/jacob/source/wildfire-kernel/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 \ /home/jacob/source/wildfire-kernel/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/jacob/source/wildfire-kernel/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/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /home/jacob/source/wildfire-kernel/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/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.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/errno.h \ /home/jacob/source/wildfire-kernel/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/mutex-debug.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) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \ /home/jacob/source/wildfire-kernel/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/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.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) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/module.h \ include/linux/moduleloader.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.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/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/auxvec.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /home/jacob/source/wildfire-kernel/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/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-msm/include/mach/vmalloc.h \ /home/jacob/source/wildfire-kernel/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/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/vmalloc.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/file/locking.h) \ $(wildcard include/config/auditsyscall.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/jacob/source/wildfire-kernel/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/pid.h \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.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/fcntl.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sections.h \ include/asm-generic/sections.h \ arch/arm/kernel/module.o: $(deps_arch/arm/kernel/module.o) $(deps_arch/arm/kernel/module.o):
HCDRJacob/wildfire-kernel
arch/arm/kernel/.module.o.cmd
bat
gpl-2.0
144,484
cmd_drivers/staging/android/built-in.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/staging/android/built-in.o drivers/staging/android/binder.o drivers/staging/android/logger.o drivers/staging/android/ram_console.o drivers/staging/android/timed_output.o drivers/staging/android/lowmemorykiller.o
yohanes/Acer-BeTouch-E130-Linux-Kernel
drivers/staging/android/.built-in.o.cmd
bat
gpl-2.0
323
cmd_drivers/net/ethernet/arc/built-in.o := rm -f drivers/net/ethernet/arc/built-in.o; /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ar rcsD drivers/net/ethernet/arc/built-in.o
FEDEVEL/tmp-imx6-tiny-rex-linux
drivers/net/ethernet/arc/.built-in.o.cmd
bat
gpl-2.0
249
cmd_drivers/usb/gadget/g_android.o := /home/azure/Kernel/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/usb/gadget/g_android.o drivers/usb/gadget/android.o drivers/usb/gadget/f_adb.o drivers/usb/gadget/f_mass_storage.o drivers/usb/gadget/u_serial.o drivers/usb/gadget/f_acm.o drivers/usb/gadget/f_serial.o
denzfarid/rndc-kernel
drivers/usb/gadget/.g_android.o.cmd
bat
gpl-2.0
322
@echo off echo == Building lostvikings_data.patch.snes.lvpa == ..\lvpak.exe c lostvikings_data.patch.snes.lvpa -H0 -f lostvikings_data.patch.snes.listfile echo == Checking for correctness == ..\lvpak.exe t lostvikings_data.patch.snes.lvpa echo == Finished == pause > nul
fgenesis/lv3proj
bin/packages/make_snesmusic.bat
bat
gpl-2.0
274
cmd_arch/powerpc/kernel/proc_powerpc.o := ppc_4xx-gcc -m32 -Wp,-MD,arch/powerpc/kernel/.proc_powerpc.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -Werror -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(proc_powerpc)" -D"KBUILD_MODNAME=KBUILD_STR(proc_powerpc)" -c -o arch/powerpc/kernel/.tmp_proc_powerpc.o arch/powerpc/kernel/proc_powerpc.c deps_arch/powerpc/kernel/proc_powerpc.o := \ arch/powerpc/kernel/proc_powerpc.c \ $(wildcard include/config/ppc64.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.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 \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/ksm.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/ia64.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/errno.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/smp.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/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.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) \ $(wildcard include/config/64bit.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \ $(wildcard include/config/phys/64bit.h) \ include/asm-generic/int-ll64.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \ $(wildcard include/config/power4/only.h) \ $(wildcard include/config/ibm405/err77.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \ $(wildcard include/config/ppc/e500mc.h) \ $(wildcard include/config/e500.h) \ include/linux/stringify.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/find.h \ include/asm-generic/bitops/sched.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \ $(wildcard include/config/ppc/256k/pages.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.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/ftrace/mcount/record.h) \ /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \ include/linux/linkage.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.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 \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \ include/linux/byteorder/big_endian.h \ include/linux/swab.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \ include/linux/byteorder/generic.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \ include/asm-generic/div64.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \ $(wildcard include/config/8xx.h) \ $(wildcard include/config/403gcx.h) \ $(wildcard include/config/ppc32.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \ $(wildcard include/config/vsx.h) \ $(wildcard include/config/ppc/prep.h) \ $(wildcard include/config/task/size.h) \ $(wildcard include/config/kernel/start.h) \ $(wildcard include/config/4xx.h) \ $(wildcard include/config/booke.h) \ $(wildcard include/config/altivec.h) \ $(wildcard include/config/spe.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \ $(wildcard include/config/40x.h) \ $(wildcard include/config/fsl/emb/perfmon.h) \ $(wildcard include/config/ppc/book3s/64.h) \ $(wildcard include/config/ppc/book3s/32.h) \ $(wildcard include/config/ppc/book3e/64.h) \ $(wildcard include/config/e200.h) \ $(wildcard include/config/ppc/cell.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \ $(wildcard include/config/mpc10x/bridge.h) \ $(wildcard include/config/ppc/83xx.h) \ $(wildcard include/config/8260.h) \ $(wildcard include/config/ppc/mpc52xx.h) \ $(wildcard include/config/bdi/switch.h) \ $(wildcard include/config/power3.h) \ $(wildcard include/config/power4.h) \ $(wildcard include/config/44x.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \ $(wildcard include/config/ppc/64k/pages.h) \ $(wildcard include/config/ppc/16k/pages.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/physical/start.h) \ $(wildcard include/config/relocatable.h) \ $(wildcard include/config/ppc/std/mmu/64.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/ppc/smlpar.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \ $(wildcard include/config/crash/dump.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \ $(wildcard include/config/physical/align.h) \ $(wildcard include/config/not/coherent/cache.h) \ $(wildcard include/config/pte/64bit.h) \ include/asm-generic/getorder.h \ include/asm-generic/memory_model.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 \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \ $(wildcard include/config/debugger.h) \ $(wildcard include/config/kexec.h) \ $(wildcard include/config/6xx.h) \ $(wildcard include/config/booke/wdt.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \ $(wildcard include/config/ppc/book3e.h) \ $(wildcard include/config/perf/events.h) \ include/asm-generic/cmpxchg-local.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/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ include/linux/wait.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/seqlock.h \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \ include/linux/pageblock-flags.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/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/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) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \ $(wildcard include/config/pci.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 \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \ $(wildcard include/config/ppc/std/mmu/32.h) \ $(wildcard include/config/ppc/book3e/mmu.h) \ $(wildcard include/config/ppc/8xx.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \ $(wildcard include/config/ppc/early/debug/44x.h) \ $(wildcard include/config/ppc/early/debug/44x/physlow.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable-ppc32.h \ $(wildcard include/config/consistent/size.h) \ $(wildcard include/config/fsl/booke.h) \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.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/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/user/sched.h) \ $(wildcard include/config/sysfs.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/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/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/group/sched.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/math64.h \ include/linux/param.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \ include/linux/jiffies.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ include/linux/rcutree.h \ include/linux/signal.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/path.h \ include/linux/pid.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/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/slab_def.h \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/kmalloc_sizes.h \ include/linux/pfn.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \ include/linux/unistd.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.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 \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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 \ $(wildcard include/config/debug/objects/work.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io.h \ $(wildcard include/config/ra.h) \ $(wildcard include/config/rd.h) \ $(wildcard include/config/ppc/indirect/io.h) \ $(wildcard include/config/eeh.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/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 \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \ $(wildcard include/config/spu/base.h) \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \ $(wildcard include/config/dynamic/ftrace.h) \ include/trace/events/module.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ include/linux/semaphore.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \ $(wildcard include/config/swiotlb.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/io.h \ $(wildcard include/config/has/ioport.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \ $(wildcard include/config/ppc/iseries.h) \ $(wildcard include/config/power.h) \ $(wildcard include/config/8xx/cpu6.h) \ include/asm-generic/iomap.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \ $(wildcard include/config/ppc/std/mmu.h) \ $(wildcard include/config/kgdb.h) \ $(wildcard include/config/xmon.h) \ $(wildcard include/config/kprobes.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) \ 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/ioctl.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/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/fcntl.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/magic.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/machdep.h \ $(wildcard include/config/ppc/has/feature/calls.h) \ $(wildcard include/config/pci/msi.h) \ $(wildcard include/config/suspend.h) \ $(wildcard include/config/arch/cpu/probe/release.h) \ $(wildcard include/config/ppc/pmac.h) \ include/linux/seq_file.h \ include/linux/dma-mapping.h \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/have/dma/attrs.h) \ include/linux/dma-attrs.h \ include/linux/bug.h \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/scatterlist.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma-mapping.h \ include/linux/dma-debug.h \ $(wildcard include/config/dma/api/debug.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swiotlb.h \ include/linux/swiotlb.h \ include/asm-generic/dma-mapping-common.h \ include/linux/kmemcheck.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/setup.h \ include/asm-generic/setup.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/vdso_datapage.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rtas.h \ $(wildcard include/config/change.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/prom.h \ include/linux/of.h \ $(wildcard include/config/sparc.h) \ include/linux/mod_devicetable.h \ include/linux/of_fdt.h \ include/linux/platform_device.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq.h \ $(wildcard include/config/nr/irqs.h) \ $(wildcard include/config/irqstacks.h) \ arch/powerpc/kernel/proc_powerpc.o: $(deps_arch/powerpc/kernel/proc_powerpc.o) $(deps_arch/powerpc/kernel/proc_powerpc.o):
mattkelly/linux-2.6-xlnx
arch/powerpc/kernel/.proc_powerpc.o.cmd
bat
gpl-2.0
25,599
ROBOCOPY %USERPROFILE%\home s:\Backup_Home /MIR
mattia72/autohotkey
QuickTask/scripts/Backup_Home.cmd
bat
gpl-3.0
47
cd win64 windeployqt.exe --dir qtdata --libdir . --plugindir qtdata/plugins --no-system-d3d-compiler --no-opengl-sw --release --qmldir res/qml OpenVR-InputEmulatorOverlay.exe @REM Debug: @REM windeployqt.exe --dir qtdata --libdir . --plugindir qtdata/plugins --no-system-d3d-compiler --compiler-runtime --no-opengl-sw --debug --qmldir res/qml OpenVR-InputEmulatorOverlay.exe
matzman666/OpenVR-InputEmulator
client_overlay/bin/windeployqt.bat
bat
gpl-3.0
380
echo off echo Takt auf 8Mhz echo Brown-Out-Detection enabled 4.3V avrdude.exe -p T44 -P com1 -c avr910 -v
tengelmann/Lampensteuerung
Firmware/v2_Duo/default/avrdude_read_fuses.bat
bat
gpl-3.0
107
@echo off start Duplicating.bat start hi.vbs a: timeout /t 10 /nobreak >nul start skull.bat start skulll.bat start skullll.bat start Duplicating.bat goto a
exploi8/AA
DANGER/Duplicate text&Skull2/Duplicating.bat
bat
gpl-3.0
155
::echo %0 %1 %2 set CONFIGURATION=%1 set LANG=%2 set OUT_PATH=%~dp0bin\%CONFIGURATION% set OBJ_PATH=%~dp0obj\%CONFIGURATION% set FILE_TO_DELETE=PteidMW35-Pro*.msi echo [INFO] Deleting %OUT_PATH%\%LANG%\%FILE_TO_DELETE% del "%OUT_PATH%\%LANG%\%FILE_TO_DELETE%" set FILE_TO_DELETE=Product.wixobj echo [INFO] Deleting %OBJ_PATH%\%FILE_TO_DELETE% del "%OBJ_PATH%\%FILE_TO_DELETE%"
12019/svn.gov.pt
_src/eidmw/misc/Wix_MW35/MW35Wix/clean-pro.cmd
bat
gpl-3.0
394
strip --strip-all fenixsql.exe
graemeg/firebird-lib
SupportApps/fenixsql/reduce-bin.bat
bat
lgpl-2.1
30
@echo off REM PHPSpec REM REM GNU LESSER GENERAL PUBLIC LICENSE REM Version 3, 29 June 2007 REM REM Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> REM Everyone is permitted to copy and distribute verbatim copies REM of this license document, but changing it is not allowed. REM REM REM This version of the GNU Lesser General Public License incorporates REM the terms and conditions of version 3 of the GNU General Public REM License, supplemented by the additional permissions listed below. REM REM 0. Additional Definitions. REM REM As used herein, "this License" refers to version 3 of the GNU Lesser REM General Public License, and the "GNU GPL" refers to version 3 of the GNU REM General Public License. REM REM "The Library" refers to a covered work governed by this License, REM other than an Application or a Combined Work as defined below. REM REM An "Application" is any work that makes use of an interface provided REM by the Library, but which is not otherwise based on the Library. REM Defining a subclass of a class defined by the Library is deemed a mode REM of using an interface provided by the Library. REM REM A "Combined Work" is a work produced by combining or linking an REM Application with the Library. The particular version of the Library REM with which the Combined Work was made is also called the "Linked REM Version". REM REM The "Minimal Corresponding Source" for a Combined Work means the REM Corresponding Source for the Combined Work, excluding any source code REM for portions of the Combined Work that, considered in isolation, are REM based on the Application, and not on the Linked Version. REM REM The "Corresponding Application Code" for a Combined Work means the REM object code and/or source code for the Application, including any data REM and utility programs needed for reproducing the Combined Work from the REM Application, but excluding the System Libraries of the Combined Work. REM REM 1. Exception to Section 3 of the GNU GPL. REM REM You may convey a covered work under sections 3 and 4 of this License REM without being bound by section 3 of the GNU GPL. REM REM 2. Conveying Modified Versions. REM REM If you modify a copy of the Library, and, in your modifications, a REM facility refers to a function or data to be supplied by an Application REM that uses the facility (other than as an argument passed when the REM facility is invoked), then you may convey a copy of the modified REM version: REM REM a) under this License, provided that you make a good faith effort to REM ensure that, in the event an Application does not supply the REM function or data, the facility still operates, and performs REM whatever part of its purpose remains meaningful, or REM REM b) under the GNU GPL, with none of the additional permissions of REM this License applicable to that copy. REM REM 3. Object Code Incorporating Material from Library Header Files. REM REM The object code form of an Application may incorporate material from REM a header file that is part of the Library. You may convey such object REM code under terms of your choice, provided that, if the incorporated REM material is not limited to numerical parameters, data structure REM layouts and accessors, or small macros, inline functions and templates REM (ten or fewer lines in length), you do both of the following: REM REM a) Give prominent notice with each copy of the object code that the REM Library is used in it and that the Library and its use are REM covered by this License. REM REM b) Accompany the object code with a copy of the GNU GPL and this license REM document. REM REM 4. Combined Works. REM REM You may convey a Combined Work under terms of your choice that, REM taken together, effectively do not restrict modification of the REM portions of the Library contained in the Combined Work and reverse REM engineering for debugging such modifications, if you also do each of REM the following: REM REM a) Give prominent notice with each copy of the Combined Work that REM the Library is used in it and that the Library and its use are REM covered by this License. REM REM b) Accompany the Combined Work with a copy of the GNU GPL and this license REM document. REM REM c) For a Combined Work that displays copyright notices during REM execution, include the copyright notice for the Library among REM these notices, as well as a reference directing the user to the REM copies of the GNU GPL and this license document. REM REM d) Do one of the following: REM REM 0) Convey the Minimal Corresponding Source under the terms of this REM License, and the Corresponding Application Code in a form REM suitable for, and under terms that permit, the user to REM recombine or relink the Application with a modified version of REM the Linked Version to produce a modified Combined Work, in the REM manner specified by section 6 of the GNU GPL for conveying REM Corresponding Source. REM REM 1) Use a suitable shared library mechanism for linking with the REM Library. A suitable mechanism is one that (a) uses at run time REM a copy of the Library already present on the user's computer REM system, and (b) will operate properly with a modified version REM of the Library that is interface-compatible with the Linked REM Version. REM REM e) Provide Installation Information, but only if you would otherwise REM be required to provide such information under section 6 of the REM GNU GPL, and only to the extent that such information is REM necessary to install and execute a modified version of the REM Combined Work produced by recombining or relinking the REM Application with a modified version of the Linked Version. (If REM you use option 4d0, the Installation Information must accompany REM the Minimal Corresponding Source and Corresponding Application REM Code. If you use option 4d1, you must provide the Installation REM Information in the manner specified by section 6 of the GNU GPL REM for conveying Corresponding Source.) REM REM 5. Combined Libraries. REM REM You may place library facilities that are a work based on the REM Library side by side in a single library together with other library REM facilities that are not Applications and are not covered by this REM License, and convey such a combined library under terms of your REM choice, if you do both of the following: REM REM a) Accompany the combined library with a copy of the same work based REM on the Library, uncombined with any other library facilities, REM conveyed under the terms of this License. REM REM b) Give prominent notice with the combined library that part of it REM is a work based on the Library, and explaining where to find the REM accompanying uncombined form of the same work. REM REM 6. Revised Versions of the GNU Lesser General Public License. REM REM The Free Software Foundation may publish revised and/or new versions REM of the GNU Lesser General Public License from time to time. Such new REM versions will be similar in spirit to the present version, but may REM differ in detail to address new problems or concerns. REM REM Each version is given a distinguishing version number. If the REM Library as you received it specifies that a certain numbered version REM of the GNU Lesser General Public License "or any later version" REM applies to it, you have the option of following the terms and REM conditions either of that published version or of any later version REM published by the Free Software Foundation. If the Library as you REM received it does not specify a version number of the GNU Lesser REM General Public License, you may choose any version of the GNU Lesser REM General Public License ever published by the Free Software Foundation. REM REM If the Library as you received it specifies that a proxy can decide REM whether future versions of the GNU Lesser General Public License shall REM apply, that proxy's public statement of acceptance of any version is REM permanent authorization for you to choose that version for the REM Library. REM set PHPBIN="@php_bin@" "@php_bin@" "@php_dir@/PHPSpec/Console/Command.php" %*
tedkulp/phpspec
scripts/phpspec.bat
bat
lgpl-3.0
8,379
powershell PSUnit.Run.ps1 .\FizzBuzz.Test.ps1
hemmerling/codingdojo
src/fizzbuzz/powershell_psunit_tellingmachine/run.bat
bat
apache-2.0
45
@echo off call %~dp0env.bat cmd.exe /k
sharhar/USB-Thing
UpdaterFiles/Lib/scripts/cmd.bat
bat
apache-2.0
38
@echo off @setlocal set NuGetExe="%~dp0NuGet.exe" REM If someone passed in a different Roslyn solution, use that. REM We make use of this when Roslyn is an sub-module for some REM internal repositories. set RoslynSolution=%1 if "%RoslynSolution%" == "" set RoslynSolution=%~dp0Roslyn.sln echo Restoring packages: Toolsets call %NugetExe% restore -verbosity quiet "%~dp0build\ToolsetPackages\project.json" -configfile "%~dp0nuget.config" || goto :RestoreFailed echo Restoring packages: Samples call %NugetExe% restore -verbosity quiet "%~dp0src\Samples\Samples.sln" -configfile "%~dp0nuget.config" || goto :RestoreFailed echo Restoring packages: Roslyn (this may take some time) call %NugetExe% restore -verbosity quiet "%RoslynSolution%" -configfile "%~dp0nuget.config" || goto :RestoreFailed exit /b 0 :RestoreFailed echo Restore failed with ERRORLEVEL %ERRORLEVEL% exit /b 1
VPashkov/roslyn
Restore.cmd
bat
apache-2.0
884
go-bindata account.swagger.json
cloudbirds/account
api/genbindata.bat
bat
apache-2.0
31
set HEEKSCADPATH=D:\HeeksCAD set HEEKSCNCPATH=%HEEKSCADPATH%\HeeksCNC set HEEKSCADSOURCEPATH=%BASESOURCEPATH%\heekscad set HEEKSCNCSOURCEPATH=%BASESOURCEPATH%\heekscnc set VOXELCUTPATH=%BASESOURCEPATH%\voxelcut set WXBINARIESPATH=%WXWIN%\lib\vc_dll set OPENCASCADEBINPATH=%CASROOT%\win32\vc12\bin set TBBBINPATH=%THIRDPATRIESPATH%\tbb44_20160526oss\bin\ia32\vc12 set FREEIMAGEBINPATH=%THIRDPATRIESPATH%\freeimage-3.17.0-vc12-32\bin set FREETYPEBINPATH=%THIRDPATRIESPATH%\freetype-2.5.5-vc12-32\bin set GETTEXTPATH=%THIRDPATRIESPATH%\gettext0.19.8.1\bin\ mkdir "%HEEKSCADPATH%" copy /y ".\bin\HeeksCAD.exe" "%HEEKSCADPATH%\HeeksCAD.exe" cd .\heekscad call export.bat cd .. mkdir "%HEEKSCNCPATH%" copy /y ".\bin\HeeksCNC.dll" "%HEEKSCNCPATH%\HeeksCNC.dll" cd .\heekscnc call export.bat cd .. copy /y "%PYTHONPATH%\python.exe" "%HEEKSCNCPATH%\python.exe" mkdir "%HEEKSCNCPATH%\Boolean" copy /y ".\bin\area.pyd" "%HEEKSCNCPATH%\Boolean\area.pyd" copy /y ".\bin\area.pyd" "%HEEKSCNCPATH%\area.pyd" mkdir "%HEEKSCNCPATH%\Clipper" copy /y ".\bin\Clipper\area.pyd" "%HEEKSCNCPATH%\Clipper\area.pyd" copy /y ".\bin\ocl.pyd" "%HEEKSCNCPATH%\ocl.pyd" copy /y ".\bin\voxelcut.pyd" "%HEEKSCNCPATH%\voxelcut.pyd"
JohnyEngine/CNC
export.bat
bat
apache-2.0
1,207
@ECHO OFF @setlocal set PDF_FILE=%1 set DOC_FILE=%2 IF "%1"=="" GOTO :INSUFFICIENT_DATA IF "%2"=="" GOTO :INSUFFICIENT_DATA CALL pdf2word -q -m -i %PDF_FILE% -o %DOC_FILE% GOTO :SUCCESS :INSUFFICIENT_DATA ECHO.Insufficient Data :SUCCESS ECHO.OK @endlocal EXIT /B
pritamdalal90/pdftoword
includes/convertPDF_DOCX.bat
bat
apache-2.0
266
set "var=%cd%" rmdir /s /q .\Build copy ..\blobs\mainboard\google\edgar\vbt.bin CorebootPayloadPkg\vbt.bin copy ..\blobs\soc\intel\bsw\IntelBswGopDriver_1028.efi CorebootPayloadPkg\IntelGopDriver.efi build -a IA32 -a X64 -p CorebootPayloadPkg\CorebootPayloadPkgIa32X64.dsc -b RELEASE -t VS2015x86 -n 4 copy .\Build\CorebootPayloadPkgX64\RELEASE_VS2015x86\FV\UEFIPAYLOAD.fd z:\firmware\tianocore\UEFIPAYLOAD-bsw.fd
MattDevo/edk2
build-cpp-bsw.bat
bat
bsd-2-clause
418
FBXConvert.exe -input:instanceV2.fbx -copytextures:- -generatetangents:+ -writemtl:-
Cristianohh/InstancingAndroid
ProjectFiles/Media/instanceV2/instanceV2.cmd
bat
bsd-3-clause
85
@rem *************************************************** @rem *** Copyright (c) 2017, maxohm [ at ] gmail.com *** @rem *************************************************** :def set xLOGDIR=%1 set xOBJECT=%2 set xSUBJECT=%3 set xTSPRM4=%4 set xNULPRM4=%4.nul set xPASSWD=%COMPUTERNAME% :chk if not exist %xLOGDIR% exit /B 1 set xOBJECT=%xOBJECT:/=\% if not exist %xOBJECT% exit /B 2 :prep set tmpsym=%xOBJECT:~-1% if "%tmpsym%"=="\" ( set xOBJECT=%xOBJECT:~0,-1% goto prep ) for /f %%I in ("%xOBJECT%") do ( set xOBJDISK=%%~dI set xOBJPATH=%%~dpI set xOBJNAME=%%~nI%%~xI ) set xOBJPATH=%xOBJPATH:~0,-1% if "%xOBJNAME%"=="" ( for /f %%I in ("%xOBJPATH%") do ( set xOBJNAME=%%~nxI set xOBJECT=%%I ) ) else ( set xOBJECT=%xOBJPATH%\%xOBJNAME% ) :objskip set nCLUDE=%xOBJECT%\finclude.lst if exist %nCLUDE% del %nCLUDE% set xCLUDE=%xOBJECT%\fexclude.lst if exist %xCLUDE% del %xCLUDE% set xSUBJECT=%xSUBJECT:/=\% if not exist %xSUBJECT% exit /B 4 for /f %%I in ("%xSUBJECT%") do if /I "%%~nxI" NEQ %xHEAD% exit /B 5 set xSUBJECT=%xSUBJECT:/=\% for /f %%I in ("%xSUBJECT%") do ( set xSUBJDISK=%%~dI set xSUBJPATH=%%~dpI set xSUBJNAME=%%~nxI ) set xSUBJPATH=%xSUBJPATH:~0,-1% set xSUBJECT=%xSUBJPATH%\%xSUBJNAME% :gettime set curtime=%TIME::=% set curdate=%DATE:.=% set xTIMESTAMP=%curdate:~4%%curdate:~2,2%%curdate:~0,2%%xOBJDISK:~0,1%%curtime:~0,6% set xTIMESTAMP=%xTIMESTAMP: =0% :getlog set xLOGFILE=%xLOGDIR%\%xTIMESTAMP%.log
maxohm/aas
bin/stage1.cmd
bat
bsd-3-clause
1,522
verifast ..\..\..\bin\threading.vfmanifest bincr.c verifast ..\..\..\bin\threading.vfmanifest gincr.c
willempx/verifast
examples/shared_boxes/incr/build.bat
bat
mit
102
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_FSSHTTP_FSSHTTPB.MS_FSSHTTP_FSSHTTPB_S03_SchemaLock.TestCase_S03_TC13_GetLock_FileAlreadyLockedOnServer_DifferentSchemaLockId /testcontainer:..\..\MS-FSSHTTP-FSSHTTPB\TestSuite\bin\Debug\MS-FSSHTTP-FSSHTTPB_TestSuite.dll /runconfig:..\..\MS-FSSHTTP-FSSHTTPB\MS-FSSHTTP-FSSHTTPB.testsettings /unique pause
XinwLi/Interop-TestSuites-1
FileSyncandWOPI/Source/Scripts/MS-FSSHTTP-FSSHTTPB/RunTestCase_S03_TC13.cmd
bat
mit
398
@echo off ..\winbuild\x64\Release\gcc\impgen.exe ..\winbuild\x64\Release\mpi\mpich2mpi.dll > ..\winbuild\x64\Release\gcc\mpich2mpigcc.def ..\winbuild\x64\Release\gcc\impgen.exe ..\winbuild\x64\Release\gfortran\fmpich2g.dll > ..\winbuild\x64\Release\gcc\fmpich2gcc.def x86_64-w64-mingw32-dlltool --dllname mpich2mpi.dll --def ..\winbuild\x64\Release\gcc\mpich2mpigcc.def --output-lib ..\winbuild\x64\Release\gcc\libmpi.a >> ..\make.log x86_64-w64-mingw32-dlltool --dllname fmpich2g.dll --def ..\winbuild\x64\Release\gcc\fmpich2gcc.def --output-lib ..\winbuild\x64\Release\gcc\libfmpich2g.a >> ..\make.log REM Building MPI CXX Interface lib bash -c "x86_64-w64-mingw32-g++ -I ../src/include -I ../src/include/win64 -c ../src/binding/cxx/initcxx.cxx -o ../winbuild/x64/Release/gcc/initcxx.o" >> ..\make.log x86_64-w64-mingw32-ar rvs ../winbuild/x64/Release/gcc/libmpicxx.a ../winbuild/x64/Release/gcc/initcxx.o >> ..\make.log del ..\winbuild\x64\Release\gcc\mpich2mpigcc.def del ..\winbuild\x64\Release\gcc\fmpich2gcc.def
qingu/WRF-Libraries
src/mpich-3.0.1/maint/makegcclibs_64.bat
bat
gpl-2.0
1,021
@rem Script to build LuaJIT with MSVC. @rem Copyright (C) 2005-2020 Mike Pall. See Copyright Notice in luajit.h @rem @rem Open a "Visual Studio Command Prompt" (either x86 or x64). @rem Then cd to this directory and run this script. Use the following @rem options (in order), if needed. The default is a dynamic release build. @rem @rem nogc64 disable LJ_GC64 mode for x64 @rem debug emit debug symbols @rem amalg amalgamated build @rem static static linkage @if not defined INCLUDE goto :FAIL @setlocal @rem Add more debug flags here, e.g. DEBUGCFLAGS=/DLUA_USE_APICHECK @set DEBUGCFLAGS= @set LJCOMPILE=cl /nologo /c /O2 /W3 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_STDIO_INLINE=__declspec(dllexport)__inline @set LJLINK=link /nologo @set LJMT=mt /nologo @set LJLIB=lib /nologo /nodefaultlib @set DASMDIR=..\dynasm @set DASM=%DASMDIR%\dynasm.lua @set DASC=vm_x64.dasc @set LJDLLNAME=lua51.dll @set LJLIBNAME=lua51.lib @set BUILDTYPE=release @set ALL_LIB=lib_base.c lib_math.c lib_bit.c lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c lib_jit.c lib_ffi.c %LJCOMPILE% host\minilua.c @if errorlevel 1 goto :BAD %LJLINK% /out:minilua.exe minilua.obj @if errorlevel 1 goto :BAD if exist minilua.exe.manifest^ %LJMT% -manifest minilua.exe.manifest -outputresource:minilua.exe @set DASMFLAGS=-D WIN -D JIT -D FFI -D P64 @set LJARCH=x64 @minilua @if errorlevel 8 goto :X64 @set DASC=vm_x86.dasc @set DASMFLAGS=-D WIN -D JIT -D FFI @set LJARCH=x86 @set LJCOMPILE=%LJCOMPILE% /arch:SSE2 :X64 @if "%1" neq "nogc64" goto :GC64 @shift @set DASC=vm_x86.dasc @set LJCOMPILE=%LJCOMPILE% /DLUAJIT_DISABLE_GC64 :GC64 minilua %DASM% -LN %DASMFLAGS% -o host\buildvm_arch.h %DASC% @if errorlevel 1 goto :BAD %LJCOMPILE% /I "." /I %DASMDIR% host\buildvm*.c @if errorlevel 1 goto :BAD %LJLINK% /out:buildvm.exe buildvm*.obj @if errorlevel 1 goto :BAD if exist buildvm.exe.manifest^ %LJMT% -manifest buildvm.exe.manifest -outputresource:buildvm.exe buildvm -m peobj -o lj_vm.obj @if errorlevel 1 goto :BAD buildvm -m bcdef -o lj_bcdef.h %ALL_LIB% @if errorlevel 1 goto :BAD buildvm -m ffdef -o lj_ffdef.h %ALL_LIB% @if errorlevel 1 goto :BAD buildvm -m libdef -o lj_libdef.h %ALL_LIB% @if errorlevel 1 goto :BAD buildvm -m recdef -o lj_recdef.h %ALL_LIB% @if errorlevel 1 goto :BAD buildvm -m vmdef -o jit\vmdef.lua %ALL_LIB% @if errorlevel 1 goto :BAD buildvm -m folddef -o lj_folddef.h lj_opt_fold.c @if errorlevel 1 goto :BAD @if "%1" neq "debug" goto :NODEBUG @shift @set BUILDTYPE=debug @set LJCOMPILE=%LJCOMPILE% /Zi %DEBUGCFLAGS% @set LJLINK=%LJLINK% /opt:ref /opt:icf /incremental:no :NODEBUG @set LJLINK=%LJLINK% /%BUILDTYPE% @if "%1"=="amalg" goto :AMALGDLL @if "%1"=="static" goto :STATIC %LJCOMPILE% /MD /DLUA_BUILD_AS_DLL lj_*.c lib_*.c @if errorlevel 1 goto :BAD %LJLINK% /DLL /out:%LJDLLNAME% lj_*.obj lib_*.obj @if errorlevel 1 goto :BAD @goto :MTDLL :STATIC %LJCOMPILE% lj_*.c lib_*.c @if errorlevel 1 goto :BAD %LJLIB% /OUT:%LJLIBNAME% lj_*.obj lib_*.obj @if errorlevel 1 goto :BAD @goto :MTDLL :AMALGDLL %LJCOMPILE% /MD /DLUA_BUILD_AS_DLL ljamalg.c @if errorlevel 1 goto :BAD %LJLINK% /DLL /out:%LJDLLNAME% ljamalg.obj lj_vm.obj @if errorlevel 1 goto :BAD :MTDLL if exist %LJDLLNAME%.manifest^ %LJMT% -manifest %LJDLLNAME%.manifest -outputresource:%LJDLLNAME%;2 %LJCOMPILE% luajit.c @if errorlevel 1 goto :BAD %LJLINK% /out:luajit.exe luajit.obj %LJLIBNAME% @if errorlevel 1 goto :BAD if exist luajit.exe.manifest^ %LJMT% -manifest luajit.exe.manifest -outputresource:luajit.exe @del *.obj *.manifest minilua.exe buildvm.exe @del host\buildvm_arch.h @del lj_bcdef.h lj_ffdef.h lj_libdef.h lj_recdef.h lj_folddef.h @echo. @echo === Successfully built LuaJIT for Windows/%LJARCH% === @goto :END :BAD @echo. @echo ******************************************************* @echo *** Build FAILED -- Please check the error messages *** @echo ******************************************************* @goto :END :FAIL @echo You must open a "Visual Studio Command Prompt" to run this script :END
akopytov/sysbench
third_party/luajit/luajit/src/msvcbuild.bat
bat
gpl-2.0
4,160
cmd_fs/devpts/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/devpts/built-in.o fs/devpts/devpts.o
jpsminix/minix5
fs/devpts/.built-in.o.cmd
bat
gpl-2.0
104
cmd_drivers/i2c/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/i2c/built-in.o drivers/i2c/i2c-boardinfo.o drivers/i2c/i2c-core.o drivers/i2c/i2c-dev.o drivers/i2c/algos/built-in.o drivers/i2c/busses/built-in.o drivers/i2c/muxes/built-in.o
friedrich420/Note-3-AEL-Kernel
drivers/i2c/.built-in.o.cmd
bat
gpl-2.0
294
@echo off mkdir build && cd build && ^ cmake -G "Visual Studio 15 Win64" ../ && "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 && ^ MSBuild xLearn.sln /p:Configuration=Release && ^ cd python-package && ^ python setup.py install
PKU-Cloud-Lab/xLearn
build.bat
bat
apache-2.0
282
@echo off rem ---- allows to call a subroutine inside FOR loop ---- rem ---- thanks to Aacini ---- rem --- by Vasil "npocmaka" Arnaudov if /I "%1" equ "call" shift & shift & goto %2 rem ============================== rem == checking paramateres == rem ============================== if "%1" equ "-?" ( call :help ) if "%1" equ "?" ( call :help ) if "%1" equ "/?" ( call :help ) if "%1" equ "h" ( call :help ) if "%1" equ "-h" ( call :help ) if "%1" equ "help" ( call :help ) if "%1" equ "-help" ( call :help ) if "%1" equ "" ( call :help ) if "%1" equ "remote_machine" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :remote_macine %2 ) ) if "%1" equ "add" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :add "%~2" ) ) if "%1" equ "getvalueat" ( if "%~3" equ "" ( call :help goto :eof ) else ( call :getvalueat %2 %3 ) ) if "%1" equ "length" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :length %2 ) ) if "%1" equ "fast_list" ( call :fast_list ) if "%1" equ "list" ( call :list ) if "%1" equ "indexof" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :indexof %2 ) ) if "%1" equ "lastindexof" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :lastindexof %2 ) ) if "%1" equ "contains" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :contains %2 ) ) if "%1" equ "pop" ( call :pop ) if "%1" equ "queue" ( call :queue ) if "%1" equ "deleteat" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :deleteat %2 ) ) if "%1" equ "push" ( if "%~2" equ "" ( call :help goto :eof ) else ( call :push %2 ) ) if "%1" equ "insert" ( if "%~3" equ "" ( call :help goto :eof ) else ( call :insert %2 %3 ) ) if "%1" equ "isempty" ( call :isempty ) if "%1" equ "clear" ( call :clear ) if "%1" equ "clear" ( call :clear ) goto :eof rem ================================ rem === subroutines definitions ==== rem ================================ rem --- if it is not set will be ignored --- :remote_macine [%1 - the remote machine] set remote_machine=\\%~1 goto eof :add [%1 - item to add] setlocal for /f "tokens=1-2 delims==" %%J in ('at %remote_machine% 00:00 /every:31 "%~1"') do ( echo added item %%K : %~1 goto :endadd ) :endadd endlocal & goto :eof :getvalueat [%1 - position of the item;%2 - variable to store value at] setlocal set /a errorlevel=0 set var=%2 for /f "tokens=* delims= " %%E in ('at %remote_machine% %1 ^| find "The AT job ID does not exist" ') do ( if "%%E" NEQ "" ( echo IndexOutOfBoundException goto :eof ) ) for /f "tokens=1,* delims=: " %%I in ('at %remote_machine% %1 ^| find "Command:"') do ( if "%%I" EQU "" ( echo IndexOutOfBoundException goto :eof ) set "variable=%%~J" >nul ) endlocal & call set "%var%=%variable%" goto :eof :length [%1 - value to store length at ] - returns 0 on empty. setlocal set var=%1 set /a variable=0 setlocal ENABLEDELAYEDEXPANSION for /f "eol=- tokens=1 delims= " %%L in ('at %remote_machine% ^| find "Each"') do ( set /a variable=!variable!+1 ) endlocal & set variable=%variable% endlocal & call set /a "%var%=%variable%" goto :eof :fast_list - list elements and numbers setlocal rem -- check if there's local time settings hour suffix for /f "tokens=1,2,3 delims= " %%T in ('date /t') do ( if "%%V" EQU "" ( set /a last_column=5 ) else ( set /a last_column=6 ) ) if %last_column% EQU 5 ( for /f "eol=- tokens=1-6,* delims= " %%A in ('at %remote_machine% ^| find "Each"') do ( echo %%A : %%~F ) ) if %last_column% EQU 6 ( for /f "eol=- tokens=1-5,* delims= " %%A in ('at %remote_machine% ^| find "Each"') do ( echo %%A : %%~F ) ) endlocal goto :eof :list - list elements and numbers setlocal call :length len setlocal ENABLEDELAYEDEXPANSION for /l %%L in (1,1,!len!) do ( call :getvalueat %%L val >nul echo %%L : !val! ) endlocal endlocal goto :eof :indexof [%1 - check if is contained] - echoes first index setlocal rem -- check if there's local time settings hour suffix for /f "tokens=1,2,3 delims= " %%T in ('date /t') do ( if "%%V" EQU "" ( set /a last_column=5 ) else ( set /a last_column=6 ) ) set /a index=-1 if %last_column% EQU 5 ( for /f "eol=- tokens=1-6,* delims= " %%A in ('at %remote_machine% ^| find "Each"') do ( if "%%~F" EQU "%~1" ( set /a index=%%A >nul goto :endcheck ) ) ) if %last_column% EQU 6 ( for /f "eol=- tokens=1-5,* delims= " %%A in ('at %remote_machine% ^| find "Each"') do ( if "%%~F" EQU "%~1" ( set /a index=%%A goto :endcheck ) ) ) :endcheck endlocal & echo %index% goto :eof :lastindexof [%1 - check if is contained] - echoes last index setlocal rem -- check if there's local time settings hour suffix for /f "tokens=1,2,3 delims= " %%T in ('date /t') do ( if "%%V" EQU "" ( set /a last_column=5 ) else ( set /a last_column=6 ) ) set /a index=-1 if %last_column% EQU 5 ( for /f "eol=- tokens=1-6,* delims= " %%A in ('at %remote_machine% ^| find "Each"') do ( if "%%~F" EQU "%~1" ( set /a index=%%A >nul ) ) ) if %last_column% EQU 6 ( for /f "eol=- tokens=1-5,* delims= " %%A in ('at %remote_machine% ^| find "Each"') do ( if "%%~F" EQU "%~1" ( set /a index=%%A ) ) ) :endcheck endlocal & echo %index% goto :eof :contains [%1 - check if is contained] set errorlevel to -1 if is contained setlocal set /a errorlevel=0 set result= for /f "usebackq" %%C in (`%~f0 call :indexof %~1`) do ( set result=%%C ) if "%result%" NEQ "-1" ( set /a errorlevel=1 ) else ( set /a errorlevel=0 ) endlocal & set /a errorlevel=%errorlevel% goto :eof :pop - deletes and echoes the first element in the list setlocal if "%1" EQU "" ( call :length left ) else ( set /a left=%1 > nul ) if %left% equ 0 ( call at %remote_machine% /delete /yes goto :eof ) call :getvalueat %left% current_element call :pop %left%-1 rem :: get first element if %left% EQU 1 ( echo %current_element% goto :eof ) at %remote_machine% 00:00 /every:31 %current_element% >nul endlocal goto :eof :queue - delete and return the last element in the list setlocal if [%len%] EQU [] ( call :length len ) if "%len%" EQU "0" ( goto :eof ) if "%1" EQU "" ( call :length left ) else ( set /a left=%1 > nul ) if %left% equ 0 ( call at %remote_machine% /delete /yes goto :eof ) call :getvalueat %left% current_element call :queue %left%-1 if %left% EQU %len% ( echo %current_element% goto :eof ) at %remote_machine% 00:00 /every:31 "%current_element%" >nul endlocal goto :eof :deleteat [%1 - number of the element to be deleted] - returns the value of deleted element setlocal set /a deleteat=%1 if "%2" EQU "" ( call :length left ) else ( set /a left=%2 > nul ) if %left% equ 0 ( call at %remote_machine% /delete /yes goto :eof ) call :getvalueat %left% current_element call :deleteat %deleteat% %left%-1 if %left% EQU %deleteat% ( echo %current_element% goto :eof ) at %remote_machine% 00:00 /every:31 "%current_element%" >nul endlocal goto :eof :push [%1 - set this value on the first position] setlocal set "push=%~1" if "%2" EQU "" ( call :length left ) else ( set /a left=%2 > nul ) if %left% equ 0 ( at %remote_machine% /delete /yes at %remote_machine% 00:00 /every:31 %push% >nul goto :eof ) call :getvalueat %left% current_element call :push "%push%" %left%-1 at %remote_machine% 00:00 /every:31 "%current_element%" >nul endlocal goto :eof :insert [%1 - value to insert , %2 - position to insert ] setlocal set "insert=%~1" set /a pos=%2 if [%len%] EQU [] ( call :length len setlocal enabledelayedexpansion if !pos! GTR !len! ( echo echo IndexOutOfBoundException goto :eof ) endlocal ) if "%3" EQU "" ( call :length left ) else ( set /a left=%3 > nul ) if %left% equ 0 ( at %remote_machine% /delete /yes goto :eof ) call :getvalueat %left% current_element call :insert "%insert%" %pos% %left%-1 if %left% EQU %pos% ( at %remote_machine% 00:00 /every:31 "%insert%" >nul ) at %remote_machine% 00:00 /every:31 "%current_element%" >nul endlocal goto :eof :clear - clears the list at %remote_machine% /delete /yes >nul goto :eof :isempty - checks if the list is empty setlocal call :length len if "%len%" EQU "0" ( echo YES ) else ( echo NO ) endlocal goto :eof :size - echoes the length setlocal call :length len echo %len% endlocal goto :eof :help echo %~n0 is a script that uses AT command for enumerated list. echo you can have only one instance of this list - except if you're echo not using remote host for storage (see remote_host key switch). echo The list will be persisted on the system even after restart. echo Following command swithes are slow are not recommended for often usage: echo pop,queue,deleteat,push,insert - as they are using recursion and delete and echo preset the values again (at does not reuse jobs ids even if the jobs are deleted ). echo Use this script only on your own responsibility.For more info check commands bellow. echo\ echo %~n0 ^| [-? ^|? ^|/? ^|-h ^|-help ^|help ^|h] prints this message echo - prints this message echo\ echo %~n0 add item - adds an item to the list.Avoid following sympls echo as they are special symbols for cmd.exe : ( , ), ^&, ^| , ^> , ^< , ^^ , %% , ^= , : , ~ . echo\ echo %~n0 getvalueat position variable_name - gets the value echo at given possition and store the result to the variable name. echo If outflows the list prinst "indexOutOfBoundException". echo\ echo %~n0 length variable_name - get the length and stores the result in variable_name. echo If list is empty sets 0. echo\ echo %~n0 remote_macine machine_name - sets remote machine where the list is stored. echo\ echo %~n0 fastlist - lists elements using internal AT command listing echo the elements will be not sorted by number but will run faster than list. echo\ echo %~n0 list - lists all elements. echo\ echo %~n0 indexof value - returns the possition of first appearance of the given value. echo\ echo %~n0 lastindexof value - returns the possition of last appearance of given value. echo\ echo %~n0 contains value - check if the given value is contained in the echo list.Set ERRORLEVEL to 1 if so. echo\ echo %~n0 pop - deletes the first element and echoes it's value. echo\ echo %~n0 queue - deletes the last element and echoes it's value echo\ echo %~n0 deleteat position - deletes an element on given position echo and echoes it's value. echo %~n0 push value - set an element on first possition with given value. echo\ echo %~n0 insert value position - insert an element with the given position and value. echo\ echo %~n0 clear - clears the list. echo\ echo %~n0 size - echoes the size (length). echo\ echo %~n0 isempty - checks if the list is empty . echo\ goto :eof
TheBigBear/batch.scripts
other/ArrayListPOC.bat
bat
mit
14,837
@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. 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\MultipleDispatch.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\MultipleDispatch.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" == "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 ) :end
pombredanne/multipledispatch
docs/make.bat
bat
bsd-3-clause
5,125
@echo off IF EXIST tundra.sln del /Q tundra.sln cd tools\Windows\ call RunCMake "Visual Studio 10 Win64" cd ..\.. pause
jesterKing/naali
CMake_VS2010_X64.bat
bat
apache-2.0
120
REM: A batch program to rebuild the Win32++ samples using VS2005. REM: The contents of the log file is erased REM: The contents of the VS2005 directory will be erased REM: Set the paths and environment variables call "C:\Program Files (x86)\Microsoft Visual Studio 8\VC\vcvarsall.bat" x86 ::Cleanup call CleanSamples call CleanTutorials @echo on REM: Change the directory to the Samples parent pushd ..\Samples if exist "..\output\VS2005\Debug" rmdir /s /q "..\output\VS2005\Debug" if exist "..\output\VS2005\Release" rmdir /s /q "..\output\VS2005\Release" if exist "..\output\VS2005\Tutorials" rmdir /s /q "..\output\VS2005\Tutorials" ::Compile code devenv /build Debug Browser\ProjectFiles\Browser_2005.sln > "..\output\VS2005.log" devenv /build Release Browser\ProjectFiles\Browser_2005.sln >>"..\output\VS2005.log" devenv /build Debug CustomControl\ProjectFiles\CustomControl_2005.sln >>"..\output\VS2005.log" devenv /build Release CustomControl\ProjectFiles\CustomControl_2005.sln >>"..\output\VS2005.log" devenv /build Debug Dialog\ProjectFiles\Dialog_2005.sln >>"..\output\VS2005.log" devenv /build Release Dialog\ProjectFiles\Dialog_2005.sln >>"..\output\VS2005.log" devenv /build Debug DialogBars\ProjectFiles\DialogBars_2005.sln >>"..\output\VS2005.log" devenv /build Release DialogBars\ProjectFiles\DialogBars_2005.sln >>"..\output\VS2005.log" devenv /build Debug DialogDemo\ProjectFiles\DialogDemo_2005.sln >>"..\output\VS2005.log" devenv /build Release DialogDemo\ProjectFiles\DialogDemo_2005.sln >>"..\output\VS2005.log" devenv /build Debug DialogTab\ProjectFiles\DialogTab_2005.sln >>"..\output\VS2005.log" devenv /build Release DialogTab\ProjectFiles\DialogTab_2005.sln >>"..\output\VS2005.log" devenv /build Debug DirectX\ProjectFiles\DirectX_2005.sln >>"..\output\VS2005.log" devenv /build Release DirectX\ProjectFiles\DirectX_2005.sln >>"..\output\VS2005.log" devenv /build Debug Dock\ProjectFiles\Dock_2005.sln >>"..\output\VS2005.log" devenv /build Release Dock\ProjectFiles\Dock_2005.sln >>"..\output\VS2005.log" devenv /build Debug DockContainer\ProjectFiles\DockContainer_2005.sln >>"..\output\VS2005.log" devenv /build Release DockContainer\ProjectFiles\DockContainer_2005.sln >>"..\output\VS2005.log" devenv /build Debug DockTabbedMDI\ProjectFiles\DockTabbedMDI_2005.sln >>"..\output\VS2005.log" devenv /build Release DockTabbedMDI\ProjectFiles\DockTabbedMDI_2005.sln >>"..\output\VS2005.log" devenv /build Debug Explorer\ProjectFiles\Explorer_2005.sln >>"..\output\VS2005.log" devenv /build Release Explorer\ProjectFiles\Explorer_2005.sln >>"..\output\VS2005.log" devenv /build Debug FastGDI\ProjectFiles\FastGDI_2005.sln >>"..\output\VS2005.log" devenv /build Release FastGDI\ProjectFiles\FastGDI_2005.sln >>"..\output\VS2005.log" devenv /build Debug FormDemo\ProjectFiles\FormDemo_2005.sln >>"..\output\VS2005.log" devenv /build Release FormDemo\ProjectFiles\FormDemo_2005.sln >>"..\output\VS2005.log" devenv /build Debug Frame\ProjectFiles\Frame_2005.sln >>"..\output\VS2005.log" devenv /build Release Frame\ProjectFiles\Frame_2005.sln >>"..\output\VS2005.log" devenv /build Debug GDIPlus\ProjectFiles\GDIPlus_2005.sln >>"..\output\VS2005.log" devenv /build Release GDIPlus\ProjectFiles\GDIPlus_2005.sln >>"..\output\VS2005.log" devenv /build Debug MDIFrame\ProjectFiles\MDIFrame_2005.sln >>"..\output\VS2005.log" devenv /build Release MDIFrame\ProjectFiles\MDIFrame_2005.sln >>"..\output\VS2005.log" devenv /build Debug MDIFrameDemo\ProjectFiles\MDIDemo_2005.sln >>"..\output\VS2005.log" devenv /build Release MDIFrameDemo\ProjectFiles\MDIDemo_2005.sln >>"..\output\VS2005.log" devenv /build Debug MDIFrameSplitter\ProjectFiles\MDIFrameSplitter_2005.sln >>"..\output\VS2005.log" devenv /build Release MDIFrameSplitter\ProjectFiles\MDIFrameSplitter_2005.sln >>"..\output\VS2005.log" devenv /build Debug Networking\ClientDlg\Client_2005.sln >>"..\output\VS2005.log" devenv /build Release Networking\ClientDlg\Client_2005.sln >>"..\output\VS2005.log" devenv /build Debug Networking\ServerDlg\Server_2005.sln >>"..\output\VS2005.log" devenv /build Release Networking\ServerDlg\Server_2005.sln >>"..\output\VS2005.log" devenv /build Debug NotePad\ProjectFiles\Notepad_2005.sln >>"..\output\VS2005.log" devenv /build Release NotePad\ProjectFiles\Notepad_2005.sln >>"..\output\VS2005.log" devenv /build Debug Performance\ProjectFiles\Performance_2005.sln >>"..\output\VS2005.log" devenv /build Release Performance\ProjectFiles\Performance_2005.sln >>"..\output\VS2005.log" devenv /build Debug Picture\ProjectFiles\Picture_2005.sln >>"..\output\VS2005.log" devenv /build Release Picture\ProjectFiles\Picture_2005.sln >>"..\output\VS2005.log" devenv /build Debug PropertySheet\ProjectFiles\PropertySheet_2005.sln >>"..\output\VS2005.log" devenv /build Release PropertySheet\ProjectFiles\PropertySheet_2005.sln >>"..\output\VS2005.log" devenv /build Debug RibbonFrame\ProjectFiles\RibbonFrame_2005.sln >>"..\output\VS2005.log" devenv /build Release RibbonFrame\ProjectFiles\RibbonFrame_2005.sln >>"..\output\VS2005.log" devenv /build Debug RibbonSimple\ProjectFiles\SimpleRibbon_2005.sln >>"..\output\VS2005.log" devenv /build Release RibbonSimple\ProjectFiles\SimpleRibbon_2005.sln >>"..\output\VS2005.log" devenv /build Debug Scribble\ProjectFiles\Scribble_2005.sln >>"..\output\VS2005.log" devenv /build Release Scribble\ProjectFiles\Scribble_2005.sln >>"..\output\VS2005.log" devenv /build Debug Simple\ProjectFiles\Simple_2005.sln >>"..\output\VS2005.log" devenv /build Release Simple\ProjectFiles\Simple_2005.sln >>"..\output\VS2005.log" devenv /build Debug Splitter\ProjectFiles\Splitter_2005.sln >>"..\output\VS2005.log" devenv /build Release Splitter\ProjectFiles\Splitter_2005.sln >>"..\output\VS2005.log" devenv /build Debug TabDemo\ProjectFiles\TabDemo_2005.sln >>"..\output\VS2005.log" devenv /build Release TabDemo\ProjectFiles\TabDemo_2005.sln >>"..\output\VS2005.log" devenv /build Debug TaskDialog\ProjectFiles\TaskDialog_2005.sln >>"..\output\VS2005.log" devenv /build Release TaskDialog\ProjectFiles\TaskDialog_2005.sln >>"..\output\VS2005.log" devenv /build Debug Themes\ProjectFiles\Themes_2005.sln >>"..\output\VS2005.log" devenv /build Release Themes\ProjectFiles\Themes_2005.sln >>"..\output\VS2005.log" devenv /build Debug Threads\ProjectFiles\Threads_2005.sln >>"..\output\VS2005.log" devenv /build Release Threads\ProjectFiles\Threads_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tray\ProjectFiles\Tray_2005.sln >>"..\output\VS2005.log" devenv /build Release Tray\ProjectFiles\Tray_2005.sln >>"..\output\VS2005.log" mkdir "..\output\VS2005" mkdir "..\output\VS2005\Debug" ECHO "Copying Debug Samples" >>"..\output\VS2005.log" copy Browser\ProjectFiles\Debug\Browser.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy CustomControl\ProjectFiles\Debug\CustomControl.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Dialog\ProjectFiles\Debug\Dialog.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy DialogBars\ProjectFiles\Debug\DialogBars.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy DialogDemo\ProjectFiles\Debug\DialogDemo.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy DialogTab\ProjectFiles\Debug\DialogTab.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy DirectX\ProjectFiles\Debug\DirectX.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Dock\ProjectFiles\Debug\Dock.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy DockContainer\ProjectFiles\Debug\DockContainer.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy DockTabbedMDI\ProjectFiles\Debug\DockTabbedMDI.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Explorer\ProjectFiles\Debug\Explorer.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy FastGDI\ProjectFiles\Debug\FastGDI.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy FormDemo\ProjectFiles\Debug\FormDemo.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Frame\ProjectFiles\Debug\Frame.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy GDIPlus\ProjectFiles\Debug\GDIPlus.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy MDIFrame\ProjectFiles\Debug\MDIFrame.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy MDIFrameDemo\ProjectFiles\Debug\MDIDemo.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy MDIFrameSplitter\ProjectFiles\Debug\MDIFrameSplitter.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Networking\ClientDlg\Debug\Client.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Networking\ServerDlg\Debug\Server.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy NotePad\ProjectFiles\Debug\Notepad.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Performance\ProjectFiles\Debug\Performance.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Picture\ProjectFiles\Debug\Picture.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy PropertySheet\ProjectFiles\Debug\PropertySheet.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy RibbonFrame\ProjectFiles\Debug\RibbonFrame.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy RibbonSimple\ProjectFiles\Debug\SimpleRibbon.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Scribble\ProjectFiles\Debug\Scribble.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Simple\ProjectFiles\Debug\Simple.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Splitter\ProjectFiles\Debug\Splitter.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy TabDemo\ProjectFiles\Debug\TabDemo.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy TaskDialog\ProjectFiles\Debug\TaskDialog.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Themes\ProjectFiles\Debug\Themes.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Threads\ProjectFiles\Debug\Threads.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" copy Tray\ProjectFiles\Debug\Tray.exe "..\output\VS2005\Debug" >>"..\output\VS2005.log" mkdir "..\output\VS2005\Release" ECHO "Copying Release Samples" >>"..\output\VS2005.log" copy Browser\ProjectFiles\Release\Browser.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy CustomControl\ProjectFiles\Release\CustomControl.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Dialog\ProjectFiles\Release\Dialog.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy DialogBars\ProjectFiles\Release\DialogBars.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy DialogDemo\ProjectFiles\Release\DialogDemo.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy DialogTab\ProjectFiles\Release\DialogTab.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy DirectX\ProjectFiles\Release\DirectX.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Dock\ProjectFiles\Release\Dock.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy DockContainer\ProjectFiles\Release\DockContainer.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy DockTabbedMDI\ProjectFiles\Release\DockTabbedMDI.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Explorer\ProjectFiles\Release\Explorer.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy FastGDI\ProjectFiles\Release\FastGDI.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy FormDemo\ProjectFiles\Release\FormDemo.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Frame\ProjectFiles\Release\Frame.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy GDIPlus\ProjectFiles\Release\GDIPlus.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy MDIFrame\ProjectFiles\Release\MDIFrame.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy MDIFrameDemo\ProjectFiles\Release\MDIDemo.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy MDIFrameSplitter\ProjectFiles\Release\MDIFrameSplitter.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Networking\ClientDlg\Release\Client.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Networking\ServerDlg\Release\Server.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy NotePad\ProjectFiles\Release\Notepad.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Performance\ProjectFiles\Release\Performance.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Picture\ProjectFiles\Release\Picture.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy PropertySheet\ProjectFiles\Release\PropertySheet.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy RibbonFrame\ProjectFiles\Release\RibbonFrame.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy RibbonSimple\ProjectFiles\Release\SimpleRibbon.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Scribble\ProjectFiles\Release\Scribble.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Simple\ProjectFiles\Release\Simple.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Splitter\ProjectFiles\Release\Splitter.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy TabDemo\ProjectFiles\Release\TabDemo.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy TaskDialog\ProjectFiles\Release\TaskDialog.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Themes\ProjectFiles\Release\Themes.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Threads\ProjectFiles\Release\Threads.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" copy Tray\ProjectFiles\Release\Tray.exe "..\output\VS2005\Release" >>"..\output\VS2005.log" REM: Change the directory to the Tutorials parent popd pushd ..\Tutorials REM: Compile Tutorials ::Compile code devenv /build Debug Tutorial1\Tutorial1_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial1\Tutorial1_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial2\Tutorial2_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial2\Tutorial2_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial3\Tutorial3_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial3\Tutorial3_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial4\Tutorial4_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial4\Tutorial4_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial5\Tutorial5_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial5\Tutorial5_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial6\Tutorial6_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial6\Tutorial6_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial7\Tutorial7_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial7\Tutorial7_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial8\Tutorial8_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial8\Tutorial8_2005.sln >>"..\output\VS2005.log" devenv /build Debug Tutorial9\Tutorial9_2005.sln >>"..\output\VS2005.log" devenv /build Release Tutorial9\Tutorial9_2005.sln >>"..\output\VS2005.log" mkdir "..\output\VS2005\Tutorials" mkdir "..\output\VS2005\Tutorials\Debug" ECHO "Copying Debug Tutorials" >>"..\output\VS2005.log" copy Tutorial1\Debug\Tutorial1.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial2\Debug\Tutorial2.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial3\Debug\Tutorial3.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial4\Debug\Tutorial4.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial5\Debug\Tutorial5.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial6\Debug\Tutorial6.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial7\Debug\Tutorial7.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial8\Debug\Tutorial8.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" copy Tutorial9\Debug\Tutorial9.exe "..\output\VS2005\Tutorials\Debug" >>"..\output\VS2005.log" mkdir "..\output\VS2005\Tutorials\Release" ECHO "Copying Release Tutorials" >>"..\output\VS2005.log" copy Tutorial1\Release\Tutorial1.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial2\Release\Tutorial2.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial3\Release\Tutorial3.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial4\Release\Tutorial4.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial5\Release\Tutorial5.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial6\Release\Tutorial6.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial7\Release\Tutorial7.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial8\Release\Tutorial8.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" copy Tutorial9\Release\Tutorial9.exe "..\output\VS2005\Tutorials\Release" >>"..\output\VS2005.log" REM: Pop the directory change off the stack popd
RasPlex/plex-home-theatre
plex/Update-Installer/external/win32cpp/tools/Compile VS2005.bat
bat
gpl-2.0
19,702
@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. 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\django-robots.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-robots.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" == "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 ) :end
philippeowagner/django-robots
docs/make.bat
bat
bsd-3-clause
5,110
/****************************************************************************** * * Default Linker Command file for the Texas Instruments LM4F120H5QR * * This is part of revision 9385 of the Stellaris Peripheral Driver Library. * *****************************************************************************/ --retain=g_pfnVectors MEMORY { FLASH (RX) : origin = 0x00000000, length = 0x00040000 SRAM (RWX) : origin = 0x20000000, length = 0x00008000 } /* 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=rtsv7M4_T_le_eabi.lib */ /* Section allocation in memory */ SECTIONS { .intvecs: > 0x00000000 .text : > FLASH .const : > FLASH .cinit : > FLASH .pinit : > FLASH .vtable : > 0x20000000 .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM } __STACK_TOP = __stack + 256;
DonaldRich/Tiva-Sharp-LCD-Memory-Display
lm4f120h5qr.cmd
bat
gpl-3.0
1,514
@REM @REM Licensed to the Apache Software Foundation (ASF) under one or more @REM contributor license agreements. See the NOTICE file distributed with @REM this work for additional information regarding copyright ownership. @REM The ASF licenses this file to You under the Apache License, Version 2.0 @REM (the "License"); 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. @echo off if "%OS%" == "Windows_NT" setlocal if NOT DEFINED CASSANDRA_HOME set CASSANDRA_HOME=%~dp0.. if NOT DEFINED CASSANDRA_CONF set CASSANDRA_CONF="%CASSANDRA_HOME%\conf" if NOT DEFINED CASSANDRA_MAIN set CASSANDRA_MAIN=org.apache.cassandra.tools.StandaloneUpgrader if NOT DEFINED JAVA_HOME goto :err REM ***** JAVA options ***** set JAVA_OPTS=^ -Dlog4j.configuration=log4j-tools.properties REM ***** CLASSPATH library setting ***** REM Ensure that any user defined CLASSPATH variables are not used on startup set CLASSPATH="%CASSANDRA_HOME%\conf" REM For each jar in the CASSANDRA_HOME lib directory call append to build the CLASSPATH variable. for %%i in ("%CASSANDRA_HOME%\lib\*.jar") do call :append "%%i" goto okClasspath :append set CLASSPATH=%CLASSPATH%;%1 goto :eof :okClasspath REM Include the build\classes\main directory so it works in development set CASSANDRA_CLASSPATH=%CLASSPATH%;"%CASSANDRA_HOME%\build\classes\main";%CASSANDRA_CONF%;"%CASSANDRA_HOME%\build\classes\thrift" set CASSANDRA_PARAMS= set TOOLS_PARAMS= goto runTool :runTool "%JAVA_HOME%\bin\java" %JAVA_OPTS% %CASSANDRA_PARAMS% -cp %CASSANDRA_CLASSPATH% "%CASSANDRA_MAIN%" %* goto finally :err echo JAVA_HOME environment variable must be set! pause :finally ENDLOCAL
bkcloud/bkplatform
cassandra-scripts/bin/sstableupgrade.bat
bat
mpl-2.0
2,104
cd %~dp0\target java -server -XX:+CMSClassUnloadingEnabled -Xmx2G -Xss512M -XX:MaxPermSize=512m -jar lift-stateless-assembly-0.0.1.jar > nul 2>&1 cd %~dp0
julienschmidt/FrameworkBenchmarks
lift-stateless/run.bat
bat
bsd-3-clause
155
@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. epub3 to make an epub3 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 echo. dummy to check syntax errors of document sources 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% 1>NUL 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\mss-chem.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\mss-chem.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" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. 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 ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
andreas-h/mss-chem
docs/make.bat
bat
mit
7,736
@echo Off set config=%1 if "%config%" == "" ( set config=Release ) set version= if not "%PackageVersion%" == "" ( set version=-Version %PackageVersion% ) set nuget= if "%nuget%" == "" ( set nuget=.nuget\NuGet.exe ) set nunit="packages\NUnit.Runners.2.6.2\tools\nunit-console.exe" echo Update self %nuget% %nuget% update -self if %errorlevel% neq 0 goto failure echo Restore packages %nuget% install ".nuget\packages.config" -OutputDirectory packages -NonInteractive if %errorlevel% neq 0 goto failure echo Build %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Premotion.Mansion.Twitter.sln /t:Rebuild /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false if %errorlevel% neq 0 goto failure echo Unit tests %nunit% Premotion.Mansion.Twitter.Tests\bin\Premotion.Mansion.Twitter.Tests.dll /framework:net-4.5 if %errorlevel% neq 0 goto failure echo Package mkdir Build cmd /c %nuget% pack "Premotion.Mansion.Twitter\Premotion.Mansion.Twitter.csproj" -symbols -o Build -p Configuration=%config% %version% if %errorlevel% neq 0 goto failure :success echo Success goto end :failure echo Failed :end
devatwork/Premotion.Mansion.Twitter
build.bat
bat
mit
1,154
@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. 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\vkapp.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\vkapp.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" == "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 ) :end
ParuninPavel/lenta4_hack
docs/make.bat
bat
mit
5,094
@echo off set PATH=C:\qt\4.8.4\bin set QT_DEV_PATH=D:\Programmas\ffmpeg-1.2-win32-dev\ffmpeg-1.2-win32-dev set QT_SHARED_PATH=D:\Programmas\ffmpeg-1.2-win32-shared\ffmpeg-1.2-win32-shared
Evolving-AI-Lab/cppnx
qt-path.bat
bat
mit
192
cmd_arch/arm/lib/lib1funcs.o := arm-linux-androideabi-gcc -Wp,-MD,arch/arm/lib/.lib1funcs.o.d -nostdinc -isystem /home/mihawk/Android/android-ndk-linux/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.9/include -I/home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-goldfish/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/lib1funcs.o arch/arm/lib/lib1funcs.S source_arch/arm/lib/lib1funcs.o := arch/arm/lib/lib1funcs.S deps_arch/arm/lib/lib1funcs.o := \ $(wildcard include/config/aeabi.h) \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.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) \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/linkage.h \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/cpu/use/domains.h) \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/hwcap.h \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/arch/arm/include/asm/unwind.h \ $(wildcard include/config/arm/unwind.h) \ arch/arm/lib/lib1funcs.o: $(deps_arch/arm/lib/lib1funcs.o) $(deps_arch/arm/lib/lib1funcs.o):
MihawkHu/Android_scheduler
kernel/goldfish/arch/arm/lib/.lib1funcs.o.cmd
bat
mit
2,391
@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\ResponseBuilder.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ResponseBuilder.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
wotek/response-builder
docs/make.bat
bat
mit
6,719
@echo off php update.php
droptable/ua-parser
bin/update.bat
bat
mit
26
py -3.4 database.py > database.txt py -3.4 Resources/resourcepack.py "C:\Python34\python.exe" omnisetup.py build "C:\Python34 64Bit\python.exe" omnisetup.py build @pause
flying-sheep/omnitool
32+64build.bat
bat
mit
169
imagej -macro "C:\\Program Files\\ImageJ\\plugins\\root_tracing\\debug.txt"
LionelDupuy/ARCHI_PHEN
ImageJ/compile_tracing.bat
bat
mit
75
@REM @REM Copyright (c) Microsoft Corporation. All rights reserved. @REM @REM @REM Use of this sample source code is subject to the terms of the Microsoft @REM license agreement under which you licensed this sample source code. If @REM you did not accept the terms of the license agreement, you are not @REM authorized to use this sample source code. For the terms of the license, @REM please see the license agreement between you and Microsoft or, if applicable, @REM see the LICENSE.RTF on your install media or the root of your tools installation. @REM THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES. @REM @REM @REM This batch file prepares a storage device with the Windows CE BIOS @REM bootloader. It assumes the storage device has been properly partitioned @REM and formatted first (disk should be clean). @REM @REM Usage: argv[0] drive @REM @REM drive - drive letter of storage device (a:, c:, etc.). @REM @echo off @REM Display a MKDisk version number to the user set drv=%1 if (%1) == () set drv=c: set fs=bl_%2 if (%2) == () set fs=bldr echo BiosLoader MKDISK Version 1.2.00 echo Preparing %drv% to run biosloader @REM Check to see if the bootsector image is available and, if so, @REM place it onto the destination drive :Bsect if exist bsect.img goto Bldr echo ERROR: Cannot find boot sector image (bsect.img). goto Done :Bldr if exist %fs% goto Xfer: echo ERROR: Cannot find bootloader image (%fs%). goto Done :Xfer echo Preparing the boot sector of %drv% if exist %drv%\bldr attrib -r -s -h %drv%\bldr cesys -b:62 bsect.img %fs% %drv% if exist %drv%\bldr attrib +r +s +h %drv%\bldr @REM Now copy the remaining configuration files to the destination drive if exist boot.ini goto BootIni echo ERROR: Cannot find boot config file (boot.ini). goto Done :BootIni if exist %drv%\boot.ini attrib -r -s -h %drv%\boot.ini echo Copying boot.ini to %drv% copy boot.ini %drv% > NUL if exist splash.bmx goto SplashBmx echo ERROR: Cannot find splash screen image (splash.bmx). goto Done :SplashBmx if exist %drv%\splash.bmx attrib -r -s -h %drv%\splash.bmx echo Copying splash.bmx to %drv% copy splash.bmx %drv% > NUL if exist eboot.bix goto EbootBix echo ERROR: Cannot find eboot bootloader (eboot.bix). goto Done :EbootBix if exist %drv%\eboot.bix attrib -r -s -h %drv%\eboot.bix echo Copying eboot.bix to %drv% copy eboot.bix %drv% > NUL echo %drv% is setup to boot nk.bin or eboot.bix if nk.bin is not present. echo Edit boot.ini if you wish to change these boot settings. echo Please remove the floppy disk and reset system for changes to take affect. :Done
embedded101/Compact2013.BSP
86duino_80b/src/bootloader/biosloader/diskimages/setupdisk/mkdisk.bat
bat
mit
2,617
bin\Windows\x86\luajit.exe byt3d\byt3d_simple.lua
dlannan/funLuaJit
luaJit32.cmd
bat
mit
49
copy sync_time.py C:\dev\temp\sync_time.py /Y cd C:\dev\temp\ python c:\Python27\pyinstaller\pyinstaller.py --onefile C:\dev\temp\sync_time.py
ManiacalLabs/BinaryEpochClock
Firmware/build_sync_time_exe.cmd
bat
mit
142
cmd_drivers/media/video/samsung/mhl_v1/built-in.o := ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/media/video/samsung/mhl_v1/built-in.o drivers/media/video/samsung/mhl_v1/sii9234.o drivers/media/video/samsung/mhl_v1/si_RegioCbus.o drivers/media/video/samsung/mhl_v1/SiI9234_I2C_master.o drivers/media/video/samsung/mhl_v1/sii9234_driver.o drivers/media/video/samsung/mhl_v1/si_apiCbus.o drivers/media/video/samsung/mhl_v1/si_cpCbus.o
tcp209/kernel_samsung_epic4gtouch
build/epic4gtouch/drivers/media/video/samsung/mhl_v1/.built-in.o.cmd
bat
gpl-2.0
499
cmd_net/bluetooth/hidp/built-in.o := /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/bluetooth/hidp/built-in.o net/bluetooth/hidp/hidp.o
doadin/samsung-kernel-msm7x30-Doadin
net/bluetooth/hidp/.built-in.o.cmd
bat
gpl-2.0
178
cmd_drivers/gpu/drm/i2c/built-in.o := rm -f drivers/gpu/drm/i2c/built-in.o; ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ar rcsD drivers/gpu/drm/i2c/built-in.o
chrnueve/udooImaxdi
kernel_oficial_source/drivers/gpu/drm/i2c/.built-in.o.cmd
bat
gpl-2.0
167
define srv localhost:7701 connect cl1 Alex alex %srv% :Test client 1 connect cl2 Bubb bubb %srv% :Test client 2 :cl1 raw :help :cl1 raw :admin :cl1 raw :admin test-2.* :cl1 raw :info :cl1 raw :wallops :HELLO OPERZ!!! :cl1 wait cl2 :cl1 raw :ison alex,bubb,alex,bubb,alex,bubb :cl1 raw :who b*b :cl1 raw :burst the bubble :cl1 raw :server huh huh i'm a server :cl1 raw :links :cl1 raw :map :cl1 raw :nick :cl1 raw :nick ~ :cl1 raw :nick -dude- :cl1 raw :nick alex :cl1 raw :nick Bubb :cl1 raw :ping alex test-1.* :cl1 oper oper1 oper1 :cl1 raw :admin :cl1 raw :admin test-2.* :cl1 raw :asll :cl1 raw :asll test-2.* :cl1 raw :info :cl1 raw :info test-2.* :cl1 raw :who x b*b :cl1 raw :close :cl1 raw :map :cl1 raw :links :cl1 raw :links test-2.* :cl1 raw :lusers :cl1 raw :lusers test-2.* :cl1 raw :motd :cl1 raw :motd test-2.* :cl1 raw :ping alex test-2.* :cl1 raw :rping test-2.* :cl2 raw :quit
dnetcode/dnet-1.0
ircd/test/commands-1.cmd
bat
gpl-2.0
898
@ECHO OFF CLS SET TARGET="Developer" IF NOT [%1]==[] (SET TARGET="%1") REM Run the FAKE build script "..\packages\FAKE\tools\FAKE.exe" "build.fsx" "target=%TARGET%" "logfile=build-log.xml" EXIT /b %errorlevel%
DaveHogan/AspNet-Mvc4-TemplateSite
.build/2.Build.bat
bat
gpl-2.0
214
cmd_sound/soc/imx/built-in.o := rm -f sound/soc/imx/built-in.o; /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ar rcsD sound/soc/imx/built-in.o
0xD34D/kernel_amazon_tate
sound/soc/imx/.built-in.o.cmd
bat
gpl-2.0
170
cmd_drivers/input/misc/built-in.o := /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/input/misc/built-in.o drivers/input/misc/gpio_event.o drivers/input/misc/gpio_matrix.o drivers/input/misc/gpio_input.o drivers/input/misc/gpio_output.o drivers/input/misc/gpio_axis.o drivers/input/misc/uinput.o drivers/input/misc/isa1200.o drivers/input/misc/vibetonz.o drivers/input/misc/isl29023.o drivers/input/misc/akm8975.o drivers/input/misc/bma150.o
sktjdgns1189/android_kernel_iriver_MX100
drivers/input/misc/.built-in.o.cmd
bat
gpl-2.0
472
cmd_scripts/bin2c := gcc -Wp,-MD,scripts/.bin2c.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/bin2c scripts/bin2c.c deps_scripts/bin2c := \ scripts/bin2c.c \ /usr/include/stdio.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-32.h \ /usr/lib/gcc/i686-linux-gnu/4.4.5/include/stddef.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/i686-linux-gnu/4.4.5/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 \ scripts/bin2c: $(deps_scripts/bin2c) $(deps_scripts/bin2c):
wujiku/superstar-kernel-shooter-2.3.4gb
scripts/.bin2c.cmd
bat
gpl-2.0
860
cmd_drivers/mmc/core/mmc_core.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/mmc/core/mmc_core.o drivers/mmc/core/core.o drivers/mmc/core/bus.o drivers/mmc/core/host.o drivers/mmc/core/mmc.o drivers/mmc/core/mmc_ops.o drivers/mmc/core/sd.o drivers/mmc/core/sd_ops.o drivers/mmc/core/sdio.o drivers/mmc/core/sdio_ops.o drivers/mmc/core/sdio_bus.o drivers/mmc/core/sdio_cis.o drivers/mmc/core/sdio_io.o drivers/mmc/core/sdio_irq.o drivers/mmc/core/quirks.o drivers/mmc/core/debugfs.o
PrestigeMod/SHW-M440S
drivers/mmc/core/.mmc_core.o.cmd
bat
gpl-2.0
549
@echo off :Start Cls color 07 echo. ---------------------------------------------- echo. ---------------------------------------------- echo. Add Firewall Rules - By: Hossam Hassan Sakr echo. ----------------11 April 2016----------------- echo. ---------------------------------------------- echo. echo ---------------------------------------------------------- echo This will help you to change your firewall settings fast. echo what do you want to do? echo ---------------------------------------------------------- echo. echo 1- Add new firewall rule echo 2- Change existing firewall rule echo 3- delete new firewall rule echo 4- show new firewall rule echo - Dump new firewall rule Underdevelop echo 5- Exit echo. echo. Set /P _rule=Select your operation: || Set _rule=NothingChosen IF "%_rule%"=="NothingChosen" goto sub_error IF /i %_rule% LEQ 1 Set _rule=Add IF /i %_rule% LEQ 2 Set _rule=Change IF /i %_rule% LEQ 3 Set _rule=delete IF /i %_rule% LEQ 4 Set _rule=show IF /i "%_rule"=="TestDump" Set _rule=Dump IF /i %_rule% LEQ 5 Set goto END Set /P _PortNumper=What port number: || Set _PortNumper=NothingChosen IF "%_PortNumper%"=="NothingChosen" goto sub_error echo. echo 1- %_rule% Inbound rule echo 2- %_rule% Outbound rule echo. Set /P _InOut=Select your operation: || Set _InOut=NothingChosen IF "%_InOut%"=="NothingChosen" goto sub_error IF /i "%_InOut%" LEQ 1 Set _InOut=In || IF /i "%_InOut" LEQ 2 Set _InOut=Out echo. echo 1- Allow Action rule 2- Block Action rule echo 3- Bypass Action rule echo. Set /P _Action=Select you protocol: || Set _Action=NothingChosen IF "%_Action%"=="NothingChosen" goto sub_error IF /i "%_Action%" LEQ 1 Set _Action=allow IF /i "%_Action%" LEQ 2 Set _Action=block IF /i "%_Action%" LEQ 3 Set _Action=bypass echo. echo 1- TCP Protocol 2- UDP Protocol echo 3- ICMPV4 Protocol 4- ICMPV6 Protocol echo 5- Any Protocol echo. Set /P _protocol=Select your operation: || Set _protocol=NothingChosen IF "%_protocol%"=="NothingChosen" goto sub_error IF /i "%_protocol%" LEQ 1 Set _protocol="TCP" IF /i "%_protocol%" LEQ 2 Set _protocol=UDP IF /i "%_protocol%" LEQ 3 Set _protocol=ICMPV4 IF /i "%_protocol%" LEQ 4 Set _protocol=ICMPV6 IF /i "%_protocol%" LEQ 5 Set _protocol=any echo netsh advfirewall firewall %_rule% rule name=FWADV_%_PortNumper% dir=%_InOut% action=%_Action% protocol=%_protocol% localport=%_PortNumper% pause :sub_error echo Nothing was chosen !! goto Start :END exit
HossamHSakr/Windows-Utilities
Advanced Firewall rules Ready.bat
bat
gpl-3.0
2,528
@del libbz2.a @gcc -Wall -Winline -O2 -g -D_FILE_OFFSET_BITS=64 -c blocksort.c huffman.c crctable.c randtable.c compress.c decompress.c bzlib.c @ar cq libbz2.a *.o @ranlib libbz2.a
AdrienTD/wkbre
bzip2/build_mg_d.bat
bat
gpl-3.0
180
@SET "JARVIS_HOME=%cd%" @IF "%JARVIS_HOME%" == "" GOTO NOPATH @php Jarvis.php %* @GOTO END :NOPATH @echo The environment variable JARVIS_HOME is not set, please set it to the root directory of your application before trying again :END
RickMyers/Jarvis
app/install/jarvis.bat
bat
gpl-3.0
234
@echo off title=Making PVRXPNG... echo Making PVRXPNG... Wait. echo. mingw32-make pause
yazgoo/pvrx2png
build.cmd
bat
gpl-3.0
94
del Org.Kevoree.Group.WSGroup.1.1.0-rc1.nupkg nuget pack kevoree-dotnet-group-ws.nuspec nuget push Org.Kevoree.Group.WSGroup.1.1.0-rc1.nupkg Admin:Admin -Source http://localhost:81/nuget/Default
kevoree/kevoree-dotnet-group-ws
deploy.bat
bat
lgpl-3.0
195
@echo on set project_version=1.0 set project_name=GameCenter set project_path=E:\WorkspaceForEclipseNew\GameCenter-Main set local_sign=E:\WorkspaceForEclipseNew\nearme_sign call apkBuild.bat 12025
jabelai/Neverland
NeverLand/apkBuildAll.bat
bat
apache-2.0
201
Rem APAGAR DRIVES net use \\ptvwaepas00011\uncc_cae$ /delete net use \\ptvwaepas00011\uncc_cad2$ /delete net use \\ptvwaepas00011\uncc_ref$ /delete net use \\ptvwaepas00011\uncc_cad$ /delete net use \\ptvwaepas00011\tool$ /delete net use \\ptvwaepas00011\Quality_Reports$ /delete net use \\ptvwaepas00011\uncc$ /delete net use \\ptvwaepas00011\Manuf$ /delete net use \\ptvwaepas00011\stp$ /delete net use \\10.81.33.107\toolshop_cad$ /delete Rem INICIAR DRIVES net use m: \\ptvwaepas00011\uncc_cad$ /persistent:yes net use n: \\ptvwaepas00011\Manuf$ /persistent:yes net use o: \\ptvwaepas00011\uncc_cad2$ /persistent:yes net use p: \\ptvwaepas00011\uncc_ref$ /persistent:yes net use q: \\ptvwaepas00011\Quality_Reports$ /persistent:yes net use r: \\ptvwaepas00011\uncc$ /persistent:yes net use s: \\ptvwaepas00011\uncc_cae$ /persistent:yes net use u: \\ptvwaepas00011\tool$ /persistent:yes net use w: \\ptvwaepas00011\stp$ /persistent:yes net use J: \\10.81.33.96\quirl terminal server$ /persistent:yes
MathewsBarbosa/testRepository
Drive UNCC_CAD.bat
bat
apache-2.0
1,079
@echo off echo. echo +------------------------------------+ echo + Tuesday's Disc Users Logoff Script + echo +------------------------------------+ echo + Version 1.0 + echo +------------------------------------+ echo. echo Scanning for disconnected users now... echo. :begin for /f "skip=2 tokens=1,2,3" %%i in ('qwinsta') do call :checkpath "%%i" %%j "%%k" goto :end :checkpath set sessionname=%1 set sessionid=%2 set sessionstatus=%3 if %sessionstatus%=="Disc" ( echo - %sessionname% session %sessionid% requested to log off logoff %sessionid% > nul 2>&1 ) exit /b :end echo. echo Scan complete, all disconnected users should now be logged off pause
TuesdayBlack/WindowsTools
LogoffDisconnectedUsers.bat
bat
apache-2.0
685
@ECHO OFF cd .. mvn install cd triana-app\dist triana.bat
CSCSI/Triana
bin/buildTriana.bat
bat
apache-2.0
65
echo off if not "%JAVA_HOME%" == "" goto gotJavaHome echo The JAVA_HOME environment variable is not defined echo This environment variable is needed to run this program goto exit :gotJavaHome if exist %JAVA_HOME%\bin\server\jvm.dll ( set JVM=%JAVA_HOME%\bin\server\jvm.dll ) else ( set JVM=%JAVA_HOME%\jre\bin\server\jvm.dll ) if defined LIQUID_ELASTIC_HOME ( echo LIQUID_ELASTIC_HOME IS defined ) else ( set LIQUID_ELASTIC_HOME=%~dp0 ) echo Using %LIQUID_ELASTIC_HOME% as liquid home directory set SERVICE_NAME=LiquidElasticService REM Remove service %LIQUID_ELASTIC_HOME%\bin\prunsrv.exe //DS//%SERVICE_NAME%
rjptegelaar/liquid-elastic
external-resources/uninstallServicex86.bat
bat
apache-2.0
662
@echo off cd ..\ rd /S /Q build cd dev
stolyaroleh/renderer
dev/clean.cmd
bat
bsd-2-clause
38
:: TODO path to soffice :: can batch-convert when %1 = *.doc :: python won't read it - probably expects different filter soffice --headless --convert-to odt:writer8 %1
AntonKhorev/spb-budget-db
1-sources/doc2odt.bat
bat
bsd-2-clause
168
@echo OFF :: :: This script extract the Windows Kit path from the registry. :: setlocal ENABLEEXTENSIONS set KEY_NAME="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\Installed Roots" set VALUE_NAME=KitsRoot10 FOR /F "usebackq skip=2 tokens=1-2*" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( set ValueName=%%A set ValueType=%%B set ValueValue=%%C ) @echo WINDOWS_SDK = %ValueValue:\=/% set found=0 IF EXIST "%ValueValue%UnionMetaData\Windows.winmd" ( set RefPath=-AI"%ValueValue:\=/%References/" set UMDPath=-AI"%ValueValue:\=/%UnionMetaData/" set found=1 ) ELSE ( FOR /F "usebackq skip=1 tokens=6 delims=\" %%A IN (`REG QUERY %KEY_NAME% /f "10.*" /k 2^>nul`) DO ( IF %found% == 0 IF EXIST "%ValueValue%UnionMetaData\%%A\Windows.winmd" ( set RefPath=-AI"%ValueValue:\=/%References/%%A" set UMDPath=-AI"%ValueValue:\=/%UnionMetaData/%%A" set found=1 ) ) ) if found==0 exit /b 0 @echo WINDOWS_SDK_PATHS = $(WINDOWS_SDK_PATHS) %RefPath% %UMDPath% exit /b 1
jovasco/u2f-ref-code
u2f-tests/BLE/WindowsKit.bat
bat
bsd-3-clause
1,008
@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\pyrise.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyrise.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
michaelaye/hirise
docs/make.bat
bat
isc
6,459
SET CSCPATH=%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319 %CSCPATH%\csc /reference:bin/Newtonsoft.Json.dll /target:library /out:bin/Com.Aspose.Imaging.dll /recurse:src\*.cs /doc:bin/Com.Aspose.Imaging.xml
aspose-imaging/Aspose.Imaging-for-Cloud
SDKs/Aspose.Imaging-Cloud-SDK-for-.NET/compile.bat
bat
mit
207
mkdir coverage cd SimpleInjector.Core.Tests.Unit ..\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -mergeoutput -register:user -excludebyattribute:*.ExcludeFromCodeCoverage*^ "-target:C:\Program Files\dotnet\dotnet.exe" -targetargs:test -filter:"+[*]SimpleInjector.* -[*.Tests.*]* -[*.CodeSamples*]*" -output:..\coverage\coverage.xml -oldStyle ..\packages\ReportGenerator.2.5.3\tools\ReportGenerator.exe "-reports:..\coverage\coverage.xml" "-targetdir:..\coverage\report" "-filters:-*.Tests*;" "-historydir:coverage\history" ..\coverage\report\index.htm
simpleinjector/SimpleInjector
src/runcoverage.bat
bat
mit
565
cmd_scripts/conmakehash := gcc -Wp,-MD,scripts/.conmakehash.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/conmakehash scripts/conmakehash.c deps_scripts/conmakehash := \ scripts/conmakehash.c \ /usr/include/stdc-predef.h \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/sysexits.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/ctype.h \ scripts/conmakehash: $(deps_scripts/conmakehash) $(deps_scripts/conmakehash):
kaylorchen/Linux_for_mini2440
scripts/.conmakehash.cmd
bat
gpl-2.0
2,237
ck autotune pipeline:pipeline.cmd @autotune_program_pipeline1.json %*
supriyantomaftuh/ck-autotuning
demo/plugin-based-autotuning-engine-demo/autotune_program_pipeline1.bat
bat
bsd-3-clause
70
@rem Builds gRPC NuGet packages @rem Current package versions set VERSION=0.6.0 set CORE_VERSION=0.10.0 @rem Adjust the location of nuget.exe set NUGET=C:\nuget\nuget.exe setlocal cd ..\..\vsprojects\nuget_package @call buildall.bat || goto :error endlocal @call buildall.bat || goto :error %NUGET% pack ..\..\vsprojects\nuget_package\grpc.native.csharp_ext.nuspec -Version %CORE_VERSION% || goto :error %NUGET% pack Grpc.Auth\Grpc.Auth.nuspec -Symbols -Version %VERSION% || goto :error %NUGET% pack Grpc.Core\Grpc.Core.nuspec -Symbols -Version %VERSION% -Properties GrpcNativeCsharpExtVersion=%CORE_VERSION% || goto :error %NUGET% pack Grpc.HealthCheck\Grpc.HealthCheck.nuspec -Symbols -Version %VERSION% || goto :error %NUGET% pack Grpc.Tools.nuspec -Version %VERSION% || goto :error %NUGET% pack Grpc.nuspec -Version %VERSION% || goto :error goto :EOF :error echo Failed! exit /b %errorlevel%
xtopsoft/grpc
src/csharp/build_packages.bat
bat
bsd-3-clause
903
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:S1_ConnectionTest_CapabilityExchange_PositiveTest_VirtualChannelCapSet_MaxVCChunkSize /Logger:trx pause
JessieF/WindowsProtocolTestSuites
TestSuites/RDP/src/Batch/RDPBCGR/S1_ConnectionTest_CapabilityExchange_PositiveTest_VirtualChannelCapSet_MaxVCChunkSize.cmd
bat
mit
274
@ECHO OFF REM ; %PROJECT_NAME% is set by Jenkins, this allows us to use the same script to verify REM ; Chef and Angry Chef cd C:\opscode\%PROJECT_NAME%\bin REM ; We don't want to add the embedded bin dir to the main PATH as this REM ; could mask issues in our binstub shebangs. SET EMBEDDED_BIN_DIR=C:\opscode\%PROJECT_NAME%\embedded\bin ECHO. FOR %%b IN ( chef-client knife chef-solo ohai ) DO ( ECHO Checking for existence of binfile `%%b`... IF EXIST %%b ( ECHO ...FOUND IT! ) ELSE ( GOTO :error ) ECHO. ) call chef-client --version REM ; Exercise various packaged tools to validate binstub shebangs call %EMBEDDED_BIN_DIR%\ruby --version call %EMBEDDED_BIN_DIR%\gem --version call %EMBEDDED_BIN_DIR%\bundle --version call %EMBEDDED_BIN_DIR%\rspec --version SET PATH=C:\opscode\%PROJECT_NAME%\bin;C:\opscode\%PROJECT_NAME%\embedded\bin;%PATH% REM ; Test against the vendored chef gem cd C:\opscode\%PROJECT_NAME%\embedded\lib\ruby\gems\2*\gems\chef-*-mingw32 IF NOT EXIST "Gemfile.lock" ( ECHO "Chef gem does not contain a Gemfile.lock! This is needed to run any tests." GOTO :error ) IF "%PIPELINE_NAME%" == "chef-13" ( REM ; Running unit and functional tests call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/unit spec/functional ) ELSE ( REM ; Running unit tests call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/unit spec/functional )
tas50/omnibus-chef
jenkins/verify-chef.bat
bat
apache-2.0
1,529
java -jar teapot-1.2.0-beta.jar
eic-cefet-rj/sagitarii-teapot
run.bat
bat
apache-2.0
31
cmd_scripts/kconfig/lxdialog/textbox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.textbox.o.d -Wall -Wmissing-prototypes -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):
dmeadows013/Ds_Kernel_Gingerbread
scripts/kconfig/lxdialog/.textbox.o.cmd
bat
gpl-2.0
2,202
@rem This will work if you have a directory with xsltproc.exe and in your path xsltproc --xinclude --param "FILEREF" "''" -o %3 %2 %1
malaterre/serna-free-backup
serna/dist/plugins/dita/map2htm.bat
bat
gpl-3.0
135
@echo off SETLOCAL :start mkdir win32-msvc-vs2013-x86 cd win32-msvc-vs2013-x86 cmake -G "Visual Studio 12" ../.. pause
cmdwin32/tileMapHomework
tillmap/cocos2d/build/win32-msvc-2013-x86.cmd
bat
unlicense
120
@@echo off SHIFT IF "%1"=="--help" ( goto Help ) ELSE ( IF NOT "%1"=="" ( echo unrecogized argument^(s^), try using the "--help" switch goto End ) ELSE ( goto listInstalled ) ) :Help echo --installed echo Lists the installed versions of Python goto End :listInstalled for /d %%X in (%PYWE_HOME%\versions\*) do echo %%~nxX goto End :End rem ends this script
monknomo/pywe
lib/commands/installed.bat
bat
mit
386
@echo off REM PHP_CodeSniffer tokenises PHP code and detects violations of a REM defined set of coding standards. REM REM PHP version 5 REM REM @category PHP REM @package PHP_CodeSniffer REM @author Greg Sherwood <[email protected]> REM @author Marc McIntyre <[email protected]> REM @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence REM @link http://pear.php.net/package/PHP_CodeSniffer if "%PHPBIN%" == "" set PHPBIN=@php_bin@ if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH GOTO RUN :USE_PEAR_PATH set PHPBIN=%PHP_PEAR_PHP_BIN% :RUN "%PHPBIN%" "@bin_dir@\phpcs" %*
eredi93/forms
vendor/squizlabs/php_codesniffer/scripts/phpcs.bat
bat
mit
715
@echo off REM echo "creating debug-log file" > debug-log.txt REM Date /T >> log.log && Time /T >> debug-log.txt REM start cmd /K mongod && echo "mongod started" >> debug-log.txt && Date /T & Time /T >> debug-log.txt start cmd /K foundation watch REM start nodemon --inspect-brk server.js && echo "inspector started" >> debug-log.txt start cmd /K nodemon --inspect server.js echo "server started" REM echo "starting chrome to browse admin gallery" REM start chrome "http://localhost:3555/intro" REM start chrome "ws://localhost:4555/intro"
hpslavov/NodeGallery
start.bat
bat
mit
611