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
|
---|---|---|---|---|---|
rem PeopleTool UnPatching 11/5/2019 v4
@echo off
@echo Stop Processes > e:\temp\ps_patching.log
call net stop "ORACLE ProcMGR V12.2.2.0.0_VS2015"
timeout 10
@echo Download Files >> e:\temp\ps_patching.log
aws s3 cp s3://XXX/Windows/7zip/7z920.exe e:\temp\
aws s3 cp "s3://XXX/Java/pt-jdk8 (8u221).zip" e:\temp\jdk8.zip
aws s3 cp s3://XXX/Oracle/weblogic/patch/12.2.1.3.0/p30386660_122130_Generic.zip e:\temp\
cd e:\temp
@echo Install 7zip >> e:\temp\ps_patching.log
call "e:\temp\7z920.exe" /S /D="C:\Program Files (x86)\7-Zip"
timeout 5
@echo Extract Files >> e:\temp\ps_patching.log
call "C:\Program Files (x86)\7-Zip\7z.exe" x E:\temp\p30386660_122130_Generic.zip
call "C:\Program Files (x86)\7-Zip\7z.exe" x -oE:\pt857\pt\jdk8_221 -y E:\temp\jdk8.zip
mv E:\pt857\pt\jdk8_221\jdk1.8.0_221 E:\pt857\pt\jdk1.8.0_221
mv E:\pt857\pt\jdk8 E:\pt857\pt\jdk1.8.0_231
mv E:\pt857\pt\jdk1.8.0_221 E:\pt857\pt\jdk8
timeout 5
@echo Uninstall 7zip >> e:\temp\ps_patching.log
call "C:\Program Files (x86)\7-Zip\Uninstall.exe" /S
timeout 5
cd e:\temp\30386660
@echo UnApply Patch >> e:\temp\ps_patching.log
call "e:\pt857\pt\bea\OPatch\opatch.bat" rollback -id 30386660 -oh e:\pt857\pt\bea
timeout 5
| quickmute/PeopleSoft | ps_unpatching.bat | bat | mit | 1,189 |
@ECHO OFF
SETLOCAL enabledelayedexpansion
SET FILE_SETUP=".\MagiWol.iss"
SET FILE_SOLUTION="..\Source\MagiWol.sln"
SET FILES_EXECUTABLE="..\Binaries\MagiWol.exe" "..\Binaries\wol.exe"
SET FILES_OTHER="..\Binaries\ReadMe.txt" "..\Binaries\License.txt"
SET COMPILE_TOOL_16="%PROGRAMFILES(X86)%\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe"
SET COMPILE_TOOL_15="%PROGRAMFILES(X86)%\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe"
SET SETUP_TOOL="%PROGRAMFILES(x86)%\Inno Setup 6\iscc.exe"
SET SIGN_TOOL_1="%PROGRAMFILES(X86)%\Microsoft SDKs\ClickOnce\SignTool\signtool.exe"
SET SIGN_TOOL_2="%PROGRAMFILES(X86)%\Windows Kits\10\App Certification Kit\signtool.exe"
SET SIGN_TOOL_3="%PROGRAMFILES(X86)%\Windows Kits\10\bin\x86\signtool.exe"
SET SIGN_THUMBPRINT="026184de8dbf52fdcbae75fd6b1a7d9ce4310e5d"
SET SIGN_TIMESTAMPURL="http://timestamp.comodoca.com/rfc3161"
SET GIT_TOOL_1="%PROGRAMFILES%\Git\mingw64\bin\git.exe"
SET RAR_TOOL="%PROGRAMFILES%\WinRAR\WinRAR.exe"
ECHO --- DISCOVER TOOLS
ECHO.
IF EXIST %COMPILE_TOOL_16% (
ECHO Visual Studio 2019
SET COMPILE_TOOL=%COMPILE_TOOL_16%
) ELSE (
IF EXIST %COMPILE_TOOL_15% (
ECHO Visual Studio 2017
SET COMPILE_TOOL=%COMPILE_TOOL_15%
) ELSE (
ECHO Cannot find Visual Studio^^!
PAUSE && EXIT /B 255
)
)
IF EXIST %SETUP_TOOL% (
ECHO Inno Setup 6
) ELSE (
ECHO Cannot find Inno Setup 6^^!
PAUSE && EXIT /B 255
)
IF EXIST %SIGN_TOOL_1% (
ECHO Windows SignTool 10 ^(ClickOnce^)
SET SIGN_TOOL=%SIGN_TOOL_1%
) ELSE (
IF EXIST %SIGN_TOOL_2% (
ECHO Windows SignTool 10 ^(App Certification Kit^)
SET SIGN_TOOL=%SIGN_TOOL_2%
) ELSE (
IF EXIST %SIGN_TOOL_3% (
ECHO Windows SignTool 10 ^(SDK^)
SET SIGN_TOOL=%SIGN_TOOL_3%
) ELSE (
ECHO Cannot find Windows SignTool^^!
PAUSE && EXIT /B 255
)
)
)
IF EXIST %GIT_TOOL_1% (
ECHO Git
SET GIT_TOOL=%GIT_TOOL_1%
) ELSE (
GIT_TOOL="git"
)
IF NOT EXIST %RAR_TOOL% (
ECHO WinRAR not present^^!
)
ECHO.
ECHO.
ECHO --- DISCOVER VERSION
ECHO.
FOR /F "delims=" %%N IN ('%GIT_TOOL% log -n 1 --format^=%%h') DO @SET VERSION_HASH=%%N%
IF NOT [%VERSION_HASH%]==[] (
FOR /F "delims=" %%N IN ('%GIT_TOOL% rev-list --count HEAD') DO @SET VERSION_NUMBER=%%N%
%GIT_TOOL% diff --exit-code --quiet
IF ERRORLEVEL 1 SET VERSION_HASH=%VERSION_HASH%+
ECHO %VERSION_HASH%
)
ECHO.
ECHO.
ECHO --- BUILD SOLUTION
ECHO.
RMDIR /Q /S "..\Binaries" 2> NUL
%COMPILE_TOOL% /Build "Release" %FILE_SOLUTION%
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
COPY ..\README.md ..\Binaries\ReadMe.txt > NUL
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
COPY ..\LICENSE.md ..\Binaries\License.txt > NUL
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
ECHO Completed.
ECHO.
ECHO.
CERTUTIL -silent -verifystore -user My %SIGN_THUMBPRINT% > NUL
IF %ERRORLEVEL%==0 (
ECHO --- SIGN SOLUTION
ECHO.
IF [%SIGN_TIMESTAMPURL%]==[] (
%SIGN_TOOL% sign /s "My" /sha1 %SIGN_THUMBPRINT% /v %FILES_EXECUTABLE%
) ELSE (
%SIGN_TOOL% sign /s "My" /sha1 %SIGN_THUMBPRINT% /tr %SIGN_TIMESTAMPURL% /v %FILES_EXECUTABLE%
)
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
) ELSE (
ECHO --- DID NOT SIGN SOLUTION
IF NOT [%SIGN_THUMBPRINT%]==[] (
ECHO.
ECHO No certificate with hash %SIGN_THUMBPRINT%.
)
)
ECHO.
ECHO.
ECHO --- BUILD SETUP
ECHO.
RMDIR /Q /S ".\Temp" 2> NUL
CALL %SETUP_TOOL% /DVersionHash=%VERSION_HASH% /O".\Temp" %FILE_SETUP%
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
FOR /F %%I IN ('DIR ".\Temp\*.exe" /B') DO SET _SETUPEXE=%%I
ECHO Setup is in file %_SETUPEXE%
ECHO.
ECHO.
ECHO --- RENAME BUILD
ECHO.
SET _OLDSETUPEXE=%_SETUPEXE%
IF NOT [%VERSION_HASH%]==[] (
SET _SETUPEXE=!_SETUPEXE:000=-rev%VERSION_NUMBER%-%VERSION_HASH%!
)
IF NOT "%_OLDSETUPEXE%"=="%_SETUPEXE%" (
ECHO Renaming %_OLDSETUPEXE% to %_SETUPEXE%
MOVE ".\Temp\%_OLDSETUPEXE%" ".\Temp\%_SETUPEXE%"
) ELSE (
ECHO No rename needed.
)
ECHO.
ECHO.
CERTUTIL -silent -verifystore -user My %SIGN_THUMBPRINT% > NUL
IF %ERRORLEVEL%==0 (
ECHO --- SIGN SETUP
ECHO.
IF [%SIGN_TIMESTAMPURL%]==[] (
%SIGN_TOOL% sign /s "My" /sha1 %SIGN_THUMBPRINT% /v ".\Temp\%_SETUPEXE%"
) ELSE (
%SIGN_TOOL% sign /s "My" /sha1 %SIGN_THUMBPRINT% /tr %SIGN_TIMESTAMPURL% /v ".\Temp\%_SETUPEXE%"
)
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
) ELSE (
ECHO --- DID NOT SIGN SETUP
)
ECHO.
ECHO.
ECHO --- BUILD ZIP
ECHO.
IF EXIST %RAR_TOOL% (
ECHO Zipping into %_SETUPEXE:.exe=.zip%
"%PROGRAMFILES%\WinRAR\WinRAR.exe" a -afzip -ep -m5 ".\Temp\%_SETUPEXE:.exe=.zip%" %FILES_EXECUTABLE% %FILES_OTHER%
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
) ELSE (
ECHO No WinRAR
)
ECHO.
ECHO.
ECHO --- RELEASE
ECHO.
MKDIR "..\Releases" 2> NUL
MOVE ".\Temp\*.*" "..\Releases\." > NUL
IF ERRORLEVEL 1 PAUSE && EXIT /B %ERRORLEVEL%
RMDIR /Q /S ".\Temp"
ECHO.
ECHO --- DONE
ECHO.
explorer /select,"..\Releases\%_SETUPEXE%"
| medo64/MagiWOL | Setup/Publish.cmd | bat | mit | 5,379 |
..\masm
pause
..\link
pause
| xohozu/aEditor | bin/src/CMP_LINK.bat | bat | mit | 28 |
python search.py %1 %2 | python getText.py | java -cp src/htmlparser-1.4/htmlparser-1.4.jar;src Spotlight | java -cp graphGenerator GraphGenerator | java -jar similarity.jar %1 && java -jar ranking.jar %1 %3 | anarcheuz/Funny-school-projects | WebSemantic/semanticSearch.bat | bat | mit | 207 |
"C:\Program Files\WiX Toolset v3.8\bin\heat" dir "Wcf" -dr "DIRWCF" -cg WcfComponentGroup -gg -g1 -srd -sfrag -var "var.WcfFilePath" -out "Wcf.wxs" | akhuang/Windows-Installer | src/HarvestWcf.cmd | bat | mit | 149 |
@echo off
setlocal
if "%nodertcmd%"=="" SET nodertcmd=.\NodeRTCmd.exe
if "%nodertwinmd%"=="" SET nodertwinmd=.\Windows.winmd
call :genrt Windows.Foundation %1
call :genrt Windows.Storage.Streams %1
call :genrt Windows.Devices.Bluetooth %1
call :genrt Windows.Devices.Bluetooth.Advertisement %1
call :genrt Windows.Devices.Bluetooth.GenericAttributeProfile %1
call :genrt Windows.Devices.Enumeration %1
call :genrt Windows.Devices.Radios %1
goto :eof
:genrt
"%nodertcmd%" --winmd "%nodertwinmd%" --nobuild --namespace %1 --outdir . %2
if errorlevel 1 exit
goto :eof
endlocal | jasongin/noble-uwp | uwp/generate-uwp.cmd | bat | mit | 578 |
@echo off
if exist RUNNING_PID (
setlocal EnableDelayedExpansion
set /p PLAY_PID=<RUNNING_PID
echo killing pid !PLAY_PID!
taskkill /F /PID !PLAY_PID!
del RUNNING_PID
endlocal
)
play start
pause | headdetect/NoTux | NoTux/start_play.bat | bat | mit | 207 |
cls
@ECHO OFF
color 4
echo ###################################
echo # #
echo # Elija un programa #
echo # #
echo # #
echo ###################################
echo ----------------------------------
echo ----------------------------------
echo ----------------------------------
echo ----------------------------------
echo AA- Camtasia studio (path y todo)
echo BB- pronto disponible
echo CC- pronto disponible
echo DD- pronto disponible
echo EE- pronto disponible
echo FF- pronto disponible
echo GG- pronto disponible
echo Introduce la letra del programa
:HOLA
echo (OBLIGATORIO: PONEROLO EN MAYUSCULAS. ejem. AA)
set/p "cho=>"
if %cho%==AA goto AA
if %cho%==BB goto BB
if %cho%==CC goto CC
if %cho%==DD goto DD
if %cho%==EE goto EE
if %cho%==FF goto FF
if %cho%==GG goto GG
if %cho%==HH goto HH
echo caracteres invalidos
goto HOLA
:AA
echo Dale a cualquier boton para continuar:
pause
start camtac.bat
exit | ajmarin2002/battutoriales | c.bat | bat | cc0-1.0 | 1,018 |
@echo off
echo "Calculating Not OUT Tap ..."
C:\xampp\php\php.exe -f "C:\xampp\htdocs\calculateNotOut.php" | stravastellar/isAIS | htdocs/calculateNotOut.bat | bat | cc0-1.0 | 106 |
cmd_sound/pcmcia/built-in.o := /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o sound/pcmcia/built-in.o sound/pcmcia/vx/built-in.o sound/pcmcia/pdaudiocf/built-in.o
| arshull/GalaTab3_Kernel | sound/pcmcia/.built-in.o.cmd | bat | gpl-2.0 | 192 |
@ECHO OFF
REM ----------------------------------------------------------------------
REM PHP version 5
REM ----------------------------------------------------------------------
REM Copyright (c) 1997-2004 The PHP Group
REM ----------------------------------------------------------------------
REM This source file is subject to version 3.0 of the PHP license,
REM that is bundled with this package in the file LICENSE, and is
REM available at through the world-wide-web at
REM http://www.php.net/license/3_0.txt.
REM If you did not receive a copy of the PHP license and are unable to
REM obtain it through the world-wide-web, please send a note to
REM [email protected] so we can mail you a copy immediately.
REM ----------------------------------------------------------------------
REM Authors: Alexander Merz ([email protected])
REM ----------------------------------------------------------------------
REM
REM Last updated 12/29/2004 ($Id$ is not replaced if the file is binary)
REM change this lines to match the paths of your system
REM -------------------
REM Test to see if this is a raw pear.bat (uninstalled version)
SET TMPTMPTMPTMPT=@includ
SET PMTPMTPMT=%TMPTMPTMPTMPT%e_path@
FOR %%x IN ("@include_path@") DO (if %%x=="%PMTPMTPMT%" GOTO :NOTINSTALLED)
REM Check PEAR global ENV, set them if they do not exist
IF "%PHP_PEAR_INSTALL_DIR%"=="" SET "PHP_PEAR_INSTALL_DIR=@include_path@"
IF "%PHP_PEAR_BIN_DIR%"=="" SET "PHP_PEAR_BIN_DIR=@bin_dir@"
IF "%PHP_PEAR_PHP_BIN%"=="" SET "PHP_PEAR_PHP_BIN=@php_bin@"
GOTO :INSTALLED
:NOTINSTALLED
ECHO WARNING: This is a raw, uninstalled pear.bat
REM Check to see if we can grab the directory of this file (Windows NT+)
IF %~n0 == pear (
FOR %%x IN (cli\php.exe php.exe) DO (if "%%~$PATH:x" NEQ "" (
SET "PHP_PEAR_PHP_BIN=%%~$PATH:x"
echo Using PHP Executable "%PHP_PEAR_PHP_BIN%"
"%PHP_PEAR_PHP_BIN%" -v
GOTO :NEXTTEST
))
GOTO :FAILAUTODETECT
:NEXTTEST
IF "%PHP_PEAR_PHP_BIN%" NEQ "" (
REM We can use this PHP to run a temporary php file to get the dirname of pear
echo ^<?php $s=getcwd^(^);chdir^($a=dirname^(__FILE__^).'\\'^);if^(stristr^($a,'\\scripts'^)^)$a=dirname^(dirname^($a^)^).'\\';$f=fopen^($s.'\\~a.a','wb'^);echo$s.'\\~a.a';fwrite^($f,$a^);fclose^($f^);chdir^($s^);?^> > ~~getloc.php
"%PHP_PEAR_PHP_BIN%" ~~getloc.php
set /p PHP_PEAR_BIN_DIR=fakeprompt < ~a.a
DEL ~a.a
DEL ~~getloc.php
set "PHP_PEAR_INSTALL_DIR=%PHP_PEAR_BIN_DIR%pear"
REM Make sure there is a pearcmd.php at our disposal
IF NOT EXIST %PHP_PEAR_INSTALL_DIR%\pearcmd.php (
IF EXIST %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php COPY %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php
IF EXIST pearcmd.php COPY pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php
IF EXIST %~dp0\scripts\pearcmd.php COPY %~dp0\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php
)
)
GOTO :INSTALLED
) ELSE (
REM Windows Me/98 cannot succeed, so allow the batch to fail
)
:FAILAUTODETECT
echo WARNING: failed to auto-detect pear information
:INSTALLED
REM Check Folders and files
IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%" GOTO PEAR_INSTALL_ERROR
IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" GOTO PEAR_INSTALL_ERROR2
IF NOT EXIST "%PHP_PEAR_BIN_DIR%" GOTO PEAR_BIN_ERROR
IF NOT EXIST "%PHP_PEAR_PHP_BIN%" GOTO PEAR_PHPBIN_ERROR
REM launch pearcmd
GOTO RUN
:PEAR_INSTALL_ERROR
ECHO PHP_PEAR_INSTALL_DIR is not set correctly.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_INSTALL_DIR%
GOTO END
:PEAR_INSTALL_ERROR2
ECHO PHP_PEAR_INSTALL_DIR is not set correctly.
ECHO pearcmd.php could not be found there.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_INSTALL_DIR%
GOTO END
:PEAR_BIN_ERROR
ECHO PHP_PEAR_BIN_DIR is not set correctly.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_BIN_DIR%
GOTO END
:PEAR_PHPBIN_ERROR
ECHO PHP_PEAR_PHP_BIN is not set correctly.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_PHP_BIN%
GOTO END
:RUN
"%PHP_PEAR_PHP_BIN%" -C -d output_buffering=1 -d include_path="%PHP_PEAR_INSTALL_DIR%" -f "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" -- %1 %2 %3 %4 %5 %6 %7 %8 %9
:END
@ECHO ON | xitongzou/divinerequiem | pear.bat | bat | gpl-2.0 | 4,427 |
cmd_drivers/staging/media/lirc/built-in.o := rm -f drivers/staging/media/lirc/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/staging/media/lirc/built-in.o
| avareldalton85/rpi2-linux-rt | drivers/staging/media/lirc/.built-in.o.cmd | bat | gpl-2.0 | 226 |
cmd_net/bluetooth/built-in.o := /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o net/bluetooth/built-in.o net/bluetooth/bluetooth.o net/bluetooth/l2cap.o net/bluetooth/sco.o net/bluetooth/rfcomm/built-in.o
| sktjdgns1189/android_kernel_iriver_MX100 | net/bluetooth/.built-in.o.cmd | bat | gpl-2.0 | 227 |
cmd_drivers/net/ethernet/micrel/ks8851.ko := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -T /home/envy/kernel/shinano-sirius_msm8974abpro/scripts/module-common.lds --build-id -o drivers/net/ethernet/micrel/ks8851.ko drivers/net/ethernet/micrel/ks8851.o drivers/net/ethernet/micrel/ks8851.mod.o
| Envious-Data/shinano-sirius_msm8974abpro | drivers/net/ethernet/micrel/.ks8851.ko.cmd | bat | gpl-2.0 | 334 |
goto :NEOGUESS
:NEOLINK
mklink "%GBG%\%GAM%\%CONS%\%ARCD%\%NEOGAM%\neogeo.zip" "%GBE%\%EMUZ%\%MAME%\roms\neogeo.zip"
ATTRIB +H "%GBG%\%GAM%\%CONS%\%ARCD%\%NEOGAM%\neogeo.zip" /L
exit /b
:NEOGUESS
SET NEODIR=2020 Baseball*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=3 Count Bout*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Aero Fighters 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Aero Fighters 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Aggressors of Dark Kombat*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Alpha Mission 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Andro Dunos*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Art of Fighting*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Art of Fighting 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Art of Fighting 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Bang Bead*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Baseball Stars*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Baseball Stars 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Battle Flip Shot*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Blazing Star*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Blue's Journey*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Breaker's*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Breaker's Revenge*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Burning Fight*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Captain Tomaday*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Crossed Swords*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Cyber Lip*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Double Dragon*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Eightman*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Fatal Fury*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Fatal Fury 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Fatal Fury 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Fatal Fury Special*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Fight Fever*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Football Frenzy*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Galaxy Fight*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Garou - Mark of the Wolves*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Ghost Pilots*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Goal! Goal! Goal!*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Irritating Maze*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Kabuki Klash*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Karnov's Revenge*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters '94*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters '95*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters '96*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters '97*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters '98*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters '99*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters 2000*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters 2001*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of Fighters 2002*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of the Monsters*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=*King of the Monsters 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Kizuna Encounter*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Last Blade*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Last Blade 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Last Resort*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=League Bowling*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Legend of Success Joe*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Magical Drop II*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Magical Drop III*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Magician Lord*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Matrimelee*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Metal Slug*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Metal Slug 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Metal Slug 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Metal Slug 4*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Metal Slug 5*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Metal Slug X*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Mutation Nation*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Nam 1975*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Neo Bomberman*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Neo Driftout*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Neo Mr. Do*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Neo Turf Masters*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Nightmare in the Dark*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Ninja Combat*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Ninja Commando*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Ninja Master's*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Operation Ragnagard*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Overtop*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Panic Bomber*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Power Spikes 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Prehistoric Isle 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Pulstar*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Puzzle Bobble*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Puzzle Bobble 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Puzzle De Pon!*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Puzzled*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Real Bout Fatal Fury*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Real Bout Fatal Fury 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Real Bout Fatal Fury Special*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Riding Hero*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Robo Army*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Samurai Shodown*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Samurai Shodown 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Samurai Shodown 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Samurai Shodown 4*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Savage Reign*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Sengoku*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Sengoku 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Sengoku 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Shock Troopers*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Shock Troopers 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Soccer Brawl*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Spin Master*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Stakes Winner*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Stakes Winner 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Street Hoop*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Strikers 1945 Plus*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Super Dodge Ball*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Super Sidekicks*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Super Sidekicks 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Super Sidekicks 3*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Super Sidekicks 4*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Super Spy*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Tecmo World Soccer '96*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Thrash Rally*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Top Hunter*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Top Player's Golf*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Twinkestar Sprites*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Viewpoint*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Voltage Fighter - Gowcaizer*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Waku Waku 7*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Wind Jammers*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=World Heroes*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=World Heroes 2*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=World Heroes Perfect*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Zed Blade*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
SET NEODIR=Zupapa*
for /f "tokens=* delims= " %%a in ('dir /b "%NEODIR%"') do (
SET NEOGAM=%%~a
CALL :NEOLINK
)
| HoodlumDTX/rom-jacket | neoGeoBios.bat | bat | gpl-2.0 | 16,145 |
cmd_lib/zlib_inflate/inffast.o := arm-eabi-gcc -Wp,-MD,lib/zlib_inflate/.inffast.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(inffast)" -D"KBUILD_MODNAME=KBUILD_STR(zlib_inflate)" -c -o lib/zlib_inflate/inffast.o lib/zlib_inflate/inffast.c
deps_lib/zlib_inflate/inffast.o := \
lib/zlib_inflate/inffast.c \
include/linux/zutil.h \
include/linux/zlib.h \
include/linux/zconf.h \
include/linux/string.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/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 \
include/linux/stddef.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/string.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/linkage.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.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/mmu.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/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 \
/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 \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/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.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
lib/zlib_inflate/inftrees.h \
lib/zlib_inflate/inflate.h \
lib/zlib_inflate/inffast.h \
lib/zlib_inflate/inffast.o: $(deps_lib/zlib_inflate/inffast.o)
$(deps_lib/zlib_inflate/inffast.o):
| HCDRJacob/wildfire-kernel | lib/zlib_inflate/.inffast.o.cmd | bat | gpl-2.0 | 133,089 |
cmd_mm/memory.o := arm-none-linux-gnueabi-gcc -Wp,-MD,mm/.memory.o.d -nostdinc -isystem /opt/CodeSourcery/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(memory)" -D"KBUILD_MODNAME=KBUILD_STR(memory)" -c -o mm/.tmp_memory.o mm/memory.c
deps_mm/memory.o := \
mm/memory.c \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/discontig.h) \
$(wildcard include/config/compat/brk.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/kallsyms/all.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/elf/core.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/have/ioremap/prot.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/kernel_stat.h \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
$(wildcard include/config/debug/preempt.h) \
include/linux/errno.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.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) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/posix_types.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 \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/processor.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/hwcap.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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) \
include/linux/typecheck.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.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/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/opt/CodeSourcery/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/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/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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/dynamic_debug.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/div64.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/string.h \
include/linux/percpu.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.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/have/arch/early/pfn/to/nid.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/debug/lock/alloc.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) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/wait.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kref.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/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/linux/pfn.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/interrupt.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/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/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.h \
include/linux/rbtree.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/mmu/notifier.h) \
include/linux/auxvec.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/ipcbuf.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/sigcontext.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/hardirq.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/irq.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumasks/offstack.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/hw_irq.h \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/hugetlb.h \
$(wildcard include/config/hugetlbfs.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/stat.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/semaphore.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 \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/mman.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/mman.h \
include/asm-generic/mman.h \
include/asm-generic/mman-common.h \
$(wildcard include/config/mmap/allow/uninitialized.h) \
include/linux/swap.h \
$(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \
include/linux/memcontrol.h \
$(wildcard include/config/cgroup/mem/cont.h) \
include/linux/cgroup.h \
include/linux/cgroupstats.h \
include/linux/taskstats.h \
include/linux/prio_heap.h \
include/linux/idr.h \
include/linux/node.h \
$(wildcard include/config/memory/hotplug/sparse.h) \
include/linux/sysdev.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/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/elf.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/linux/pm.h \
$(wildcard include/config/pm/runtime.h) \
include/linux/highmem.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/uaccess.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/uaccess.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
$(wildcard include/config/arm/errata/411920.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/shmparam.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/kmap_types.h \
include/linux/pagemap.h \
include/linux/ksm.h \
include/linux/rmap.h \
include/linux/delayacct.h \
include/linux/writeback.h \
include/linux/mmu_notifier.h \
include/linux/kallsyms.h \
include/linux/swapops.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/io.h \
arch/arm/mach-davinci/include/mach/io.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/pgalloc.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/tlb.h \
mm/internal.h \
$(wildcard include/config/debug/memory/init.h) \
mm/memory.o: $(deps_mm/memory.o)
$(deps_mm/memory.o):
| EAVR/EV3.14 | ev3sources/extra/linux-03.20.00.13/mm/.memory.o.cmd | bat | gpl-2.0 | 28,700 |
deps_config := \
lib/xz/Kconfig \
lib/Kconfig \
drivers/crypto/Kconfig \
crypto/async_tx/Kconfig \
crypto/Kconfig \
security/integrity/ima/Kconfig \
security/tomoyo/Kconfig \
security/smack/Kconfig \
security/selinux/Kconfig \
security/Kconfig \
lib/Kconfig.kmemcheck \
lib/Kconfig.kgdb \
samples/Kconfig \
kernel/trace/Kconfig \
mm/Kconfig.debug \
lib/Kconfig.debug \
arch/arm/Kconfig.debug \
fs/dlm/Kconfig \
fs/nls/Kconfig \
fs/partitions/Kconfig \
fs/9p/Kconfig \
fs/afs/Kconfig \
fs/coda/Kconfig \
fs/ncpfs/Kconfig \
fs/cifs/Kconfig \
fs/smbfs/Kconfig \
net/sunrpc/Kconfig \
fs/nfsd/Kconfig \
fs/nfs/Kconfig \
fs/exofs/Kconfig \
fs/ufs/Kconfig \
fs/sysv/Kconfig \
fs/romfs/Kconfig \
fs/qnx4/Kconfig \
fs/hpfs/Kconfig \
fs/omfs/Kconfig \
fs/minix/Kconfig \
fs/freevxfs/Kconfig \
fs/squashfs/Kconfig \
fs/cramfs/Kconfig \
fs/ubifs/Kconfig \
fs/jffs2/Kconfig \
fs/yaffs2/Kconfig \
fs/efs/Kconfig \
fs/bfs/Kconfig \
fs/befs/Kconfig \
fs/hfsplus/Kconfig \
fs/hfs/Kconfig \
fs/ecryptfs/Kconfig \
fs/affs/Kconfig \
fs/adfs/Kconfig \
fs/configfs/Kconfig \
fs/sysfs/Kconfig \
fs/proc/Kconfig \
fs/ntfs/Kconfig \
fs/fat/Kconfig \
fs/udf/Kconfig \
fs/isofs/Kconfig \
fs/cachefiles/Kconfig \
fs/fscache/Kconfig \
fs/fuse/Kconfig \
fs/autofs4/Kconfig \
fs/autofs/Kconfig \
fs/quota/Kconfig \
fs/notify/inotify/Kconfig \
fs/notify/dnotify/Kconfig \
fs/notify/Kconfig \
fs/nilfs2/Kconfig \
fs/btrfs/Kconfig \
fs/ocfs2/Kconfig \
fs/gfs2/Kconfig \
fs/xfs/Kconfig \
fs/jfs/Kconfig \
fs/reiserfs/Kconfig \
fs/jbd2/Kconfig \
fs/jbd/Kconfig \
fs/ext4/Kconfig \
fs/ext3/Kconfig \
fs/ext2/Kconfig \
fs/Kconfig \
drivers/platform/x86/Kconfig \
drivers/platform/Kconfig \
drivers/staging/zcache/Kconfig \
drivers/staging/zram/Kconfig \
drivers/staging/snappy/Kconfig \
drivers/staging/iio/trigger/Kconfig \
drivers/staging/iio/light/Kconfig \
drivers/staging/iio/adc/Kconfig \
drivers/staging/iio/accel/Kconfig \
drivers/staging/iio/Kconfig \
drivers/staging/sep/Kconfig \
drivers/staging/rar/Kconfig \
drivers/staging/vme/devices/Kconfig \
drivers/staging/vme/bridges/Kconfig \
drivers/staging/vme/Kconfig \
drivers/staging/hv/Kconfig \
drivers/staging/udlfb/Kconfig \
drivers/staging/vt6656/Kconfig \
drivers/staging/vt6655/Kconfig \
drivers/staging/quatech_usb2/Kconfig \
drivers/staging/serqt_usb2/Kconfig \
drivers/staging/octeon/Kconfig \
drivers/gpu/drm/radeon/Kconfig \
drivers/staging/line6/Kconfig \
drivers/staging/p9auth/Kconfig \
drivers/staging/phison/Kconfig \
drivers/staging/b3dfg/Kconfig \
drivers/staging/pohmelfs/Kconfig \
drivers/staging/dst/Kconfig \
drivers/staging/dream/camera/Kconfig \
drivers/staging/dream/smd/Kconfig \
drivers/staging/dream/Kconfig \
drivers/staging/android/Kconfig \
drivers/staging/frontier/Kconfig \
drivers/staging/rtl8192e/Kconfig \
drivers/staging/rtl8192su/Kconfig \
drivers/staging/rtl8187se/Kconfig \
drivers/staging/altpciechdma/Kconfig \
drivers/staging/panel/Kconfig \
drivers/staging/asus_oled/Kconfig \
drivers/staging/comedi/Kconfig \
drivers/staging/rt3090/Kconfig \
drivers/staging/rt2870/Kconfig \
drivers/staging/rt2860/Kconfig \
drivers/staging/otus/Kconfig \
drivers/staging/poch/Kconfig \
drivers/staging/echo/Kconfig \
drivers/staging/wlan-ng/Kconfig \
drivers/staging/winbond/Kconfig \
drivers/staging/usbip/Kconfig \
drivers/staging/cx25821/Kconfig \
drivers/staging/go7007/Kconfig \
drivers/staging/slicoss/Kconfig \
drivers/staging/et131x/Kconfig \
drivers/staging/Kconfig \
drivers/xen/Kconfig \
drivers/vlynq/Kconfig \
drivers/uio/Kconfig \
drivers/auxdisplay/Kconfig \
drivers/dca/Kconfig \
drivers/dma/Kconfig \
drivers/rtc/Kconfig \
drivers/edac/Kconfig \
drivers/infiniband/ulp/iser/Kconfig \
drivers/infiniband/ulp/srp/Kconfig \
drivers/infiniband/ulp/ipoib/Kconfig \
drivers/infiniband/hw/nes/Kconfig \
drivers/infiniband/hw/mlx4/Kconfig \
drivers/infiniband/hw/cxgb3/Kconfig \
drivers/infiniband/hw/amso1100/Kconfig \
drivers/infiniband/hw/ehca/Kconfig \
drivers/infiniband/hw/ipath/Kconfig \
drivers/infiniband/hw/mthca/Kconfig \
drivers/infiniband/Kconfig \
drivers/accessibility/Kconfig \
drivers/switch/Kconfig \
drivers/leds/Kconfig \
drivers/memstick/host/Kconfig \
drivers/memstick/core/Kconfig \
drivers/memstick/Kconfig \
drivers/mmc/host/Kconfig \
drivers/mmc/card/Kconfig \
drivers/mmc/core/Kconfig \
drivers/mmc/Kconfig \
drivers/uwb/Kconfig \
drivers/usb/function/Kconfig \
drivers/usb/otg/Kconfig \
drivers/usb/gadget/Kconfig \
drivers/usb/atm/Kconfig \
drivers/usb/misc/sisusbvga/Kconfig \
drivers/usb/misc/Kconfig \
drivers/usb/serial/Kconfig \
drivers/usb/image/Kconfig \
drivers/usb/storage/Kconfig \
drivers/usb/class/Kconfig \
drivers/usb/musb/Kconfig \
drivers/usb/host/Kconfig \
drivers/usb/wusbcore/Kconfig \
drivers/usb/mon/Kconfig \
drivers/usb/core/Kconfig \
drivers/usb/Kconfig \
drivers/hid/usbhid/Kconfig \
drivers/hid/Kconfig \
sound/oss/Kconfig \
sound/soc/codecs/Kconfig \
sound/soc/txx9/Kconfig \
sound/soc/sh/Kconfig \
sound/soc/s6000/Kconfig \
sound/soc/s3c24xx/Kconfig \
sound/soc/pxa/Kconfig \
sound/soc/msm/Kconfig \
sound/soc/omap/Kconfig \
sound/soc/imx/Kconfig \
sound/soc/fsl/Kconfig \
sound/soc/davinci/Kconfig \
sound/soc/blackfin/Kconfig \
sound/soc/au1x/Kconfig \
sound/soc/atmel/Kconfig \
sound/soc/Kconfig \
sound/parisc/Kconfig \
sound/sparc/Kconfig \
sound/pcmcia/Kconfig \
sound/usb/Kconfig \
sound/sh/Kconfig \
sound/mips/Kconfig \
sound/spi/Kconfig \
sound/atmel/Kconfig \
sound/arm/Kconfig \
sound/aoa/soundbus/Kconfig \
sound/aoa/codecs/Kconfig \
sound/aoa/fabrics/Kconfig \
sound/aoa/Kconfig \
sound/ppc/Kconfig \
sound/pci/hda/Kconfig \
sound/pci/Kconfig \
sound/isa/Kconfig \
sound/drivers/Kconfig \
sound/core/seq/Kconfig \
sound/core/Kconfig \
sound/oss/dmasound/Kconfig \
sound/Kconfig \
drivers/video/logo/Kconfig \
drivers/video/console/Kconfig \
drivers/video/display/Kconfig \
drivers/video/backlight/Kconfig \
drivers/video/omap/Kconfig \
drivers/video/msm/vidc/Kconfig \
drivers/video/msm/Kconfig \
drivers/video/geode/Kconfig \
drivers/gpu/msm/Kconfig \
drivers/gpu/drm/Kconfig \
drivers/gpu/vga/Kconfig \
drivers/char/agp/Kconfig \
drivers/video/Kconfig \
drivers/media/dvb/frontends/Kconfig \
drivers/media/dvb/pt1/Kconfig \
drivers/media/dvb/firewire/Kconfig \
drivers/media/dvb/dm1105/Kconfig \
drivers/media/dvb/pluto2/Kconfig \
drivers/media/dvb/bt8xx/Kconfig \
drivers/media/dvb/b2c2/Kconfig \
drivers/media/dvb/siano/Kconfig \
drivers/media/dvb/ttusb-dec/Kconfig \
drivers/media/dvb/ttusb-budget/Kconfig \
drivers/media/dvb/dvb-usb/Kconfig \
drivers/media/dvb/ttpci/Kconfig \
drivers/media/dvb/Kconfig \
drivers/media/radio/si470x/Kconfig \
drivers/media/radio/Kconfig \
drivers/media/video/msm/Kconfig \
drivers/media/video/pwc/Kconfig \
drivers/media/video/zc0301/Kconfig \
drivers/media/video/sn9c102/Kconfig \
drivers/media/video/et61x251/Kconfig \
drivers/media/video/usbvideo/Kconfig \
drivers/media/video/usbvision/Kconfig \
drivers/media/video/cx231xx/Kconfig \
drivers/media/video/em28xx/Kconfig \
drivers/media/video/hdpvr/Kconfig \
drivers/media/video/pvrusb2/Kconfig \
drivers/media/video/gspca/gl860/Kconfig \
drivers/media/video/gspca/stv06xx/Kconfig \
drivers/media/video/gspca/m5602/Kconfig \
drivers/media/video/gspca/Kconfig \
drivers/media/video/uvc/Kconfig \
drivers/media/video/saa7164/Kconfig \
drivers/media/video/cx18/Kconfig \
drivers/media/video/ivtv/Kconfig \
drivers/media/video/au0828/Kconfig \
drivers/media/video/cx23885/Kconfig \
drivers/media/video/cx88/Kconfig \
drivers/media/video/saa7134/Kconfig \
drivers/media/video/zoran/Kconfig \
drivers/media/video/cpia2/Kconfig \
drivers/media/video/bt8xx/Kconfig \
drivers/media/video/cx25840/Kconfig \
drivers/media/video/Kconfig \
drivers/media/common/tuners/Kconfig \
drivers/media/common/Kconfig \
drivers/media/Kconfig \
drivers/regulator/Kconfig \
drivers/mfd/Kconfig \
drivers/ssb/Kconfig \
drivers/watchdog/Kconfig \
drivers/thermal/Kconfig \
drivers/hwmon/Kconfig \
drivers/power/Kconfig \
drivers/w1/slaves/Kconfig \
drivers/w1/masters/Kconfig \
drivers/w1/Kconfig \
drivers/gpio/Kconfig \
drivers/pps/Kconfig \
drivers/spi/Kconfig \
drivers/i2c/chips/Kconfig \
drivers/i2c/busses/Kconfig \
drivers/i2c/algos/Kconfig \
drivers/i2c/Kconfig \
drivers/s390/char/Kconfig \
drivers/char/tpm/Kconfig \
drivers/char/pcmcia/Kconfig \
drivers/char/hw_random/Kconfig \
drivers/char/ipmi/Kconfig \
drivers/char/diag/Kconfig \
drivers/serial/Kconfig \
drivers/char/Kconfig \
drivers/input/gameport/Kconfig \
drivers/input/serio/Kconfig \
drivers/input/misc/Kconfig \
drivers/input/touchscreen/Kconfig \
drivers/input/tablet/Kconfig \
drivers/input/joystick/iforce/Kconfig \
drivers/input/joystick/Kconfig \
drivers/input/mouse/Kconfig \
drivers/input/keyboard/Kconfig \
drivers/input/Kconfig \
drivers/telephony/Kconfig \
drivers/isdn/gigaset/Kconfig \
drivers/isdn/hardware/eicon/Kconfig \
drivers/isdn/hardware/avm/Kconfig \
drivers/isdn/hardware/Kconfig \
drivers/isdn/capi/Kconfig \
drivers/isdn/hysdn/Kconfig \
drivers/isdn/act2000/Kconfig \
drivers/isdn/sc/Kconfig \
drivers/isdn/pcbit/Kconfig \
drivers/isdn/icn/Kconfig \
drivers/isdn/hisax/Kconfig \
drivers/isdn/i4l/Kconfig \
drivers/isdn/hardware/mISDN/Kconfig \
drivers/isdn/mISDN/Kconfig \
drivers/isdn/Kconfig \
drivers/s390/net/Kconfig \
drivers/ieee802154/Kconfig \
drivers/atm/Kconfig \
drivers/net/wan/Kconfig \
drivers/net/pcmcia/Kconfig \
drivers/net/usb/Kconfig \
drivers/net/wimax/i2400m/Kconfig \
drivers/net/wimax/Kconfig \
drivers/net/wireless/bcm4329/Kconfig \
drivers/net/wireless/iwmc3200wifi/Kconfig \
drivers/net/wireless/wl12xx/Kconfig \
drivers/net/wireless/orinoco/Kconfig \
drivers/net/wireless/rt2x00/Kconfig \
drivers/net/wireless/zd1211rw/Kconfig \
drivers/net/wireless/b43legacy/Kconfig \
drivers/net/wireless/b43/Kconfig \
drivers/net/wireless/hostap/Kconfig \
drivers/net/wireless/iwlwifi/Kconfig \
drivers/net/wireless/ipw2x00/Kconfig \
drivers/net/wireless/ath/ar9170/Kconfig \
drivers/net/wireless/ath/ath9k/Kconfig \
drivers/net/wireless/ath/ath5k/Kconfig \
drivers/net/wireless/ath/Kconfig \
drivers/net/wireless/p54/Kconfig \
drivers/net/wireless/Kconfig \
drivers/net/tokenring/Kconfig \
drivers/net/benet/Kconfig \
drivers/net/sfc/Kconfig \
drivers/net/stmmac/Kconfig \
drivers/net/ixp2000/Kconfig \
drivers/net/fs_enet/Kconfig \
drivers/net/ibm_newemac/Kconfig \
drivers/net/tulip/Kconfig \
drivers/net/arm/Kconfig \
drivers/net/phy/Kconfig \
drivers/net/arcnet/Kconfig \
drivers/net/Kconfig \
drivers/macintosh/Kconfig \
drivers/message/i2o/Kconfig \
drivers/firewire/Kconfig \
drivers/ieee1394/Kconfig \
drivers/message/fusion/Kconfig \
drivers/md/Kconfig \
drivers/ata/Kconfig \
drivers/scsi/osd/Kconfig \
drivers/scsi/device_handler/Kconfig \
drivers/scsi/pcmcia/Kconfig \
drivers/scsi/arm/Kconfig \
drivers/scsi/qla4xxx/Kconfig \
drivers/scsi/qla2xxx/Kconfig \
drivers/scsi/mpt2sas/Kconfig \
drivers/scsi/megaraid/Kconfig.megaraid \
drivers/scsi/mvsas/Kconfig \
drivers/scsi/aic94xx/Kconfig \
drivers/scsi/aic7xxx/Kconfig.aic79xx \
drivers/scsi/aic7xxx/Kconfig.aic7xxx \
drivers/scsi/be2iscsi/Kconfig \
drivers/scsi/bnx2i/Kconfig \
drivers/scsi/cxgb3i/Kconfig \
drivers/scsi/libsas/Kconfig \
drivers/scsi/Kconfig \
drivers/ide/Kconfig \
drivers/misc/cb710/Kconfig \
drivers/misc/eeprom/Kconfig \
drivers/misc/c2port/Kconfig \
drivers/misc/Kconfig \
drivers/s390/block/Kconfig \
drivers/block/paride/Kconfig \
drivers/block/Kconfig \
drivers/pnp/pnpacpi/Kconfig \
drivers/pnp/pnpbios/Kconfig \
drivers/pnp/isapnp/Kconfig \
drivers/pnp/Kconfig \
drivers/parport/Kconfig \
drivers/of/Kconfig \
drivers/mtd/ubi/Kconfig.debug \
drivers/mtd/ubi/Kconfig \
drivers/mtd/lpddr/Kconfig \
drivers/mtd/onenand/Kconfig \
drivers/mtd/nand/Kconfig \
drivers/mtd/devices/Kconfig \
drivers/mtd/maps/Kconfig \
drivers/mtd/chips/Kconfig \
drivers/mtd/Kconfig \
drivers/connector/Kconfig \
drivers/base/Kconfig \
drivers/Kconfig \
net/9p/Kconfig \
net/rfkill/Kconfig \
net/wimax/Kconfig \
net/mac80211/Kconfig \
net/wireless/Kconfig \
net/compat-wireless/drivers/net/wireless/wl12xx/Kconfig \
net/rxrpc/Kconfig \
drivers/bluetooth/Kconfig \
net/bluetooth/hidp/Kconfig \
net/bluetooth/cmtp/Kconfig \
net/bluetooth/bnep/Kconfig \
net/bluetooth/rfcomm/Kconfig \
net/bluetooth/Kconfig \
drivers/net/irda/Kconfig \
net/irda/ircomm/Kconfig \
net/irda/irnet/Kconfig \
net/irda/irlan/Kconfig \
net/irda/Kconfig \
drivers/net/can/usb/Kconfig \
drivers/net/can/sja1000/Kconfig \
drivers/net/can/Kconfig \
net/can/Kconfig \
drivers/net/hamradio/Kconfig \
net/ax25/Kconfig \
net/dcb/Kconfig \
net/sched/Kconfig \
net/ieee802154/Kconfig \
net/phonet/Kconfig \
net/wanrouter/Kconfig \
net/econet/Kconfig \
net/lapb/Kconfig \
net/x25/Kconfig \
drivers/net/appletalk/Kconfig \
net/ipx/Kconfig \
net/llc/Kconfig \
net/decnet/Kconfig \
net/8021q/Kconfig \
net/dsa/Kconfig \
net/bridge/Kconfig \
net/802/Kconfig \
net/atm/Kconfig \
net/tipc/Kconfig \
net/rds/Kconfig \
net/sctp/Kconfig \
net/dccp/ccids/Kconfig \
net/dccp/Kconfig \
net/bridge/netfilter/Kconfig \
net/decnet/netfilter/Kconfig \
net/ipv6/netfilter/Kconfig \
net/ipv4/netfilter/Kconfig \
net/netfilter/ipvs/Kconfig \
net/netfilter/Kconfig \
net/netlabel/Kconfig \
net/ipv6/Kconfig \
net/ipv4/Kconfig \
net/iucv/Kconfig \
net/xfrm/Kconfig \
net/unix/Kconfig \
net/packet/Kconfig \
net/Kconfig \
kernel/power/Kconfig \
fs/Kconfig.binfmt \
drivers/cpuidle/Kconfig \
drivers/cpufreq/Kconfig \
mm/Kconfig \
kernel/Kconfig.preempt \
kernel/time/Kconfig \
drivers/pcmcia/Kconfig \
drivers/pci/Kconfig \
arch/arm/common/Kconfig \
arch/arm/Kconfig-nommu \
arch/arm/mm/Kconfig \
arch/arm/mach-bcmring/Kconfig \
arch/arm/mach-w90x900/Kconfig \
arch/arm/mach-u300/Kconfig \
arch/arm/mach-msm/Kconfig \
arch/arm/mach-ks8695/Kconfig \
arch/arm/mach-davinci/Kconfig \
arch/arm/mach-ns9xxx/Kconfig \
arch/arm/mach-netx/Kconfig \
arch/arm/mach-nomadik/Kconfig \
arch/arm/mach-mxc91231/Kconfig \
arch/arm/mach-mx25/Kconfig \
arch/arm/mach-mx3/Kconfig \
arch/arm/mach-mx2/Kconfig \
arch/arm/mach-mx1/Kconfig \
arch/arm/plat-mxc/Kconfig \
arch/arm/mach-at91/Kconfig \
arch/arm/mach-realview/Kconfig \
arch/arm/mach-aaec2000/Kconfig \
arch/arm/mach-versatile/Kconfig \
arch/arm/mach-h720x/Kconfig \
arch/arm/mach-lh7a40x/Kconfig \
arch/arm/mach-s5pc100/Kconfig \
arch/arm/plat-stmp3xxx/Kconfig \
arch/arm/mach-s3c6410/Kconfig \
arch/arm/mach-s3c6400/Kconfig \
arch/arm/mach-s3c2443/Kconfig \
arch/arm/mach-s3c2442/Kconfig \
arch/arm/mach-s3c2440/Kconfig \
arch/arm/mach-s3c2412/Kconfig \
arch/arm/mach-s3c2410/Kconfig \
arch/arm/mach-s3c2400/Kconfig \
arch/arm/plat-s5pc1xx/Kconfig \
arch/arm/plat-s3c/Kconfig \
arch/arm/plat-s3c64xx/Kconfig \
arch/arm/plat-s3c24xx/Kconfig \
arch/arm/mach-kirkwood/Kconfig \
arch/arm/mach-orion5x/Kconfig \
arch/arm/mach-omap2/Kconfig \
arch/arm/mach-omap1/Kconfig \
arch/arm/plat-omap/Kconfig \
arch/arm/mach-sa1100/Kconfig \
arch/arm/mach-mmp/Kconfig \
arch/arm/plat-pxa/Kconfig \
arch/arm/mach-pxa/Kconfig \
arch/arm/mach-mv78xx0/Kconfig \
arch/arm/mach-loki/Kconfig \
arch/arm/mach-ixp23xx/Kconfig \
arch/arm/mach-ixp2000/Kconfig \
arch/arm/mach-ixp4xx/Kconfig \
arch/arm/mach-iop13xx/Kconfig \
arch/arm/mach-iop33x/Kconfig \
arch/arm/mach-iop32x/Kconfig \
arch/arm/mach-integrator/Kconfig \
arch/arm/mach-gemini/Kconfig \
arch/arm/mach-footbridge/Kconfig \
arch/arm/mach-ep93xx/Kconfig \
arch/arm/mach-clps711x/Kconfig \
kernel/Kconfig.freezer \
block/Kconfig.iosched \
block/Kconfig \
kernel/gcov/Kconfig \
arch/Kconfig \
usr/Kconfig \
init/Kconfig \
arch/arm/Kconfig
include/config/auto.conf: \
$(deps_config)
ifneq "$(KERNELVERSION)" "2.6.32.60"
include/config/auto.conf: FORCE
endif
ifneq "$(ARCH)" "arm"
include/config/auto.conf: FORCE
endif
$(deps_config): ;
| vishal-android-freak/Super_Fusion | include/config/auto.conf.cmd | bat | gpl-2.0 | 16,183 |
cmd_sound/drivers/opl4/built-in.o := rm -f sound/drivers/opl4/built-in.o; /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ar rcsD sound/drivers/opl4/built-in.o
| domintech/PandaBoard-LinuxKernel | sound/drivers/opl4/.built-in.o.cmd | bat | gpl-2.0 | 234 |
cmd_drivers/media/IR/built-in.o := /home/dolphinor/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/media/IR/built-in.o drivers/media/IR/keymaps/built-in.o
| SeoDongMin/Gace_kernel | drivers/media/IR/.built-in.o.cmd | bat | gpl-2.0 | 162 |
@echo off
echo Cleaning temp ...
del /Q "temp"
echo Cleaning swfs ...
del /Q "bin\classes.swf"
del /Q "bin\stream.swf"
del /Q "html\stream.swf"
rem del /Q "..\..\..\server\src\html\media\stream.swf"
rem echo Cleaning docs ...
rem rmdir /S /Q "doc\upstage"
rem rmdir /S /Q "doc\index-files"
rem del /Q "doc\*.*"
rem echo. > "doc\EMPTY"
pause
| foobarlab/UpStage-Video-Hack | red5/client/subscriber/clean.bat | bat | gpl-2.0 | 341 |
cmd_drivers/md/dm.o := arm-linux-androideabi-gcc -Wp,-MD,drivers/md/.dm.o.d -nostdinc -isystem /usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include -I/usr/src/dell/lhbalanced/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -mfpu=neon -march=armv7-a -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=3072 -fno-stack-protector -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dm)" -D"KBUILD_MODNAME=KBUILD_STR(dm_mod)" -c -o drivers/md/dm.o drivers/md/dm.c
deps_drivers/md/dm.o := \
drivers/md/dm.c \
drivers/md/dm.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/preempt.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 \
/usr/src/dell/lhbalanced/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/linkage.h \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.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) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/posix_types.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/hwcap.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/irqflags.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
arch/arm/mach-msm/include/mach/barriers.h \
include/asm-generic/cmpxchg-local.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.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) \
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) \
/usr/src/dell/lhbalanced/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/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include/stdarg.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 \
/usr/src/dell/lhbalanced/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/current.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/string.h \
include/linux/seqlock.h \
include/linux/completion.h \
include/linux/rcutiny.h \
$(wildcard include/config/no/hz.h) \
include/linux/path.h \
include/linux/stat.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
include/linux/errno.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/kref.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
include/linux/pid.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/rwsem.h \
include/linux/percpu_counter.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/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 \
/usr/src/dell/lhbalanced/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/device-mapper.h \
$(wildcard include/config/dm/debug.h) \
include/linux/bio.h \
$(wildcard include/config/blk/dev/integrity.h) \
$(wildcard include/config/highmem.h) \
include/linux/highmem.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.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/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/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/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/rbtree.h \
include/linux/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 \
/usr/src/dell/lhbalanced/arch/arm/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/vmsplit/2g.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/pgtable-hwdef.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
$(wildcard include/config/arm/errata/720789.h) \
include/linux/sched.h \
$(wildcard include/config/sched/bfs.h) \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/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/irq/time/accounting.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/timex.h \
include/linux/param.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/jiffies.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/ipcbuf.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/sigcontext.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/proportions.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.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 \
/usr/src/dell/lhbalanced/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.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 \
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/uaccess.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/uaccess.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
$(wildcard include/config/arm/errata/411920.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/shmparam.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/kmap_types.h \
include/linux/mempool.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
$(wildcard include/config/blk/cgroup.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/device.h \
$(wildcard include/config/of.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/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/elf.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/pagemap.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/hardirq.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/irq_cpustat.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/writeback.h \
include/linux/bsg.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/elevator.h \
include/linux/hdreg.h \
drivers/md/dm-uevent.h \
$(wildcard include/config/dm/uevent.h) \
include/linux/blkpg.h \
include/linux/buffer_head.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/kmalloc_sizes.h \
include/linux/idr.h \
include/linux/delay.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/delay.h \
include/trace/events/block.h \
include/linux/blktrace_api.h \
include/linux/relay.h \
$(wildcard include/config/relay.h) \
include/linux/poll.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
drivers/md/dm.o: $(deps_drivers/md/dm.o)
$(deps_drivers/md/dm.o):
| tenorntex/lhbalanced | drivers/md/.dm.o.cmd | bat | gpl-2.0 | 27,351 |
objconv -fomf -nu sciter_video_api_32_coff.obj sciter_video_api_32_omf.obj | gxlmyacc/sciter4d | SciterVideoLib/objs/conv32.bat | bat | gpl-3.0 | 74 |
@echo off
set CLASSPATH=%CLASSPATH%;mule-standalone-3.2.1\conf\*
set CLASSPATH=%CLASSPATH%;mule-standalone-3.2.1\lib\boot\*
set CLASSPATH=%CLASSPATH%;mule-standalone-3.2.1\lib\endorsed\*
set CLASSPATH=%CLASSPATH%;mule-standalone-3.2.1\lib\mule\*
set CLASSPATH=%CLASSPATH%;mule-standalone-3.2.1\lib\opt\*
set CLASSPATH=%CLASSPATH%;mule-standalone-3.2.1\lib\user\*
java org.modcal.ModCal %1 %2 %3 %4 | vmatare/modcal | modcal.bat | bat | gpl-3.0 | 406 |
@ECHO OFF
rem IMPORTANT
rem you must extend the search path by MySQL's "bin" directory
rem set PATH=%PATH%;\path\to\mysql\bin
rem this batchfile must be run from the directory where it is installed (install\examples\movies\bin)
rem this is the case when this batchfile is just double clicked
echo --- creating example database "Movies" (MySQL root user password required) ...
mysql -u root -p mysql < ..\db\createdb.sql
echo database \"Movies\" and database user created
echo Note: the Movies SQL console is accessed by the "install\examples\movies\bin\mdb" command
mysql -u movies -pmovies Movies < ..\db\db_tables_mysql.sql
mysql -u movies -pmovies Movies < ..\db\db_inserts.sql
echo default "Movies" content created
echo example database "Movies" created
pause
| mukil/deepamehta2 | install/examples/movies/bin/dmexamples.bat | bat | gpl-3.0 | 797 |
@echo off
rem SoX Resampler Library Copyright (c) 2007-13 [email protected]
rem Licence for this file: LGPL v2.1 See LICENCE for details.
set build=%1
if x%build% == x set build=Release
rem Prevent interference from any in-tree build
del/f CMakeCache.txt
mkdir %build%
cd %build%
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=%build% -Wno-dev ..
if errorlevel 1 goto end
nmake
if errorlevel 1 goto end
nmake test
if errorlevel 1 goto error
goto end
:error
echo FAILURE details in Testing\Temporary\LastTest.log
:end
| xucp/mpc_hc | src/thirdparty/soxr/libsoxr/go.bat | bat | gpl-3.0 | 555 |
@echo off
yasm display.asm -o display.com
copy /b display.com+image.bin display2.com
yasm dbin.asm -o dbin.bin
copy /b dbin.bin+\fs.dat d.bin
yasm bars.asm -o bars.bin
| reenigne/reenigne | 8088/cga/image_display/build.bat | bat | unlicense | 169 |
rem cmd /k cd/d "d:\gowork\src\github.com\3xxx\meritms"
@echo off
d:
cd d:\gowork\src\github.com\3xxx\meritms
bee run
cmd /k | 3xxx/MeritMS | meritms.bat | bat | apache-2.0 | 124 |
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\byte_array.h byte_array.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\log_wrapper.h log_wrapper.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\shared_types.h shared_types.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\simple_message.h simple_message.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\simple_serialize.h simple_serialize.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\smpl_msg_connection.h smpl_msg_connection.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\message_handler.h message_handler.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\ping_message.h ping_message.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\ping_handler.h ping_handler.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\joint_data.h joint_data.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\message_manager.h message_manager.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\typed_message.h typed_message.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\comms_fault_handler.h comms_fault_handler.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\simple_comms_fault_handler.h simple_comms_fault_handler.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\joint_traj.h joint_traj.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\joint_traj_pt.h joint_traj_pt.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\robot_status.h robot_status.h
COPY ..\..\..\..\industrial_core\simple_message\src\byte_array.cpp byte_array.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\simple_message.cpp simple_message.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\smpl_msg_connection.cpp smpl_msg_connection.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\message_handler.cpp message_handler.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\ping_message.cpp ping_message.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\ping_handler.cpp ping_handler.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\joint_data.cpp joint_data.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\message_manager.cpp message_manager.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\joint_traj.cpp joint_traj.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\robot_status.cpp robot_status.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\joint_traj_pt.cpp joint_traj_pt.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\simple_comms_fault_handler.cpp simple_comms_fault_handler.cpp
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\simple_socket.h simple_socket.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\tcp_socket.h tcp_socket.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\tcp_client.h tcp_client.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\tcp_server.h tcp_server.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\udp_socket.h udp_socket.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\udp_client.h udp_client.h
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\socket\udp_server.h udp_server.h
COPY ..\..\..\..\industrial_core\simple_message\src\socket\simple_socket.cpp simple_socket.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\socket\tcp_socket.cpp tcp_socket.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\socket\tcp_client.cpp tcp_client.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\socket\tcp_server.cpp tcp_server.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\socket\udp_socket.cpp udp_socket.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\socket\udp_client.cpp udp_client.cpp
COPY ..\..\..\..\industrial_core\simple_message\src\socket\udp_server.cpp udp_server.cpp
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\messages\joint_traj_pt_message.h joint_traj_pt_message.h
COPY ..\..\..\..\industrial_core\simple_message\src\messages\joint_traj_pt_message.cpp joint_traj_pt_message.cpp
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\messages\robot_status_message.h robot_status_message.h
COPY ..\..\..\..\industrial_core\simple_message\src\messages\robot_status_message.cpp robot_status_message.cpp
COPY ..\..\..\..\industrial_core\simple_message\include\simple_message\messages\joint_message.h joint_message.h
COPY ..\..\..\..\industrial_core\simple_message\src\messages\joint_message.cpp joint_message.cpp
COPY ..\..\include\dx100\trajectory_job.h trajectory_job.h
COPY ..\..\src\trajectory_job.cpp trajectory_job.cpp
COPY ..\..\include\dx100\ros_conversion.h ros_conversion.h
COPY ..\..\src\ros_conversion.cpp ros_conversion.cpp
| gomezc/industrial_training | training/supplements/src/dx100/motoplus/motoros_lib/SyncFromSource.bat | bat | apache-2.0 | 5,288 |
@echo off
setlocal enabledelayedexpansion
set USERS[moeh]=Moe Howard
set USERS[shemph]=Shemp Howard
set USERS[larryf]=Larry Fine
for /f "usebackq delims=" %%a in (`set USERS[`) do (
for /f "usebackq tokens=1,2 delims==" %%m in ('%%a') do (
set __k=%%m& set __k=!__k:*[=!& set __k=!__k:]=!
set __v=%%n
echo key = '!__k!' value = '!__v!'
)
)
echo.
set /p user=Enter user name:
if not defined USERS[%user%] (
echo User '%user%' was not found in the system!
) else (
echo %user%'s full name is: !USERS[%user%]!
)
endlocal | PassingTheKnowledge/Batchography | array-assoc-1.bat | bat | apache-2.0 | 558 |
@rem GL_ES
@rem ENABLE_SKINNING
@rem ENABLE_FOG
@rem ENABLE_LIGHTING_UNIT0
@rem ENABLE_LIGHTING_UNIT1
@rem ENABLE_DIFFUSELIGHTING
@rem ENABLE_SPECULARING
@rem ENABLE_RIMLIGHTING
@rem ENABLE_SKYLIGHTING
@rem ENABLE_AMBIENT_OCCLUSION
@rem ENABLE_ENVMAP
@rem ENABLE_LIGHTMAP
@rem ENABLE_NORMALMAP
@rem ENABLE_SPECULARMAP
@rem ENABLE_SHADOWMAP
@rem ENABLE_SHADOWMAP_PCF
@rem ENABLE_SHADOWMAP_PCF2X2
@rem ENABLE_MRT_COLOR_DEPTH
@rem ENABLE_OPTIONAL_NORMALIZE
set DEFINES=-DENABLE_SKINNING -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oSkinning.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oSkinning.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_SKINNING -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oSkinningLighting.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oSkinningLighting.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_SKINNING -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oSkinningLightingNormalMapSpecularMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oSkinningLightingNormalMapSpecularMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_SKINNING -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oSkinningLightingNormalMapSpecularMapShadowMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oSkinningLightingNormalMapSpecularMapShadowMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLighting.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLighting.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightingNormalMapSpecularMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightingNormalMapSpecularMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightingNormalMapSpecularMapShadowMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightingNormalMapSpecularMapShadowMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_LIGHTMAP -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_LIGHTMAP -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightMapShadowMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightMapShadowMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightingLightMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightingLightMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightingLightMapShadowMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightingLightMapShadowMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingLightMapNormalMapSpecularMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingLightMapNormalMapSpecularMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingLightMapNormalMapSpecularMapShadowMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingLightMapNormalMapSpecularMapShadowMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_SKINNING -DENABLE_ENVMAP -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningEnvMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningEnvMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_SKINNING -DENABLE_ENVMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningLightingEnvMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningLightingEnvMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_SKINNING -DENABLE_ENVMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningLightingEnvMapNormalMapSpecularMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningLightingEnvMapNormalMapSpecularMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_SKINNING -DENABLE_ENVMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningLightingEnvMapNormalMapSpecularMapShadowMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oSkinningLightingEnvMapNormalMapSpecularMapShadowMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_ENVMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_ENVMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapNormalMapSpecularMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapNormalMapSpecularMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_ENVMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SKYLIGHTING -DENABLE_RIMLIGHTING -DENABLE_SPECULARING -DENABLE_NORMALMAP -DENABLE_SPECULARMAP -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapNormalMapSpecularMapShadowMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapNormalMapSpecularMapShadowMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_ENVMAP -DENABLE_LIGHTMAP -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oEnvMapLightMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oEnvMapLightMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_ENVMAP -DENABLE_LIGHTMAP -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oEnvMapLightMapShadowMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oEnvMapLightMapShadowMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_ENVMAP -DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMap.Fragment.shader Default.Fragment.source
set DEFINES=-DENABLE_OPTIONAL_NORMALIZE -DENABLE_ENVMAP -DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_DIFFUSELIGHTING -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMapShadowMap.Vertex.shader Default.Vertex.source
cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMapShadowMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_ENVMAP -DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMapNormalMapSpecularMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMapNormalMapSpecularMap.Fragment.shader Default.Fragment.source
@rem set DEFINES=-DENABLE_ENVMAP -DENABLE_LIGHTMAP -DENABLE_LIGHTING_UNIT0 -DENABLE_LIGHTING_UNIT1 -DENABLE_DIFFUSELIGHTING -DENABLE_SHADOWMAP -DENABLE_SHADOWMAP_PCF2X2 -DENABLE_MRT_COLOR_DEPTH
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMapNormalMapSpecularMapShadowMap.Vertex.shader Default.Vertex.source
@rem cpp32.exe -C -Sr %DEFINES% -oLightingEnvMapLightMapNormalMapSpecularMapShadowMap.Fragment.shader Default.Fragment.source
del ..\..\..\Bin\Media\Shader\*.* /q
copy *.shader ..\..\..\Bin\Media\Shader /y
copy .\Effect\*.shader ..\..\..\Bin\Media\Shader /y
@rem pause | LiangYue1981816/CrossEngine | CrossEngine/media/Shader/make_pc.bat | bat | apache-2.0 | 10,254 |
@echo off
@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.
set HADOOP_HOME=C:\bin\hadoop\
set HADOOP_HEAPSIZE=256
set CLUSTERDIR=C:\Work\clusterconfigs\clusters\morzine
set HADOOP_CONF_DIR=C:\Work\clusterconfigs
cd %HADOOP_HOME%
| steveloughran/clusterconfigs | clusters/morzine/setup.cmd | bat | apache-2.0 | 1,010 |
rem <<BATFILE
SET meshr=%~dp0
set meshr=%meshr:~0,-1%
set LD_LIBRARY_PATH="%meshr%\usr\lib:$LD_LIBRARY_PATH"
set PATH=%meshr%\bin;%meshr%\usr\bin;%meshr%;%PATH%
set LUA_PATH="%meshr%\usr\lib\lua\?.lua;%meshr%\usr\lib\lua\?\init.lua;;"
set LUA_CPATH="%meshr%\usr\lib\lua\?.so;;"
set LUCI_SYSROOT="%meshr%"
SET meshr=%meshr:\=/%
%meshr%/bin/uci commit
rem call %meshr%/update.bat
:loop
"%meshr%/bin/lua.exe" - < %meshr%/lucid.lua
goto :loop
goto :EOF
BATFILE
cd `dirname $0`
[ -z $meshr ] && meshr=`pwd`
P=`pwd`
export LD_LIBRARY_PATH="$P/usr/lib:$LD_LIBRARY_PATH"
#PATH="$P/bin:$P/usr/bin:$PATH"
export LUA_PATH="$P/usr/lib/lua/?.lua;$P/usr/lib/lua/?/init.lua;;"
export LUA_CPATH="$P/usr/lib/lua/?.so;;"
export LUCI_SYSROOT="$P"
export meshr=$P
rm -rf $meshr/tmp/.uci
rm -rf $meshr/var/run/*
#firewall
$P/bin/lua $P/lucid.lua
| meshr-net/meshr_win32 | lucid.bat | bat | apache-2.0 | 831 |
java -cp ftp-server-client-0.0.1.jar com.upwork.ftp.gui.ClientForm | daniyar-artykov/demo-projects | ftp-server-client/test/client.bat | bat | apache-2.0 | 66 |
@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\PyconTutorial.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyconTutorial.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
| johnmulder/pycon-tutorial-student | doc/make.bat | bat | bsd-3-clause | 7,746 |
REM This is not guaranteed to work, ever. It's just a little helper
REM script that I threw together to help me build the win32 version of
REM the library. If someone with more win32-fu than I wants to make
REM something more robust, please feel free! I'd love to include it.
REM -- Jamis Buck
cl /LD /Ie:\WinSDK\Include /Ic:\ruby\lib\ruby\1.8\i386-mswin32 /Ic:\ruby\sqlite3 /Ic:\ruby\src\ruby-1.8.4_2006-04-14 sqlite3_api_wrap.c /link /LIBPATH:c:\ruby\sqlite3 /LIBPATH:e:\WinSDK\Lib /LIBPATH:c:\ruby\lib sqlite3.lib msvcrt-ruby18.lib
| schuyler/sqlite3-ruby | ext/sqlite3_api/win32/build.bat | bat | bsd-3-clause | 543 |
cd ..\MOTMaster\bin\Sympathetic\
start MOTMaster.exe | Stok/EDMSuite | SympatheticLaunchScripts/MOTMaster.bat | bat | mit | 53 |
@echo off
call bin\start\set_env.bat
call "WinPython-64bit-3.4.2.4\scripts\env.bat"
call bin\start\start_caffeine.bat
start bin\start\hotkeys.exe
Apps\Start.exe | beselim/PortableDrive | start.bat | bat | mit | 165 |
#############################################
## Autosave monitor post setup ##
#############################################
cd "${TOP}/iocBoot/$(IOC)"
create_monitor_set("iocCWS-TCPH-PSH0SYSM.req",30,"P=$(AUTOSAVE_SYSM_PV_PREFIX)")
| ControlSystemStudio/org.csstudio.iter | products/org.csstudio.iter.css.product/demo/m-TEST-CSS/src/main/epics/iocBoot/iocCWS-TCPH-PSH0SYSM/iocCWS-TCPH-PSH0SYSM-postSaveRestore.cmd | bat | epl-1.0 | 248 |
@echo off
if exist version.cmd call version.cmd
if "%INSTALLDIR%" == "" set "INSTALLDIR=%~dp0"
if not exist "%INSTALLDIR%\nyagos.exe" set "INSTALLDIR=%~dp0"
if not "%2" == "" set "INSTALLDIR=%2"
for /F %%I in ('cscript /nologo specialfolders.js desktop') do echo Desktop=%%I & cscript //nologo lnk.js "%INSTALLDIR%\nyagos.exe" "%%I\Nihongo Yet Another GOing Shell.lnk" "WorkingDirectory=%USERPROFILE%" "HotKey=CTRL+ALT+N" "Description=Nihongo Yet Another GOing Shell"
| kissthink/nyagos | makeicon.cmd | bat | bsd-3-clause | 476 |
@rem Builds and deploys Tundra x86 using the INSTALL project, so that you can run the NSIS install script.
@cd ..
@call MakeInstall.cmd "Visual Studio 9 2008" -DINSTALL_BINARIES_ONLY:BOOL=ON
| jesterKing/naali | tools/Windows/Installer/VS2008/MakeInstall.cmd | bat | apache-2.0 | 191 |
@echo off
set FWDIR=%~dp0
set SPARK_LAUNCH_WITH_SCALA=1
cmd /V /E /C %FWDIR%run2.cmd spark.repl.Main %*
| koeninger/spark | spark-shell.cmd | bat | bsd-3-clause | 104 |
@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\Splash.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Splash.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
| sunu/splash | docs/make.bat | bat | bsd-3-clause | 6,701 |
@echo off
set pythonPath=
call "%~dp0findpython.bat"
if ()==(%pythonPath%) goto NoPython
"%pythonPath%" "%~dp0titanium.py" %*
goto Exit
:NoPython
exit /b 1
:Exit
| xissy/titanium-mobile-sdk | win32/titanium.bat | bat | apache-2.0 | 181 |
@echo off
@echo Setting environment for using Microsoft Visual Studio 2010 x86 tools.
@call :GetVSCommonToolsDir
@if "%VS100COMNTOOLS%"=="" goto error_no_VS100COMNTOOLSDIR
@call "%VS100COMNTOOLS%VCVarsQueryRegistry.bat" 32bit No64bit
@if "%VSINSTALLDIR%"=="" goto error_no_VSINSTALLDIR
@if "%FrameworkDir32%"=="" goto error_no_FrameworkDIR32
@if "%FrameworkVersion32%"=="" goto error_no_FrameworkVer32
@if "%Framework35Version%"=="" goto error_no_Framework35Version
@set FrameworkDir=%FrameworkDir32%
@set FrameworkVersion=%FrameworkVersion32%
@if not "%WindowsSdkDir%" == "" (
@set "PATH=%WindowsSdkDir%bin\NETFX 4.0 Tools;%WindowsSdkDir%bin;%PATH%"
@set "INCLUDE=%WindowsSdkDir%include;%INCLUDE%"
@set "LIB=%WindowsSdkDir%lib;%LIB%"
)
@rem
@rem Root of Visual Studio IDE installed files.
@rem
@set DevEnvDir=%VSINSTALLDIR%Common7\IDE\
@rem PATH
@rem ----
@if exist "%VSINSTALLDIR%Team Tools\Performance Tools" (
@set "PATH=%VSINSTALLDIR%Team Tools\Performance Tools;%PATH%"
)
@if exist "%ProgramFiles%\HTML Help Workshop" set PATH=%ProgramFiles%\HTML Help Workshop;%PATH%
@if exist "%ProgramFiles(x86)%\HTML Help Workshop" set PATH=%ProgramFiles(x86)%\HTML Help Workshop;%PATH%
@if exist "%VCINSTALLDIR%VCPackages" set PATH=%VCINSTALLDIR%VCPackages;%PATH%
@set PATH=%FrameworkDir%%Framework35Version%;%PATH%
@set PATH=%FrameworkDir%%FrameworkVersion%;%PATH%
@set PATH=%VSINSTALLDIR%Common7\Tools;%PATH%
@if exist "%VCINSTALLDIR%BIN" set PATH=%VCINSTALLDIR%BIN;%PATH%
@set PATH=%DevEnvDir%;%PATH%
@if exist "%VSINSTALLDIR%VSTSDB\Deploy" (
@set "PATH=%VSINSTALLDIR%VSTSDB\Deploy;%PATH%"
)
@if not "%FSHARPINSTALLDIR%" == "" (
@set "PATH=%FSHARPINSTALLDIR%;%PATH%"
)
@rem INCLUDE
@rem -------
@if exist "%VCINSTALLDIR%ATLMFC\INCLUDE" set INCLUDE=%VCINSTALLDIR%ATLMFC\INCLUDE;%INCLUDE%
@if exist "%VCINSTALLDIR%INCLUDE" set INCLUDE=%VCINSTALLDIR%INCLUDE;%INCLUDE%
@rem LIB
@rem ---
@if exist "%VCINSTALLDIR%ATLMFC\LIB" set LIB=%VCINSTALLDIR%ATLMFC\LIB;%LIB%
@if exist "%VCINSTALLDIR%LIB" set LIB=%VCINSTALLDIR%LIB;%LIB%
@rem LIBPATH
@rem -------
@if exist "%VCINSTALLDIR%ATLMFC\LIB" set LIBPATH=%VCINSTALLDIR%ATLMFC\LIB;%LIBPATH%
@if exist "%VCINSTALLDIR%LIB" set LIBPATH=%VCINSTALLDIR%LIB;%LIBPATH%
@set LIBPATH=%FrameworkDir%%Framework35Version%;%LIBPATH%
@set LIBPATH=%FrameworkDir%%FrameworkVersion%;%LIBPATH%
@goto end
@REM -----------------------------------------------------------------------
:GetVSCommonToolsDir
@set VS100COMNTOOLS=
@call :GetVSCommonToolsDirHelper32 HKLM > nul 2>&1
@if errorlevel 1 call :GetVSCommonToolsDirHelper32 HKCU > nul 2>&1
@if errorlevel 1 call :GetVSCommonToolsDirHelper64 HKLM > nul 2>&1
@if errorlevel 1 call :GetVSCommonToolsDirHelper64 HKCU > nul 2>&1
@exit /B 0
:GetVSCommonToolsDirHelper32
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Microsoft\VisualStudio\SxS\VS7" /v "10.0"') DO (
@if "%%i"=="10.0" (
@SET "VS100COMNTOOLS=%%k"
)
)
@if "%VS100COMNTOOLS%"=="" exit /B 1
@SET "VS100COMNTOOLS=%VS100COMNTOOLS%Common7\Tools\"
@exit /B 0
:GetVSCommonToolsDirHelper64
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\SxS\VS7" /v "10.0"') DO (
@if "%%i"=="10.0" (
@SET "VS100COMNTOOLS=%%k"
)
)
@if "%VS100COMNTOOLS%"=="" exit /B 1
@SET "VS100COMNTOOLS=%VS100COMNTOOLS%Common7\Tools\"
@exit /B 0
@REM -----------------------------------------------------------------------
:error_no_VS100COMNTOOLSDIR
@echo ERROR: Cannot determine the location of the VS Common Tools folder.
@goto end
:error_no_VSINSTALLDIR
@echo ERROR: Cannot determine the location of the VS installation.
@goto end
:error_no_FrameworkDIR32
@echo ERROR: Cannot determine the location of the .NET Framework 32bit installation.
@goto end
:error_no_FrameworkVer32
@echo ERROR: Cannot determine the version of the .NET Framework 32bit installation.
@goto end
:error_no_Framework35Version
@echo ERROR: Cannot determine the .NET Framework 3.5 version.
@goto end
:end
cd ../msvc/
msbuild RetroArch-360.sln /p:Configuration=Release_LTCG
copy RetroArch-360\Release_LTCG\CORE.xex RetroArch-360\%1.xex
del RetroArch-360\Release_LTCG\CORE.xex
del RetroArch-360\Release_LTCG\libretro_xdk360.lib
exit
| fcatrin/rxMultiEmulatorAddOn | dist-scripts/xdk360_env.bat | bat | gpl-3.0 | 4,182 |
@rem Do not use "echo off" to not affect any child calls.
@setlocal
@rem Get the absolute path to the parent directory, which is assumed to be the
@rem Git installation root.
@for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI
@set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH%
@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@start "gitk" wish.exe "%git_install_root%\bin\gitk" -- %*
| ArcherSys/ArcherSys | gitbin/Git1.9.4/cmd/gitk.cmd | bat | mit | 476 |
set startdir=%cd%
cd %~dp0app
set PYTHON_HOME=C:\Python27\;C:\Python27\Scripts;
set path=%PYTHON_HOME%%path%
call npm i -g yarn
call yarn global add yarn cnpm npm @angular/cli
call yarn&&yarn upgrade -L||call cnpm i&&cnpm upgrade -S||call npm i&&npm upgrade -S
start /min run
cd ..
set PYTHON_HOME=C:\Users\xingd\AppData\Local\Programs\Python\Python36\Scripts\;C:\Users\xingd\AppData\Local\Programs\Python\Python36\;
set path=%PYTHON_HOME%%path%
chcp 65001
pip install -r api/requirements.txt --upgrade
chcp 936
api/run
cd %startdir%
| WX-DongXing/pms | run.bat | bat | mit | 534 |
python.exe epubia.py
| hojel/epubia | epubia.bat | bat | mit | 22 |
xcopy /e /y "dist" "../package_ng2-bingmaps" | rolandoldengarm/ng2-bingmaps | copy_to_package.cmd | bat | mit | 44 |
@echo off
IF NOT EXIST packages\FAKE\tools\FAKE.exe (
.paket\paket.exe add nuget FAKE
)
packages\FAKE\tools\FAKE.exe build.fsx %* | teramonagi/fsharp-100-exercises | fsharp-100-exercises/build.cmd | bat | mit | 134 |
@npm run hot-server
| cinderblock/XLN-Control | Hot Server.bat | bat | mit | 20 |
@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\BrickPython.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\BrickPython.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
| charlesweir/BrickPython | docs/make.bat | bat | mit | 6,711 |
@echo off
set CONFIG_NAME=Debug
set D_SUFFIX=d
set HYPHEN_D_SUFFIX=-d
call CopyFiles_AnyConfiguration.bat %CONFIG_NAME% %D_SUFFIX% %HYPHEN_D_SUFFIX%
rem copy Qt & QScintilla files:
XCopy /r /d /y "..\..\Common\Lib\Ext\QScintilla\2.8-GPL\lib\win32\%CONFIG_NAME%\qscintilla2%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Core%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Core%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Gui%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Gui%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5OpenGL%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5OpenGL%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Network%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Network%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Xml%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Xml%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Widgets%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Widgets%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5WebKit%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5WebKit%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5WebChannel%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5WebChannel%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5WebKitWidgets%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5WebKitWidgets%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5MultimediaWidgets%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5MultimediaWidgets%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Positioning%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Positioning%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5PrintSupport%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5PrintSupport%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Multimedia%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Multimedia%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Sensors%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Sensors%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Sql%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Sql%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Quick%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Quick%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Qml%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\Qt5Qml%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
rem copy other files Qt need
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\icudt54.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\icuin54.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\icuuc54.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\libEGL%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\libEGL%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\libGLESv2%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\bin\win32\libGLESv2%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\plugins\platforms\qwindows%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\platforms\"
XCopy /r /d /y "..\..\Common\Lib\Ext\Qt\5.5\plugins\platforms\qwindows%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\platforms\"
rem copy other files qcustomplot
XCopy /r /d /y "..\..\Common\Lib\Ext\qcustomplot\1.3.1\lib\Win32\%CONFIG_NAME%\qcustomplot%D_SUFFIX%.dll" "..\Output\%CONFIG_NAME%\bin\"
XCopy /r /d /y "..\..\Common\Lib\Ext\qcustomplot\1.3.1\lib\Win32\%CONFIG_NAME%\qcustomplot%D_SUFFIX%.pdb" "..\Output\%CONFIG_NAME%\bin\"
| ilangal-amd/CodeXL | CodeXL/AllProjectsBuild/CopyFiles_Debug.bat | bat | mit | 5,433 |
:: ----------------------------------------------------------------------------
:: File: lib.cmd
::
:: Desc: Copies project dependencies into the lib folder.
::
:: Copyright (c) 2014 VoodooJs Authors
:: ----------------------------------------------------------------------------
@echo off
del /S /Q "%~dp0..\lib\*.*"
mkdir "%~dp0..\lib"
copy /B /Y "%~dp0..\..\tools\lib\three.min.js" "%~dp0..\lib"
copy /B /Y "%~dp0..\build\voodoo-*.min.debug.js" "%~dp0..\lib\voodoo.min.debug.js"
copy /B /Y "%~dp0..\build\voodoo-*.min.js" "%~dp0..\..\tools\lib\voodoo.min.js"
| brentongunning/voodoo.js | voodoo/config/lib.cmd | bat | mit | 566 |
cmd_arch/arm/lib/io-readsl.o := arm-poky-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.io-readsl.o.d -nostdinc -isystem /opt/poky/1.7/sysroots/i686-pokysdk-linux/usr/lib/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.1/include -I/second_extend/yocto_file/linux_yocto/arch/arm/include -Iarch/arm/include/generated -Iinclude -I/second_extend/yocto_file/linux_yocto/arch/arm/include/uapi -Iarch/arm/include/generated/uapi -I/second_extend/yocto_file/linux_yocto/include/uapi -Iinclude/generated/uapi -include /second_extend/yocto_file/linux_yocto/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -mfpu=vfp -funwind-tables -marm -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/io-readsl.o arch/arm/lib/io-readsl.S
source_arch/arm/lib/io-readsl.o := arch/arm/lib/io-readsl.S
deps_arch/arm/lib/io-readsl.o := \
/second_extend/yocto_file/linux_yocto/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) \
$(wildcard include/config/kprobes.h) \
include/linux/stringify.h \
include/linux/export.h \
$(wildcard include/config/have/underscore/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/linkage.h \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/cpu/v7m.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/cpu/use/domains.h) \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/second_extend/yocto_file/linux_yocto/arch/arm/include/uapi/asm/ptrace.h \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/hwcap.h \
/second_extend/yocto_file/linux_yocto/arch/arm/include/uapi/asm/hwcap.h \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/opcodes-virt.h \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/opcodes.h \
$(wildcard include/config/cpu/endian/be32.h) \
arch/arm/lib/io-readsl.o: $(deps_arch/arm/lib/io-readsl.o)
$(deps_arch/arm/lib/io-readsl.o):
| heyoufei2/yocto3.14.38_kernel | arch/arm/lib/.io-readsl.o.cmd | bat | gpl-2.0 | 2,917 |
mapsym comdd | OS2World/APP-COMM-ComScope | COMI/BASE/sym.cmd | bat | gpl-2.0 | 12 |
REM @echo off
cd src/
color 0f
py -3.4 main.py REM > Logs/errors.log 2>&1
notepad Logs/errors.log | Loodoor/UrWorld-Alpha-3.x | LaunchMe-Windows.bat | bat | gpl-2.0 | 97 |
cmd_kernel/hrtimer.o := arm-eabi-gcc -Wp,-MD,kernel/.hrtimer.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(hrtimer)" -D"KBUILD_MODNAME=KBUILD_STR(hrtimer)" -c -o kernel/hrtimer.o kernel/hrtimer.c
deps_kernel/hrtimer.o := \
kernel/hrtimer.c \
$(wildcard include/config/smp.h) \
$(wildcard include/config/ktime/scalar.h) \
$(wildcard include/config/debug/objects/timers.h) \
$(wildcard include/config/high/res/timers.h) \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/time/low/res.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/cpu.h \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/sysdev.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.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 \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/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 \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.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/sysfs.h \
$(wildcard include/config/sysfs.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 \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(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) \
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 \
/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/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/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.h) \
$(wildcard include/config/generic/bug/relative/pointers.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 \
include/linux/kref.h \
include/linux/wait.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.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/seqlock.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/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 \
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/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/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/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/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/node.h \
include/linux/hrtimer.h \
include/linux/rbtree.h \
include/linux/ktime.h \
include/linux/jiffies.h \
include/linux/timex.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/syscalls.h \
$(wildcard include/config/have/syscall/wrappers.h) \
include/linux/aio_abi.h \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/sem.h \
$(wildcard include/config/sysvipc.h) \
include/linux/ipc.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/ipcbuf.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sembuf.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sigcontext.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/key.h \
$(wildcard include/config/keys.h) \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/kallsyms.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/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/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.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/tracing.h) \
$(wildcard include/config/iowait/acct.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.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/cputime.h \
include/asm-generic/cputime.h \
include/linux/signal.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/workqueue.h \
include/linux/uio.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/hardirq.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/tick.h \
$(wildcard include/config/generic/clockevents.h) \
$(wildcard include/config/generic/clockevents/broadcast.h) \
$(wildcard include/config/tick/oneshot.h) \
include/linux/clockchips.h \
$(wildcard include/config/generic/clockevents/build.h) \
include/linux/clocksource.h \
$(wildcard include/config/clocksource/watchdog.h) \
$(wildcard include/config/generic/time/vsyscall.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
include/linux/seq_file.h \
include/linux/err.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/uaccess.h \
kernel/hrtimer.o: $(deps_kernel/hrtimer.o)
$(deps_kernel/hrtimer.o):
| HCDRJacob/wildfire-kernel | kernel/.hrtimer.o.cmd | bat | gpl-2.0 | 146,388 |
cmd_drivers/pci/quirks.o := gcc -Wp,-MD,drivers/pci/.quirks.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(quirks)" -D"KBUILD_MODNAME=KBUILD_STR(quirks)" -c -o drivers/pci/quirks.o drivers/pci/quirks.c
deps_drivers/pci/quirks.o := \
drivers/pci/quirks.c \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/ata.h) \
$(wildcard include/config/pci/msi.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/asm/posix_types.h \
$(wildcard include/config/x86/32.h) \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
$(wildcard include/config/x86/cmov.h) \
include/asm/alternative.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/paravirt.h) \
include/asm/asm.h \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/pci.h \
$(wildcard include/config/pcieaspm.h) \
$(wildcard include/config/pci.h) \
$(wildcard include/config/pci/legacy.h) \
$(wildcard include/config/ht/irq.h) \
$(wildcard include/config/pci/domains.h) \
$(wildcard include/config/pci/mmconfig.h) \
include/linux/pci_regs.h \
include/linux/mod_devicetable.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/ioport.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/compat/vdso.h) \
include/asm/user.h \
include/asm/user_32.h \
include/asm/auxvec.h \
include/asm/vdso.h \
include/asm/desc.h \
include/asm/ldt.h \
include/asm/mmu.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/asm-x86/mach-default/mach_apicdef.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slabinfo.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/asm/module.h \
$(wildcard include/config/m486.h) \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip2.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
include/linux/semaphore.h \
include/asm/device.h \
$(wildcard include/config/dmar.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/pci_ids.h \
include/linux/dmapool.h \
include/asm/io.h \
include/asm/io_32.h \
include/asm-generic/iomap.h \
include/linux/vmalloc.h \
include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/asm/pci.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/auxvec.h \
include/asm/pgtable.h \
include/asm/pgtable_32.h \
$(wildcard include/config/highpte.h) \
include/asm/paravirt.h \
include/asm/pgtable-2level-defs.h \
include/asm/pgtable-2level.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/asm/pci_32.h \
include/asm-generic/pci-dma-compat.h \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/err.h \
include/asm/dma-mapping.h \
include/linux/scatterlist.h \
include/asm/swiotlb.h \
$(wildcard include/config/swiotlb.h) \
include/asm-generic/pci.h \
include/linux/acpi.h \
$(wildcard include/config/have/arch/parse/srat.h) \
$(wildcard include/config/acpi/hotplug/cpu.h) \
$(wildcard include/config/acpi/ec.h) \
$(wildcard include/config/acpi/wmi.h) \
$(wildcard include/config/dmi.h) \
include/acpi/acpi.h \
include/acpi/acnames.h \
include/acpi/acconfig.h \
$(wildcard include/config/h.h) \
include/acpi/platform/acenv.h \
include/acpi/platform/aclinux.h \
include/linux/ctype.h \
include/acpi/platform/acgcc.h \
include/acpi/actypes.h \
include/acpi/actypes.h \
include/acpi/acexcep.h \
include/acpi/acmacros.h \
$(wildcard include/config/acpi/debug/func/trace.h) \
include/acpi/actbl.h \
include/acpi/actbl1.h \
include/acpi/aclocal.h \
include/acpi/acoutput.h \
include/acpi/acpiosxf.h \
include/acpi/acpixf.h \
include/acpi/acobject.h \
include/acpi/acstruct.h \
include/acpi/acglobal.h \
include/acpi/achware.h \
include/acpi/acutils.h \
include/acpi/acpi_bus.h \
$(wildcard include/config/acpi/proc/event.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/inotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.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 \
include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.h \
include/linux/namei.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/magic.h \
include/acpi/acpi_drivers.h \
$(wildcard include/config/acpi/power.h) \
$(wildcard include/config/acpi/dock.h) \
include/acpi/acpi_numa.h \
include/linux/dmi.h \
include/linux/kallsyms.h \
drivers/pci/pci.h \
$(wildcard include/config/pcieaer.h) \
drivers/pci/quirks.o: $(deps_drivers/pci/quirks.o)
$(deps_drivers/pci/quirks.o):
| namgk/kernel-tut | drivers/pci/.quirks.o.cmd | bat | gpl-2.0 | 18,467 |
cmd_net/bluetooth/bnep/bnep.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o net/bluetooth/bnep/bnep.o net/bluetooth/bnep/core.o net/bluetooth/bnep/sock.o net/bluetooth/bnep/netdev.o
| emwno/android_kernel_U8500 | net/bluetooth/bnep/.bnep.o.cmd | bat | gpl-2.0 | 207 |
@echo off
set MAKER=nmake -f makefile_vc
set DIRSUFF=DIRSUFF
if "%FAR3HOME%"=="" set FAR3HOME=../../../FAR
%MAKER% FARDEV=%FAR3HOME%/fardev DEF_NAME=localcmdhistory_3 %DIRSUFF%=.Far3 FAR3=1
goto :eof
| CyberShadow/localcmdhistory | src/build.bat | bat | gpl-2.0 | 212 |
@echo off
cls
java -cp .;..\build\classes;..\config;..\lib\log4j.jar de.uniba.wiai.lspi.chord.console.Main %*
java -cp .:../build/classes:../config:../lib/log4j.jar de.uniba.wiai.lspi.chord.console.Main %*
| toppratyush007/OpenChord | bin/console.bat | bat | gpl-2.0 | 208 |
cmd_drivers/misc/built-in.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o drivers/misc/built-in.o drivers/misc/pmem.o drivers/misc/uid_stat.o drivers/misc/eeprom/built-in.o drivers/misc/cb710/built-in.o drivers/misc/pmic8058-pwm.o drivers/misc/pmic8058-nfc.o
| paxchristos/R800x-2.3.3-Kernel | drivers/misc/.built-in.o.cmd | bat | gpl-2.0 | 330 |
cmd_arch/arm/lib/strncpy_from_user.o := arm-arago-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.strncpy_from_user.o.d -nostdinc -isystem /home/shyam/calixto/ti-sdk-am180x-evm/linux-devkit/bin/../lib/gcc/arm-arago-linux-gnueabi/4.5.3/include -I/home/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -include asm/unified.h -msoft-float -c -o arch/arm/lib/strncpy_from_user.o arch/arm/lib/strncpy_from_user.S
deps_arch/arm/lib/strncpy_from_user.o := \
arch/arm/lib/strncpy_from_user.S \
/home/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/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/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/arch/arm/include/asm/linkage.h \
/home/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/arch/arm/include/asm/hwcap.h \
/home/shyam/calixto/Git_Controlled_Kernel/linux-2.6.37-calixto-versa-evm-v1/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
arch/arm/lib/strncpy_from_user.o: $(deps_arch/arm/lib/strncpy_from_user.o)
$(deps_arch/arm/lib/strncpy_from_user.o):
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | arch/arm/lib/.strncpy_from_user.o.cmd | bat | gpl-2.0 | 2,265 |
cmd_fs/nls/nls_ascii.o := arm-none-linux-gnueabi-gcc -Wp,-MD,fs/nls/.nls_ascii.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -DMODULE -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(nls_ascii)" -D"KBUILD_MODNAME=KBUILD_STR(nls_ascii)" -c -o fs/nls/.tmp_nls_ascii.o fs/nls/nls_ascii.c
deps_fs/nls/nls_ascii.o := \
fs/nls/nls_ascii.c \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/mmu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/linkage.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/completion.h \
include/linux/rcutree.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/nls.h \
fs/nls/nls_ascii.o: $(deps_fs/nls/nls_ascii.o)
$(deps_fs/nls/nls_ascii.o):
| srinugnt2000/linux-2.6.37 | fs/nls/.nls_ascii.o.cmd | bat | gpl-2.0 | 15,469 |
"C:\Program Files\Java\jdk1.8.0_40\bin\java" -cp . -Djava.rmi.server.codebase=file:///C:/Users/FranciscoJavier/Documents/GitHub/grado_informatica-DSD/P2-previo/simple_directorios_separados/servidor/ -Djava.rmi.server.hostname=localhost -Djava.security.policy=../server.policy Ejemplo
| fblupi/grado_informatica-DSD | P2-previo/simple_directorios_separados/servidor/lanza_servidor.bat | bat | gpl-2.0 | 284 |
setlocal enableextensions enabledelayedexpansion
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: WINDOWS SCRIPT TO DRIVE THE JENKINS BUILDS OF MANTID.
::
:: Notes:
::
:: WORKSPACE & JOB_NAME are environment variables that are set by Jenkins.
:: BUILD_THREADS & PARAVIEW_DIR should be set in the configuration of each slave.
:: CMake, git & git-lfs should be on the PATH
::
:: All nodes currently have PARAVIEW_DIR=5.3.0 and PARAVIEW_NEXT_DIR=5.4.0
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
call cmake.exe --version
echo %sha1%
:: Find the grep tool for later
for /f "delims=" %%I in ('where git') do @set GIT_EXE_DIR=%%~dpI
set GIT_ROOT_DIR=%GIT_EXE_DIR:~0,-4%
set GREP_EXE=%GIT_ROOT_DIR%\usr\bin\grep.exe
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Environment setup
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Source the VS setup script
set VS_VERSION=14
:: 8.1 is backwards compatible with Windows 7. It allows us to target Windows 7
:: when building on newer versions of Windows. This value must be supplied
:: externally and cannot be supplied in the cmake configuration
set SDK_VERSION=8.1
call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 %SDK_VERSION%
set CM_GENERATOR=Visual Studio 14 2015 Win64
set PARAVIEW_DIR=%PARAVIEW_DIR%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Pre-processing steps on the workspace itself
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: If the third party repo exists ensure it is in a clean state
:: as updating errors on previous builds can leave it in a state that
:: cmake is unable to cope with
if EXIST %WORKSPACE%\external\src\ThirdParty\.git (
cd %WORKSPACE%\external\src\ThirdParty
git reset --hard HEAD
git clean -fdx
cd %WORKSPACE%
)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Set up the location for local object store outside of the build and source
:: tree, which can be shared by multiple builds.
:: It defaults to a MantidExternalData directory within the USERPROFILE
:: directory. It can be overridden by setting the MANTID_DATA_STORE environment
:: variable.
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
if NOT DEFINED MANTID_DATA_STORE (
set MANTID_DATA_STORE=%USERPROFILE%\MantidExternalData
)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Check job requirements from the name
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
set CLEANBUILD=
set BUILDPKG=
if not "%JOB_NAME%" == "%JOB_NAME:clean=%" (
set CLEANBUILD=yes
set BUILDPKG=yes
)
:: BUILD_PACKAGE can be provided as a job parameter on the pull requests
if not "%JOB_NAME%" == "%JOB_NAME:pull_requests=%" (
if not "%BUILD_PACKAGE%" == "%BUILD_PACKAGE:true=%" (
set BUILDPKG=yes
) else (
set BUILDPKG=no
)
)
:: Never want package for debug builds
if not "%JOB_NAME%" == "%JOB_NAME:debug=%" (
set BUILDPKG=no
)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Setup the build directory
:: For a clean build the entire thing is removed to guarantee it is clean. All
:: other build types are assumed to be incremental and the following items
:: are removed to ensure stale build objects don't interfere with each other:
:: - build/bin: if libraries are removed from cmake they are not deleted
:: from bin and can cause random failures
:: - build/ExternalData/**: data files will change over time and removing
:: the links helps keep it fresh
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
set BUILD_DIR=%WORKSPACE%\build
if "!CLEANBUILD!" == "yes" (
rmdir /S /Q %BUILD_DIR%
)
if EXIST %BUILD_DIR% (
rmdir /S /Q %BUILD_DIR%\bin %BUILD_DIR%\ExternalData
if "!CLEAN_EXTERNAL_PROJECTS!" == "true" (
rmdir /S /Q %BUILD_DIR%\eigen-download %BUILD_DIR%\eigen-src
rmdir /S /Q %BUILD_DIR%\googletest-download %BUILD_DIR%\googletest-src
rmdir /S /Q %BUILD_DIR%\python-xmlrunner-download %BUILD_DIR%\python-xmlrunner-src
)
) else (
md %BUILD_DIR%
)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Packaging options
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
set PACKAGE_OPTS=
if "%BUILDPKG%" == "yes" (
set PACKAGE_OPTS=-DPACKAGE_DOCS=ON -DCPACK_PACKAGE_SUFFIX=
)
cd %BUILD_DIR%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Clean up any artifacts from last build so that if it fails
:: they don't get archived again.
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
del /Q *.exe
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Check the required build configuration
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
set BUILD_CONFIG=
if not "%JOB_NAME%"=="%JOB_NAME:debug=%" (
set BUILD_CONFIG=Debug
) else (
if not "%JOB_NAME%"=="%JOB_NAME:relwithdbg=%" (
set BUILD_CONFIG=RelWithDbg
) else (
set BUILD_CONFIG=Release
))
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: CMake configuration
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Note the exception: Vates disabled in Debug mode for now.
if not "%JOB_NAME%"=="%JOB_NAME:debug=%" (
set VATES_OPT_VAL=OFF
) else (
set VATES_OPT_VAL=ON
)
call cmake.exe -G "%CM_GENERATOR%" -DCMAKE_SYSTEM_VERSION=%SDK_VERSION% -DCONSOLE=OFF -DENABLE_CPACK=ON -DMAKE_VATES=%VATES_OPT_VAL% -DParaView_DIR=%PARAVIEW_DIR% -DMANTID_DATA_STORE=!MANTID_DATA_STORE! -DENABLE_WORKBENCH=ON -DUSE_PRECOMPILED_HEADERS=ON -DENABLE_FILE_LOGGING=OFF %PACKAGE_OPTS% ..
if ERRORLEVEL 1 exit /B %ERRORLEVEL%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Build step
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
call %BUILD_DIR%\buildenv.bat
msbuild /nologo /m:%BUILD_THREADS% /nr:false /p:Configuration=%BUILD_CONFIG% Mantid.sln
if ERRORLEVEL 1 exit /B %ERRORLEVEL%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Run the tests
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Remove the user properties file just in case anything polluted it
set USERPROPS=bin\%BUILD_CONFIG%\Mantid.user.properties
del %USERPROPS%
call ctest.exe -C %BUILD_CONFIG% -j%BUILD_THREADS% --schedule-random --output-on-failure
if ERRORLEVEL 1 exit /B %ERRORLEVEL%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Run docs-tests if in the special Debug builds
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
echo Note: not running doc-test target as it currently takes too long
:: if not "%JOB_NAME%"=="%JOB_NAME:debug=%" (
:: call cmake.exe --build . --target StandardTestData
:: call cmake.exe --build . --target docs-test
:: )
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Create the install kit if required
:: Disabled while it takes 10 minutes to create & 5-10 mins to archive!
:: Just create the docs to check they work
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
if "%BUILDPKG%" == "yes" (
:: Build offline documentation
msbuild /nologo /nr:false /p:Configuration=%BUILD_CONFIG% docs/docs-qthelp.vcxproj
:: Ignore errors as the exit code of msbuild is wrong here.
:: It always marks the build as a failure even thought the MantidPlot exit
:: code is correct!
echo Building package
cpack.exe -C %BUILD_CONFIG% --config CPackConfig.cmake
)
| ScreamingUdder/mantid | buildconfig/Jenkins/buildscript.bat | bat | gpl-3.0 | 7,892 |
:: Aloha Backups - Copy to Desktop
:: Copyright 2014 Alan Mason
::
:: This file is part of Aloha Backups.
::
:: Aloha Backups is free software: you can redistribute it and/or modify
:: it under the terms of the GNU General Public License as published by
:: the Free Software Foundation, either version 3 of the License, or
:: (at your option) any later version.
::
:: Aloha Backups is distributed in the hope that it will be useful,
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
:: GNU General Public License for more details.
::
:: You should have received a copy of the GNU General Public License
:: along with Aloha Backups. If not, see <http://www.gnu.org/licenses/>.
@echo off
:Init
setlocal EnableDelayedExpansion
title Aloha Backups - Copy to Desktop
color 1b
pushd %~dp0
:GPLStuff
echo Aloha Backups Copyright (C) 2014 Alan Mason
echo This program comes with ABSOLUTELY NO WARRANTY.
echo This is free software, and you are welcome to redistribute it
echo under certain conditions; see COPYING.txt for details.
echo.
:Flags
for %%f in (%*) do (
if /i "%%f" == "/DEBUG" (@echo on)
)
:Main
mkdir "%USERPROFILE%\Desktop\Aloha Backups">nul 2>&1
robocopy . . /L>nul 2>&1
if %errorlevel% equ 9009 (goto Xcopy)
goto Robocopy
:Robocopy
robocopy "Aloha Backups" "%USERPROFILE%\Desktop\Aloha Backups" /e /r:3 /w:10
if %errorlevel% geq 16 (goto SeriousError)
if %errorlevel% geq 8 (goto IncompleteCopy)
goto Done
:Xcopy
xcopy "Aloha Backups" "%USERPROFILE%\Desktop\Aloha Backups" /e /c /h /r /y
if %errorlevel% equ 5 (goto WriteError)
if %errorlevel% equ 2 (goto Abort)
if %errorlevel% geq 1 (goto SeriousError)
goto Done
:IncompleteCopy
color 0c
echo.
echo ERROR: Some files or directories could not be copied.
goto Exit
:SeriousError
color 0c
echo.
echo ERROR: Could not copy any files.
goto Exit
:WriteError
color 0c
echo.
echo ERROR: Disk write error occurred.
goto Exit
:Abort
echo.
echo Aborted.
goto Exit
:Done
echo.
echo Done.
goto Exit
:Exit
echo.
echo Press any key to exit...
pause>nul
popd
color
endlocal
title %cd% | 2Shirt/AlohaBackup | Copy Backups to Desktop.cmd | bat | gpl-3.0 | 2,154 |
@echo off
setlocal
SET ROOT_FOLDER=%~dp0/Build/ThirdParty/
IF EXIST "%ROOT_FOLDER%" GOTO THIRD_PARTY_EXISTS
mkdir "%ROOT_FOLDER%"
:THIRD_PARTY_EXISTS
cd Build/ThirdParty
IF EXIST vcpkg GOTO REPO_EXISTS
git clone https://github.com/Microsoft/vcpkg.git
:REPO_EXISTS
cd vcpkg
git fetch
git checkout ed0df8ecc4ed7e755ea03e18aaf285fd9b4b4a74 .
IF EXIST vcpkg.exe GOTO VCPKG_EXISTS
call .\bootstrap-vcpkg.bat
:VCPKG_EXISTS
.\vcpkg install poco:x64-windows poco:x86-windows
.\vcpkg install protobuf:x64-windows protobuf:x86-windows
.\vcpkg install gtest:x64-windows gtest:x86-windows
.\vcpkg install ctemplate:x64-windows ctemplate:x86-windows
.\vcpkg install boost-optional:x64-windows boost-optional:x86-windows
.\vcpkg install boost-filesystem:x64-windows boost-filesystem:x86-windows
.\vcpkg install boost-algorithm:x64-windows boost-algorithm:x86-windows
.\vcpkg install boost-container:x64-windows boost-container:x86-windows
.\vcpkg install boost-program-options:x64-windows boost-program-options:x86-windows
.\vcpkg install boost-regex:x64-windows boost-regex:x86-windows
.\vcpkg install boost-range:x64-windows boost-range:x86-windows
.\vcpkg install boost-log:x64-windows boost-log:x86-windows
.\vcpkg install boost-property-tree:x64-windows boost-property-tree:x86-windows
.\vcpkg install boost-spirit:x64-windows boost-spirit:x86-windows
.\vcpkg install boost-uuid:x64-windows boost-uuid:x86-windows
.\vcpkg install boost-locale:x64-windows boost-locale:x86-windows
.\vcpkg install boost-iostreams:x64-windows boost-iostreams:x86-windows
.\vcpkg export ^
poco:x64-windows poco:x86-windows ^
protobuf:x64-windows protobuf:x86-windows ^
gtest:x64-windows gtest:x86-windows ^
ctemplate:x64-windows ctemplate:x86-windows ^
boost-optional:x64-windows boost-optional:x86-windows ^
boost-filesystem:x64-windows boost-filesystem:x86-windows ^
boost-algorithm:x64-windows boost-algorithm:x86-windows ^
boost-container:x64-windows boost-container:x86-windows ^
boost-program-options:x64-windows boost-program-options:x86-windows ^
boost-regex:x64-windows boost-regex:x86-windows ^
boost-range:x64-windows boost-range:x86-windows ^
boost-log:x64-windows boost-log:x86-windows ^
boost-property-tree:x64-windows boost-property-tree:x86-windows ^
boost-spirit:x64-windows boost-spirit:x86-windows ^
boost-uuid:x64-windows boost-uuid:x86-windows ^
boost-locale:x64-windows boost-locale:x86-windows ^
boost-iostreams:x64-windows boost-iostreams:x86-windows ^
--nuget --nuget-id=ThirdParty --nuget-version=1.4.0
downloads\tools\nuget-4.6.2-windows\nuget.exe install ThirdParty -Source %ROOT_FOLDER%\vcpkg -OutputDirectory ..\..\..\packages | OpenCppCoverage/OpenCppCoverage | BuildThirdPartyDependencies.bat | bat | gpl-3.0 | 2,657 |
set "VSCMD_START_DIR=%CD%"
set MSSdk=1
set DISTUTILS_USE_SDK=1
set VS90COMNTOOLS="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build"
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
| phoebe-project/phoebe2 | vars_VS2017Community.bat | bat | gpl-3.0 | 281 |
cd C:\_freepascal\pascal_o_r_mapping\tools\jsCarburant\lamw\jsCarburant\bin
C:\lamw\android-sdk-windows\platform-tools\adb install -r jsCarburant-debug.apk
cd ..
pause
| jsuzineau/pascal_o_r_mapping | tools/jsCarburant/lamw/jsCarburant/install.bat | bat | lgpl-2.1 | 168 |
rem copy /y q:\reenigne\8088\xtserver\xtserver\release\xtserver.exe "j:\program files\apache software foundation\apache2.2\cgi-bin"
rem copy /y q:\reenigne\8088\xtserver\xtserver\release\xtqueue.exe "j:\"
rem copy /y q:\reenigne\8088\xtserver\xtserver\release\xtstatus.exe "j:\program files\apache software foundation\apache2.2\cgi-bin"
rem copy /y q:\reenigne\8088\xtserver\xtserver\release\xtcancel.exe "j:\program files\apache software foundation\apache2.2\cgi-bin"
rem copy /y q:\reenigne\8088\xtserver\xtserver\release\xtkill.exe "j:\t\utils"
rem copy /y q:\reenigne\8088\xtserver\index.html "j:\program files\apache software foundation\apache2.2\htdocs"
rem copy /y q:\reenigne\8088\xtserver\stylesheet.css "j:\program files\apache software foundation\apache2.2\htdocs"
copy /y q:\reenigne\8088\xtserver\index.html "q:\work\website\andrew\xtserver"
copy /y q:\reenigne\8088\xtserver\stylesheet.css "q:\work\website\andrew\xtserver"
copy /y q:\reenigne\8088\xtserver\index.html "j:\t\reenigne\8088\xtserver"
copy /y q:\reenigne\8088\xtserver\stylesheet.css "j:\t\reenigne\8088\xtserver"
| reenigne/reenigne | 8088/xtserver/update.bat | bat | unlicense | 1,093 |
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| robinverduijn/gradle | gradlew.bat | bat | apache-2.0 | 2,864 |
@echo off
if "%1" == "" (
@rem The call to setenv.bat can be commented out if necessary.
@call "%~dp0\..\..\bin\setenv.bat"
)
if "%1" == "edition" (
%JAVACMD% -cp %GS_JARS% org.openspaces.maven.support.OutputVersion edition
goto END
)
if "%1" == "XAP" (
%JAVACMD% -cp %GS_JARS% org.openspaces.maven.support.OutputVersion XAP
goto END
)
FOR /F "usebackq tokens=*" %%i IN (`installmavenrep.bat edition`) DO @set EDITION=%%i
FOR /F "usebackq tokens=*" %%i IN (`installmavenrep.bat XAP`) DO @set XAP_VERSION=%%i
echo ""
echo ""
echo "Installing XAP %XAP_VERSION% jars"
echo ""
echo ""
REM GigaSpaces Jars
call mvn install:install-file -DgroupId=com.gigaspaces -DcreateChecksum=true -DartifactId=gs-runtime -Dversion=%XAP_VERSION% -DpomFile=%XAP_HOME%/tools/maven/poms/gs-runtime/pom.xml -Dpackaging=jar -Dfile="%XAP_HOME%/lib/required/gs-runtime.jar"
call mvn install:install-file -DgroupId=com.gigaspaces -DcreateChecksum=true -DartifactId=gs-openspaces -Dversion=%XAP_VERSION% -DpomFile=%XAP_HOME%/tools/maven/poms/gs-openspaces/pom.xml -Dpackaging=jar -Dfile="%XAP_HOME%/lib/required/gs-openspaces.jar" -Dsources="%XAP_HOME%/lib/optional/openspaces/gs-openspaces-sources.jar"
call mvn install:install-file -DgroupId=com.gigaspaces -DcreateChecksum=true -DartifactId=mule-os -Dversion=%XAP_VERSION% -Dpackaging=jar -DpomFile=%XAP_HOME%/tools/maven/poms/mule-os/pom.xml -Dfile="%XAP_HOME%/lib/optional/openspaces/mule-os.jar"
call mvn install:install-file -DgroupId=com.gigaspaces -DcreateChecksum=true -DartifactId=jetty-os -Dversion=%XAP_VERSION% -Dpackaging=jar -DpomFile=%XAP_HOME%/tools/maven/poms/jetty-os/pom.xml -Dfile="%XAP_HOME%/lib/platform/openspaces/gs-openspaces-jetty.jar"
call mvn install:install-file -DgroupId=com.gigaspaces -DcreateChecksum=true -DartifactId=mongo-datasource -Dversion=%XAP_VERSION% -Dpackaging=jar -DpomFile=%XAP_HOME%/tools/maven/poms/mongo-datasource/pom.xml -Dfile="%XAP_HOME%/lib/optional/datasource/mongo/mongo-datasource.jar"
REM Build and install OpenSpaces Maven Plugin
call mvn -f maven-openspaces-plugin/pom.xml install -DcreateChecksum=true
:END
| Gigaspaces/xap-openspaces | tools/maven/installmavenrep.bat | bat | apache-2.0 | 2,106 |
@ECHO OFF
REM Command file for Sphinx documentation
set HTMLPATH=%BUILDDIR%/html
if "%2" == "en" (
set HTMLPATH=%BUILDDIR%/html/%2
)
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees/%2 %SPHINXOPTS% %2
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %HTMLPATH%
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\Nablarch.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Nablarch.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| nablarch/nablarch-document | make.bat | bat | apache-2.0 | 7,070 |
@echo off
:: Copyright 2010-2011 Zuse Institute Berlin
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
:: Script to start a new Scalaris system with an initial node.
set SCRIPTDIR=%~dp0
set ID=0
set NODE_NAME=firstnode
set /a CSPORT=14195+%ID%
set /a YAWSPORT=8000+%ID%
set SCALARIS_ADDITIONAL_PARAMETERS=-scalaris port %CSPORT% -scalaris yaws_port %YAWSPORT%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: set path to erlang installation
set ERLANG="C:\Program Files\erl5.8.4\bin"
:: scalaris configuration parameters
set SCALARIS_COOKIE=chocolate chip cookie
set SCALARISDIR=%SCRIPTDIR%..
set BEAMDIR=%SCALARISDIR%\ebin
set BACKGROUND=
::set BACKGROUND=-detached
set TOKEFLAGS=
:: note: paths passed as strings to erlang applications need to be escaped!
set LOGDIR=%SCALARISDIR:\=\\%\\log
set DOCROOTDIR=%SCALARISDIR:\=\\%\\docroot
set ETCDIR=%SCALARISDIR:\=\\%\\bin
@echo on
pushd %BEAMDIR%
%ERLANG%\erl -setcookie "%SCALARIS_COOKIE%" ^
-pa "%SCALARISDIR%\contrib\yaws\ebin" ^
-pa "%SCALARISDIR%\contrib\log4erl\ebin" ^
-pa "%BEAMDIR%" %TOKEFLAGS% %BACKGROUND% ^
-yaws embedded true ^
-scalaris log_path "\"%LOGDIR%\"" ^
-scalaris docroot "\"%DOCROOTDIR%\"" ^
-scalaris config "\"%ETCDIR%\\scalaris.cfg\"" ^
-scalaris local_config "\"%ETCDIR%\\scalaris.local.cfg\"" ^
-scalaris first true ^
-scalaris start_mgmt_server true ^
-scalaris start_dht_node dht_node ^
-connect_all false -hidden -name %NODE_NAME% ^
%SCALARIS_ADDITIONAL_PARAMETERS% ^
-s scalaris %*
popd
@echo off
| Eonblast/Scalaxis | bin/firstnode.bat | bat | apache-2.0 | 2,118 |
call service.bat stop elasticsearch2
pause
call service.bat remove elasticsearch2
pause | jior/cluster | elasticsearch2/bin/elasticsearch_service_uninstall.bat | bat | apache-2.0 | 87 |
@REM
@REM Copyright 2011-2019 Asakusa Framework Team.
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@echo off
setlocal
if not defined ASAKUSA_HOME (
echo environment variable %%ASAKUSA_HOME%% must be defined
exit /b 1
)
set java_jar=%ASAKUSA_HOME%\vanilla\lib\asakusa-vanilla-bootstrap.jar
set java_props=%ASAKUSA_VANILLA_OPTS%
set java_props=%java_props% -Dhadoop.home.dir=%ASAKUSA_HOME%\hadoop
java %java_props% -jar %java_jar% %*
| ashigeru/asakusafw-compiler | vanilla/runtime/bootstrap/src/main/dist/vanilla/bin/execute.cmd | bat | apache-2.0 | 986 |
@echo off
rem /**
rem * Copyright © 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
rem *
rem * Author: [email protected]
rem */
echo.
echo [???] ????????????????????
echo.
pause
echo.
echo [???] ??????????????????????????????????
echo.
echo [???] ???????????????????
echo.
pause
echo.
echo [???] ????????????????????????
echo.
pause
echo.
cd %~dp0
cd ..
call mvn antrun:run -Pinit-db
cd db
pause | zxk318www/AgricultureWeb | db/init-db.bat | bat | apache-2.0 | 448 |
cd api && java -DDBTYPE=rdbms -jar target/augumented-api.jar db migrate augmented.yml
pause
java -DDBTYPE=rdbms -jar target/augumented-api.jar server augmented.yml
| blstream/AugumentedSzczecin_java | runWithRDBMS.bat | bat | apache-2.0 | 164 |
REM python projections-01-ab.py
REM python projections-02-cs.py
REM python projections-03-bii.py
REM C:/Python27/ArcGIS10.5/python.exe projections-04-project.py
REM C:/Python27/ArcGIS10.5/python.exe projections-05-getstats.py
C:/Python27/ArcGIS10.5/python.exe projections-06-getstats-tim.py
pause | ricardog/raster-project | user-scripts/adrid/biiprojections.bat | bat | apache-2.0 | 296 |
@set CONFIG=mini_meter
@cd /d %~dp0
python meter.py %CONFIG%.json > %CONFIG%.csv
python ..\..\vmdgadgets\spectrum.py --config %CONFIG%.json %1
timeout 10
| Hashi4/vmdgadgets | sample/spectrum/mini_meter.bat | bat | apache-2.0 | 154 |
@echo off
PUSHD "%~dp0"
jake clean
:END
POPD
| Ali-Shaltout/facebook-csharp-sdk | clean.cmd | bat | apache-2.0 | 56 |
@echo off
if "%1" == "yes" goto begin
mshta vbscript:createobject("wscript.shell").run("%~nx0 yes",0)(window.close)&&exit
:begin
cd e-example/e-micro-service/e-example-ms-start-w/build/libs
java -jar e-example-ms-start-w-3.0.1.3.jar | fuhoujun/e | start-micro-service-w.bat | bat | apache-2.0 | 232 |
rem assumes https://www.libsdl.org/release/SDL-devel-1.2.15-VC.zip has been
rem downloaded and extracted to C:\Libraries
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
| kne/conda-recipes | pygame/1.9.2a0/bld.bat | bat | bsd-2-clause | 175 |
cd bootstrap
call make.bat
cd ..\srmake
call make.bat
cd ..\lexgen
call make.bat
cd ..\compiler
call makeself.bat
cd ..\autotests
call run.bat | ldinc/simple-refal-fork | bootstrap.bat | bat | bsd-2-clause | 142 |
@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\SysAdmClientHandbook.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\SysAdmClientHandbook.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
| c3d2/sysadm | docs/client_handbook/make.bat | bat | bsd-2-clause | 7,760 |
@echo off
set dbpath=C:\data\Replication\
set IP=localhost
set replicaSet=secondset
IF NOT EXIST %dbpath% (
mkdir %dbpath%
)
IF NOT EXIST %dbpath%%replicaSet%1 (
mkdir %dbpath%%replicaSet%1
)
IF NOT EXIST %dbpath%%replicaSet%2 (
mkdir %dbpath%%replicaSet%2
)
IF NOT EXIST %dbpath%%replicaSet%3 (
mkdir %dbpath%%replicaSet%3
)
rem for /l %%x in (1, 1, 3) do echo start "%replicaSet%%%x" mongod --dbpath %replicationPath%%replicaSet%%%x --port 1000%x --replSet %replicaSet%%%x --oplogSize 700 --rest
start "%replicaSet%1" mongod --dbpath %dbpath%%replicaSet%1 --port 10004 --replSet %replicaSet% --oplogSize 700 --rest
start "%replicaSet%2" mongod --dbpath %dbpath%%replicaSet%2 --port 10005 --replSet %replicaSet% --oplogSize 700 --rest
start "%replicaSet%3" mongod --dbpath %dbpath%%replicaSet%3 --port 10006 --replSet %replicaSet% --oplogSize 700 --rest
ping -n 20 127.0.0.1 > nul
start "Second Mongo Console" mongo %IP%:10004/admin second_init_replica.js --shell
ping -n 30 127.0.0.1 > nul
| suresh-chaudhari/scripts | mongo/mongoshard/second_setup_replica.bat | bat | bsd-2-clause | 1,009 |
@echo off
REM Windows batch file to approve work on the basis of success files from AWS Mechanical Turk
REM Author: Sreejith Menon
REM Date: 21th May 2016
set /p directory="Enter source drive : "
%directory%:
set /p mTurkPath="Enter AWS CLT bin directory path : "
cd %mTurkPath%
set /p jobPath="Enter jobs directory path : "
call approveWork -successfile %jobPath%\photo_album_51.input.success
call approveWork -successfile %jobPath%\photo_album_52.input.success
call approveWork -successfile %jobPath%\photo_album_53.input.success
call approveWork -successfile %jobPath%\photo_album_54.input.success
call approveWork -successfile %jobPath%\photo_album_55.input.success
call approveWork -successfile %jobPath%\photo_album_56.input.success
call approveWork -successfile %jobPath%\photo_album_57.input.success
call approveWork -successfile %jobPath%\photo_album_58.input.success
call approveWork -successfile %jobPath%\photo_album_59.input.success
call approveWork -successfile %jobPath%\photo_album_60.input.success
PAUSE | smenon8/AnimalWildlifeEstimator | Other/windowsBatchFiles/ApproveWorkBatchExpt2Set6_prod.cmd | bat | bsd-3-clause | 1,025 |
PREP.EXE /OM /FT /SF _TermScrnUpd cknker
if errorlevel == 1 goto done
PROFILE.EXE cknker._xe
if errorlevel == 1 goto done
PREP.EXE /M cknker
if errorlevel == 1 goto done
PLIST.EXE /ST cknker >cknker.lst
:done
| davidrg/ckwin | kermit/k95/prof.bat | bat | bsd-3-clause | 213 |
java -jar selenium-server-standalone.jar -role hub -timeout 230 -browserTimeout 170 -port 4444 | seleniumbase/SeleniumBase | seleniumbase/utilities/selenium_grid/start-grid-hub.bat | bat | mit | 94 |
@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\git_lint.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\git_lint.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
| elfsternberg/pre-commit-stash | docs/make.bat | bat | mit | 6,463 |
fasm test.asm test | devlato/kolibrios-llvm | programs/system/test/trunk/build.bat | bat | mit | 18 |
cmd_net/bluetooth_mgmt/built-in.o := arm-eabi-ld -EL -r -o net/bluetooth_mgmt/built-in.o net/bluetooth_mgmt/bluetooth.o net/bluetooth_mgmt/rfcomm/built-in.o net/bluetooth_mgmt/bnep/built-in.o net/bluetooth_mgmt/hidp/built-in.o
| BigBot96/android_kernel_samsung_espressovzw | net/bluetooth_mgmt/.built-in.o.cmd | bat | gpl-2.0 | 232 |
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:S1_ConnectionTest_CapabilityExchange_NegativeTest_DemandActive_InvalidMCSLength /Logger:trx
pause
| dongruiqing/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPBCGR/S1_ConnectionTest_CapabilityExchange_NegativeTest_DemandActive_InvalidMCSLength.cmd | bat | mit | 268 |
@echo off
cls
packages\FAKE.4.19.0\tools\FAKE.exe build.fsx %* | sbrockway/AutoFixture | build.cmd | bat | mit | 63 |
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Utility\OSharp.Utility.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Core\OSharp.Core.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Data.Entity\OSharp.Data.Entity.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Data.Entity.MySql\OSharp.Data.Entity.MySql.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Web.Client\OSharp.Web.Client.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Web.Mvc\OSharp.Web.Mvc.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Web.WebApi\OSharp.Web.WebApi.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Web.SignalR\OSharp.Web.SignalR.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Autofac.Mvc\OSharp.Autofac.Mvc.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Autofac.WebApi\OSharp.Autofac.WebApi.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Autofac.SignalR\OSharp.Autofac.SignalR.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.App.Local\OSharp.App.Local.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.AutoMapper\OSharp.AutoMapper.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Logging.Log4Net\OSharp.Logging.Log4Net.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Permissions\OSharp.Permissions.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Permissions.OAuth\OSharp.Permissions.OAuth.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
"..\.nuget\NuGet.exe" "pack" "..\src\OSharp.Permissions.OAuth.Client\OSharp.Permissions.OAuth.Client.csproj" -Properties Configuration=Debug -IncludeReferencedProjects
| xielongjiang/osharp | nupkg/pack-osharp.bat | bat | apache-2.0 | 2,446 |
setlocal
cd ..\..\source\JointMilitarySymbologyLibraryCS\jmsml\bin\Debug
jmsml.exe /xe="../../../../../samples/name_domains_values/LightAir_Coded_Domain_Sample" /s="^Air$" /q="Light" /xas="DOMAIN" /+
endlocal | abouffard/joint-military-symbology-xml | samples/name_domains_values/exportLightAir.bat | bat | apache-2.0 | 208 |
#!/bin/bash
echo MSK2WRO.BAT $1 $2
msk2pge -ur $2/$1 $2/$1.x
if test -e $2/$1.sor; then
pge2wro.exe -r $2/$1.sor $2/$1.x
else
pge2wro.exe $2/$1.x
fi
rm -f $2/$1.x
#dos2unix $2/$1.wro
echo ----------------------------------------------------------------
| mrev11/ccc3 | usr/build/solaris/msk2wro.bat | bat | lgpl-2.1 | 280 |
cd ..\..\..
%1 version.mac
| jpflori/mpir | yasm/Mkfiles/vc9/genversion/run.bat | bat | gpl-3.0 | 27 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.