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 |
|---|---|---|---|---|---|
cmd_sound/soc/kirkwood/built-in.o := rm -f sound/soc/kirkwood/built-in.o; arm-linux-gnueabihf-ar rcsD sound/soc/kirkwood/built-in.o
| Dee-UK/D33_KK_Kernel | sound/soc/kirkwood/.built-in.o.cmd | bat | gpl-2.0 | 133 |
@echo off
setlocal
rem Find the script directory
rem %~dsp0 is location of current script under NT
set _REALPATH=%~dp0
call "%_REALPATH%\ghidraSvr" install
pause
| cliffe/SecGen | modules/utilities/unix/audit_tools/ghidra/files/release/server/svrInstall.bat | bat | gpl-3.0 | 175 |
set batdir=%~dp0
rem Search for the buffer executable
if exist "%batdir%buffer\bin\win32\thinkgear2ft.exe" ( set buffexe="%batdir%buffer\bin\win32\thinkgear2ft.exe" )
if exist "%batdir%buffer\win32\thinkgear2ft.exe" ( set buffexe="%batdir%buffer\win32\thinkgear2ft.exe" )
if exist "%batdir%thinkgear2ft.exe" ( set buffexe="%batdir%thinkgear2ft.exe" )
rem start /b "buffer" %buffexe% %1 %2 %3
start /b "Mindwave2FT" /HIGH %buffexe% com6 mindwave.cfg localhost 1972 %* | jadref/buffer_bci | dataAcq/startMindwave.bat | bat | gpl-3.0 | 466 |
@echo off
del /f /q /s *.sdf
rd /s /q .\ipch | toints/FreeJudger | CleanUnused.bat | bat | gpl-3.0 | 44 |
@echo off
set MSBuild=C:\Program Files (x86)\MSBuild\14.0\Bin
set path=%path%;%MSBuild%
@echo on
cd ../src/
msbuild RpcLite.sln /property:Configuration="Release"
copy RpcLite.1.0.1.9.nupkg E:\Users\Chris\Desktop\Topic\C#\NuGet\NuGet.Server\src\NuGet.Server\Packages\
pause | chrishaly/RpcLite | nuget-pack/nuspec/build-package.cmd | bat | lgpl-3.0 | 279 |
@echo off
setlocal
rem
rem Copyright (c) 1999, 2014 Tanuki Software, Ltd.
rem http://www.tanukisoftware.com
rem All rights reserved.
rem
rem This software is the proprietary information of Tanuki Software.
rem You shall use it only in accordance with the terms of the
rem license agreement you entered into with Tanuki Software.
rem http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html
rem
rem Java Service Wrapper general startup script.
rem
rem -----------------------------------------------------------------------------
rem These settings can be modified to fit the needs of your application
rem Optimized for use with version 3.5.24-st of the Wrapper.
rem The base name for the Wrapper binary.
set _WRAPPER_BASE=wrapper
rem The directory where the Wrapper binary (.exe) file is located, this can be
rem either a absolute or relative path. If the path contains any special characters,
rem please make sure to quote the variable.
set _WRAPPER_DIR=
rem The name and location of the Wrapper configuration file. This will be used
rem if the user does not specify a configuration file as the first parameter to
rem this script. It will not be possible to specify a configuration file on the
rem command line if _PASS_THROUGH is set.
rem If a relative path is specified, please note that the location is based on the
rem location.
set _WRAPPER_CONF_DEFAULT="../conf/%_WRAPPER_BASE%.conf"
rem Makes it possible to override the Wrapper configuration file by specifying it
rem as the first parameter.
rem set _WRAPPER_CONF_OVERRIDE=true
rem Note that it is only possible to pass parameters through to the JVM when
rem installing the service, or when running in a console.
rem Do not modify anything beyond this point
rem -----------------------------------------------------------------------------
rem
rem Resolve the real path of the wrapper.exe
rem For non NT systems, the _REALPATH and _WRAPPER_CONF values
rem can be hard-coded below and the following test removed.
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem Find the application home.
rem if no path path specified do the default action
IF not DEFINED _WRAPPER_DIR goto dir_undefined
set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR:"=%"
if not "%_WRAPPER_DIR:~-2,1%" == "\" set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR_QUOTED:"=%\"
rem check if absolute path
if "%_WRAPPER_DIR_QUOTED:~2,1%" == ":" goto absolute_path
if "%_WRAPPER_DIR_QUOTED:~1,1%" == "\" goto absolute_path
rem everythig else means relative path
set _REALPATH="%~dp0%_WRAPPER_DIR_QUOTED:"=%"
goto pathfound
:dir_undefined
rem Use a relative path to the wrapper %~dp0 is location of current script under NT
set _REALPATH="%~dp0"
goto pathfound
:absolute_path
rem Use an absolute path to the wrapper
set _REALPATH="%_WRAPPER_DIR_QUOTED:"=%"
:pathfound
rem
rem Decide on the specific Wrapper binary to use (See delta-pack)
rem
if "%PROCESSOR_ARCHITEW6432%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="IA64" goto ia64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-32.exe"
goto search
:amd64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-64.exe"
goto search
:ia64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-ia-64.exe"
goto search
:search
set _WRAPPER_EXE="%_WRAPPER_L_EXE:"=%"
if exist %_WRAPPER_EXE% goto conf
set _WRAPPER_EXE="%_REALPATH:"=%%_WRAPPER_BASE%.exe"
if exist %_WRAPPER_EXE% goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_WRAPPER_L_EXE%
echo %_WRAPPER_EXE%
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
if not [%_WRAPPER_CONF_OVERRIDE%]==[] (
set _WRAPPER_CONF="%~f1"
if not [%_WRAPPER_CONF%]==[""] (
shift
goto :startup
)
)
set _WRAPPER_CONF="%_WRAPPER_CONF_DEFAULT:"=%"
rem
rem Start the Wrapper
rem
:startup
rem Collect an parameters
:parameters
set _PARAMETERS=%_PARAMETERS% %1
shift
if not [%1]==[] goto :parameters
if [%_PASS_THROUGH%]==[] (
%_WRAPPER_EXE% -r %_WRAPPER_CONF%
) else (
%_WRAPPER_EXE% -r %_WRAPPER_CONF% -- %_PARAMETERS%
)
if not errorlevel 1 goto :eof
pause
| thefinder/logmonitor | logmonitor-server/src/server/bin/UninstallApp.bat | bat | apache-2.0 | 4,208 |
rem %1 argument is used for graphics. It can be cg or cairo
rem %2 argument is used for network. It can be cf or curl
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\dtoa"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\text"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\unicode"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\unicode\icu"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport"
xcopy /y /d "%ProjectDir%..\config.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj\WebCore\DerivedSources\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\accessibility\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\accessibility\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\loader\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\loader\appcache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\loader\archive\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\loader\archive\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\loader\cache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\loader\icon\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\history\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\history\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\html\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\html\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\notifications\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\css\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\cf\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\transforms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\ca\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\ca\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\win\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\graphics\opentype\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\text\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\text\transcoder\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\network\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\network\%2\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\sql\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\platform\cairo\cairo\src\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\bindings\js\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\page\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\page\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\page\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\bridge\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\bridge\jsc\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\plugins\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\plugins\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\rendering\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\rendering\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\rendering\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\editing\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\dom\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\xml\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\xml\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\svg\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\svg\properties\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\storage\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\websockets\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\workers\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\masm\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\profiler\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\heap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\wtf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\wtf\dtoa\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\dtoa"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\wtf\text\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\text"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\wtf\unicode\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\unicode"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\wtf\unicode\icu\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\unicode\icu"
xcopy /y /d "%ProjectDir%..\ForwardingHeaders\yarr\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr"
xcopy /y /d "%ProjectDir%..\testing\js\WebCoreTestSupport.h" "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport"
if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
| Treeeater/WebPermission | WebCore.vcproj/copyForwardingHeaders.cmd | bat | bsd-2-clause | 8,160 |
/******************************************************************************
*
* light_isl29023_ccs.cmd - CCS linker configuration file for light_isl29023.
*
* Copyright (c) 2013-2017 Texas Instruments Incorporated. All rights reserved.
* Software License Agreement
*
* Texas Instruments (TI) is supplying this software for use solely and
* exclusively on TI's microcontroller products. The software is owned by
* TI and/or its suppliers, and is protected under applicable copyright
* laws. You may not combine this software with "viral" open-source
* software in order to form a larger program.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
* NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
* NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
* CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
* DAMAGES, FOR ANY REASON WHATSOEVER.
*
* This is part of revision 2.1.4.178 of the EK-TM4C123GXL Firmware Package.
*
*****************************************************************************/
--retain=g_pfnVectors
/* The following command line options are set as part of the CCS project. */
/* If you are building using the command line, or for some reason want to */
/* define them here, you can uncomment and modify these lines as needed. */
/* If you are using CCS for building, it is probably better to make any such */
/* modifications in your CCS project and leave this file alone. */
/* */
/* --heap_size=0 */
/* --stack_size=256 */
/* --library=rtsv7M3_T_le_eabi.lib */
/* The starting address of the application. Normally the interrupt vectors */
/* must be located at the beginning of the application. */
#define APP_BASE 0x00000000
#define RAM_BASE 0x20000000
/* System memory map */
MEMORY
{
/* Application stored in and executes from internal flash */
FLASH (RX) : origin = APP_BASE, length = 0x00040000
/* Application uses internal RAM for data */
SRAM (RWX) : origin = 0x20000000, length = 0x00008000
}
/* Section allocation in memory */
SECTIONS
{
.intvecs: > APP_BASE
.text : > FLASH
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.vtable : > RAM_BASE
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}
__STACK_TOP = __stack + 1024;
| jhnphm/xbs_xbd | platforms/ek-tm4c129exl_16mhz/hal/tivaware/examples/boards/ek-tm4c123gxl-boostxl-senshub/light_isl29023/light_isl29023_ccs.cmd | bat | gpl-3.0 | 2,810 |
@echo off
rem quotes are required for correct handling of path with spaces
call %~dp0../../bin/environment.bat
rem default java home
set wrapper_home=%~dp0/..
rem default java exe for running the wrapper
rem note this is not the java exe for running the application. the exe for running the application is defined in the wrapper configuration file
set java_exe="java.exe"
set javaw_exe="javaw.exe"
if defined java_path set java_exe=%java_path%
if defined javaw_path set javaw_exe=%javaw_path%
rem location of the wrapper jar file. necessary lib files will be loaded by this jar. they must be at <wrapper_home>/lib/...
set wrapper_jar="%wrapper_home%/wrapper.jar"
set wrapper_app_jar="%wrapper_home%/wrapperApp.jar"
rem setting java options for wrapper process. depending on the scripts used, the wrapper may require more memory.
set wrapper_java_options=-Xmx30m -Djna_tmpdir="%wrapper_home%/tmp" -Djava.net.preferIPv4Stack=true
rem wrapper bat file for running the wrapper
set wrapper_bat="%wrapper_home%/bat/wrapper.bat"
set wrapperw_bat="%wrapper_home%/bat/wrapperW.bat"
rem configuration file used by all bat files
set conf_file="%wrapper_home%/conf/wrapper.windows.conf"
rem default configuration used in genConfig
set conf_default_file="%wrapper_home%/conf/wrapper.conf.default"
| fastcat-co/analytics | production/service/bat/setenv.bat | bat | lgpl-2.1 | 1,325 |
curl -u user:password -H "Content-type: application/xml" -H "Accept: application/xml" -d@%1 http://localhost:8080/sla-service/templates -X POST | Atos-FiwareOps/sla-framework | sla-core/samples/templateCreateXML.bat | bat | apache-2.0 | 143 |
cd /d %~dp0
cd ../..
start sbt eclipse
pause
| tomaszacer/seldon | others/bat/sbt-eclipse.bat | bat | apache-2.0 | 45 |
@echo // Copyright (C) 1996-2011 Markus F.X.J. Oberhumer
@echo //
@echo // Windows 32-bit
@echo // Portland Group PGI C/C++
@echo //
@call b\prepare.bat
@if "%BECHO%"=="n" echo off
set BLIB=lib%BNAME%.a
set CC=pgcc
set CF=-fast %CFI% %CFASM%
set LF=%BLIB% -lwinmm
%CC% %CF% -c src\*.c
@if errorlevel 1 goto error
ar rcs %BLIB% *.o asm/i386/obj/win32/*.obj
@if errorlevel 1 goto error
%CC% %CF% -o dict.exe examples\dict.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -o lzopack.exe examples\lzopack.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -o precomp.exe examples\precomp.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -o precomp2.exe examples\precomp2.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -o simple.exe examples\simple.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -o lzotest.exe lzotest\lzotest.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iinclude\lzo minilzo\testmini.c minilzo\minilzo.c
@if errorlevel 1 goto error
@call b\done.bat
@goto end
:error
@echo ERROR during build!
:end
@call b\unset.bat
| zarboz/XBMC-PVR-mac | tools/darwin/depends/liblzo2/B/win32/pgi.bat | bat | gpl-2.0 | 1,066 |
:: Licensed to the Apache Software Foundation (ASF) under one
:: or more contributor license agreements. See the NOTICE file
:: distributed with this work for additional information
:: regarding copyright ownership. The ASF licenses this file
:: to you 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.
@ECHO OFF
SET script="%~dp0version"
IF EXIST %script% (
node %script% %*
) ELSE (
ECHO.
ECHO ERROR: Could not find 'version' script in 'cordova' folder, aborting...>&2
EXIT /B 1
)
| soulfly/guinea-pig-smart-bot | node_modules/quickblox/samples/cordova/video_chat/platforms/ios/cordova/version.bat | bat | apache-2.0 | 1,018 |
node build.js --debug | sjsafranek/gospatial | static/osmbuildings/build/build-debug.cmd | bat | mit | 21 |
@ECHO OFF
::: -- Prepare the processor --
@SETLOCAL ENABLEEXTENSIONS
@SETLOCAL ENABLEDELAYEDEXPANSION
:: -- Version History --
:: Version YYYYMMDD Author Description
SET "version=0.0.1" &:20120729 Phillip Clark initial version
SET "title=Build (%~nx0) - %version%"
TITLE %title%
CALL "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
SET "DISPOSITION=DISPOSITION UNKNOWN"
SET "UNIQUE=unknown"
CALL:make_timestamp UNIQUE
IF "%~1" NEQ "" (
CALL :ParseCommandLineArg "%~1"
)
IF %ERRORLEVEL% NEQ 0 (
ECHO.Invalid argument: %~1
CALL:PrintUsage
GOTO :FAIL
)
IF "%~2" NEQ "" (
CALL :ParseCommandLineArg "%~2"
)
IF %ERRORLEVEL% NEQ 0 (
ECHO.Invalid argument: %~2
CALL:PrintUsage
GOTO :FAIL
)
IF "%~3" NEQ "" (
CALL :ParseCommandLineArg "%~3"
)
IF %ERRORLEVEL% NEQ 0 (
ECHO.Invalid argument: %~3
CALL:PrintUsage
GOTO :FAIL
)
IF "%CFG%" == "" (
SET "CFG=Debug"
)
IF "%PLT%" == "" (
SET PLT="AnyCPU"
)
IF "%VRB%" == "" (
SET VRB="detailed"
)
FOR %%I IN (*.csproj) DO CALL :build_csproj "%%~nxI"
SET "DISPOSITION=Success!"
GOTO:EXIT
:build_csproj
SET F="%~1"
ECHO.%~p1
ECHO. %~1
SET "CL=msbuild %F% /p:Configuration=%CFG%;Platform=%PLT% /t:Build /v:%VRB% > build_%UNIQUE%.log"
%CL%
IF %ERRORLEVEL% NEQ 0 (
ECHO.Build failed...
GOTO:FAIL
)
GOTO:EOF
:ParseCommandLineArg -- Parses a command line argument and sets the corresponding variable
:: -- %~1: the argument
SETLOCAL
SET C=%~1
SET A=%C:~0,3%
SET V=%C:~3%
SET "G="
IF "%A%" == "/p:" (
SET "G=PLT"
) ELSE IF "%A%" == "/P:" (
SET "G=PLT"
) ELSE IF "%A%" == "/c:" (
SET "G=CFG"
) ELSE IF "%A%" == "/C:" (
SET "G=CFG"
) ELSE IF "%A%" == "/v:" (
SET "G=VRB"
) ELSE IF "%A%" == "/V:" (
SET "G=VRB"
) ELSE (
VERIFY OTHER 2> NUL
)
ENDLOCAL&SET "%G%=%V%"
GOTO:EOF
:make_timestamp -- creates a timestamp and returns it's value in the variable given
:: -- %~1: reference to a variable to hold the timestamp
FOR /f "tokens=2-8 delims=/:. " %%A IN ("%date%:%time: =0%") DO SET "%~1=%%C%%A%%B_%%D%%E%%F%%G"
GOTO:EOF
:FAIL
:: -- %1: the current log file
:: -- %2: a failure message
:: CALL:log %~1 "%~2"
SET "DISPOSITION=FAILED"
COLOR 47
GOTO :EXIT
:EXIT -- Displays the disposition and exits.
ECHO.
SET /P WAIT_RESULT=Script complete: %DISPOSITION% (enter to continue)
GOTO:EOF
| flitbit-org/fbwireup | FlitBit.Wireup/build-debug.cmd | bat | mit | 2,338 |
echo off
SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd
echo on
"%JAVA_HOME%\bin\java" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.trends.GetLocationTrends %*
ENDLOCAL
| egeyman/Final-Project | twitter4j-4.0.3/bin/trends/getLocationTrends.cmd | bat | apache-2.0 | 188 |
@echo off
REM This file is part of PHP Mess Detector.
REM
REM Copyright (c) 2008-2012, Manuel Pichler <mapi@phpmd.org>.
REM All rights reserved.
REM
REM Redistribution and use in source and binary forms, with or without
REM modification, are permitted provided that the following conditions
REM are met:
REM
REM * Redistributions of source code must retain the above copyright
REM notice, this list of conditions and the following disclaimer.
REM
REM * Redistributions in binary form must reproduce the above copyright
REM notice, this list of conditions and the following disclaimer in
REM the documentation and/or other materials provided with the
REM distribution.
REM
REM * Neither the name of Manuel Pichler nor the names of his
REM contributors may be used to endorse or promote products derived
REM from this software without specific prior written permission.
REM
REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
REM FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
REM COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
REM INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
REM BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
REM LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
REM CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
REM LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
REM ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
REM POSSIBILITY OF SUCH DAMAGE.
REM
REM $Id$
REM
if "%PHPBIN%" == "" set PHPBIN=@php_bin@
if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH
GOTO RUN
:USE_PEAR_PATH
set PHPBIN=%PHP_PEAR_PHP_BIN%
:RUN
"%PHPBIN%" "@bin_dir@\phpmd" %*
| drBenway/siteResearch | vendor/phpmd/phpmd/src/bin/phpmd_1.bat | bat | mit | 1,929 |
@echo off
rem Ensure this Node.js and npm are first in the PATH
set "PATH=%APPDATA%\npm;%~dp0;%PATH%"
setlocal enabledelayedexpansion
pushd "%~dp0"
rem Figure out the Node.js version.
set print_version=.\node.exe -p -e "process.versions.node + ' (' + process.arch + ')'"
for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v
rem Print message.
if exist npm.cmd (
echo Your environment has been set up for using Node.js !version! and npm.
) else (
echo Your environment has been set up for using Node.js !version!.
)
popd
endlocal
rem If we're in the Node.js directory, change to the user's home dir.
if "%CD%\"=="%~dp0" cd /d "%HOMEDRIVE%%HOMEPATH%"
| MTASZTAKI/ApertusVR | plugins/languageAPI/jsAPI/3rdParty/nodejs/10.1.0/source/tools/msvs/nodevars.bat | bat | mit | 678 |
cmd_net/netlink/built-in.o := arm-eabi-ld -EL -r -o net/netlink/built-in.o net/netlink/af_netlink.o net/netlink/genetlink.o
| R-M-S/RMS_DragunKernel_V.11-MAX-9-3-2012_3.0.42 | net/netlink/.built-in.o.cmd | bat | gpl-2.0 | 129 |
cmd_/projects/toolchains_build/buildroot-2012.02-brcm/output/toolchain/linux/include/sound/.install := perl scripts/headers_install.pl /projects/toolchains_build/buildroot-2012.02-brcm/output/toolchain/linux-2.6.36.4/include/sound /projects/toolchains_build/buildroot-2012.02-brcm/output/toolchain/linux/include/sound arm asequencer.h asound.h asound_fm.h emu10k1.h hdsp.h hdspm.h sb16_csp.h sfnt_info.h; perl scripts/headers_install.pl /projects/toolchains_build/buildroot-2012.02-brcm/output/toolchain/linux-2.6.36.4/include/sound /projects/toolchains_build/buildroot-2012.02-brcm/output/toolchain/linux/include/sound arm ; touch /projects/toolchains_build/buildroot-2012.02-brcm/output/toolchain/linux/include/sound/.install
| ghmajx/asuswrt-merlin | release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/usr/include/sound/..install.cmd | bat | gpl-2.0 | 728 |
mcs cwd.cs -r:"C:\Program Files\Common Files\Gtk#\gtk-sharp.dll" -r:"C:\Program Files\Common Files\Gtk#\glade-sharp.dll" -r:"C:\Program Files\Common Files\Gtk#\glib-sharp.dll" | geoperez/hwd | Linux Projects/CWDLinux/make.cmd | bat | mit | 175 |
@ECHO OFF
SET CLASSPATH=.;lib\commons-lang-2.4.jar;lib\commons-logging-1.1.1.jar;lib\ezmorph-1.0.6.jar;lib\json-lib-0.9.jar;lib\commons-beanutils-1.8.2.jar
javac -d . HttpApi.java
jar cvf HttpApi.jar com/test/HttpApi.class
SET CLASSPATH=.;lib\commons-lang-2.4.jar;lib\commons-logging-1.1.1.jar;lib\ezmorph-1.0.6.jar;lib\json-lib-0.9.jar;lib\commons-beanutils-1.8.2.jar;HttpApi.jar
javac test.java
java test
PAUSE | aodianyunGroup/financeApiDoc | sdk/java/test.bat | bat | mit | 413 |
cd ..
node_modules\.bin\gulp.cmd watch
| Andun/Lend-Proba | exec/gulp_watch.bat | bat | mit | 39 |
..\NuGet.exe Push bin\Package\Eos.Utils.*.nupkg
pause | mr-bt/Eos | Eos.Utils/Nuget_push.bat | bat | mit | 54 |
cmd_fs/signalfd.o := gcc -Wp,-MD,fs/.signalfd.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(signalfd)" -D"KBUILD_MODNAME=KBUILD_STR(signalfd)" -c -o fs/signalfd.o fs/signalfd.c
deps_fs/signalfd.o := \
fs/signalfd.c \
include/linux/file.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.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/poll.h \
include/asm/poll.h \
include/asm-generic/poll.h \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/paravirt.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/cmov.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
include/asm/alternative.h \
include/asm/asm.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/linux/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/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/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/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) \
$(wildcard include/config/highmem.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/seqlock.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/mutex.h \
$(wildcard include/config/debug/mutexes.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/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/mmu.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/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/linux/rcuclassic.h \
include/linux/namei.h \
include/linux/path.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/timex.h \
include/asm/timex.h \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/x86/rdc321x.h) \
include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/completion.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
include/asm-generic/signal.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/asm/seccomp.h \
include/asm/seccomp_32.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/asm/unistd_32.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm/uaccess.h \
include/asm/uaccess_32.h \
$(wildcard include/config/x86/intel/usercopy.h) \
$(wildcard include/config/x86/wp/works/ok.h) \
include/linux/anon_inodes.h \
include/linux/signalfd.h \
$(wildcard include/config/signalfd.h) \
include/linux/syscalls.h \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/v850.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
fs/signalfd.o: $(deps_fs/signalfd.o)
$(deps_fs/signalfd.o):
| namgk/kernel-tut | fs/.signalfd.o.cmd | bat | gpl-2.0 | 16,606 |
cmd_drivers/video/broadcom/bmem_wrapper/built-in.o := /opt/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/video/broadcom/bmem_wrapper/built-in.o drivers/video/broadcom/bmem_wrapper/bmem_wrapper.o
| sembre/kernel_totoro_update3 | common/drivers/video/broadcom/bmem_wrapper/.built-in.o.cmd | bat | gpl-2.0 | 204 |
cmd_sound/pci/trident/built-in.o := rm -f sound/pci/trident/built-in.o; arm-linux-androideabi-ar rcsD sound/pci/trident/built-in.o
| hch-im/nexus4_kernel | sound/pci/trident/.built-in.o.cmd | bat | gpl-2.0 | 132 |
@echo off
REM Setup for compiling with GNU C compiler
if .%CHECKED%==.1 goto checked_build
set LIB=%SCITECH_LIB%\LIB\release\win32\gcc2
echo Release build enabled.
goto setvars
:checked_build
set LIB=%SCITECH_LIB%\LIB\debug\win32\gcc2
echo Checked debug build enabled.
goto setvars
:setvars
set INCLUDE=include;%SCITECH%\include;%PRIVATE%\include
set MAKESTARTUP=%SCITECH%\makedefs\gcc_win32.mk
call clrvars.bat
set USE_WIN32=1
set GCC_LIBBASE=gcc2
PATH %SCITECH_BIN%;%GCC_PATH%\NATIVE\BIN;%DEFPATH%
echo GCC 2.9.x 32-bit Win32 console compilation environment set up
| OS2World/DEV-UTIL-SNAP | bin-win32/gcc2-c32.bat | bat | gpl-2.0 | 572 |
cmd_drivers/mmc/core/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/mmc/core/built-in.o drivers/mmc/core/mmc_core.o
| sleshepic/epic_touch_kernel | drivers/mmc/core/.built-in.o.cmd | bat | gpl-2.0 | 173 |
@echo off
:: CONFIGURATIONS FOR YOUR SETUP HERE.
::
:: DO NOT LEAVE SPACES BETWEEN = AND EXTENSIONS.
:: EXAMPLE: EPOCH=@DayZ_Epoch
::
:: Your Arma 2 Operation Arrowhead directory goes here.
set A2OA=C:\Program Files (x86)\Steam\steamapps\common\Arma 2 Operation Arrowhead
:: Your Arma 2 directory goes here.
set A2=C:\Program Files (x86)\Steam\steamapps\common\Arma 2
:: Your DayZ mods folder names go here.
set EPOCH=@DayZ_Epoch1051
set OVERWATCH=@DayzOverwatch
set ORIGINS=@DayzOrigins179
:: Your Map folder names go here.
set JADE=@Panthera;@jade
:: END CONFIGURATIONS, EDITING ANYTHING BELOW MIGHT BREAK THE LAUNCHER.
color 0c
title RVN Launcher V0.2
:::
::: .--. .-'. .--. .--. .--. .--. .`-. .--.
::: :::::.\::::::::.\::::::::.\::::::::.\::::::::.\::::::::.\::::::::.\::::::::.\
:::' `--' `.-' `--' `--' `--' `-.' `--' `
:::
::: _ _ _ _ _ __ __
::: | | | | | |_(_)_ __ __ _ \ \ / /__ __ _ _ __ ___ _ _ ___
::: | |_| | | _| | ' \/ _` | \ \/\/ / -_) _` | '_ \/ _ \ ' \(_-<
::: \___/|_|\__|_|_|_|_\__,_| \_/\_/\___\__,_| .__/\___/_||_/__/
::: |_|
:::
::: DayZ Launcher by Cyber
::: *DON'T FORGET TO CONFIGURE*
:::
::: .--. .-'. .--. .--. .--. .--. .`-. .--.
::: :::::.\::::::::.\::::::::.\::::::::.\::::::::.\::::::::.\::::::::.\::::::::.\
:::' `--' `.-' `--' `--' `--' `-.' `--' `
:::
for /f "delims=: tokens=*" %%A in ('findstr /b ::: "%~f0"') do @echo(%%A
ECHO.
ECHO A2: %A2%
ECHO A2OA: %A2OA%
ECHO Epoch: %EPOCH% / Overwatch: %OVERWATCH% / Origins: %ORIGINS%
ECHO.
:restart
SET /p server="Select your server. (1 = Tavi, 2 = Taki, 3 = Napf, 4 = Jade Groove)"
ECHO.
IF /i "%server%" == "1" GOTO tavi
IF /i "%server%" == "2" GOTO taki
IF /i "%server%" == "3" GOTO napf
IF /i "%server%" == "4" GOTO jade
ECHO Invalid server choice, please try again.
ECHO.
GOTO restart
:tavi
ECHO.
ECHO Joining Ultima Weapons Online Taviana...
set CI=24.255.57.159
set CP=10000
start "" "%A2OA%\ArmA2OA_BE.exe" 0 0 -skipintro -mod=%ORIGINS%;%OVERWATCH%;%EPOCH% -noSplash -noPause -noFilePatching -world=empty -connect=%CI% -port=%CP% "-mod=%A2%;expansion;"
GOTO end
:taki
ECHO.
ECHO Joining Ultima Weapons Online Takistan...
set CI=24.255.57.159
set CP=20000
start "" "%A2OA%\ArmA2OA_BE.exe" 0 0 -skipintro -mod=%ORIGINS%;%OVERWATCH%;%EPOCH% -noSplash -noPause -noFilePatching -world=empty -connect=%CI% -port=%CP% "-mod=%A2%;expansion;"
GOTO end
:napf
ECHO.
ECHO Joining Ultima Weapons Online Napf...
set CI=24.255.57.159
set CP=50000
start "" "%A2OA%\ArmA2OA_BE.exe" 0 0 -skipintro -mod=%ORIGINS%;%OVERWATCH%;%EPOCH% -noSplash -noPause -noFilePatching -world=empty -connect=%CI% -port=%CP% "-mod=%A2%;expansion;"
GOTO end
:jade
ECHO.
ECHO Joining Ultima Weapons Online Jade Groove...
set CI=24.255.57.159
set CP=55000
start "" "%A2OA%\ArmA2OA_BE.exe" 0 0 -skipintro -mod=%JADE%;%ORIGINS%;%OVERWATCH%;%EPOCH% -noSplash -noPause -noFilePatching -world=empty -connect=%CI% -port=%CP% "-mod=%A2%;expansion;"
GOTO end
:end
ECHO.
cls
ECHO.
ECHO Thanks for playing on the Ultima Weapons Universe servers!
timeout 5
EXIT | Ultima-weapon/UwU_A2_Servers | UwU Launcher.bat | bat | gpl-3.0 | 3,470 |
@echo off
echo "*** Starting new TickGenerator"
java -server -cp "../libs/*" -Xms3g -Xmx3g -XX:MaxPermSize=512m -Xmn2g -Xss128k -XX:+UseParallelGC -XX:ParallelGCThreads=20 -XX:+UseParallelOldGC -XX:+AggressiveOpts -XX:+DisableExplicitGC org.mot.common.util.TickGenerator -c ../conf %1 %2 %3 %4 %5 %6 %7 %8 %9
| sgrotz/myopentrader | MyOpenTraderBin/bin/runTickGenerator.bat | bat | gpl-3.0 | 312 |
@echo off
C:\wildfly-10.0.0.Final\bin\standalone.bat --debug --server-config=standalone-full.xml | jeronimovf/contavinculada | src/main/resources/META-INF/standalone-up-debug.bat | bat | gpl-3.0 | 97 |
! Test case that used to fail before with Z(3,5) mapping to NREG showing up extraneously
add -name Z(1) -region=MREG
add -name Z(1,2:) -region=NREG
add -name Z(1:3) -region=NREG
add -name Z(3) -region=NREG
add -name Z(3,5,6) -region=NREG
add -name Z(3,5,6:) -region=OREG
exit
add -region MREG -dyn=MREG -stdnullcoll
add -segment MREG -file=MREG.dat
add -region NREG -dyn=NREG -stdnullcoll
add -segment NREG -file=NREG.dat
add -region OREG -dyn=OREG -stdnullcoll
add -segment OREG -file=OREG.dat
change -region DEFAULT -stdnullcoll
show -name
show -map
| nars1/YottaDBtest | spanning_regions/inref/gde13.cmd | bat | agpl-3.0 | 568 |
@echo off
"C:\Program Files\NAnt\bin\NAnt.exe" | gwu-libraries/srrs-mobile | nant.bat | bat | lgpl-2.1 | 46 |
REM
REM \author Zachary Wartell
REM
REM msvs_set_install_paths INSTALL_PARENT_DIR MSVS_BITS MSVS_VERSION
REM
REM
set INSTALL_PARENT_DIR=%1
set MSVS_BITS=%2
set MSVS_VERSION=%3
REM use string name convention used by MSVS macro $(Platform)
if "%MSVS_BITS%"=="64" (
set MSVS_PLATFORM=x64
) else if "%MSVS_BITS%"=="32" (
set MSVS_PLATFORM=win32
)
set INSTALL_DIR=%INSTALL_PARENT_DIR%\install\MSVS_%MSVS_VERSION%\%MSVS_PLATFORM%\
set INSTALL_BIN_DIR=%INSTALL_DIR%bin
set INSTALL_LIB_DIR=%INSTALL_DIR%lib
set INSTALL_INC_DIR=%INSTALL_DIR%include
| ZacharyWartell/GumNTape_Build | common/v1/msvs_set_install_paths.bat | bat | lgpl-3.0 | 553 |
@echo off
REM @author Nils Christian Ehmke
setlocal enabledelayedexpansion
SET JAVAARGS=-Dlog4j.configuration=./log4j.properties -Xms56m -Xmx1024m
SET MAINCLASSNAME=kieker.tools.bridge.cli.CLIServerMain
REM Get the directory of this file and change the working directory to it.
cd %~dp0
REM Set every variable we will need for the execution.
SET BINDIR=%cd%
REM Now start the tool, but don't forget to deliver the parameters.
java %JAVAARGS% -cp "%BINDIR%\..\lib\*";"%BINDIR%\..\build\libs\*";"%BINDIR%\..\examples\JavaEEServletContainerExample\jetty\lib\*";"%BINDIR%" %MAINCLASSNAME% %*
REM Don't close the window immediately.
@echo on
@PAUSE | HaStr/kieker | bin/kieker-data-bridge.bat | bat | apache-2.0 | 651 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\climate-cmscloud.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\climate-cmscloud.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| coecms/climate-cms | doc/make.bat | bat | apache-2.0 | 5,116 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem sandbox 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 SANDBOX_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
@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%\lib\sandbox.jar
@rem Execute sandbox
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %SANDBOX_OPTS% -classpath "%CLASSPATH%" HelloWorld %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable SANDBOX_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%SANDBOX_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| Doomkrat/Java_Barantsev-no-desctop- | sandbox/build/scripts/sandbox.bat | bat | apache-2.0 | 2,186 |
cmd_networking/ipcalc.o := gcc -Wp,-MD,networking/.ipcalc.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-builtin-printf -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ipcalc)" -D"KBUILD_MODNAME=KBUILD_STR(ipcalc)" -c -o networking/ipcalc.o networking/ipcalc.c
deps_networking/ipcalc.o := \
networking/ipcalc.c \
$(wildcard include/config/feature/ipcalc/fancy.h) \
$(wildcard include/config/feature/ipcalc/long/options.h) \
/usr/include/stdc-predef.h \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/verbose.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdbool.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/paths.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/libgen.h \
/usr/include/poll.h \
/usr/include/x86_64-linux-gnu/sys/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll2.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/x86_64-linux-gnu/bits/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/mntent.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/utmp.h \
/usr/include/x86_64-linux-gnu/bits/utmp.h \
/usr/include/utmpx.h \
/usr/include/x86_64-linux-gnu/bits/utmpx.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
networking/ipcalc.o: $(deps_networking/ipcalc.o)
$(deps_networking/ipcalc.o):
| rennman/copfvtci | build/busybox-1.25.1/networking/.ipcalc.o.cmd | bat | apache-2.0 | 10,324 |
rem NOTE: this batch file is to be run in a Visual Studio command prompt
rem Delete old files
del *.obj
del *.ilk
del *.exe
del *.pdb
rem Compile files into .obj files in current directory
cl /I"..\..\..\testcasesupport" /W3 /MT /GS /RTC1 /bigobj /EHsc /nologo /c main.cpp CWE*.cpp CWE*.c ..\..\..\testcasesupport\io.c ..\..\..\testcasesupport\std_thread.c
rem Link all .obj file into a exe
cl /FeCWE122_s07 *.obj /I"..\..\..\testcasesupport" /W3 /MT /GS /RTC1 /bigobj /EHsc /nologo
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE122_Heap_Based_Buffer_Overflow/s07/CWE122_s07.bat | bat | bsd-3-clause | 486 |
@echo off
set MAKEFILE=makefile_vc
call "%~dp0..\..\tools\vc.build.set.x32.bat"
set WIDE=1
set IA64=
set AMD64=
nmake /A /B /F %MAKEFILE%
call "%~dp0..\..\tools\vc.build.set.x64.bat"
set AMD64=1
nmake /A /B /F %MAKEFILE%
| Maximus5/FarPlugins | Col0/diz_c0/build_diz.bat | bat | bsd-3-clause | 226 |
@REM This batch file has been generated by the IAR Embedded Workbench
@REM C-SPY Debugger, as an aid to preparing a command line for running
@REM the cspybat command line utility using the appropriate settings.
@REM
@REM You can launch cspybat by typing the name of this batch file followed
@REM by the name of the debug file (usually an ELF/DWARF or UBROF file).
@REM Note that this file is generated every time a new debug session
@REM is initialized, so you may want to move or rename the file before
@REM making changes.
@REM
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 6.0 Kickstart\common\bin\cspybat" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 6.0 Kickstart\430\bin\430proc.dll" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 6.0 Kickstart\430\bin\430fet.dll" %1 --plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 6.0 Kickstart\430\bin\430bat.dll" --backend -B "--hardware_multiplier" "16" "--hwmult_type" "2" "-p" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 6.0 Kickstart\430\config\MSP430F2618.ddf" "--core=430X" "--data_model=small" "--iv_base" "0xFFC0" "-d" "fet" "--verify_all" "--erase_main_and_info" "--derivative" "MSP430F2618" "--protocol" "4wire" "--eem" "EMEX_HIGH" "--port" "COM17" "--connection" "ti_usb" "--settlingtime=0" "--msp430_dll" "msp430.dll" "--vccDefault" "3.3"
| mauropv/TagMoo | settings/umassmoo.cspy.bat | bat | bsd-3-clause | 1,355 |
@echo off
REM
REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
REM
REM Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
REM
REM The contents of this file are subject to the terms of either the GNU
REM General Public License Version 2 only ("GPL") or the Common Development
REM and Distribution License("CDDL") (collectively, the "License"). You
REM may not use this file except in compliance with the License. You can
REM obtain a copy of the License at
REM https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
REM or packager/legal/LICENSE.txt. See the License for the specific
REM language governing permissions and limitations under the License.
REM
REM When distributing the software, include this License Header Notice in each
REM file and include the License file at packager/legal/LICENSE.txt.
REM
REM GPL Classpath Exception:
REM Oracle designates this particular file as subject to the "Classpath"
REM exception as provided by Oracle in the GPL Version 2 section of the License
REM file that accompanied this code.
REM
REM Modifications:
REM If applicable, add the following below the License Header, with the fields
REM enclosed by brackets [] replaced by your own identifying information:
REM "Portions Copyright [year] [name of copyright owner]"
REM
REM Contributor(s):
REM If you wish your version of this file to be governed by only the CDDL or
REM only the GPL Version 2, indicate your decision by adding "[Contributor]
REM elects to include this software in this distribution under the [CDDL or GPL
REM Version 2] license." If you don't indicate a single choice of license, a
REM recipient has the option to distribute your version of this file under
REM either the CDDL, the GPL Version 2 or to extend the choice of license to
REM its licensees as provided above. However, if you add GPL Version 2 code
REM and therefore, elected the GPL Version 2 license, then the option applies
REM only if the new code is made subject to such option by the copyright
REM holder.
REM
rem
rem Make sure that JAXB_HOME and JAVA_HOME are set
rem
if not "%JAXB_HOME%" == "" goto CHECKJAVAHOME
rem Try to locate JAXB_HOME
set JAXB_HOME=%~dp0
set JAXB_HOME=%JAXB_HOME%\..
if exist %JAXB_HOME%\lib\jaxb-xjc.jar goto CHECKJAVAHOME
rem Unable to find it
echo JAXB_HOME must be set before running this script
goto END
:CHECKJAVAHOME
if not "%JAVA_HOME%" == "" goto USE_JAVA_HOME
set JAVA=java
goto SETCLASSPATH
:USE_JAVA_HOME
set JAVA="%JAVA_HOME%\bin\java"
goto SETCLASSPATH
:SETCLASSPATH
if "%CLASSPATH%" == "" goto NOUSERCLASSPATH
set LOCALCLASSPATH=%JAXB_HOME%\lib\jaxb-xjc.jar;%CLASSPATH%
goto LAUNCHSCHEMAGEN
:NOUSERCLASSPATH
set LOCALCLASSPATH=%JAXB_HOME%\lib\jaxb-xjc.jar
goto LAUNCHSCHEMAGEN
:LAUNCHSCHEMAGEN
if not "%SCHEMAGEN_OPTS%" == "" goto LAUNCHSCHEMAGENWITHOPTS
%JAVA% -cp %LOCALCLASSPATH% com.sun.tools.jxc.SchemaGeneratorFacade %*
goto END
:LAUNCHSCHEMAGENWITHOPTS
%JAVA% %SCHEMAGEN_OPTS% -cp %LOCALCLASSPATH% com.sun.tools.jxc.SchemaGeneratorFacade %*
goto END
:END
%COMSPEC% /C exit %ERRORLEVEL%
| jsalla/jatintest | lib/jaxb/bin/schemagen.bat | bat | mit | 3,069 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_FSSHTTP_FSSHTTPB.MS_FSSHTTP_FSSHTTPB_S02_Coauth.TestCase_S02_TC14_ExitCoauthoringSession_DeletedCoauthoringSession /testcontainer:..\..\MS-FSSHTTP-FSSHTTPB\TestSuite\bin\Debug\MS-FSSHTTP-FSSHTTPB_TestSuite.dll /runconfig:..\..\MS-FSSHTTP-FSSHTTPB\MS-FSSHTTP-FSSHTTPB.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | FileSyncandWOPI/Source/Scripts/MS-FSSHTTP-FSSHTTPB/RunTestCase_S02_TC14.cmd | bat | mit | 387 |
cmd_fs/nls/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o fs/nls/built-in.o fs/nls/nls_base.o fs/nls/nls_cp437.o fs/nls/nls_ascii.o fs/nls/nls_iso8859-1.o fs/nls/nls_utf8.o
| friedrich420/Note-3-AEL-Kernel | fs/nls/.built-in.o.cmd | bat | gpl-2.0 | 220 |
@echo this is not dart | dart-lang/dartdoc | testing/tool_executables/non_dart.bat | bat | bsd-3-clause | 22 |
TITLE PokemonGo-Bot Repair
@ECHO OFF
CLS
:init
setlocal DisableDelayedExpansion
set "batchPath=%~0"
for %%k in (%0) do set batchName=%%~nk
set "vbsGetPrivileges=%temp%\OEgetPriv_%batchName%.vbs"
setlocal EnableDelayedExpansion
:checkPrivileges
NET FILE 1>NUL 2>NUL
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
ECHO.
ECHO Set UAC = CreateObject^("Shell.Application"^) > "%vbsGetPrivileges%"
ECHO args = "ELEV " >> "%vbsGetPrivileges%"
ECHO For Each strArg in WScript.Arguments >> "%vbsGetPrivileges%"
ECHO args = args ^& strArg ^& " " >> "%vbsGetPrivileges%"
ECHO Next >> "%vbsGetPrivileges%"
ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%vbsGetPrivileges%"
"%SystemRoot%\System32\WScript.exe" "%vbsGetPrivileges%" %*
exit /B
:gotPrivileges
setlocal & pushd .
cd /d %~dp0
if '%1'=='ELEV' (del "%vbsGetPrivileges%" 1>nul 2>nul & shift /1)
@ECHO ON
@ECHO.
@ECHO.
@ECHO.
@ECHO --------------------Creating Backup--------------------
@ECHO.
@ECHO.
@ECHO.
RMDIR C:\Python27\Backup /s /q
MKDIR C:\Python27\Backup
COPY C:\Python27\PokemonGo-Bot\encrypt*.* C:\Python27\Backup
COPY C:\Python27\PokemonGo-Bot\configs\config.json C:\Python27\Backup
COPY C:\Python27\PokemonGo-Bot\web\config\userdata.js C:\Python27\Backup
@ECHO.
@ECHO.
@ECHO.
@ECHO --------------------Downloading PokemonGo-Bot--------------------
@ECHO.
@ECHO.
@ECHO.
RMDIR C:\Python27\PokemonGo-Bot /s /q
cd C:\Python27\
pip2 install --upgrade pip
pip2 install --upgrade virtualenv
pip2 install --upgrade "%~dp0\PyYAML-3.11-cp27-cp27m-win32.whl"
pip2 install --upgrade "%~dp0\PyYAML-3.11-cp27-cp27m-win_amd64.whl"
git clone --recursive -b master https://github.com/PokemonGoF/PokemonGo-Bot
pip2 install --upgrade -r C:/Python27/PokemonGo-Bot/requirements.txt
cd C:/Python27/PokemonGo-Bot/
virtualenv .
call C:\Python27\PokemonGo-Bot\Scripts\activate.bat
pip2 install --upgrade -r C:/Python27/PokemonGo-Bot/requirements.txt
@ECHO.
@ECHO.
@ECHO.
@ECHO --------------------Restoring Backup--------------------
@ECHO.
@ECHO.
@ECHO.
COPY C:\Python27\Backup\encrypt*.* C:\Python27\PokemonGo-Bot\
COPY C:\Python27\Backup\config.json C:\Python27\PokemonGo-Bot\configs\
COPY C:\Python27\Backup\userdata.js C:\Python27\PokemonGo-Bot\web\config\
RMDIR C:\Python27\Backup /s /q
@ECHO.
@ECHO.
@ECHO.
@PAUSE | dmateusp/PokemonGo-Bot | windows_bat/PokemonGo-Bot-Repair.bat | bat | mit | 2,459 |
@echo off
"%~dp0\mono.exe" %MONO_OPTIONS% "%~dp0\..\lib\mono\xbuild\14.0\bin\xbuild.exe" %*
| Code0100Food/3DEngine | MonoScripting/MonoScripting/DATA/bin/xbuild.bat | bat | mit | 92 |
cmd_drivers/media/common/tuners/built-in.o := rm -f drivers/media/common/tuners/built-in.o; ar rcs drivers/media/common/tuners/built-in.o
| namgk/kernel-tut | drivers/media/common/tuners/.built-in.o.cmd | bat | gpl-2.0 | 139 |
@echo off
SET builddir=%~dp0
call build-resource.bat
cd %builddir%
call all.bat
| mban94/frapid | builds/all-plus-resources.bat | bat | apache-2.0 | 82 |
::Install 64 bit openssl. Expects tar file in cwd. We delete the openssl dir to
::avoid any 32-64 contamination.
call C:\grr\vagrant\windows\64bitenv.bat
cd %SYSTEMDRIVE%\openssl
rd /q /s openssl-1.0.2d
7z x openssl-1.0.2d.tar
cd openssl-1.0.2d
perl Configure VC-WIN64A --prefix=C:\Build-OpenSSL-VC-64
call ms\do_win64a.bat
nmake -f ms\ntdll.mak
nmake -f ms\ntdll.mak install
cd %USERPROFILE%
xcopy C:\Build-OpenSSL-VC-64\bin\*.dll C:\PYTHON_64\libs\ /e /h /y
:: M2Crypto expects the openssl pieces to be here. Theoretically you should be
:: able to do:
:: python setup.py build_ext --openssl="C:\Build-OpenSSL-VC-64"
:: python setup.py build
:: python setup.py install
:: But I could never get this to work, it built fine but would always fail to
:: import the DLLs later.
rd /q /s C:\pkg
xcopy C:\Build-OpenSSL-VC-64\include C:\pkg\include\ /s /e /h /y
xcopy C:\Build-OpenSSL-VC-64\lib C:\pkg\lib\ /s /e /h /y
pip install git+https://github.com/M2Crypto/M2Crypto.git@73f8d71c021a547d435753985cb45ed8d6c7c845#egg=M2Crypto
rd /q /s C:\pkg
python -c "import M2Crypto" || echo "64bit M2Crypto install failed" && exit /b 1
| statik/grr | vagrant/windows/64bitopenssl.bat | bat | apache-2.0 | 1,125 |
@REM
@REM Licensed to the Apache Software Foundation (ASF) under one or more
@REM contributor license agreements. See the NOTICE file distributed with
@REM this work for additional information regarding copyright ownership.
@REM The ASF licenses this file to You under the Apache License, Version 2.0
@REM (the "License"); you may not use this file except in compliance with
@REM the License. You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@echo off
if "%OS%" == "Windows_NT" setlocal
if NOT DEFINED CASSANDRA_HOME set CASSANDRA_HOME=%~dp0..
if NOT DEFINED CASSANDRA_CONF set CASSANDRA_CONF=%CASSANDRA_HOME%\conf
if NOT DEFINED CASSANDRA_MAIN set CASSANDRA_MAIN=org.apache.cassandra.tools.SSTableImport
if NOT DEFINED JAVA_HOME goto err
REM ***** JAVA options *****
set JAVA_OPTS=^
-Dlog4j.configuration=log4j-tools.properties
REM ***** CLASSPATH library setting *****
REM Ensure that any user defined CLASSPATH variables are not used on startup
set CLASSPATH=%CASSANDRA_HOME%\conf
REM For each jar in the CASSANDRA_HOME lib directory call append to build the CLASSPATH variable.
for %%i in (%CASSANDRA_HOME%\lib\*.jar) do call :append %%~fi
goto okClasspath
:append
set CLASSPATH=%CLASSPATH%;%1%2
goto :eof
:okClasspath
REM Include the build\classes\main directory so it works in development
set CASSANDRA_CLASSPATH=%CLASSPATH%;%CASSANDRA_HOME%\build\classes\main;%CASSANDRA_CONF%;%CASSANDRA_HOME%\build\classes\thrift
set CASSANDRA_PARAMS=
set TOOLS_PARAMS=
FOR %%A IN (%*) DO call :appendToolsParams %%A
goto runTool
:appendToolsParams
set TOOLS_PARAMS=%TOOLS_PARAMS% %1
goto :eof
:runTool
"%JAVA_HOME%\bin\java" %JAVA_OPTS% %CASSANDRA_PARAMS% -cp "%CASSANDRA_CLASSPATH%" "%CASSANDRA_MAIN%" %TOOLS_PARAMS%
goto finally
:err
echo JAVA_HOME environment variable must be set!
pause
:finally
ENDLOCAL
| mrunalruikar/RESTandra | bin/json2sstable.bat | bat | apache-2.0 | 2,284 |
powershell -File DeployNuget.ps1 "TargetNugetLocalBaseDirectory" | Metal10k/KeyValueStorage | Tools/KeyValueStorage.Tools/DeployNugetPackager/DeployLocal.bat | bat | apache-2.0 | 64 |
npm install --save @angular/common @angular/compiler @angular/core @angular/forms @angular/http @angular/platform-browser @angular/platform-browser-dynamic @angular/router es6-shim ionic-angular ionic-native ionicons reflect-metadata rxjs zone.js | xudaosong/MyMoney | mobile_ionic2/npm-install.bat | bat | mit | 246 |
@echo off
REM #!/bin/bash
REM # .bash_aliases by Sprax
REM #
REM function _echo1etc() { echo -n=arg #1 is $1"; shift; echo= and the rest are: $*"; }
REM function _echonoshift() { echo=arg #1 is $1 and the rest are: ${@:2}"; }
REM # Alias: create an doskey that first displays a command as an alias, then performs it.
REM # NB: Using an Aliased command in the definition of another may cause both to display, or bust, depending.
REM # Building blocks such as alias, grep, and ls should probably not be Aliased.
REM function Alias() { doskey $1=echo -e 'alias \033[1m\033[4m$1\033[0m=\"\033[1m$2\033[0m\"'; $2"; }
REM
REM # A different approach to displaying an aliased command before executing it:
REM doskey ra=function _ra(){ if doskey $1; then _rax=`alias $1 $b sed=s/^alias $1=.\(.*\).$/\1/"`; echo= ===> $_rax ${@:2}"; fi; $*; }; _ra
REM doskey re=function _re(){ _rax=`alias $1 $b sed=s/alias $1=//"`; echo $_rax ; eval $*; }; _re
REM
REM # Current Test
REM # Current R&D
REM doskey wub=python wud_parse.py dictionary.txt -beg 4000 -end 6000 -v 9 -a $b more
REM doskey wut=python wud_parse.py dictionary.txt -beg 4000 -end 6000 -v 10 -a $b more
REM doskey wuc=python wud_parse.py dictionary.txt -beg 4000 -end 6000 -v 13 -a $b more
REM doskey wud=cdpt; python wud_parse.py dictionary.txt -beg 0 -end 10000 -v 2 -both
REM doskey wue=cdpt; python wud_parse.py dictionary.txt -beg 10000 -end 20000 -v 2 -both
REM doskey wuf=cdpt; python wud_parse.py dictionary.txt -beg 20000 -end 30000 -v 2 -both
REM doskey wug=cdpt; python wud_parse.py dictionary.txt -beg 30000 -end 40000 -v 2 -both
REM doskey wuh=cdpt; python wud_parse.py dictionary.txt -beg 0 -end 40000 -v 2 -both
REM
REM doskey ssa 'source $ALIASES; echo=Sourced $ALIASES
REM doskey vsa=vim $ALIASES && source $ALIASES; echo=Sourced $ALIASES
REM doskey vex=vim %HOME%/.exports && source %HOME%/.exports; echo=Sourced %HOME%/.exports
REM doskey vsb=vim %HOME%/.bashrc && source %HOME%/.bashrc; echo=Sourced %HOME%/.bashrc
REM doskey vsp=vim %HOME%/.bash_profile; source %HOME%/.bash_profile
REM doskey vsv=vim %HOME%/.bash_vars && source %HOME%/.bash_vars; echo=Sourced %HOME%/.bash_vars
REM
REM # Get External IP / local IPs
REM doskey ipa=curl ipinfo.io/ip
REM doskey ipf=/sbin/ifconfig
REM doskey ips=ifconfig -a $b perl -nle'/(\d+\.\d+\.\d+\.\d+)/ && print $1'
REM
REM doskey a=alias
REM doskey al=alias
REM doskey alg=alias $b grep
REM doskey algg=alias $b grep grep
doskey asdf=cd %HOME%\asdf
REM doskey casdf 'cd %GIT_HOME%
REM doskey bak=cd -
REM doskey bb=cd -
REM doskey berc=bundle exec rails console
REM doskey bercnp=DISABLE_PRY_RAILS=1 rails c
REM doskey berm=bundle exec rake db:migrate RAILS_ENV=development
REM doskey bermt=bundle exec rake db:migrate RAILS_ENV=test
REM doskey berr=bundle exec rake routes
REM doskey c=clear
doskey cb=cd build
REM doskey cbct 'cd build && make -j && ctest
REM doskey cbm 'cd build && make
REM doskey cbmt 'cd build && make -j && make test
REM doskey cbt 'cd build && make -j && ctest
REM doskey cda=cd %HOME%/asdf
REM doskey cdb 'cd %GIT_HOME/dracula/build/dracula && make -j8 && echo ____________________ MADE STANDALONE DRACULA
REM doskey cdbm 'cd build && make -j
doskey cdc=cd %GIT_CPP%
doskey cdct=cd %GIT_CPP%/tmpl
doskey cdd=cd data
doskey cdgo=cd $GIT_GOLANG%
doskey cdi=cd include
doskey cdot=cd %GIT_DOTS%
doskey cdp=cd %GIT_PYTHON%
doskey cdpj=cd %GIT_PYTHON%/emo
doskey cdpt=cd %GIT_PYTHON%/txt
doskey cdr=cd %GIT_RUBY%
REM doskey cdrs 'cd $DRAX/.. && ./setup.sh
REM doskey cds 'cd src
REM doskey cdt 'cd tests
REM doskey cdth=cd %TEXT_HOME%
REM doskey cpdot=function _cpdot(){ cp $1 $GIT_DOTS/$2; }; _cpdot
REM doskey cpfr=function _cpfr(){ cp $owd/$* .;}; _cpfr
REM doskey cpto=function _cpto(){ cp $* $owd;}; _cpto
REM doskey cs 'cd src
REM doskey csf 'cd $STUFF/build && make -j test_filter_plans && ./test_filter_plans
REM doskey csmd 'cd $STUFF/build && make -j && ./test_dir_poll
REM doskey cslt 'cd $STUFF/build && make -j test_logging && ./test_logging
REM doskey csmn 'cd $STUFF/build && make -j && ./test_sample_next
REM doskey csmp 'cd $STUFF/build && make -j test_PlanScoopFromContainerState && ./test_PlanScoopFromContainerState --gtest_filter=*
REM doskey csrs 'cd $STUFF && ./setup.sh
REM doskey cud=function _cud(){ cd ../$1; shift; $*; }; _cud
REM doskey cz 'cd $STUFF/build && make -j && ./zero_mq
REM doskey d=function _d(){ export owd=`pwd`; echo -e=\033[1m\033 owd==$owd \033[0m"; cd $*;}; _d
REM doskey dg 'd $GIT_GOLANG
REM doskey diffal 'diff $ALIASES $GIT_DOTS/bash_aliases.$SYS_EXT $b more
REM doskey diffdots 'diff $ALIASES $GIT_DOTS/bash_aliases.$SYS_EXT $b more
REM doskey dir=ls
REM doskey dontimes=function _dontimes(){ echo=Doing \"${@:2}\" $1 times..."; for j in `seq 1 $1`; do ${@:2}; done;}; _dontimes
REM doskey dr=cd $DRAX
REM doskey drac=pu $DRAX
REM doskey dracula=pu $DRACULA
REM doskey drax=pu %GIT_HOME/dracula
REM doskey dsg 'cd %GIT_HOME/stuff_getter
REM doskey dviz '/opt/drake/bin/drake-visualizer
REM doskey e=echo
doskey eg=env $b grep $*
REM doskey ega 'env $b grep AWS
REM doskey egi=env $b grep -i
doskey ga=git add
doskey gali=function _gali(){ grep=$*" $ALIASES;}; _gali
doskey gbd=git branch -d
doskey gbl=git branch -l
doskey gbm=git branch --merged
doskey gbs=git branch -rl --no-merge
doskey grep=grep --color=auto
doskey gcam=git commit -a -m $*
doskey gcamd=git commit --amend -m
doskey gcom=git commit -m
doskey gcm=git checkout master
doskey gitclean=git gc --prune=now && git remote prune origin
doskey gco=git checkout
doskey gd=git diff
doskey gdn=git diff --name-only
doskey gdl=git log -p -n 1
doskey gdlf=git log -p -n 5
doskey gdm=git diff master
doskey gdom=git diff origin/master
doskey gdoom=git diff origin master
doskey gdn=git diff --name-status master
doskey gruph=git reset --hard HEAD^
doskey glf=git log -n 5
doskey glg=git log
doskey glgn=git log -n
doskey glgo=git log -n 1
doskey gpl=git pull
doskey gps=git push
doskey grc=git rebase --continue
doskey grim=git rebase -i master
doskey grall=grep -RI --exclude-dir="build*" --exclude-dir="log*" $*" .
REM doskey grcs=function _grcs(){ grep -R -I --exclude-dir=node*" --exclude="react_bundle.*" --include=".*css" --include=".*jsx"=$*" .;}; _grcs
REM doskey grcss=function _grcss(){ grep -R -I --exclude-dir=node*" --exclude="react_bundle.*" --exclude=".*jsx" --include=".*css"=$*" .;}; _grcss
REM doskey grrb=function _grrb(){ grep -R -I --exclude-dir=node*" --exclude-dir="db" --exclude="react_bundle.*" --exclude=".*css" --include=".*rb"=$*" .;}; _grrb
REM doskey grubi=function _grubi(){ grep -R -I --exclude-dir=node*" --exclude-dir="db" --exclude="react_bundle.*" --exclude=".*css" --include=".*rb" -i=$*" .;}; _grubi
REM doskey grail=function _grail(){ grep -R -I --exclude-dir=node*" --exclude-dir="db" --exclude="react_bundle.*" --exclude=".*css" --include=".*jsx" --include=".*js" --include=".*rb" =$*" .;}; _grail
REM doskey gruby=function _gruby(){ grep -R -I --exclude-dir=node*" --exclude-dir="db" --exclude="react_bundle.*" --exclude=".*css" --include=".*rb" =$*" .;}; _gruby
REM doskey graby=function _graby(){ grep -R -I --exclude-dir=node*" --exclude-dir="db" --exclude="react_bundle.*" --exclude=".*css" --include=".*rb" =$*" . $b grep -v _spec;}; _graby
doskey grech=grep -RI --exclude-dir="external*" --include="*.c" --include="*.cc" --include="*.cpp" --include="*.h" --include="*.hpp" "$*" .
REM doskey grich 'function _grich(){ grep -RIi --exclude-dir=external*" --include=".*\.c" --include=".*\.cc" --include=".*\.cpp" --include=".*\.h" --include=".*\.hpp"=$*" .;}; _grich
REM doskey gred 'function _gred(){ grep -R -I --exclude-dir=bazel*" --include=".*\.c" --include=".*\.cc" --include=".*\.cpp" --include=".*\.h" --include=".*\.hpp" --include=".*\.txt"=$*" .;}; _gred
doskey grch=grep -RI --include="*.c" --include="*.cc" --include="*.cpp" --include="*.h" --include="*.hpp" "$*" .
REM doskey grec 'function _grec(){ grep -R -I --exclude-dir=external*" --include=".*\.c" --include=".*\.cc" --include=".*\.cpp"=$*" .;}; _grec
REM doskey grecd 'function _grecd(){ grep -R -I --exclude-dir=bazel*" --include=".*\.c" --include=".*\.cc" --include=".*\.cpp"=$*" .;}; _grecd
doskey grey=grep -RI --exclude-dir=".git*" --exclude-dir="build*" --include="*.h" --include="*.hpp" --include="*.hh" "$*" .
doskey grpy=grep -RI --exclude-dir=".git*" --exclude-dir="build*" --exclude=".*pyc" --include=".*\.py" "$*" .
doskey grpug=grep -RI --exclude=data --exclude="text" --exclude="*.pyc" --include="*.py" "\(^\\s*import pdb\|set_trace()\)" .
REM doskey gersh 'function _gersh(){ grep -R -I --include=.*\.sh"=$*" .;}; _gersh
REM doskey grbug=egrep -R -I --exclude-dir=node" --exclude-dir="node_modules" --exclude="react_bundle.*" --include=".*rb"=binding.(remote_)?pry" .
doskey grgo=grep -RI --exclude-dir="vendor" --include="*.go" "$*" .
REM doskey grgol=function _grgol(){ grep -R -I --include=.*\.go"=$*" .;}; _grgol
REM doskey grex=function _grex(){ grep -R -I --exclude-dir=node*" --exclude-dir="public" --exclude="react_bundle.*" --exclude="chart.js" --exclude=".*css" --include=".*jsx" --include=".*js"=$*" .;}; _grex
doskey grjs=grep -RI --exclude-dir="node*" --exclude-dir='javascripts' --include='*.js' $* .
REM doskey grjsx=function _grjsx(){ grep -R -I --exclude-dir=node*" --exclude="react_bundle.*" --exclude="chart.js" --exclude=".*css" --include=".*jsx" --include=".*js"=$*" .;}; _grjsx
REM doskey grjson=function _grjson(){ grep -R -I --exclude-dir=node*" --exclude-dir=".git" --exclude="react_bundle.*" --include=".*\.json"=$*" .;}; _grjson
doskey grjv=grep -RI --exclude-dir="classes" --exclude-dir=".git" --include="*.java" "$*" .
REM doskey grjx=grep -R -I --exclude-dir=node*' --exclude='react_bundle.*' --exclude='.*css' --include='.*jsx'
REM doskey grjsbug=grep -R -I --exclude-dir=node' --exclude-dir='node_modules' --exclude='react_bundle.*' --exclude='ionicons.scss' --include='.*js' 'debugger' .
REM doskey grjsxbug=grep -R -I --exclude-dir=node' --exclude-dir='node_modules' --exclude='react_bundle.*' --exclude='ionicons.scss' --include='.*jsx' 'debugger' .
REM doskey g =git status
doskey gs=git status
REM
doskey jun=jupyter notebook
REM doskey kone 'kill %1
REM doskey ktwo 'kill %2
REM doskey kthree 'kill %3
REM doskey kfour 'kill %4
doskey l=ls -FG
doskey lad=ls -lahFG $b grep ^d
doskey lah=ls -lahFG
doskey ldir=ls -lhFG $b grep ^d
doskey lsdr 'function _lsdr(){ ls -dlhFG=$*" $b grep ^d ;}; _lsdr
doskey ldd=ls -ldAF .??* $b grep ^d
doskey lidot=ls -ldAF .??* $b grep -v ^d
doskey lart=ls -alrtG
doskey ll=ls -lFG
doskey lla=ls -lAFG
doskey lli=ls -ilAFG
doskey llwc=ls -ilAFG
doskey lls=ls -lS
doskey lrt=ls -lrtG
doskey llrt=ls -lrtGL
doskey lrtc=ls -lrtG *.c*
doskey lrtp=ls -lrtG *.py
doskey lsd=ls -ldAF .??*
doskey lsdort=ls -ldAFrt .??* $b grep -v ^d
doskey lss=ls -sFG
doskey lst=ls -ltG
REM doskey listening=function _listening(){ lsof -n -i4TCP:"$*" $b grep LISTEN; }; _listening
doskey mk=make -j
REM doskey meld=~/bin/meld
REM doskey mld=$HOME/bin/meld
REM doskey m=more
REM doskey mtvc=sshfs developer@192.168.56.101:/home/developer/development /users/sprax/ubu -o reconnect -o cache_timeout=14400 -o volname=ubu
REM doskey mtu 'pushd ~; umount ubu || diskutil unmount force ubu; sshfs ubu:/home/sprax /users/sprax/ubu -o reconnect -o cache=no; popd
REM doskey mtv 'sshfs ubu:/home/developer/development /users/sprax/ubu -o reconnect -o cache=no
REM doskey ngrokloc 'ngrok http 9081
REM doskey pg=ps aux $b grep
REM doskey peg=python -c=import math; gr=(1 + math.sqrt(5))/2; print(\"PI, E, golden ratio, recip:\", math.pi, math.e, gr, 1/gr)
REM doskey psqld 'psql assistant_development
REM doskey psqli 'psql pipedream
REM doskey owd=echo $owd
REM doskey path=echo \$PATH $b awk -F: -v OFS="'"\\n" '"'{\$1=\$1; print \$0}'
REM doskey pdr 'pu $GIT_RUBY
REM doskey po=function _pop(){ export owd=`pwd`; popd;}; _pop
REM doskey pod=function _pod(){ export cwd=`pwd`; pushd $owd; export owd=$cwd;}; _pod
REM doskey pu=function _push(){ export owd=`pwd`; pushd $*;}; _push
REM doskey pud=function _pud(){ pu ../$1; shift; $*; }; _pud
doskey puf=pu %GIT_HOME%
doskey pui=pushd ../include
REM doskey puel=pushd %GIT_ELASTIC%
doskey puh=function _puh(){ export owd=`pwd`; pushd %HOME%/$*; }; _puh
doskey pum=pushd %HOME%
doskey put=pushd %TEXT_HOME%
doskey pupt=pu %GIT_PYTHON%/txt
doskey pup=pushd ..
doskey pupp=pushd ../..
doskey puup=pushd ../..
doskey puppp=pushd ../../..
doskey pupppp=pushd ../../../..
REM doskey puss 'pu $SANDBOX_HOME/%USER%
doskey py=python
doskey py2=python2
doskey py3=python3
doskey pyl=pylint -rn --rcfile=~/.pylintrc $*
REM doskey pylun=pylint -rn --rcfile=~/.pylintrc $b grep undefined
REM doskey pyl2=pylint2 -rn
REM doskey pyl3=$PYTHON_3/pylint -rn
REM doskey pylint3=$PYTHON_3/pylint
REM doskey r=fc -e
REM doskey rep 'fc -e
REM doskey rmf=rm -f
doskey rrm=rm -fr
REM doskey rw=ruby -w
REM doskey sam=source activate magic
REM doskey scat=source %HOME%/catkin_ws/devel/setup.bash
REM # Quickly serve the current directory as HTTP
REM doskey serve=ruby -run -e httpd . -p 8000' # Or python -m SimpleHTTPServer :)
REM doskey simkl=source /opt/intel/mkl/bin/mklvars.sh intel64
REM doskey speedtest=wget -O /dev/null http://speedtest.wdc01.softlayer.com/downloads/test10.zip
REM doskey stuff 'pu $STUFF
REM doskey startpost '/usr/local/bin/pg_ctl -D /usr/local/var/postgres/data -l logfile start
REM doskey tshas 'tsh --proxy=bastion-internal.example.com:443 ssh ec2-user@"application=assistant,environment=default
REM doskey tshalp 'tsh --proxy=bastion-internal.example.com:443 ssh ec2-user@"application=assistant,environment=production" journalctl -f -u puma
REM doskey tshp 'tsh --proxy=bastion-internal.example.com:443 --user=%USER%
doskey u=cd ..
doskey up=cd ..
doskey upp=cd ../..
doskey uppp=cd ../../..
doskey upppp=cd ../../../..
doskey v=vim
doskey vw=view
| sprax/dotFiles | bat/bat_aliases.bat | bat | mit | 13,867 |
@echo off
REM Written by John Alvarado
setlocal
set src=\\bsg-ts\Share\Blind Squirrel\Employee List\FaceCardsGame
set dst=.
set tempBat=temp.bat
REM Update the batch files.
REM The first time this batch file is executed (without parameters) it creates and launches a temp batch file to update all the batch file from the network (including this one).
REM That temp batch file, after upating the bats, runs this batch file again but with a command line param 'NOUPDATE' to skip this update step.
REM The temp batch file is then removed when the content update occurs, so you will never see it (unless you add temp.bat the /XF list in UpdateFaceCards.bat robocopy command)
if '%1'=='NOUPDATE' goto SkipUpdatingThisfile
echo:copy /Y /Z "%src%\*.bat " %dst%>%tempBat%
echo:start %~n0.bat NOUPDATE>>%tempBat%
%tempBat%
exit
:SkipUpdatingThisfile
REM Update the game executable and content files
echo.Checking for game and content updates...
call UpdateFaceCards.bat "%src%"
REM Launch the game
start FaceCards.exe
exit
| JohnnyWasabi/FaceCards | SourceAssets/BatchFiles/PlayFaceCards.bat | bat | mit | 1,022 |
@echo off
:: Settings menu
:main
if defined menu set "menu="
cls
echo Settings
echo 1) Color settings
echo 2) Return to menu
set /p menu="What is your selection? "
set /a menu=menu
if %menu% equ 1 goto color
if %menu% equ 2 goto returnToMenu
:invalid
echo Invalid selection.
pause
goto main
:color
call data\colormenu.bat
goto main
:returnToMenu
goto:eof
| Leo40Git/CMDQuiz | data/settings.bat | bat | mit | 355 |
npm install .\crypto-js & ^
npm install .\sjcl & ^
npm install .\Multivalue & ^
npm install .\invariant & ^
npm install .\modules & ^
npm install .\Filter & ^
npm install .\Route & ^
npm install .\SerializationContext & ^
npm install .\TestTransport & ^
npm install .\OverTlecBuilder & ^
npm install .\Tlec & ^
npm install .\Tlgr & ^
npm install .\Tlke & ^
npm install .\TlkeBuilder
| TrueLink/TrueLink | publish_modules.cmd | bat | mit | 397 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\haml\lib\cli.js" %*
) ELSE (
node "%~dp0\..\haml\lib\cli.js" %*
) | subtirelumihail/addit-game | node_modules/gulp-haml/node_modules/.bin/haml-js.cmd | bat | mit | 127 |
setlocal
call settings.bat
rem svn checkout http://svn.osgeo.org/geos/trunk geos-svn
rem git clone --depth 1 git://git.sv.nongnu.org/freetype/freetype2.git
call fetch.bat http://sourceforge.net/projects/log4cpp/files/log4cpp-1.1.2rc1.tar.gz log4cpp
cd log4cpp
mkdir build
cd build
cmake .. %GENERATOR% -DCMAKE_BUILD_TYPE=%VARIANT% -DCMAKE_INSTALL_PREFIX=%PREFIX1%
%ER%
%MSBUILDINSTALL%
%ER%
copy %PREFIX%\lib\log4cppD.lib %PREFIX%\lib\log4cpp.lib
cd ..\..
| alex85k/winbuilds | build_log4cpp.bat | bat | cc0-1.0 | 496 |
cmd_fs/bio.o := arm-none-linux-gnueabi-gcc -Wp,-MD,fs/.bio.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(bio)" -D"KBUILD_MODNAME=KBUILD_STR(bio)" -c -o fs/.tmp_bio.o fs/bio.c
deps_fs/bio.o := \
fs/bio.c \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.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/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/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/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/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/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/linkage.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.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) \
/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 \
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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/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/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/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/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/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/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/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/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/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/swap.h \
$(wildcard include/config/migration.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 \
$(wildcard include/config/cgroups.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/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/fanotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/jiffies.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/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/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/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) \
$(wildcard include/config/hugetlbfs.h) \
include/linux/sysdev.h \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.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/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/bio.h \
$(wildcard include/config/block.h) \
include/linux/highmem.h \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/debug/highmem.h) \
include/linux/fs.h \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/fs/xip.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/blk_types.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/hardirq.h \
$(wildcard include/config/bkl.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hardirq.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
/root/kernel-dev/linux-2.6.37/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/smp/on/up.h) \
$(wildcard include/config/arm/errata/411920.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmparam.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/root/kernel-dev/linux-2.6.37/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/io.h \
arch/arm/mach-davinci/include/mach/io.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/blk/dev/throttling.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/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) \
$(wildcard include/config/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/trace/events/kmem.h \
include/trace/events/gfpflags.h \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
$(wildcard include/config/sysfs/deprecated.h) \
include/linux/ioport.h \
include/linux/klist.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/linux/pagemap.h \
include/linux/hugetlb_inline.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/writeback.h \
include/linux/bsg.h \
/root/kernel-dev/linux-2.6.37/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/scsi/sg.h \
include/trace/events/block.h \
include/linux/blktrace_api.h \
include/linux/relay.h \
$(wildcard include/config/relay.h) \
include/linux/poll.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/linux/compat.h \
fs/bio.o: $(deps_fs/bio.o)
$(deps_fs/bio.o):
| srinugnt2000/linux-2.6.37 | fs/.bio.o.cmd | bat | gpl-2.0 | 27,111 |
cmd_drivers/switch/built-in.o := /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o drivers/switch/built-in.o drivers/switch/switch_class.o drivers/switch/switch_gpio.o
| RittikBhowmik/Project-Crater-Kernel-GT-i9152 | drivers/switch/.built-in.o.cmd | bat | gpl-2.0 | 210 |
@echo off
"c:\python33\python.exe" state_files.py -i scan.ini -o log\file_list.txt
"c:\python33\python.exe" tar_files.py -f log\file_list.txt > log\log.txt
| e--/code-segment | python/backup/run.bat | bat | gpl-2.0 | 158 |
@%~dp0\busybox.exe unzip %*
| witwall/busybox-w32 | unzip.bat | bat | gpl-2.0 | 28 |
@setlocal
@set TMPPRJ=FA4
@set TMPLOG=bldlog-1.txt
@set TMPSRC=..
@set VCVERS=14
@REM ############################################
@REM NOTE: SPECIAL INSTALL LOCATION
@REM Adjust to suit your environment
@REM ##########################################
@set TMPINST=C:\MDOS
@set TMPOPTS=-DCMAKE_INSTALL_PREFIX=%TMPINST%
@set GENERATOR=Visual Studio %VCVERS% Win64
@set VS_PATH=C:\Program Files (x86)\Microsoft Visual Studio %VCVERS%.0
@set VC_BAT=%VS_PATH%\VC\vcvarsall.bat
@if NOT EXIST "%VS_PATH%" goto NOVS
@if NOT EXIST "%VC_BAT%" goto NOBAT
@set BUILD_BITS=%PROCESSOR_ARCHITECTURE%
@set TMPOPTS=%TMPOPTS% -G "%GENERATOR%"
@call chkmsvc %TMPPRJ%
@echo Begin %DATE% %TIME%, output to %TMPLOG%
@echo Begin %DATE% %TIME% > %TMPLOG%
@echo Setting environment - CALL "%VC_BAT%" %BUILD_BITS%
@echo Setting environment - CALL "%VC_BAT%" %BUILD_BITS% >> %TMPLOG%
@call "%VC_BAT%" %BUILD_BITS% >> %TMPLOG% 2>&1
@if ERRORLEVEL 1 goto NOSETUP
@echo Doing: 'cmake %TMPSRC% %TMPOPTS%'
@echo Doing: 'cmake %TMPSRC% %TMPOPTS%' >> %TMPLOG%
@cmake %TMPSRC% %TMPOPTS% >> %TMPLOG% 2>&1
@if ERRORLEVEL 1 goto ERR1
@echo Doing: 'cmake --build . --config debug'
@echo Doing: 'cmake --build . --config debug' >> %TMPLOG%
@cmake --build . --config debug >> %TMPLOG%
@if ERRORLEVEL 1 goto ERR2
@echo Doing: 'cmake --build . --config release'
@echo Doing: 'cmake --build . --config release' >> %TMPLOG%
@cmake --build . --config release >> %TMPLOG% 2>&1
@if ERRORLEVEL 1 goto ERR3
@echo Appears a successful build
@echo.
@REM echo No install at this time...
@REM goto END
@if NOT EXIST Release\fa4.exe goto DNCHK
@if NOT EXIST C:\MDOS\fa4.exe goto DNCHK
@REM fc4 exit Errorlevel 1 if Different; 2 if ERROR and 3 if HELP shown, else 0.
@fc4 -? >nul
@if ERRORLEVEL 4 goto DNCHK
@if ERRORLEVEL 3 goto DOCHK
@goto DNCHK
:DOCHK
@fc4 -v0 -q -b Release\fa4.exe C:\MDOS\fa4.exe
@if ERRORLEVEL 1 goto DNCHK
@echo Installed C:\MDOS\fa4.exe EXACTLY SAME as Release\fa4.exe
@echo NO INSTALL REQUIRED
@echo.
@goto END
:DNCHK
@echo.
@echo Note install location %TMPINST%
@echo *** CONTINUE with install? *** Only 'y' continues ***
@echo.
@ask
@if ERRORLEVEL 2 goto NOASK
@if ERRORLEVEL 1 goto DOINST
@echo.
@echo No install at this time...
@echo.
@goto END
:DOINST
cmake -P cmake_install.cmake
@REM echo Doing: 'cmake --build . --config release --target INSTALL'
@REM echo Doing: 'cmake --build . --config release --target INSTALL' >> %TMPLOG%
@REM cmake --build . --config release --target INSTALL >> %TMPLOG% 2>&1
@REM fa4 " -- " %TMPLOG%
@echo Done build and install of %TMPPRJ%...
@goto END
:NOASK
@echo.
@echo Can NOT find 'ask' utility in PATH
@echo See : https://gitorious.org/fgtools/gtools
@echo.
@goto END
:ERR1
@echo cmake config, generation error
@goto ISERR
:ERR2
@echo debug build error
@goto ISERR
:ERR3
@echo release build error
@goto ISERR
:NOVS
@echo Can not locate "%VS_PATH%"! *** FIX ME *** for your environment
@goto ISERR
:NOBAT
@echo Can not locate "%VC_BAT%"! *** FIX ME *** for your environment
@goto ISERR
:NOSETUP
@echo MSVC setup FAILED!
@goto ISERR
:ISERR
@endlocal
@exit /b 1
:END
@endlocal
@exit /b 0
@REM eof
| geoffmcl/FA4 | build.x64/build-me-vc14.bat | bat | gpl-2.0 | 3,129 |
cmd_net/unix/unix.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/unix/unix.o net/unix/af_unix.o net/unix/garbage.o net/unix/sysctl_net_unix.o
| sleshepic/epic_touch_kernel | net/unix/.unix.o.cmd | bat | gpl-2.0 | 185 |
cmd_fs/nls/nls_utf8.ko := arm-eabi-ld -EL -r -T /home/nonamer/bravo_2.6.35_gb-mr/scripts/module-common.lds --build-id -o fs/nls/nls_utf8.ko fs/nls/nls_utf8.o fs/nls/nls_utf8.mod.o
| NooNameR/Sense4.0-kernel | fs/nls/.nls_utf8.ko.cmd | bat | gpl-2.0 | 181 |
cmd_scripts/bin2c := gcc -Wp,-MD,scripts/.bin2c.d -O2 -I/home/lintel/PandoraBox-MT7620/staging_dir/host/include -I/home/lintel/PandoraBox-MT7620/staging_dir/host/usr/include -Wall -Wmissing-prototypes -Wstrict-prototypes -I/home/lintel/PandoraBox-MT7620/staging_dir/host/include -I/home/lintel/PandoraBox-MT7620/build_dir/target-mipsel_24kec+dsp_uClibc-1.0.x/linux-ralink_mt7620/linux-3.14.79/tools/include -o scripts/bin2c scripts/bin2c.c -L/home/lintel/PandoraBox-MT7620/staging_dir/host/lib
source_scripts/bin2c := scripts/bin2c.c
deps_scripts/bin2c := \
/usr/include/stdc-predef.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
scripts/bin2c: $(deps_scripts/bin2c)
$(deps_scripts/bin2c):
| xiaohaidao007/pandoraBox-SDK-mt7620 | build_dir/target-mipsel_24kec+dsp_uClibc-1.0.x/linux-ralink_mt7620/linux-3.14.79/scripts/.bin2c.cmd | bat | gpl-2.0 | 1,388 |
cmd_sound/soc/s6000/built-in.o := rm -f sound/soc/s6000/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/soc/s6000/built-in.o
| selva-simple/Galaxy-R-Kernel | sound/soc/s6000/.built-in.o.cmd | bat | gpl-2.0 | 177 |
cmd_drivers/input/mouse/psmouse.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/input/mouse/psmouse.o drivers/input/mouse/psmouse-base.o drivers/input/mouse/synaptics.o drivers/input/mouse/alps.o drivers/input/mouse/elantech.o drivers/input/mouse/logips2pp.o drivers/input/mouse/trackpoint.o drivers/input/mouse/cypress_ps2.o
| FEDEVEL/tmp-imx6-tiny-rex-linux | drivers/input/mouse/.psmouse.o.cmd | bat | gpl-2.0 | 426 |
cmd_drivers/acpi/hardware/built-in.o := ld -m elf_i386 -r -o drivers/acpi/hardware/built-in.o drivers/acpi/hardware/hwacpi.o drivers/acpi/hardware/hwgpe.o drivers/acpi/hardware/hwregs.o drivers/acpi/hardware/hwsleep.o
| namgk/kernel-tut | drivers/acpi/hardware/.built-in.o.cmd | bat | gpl-2.0 | 222 |
# ========== Copyright Header Begin ==========================================
#
# OpenSPARC T1 Processor File: sjm_5.cmd
# Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
#
# The above named program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License version 2 as published by the Free Software Foundation.
#
# The above named program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this work; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ========== Copyright Header End ============================================
CONFIG id=30 iosyncadr=0x7EF00BEEF00
TIMEOUT 10000000
IOSYNC
#==================================================
#==================================================
LABEL_0:
WRITEBLK 0x000000199e2ad540 +
0x64c3da60 0xe928e64d 0x52bc70ed 0x71927016 +
0x780256cf 0x616c3dde 0x0ff30884 0xb05b40c4 +
0xf93ccfd0 0x7406e235 0xeca791ba 0xb67eb6bc +
0xd3aff7f8 0x73a40939 0x7b462221 0x9cb27cf6
WRITEMSK 0x000000199e2ad540 0x00f0f00f0f0ff0ff +
0x00000000 0x00000000 0x50ebf0d3 0x00000000 +
0x3eb08790 0x00000000 0x00000000 0x6dcfc481 +
0x00000000 0x8c0c04b4 0x00000000 0xdace6b0b +
0x797bbad8 0x00000000 0xb4b33438 0x078cd311
WRITEMSKIO 0x0000061ed2ddc900 0x0f0f 0x00000000 0x9d23aa54 0x00000000 0xbe20945b
READBLK 0x000000199e2ad540 +
0x64c3da60 0xe928e64d 0x50ebf0d3 0x71927016 +
0x3eb08790 0x616c3dde 0x0ff30884 0x6dcfc481 +
0xf93ccfd0 0x8c0c04b4 0xeca791ba 0xdace6b0b +
0x797bbad8 0x73a40939 0xb4b33438 0x078cd311
WRITEIO 0x00000603d5489f80 8 0x9443b8cc 0x2aa69c9d
WRITEBLK 0x0000001eb606d400 +
0x483132ba 0xcad519b3 0x9ff205f7 0x06d570dc +
0xea4f99a6 0xfb7d942f 0x0b8e58a4 0xe3640882 +
0x14bb53a4 0xfcb71883 0x37d90df9 0xba388478 +
0x670c4cb6 0x0e15342e 0x8ab2037a 0x5513cc01
READMSKIO 0x0000061ed2ddc900 0x0f0f 0x00000000 0x9d23aa54 0x00000000 0xbe20945b
WRITEBLKIO 0x0000061c2fde6480 +
0x92d17f35 0x3f2fb685 0x4519f8d0 0xcccfa5ce +
0xab6d976e 0x84af6087 0xb831db9b 0x6a32c3a1 +
0xbf5c2005 0x8d2f47ab 0x5c05704d 0x0d872503 +
0x3c4641c9 0x0a726d39 0x981df3cc 0xc7c5f816
READBLKIO 0x0000061c2fde6480 +
0x92d17f35 0x3f2fb685 0x4519f8d0 0xcccfa5ce +
0xab6d976e 0x84af6087 0xb831db9b 0x6a32c3a1 +
0xbf5c2005 0x8d2f47ab 0x5c05704d 0x0d872503 +
0x3c4641c9 0x0a726d39 0x981df3cc 0xc7c5f816
WRITEMSK 0x0000001eb606d400 0x0f0ff0ff0f0fffff +
0x00000000 0x73eb3165 0x00000000 0x319a4f4d +
0x62e04682 0x00000000 0xea9c9778 0x1c33efce +
0x00000000 0xbf52832e 0x00000000 0x3f3c49d6 +
0xd3fc0b42 0xa53e62ef 0x31f18a07 0x06f36f5e
WRITEBLKIO 0x000006132bee61c0 +
0x31ee9f5e 0x023c3663 0x98c1dcae 0x0a60518e +
0x9c991bd9 0xddd6dd8c 0x28e8d516 0x199db66b +
0xf778189b 0xf6b25551 0xfe7c310a 0x8eb7d42d +
0x3b18afc2 0xb833b517 0xbdd110f7 0x3cf2fecd
READIO 0x00000603d5489f80 8 0x9443b8cc 0x2aa69c9d
READBLKIO 0x000006132bee61c0 +
0x31ee9f5e 0x023c3663 0x98c1dcae 0x0a60518e +
0x9c991bd9 0xddd6dd8c 0x28e8d516 0x199db66b +
0xf778189b 0xf6b25551 0xfe7c310a 0x8eb7d42d +
0x3b18afc2 0xb833b517 0xbdd110f7 0x3cf2fecd
WRITEBLK 0x00000019da5c3b00 +
0x857debe2 0xbe2dd77e 0xb8436cd0 0x406d5d39 +
0x7ec922da 0xe85a9ac6 0x170ce7dc 0xff879030 +
0x65023a80 0xa2c28463 0xebdd37ed 0x82daa23e +
0x86351675 0xc4061f20 0x08ab6f17 0x697d023c
WRITEMSK 0x0000001eb606d400 0x0ffff00fffffff0f +
0x00000000 0xf3d92c86 0xb7276ea1 0xb285711f +
0x37c0e8b9 0x00000000 0x00000000 0x3afda8c9 +
0x65392dcf 0x71a984ee 0xd904b5aa 0x66178b69 +
0x604309d7 0x50f34d75 0x00000000 0x9ca61872
WRITEBLKIO 0x0000060a58d77bc0 +
0x04733501 0xfdb7b45a 0x6964a744 0x2ab4b77e +
0x8e792773 0xe758f91a 0xdb368fd0 0x28ae0e2c +
0x811c87b5 0xca57244d 0xa0ef4771 0x80584fa3 +
0x46ab42f1 0xeb74a868 0x99f8dd8d 0xa3ea2510
WRITEMSKIO 0x000006190285f780 0x0ff0 0x00000000 0x2d62a136 0x273103dc 0x00000000
WRITEMSK 0x0000001eb606d400 0x0fff000ff0000f00 +
0x00000000 0xb73d66df 0x5e408852 0xa57b49c3 +
0x00000000 0x00000000 0x00000000 0xbd30a8f0 +
0xe1423aae 0x00000000 0x00000000 0x00000000 +
0x00000000 0x10186c31 0x00000000 0x00000000
WRITEIO 0x0000060acbaf7080 8 0x129231b3 0x8ad0d41f
READMSKIO 0x000006190285f780 0x0ff0 0x00000000 0x2d62a136 0x273103dc 0x00000000
WRITEMSK 0x0000001eb606d400 0xff0ffff00f0000ff +
0xd97d7483 0x060528c5 0x00000000 0xfbfe0a7d +
0xd91bd6d9 0x92be441f 0xf495b43e 0x00000000 +
0x00000000 0x13f75e41 0x00000000 0x00000000 +
0x00000000 0x00000000 0xf87eb497 0x2b74b900
WRITEMSK 0x0000001eb606d400 0xf0f000f0f0ffffff +
0xd0af2864 0x00000000 0xf43ca06a 0x00000000 +
0x00000000 0x00000000 0x44419ab2 0x00000000 +
0x57df42b1 0x00000000 0x5dbfca77 0xcc6ebc0f +
0x8bcc8363 0xd696bba3 0x08ed644b 0xbb7013fb
READIO 0x0000060acbaf7080 8 0x129231b3 0x8ad0d41f
WRITEMSKIO 0x000006179ae41580 0x0000 0x00000000 0x00000000 0x00000000 0x00000000
READBLK 0x0000001eb606d400 +
0xd0af2864 0x060528c5 0xf43ca06a 0xfbfe0a7d +
0xd91bd6d9 0x92be441f 0x44419ab2 0xbd30a8f0 +
0x57df42b1 0x13f75e41 0x5dbfca77 0xcc6ebc0f +
0x8bcc8363 0xd696bba3 0x08ed644b 0xbb7013fb
READBLK 0x00000019da5c3b00 +
0x857debe2 0xbe2dd77e 0xb8436cd0 0x406d5d39 +
0x7ec922da 0xe85a9ac6 0x170ce7dc 0xff879030 +
0x65023a80 0xa2c28463 0xebdd37ed 0x82daa23e +
0x86351675 0xc4061f20 0x08ab6f17 0x697d023c
WRITEIO 0x0000060c8f847100 16 0x52eafacd 0xb6a94b5e 0x1467e1f4 0xe6839c61
READBLKIO 0x0000060a58d77bc0 +
0x04733501 0xfdb7b45a 0x6964a744 0x2ab4b77e +
0x8e792773 0xe758f91a 0xdb368fd0 0x28ae0e2c +
0x811c87b5 0xca57244d 0xa0ef4771 0x80584fa3 +
0x46ab42f1 0xeb74a868 0x99f8dd8d 0xa3ea2510
WRITEIO 0x000006101a5dc8c0 4 0x2d495d96
READMSKIO 0x000006179ae41580 0x0000 0x00000000 0x00000000 0x00000000 0x00000000
WRITEMSKIO 0x00000611d6e72340 0xff00 0xe0e484cc 0x8a1f5329 0x00000000 0x00000000
WRITEIO 0x0000061ae00222c0 8 0x42d73e68 0x99d089ec
WRITEBLK 0x0000000c7503df40 +
0xcfa47b92 0x27d4daf6 0x87552ca5 0xdc23e7cd +
0xb47e422a 0xe25212f2 0xc1667013 0xed4dbd93 +
0x40683a27 0xcc6264fa 0xf47f74b3 0xcf3e4c35 +
0x280113f5 0xfbc4d997 0x33d876df 0xf6ed7c1a
WRITEBLKIO 0x000006135c907040 +
0x35d41acb 0x00c0b98f 0x856f49e2 0xbcfb9858 +
0x8195a37e 0xb56158de 0x985232f8 0xaeff866f +
0xdee69a83 0x8db1cc65 0x63652a9b 0xe61605a9 +
0x1d2149fb 0xc198fe0e 0xcd354fd5 0x79e616a6
WRITEMSK 0x0000000c7503df40 0x0fff0ff00f0ff00f +
0x00000000 0x5fa03a7e 0xf0e783d7 0x3b77ad95 +
0x00000000 0xef0aa4f0 0xece23867 0x00000000 +
0x00000000 0xf43a0438 0x00000000 0xc4ad8615 +
0xed1b7717 0x00000000 0x00000000 0x6edb491c
WRITEMSK 0x0000000c7503df40 0xf0ff00f00ff0ff0f +
0x05b07825 0x00000000 0x8babe823 0xadfd2fe6 +
0x00000000 0x00000000 0xb5b677d7 0x00000000 +
0x00000000 0x6e1e5609 0x322c0730 0x00000000 +
0xa2d98455 0x64fa36ba 0x00000000 0x7d00e56b
READBLKIO 0x000006135c907040 +
0x35d41acb 0x00c0b98f 0x856f49e2 0xbcfb9858 +
0x8195a37e 0xb56158de 0x985232f8 0xaeff866f +
0xdee69a83 0x8db1cc65 0x63652a9b 0xe61605a9 +
0x1d2149fb 0xc198fe0e 0xcd354fd5 0x79e616a6
WRITEBLK 0x0000001755411540 +
0xa9d8c1fc 0x245f700e 0x5c00e749 0xe3e6f2d6 +
0x69e43114 0x4974f918 0xa8eb9db3 0x3dc583b6 +
0x082022e5 0xf0324042 0x8c5244bc 0x244cda7e +
0xa3e1366c 0xfdc42817 0x44b9121c 0x325f9cd2
READIO 0x0000060c8f847100 16 0x52eafacd 0xb6a94b5e 0x1467e1f4 0xe6839c61
WRITEIO 0x000006108e76d5c0 16 0x2cf191d9 0xedf12398 0x8bed3195 0x40b22d75
READMSKIO 0x00000611d6e72340 0xff00 0xe0e484cc 0x8a1f5329 0x00000000 0x00000000
WRITEBLKIO 0x0000060b28a60f00 +
0x4246f0b3 0x1771f9b2 0xfe069953 0x37fbbd1a +
0x5ec0f17b 0x9e3cd35f 0x94ace666 0x886fc789 +
0xf69ae54a 0x37c9ba4c 0x5cd4d298 0x248b861a +
0xc8156ef8 0xc7d438ee 0xde8b000b 0x82cd930a
WRITEIO 0x00000606e37a99c0 4 0xa5cad0bc
READBLKIO 0x0000060b28a60f00 +
0x4246f0b3 0x1771f9b2 0xfe069953 0x37fbbd1a +
0x5ec0f17b 0x9e3cd35f 0x94ace666 0x886fc789 +
0xf69ae54a 0x37c9ba4c 0x5cd4d298 0x248b861a +
0xc8156ef8 0xc7d438ee 0xde8b000b 0x82cd930a
WRITEMSKIO 0x000006012162d500 0xfff0 0x35d957f6 0xab442bf9 0xbe067b6b 0x00000000
WRITEBLKIO 0x000006103cea5900 +
0x15832390 0x0320b704 0xd3dc4ba3 0x646c9270 +
0x073d39c0 0xc29a9e3e 0xdbfa07e9 0x26217430 +
0x4bdfc68c 0x4d10ea27 0x9c507a75 0x2430dd75 +
0xc306b6fc 0x3e771942 0x00d90af3 0x48d6eebc
READMSKIO 0x000006012162d500 0xfff0 0x35d957f6 0xab442bf9 0xbe067b6b 0x00000000
WRITEMSK 0x0000000c7503df40 0x0000f00f00f0f00f +
0x00000000 0x00000000 0x00000000 0x00000000 +
0x9e4e0746 0x00000000 0x00000000 0x0e958a29 +
0x00000000 0x00000000 0x2b5c618d 0x00000000 +
0xe86e5e37 0x00000000 0x00000000 0xe4d5680f
WRITEBLK 0x00000006f8efccc0 +
0x13b2f7ad 0x47bfa28d 0x7a25c4b1 0x5c3ab762 +
0x843834bc 0xae5c3792 0xf5d1e268 0x354edbaf +
0x1a5a2ad9 0x2d4ee6f0 0x8b168960 0x04e6b5a7 +
0x1249f385 0x4922c553 0xd9a5af17 0x79725de8
WRITEIO 0x00000608a0a5e680 8 0x29e6ebdf 0x62d8b8c6
WRITEBLK 0x0000000384e9f240 +
0xbd316501 0x698cf4d0 0x179cc189 0x010fa6c0 +
0x49363d32 0x5d44a14e 0x7d552e03 0xade14666 +
0x01b56f72 0x0a43fc26 0x51744079 0x0d8cebb5 +
0x4c00382f 0x5c21cf92 0xa634adde 0xa206eba0
WRITEMSKIO 0x0000060fdd1a3740 0xff00 0xd7a25a2f 0x7407aca4 0x00000000 0x00000000
READIO 0x000006101a5dc8c0 4 0x2d495d96
READBLKIO 0x000006103cea5900 +
0x15832390 0x0320b704 0xd3dc4ba3 0x646c9270 +
0x073d39c0 0xc29a9e3e 0xdbfa07e9 0x26217430 +
0x4bdfc68c 0x4d10ea27 0x9c507a75 0x2430dd75 +
0xc306b6fc 0x3e771942 0x00d90af3 0x48d6eebc
WRITEBLK 0x0000000c434b0080 +
0x4ab363d5 0x11b52a02 0x3ae1f15e 0x33b8cc6f +
0xfd0ed8a3 0x29cb040a 0x09cbaa8e 0x2a5eb1d2 +
0xd21223df 0x20f5eb36 0xe23f3ee8 0x6c6b4076 +
0x8d07a93e 0xe87da869 0xee4186e5 0x2e8d625b
READIO 0x0000061ae00222c0 8 0x42d73e68 0x99d089ec
READIO 0x000006108e76d5c0 16 0x2cf191d9 0xedf12398 0x8bed3195 0x40b22d75
WRITEIO 0x000006123c16cac0 8 0xddc5db9a 0xf00bff82
READIO 0x00000606e37a99c0 4 0xa5cad0bc
WRITEMSKIO 0x00000611f3868980 0x0f00 0x00000000 0xe3350b6f 0x00000000 0x00000000
WRITEMSKIO 0x0000061d1fa9eb40 0xff00 0xd0ff50af 0xd455fdbb 0x00000000 0x00000000
WRITEBLK 0x0000001449684dc0 +
0x86e0bb4b 0x8d2e7740 0x358021d7 0x65b7e07b +
0xf2f15b11 0x2e823818 0xa76c2dd3 0x0f48c9d1 +
0xb7fe5634 0x25c6f3fc 0x4b0b26ea 0x047f9009 +
0xad26c819 0xcf223ad7 0xd1096aa6 0xd0c02706
WRITEBLK 0x00000003bbc58980 +
0xce002f8b 0xa958a918 0x0d6893c8 0x22ad7638 +
0x00c1f13d 0x39cf368c 0x9614713e 0x798b7967 +
0xe5c6fc34 0xf46dd395 0xf74fcf0e 0x07b51316 +
0xf7b83021 0xf7cfd5e7 0x7d90a853 0xffb28bfe
READIO 0x00000608a0a5e680 8 0x29e6ebdf 0x62d8b8c6
WRITEMSKIO 0x0000060ecb695480 0xf0ff 0x77dd5505 0x00000000 0xe68af9bc 0x2f992a21
READIO 0x000006123c16cac0 8 0xddc5db9a 0xf00bff82
WRITEMSK 0x0000000c7503df40 0x00f0f0000f00f00f +
0x00000000 0x00000000 0x4d0a8bad 0x00000000 +
0x063a4b1a 0x00000000 0x00000000 0x00000000 +
0x00000000 0x38e17f68 0x00000000 0x00000000 +
0xbcebc54c 0x00000000 0x00000000 0xb0aa48c0
READMSKIO 0x0000060fdd1a3740 0xff00 0xd7a25a2f 0x7407aca4 0x00000000 0x00000000
WRITEBLKIO 0x00000605b7fed4c0 +
0xbfa6055e 0x21e9d9bf 0x7126853a 0xce153b15 +
0x938205f9 0x10dddc2b 0x4f9715fe 0x1930783d +
0x15126c29 0xf15a4348 0xff1e1696 0x6d4b66bf +
0x4a95e12b 0x8321bfd0 0xd3726847 0x1674d624
WRITEMSKIO 0x0000060eb3b36340 0x0fff 0x00000000 0x1722ac13 0x2e1c0094 0xef4c0466
READMSKIO 0x00000611f3868980 0x0f00 0x00000000 0xe3350b6f 0x00000000 0x00000000
WRITEIO 0x000006014ac41580 4 0xfb8b7ffa
READMSKIO 0x0000061d1fa9eb40 0xff00 0xd0ff50af 0xd455fdbb 0x00000000 0x00000000
READMSKIO 0x0000060ecb695480 0xf0ff 0x77dd5505 0x00000000 0xe68af9bc 0x2f992a21
READBLK 0x0000000c7503df40 +
0x05b07825 0x5fa03a7e 0x4d0a8bad 0xadfd2fe6 +
0x063a4b1a 0xef0aa4f0 0xb5b677d7 0x0e958a29 +
0x40683a27 0x38e17f68 0x2b5c618d 0xc4ad8615 +
0xbcebc54c 0x64fa36ba 0x33d876df 0xb0aa48c0
WRITEMSKIO 0x0000061721f05040 0xfff0 0x45f8f749 0xb8987a78 0x3c4e8a07 0x00000000
WRITEMSKIO 0x0000061f68c874c0 0x0ff0 0x00000000 0x7fc98315 0x12f29fd7 0x00000000
READBLK 0x0000001755411540 +
0xa9d8c1fc 0x245f700e 0x5c00e749 0xe3e6f2d6 +
0x69e43114 0x4974f918 0xa8eb9db3 0x3dc583b6 +
0x082022e5 0xf0324042 0x8c5244bc 0x244cda7e +
0xa3e1366c 0xfdc42817 0x44b9121c 0x325f9cd2
READBLKIO 0x00000605b7fed4c0 +
0xbfa6055e 0x21e9d9bf 0x7126853a 0xce153b15 +
0x938205f9 0x10dddc2b 0x4f9715fe 0x1930783d +
0x15126c29 0xf15a4348 0xff1e1696 0x6d4b66bf +
0x4a95e12b 0x8321bfd0 0xd3726847 0x1674d624
READIO 0x000006014ac41580 4 0xfb8b7ffa
WRITEBLK 0x0000000f0bb7e380 +
0x2265ecfc 0xcb466fee 0x5faf3cb0 0x9a86f858 +
0x3c273b50 0xb1c18858 0xee91d642 0x19c1b1c8 +
0x8e87c1fb 0x36420eb0 0xe4f180bc 0x7db29568 +
0x2011cf67 0x82bf0078 0x7dae58aa 0x8d0e2936
WRITEIO 0x0000060333b66000 8 0x40ae70e6 0x9f49e7e1
WRITEBLKIO 0x0000060cb291f240 +
0x85296426 0xd0d3b7fa 0x6489e7fb 0xd2356027 +
0x3cea5ead 0x7e2441cb 0xcdff7c2e 0xfbccdfd3 +
0x3ef4610c 0x206853f3 0x51ed6c60 0x69d6db53 +
0xfa4c601e 0x2c8d8db4 0x37e81010 0xeb7498cd
READBLKIO 0x0000060cb291f240 +
0x85296426 0xd0d3b7fa 0x6489e7fb 0xd2356027 +
0x3cea5ead 0x7e2441cb 0xcdff7c2e 0xfbccdfd3 +
0x3ef4610c 0x206853f3 0x51ed6c60 0x69d6db53 +
0xfa4c601e 0x2c8d8db4 0x37e81010 0xeb7498cd
WRITEIO 0x0000060a414190c0 8 0x4769acb5 0x9528fb4d
READBLK 0x00000006f8efccc0 +
0x13b2f7ad 0x47bfa28d 0x7a25c4b1 0x5c3ab762 +
0x843834bc 0xae5c3792 0xf5d1e268 0x354edbaf +
0x1a5a2ad9 0x2d4ee6f0 0x8b168960 0x04e6b5a7 +
0x1249f385 0x4922c553 0xd9a5af17 0x79725de8
WRITEBLK 0x00000016dff22f80 +
0x9d4f00f0 0x8761ba4d 0x12bc9cb4 0x9ef93c83 +
0x585dd20c 0x572af640 0x886298b5 0xc4351cb1 +
0xeb7001ac 0x939049f1 0xbd05cf38 0x2ae84dea +
0xfa6aa0be 0xb6dce19b 0x6b2802d8 0x3d3f924e
WRITEIO 0x0000061cf7b7b300 4 0x4bd75aed
WRITEBLKIO 0x0000061ec134ea80 +
0x49a99414 0x8b22f3a7 0x63fc26b4 0x8bfd3bc8 +
0x32b81a2e 0xdab80efe 0x6b9fcd69 0xd21972a7 +
0x128c1272 0x6997944a 0x245fea39 0xfc607bb9 +
0x5b99c847 0xa564491e 0x8f28f7c1 0x00e361f0
BA LABEL_0
| trivoldus28/pulsarch-verilog | verif/diag/assembly/raw_random/pio_rnd_basic3_byte_addr/pio_rnd_basic3_byte_addr_rand_0_sjm/sjm_5.cmd | bat | gpl-2.0 | 15,513 |
SET SVMMEX=C:\SVM_MEX601
set PATH=%PATH%;%SVMMEX%\WIN\BIN
@echo off
echo ---------------------------------------------------------------------
echo REQUIREMENTS:
echo (1) Ensure that "mex.bat" is in your path
echo (2) Copy or Unzip SVM Light 6.01 source files
echo into the "src" subdirectory
echo ---------------------------------------------------------------------
pause
echo Patching the svm source
cd src
rem patch -p1 < ../patch_svm601
patch -p1 --binary < ../patch_svm601
pause
echo Compiling (using mex.bat)
cd ../bin
echo Compiling mexsvmlearn
cmd /c mex -g -DMATLAB_MEX -DMEX_MEMORY -I../src ../src/mexsvmlearn.c ../src/global.c ../src/svm_learn.c ../src/svm_common.c ../src/svm_hideo.c ../src/mexcommon.c ../src/mem_clean.c
echo Compiling mexsvmclassify
cmd /c mex -O -DMATLAB_MEX -DMEX_MEMORY -I../src ../src/mexsvmclassify.c ../src/global.c ../src/svm_learn.c ../src/svm_common.c ../src/svm_hideo.c ../src/mexcommon.c ../src/mem_clean.c
echo Compiling mexsinglekernel
cmd /c mex -O -DMATLAB_MEX -DMEX_MEMORY -I../src ../src/mexsinglekernel.c ../src/global.c ../src/svm_learn.c ../src/svm_common.c ../src/svm_hideo.c ../src/mexcommon.c ../src/mem_clean.c
echo Compiling mexkernel
cmd /c mex -O -DMATLAB_MEX -DMEX_MEMORY -I../src ../src/mexkernel.c ../src/global.c ../src/svm_learn.c ../src/svm_common.c ../src/svm_hideo.c ../src/mexcommon.c ../src/mem_clean.c
cd ..
| vdel/BMVC10 | libs/svm_mex/install.bat | bat | gpl-2.0 | 1,436 |
cmd_lib/extable.o := /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,lib/.extable.o.d -nostdinc -isystem /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(extable)" -D"KBUILD_MODNAME=KBUILD_STR(extable)" -c -o lib/.tmp_extable.o lib/extable.c
deps_lib/extable.o := \
lib/extable.c \
$(wildcard include/config/modules.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/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/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
$(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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/posix_types.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/hwcap.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/linkage.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/irqflags.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \
include/linux/bitops.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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 \
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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
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) \
$(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 \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/atomic.h \
$(wildcard include/config/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/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/compaction.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/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/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/wait.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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 \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/errno.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/sparsemem.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/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 \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/elf.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
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/rcutiny.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/sort.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/uaccess.h \
/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
lib/extable.o: $(deps_lib/extable.o)
$(deps_lib/extable.o):
| doadin/samsung-kernel-msm7x30-Doadin | lib/.extable.o.cmd | bat | gpl-2.0 | 16,203 |
cmd_kernel/irq/spurious.o := arm-eabi-gcc -Wp,-MD,kernel/irq/.spurious.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(spurious)" -D"KBUILD_MODNAME=KBUILD_STR(spurious)" -c -o kernel/irq/spurious.o kernel/irq/spurious.c
deps_kernel/irq/spurious.o := \
kernel/irq/spurious.c \
include/linux/jiffies.h \
include/linux/math64.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 \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/smp.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/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 \
/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 \
/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/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.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) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/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 \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.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/sparse/irq.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/numa/migrate/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/errno.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/string.h \
include/linux/irqreturn.h \
include/linux/irqnr.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
include/linux/percpu.h \
$(wildcard include/config/modules.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/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/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) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/topology.h \
include/asm-generic/topology.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) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/hw_irq.h \
include/linux/module.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) \
$(wildcard include/config/sysfs.h) \
include/linux/stat.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/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/kallsyms.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.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/keys.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/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/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/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/rbtree.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/sem.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 \
include/linux/signal.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 \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.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 \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/workqueue.h \
include/linux/aio_abi.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 \
include/linux/irq_cpustat.h \
kernel/irq/spurious.o: $(deps_kernel/irq/spurious.o)
$(deps_kernel/irq/spurious.o):
| HCDRJacob/wildfire-kernel | kernel/irq/.spurious.o.cmd | bat | gpl-2.0 | 145,913 |
cmd_arch/arm/lib/csumpartial.o := /home/rms/EXP/scripts/gcc-wrapper.py arm-eabi-gcc -Wp,-MD,arch/arm/lib/.csumpartial.o.d -nostdinc -isystem /home/rms/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/rms/EXP/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/csumpartial.o arch/arm/lib/csumpartial.S
source_arch/arm/lib/csumpartial.o := arch/arm/lib/csumpartial.S
deps_arch/arm/lib/csumpartial.o := \
/home/rms/EXP/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/rms/EXP/arch/arm/include/asm/linkage.h \
/home/rms/EXP/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/rms/EXP/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/rms/EXP/arch/arm/include/asm/hwcap.h \
/home/rms/EXP/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
arch/arm/lib/csumpartial.o: $(deps_arch/arm/lib/csumpartial.o)
$(deps_arch/arm/lib/csumpartial.o):
| R-M-S/RMS_DragunKernal_V.10-MAX-8-29-2012_3.0.42 | arch/arm/lib/.csumpartial.o.cmd | bat | gpl-2.0 | 2,006 |
docker-compose logs -f --tail=100 | alfaluck/qrl-node-docker | tools/logs.cmd | bat | gpl-3.0 | 33 |
:: List all Microsoft Security Patches
wmic qfe list
wmic bios getserialnumber
wmic bios get
:: Set password to never expire.
wmic path Win32_UserAccount where Name='xxxxxx' set PasswordExpires=false
:: Uninstall products named like 'Java'
wmic product where "Name like '%Java%'" call uninstall
@echo off
cls
wmic csproduct get name
wmic bios get serialnumber
wmic bios get SMBIOSBIOSVersion
pause >nul
::
@echo off
echo Don't forget to run it as an admin
echo.
echo Compiling list of installed Dell software...
echo.
wmic product where "name like '%%Dell%%'" get name
echo Uninstalling Dell Backup and Recovery Manager
wmic product where "name='Dell Backup and Recovery Manager'" call uninstall
echo Uninstalling Dell Protected Workspace
wmic product where "name='Dell Protected Workspace'" call uninstall
echo Uninstalling Dell Foundation Services
wmic product where "name='Dell Foundation Services'" call uninstall
echo Uninstalling Dell Command ^| Power Manager
wmic product where "name='Dell Command | Power Manager'" call uninstall
echo Uninstalling Dell Update
wmic product where "name='Dell Update'" call uninstall
::echo Uninstalling Dell Digital Delivery
::wmic product where "name='Dell Digital Delivery'" call uninstall
echo Uninstalling Dell Command ^| Update
wmic product where "name='Dell Command | Update'" call uninstall
echo Uninstalling Dell ControlVault Host Components Installer 64 bit
wmic product where "name='Dell ControlVault Host Components Installer 64 bit'" call uninstall
echo Uninstalling Dell Data Vault
wmic product where "name='Dell Data Vault'" call uninstall
echo.
echo Dell software that is still installed...
echo.
wmic product where "name like '%%Dell%%'" get name`
:: I don't understand these, but study them. Maybe I will learn..
wmic /failfast:on /node:stupidinfecteduser product where "vendor like 'Oracle'" get name
wmic /node:stupidinfecteduser product where name="'Java(TM) 6 Update 29'" call uninstall
| rmavery/favorite-snippets | cmd/wim_commands.bat | bat | gpl-3.0 | 2,017 |
@ECHO OFF
set CLASSPATH=.
set CLASSPATH=%CLASSPATH%;../lib/*
set CLASSPATH=%CLASSPATH%;../lib/batik/*
set CLASSPATH=%CLASSPATH%;../bin/main/
set CLASSPATH=%CLASSPATH%;../bin/test/
set CLASSPATH=%CLASSPATH%;../
%JAVA_HOME%\bin\java de.topobyte.livecg.ShowVisualization %1 %2 %3 %4 %5 %6 %7 %8 %9
| sebkur/live-cg | project/scripts/livecg-visualization.bat | bat | gpl-3.0 | 297 |
:: (c) NorfiPC 2011 - http://norfipc.com
:: Use at your own risk. No warranty express or implied.
:: Permission granted to copy, distribute and modify, provided
:: this message is not removed.
@echo off
mode con cols=56
title Tabla de Caracteres para BATCH
echo.
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º TABLA DE CARACTERES ASCII PARA PROGRAMAS BATCH º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.
echo.
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Codigo º Caracter º
echo ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍ͹
echo º Alt + 7--------------- º º
echo º Alt + 20-------------- º ¶ º
echo º Alt + 21-------------- º § º
echo º Alt + 32-------------- º--------------º
echo º Alt + 33-------------- º ! º
echo º Alt + 34-------------- º " º
echo º Alt + 35-------------- º # º
echo º Alt + 36-------------- º $ º
echo º Alt + 37-------------- º (porciento) º
echo º Alt + 38-------------- º ^& º
echo º Alt + 39-------------- º ' º
echo º Alt + 40-------------- º ( º
echo º Alt + 41-------------- º ) º
echo º Alt + 42-------------- º * º
echo º Alt + 43-------------- º + º
echo º Alt + 44-------------- º , º
echo º Alt + 45-------------- º - º
echo º Alt + 46-------------- º . º
echo º Alt + 47-------------- º / º
echo º Alt + 48-------------- º 0 º
echo º Alt + 49-------------- º 1 º
echo º Alt + 50-------------- º 2 º
echo º Alt + 51-------------- º 3 º
echo º Alt + 52-------------- º 4 º
echo º Alt + 53-------------- º 5 º
echo º Alt + 54-------------- º 6 º
echo º Alt + 55-------------- º 7 º
echo º Alt + 56-------------- º 8 º
echo º Alt + 57-------------- º 9 º
echo º Alt + 58-------------- º : º
echo º Alt + 59-------------- º ; º
echo º Alt + 60-------------- º ^< º
echo º Alt + 61-------------- º = º
echo º Alt + 62-------------- º ^> º
echo º Alt + 63-------------- º ? º
echo º Alt + 64-------------- º @ º
echo º Alt + 65-------------- º A º
echo º Alt + 66-------------- º B º
echo º Alt + 67-------------- º C º
echo º Alt + 68-------------- º D º
echo º Alt + 69-------------- º E º
echo º Alt + 70-------------- º F º
echo º Alt + 71-------------- º G º
echo º Alt + 72-------------- º H º
echo º Alt + 73-------------- º I º
echo º Alt + 74-------------- º J º
echo º Alt + 75-------------- º K º
echo º Alt + 76-------------- º L º
echo º Alt + 77-------------- º M º
echo º Alt + 78-------------- º N º
echo º Alt + 79-------------- º O º
echo º Alt + 80-------------- º P º
echo º Alt + 81-------------- º Q º
echo º Alt + 82-------------- º R º
echo º Alt + 83-------------- º S º
echo º Alt + 84-------------- º T º
echo º Alt + 85-------------- º U º
echo º Alt + 86-------------- º V º
echo º Alt + 87-------------- º W º
echo º Alt + 88-------------- º X º
echo º Alt + 89-------------- º Y º
echo º Alt + 90-------------- º Z º
echo º Alt + 91-------------- º [ º
echo º Alt + 92-------------- º \ º
echo º Alt + 93-------------- º ] º
echo º Alt + 94-------------- º ^^ º
echo º Alt + 95-------------- º _ º
echo º Alt + 96-------------- º ` º
echo º Alt + 97-------------- º a º
echo º Alt + 98-------------- º b º
echo º Alt + 99-------------- º c º
echo º Alt + 100--------------º d º
echo º Alt + 101--------------º e º
echo º Alt + 102--------------º f º
echo º Alt + 103--------------º g º
echo º Alt + 104--------------º h º
echo º Alt + 105--------------º i º
echo º Alt + 106--------------º j º
echo º Alt + 107--------------º k º
echo º Alt + 108--------------º l º
echo º Alt + 109--------------º m º
echo º Alt + 110--------------º n º
echo º Alt + 111--------------º o º
echo º Alt + 112--------------º p º
echo º Alt + 113--------------º q º
echo º Alt + 114--------------º r º
echo º Alt + 115--------------º s º
echo º Alt + 116--------------º t º
echo º Alt + 117--------------º u º
echo º Alt + 118--------------º v º
echo º Alt + 119--------------º w º
echo º Alt + 120--------------º x º
echo º Alt + 121--------------º y º
echo º Alt + 122--------------º z º
echo º Alt + 123--------------º { º
echo º Alt + 124--------------º ^| º
echo º Alt + 125--------------º } º
echo º Alt + 126--------------º ~ º
echo º Alt + 128--------------º Ç º
echo º Alt + 129--------------º ü º
echo º Alt + 130--------------º é º
echo º Alt + 131--------------º â º
echo º Alt + 132--------------º ä º
echo º Alt + 133--------------º à º
echo º Alt + 134--------------º å º
echo º Alt + 135--------------º ç º
echo º Alt + 136--------------º ê º
echo º Alt + 137--------------º ë º
echo º Alt + 138--------------º è º
echo º Alt + 139--------------º ï º
echo º Alt + 140--------------º î º
echo º Alt + 141--------------º ì º
echo º Alt + 142--------------º Ä º
echo º Alt + 143--------------º Å º
echo º Alt + 144--------------º É º
echo º Alt + 145--------------º æ º
echo º Alt + 146--------------º Æ º
echo º Alt + 147--------------º ô º
echo º Alt + 148--------------º ö º
echo º Alt + 149--------------º ò º
echo º Alt + 150--------------º û º
echo º Alt + 151--------------º ù º
echo º Alt + 153--------------º Ö º
echo º Alt + 154--------------º Ü º
echo º Alt + 155--------------º ø º
echo º Alt + 156--------------º £ º
echo º Alt + 157--------------º Ø º
echo º Alt + 158--------------º × º
echo º Alt + 159--------------º º
echo º Alt + 160--------------º á º
echo º Alt + 161--------------º í º
echo º Alt + 162--------------º ó º
echo º Alt + 163--------------º ú º
echo º Alt + 164--------------º ñ º
echo º Alt + 165--------------º Ñ º
echo º Alt + 166--------------º ª º
echo º Alt + 167--------------º º º
echo º Alt + 168--------------º ¿ º
echo º Alt + 169--------------º ® º
echo º Alt + 170--------------º ¬ º
echo º Alt + 171--------------º ½ º
echo º Alt + 172--------------º ¼ º
echo º Alt + 173--------------º ¡ º
echo º Alt + 174--------------º « º
echo º Alt + 175--------------º » º
echo º Alt + 181--------------º Á º
echo º Alt + 182--------------º Â º
echo º Alt + 183--------------º À º
echo º Alt + 184--------------º © º
echo º Alt + 189--------------º ¢ º
echo º Alt + 190--------------º ¥ º
echo º Alt + 198--------------º ã º
echo º Alt + 199--------------º Ã º
echo º Alt + 207--------------º ¤ º
echo º Alt + 208--------------º ð º
echo º Alt + 209--------------º Ð º
echo º Alt + 210--------------º Ê º
echo º Alt + 211--------------º Ë º
echo º Alt + 212--------------º È º
echo º Alt + 214--------------º Í º
echo º Alt + 215--------------º Î º
echo º Alt + 216--------------º Ï º
echo º Alt + 221--------------º ¦ º
echo º Alt + 222--------------º Ì º
echo º Alt + 224--------------º Ó º
echo º Alt + 225--------------º ß º
echo º Alt + 226--------------º Ô º
echo º Alt + 227--------------º Ò º
echo º Alt + 228--------------º õ º
echo º Alt + 229--------------º Õ º
echo º Alt + 230--------------º µ º
echo º Alt + 231--------------º þ º
echo º Alt + 232--------------º Þ º
echo º Alt + 233--------------º Ú º
echo º Alt + 234--------------º Û º
echo º Alt + 235--------------º Ù º
echo º Alt + 236--------------º ý º
echo º Alt + 237--------------º Ý º
echo º Alt + 238--------------º ¯ º
echo º Alt + 239--------------º ´ º
echo º Alt + 240--------------º *** º
echo º Alt + 241--------------º ± º
echo º Alt + 243--------------º ¾ º
echo º Alt + 244--------------º ¶ º
echo º Alt + 245--------------º § º
echo º Alt + 246--------------º ÷ º
echo º Alt + 247--------------º ¸ º
echo º Alt + 248--------------º ° º
echo º Alt + 249--------------º ¨ º
echo º Alt + 250--------------º · º
echo º Alt + 251--------------º ¹ º
echo º Alt + 252--------------º ³ º
echo º Alt + 253--------------º ² º
echo º Alt + 255--------------º--------------º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.
echo.
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º------ USADOS CON FRECUENCIA---------- º
echo ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹
echo º Codigo º Caracter º
echo ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹
echo º Alt + 230--------------º µ º
echo º Alt + 255--------------º--------------º
echo º Alt + 153--------------º Ö º
echo º Alt + 173--------------º ¡ º
echo º Alt + 133--------------º à º
echo º Alt + 189--------------º ¢ º
echo º Alt + 130--------------º é º
echo º Alt + 412--------------º £ º
echo º Alt + 190--------------º ¥ º
echo º Alt + 207--------------º ¤ º
echo º Alt + 249--------------º ¨ º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.
echo.
echo.
echo EQU - igual
echo NEQ - no igual
echo LSS - menor que
echo LEQ - menor que o igual
echo GTR - mayor que
echo GEQ - mayor que o igual
pause>nul | SideMasterGM/Batch | Caracteres.cmd | bat | gpl-3.0 | 10,752 |
#!/bin/bash -x
#SBATCH --job-name=test4x4x4x4_tm_light_1000_3
#SBATCH --mail-type=FAIL,END
#SBATCH --mail-user=bartosz_kostrzewa@fastmail.com
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=1
#SBATCH --mem_bind=verbose
#SBATCH --time=24:00:00
#SBATCH --mem=64200
#SBATCH --gres=gpu:kepler:1
#SBATCH --partition=kepler
#SBATCH --reservation=testing
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/qbigwork/bartek/libs/bleeding_edge/kepler/quda_develop/lib:/opt/cuda/lib64
rundir=/hiskp4/bartek/peram_generation/test/test4x4x4x4/tm_light/cnfg1000/rnd_vec_03
exe=/qbigwork/bartek/build/bleeding_edge/kepler/peram_gen_multigpu.tmLQCD.etmc.quda_develop/main/main
outfile=../outputs/run_1000_03.out
infile=LapH_1000_03.in
export QUDA_RESOURCE_PATH=/qbigwork/bartek/quda_resources/kepler_405d5bf1ac9cdbccbc11ac957e07d822065ac36e
if [ ! -d ${QUDA_RESOURCE_PATH} ]; then
mkdir -p ${QUDA_RESOURCE_PATH}
fi
cd ${rundir}
date > ${outfile}
QUDA_RESOURCE_PATH=${QUDA_RESOURCE_PATH} OMP_NUM_THREADS=2 \
QUDA_ENABLE_GDR=1 QUDA_ENABLE_P2P=1 QUDA_ENABLE_TUNING=1 \
QUDA_ENABLE_DEVICE_MEMORY_POOL=0 \
srun ${exe} -LapHsin ${infile} | tee -a ${outfile}
date >> ${outfile}
| maowerner/sLapH-contractions | tests/integration-L4-new/tm_light/cnfg1000/rnd_vec_03/job.slurm.1000_03.cmd | bat | gpl-3.0 | 1,176 |
@echo off
java -jar %~dp0\DiscoSync.jar %*
| leitwolf7/discosync | bin/discosync.bat | bat | gpl-3.0 | 45 |
cd %1
call %2 ndk-build | stdnull/RunMap | gradle/command/sh-ndk-build.bat | bat | apache-2.0 | 23 |
..\..\Bin\Release\v40\AbstractLexer.Generator.exe Lexer.fsl -o Lexer_lr1.fs --unicode | nbIxMaN/YaccConstructor | src/CheckInterpreter/gen_lex.cmd | bat | apache-2.0 | 85 |
executable = job_dagman_classad-node.pl
arguments = $(DAGManJobId) $(NODE)
universe = local
output = job_dagman_classad-node$(NODE).out
error = job_dagman_classad-node$(NODE).err
# Note: we need getenv = true for the node job to talk to the schedd of
# the personal condor that's running the test.
getenv = true
Notification = NEVER
queue
| htcondor/htcondor | src/condor_tests/job_dagman_classad-node.cmd | bat | apache-2.0 | 367 |
@echo off
REM GREEN BATCH FILE TEMPLATE <you can replace this line with new bat desc>
REM VERSION 0.0.2.1
REM Last updated by greenlaw110@gmail.com at Nov-5-2007
REM created by greenlaw110@gmail.com at some time 2006
setlocal & pushd
if {%1}=={} goto _HELP
if {%1}=={-h} goto _HELP
if {%1}=={--help} goto _HELP
set _PLAY=play-%1
if exist %~dp0.\lgl_set.bat (
set _SET_=%~dp0.\lgl_set.bat
goto _DOIT
)
if exist %_BIN%\lgl_set.bat (
set _SET_=%_BIN%\lgl_set.bat
goto _DOIT
)
set _SET_=lgl_set.bat
:_DOIT
call %_SET_%
if %errorlevel% GTR 0 goto _ERR_NO_ENV
j:
cd \
rmdir play
mklink /d play %_PLAY%
goto _END
:_ERR_NO_ENV
echo Error: Sorry your green batch utility environment is not well setup, possible cause:
echo - You copied a green batch file from it's package directory and use it separately
echo or
echo - The lgl_set.bat file has been removed accidentially.
goto _END
:_HELP
echo switch play version
echo usage:
echo %~nx0 ^<play-version^>
echo current play versions:
dir d:\jc\play*
goto _END
:_END
endlocal & popd
goto:EOF
| greenlaw110/winenv | tbin/chplay.bat | bat | bsd-2-clause | 1,057 |
echo off
::untar model file to get modellasagne.dat and modelNNOctave.dat
.\extra\tar xvf %3
echo "************** Predict from lasagne model ****************"
::This script will create submissionlasagna.tmp file
python ./src/predict.py %1 %2
echo "************** Preprocessing Test data ****************"
::This script will create preprocesstest.csv used by prdict.m script
python ./src/preprocess.py %1 test
echo "************** Predict From NN Model ****************"
octave-cli.exe ./src/predict.m
echo "************** End ****************"
del /f modellasagne.dat modelNNOctave.dat preprocesstest.csv submissionlasagna.tmp
| nhlx5haze/Kaggle_WestNileVirus | predict.bat | bat | bsd-3-clause | 634 |
pip3 install -r requirements.txt | disconsented/FAP | deps.bat | bat | mit | 32 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCMSG.S01_CreateAndSaveMessage.MSOXCMSG_S01_TC12_RopSaveChangeMessageWithReadOnlyProperty /testcontainer:..\..\MS-OXCMSG\TestSuite\bin\Debug\MS-OXCMSG_TestSuite.dll /runconfig:..\..\MS-OXCMSG\MS-OXCMSG.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeMAPI/Source/Scripts/MS-OXCMSG/RunMSOXCMSG_S01_TC12_RopSaveChangeMessageWithReadOnlyProperty.cmd | bat | mit | 323 |
c:
cd C:\Users\geoimages\angular-seed\app\python
REM python BatchFeatureExtract.py
python ImageDataWriter.py
| dbk138/ImageRegionRecognition-FrontEnd | app/python/BatchFeatureExtract.bat | bat | mit | 109 |
git pull
git add --all .
git commit -m "them san pham"
git push origin source | lethithanhthuy/lethithanhthuy.github.io | update.bat | bat | mit | 77 |
node server.js
pause
| psmokotnin/01v96-remote | 01v96-remote-server.bat | bat | mit | 21 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXWSCORE.S04_ManageEmailItems.MSOXWSCORE_S04_TC09_OperateMultipleEmailItemsSuccessfully /testcontainer:..\..\MS-OXWSCORE\TestSuite\bin\Debug\MS-OXWSCORE_TestSuite.dll /runconfig:..\..\MS-OXWSCORE\MS-OXWSCORE.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeWebServices/Source/Scripts/MS-OXWSCORE/RunMSOXWSCORE_S04_TC09_OperateMultipleEmailItemsSuccessfully.cmd | bat | mit | 328 |
net stop ${Service Name} | RDK-Demo/mysql | src/mysql/MySQLStopService1415599639859.bat | bat | epl-1.0 | 24 |
#!/usr/bin/tcsh
#@ initialdir = /homes/r31/lizhongz/parms/examples/grid
#@resources = ConsumableMemory(1024)
#@blocking = unlimited
#@requirements = (Feature == "Fastp655")
#@ output = test
#@ error = test.err
#@ job_type = parallel
#@ wall_clock_limit = 1:00:00
#@ network.MPI = css0,shared,US
#@ node = 4
#@ total_tasks = 4
#@ node_usage = shared
#@ queue
poe ./dd-grid.ex
| DominicJones/cfdpack | lib/pARMS_3.3/examples/grid/extras/dd-grid-pwr.cmd | bat | gpl-3.0 | 393 |
@echo off
set ACTIVEMQ_HOME="/opt/activemq"
set ACTIVEMQ_BASE="/opt/iot-spec/example/broker"
set PARAM=%1
:getParam
shift
if "%1"=="" goto end
set PARAM=%PARAM% %1
goto getParam
:end
%ACTIVEMQ_HOME%/bin/activemq %PARAM% | dejanb/iot-spec | example/activemq/bin/activemq.bat | bat | apache-2.0 | 221 |
RD /S /Q C:\Builds\GeoportalServer\10.3_CSWClients\Sources\AppLogger\trunk
RD /S /Q C:\Builds\GeoportalServer\10.3_CSWClients\Sources\Geoportal\trunk\src\gpt\search\profiles
XCOPY C:\Repositories\geoportal-server\components\desktop\AppLogger\trunk\*.* C:\Builds\GeoportalServer\10.3_CSWClients\Sources\AppLogger\trunk /E /I /Y
XCOPY C:\Repositories\geoportal-server\geoportal\src\gpt\search\profiles\*.* C:\Builds\GeoportalServer\10.3_CSWClients\Sources\Geoportal\trunk\src\gpt\search\profiles /E /I /Y
| GeoinformationSystems/geoportal-server | components/desktop/CswClient/branches/10.3/InstallSupport/PreCompile.bat | bat | apache-2.0 | 505 |
cd /d %~dp0
cd Release
echo Starting NFMasterServer...
start "NFMasterServer" "NFServer.exe" "Server=MasterServer" "ID=3" "Plugin=Plugin.xml"
choice /t 2 /d y /n >nul
echo Starting NFWorldServer...
start "NFWorldServer" "NFServer.exe" "Server=WorldServer" "ID=7" "Plugin=Plugin.xml"
choice /t 5 /d y /n >nul
echo Starting NFLoginServer...
start "NFLoginServer" "NFServer.exe" "Server=LoginServer" "ID=4" "Plugin=Plugin.xml"
choice /t 5 /d y /n >nul
echo Starting NFDBServer...
start "NFDBServer" "NFServer.exe" "Server=DBServer" "ID=8" "Plugin=Plugin.xml"
choice /t 2 /d y /n >nul
echo Starting NFGameServer...
start "NFGameServer" "NFServer.exe" "Server=GameServer" "ID=16001" "Plugin=Plugin.xml"
choice /t 2 /d y /n >nul
echo Starting NFProxyServer...
start "NFProxyServer" "NFServer.exe" "Server=ProxyServer" "ID=5" "Plugin=Plugin.xml"
| ketoo/NoahGameFrame | _Out/runr.bat | bat | apache-2.0 | 858 |
@echo off
neko remoting.n
pause | pleclech/hacking-haxe | tests/unit/server.bat | bat | mit | 31 |
inject.exe --run "E:\Games\SteamLibrary\steamapps\common\theHunter\game\theHunter.exe" --inject --steam-app-id 253710 --export Load --add-path --path-resolution --module cerberus.dll | geota/hadesmem | scripts/x86/th.bat | bat | mit | 182 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.