code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
@echo off break ON rem fichiers BAT et fork créés par Sébastien CANET cls SET currentpath=%~dp1 SET dossier_scratch="Scratch 2.exe" start %dossier_scratch% "S:\Perso\GitHub\technologies\s2a_fr\bibliotheque\fichier_depart_s2a.sb2"
technologiescollege/s2a_fr
Scratch2.bat
bat
gpl-3.0
229
@echo off rem gnu.cmd {ls|cp|mv|rm|mkdir} [-vfpr] param1 [param2 ...] rem ==================================================++ for %%o in (v f p r) do set opt%%o=N for %%v in (mode last list terr) do set %%v=& rem rem set all=%* &rem for %%a in (%all:/=\%) do call :proc_param %%a rem set terr=bad or missed command: '%mode%' for %%c in (ls cp mv rm mkdir) do if /i "%mode%" == "%%c" (set terr=& set mode=%%c) if not "" == "%terr%" goto :param_errors set terr=missed '%mode%' parameter(s) goto :do_%mode% rem ========================================= :proc_param set aa=%1 if "-" == "%aa:~0,1%" goto :proc_opt if "" == "%mode%" set mode=%aa%& goto :EOF if not "" == "%last%" set list=%list% %last% set last=%aa% if "\" == "%aa:~-1%" set last=%aa:~0,-1% goto :EOF :proc_opt set aa=%aa:~1% if not "" == "%aa%" set opt%aa:~0,1%=Y& goto :proc_opt goto :EOF :show_op if not "Y" == "%optv%" goto :EOF set p1=%2& set p2=%3 if exist %p1%\* set p1=%p1%\ if not "" == "%p2%" if exist %p2%\* set p2=%p2%\ echo %1 %p1% %p2% goto :EOF :cmd_errors set terr='%mode%' failed :param_errors echo.& echo gnu.cmd ERROR: %terr% exit 1 rem ========================================= :do_ls for %%a in (%list% %last%) do echo %%a goto :EOF :do_cp :do_mv if "" == "%list%" goto :param_errors set op=copy& if "mv" == "%mode%" set op=move for %%a in (%list%) do call :show_op %op% %%a %last%& %op% /y %%a %last% 1>NUL|| goto :cmd_errors goto :EOF :do_mkdir if "" == "%last%" goto :param_errors for %%a in (%list% %last%) do if not exist %%a\* (call :show_op mkdir %%a& mkdir %%a|| goto :cmd_errors) goto :EOF :do_rm rem if "" == "%last%" goto :param_errors for %%a in (%list% %last%) do call :show_op delete %%a& call :rm_one %%a goto :EOF :rm_one if exist %1\* goto :rm_one_dir if exist %1 del /q %1 1>NUL|| goto :cmd_errors goto :EOF :rm_one_dir set op=rd /q& if "Y" == "%optr%" set op=rd /q /s %op% %1|| goto :cmd_errors goto :EOF
FarGroup/FarManager
far/scripts/gnu.cmd
bat
bsd-3-clause
1,993
rem Start Arelle XBRL COM server @set PYTHONDIR=c:\python27 @set PYTHONPATH=..\build\svr-2.7 "%PYTHONDIR%\python" -m arelle.CntlrCmdLine --webserver localhost:8080
sternshus/Arelle
scripts/startWebServer-27.bat
bat
apache-2.0
166
:: Created by npm, please don't edit manually. @IF EXIST "%~dp0"\"node.exe" ( "%~dp0"\"node.exe" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* ) ELSE ( node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* )
johnwalley/coxswain-simulator-2012
utils/nodejs/npm.cmd
bat
mit
208
@echo off echo building prefuse... if "%JAVA_HOME%" == "" goto error set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;.\lib\ant.jar;%CLASSPATH% set ANT_HOME=./lib echo ... using classpath %LOCALCLASSPATH% %JAVA_HOME%\bin\java.exe -Dant.home="%ANT_HOME%" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Main %1 %2 %3 %4 %5 goto end :error echo "... BUILD FAILED" echo " The JAVA_HOME environment variable was not found." echo " Please set the environment variable JAVA_HOME to the location" echo " of your preferred Java installation." :end set LOCALCLASSPATH=
Waller-Lab/CompCellScopeTIE
prefuse/build.bat
bat
mit
586
python ..\..\applications\scons\scons.py -C ..\..\..\..\ -c python ..\..\applications\scons\scons.py -C ..\..\..\..\ --enable-debug -c python ..\..\applications\scons\scons.py -C ..\..\..\..\ -c fife-python fife-swig python ..\..\applications\scons\scons.py -C ..\..\..\..\ -c distclean
drolando/SoftDev
build/win32/build_environments/scons/cleanup_engine.bat
bat
lgpl-2.1
287
@ECHO OFF for %%i in ("%~dp0..") do set "folder=%%~fi" ECHO This script will launch OS.js in node using: `node src\server\node\server.js dist` ECHO To stop node server, press CTRL+C pause node "%folder%\src\server\node\server.js"
Rxswyers/OS.js
bin/win-start-dist.cmd
bat
bsd-2-clause
230
@echo off rem *************************************************************************** rem * _ _ ____ _ rem * Project ___| | | | _ \| | rem * / __| | | | |_) | | rem * | (__| |_| | _ <| |___ rem * \___|\___/|_| \_\_____| rem * rem * Copyright (C) 2012 - 2016, Steve Holme, <steve_holme@hotmail.com>. rem * rem * This software is licensed as described in the file COPYING, which rem * you should have received as part of this distribution. The terms rem * are also available at https://curl.haxx.se/docs/copyright.html. rem * rem * You may opt to use, copy, modify, merge, publish, distribute and/or sell rem * copies of the Software, and permit persons to whom the Software is rem * furnished to do so, under the terms of the COPYING file. rem * rem * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY rem * KIND, either express or implied. rem * rem *************************************************************************** :begin rem Check we are running on a Windows NT derived OS if not "%OS%" == "Windows_NT" goto nodos rem Set our variables setlocal set VC_VER= set BUILD_PLATFORM= rem Ensure we have the required arguments if /i "%~1" == "" goto syntax :parseArgs if "%~1" == "" goto prerequisites if /i "%~1" == "vc6" ( set VC_VER=6.0 set VC_DESC=VC6 set "VC_PATH=Microsoft Visual Studio\VC98" ) else if /i "%~1" == "vc7" ( set VC_VER=7.0 set VC_DESC=VC7 set "VC_PATH=Microsoft Visual Studio .NET\Vc7" ) else if /i "%~1" == "vc7.1" ( set VC_VER=7.1 set VC_DESC=VC7.1 set "VC_PATH=Microsoft Visual Studio .NET 2003\Vc7" ) else if /i "%~1" == "vc8" ( set VC_VER=8.0 set VC_DESC=VC8 set "VC_PATH=Microsoft Visual Studio 8\VC" ) else if /i "%~1" == "vc9" ( set VC_VER=9.0 set VC_DESC=VC9 set "VC_PATH=Microsoft Visual Studio 9.0\VC" ) else if /i "%~1" == "vc10" ( set VC_VER=10.0 set VC_DESC=VC10 set "VC_PATH=Microsoft Visual Studio 10.0\VC" ) else if /i "%~1" == "vc11" ( set VC_VER=11.0 set VC_DESC=VC11 set "VC_PATH=Microsoft Visual Studio 11.0\VC" ) else if /i "%~1" == "vc12" ( set VC_VER=12.0 set VC_DESC=VC12 set "VC_PATH=Microsoft Visual Studio 12.0\VC" ) else if /i "%~1" == "vc14" ( set VC_VER=14.0 set VC_DESC=VC14 set "VC_PATH=Microsoft Visual Studio 14.0\VC" ) else if /i "%~1%" == "x86" ( set BUILD_PLATFORM=x86 ) else if /i "%~1%" == "x64" ( set BUILD_PLATFORM=x64 ) else if /i "%~1%" == "debug" ( set BUILD_CONFIG=debug ) else if /i "%~1%" == "release" ( set BUILD_CONFIG=release ) else if /i "%~1" == "-?" ( goto syntax ) else if /i "%~1" == "-h" ( goto syntax ) else if /i "%~1" == "-help" ( goto syntax ) else ( if not defined START_DIR ( set START_DIR=%~1% ) else ( goto unknown ) ) shift & goto parseArgs :prerequisites rem Compiler and platform are required parameters. if not defined VC_VER goto syntax if not defined BUILD_PLATFORM goto syntax rem Default the start directory if one isn't specified if not defined START_DIR set START_DIR=..\..\openssl rem Calculate the program files directory if defined PROGRAMFILES ( set "PF=%PROGRAMFILES%" set OS_PLATFORM=x86 ) if defined PROGRAMFILES(x86) ( set "PF=%PROGRAMFILES(x86)%" set OS_PLATFORM=x64 ) rem Check we have a program files directory if not defined PF goto nopf rem Check we have Visual Studio installed if not exist "%PF%\%VC_PATH%" goto novc rem Check we have Perl in our path echo %PATH% | findstr /I /C:"\Perl" 1>nul if errorlevel 1 ( rem It isn't so check we have it installed and set the path if it is if exist "%SystemDrive%\Perl" ( set "PATH=%SystemDrive%\Perl\bin;%PATH%" ) else ( if exist "%SystemDrive%\Perl64" ( set "PATH=%SystemDrive%\Perl64\bin;%PATH%" ) else ( goto noperl ) ) ) rem Check the start directory exists if not exist "%START_DIR%" goto noopenssl :configure if "%BUILD_PLATFORM%" == "" ( if "%VC_VER%" == "6.0" ( set BUILD_PLATFORM=x86 ) else if "%VC_VER%" == "7.0" ( set BUILD_PLATFORM=x86 ) else if "%VC_VER%" == "7.1" ( set BUILD_PLATFORM=x86 ) else ( set BUILD_PLATFORM=%OS_PLATFORM% ) ) if "%BUILD_PLATFORM%" == "x86" ( set VCVARS_PLATFORM=x86 ) else if "%BUILD_PLATFORM%" == "x64" ( if "%VC_VER%" == "6.0" goto nox64 if "%VC_VER%" == "7.0" goto nox64 if "%VC_VER%" == "7.1" goto nox64 if "%VC_VER%" == "8.0" set VCVARS_PLATFORM=x86_amd64 if "%VC_VER%" == "9.0" set VCVARS_PLATFORM=%BUILD_PLATFORM% if "%VC_VER%" == "10.0" set VCVARS_PLATFORM=%BUILD_PLATFORM% if "%VC_VER%" == "11.0" set VCVARS_PLATFORM=amd64 if "%VC_VER%" == "12.0" set VCVARS_PLATFORM=amd64 if "%VC_VER%" == "14.0" set VCVARS_PLATFORM=amd64 ) :start echo. if "%VC_VER%" == "6.0" ( call "%PF%\%VC_PATH%\bin\vcvars32" ) else if "%VC_VER%" == "7.0" ( call "%PF%\%VC_PATH%\bin\vcvars32" ) else if "%VC_VER%" == "7.1" ( call "%PF%\%VC_PATH%\bin\vcvars32" ) else ( call "%PF%\%VC_PATH%\vcvarsall" %VCVARS_PLATFORM% ) echo. set SAVED_PATH=%CD% if defined START_DIR CD %START_DIR% goto %BUILD_PLATFORM% :x64 rem Calculate our output directory set OUTDIR=build\Win64\%VC_DESC% if not exist %OUTDIR% md %OUTDIR% if "%BUILD_CONFIG%" == "release" goto x64release :x64debug rem Configuring 64-bit Debug Build perl Configure debug-VC-WIN64A --prefix=%CD% rem Perform the build call ms\do_win64a nmake -f ms\nt.mak nmake -f ms\ntdll.mak rem Move the output directories move out32.dbg "%OUTDIR%\LIB Debug" move out32dll.dbg "%OUTDIR%\DLL Debug" rem Move the PDB files move tmp32.dbg\lib.pdb "%OUTDIR%\LIB Debug" move tmp32dll.dbg\lib.pdb "%OUTDIR%\DLL Debug" rem Remove the intermediate directories rd tmp32.dbg /s /q rd tmp32dll.dbg /s /q if "%BUILD_CONFIG%" == "debug" goto success :x64release rem Configuring 64-bit Release Build perl Configure VC-WIN64A --prefix=%CD% rem Perform the build call ms\do_win64a nmake -f ms\nt.mak nmake -f ms\ntdll.mak rem Move the output directories move out32 "%OUTDIR%\LIB Release" move out32dll "%OUTDIR%\DLL Release" rem Move the PDB files move tmp32\lib.pdb "%OUTDIR%\LIB Release" move tmp32dll\lib.pdb "%OUTDIR%\DLL Release" rem Remove the intermediate directories rd tmp32 /s /q rd tmp32dll /s /q goto success :x86 rem Calculate our output directory set OUTDIR=build\Win32\%VC_DESC% if not exist %OUTDIR% md %OUTDIR% if "%BUILD_CONFIG%" == "release" goto x86release :x86debug rem Configuring 32-bit Debug Build perl Configure debug-VC-WIN32 no-asm --prefix=%CD% rem Perform the build call ms\do_ms nmake -f ms\nt.mak nmake -f ms\ntdll.mak rem Move the output directories move out32.dbg "%OUTDIR%\LIB Debug" move out32dll.dbg "%OUTDIR%\DLL Debug" rem Move the PDB files move tmp32.dbg\lib.pdb "%OUTDIR%\LIB Debug" move tmp32dll.dbg\lib.pdb "%OUTDIR%\DLL Debug" rem Remove the intermediate directories rd tmp32.dbg /s /q rd tmp32dll.dbg /s /q if "%BUILD_CONFIG%" == "debug" goto success :x86release rem Configuring 32-bit Release Build perl Configure VC-WIN32 no-asm --prefix=%CD% rem Perform the build call ms\do_ms nmake -f ms\nt.mak nmake -f ms\ntdll.mak rem Move the output directories move out32 "%OUTDIR%\LIB Release" move out32dll "%OUTDIR%\DLL Release" rem Move the PDB files move tmp32\lib.pdb "%OUTDIR%\LIB Release" move tmp32dll\lib.pdb "%OUTDIR%\DLL Release" rem Remove the intermediate directories rd tmp32 /s /q rd tmp32dll /s /q goto success :syntax rem Display the help echo. echo Usage: build-openssl ^<compiler^> ^<platform^> [configuration] [directory] echo. echo Compiler: echo. echo vc6 - Use Visual Studio 6 echo vc7 - Use Visual Studio .NET echo vc7.1 - Use Visual Studio .NET 2003 echo vc8 - Use Visual Studio 2005 echo vc9 - Use Visual Studio 2008 echo vc10 - Use Visual Studio 2010 echo vc11 - Use Visual Studio 2012 echo vc12 - Use Visual Studio 2013 echo vc14 - Use Visual Studio 2015 echo. echo Platform: echo. echo x86 - Perform a 32-bit build echo x64 - Perform a 64-bit build echo. echo Configuration: echo. echo debug - Perform a debug build echo release - Perform a release build echo. echo Other: echo. echo directory - Specifies the OpenSSL source directory goto error :unknown echo. echo Error: Unknown argument '%1' goto error :nodos echo. echo Error: Only a Windows NT based Operating System is supported goto error :nopf echo. echo Error: Cannot obtain the directory for Program Files goto error :novc echo. echo Error: %VC_DESC% is not installed goto error :noperl echo. echo Error: Perl is not installed goto error :nox64 echo. echo Error: %VC_DESC% does not support 64-bit builds goto error :noopenssl echo. echo Error: Cannot locate OpenSSL source directory goto error :error if "%OS%" == "Windows_NT" endlocal exit /B 1 :success cd %SAVED_PATH% endlocal exit /B 0
lophyel/mupdf-for-mac
thirdparty/curl/projects/build-openssl.bat
bat
gpl-3.0
9,442
@echo off for /f "usebackq tokens=1*" %%f in (`reg query HKCR\Applications\python.exe\shell\open\command 2^>NUL`) do (set _my_=%%f %%g) goto try1%errorlevel% :try10 goto ok :try11 for /f "usebackq tokens=1*" %%f in (`reg query HKCR\Python.File\shell\open\command 2^>NUL`) do (set _my_=%%f %%g) goto try2%errorlevel% :try20: goto ok :try21: echo Error: Python not found ... goto :eof :ok echo Building with Python ... set _res_=%_my_:*REG_SZ=% set _end_=%_res_:*exe"=% call set _python_=%%_res_:%_end_%=%% call %_python_% tune_prebuild.py
oscarsaleta/P4
mpir/build.vc15/mpir-tune/tune/tune_prebuild.bat
bat
lgpl-3.0
547
:: 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_path="%~dp0clean" IF EXIST %script_path% ( node %script_path% %* ) ELSE ( ECHO. ECHO ERROR: Could not find 'clean' script in 'cordova' folder, aborting...>&2 EXIT /B 1 )
darken33/drkslide
sources/platforms/firefoxos/cordova/clean.bat
bat
gpl-3.0
1,002
@setlocal enableextensions @cd /d "%~dp0" call "%VS110COMNTOOLS%..\..\VC\vcvarsall.bat" "%FrameworkDir%\%FrameworkVersion%\msbuild.exe" "%CD%\client\Errordite.Client.Build\Projects\BuildClient.proj" /logger:FileLogger,Microsoft.Build.Engine;BuildClient.log /p:Configuration=Release /p:Targets="Package" /p:SourcePath="%CD%" /p:Increment="major" /p:Platform="Any Cpu" /p:Branch=trunk /m pause if NOT %ERRORLEVEL% == 0 pause
errordite/dotnet-client
build-increment-major.cmd
bat
mit
424
cd %~dp0 excel2json.exe 5.xlsx pause
teamo20150201/IO
ANGLE/5.bat
bat
mit
36
@echo off set MAVEN_OPTS=-Xms64m -Xmx1024m -Xss2048k -Xmn32m :start cls echo WORKING_DIR=%~dp0 echo MAVEN_HOME=%MAVEN_HOME% echo MAVEN_OPTS=%MAVEN_OPTS% echo JAVA_HOME=%JAVA_HOME% echo ------------------ echo u. svn update echo i. install (no tests) echo e. eclipse (online) echo o. eclipse (offline) echo c. clean echo d. download dependencies echo r. release echo y. update, deploy echo s. generate sources echo m. assembly echo t. status echo v. set versions echo j. update java_home to latest (Windows) echo a. update maven_home to maven3_home echo q. quit echo ------------------ CHOICE /N /C:uieocdrysmtvjaq set nr=%ERRORLEVEL% IF %nr% EQU 1 goto lsvnup IF %nr% EQU 2 goto llocinstall IF %nr% EQU 3 goto leclipse IF %nr% EQU 4 goto leclipseoff IF %nr% EQU 5 goto lclean IF %nr% EQU 6 goto ldependency IF %nr% EQU 7 goto lrelease IF %nr% EQU 8 goto ldeploy IF %nr% EQU 9 goto lgen IF %nr% EQU 10 goto lass IF %nr% EQU 11 goto lstatus IF %nr% EQU 12 goto lversions IF %nr% EQU 13 goto ljavahome IF %nr% EQU 14 goto lmavenhome IF %nr% EQU 15 goto lquit goto start :lmavenhome set MAVEN_HOME=%MAVEN3_HOME% goto start :ljavahome @for /d %%i in ("\Program Files\Java\jdk*") do set JAVA_HOME=%%i goto start :lstatus cls if exist status.bat goto lstatusbat svn status . pause goto start :lstatusbat cls call status.bat goto start :lsvnup cls if exist svnup.bat goto lsvnupbat svn update pause goto start :lsvnupbat cls call svnup.bat goto start :llocinstall cls call mvn -Dmaven.tomcat.skip=true -e -X source:jar install -DskipTests=true -DupdateReleaseInfo=true %* pause goto start :leclipse cls call mvn -Dmaven.tomcat.skip=true -e -U -DdownloadSources=true -Dwtpversion=2.0 eclipse:eclipse %* pause goto start :leclipseoff cls call mvn -Dmaven.tomcat.skip=true -e -U -DdownloadSources=true -Dwtpversion=2.0 eclipse:eclipse -o %* pause goto start :lclean cls call mvn -Dmaven.tomcat.skip=true -e clean %* pause goto start :ldependency cls call mvn -Dmaven.tomcat.skip=true -e dependency:go-offline %* pause goto start :lrelease cls call mvn -Dmaven.tomcat.skip=true -e release:prepare %* call mvn -Dmaven.tomcat.skip=true -e release:perform %* pause goto start :ldeploy cls svn update call mvn -Dmaven.tomcat.skip=true -e deploy %* pause goto start :lgen cls call mvn -Dmaven.tomcat.skip=true -e generate-sources %* pause goto start :lass cls call mvn -o -Dmaven.tomcat.skip=true -e package assembly:assembly %* pause :lversions cls call mvn -Dmaven.tomcat.skip=true -e versions:set %* pause :lquit cls
jurgendl/hql-builder
hql-builder/hql-builder-demo/cmds.bat
bat
mit
2,661
C:\Users\mehamasum\AppData\Local\Programs\Python\Python35\python.exe Server.py
RoboPi-CSEDU/rupai
meha.bat
bat
mit
78
:: using system-site-packages to get pywin32 package which is not installable via pip %PYTHONHOME%\scripts\virtualenv env --system-site-packages set PYTHONHOME= set django_branch=stable/%DJANGO_VER%.x if not exist env\src\django call git clone https://github.com/denisenkom/django.git -b %django_branch% env/src/django pushd env\src\django call git pull popd env\scripts\pip install -e env/src/django if not exist pytds call git clone https://github.com/denisenkom/pytds.git pushd pytds call git pull popd env\scripts\pip install -e ./pytds env\bin\pip install pytz==2013d --use-mirrors set COMPUTERNAME=%HOST% env\scripts\python tests\runtests.py --noinput --settings=test_mssql
bradleyy/django-sqlserver
ci.bat
bat
mit
685
java -jar jstestdriver/JsTestDriver.jar --config jsTestDriver-dist.conf --tests all --basePath .
benjamine/tent
run-tests-dist.bat
bat
mit
98
@ECHO off SET BASEDIR=%~dp0 CD %BASEDIR%/../../.Generator @ECHO Starting Gentitas Generator... @ECHO: CALL npm start @ECHO: SET /p DUMMY=Process completed
vladpazych/Gentitas
Scripts/cmd/StartGenerator.cmd
bat
mit
155
rem usage: hput URL LOCAL-FILE [PASSWORD [PROXY-DOMAIN PROXY-PORT]] rem usage: hput URL * [PASSWORD [PROXY-DOMAIN PROXY-PORT]] IF "%2" == "" GOTO END FOR /F "DELIMS=" %%A IN ('C:\Factory\DevTools\uuid.exe /P') DO SET X_HPUT_UUID=%%A IF "%3" == "" ( %~dp0mmpc.exe /S upload upload /F file %2 %X_HPUT_UUID%_content.tmp ) ELSE ( %~dp0mmpc.exe /S upload upload /S password %3 /F file %2 %X_HPUT_UUID%_content.tmp ) IF NOT EXIST %X_HPUT_UUID%_content.tmp GOTO END IF "%5" == "" ( %~dp0hget.exe /BT 3600 /C %X_HPUT_UUID%_content.tmp /O * %1 ) ELSE ( %~dp0hget.exe /BT 3600 /PS %4 /PP %5 /C %X_HPUT_UUID%_content.tmp /O * %1 ) DEL %X_HPUT_UUID%_content.tmp SET X_HPUT_UUID= :END
stackprobe/Factory
Labo/Socket/hput.bat
bat
mit
676
@echo off REM script to create desktop shortcut in WinXP REM will be calling another vbscript that actually do the hard work REM ----------------------------- REM CHECK FOR MINGW INSTALLATION! REM ----------------------------- call mingw-check.bat if exist "%mingw%" goto MINGW_OK echo Cannot find MinGW folder! pause goto END REM ------------------------ REM CREATE DESKTOP SHORTCUT! REM ------------------------ :MINGW_OK set thisdir=%~dp0 set thisdir=%thisdir:~0,-1% cd /d %thisdir% cscript wsh-script.txt //e:vbscript
my1matrix/mingw4user
tools/mingw-desk.bat
bat
mit
551
cmd_fs/nfs/built-in.o := /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o fs/nfs/built-in.o fs/nfs/nfs.o
RittikBhowmik/Project-Crater-Kernel-GT-i9152
fs/nfs/.built-in.o.cmd
bat
gpl-2.0
148
cmd_drivers/usb/storage/ums-karma.o := /root/aokp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/usb/storage/ums-karma.o drivers/usb/storage/karma.o
yncconsulting/HTC_Express_Kernel
drivers/usb/storage/.ums-karma.o.cmd
bat
gpl-2.0
184
cmd_crypto/tcrypt.ko := /home/adminuser/sgy1/arm-2009q3/bin/arm-none-eabi-ld -EL -r -T /home/adminuser/sgy1/kernel/common/scripts/module-common.lds --build-id -o crypto/tcrypt.ko crypto/tcrypt.o crypto/tcrypt.mod.o
prototype-U/Hells-Fusion-SGYD
crypto/.tcrypt.ko.cmd
bat
gpl-2.0
216
cmd_drivers/platform/built-in.o := rm -f drivers/platform/built-in.o; /home/radug/Android/cm/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs drivers/platform/built-in.o
RaduG/2.6.29-RaKern-2x-Hero
drivers/platform/.built-in.o.cmd
bat
gpl-2.0
193
cmd_drivers/net/usb/gl620a.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/net/usb/gl620a.ko drivers/net/usb/gl620a.o drivers/net/usb/gl620a.mod.o
avareldalton85/rpi2-linux-rt
drivers/net/usb/.gl620a.ko.cmd
bat
gpl-2.0
259
cmd_drivers/media/rc/keymaps/rc-avermedia-cardbus.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/media/rc/keymaps/rc-avermedia-cardbus.ko drivers/media/rc/keymaps/rc-avermedia-cardbus.o drivers/media/rc/keymaps/rc-avermedia-cardbus.mod.o
avareldalton85/rpi2-linux-rt
drivers/media/rc/keymaps/.rc-avermedia-cardbus.ko.cmd
bat
gpl-2.0
351
cmd_sound/built-in.o := /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o sound/built-in.o sound/soundcore.o sound/core/built-in.o sound/i2c/built-in.o sound/drivers/built-in.o sound/isa/built-in.o sound/pci/built-in.o sound/ppc/built-in.o sound/arm/built-in.o sound/sh/built-in.o sound/synth/built-in.o sound/usb/built-in.o sound/sparc/built-in.o sound/spi/built-in.o sound/parisc/built-in.o sound/pcmcia/built-in.o sound/mips/built-in.o sound/soc/built-in.o sound/atmel/built-in.o sound/last.o
DrGrip/tiamat-2.6.38-LEO-Dr_Grip
sound/.built-in.o.cmd
bat
gpl-2.0
514
cmd_scripts/kconfig/conf.o := gcc -Wp,-MD,scripts/kconfig/.conf.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<curses.h>" -DLOCALE -c -o scripts/kconfig/conf.o scripts/kconfig/conf.c deps_scripts/kconfig/conf.o := \ scripts/kconfig/conf.c \ $(wildcard include/config/allconfig.h) \ $(wildcard include/config/nosilentupdate.h) \ /usr/include/locale.h \ /usr/include/features.h \ /usr/include/i386-linux-gnu/bits/predefs.h \ /usr/include/i386-linux-gnu/sys/cdefs.h \ /usr/include/i386-linux-gnu/bits/wordsize.h \ /usr/include/i386-linux-gnu/gnu/stubs.h \ /usr/include/i386-linux-gnu/gnu/stubs-32.h \ /usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h \ /usr/include/i386-linux-gnu/bits/locale.h \ /usr/include/xlocale.h \ /usr/include/ctype.h \ /usr/include/i386-linux-gnu/bits/types.h \ /usr/include/i386-linux-gnu/bits/typesizes.h \ /usr/include/endian.h \ /usr/include/i386-linux-gnu/bits/endian.h \ /usr/include/i386-linux-gnu/bits/byteswap.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h \ /usr/include/i386-linux-gnu/bits/stdio_lim.h \ /usr/include/i386-linux-gnu/bits/sys_errlist.h \ /usr/include/i386-linux-gnu/bits/stdio.h \ /usr/include/i386-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/i386-linux-gnu/bits/waitflags.h \ /usr/include/i386-linux-gnu/bits/waitstatus.h \ /usr/include/i386-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/i386-linux-gnu/sys/select.h \ /usr/include/i386-linux-gnu/bits/select.h \ /usr/include/i386-linux-gnu/bits/sigset.h \ /usr/include/i386-linux-gnu/bits/time.h \ /usr/include/i386-linux-gnu/bits/select2.h \ /usr/include/i386-linux-gnu/sys/sysmacros.h \ /usr/include/i386-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/i386-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/i386-linux-gnu/bits/string.h \ /usr/include/i386-linux-gnu/bits/string2.h \ /usr/include/i386-linux-gnu/bits/string3.h \ /usr/include/unistd.h \ /usr/include/i386-linux-gnu/bits/posix_opt.h \ /usr/include/i386-linux-gnu/bits/environments.h \ /usr/include/i386-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/i386-linux-gnu/bits/unistd.h \ /usr/include/i386-linux-gnu/sys/stat.h \ /usr/include/i386-linux-gnu/bits/stat.h \ /usr/include/i386-linux-gnu/sys/time.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdbool.h \ /usr/include/libintl.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/conf.o: $(deps_scripts/kconfig/conf.o) $(deps_scripts/kconfig/conf.o):
sembre/kernel_totoro_update3
common/scripts/kconfig/.conf.o.cmd
bat
gpl-2.0
2,815
del "C:\Users\IEUser\Desktop\eula.lnk" xcopy "C:\vagrant\Installation.txt" "C:\Users\IEUser\Desktop" xcopy "C:\vagrant\Readme.txt" "C:\Users\IEUser\Desktop" xcopy "C:\vagrant\TraceLabDemo.url" "C:\Users\IEUser\Desktop" xcopy "C:\vagrant\License.txt" "C:\Users\IEUser\Desktop"
SoftwareEngineeringToolDemos/ICSE-2012-TraceLab
build-vm/get-files.bat
bat
gpl-3.0
276
REM Copyright 2007, 2012 Stephen Fisher and Junhyong Kim, University of REM Pennsylvania. REM REM This file is part of Glo-DB. REM REM Glo-DB is free software: you can redistribute it and/or modify it REM under the terms of the GNU General Public License as published by REM the Free Software Foundation, either version 3 of the License, or REM (at your option) any later version. REM REM Glo-DB is distributed in the hope that it will be useful, but REM WITHOUT ANY WARRANTY; without even the implied warranty of REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU REM General Public License for more details. REM REM You should have received a copy of the GNU General Public License REM along with Glo-DB. If not, see <http://www.gnu.org/licenses/>. @echo off REM echo Create the java documentation. REM javadoc @docs.em REM echo Create the javacc documentation. REM cd edu\upenn\gloDB\parser java -classpath "javacc.jar" jjdoc Parser.jj copy Parser.html ..\..\..\..\parser_jj.html cd ..\..\..\..
safisher/Glo-DB
makeDoc.bat
bat
gpl-3.0
1,061
@echo off set size=0 for /f "skip=2 tokens=1,2" %%i in ('%*') do ( if "%%i"==".text" set /a size = size + %%j if "%%i"==".ARM.exidx" set /a size = size + %%j if "%%i"==".relocate" set /a size = size + %%j ) echo size=%size%
mogorman/closed_sesame
firmware/hardware/arduino/RFduino/size.bat
bat
gpl-3.0
232
@echo off cd %~DP0 ..\..\..\lib\ipy.exe ..\..\InstallUtil.py Install Release x86 ..\..\..\dist\ 32
takeshik/metatweet-old
util/x86/Release/install-service.bat
bat
gpl-3.0
100
@ECHO OFF REM ################################################## REM ### FICHIER DE CONFIG GRACELITE BASES SHP/CSV REM ################################################## :GL_CONFIG_GRACETHD_SHPCSV REM ################################################## REM ### CONFIG GRACELITE - GRACETHD-MCD SHP/CSV REM ## CONFIG SHPCSV TEMPLATE REM # GLSHPTEMPLATE : Dossier qui contient les shp/csv vierges servant de modele. SET GLSHPTEMPLATE=.\db_shpcsv REM ## CONFIG SHPCSV-IN REM # GLSHPINPATH : Dossier ou deposer les shp/csv a integrer. SET GLSHPINPATH=.\shpcsv-in REM ## CONFIG SPATIALITE_TOOL POUR shpcsv-in SET GLSHPINSRID=2154 SET GLSHPINCODE=CP1252 SET GLCSVINCODE=UTF-8 SET GLCSVINQUOTE=NONE SET GLCSVINDELIM=; REM ## CONFIG SHPCSV-OUT REM # GLSHPOUTPATH : Dossier ou recuperer les shp/csv exportes. SET GLSHPOUTPATH=.\shpcsv-out REM ## CONFIG SPATIALITE_TOOL POUR shpcsv-out SET GLSHPOUTSRID=2154 SET GLSHPOUTCODE=CP1252 SET GLCSVOUTCODE=UTF-8 SET GLCSVOUTQUOTE=NONE SET GLCSVOUTDELIM=;
GraceTHD-community/GraceTHD-Check
conf/config_db_shpcsv.bat
bat
gpl-3.0
996
copy ..\..\..\lib\debug\ptlibd.def ptlibd_2008.dtf copy ..\..\..\lib\release\ptlib.def ptlib_2008.dtf copy "..\..\..\lib\No Trace\ptlibn.def" ptlibn_2008.dtf rem copy ..\..\..\lib\wm5ppc\debug\ptlibd.def ptlibd_2008_wm.dtf rem copy ..\..\..\lib\wm5ppc\release\ptlib.def ptlib_2008_wm.dtf rem copy "..\..\..\lib\wm5ppc\No Trace\ptlibn.def" ptlibn_2008_wm.dtf rem copy ..\..\..\lib\wm6pro\debug\ptlibd.def ptlibd_2008_wm6.dtf rem copy ..\..\..\lib\wm6pro\release\ptlib.def ptlib_2008_wm6.dtf rem copy "..\..\..\lib\wm6pro\No Trace\ptlibn.def" ptlibn_2008_wm6.dtf pause
YuxuanLing/trunk
trunk/references/OpenH323/ptlib-2.12.8-src/ptlib/include/ptlib/msos/CopyDTF_2008.bat
bat
gpl-3.0
581
@echo OFF @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass "& Set-Location '%~dp0\scrcpy-win64'; .\scrcpy.exe %*"
younglim/hats-ci
virtualenv/shell/scrcpy.cmd
bat
gpl-3.0
164
@ECHO OFF SET TESTER=C:\Shared\MidaxTester\MidaxTester.exe start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-01 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-02 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-03 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-04 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-05 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-06 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-07 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-08 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-09 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-10 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-11 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-12 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-13 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-14 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-15 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-16 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-17 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-18 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-19 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-20 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-21 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-22 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-23 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-24 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-25 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-26 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-27 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-28 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-29 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-30 -FULL start PsExec -accepteula \\COMPUTESERV2 %TESTER% -G -FROMDB -TODB -%2 -DATE%1-31 -FULL
JBetser/MiDax
Midax/BackTestOneMonth_COMPUTESERV2.cmd
bat
agpl-3.0
2,755
@rem File: "vcexpress.bat" @rem @rem This is a batch file to compile Gambit with the Microsoft Visual @rem C++ 2005 Express Edition which can be obtained at no charge from @rem Microsoft at this URL: @rem http://msdn.microsoft.com/vstudio/express/downloads/default.aspx . @rem You must also install the Microsoft Platform SDK. @rem @rem This batch file must be executed in the Gambit root directory. @rem @rem TODO: turn this into a makefile @rem Setup environment variables @call "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat" @call "C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\SetEnv.Cmd" @rem We can't use -D___SINGLE_HOST for all Gambit generated C files @rem because the C compiler runs out of memory while compiling _num.c @rem and _io.c . set COMP_GEN=cl -nologo -Oityb1 -Zi -GS -RTC1 -MT -D_CRT_SECURE_NO_DEPRECATE -c -I..\include -D___SYS_TYPE_CPU=\"i686\" -D___SYS_TYPE_VENDOR=\"pc\" -D___SYS_TYPE_OS=\"visualc\" if not "%1%" == "" ( set COMP_GEN=%COMP_GEN% -D___GAMBCDIR=\"%1%\" ) set COMP_LIB_MH=%COMP_GEN% -D___LIBRARY set COMP_LIB_PR_MH=%COMP_LIB_MH% -D___PRIMAL set COMP_LIB=%COMP_LIB_MH% -D___SINGLE_HOST set COMP_LIB_PR=%COMP_LIB_PR_MH% -D___SINGLE_HOST set COMP_APP=%COMP_GEN% -D___SINGLE_HOST @rem We can't rely on sed being available so we generate gambit.h @rem from gambit.h.in by prefixing it with the needed declarations. echo #ifndef ___VOIDSTAR_WIDTH > include\gambit.h echo #define ___VOIDSTAR_WIDTH ___LONG_WIDTH >> include\gambit.h echo #endif >> include\gambit.h echo #ifndef ___MAX_CHR >> include\gambit.h echo #define ___MAX_CHR 0x10ffff >> include\gambit.h echo #endif >> include\gambit.h echo #ifndef ___SINGLE_VM >> include\gambit.h echo #ifndef ___MULTIPLE_VMS >> include\gambit.h echo #define ___SINGLE_VM >> include\gambit.h echo #endif >> include\gambit.h echo #endif >> include\gambit.h echo #ifndef ___SINGLE_THREADED_VMS >> include\gambit.h echo #ifndef ___MULTIPLE_THREADED_VMS >> include\gambit.h echo #define ___SINGLE_THREADED_VMS >> include\gambit.h echo #endif >> include\gambit.h echo #endif >> include\gambit.h echo #ifndef ___USE_POSIX_THREADS >> include\gambit.h echo #ifndef ___USE_WIN32_THREADS >> include\gambit.h echo #define ___USE_NO_THREAD_SYSTEM >> include\gambit.h echo #endif >> include\gambit.h echo #endif >> include\gambit.h echo #ifndef ___NO_THREAD_LOCAL_STORAGE_CLASS >> include\gambit.h echo #ifndef ___THREAD_LOCAL_STORAGE_CLASS >> include\gambit.h echo #define ___NO_THREAD_LOCAL_STORAGE_CLASS >> include\gambit.h echo #endif >> include\gambit.h echo #endif >> include\gambit.h echo #ifndef ___BOOL >> include\gambit.h echo #define ___BOOL int >> include\gambit.h echo #endif >> include\gambit.h type include\gambit.h.in >> include\gambit.h cd lib %COMP_LIB_PR% main.c %COMP_LIB_PR% setup.c %COMP_LIB_PR% mem.c %COMP_LIB_PR% os_setup.c %COMP_LIB_PR% os_base.c %COMP_LIB_PR% os_time.c %COMP_LIB_PR% os_shell.c %COMP_LIB_PR% os_files.c %COMP_LIB_PR% os_dyn.c %COMP_LIB_PR% os_tty.c %COMP_LIB_PR% os_io.c %COMP_LIB_PR% os_thread.c %COMP_LIB_PR% c_intf.c %COMP_LIB_PR% _kernel.c %COMP_LIB_PR% _system.c %COMP_LIB_PR_MH% _num.c %COMP_LIB_PR% _std.c %COMP_LIB_PR% _eval.c %COMP_LIB_PR_MH% _io.c %COMP_LIB_PR% _nonstd.c %COMP_LIB_PR% _thread.c %COMP_LIB_PR% _repl.c %COMP_LIB_PR% _gambc.c lib -out:libgambc.lib main.obj setup.obj mem.obj os_setup.obj os_base.obj os_time.obj os_shell.obj os_files.obj os_dyn.obj os_tty.obj os_io.obj os_thread.obj c_intf.obj _kernel.obj _system.obj _num.obj _std.obj _eval.obj _io.obj _nonstd.obj _thread.obj _repl.obj _gambc.obj cd .. cd gsi %COMP_LIB% _gsilib.c %COMP_LIB% _gambcgsi.c %COMP_APP% _gsi.c %COMP_APP% _gsi_.c cl -Fegsi.exe ..\lib\libgambc.lib _gsilib.obj _gambcgsi.obj _gsi.obj _gsi_.obj Kernel32.Lib User32.Lib Gdi32.Lib WS2_32.Lib cd .. cd gsc %COMP_LIB% _host.c %COMP_LIB% _utils.c %COMP_LIB% _source.c %COMP_LIB% _parms.c %COMP_LIB% _env.c %COMP_LIB% _ptree1.c %COMP_LIB% _ptree2.c %COMP_LIB% _gvm.c %COMP_LIB% _back.c %COMP_LIB% _front.c %COMP_LIB% _prims.c %COMP_LIB% _assert.c %COMP_LIB% _asm.c %COMP_LIB% _x86.c %COMP_LIB% _codegen.c %COMP_LIB% _t-univ-1.c %COMP_LIB% _t-univ-2.c %COMP_LIB% _t-univ-3.c %COMP_LIB% _t-univ-4.c %COMP_LIB% _t-c-1.c %COMP_LIB% _t-c-2.c %COMP_LIB% _t-c-3.c %COMP_LIB% _gsclib.c %COMP_LIB% _gambcgsc.c %COMP_APP% _gsc.c %COMP_APP% _gsc_.c cl -Fegsc.exe ..\lib\libgambc.lib _host.obj _utils.obj _source.obj _parms.obj _env.obj _ptree1.obj _ptree2.obj _gvm.obj _back.obj _front.obj _prims.obj _assert.obj _asm.obj _x86.obj _codegen.obj _t-univ-1.obj _t-univ-2.obj _t-univ-3.obj _t-univ-4.obj _t-c-1.obj _t-c-2.obj _t-c-3.obj _gsclib.obj _gambcgsc.obj _gsc.obj _gsc_.obj Kernel32.Lib User32.Lib Gdi32.Lib WS2_32.Lib cd .. cd bin echo @echo off> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo rem Script parameters are passed in the following environment variables:>> gsc-cc-o.bat echo rem GSC_CC_O_GAMBCDIR_BIN>> gsc-cc-o.bat echo rem GSC_CC_O_GAMBCDIR_INCLUDE>> gsc-cc-o.bat echo rem GSC_CC_O_GAMBCDIR_LIB>> gsc-cc-o.bat echo rem GSC_CC_O_OBJ_FILENAME>> gsc-cc-o.bat echo rem GSC_CC_O_C_FILENAME_DIR>> gsc-cc-o.bat echo rem GSC_CC_O_C_FILENAME_BASE>> gsc-cc-o.bat echo rem GSC_CC_O_CC_OPTIONS>> gsc-cc-o.bat echo rem GSC_CC_O_LD_OPTIONS_PRELUDE>> gsc-cc-o.bat echo rem GSC_CC_O_LD_OPTIONS>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo rem echo GSC_CC_O_GAMBCDIR_BIN = %%GSC_CC_O_GAMBCDIR_BIN%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_GAMBCDIR_INCLUDE = %%GSC_CC_O_GAMBCDIR_INCLUDE%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_GAMBCDIR_LIB = %%GSC_CC_O_GAMBCDIR_LIB%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_OBJ_FILENAME = %%GSC_CC_O_OBJ_FILENAME%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_C_FILENAME_DIR = %%GSC_CC_O_C_FILENAME_DIR%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_C_FILENAME_BASE = %%GSC_CC_O_C_FILENAME_BASE%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_CC_OPTIONS = %%GSC_CC_O_CC_OPTIONS%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_LD_OPTIONS_PRELUDE = %%GSC_CC_O_LD_OPTIONS_PRELUDE%%>> gsc-cc-o.bat echo rem echo GSC_CC_O_LD_OPTIONS = %%GSC_CC_O_LD_OPTIONS%%>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo for %%%%f in (cl.exe gcc.exe wcl386.exe) do if not "%%%%~$PATH:f" == "" goto use_%%%%%%f>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo echo gcc.exe, wcl386.exe and cl.exe were not found in the PATH. Make sure MinGW, OpenWatcom or Visual C++ Express is installed.>> gsc-cc-o.bat echo exit 1 >> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo :use_gcc.exe>> gsc-cc-o.bat echo cd "%%GSC_CC_O_C_FILENAME_DIR%%">> gsc-cc-o.bat echo gcc.exe -mno-cygwin -Wall -W -Wno-unused -O1 -fno-math-errno -fschedule-insns2 -fno-trapping-math -fno-strict-aliasing -fwrapv -fno-common -mieee-fp -shared -I"%%GSC_CC_O_GAMBCDIR_INCLUDE%%" -D___DYNAMIC -D___SINGLE_HOST -o "%%GSC_CC_O_OBJ_FILENAME%%" %%GSC_CC_O_CC_OPTIONS%% %%GSC_CC_O_LD_OPTIONS_PRELUDE%% "%%GSC_CC_O_C_FILENAME_BASE%%" %%GSC_CC_O_LD_OPTIONS%%>> gsc-cc-o.bat echo goto end>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo :use_wcl386.exe>> gsc-cc-o.bat echo cd "%%GSC_CC_O_C_FILENAME_DIR%%">> gsc-cc-o.bat echo wcl386.exe -w0 -zp4 -zq -obetir -bm -3r -bt=nt -mf -bd -I"%%GSC_CC_O_GAMBCDIR_INCLUDE%%" -D___DYNAMIC -D___SINGLE_HOST -l=nt_dll -fe="%%GSC_CC_O_OBJ_FILENAME%%" %%GSC_CC_O_CC_OPTIONS%% %%GSC_CC_O_LD_OPTIONS_PRELUDE%% "%%GSC_CC_O_C_FILENAME_BASE%%" %%GSC_CC_O_LD_OPTIONS%%>> gsc-cc-o.bat echo goto end>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo :use_cl.exe>> gsc-cc-o.bat echo cd "%%GSC_CC_O_C_FILENAME_DIR%%">> gsc-cc-o.bat echo cl.exe -nologo -Oityb1 -MT -D_CRT_SECURE_NO_DEPRECATE -LD -I"%%GSC_CC_O_GAMBCDIR_INCLUDE%%" -D___DYNAMIC -D___SINGLE_HOST -Fe"%%GSC_CC_O_OBJ_FILENAME%%" %%GSC_CC_O_CC_OPTIONS%% %%GSC_CC_O_LD_OPTIONS_PRELUDE%% "%%GSC_CC_O_C_FILENAME_BASE%%" %%GSC_CC_O_LD_OPTIONS%%>> gsc-cc-o.bat echo goto end>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo :use_build_time_c_compiler>> gsc-cc-o.bat echo cd "%%GSC_CC_O_C_FILENAME_DIR%%">> gsc-cc-o.bat echo gcc.exe -mno-cygwin -Wall -W -Wno-unused -O1 -fno-math-errno -fschedule-insns2 -fno-trapping-math -fno-strict-aliasing -fwrapv -fno-common -mieee-fp -shared -I"%%GSC_CC_O_GAMBCDIR_INCLUDE%%" -D___DYNAMIC -D___SINGLE_HOST -o "%%GSC_CC_O_OBJ_FILENAME%%" %%GSC_CC_O_CC_OPTIONS%% %%GSC_CC_O_LD_OPTIONS_PRELUDE%% "%%GSC_CC_O_C_FILENAME_BASE%%" %%GSC_CC_O_LD_OPTIONS%%>> gsc-cc-o.bat echo goto end>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo :end>> gsc-cc-o.bat echo.>> gsc-cc-o.bat echo exit>> gsc-cc-o.bat cd ..
thewhimer/gambit
misc/vcexpress.bat
bat
apache-2.0
9,217
@echo off call setEnvironment.bat java -Djava.library.path=lib -cp %VIZCLASSPATH% config.RVConfigure %*
pmacalpine/RoboViz
scripts/config.bat
bat
apache-2.0
103
cd ../lib java -Xms512M -Xmx512M -XX:MaxPermSize=512M -jar ${pom.artifactId}-${pom.version}.jar pause
coo-coo/lyfcb
coo-d-lyfcb/src/main/scripts/startup.bat
bat
apache-2.0
103
java -Djava.util.logging.config.file=log4j.properties -jar PADI-1.0.0-SNAPSHOT-jar-with-dependencies.jar -personalize %1 %2
openpreserve/PADI
bat/personalize.bat
bat
apache-2.0
125
cls @echo off echo Sending Phone Verification Request echo. echo Request echo curl "https://api.authy.com/protected/%%AUTHY_API_FORMAT%%/phones/verification/start?via=%%SMS_OR_CALL%%&country_code=%%USER_COUNTRY%%&phone_number=%%USER_PHONE%%" echo -H "X-Authy-API-Key: %%AUTHY_API_KEY%%" echo. echo Response curl -X POST "https://api.authy.com/protected/%AUTHY_API_FORMAT%/phones/verification/start?via=sms&country_code=%USER_COUNTRY%&phone_number=%USER_PHONE%" ^ -H "X-Authy-API-Key: %AUTHY_API_KEY%" echo.
AuthySE/Authy-API-Samples
phoneVerificationRequest.bat
bat
apache-2.0
508
@echo off java -cp .\lib\* org.h2.tools.Server -tcpShutdown tcp://localhost
ototadana/fixture-book-runner
src/main/rt/windows/fixture-book-example/app-test/tests/999-ShutdownH2DatabaseTest.bat
bat
apache-2.0
80
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set BUILDDIR=build set SPHINXPROJ=starlight if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
reworks/REngine3
docs/make.bat
bat
apache-2.0
781
cmd_crypto/crypto.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o crypto/crypto.o crypto/api.o crypto/cipher.o crypto/compress.o
friedrich420/Note-3-AEL-Kernel
crypto/.crypto.o.cmd
bat
gpl-2.0
165
cmd_drivers/video/msm/vidc/built-in.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/video/msm/vidc/built-in.o drivers/video/msm/vidc/vidc.o drivers/video/msm/vidc/vidc_vdec.o drivers/video/msm/vidc/vidc_venc.o
jdlfg/Mecha-kernel-jdlfg
drivers/video/msm/vidc/.built-in.o.cmd
bat
gpl-2.0
270
cmd_scripts/kconfig/conf.o := gcc -Wp,-MD,scripts/kconfig/.conf.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/conf.o scripts/kconfig/conf.c source_scripts/kconfig/conf.o := scripts/kconfig/conf.c deps_scripts/kconfig/conf.o := \ $(wildcard include/config/.h) \ $(wildcard include/config/seed.h) \ $(wildcard include/config/allconfig.h) \ $(wildcard include/config/nosilentupdate.h) \ /usr/include/locale.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/bits/predefs.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.6/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/locale.h \ /usr/include/xlocale.h \ /usr/include/ctype.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.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/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.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 \ scripts/kconfig/lkc.h \ $(wildcard include/config/prefix.h) \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/include/assert.h \ scripts/kconfig/list.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdbool.h \ /usr/include/libintl.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/conf.o: $(deps_scripts/kconfig/conf.o) $(deps_scripts/kconfig/conf.o):
djvoleur/V_925R4_BOF7
scripts/kconfig/.conf.o.cmd
bat
gpl-2.0
3,321
setx GPU_FORCE_64BIT_PTR 0 setx GPU_MAX_HEAP_SIZE 100 setx GPU_USE_SYNC_OBJECTS 1 setx GPU_MAX_ALLOC_PERCENT 100 setx GPU_SINGLE_ALLOC_PERCENT 100 EthDcrMiner64.exe -epool etc-eu1.nanopool.org:19999 -ewal YOUR_WALLET/YOUR_WORKER/YOUR_EMAIL -epsw x -dpool stratum+tcp://sia-eu1.nanopool.org:7777 -dwal YOUR_SIA_WALLET/YOUR_WORKER/YOUR_EMAIL -dpsw x -dcoin sia -ftime 10
patel344/Mr.Miner
Mr.Mining/MikeTheMiner/dist/Santas_helpers/Claymore_dual/start_etc+sia.bat
bat
gpl-3.0
369
@ECHO OFF ECHO. ECHO Downloading libbitcoin-client dependencies from NuGet CALL nuget.exe install ..\vs2013\libbitcoin-client\packages.config CALL nuget.exe install ..\vs2013\libbitcoin-client-examples\packages.config CALL nuget.exe install ..\vs2013\libbitcoin-client-test\packages.config ECHO. CALL buildbase.bat ..\vs2013\libbitcoin-client.sln 12 ECHO. PAUSE
Belxjander/Kirito
LibBitcoin/Client/builds/msvc/build/buildall.bat
bat
gpl-3.0
362
cd /D %1 set tooldir=%1\..\..\..\component\soc\realtek\8195a\misc\iar_utility\common\tools set libdir=%1\..\..\..\component\soc\realtek\8195a\misc\bsp :: Generate build_info.h echo off ::echo %date:~0,10%-%time:~0,8% ::echo %USERNAME% for /f "usebackq" %%i in (`hostname`) do set hostname=%%i ::echo %hostname% echo #define UTS_VERSION "%date:~0,10%-%time:~0,8%" > ..\inc\build_info.h echo #define RTL8195AFW_COMPILE_TIME "%date:~0,10%-%time:~0,8%" >> ..\inc\build_info.h echo #define RTL8195AFW_COMPILE_DATE "%date:~0,4%%date:~5,2%%date:~8,2%" >> ..\inc\build_info.h echo #define RTL8195AFW_COMPILE_BY "%USERNAME%" >> ..\inc\build_info.h echo #define RTL8195AFW_COMPILE_HOST "%hostname%" >> ..\inc\build_info.h echo #define RTL8195AFW_COMPILE_DOMAIN >> ..\inc\build_info.h echo #define RTL195AFW_COMPILER "IAR compiler" >> ..\inc\build_info.h echo. > main.icf for /f "delims=" %%i in ('cmd /c "%tooldir%\coan defs -g e ../src/main.c | %tooldir%\grep "#define" | %tooldir%\grep __ICFEDIT_region_BD_RAM_start__ | %tooldir%\gawk '{print $3}'"') do set BD_RAM_start=%%i if defined %BD_RAM_start ( echo define symbol __ICFEDIT_region_BD_RAM_start__ = %BD_RAM_start%; >> main.icf echo define symbol __ICFEDIT_region_BD_RAM_end__ = 0x1006CFFF; >> main.icf ) exit
polyfractal/rustl8710
component/soc/realtek/8195a/misc/iar_utility/common/prebuild.bat
bat
apache-2.0
1,294
echo Test Maven jar setlocal if not "%DO_MAVEN_PACKAGE%"=="true" ( echo Skip Testing Maven jar exit /b ) for /f %%I in ('call mvn help:evaluate --quiet "-Dexpression=project.version" -DforceStdout') do ( set "MAVEN_PACKAGE_VERSION=%%I" ) if "%GITHUB_ACTIONS%"=="true" ( rem Propagate the project version as an environment variable to any actions running next in a job (echo MAVEN_PACKAGE_VERSION=%MAVEN_PACKAGE_VERSION%) >>"%GITHUB_ENV%" ) set "XSPEC_MAVEN_JAR=%~dp0..\..\target\xspec-%MAVEN_PACKAGE_VERSION%.jar" call ant ^ -buildfile "%~dp0build_test-maven-jar.xml" ^ -lib "%SAXON_JAR%" ^ -lib "%XSPEC_MAVEN_JAR%" ^ %*
AirQuick/xspec
test/ci/test-maven-jar.cmd
bat
mit
663
@echo off mkdir 32bit mkdir 32bit\locale mkdir 32bit\shaders mkdir 32bit\plugins mkdir 32bit\plugins\DShowPlugin mkdir 32bit\plugins\DShowPlugin\locale mkdir 32bit\plugins\DShowPlugin\shaders mkdir 32bit\plugins\GraphicsCapture mkdir 32bit\plugins\PSVPlugin mkdir 32bit\plugins\PSVPlugin\locale mkdir 32bit\plugins\scenesw mkdir 32bit\plugins\scenesw\locale mkdir 64bit mkdir 64bit\locale mkdir 64bit\shaders mkdir 64bit\plugins mkdir 64bit\plugins\DShowPlugin mkdir 64bit\plugins\DShowPlugin\locale mkdir 64bit\plugins\DShowPlugin\shaders mkdir 64bit\plugins\GraphicsCapture mkdir 64bit\plugins\PSVPlugin mkdir 64bit\plugins\PSVPlugin\locale mkdir 64bit\plugins\scenesw mkdir 64bit\plugins\scenesw\locale mkdir pdbs mkdir pdbs\32bit mkdir pdbs\64bit copy ..\COPYING .\32bit\LICENSE copy ..\release\obs.exe .\32bit\ copy ..\obsapi\release\obsapi.dll .\32bit\ copy ..\rundir\services.xconfig .\32bit\ copy ..\rundir\pdb32\stripped\*.pdb .\32bit\ copy ..\rundir\locale\*.txt .\32bit\locale\ copy ..\rundir\shaders\*.?Shader .\32bit\shaders\ copy ..\dshowplugin\release\dshowplugin.dll .\32bit\plugins copy ..\noisegate\release\noisegate.dll .\32bit\plugins copy ..\psvplugin\release\psvplugin.dll .\32bit\plugins copy ..\scenesw\release\scenesw.dll .\32bit\plugins copy ..\rundir\plugins\dshowplugin\locale\*.txt .\32bit\plugins\dshowplugin\locale\ copy ..\rundir\plugins\dshowplugin\shaders\*.?Shader .\32bit\plugins\dshowplugin\shaders\ copy ..\rundir\plugins\psvplugin\locale\*.txt .\32bit\plugins\psvplugin\locale\ copy ..\rundir\plugins\scenesw\locale\*.txt .\32bit\plugins\scenesw\locale\ copy ..\graphicscapture\release\graphicscapture.dll .\32bit\plugins copy ..\graphicscapture\graphicscapturehook\release\graphicscapturehook.dll .\32bit\plugins\graphicscapture copy ..\graphicscapture\graphicscapturehook\x64\release\graphicscapturehook64.dll .\32bit\plugins\graphicscapture copy ..\injectHelper\release\injectHelper.exe .\32bit\plugins\graphicscapture copy ..\injectHelper\x64\release\injectHelper64.exe .\32bit\plugins\graphicscapture copy ..\x264\libs\32bit\libx264-146.dll .\32bit copy ..\QSVHelper\Release\QSVHelper.exe .\32bit copy ..\ObsNvenc\Release\ObsNvenc.dll .\32bit copy "%WindowsSDK80Path%Debuggers\x86\dbghelp.dll" .\32bit copy ..\rundir\amf-component-vce-windesktop32.dll .\32bit\ copy ..\rundir\amf-core-windesktop32.dll .\32bit\ copy ..\ObsVCE\Release\ObsVCE.dll .\32bit copy ..\ObsVCEAMF\Release\ObsVCEAMF.dll .\32bit copy ..\COPYING .\64bit\LICENSE copy ..\x64\release\obs.exe .\64bit\ copy ..\obsapi\x64\release\obsapi.dll .\64bit\ copy ..\rundir\services.xconfig .\64bit\ copy ..\rundir\pdb64\stripped\*.pdb .\64bit\ copy ..\rundir\locale\*.txt .\64bit\locale\ copy ..\rundir\shaders\*.?Shader .\64bit\shaders\ copy ..\dshowplugin\x64\release\dshowplugin.dll .\64bit\plugins copy ..\noisegate\x64\release\noisegate.dll .\64bit\plugins copy ..\psvplugin\x64\release\psvplugin.dll .\64bit\plugins copy ..\scenesw\x64\release\scenesw.dll .\64bit\plugins copy ..\rundir\plugins\dshowplugin\locale\*.txt .\64bit\plugins\dshowplugin\locale\ copy ..\rundir\plugins\dshowplugin\shaders\*.?Shader .\64bit\plugins\dshowplugin\shaders\ copy ..\rundir\plugins\psvplugin\locale\*.txt .\64bit\plugins\psvplugin\locale\ copy ..\rundir\plugins\scenesw\locale\*.txt .\64bit\plugins\scenesw\locale\ copy ..\graphicscapture\x64\release\graphicscapture.dll .\64bit\plugins copy ..\graphicscapture\graphicscapturehook\release\graphicscapturehook.dll .\64bit\plugins\graphicscapture copy ..\graphicscapture\graphicscapturehook\x64\release\graphicscapturehook64.dll .\64bit\plugins\graphicscapture copy ..\injectHelper\release\injectHelper.exe .\64bit\plugins\graphicscapture copy ..\injectHelper\x64\release\injectHelper64.exe .\64bit\plugins\graphicscapture copy ..\x264\libs\64bit\libx264-146.dll .\64bit copy ..\QSVHelper\Release\QSVHelper.exe .\64bit copy ..\ObsNvenc\x64\Release\ObsNvenc.dll .\64bit copy "%WindowsSDK80Path%Debuggers\x64\dbghelp.dll" .\64bit copy ..\rundir\amf-component-vce-windesktop64.dll .\64bit copy ..\rundir\amf-core-windesktop64.dll .\64bit copy ..\ObsVCE\x64\Release\ObsVCE.dll .\64bit copy ..\ObsVCEAMF\x64\Release\ObsVCEAMF.dll .\64bit copy ..\rundir\pdb32\*.pdb .\pdbs\32bit copy ..\rundir\pdb64\*.pdb .\pdbs\64bit "%ProgramFiles%\7-Zip\7z.exe" a obsvce_32bit.7z 32bit "%ProgramFiles%\7-Zip\7z.exe" a obsvce_64bit.7z 64bit pause mkdir upload mkdir upload\DirectShowPlugin mkdir upload\DirectShowPlugin\32bit mkdir upload\DirectShowPlugin\32bit\DShowPlugin\locale mkdir upload\DirectShowPlugin\32bit\DShowPlugin\shaders mkdir upload\DirectShowPlugin\64bit mkdir upload\DirectShowPlugin\64bit\DShowPlugin\locale mkdir upload\DirectShowPlugin\64bit\DShowPlugin\shaders mkdir upload\GraphicsCapturePlugin mkdir upload\GraphicsCapturePlugin\32bit mkdir upload\GraphicsCapturePlugin\32bit\GraphicsCapture mkdir upload\GraphicsCapturePlugin\64bit mkdir upload\GraphicsCapturePlugin\64bit\GraphicsCapture mkdir upload\NoiseGatePlugin mkdir upload\NoiseGatePlugin\32bit mkdir upload\NoiseGatePlugin\64bit mkdir upload\PSVPlugin mkdir upload\PSVPlugin\32bit mkdir upload\PSVPlugin\32bit\PSVPlugin\locale mkdir upload\PSVPlugin\64bit mkdir upload\PSVPlugin\64bit\PSVPlugin\locale mkdir upload\scenesw mkdir upload\scenesw\32bit mkdir upload\scenesw\32bit\scenesw\locale mkdir upload\scenesw\64bit mkdir upload\scenesw\64bit\scenesw\locale mkdir upload\OBS mkdir upload\OBS\32bit mkdir upload\OBS\64bit mkdir upload\OBS\locale mkdir upload\OBS\services mkdir upload\OBS\shaders copy 32bit\plugins\dshowplugin.dll .\upload\DirectShowPlugin\32bit\ copy 32bit\plugins\dshowplugin\locale\*.txt .\upload\DirectShowPlugin\32bit\DShowPlugin\locale\ copy 32bit\plugins\dshowplugin\shaders\*.?Shader .\upload\DirectShowPlugin\32bit\DShowPlugin\shaders\ copy 64bit\plugins\dshowplugin.dll .\upload\DirectShowPlugin\64bit\ copy 64bit\plugins\dshowplugin\locale\*.txt .\upload\DirectShowPlugin\64bit\DShowPlugin\locale\ copy 64bit\plugins\dshowplugin\shaders\*.?Shader .\upload\DirectShowPlugin\64bit\DShowPlugin\shaders\ copy 32bit\plugins\graphicscapture.dll .\upload\GraphicsCapturePlugin\32bit\ copy 32bit\plugins\graphicscapture\graphicscapturehook.dll .\upload\GraphicsCapturePlugin\32bit\GraphicsCapture\ copy 32bit\plugins\graphicscapture\graphicscapturehook64.dll .\upload\GraphicsCapturePlugin\32bit\GraphicsCapture\ copy 32bit\plugins\graphicscapture\injectHelper.exe .\upload\GraphicsCapturePlugin\32bit\GraphicsCapture\ copy 32bit\plugins\graphicscapture\injectHelper64.exe .\upload\GraphicsCapturePlugin\32bit\GraphicsCapture\ copy 64bit\plugins\graphicscapture.dll .\upload\GraphicsCapturePlugin\64bit\ copy 64bit\plugins\graphicscapture\graphicscapturehook.dll .\upload\GraphicsCapturePlugin\64bit\GraphicsCapture\ copy 64bit\plugins\graphicscapture\graphicscapturehook64.dll .\upload\GraphicsCapturePlugin\64bit\GraphicsCapture\ copy 64bit\plugins\graphicscapture\injectHelper.exe .\upload\GraphicsCapturePlugin\64bit\GraphicsCapture\ copy 64bit\plugins\graphicscapture\injectHelper64.exe .\upload\GraphicsCapturePlugin\64bit\GraphicsCapture\ copy 32bit\plugins\noisegate.dll .\upload\NoiseGatePlugin\32bit\ copy 64bit\plugins\noisegate.dll .\upload\NoiseGatePlugin\64bit\ copy 32bit\plugins\psvplugin.dll .\upload\PSVPlugin\32bit\ copy 32bit\plugins\psvplugin\locale\*.txt .\upload\PSVPlugin\32bit\PSVPlugin\locale\ copy 64bit\plugins\psvplugin.dll .\upload\PSVPlugin\64bit\ copy 64bit\plugins\psvplugin\locale\*.txt .\upload\PSVPlugin\64bit\PSVPlugin\locale\ copy 32bit\plugins\scenesw.dll .\upload\scenesw\32bit\ copy 32bit\plugins\scenesw\locale\*.txt .\upload\scenesw\32bit\scenesw\locale\ copy 64bit\plugins\scenesw.dll .\upload\scenesw\64bit\ copy 64bit\plugins\scenesw\locale\*.txt .\upload\scenesw\64bit\scenesw\locale\ copy 32bit\obs.exe .\upload\OBS\32bit\ copy 32bit\obsapi.dll .\upload\OBS\32bit\ copy 32bit\*.pdb .\upload\OBS\32bit\ copy 32bit\libx264-146.dll .\upload\OBS\32bit copy 32bit\QSVHelper.exe .\upload\OBS\32bit copy 32bit\ObsNvenc.dll .\upload\OBS\32bit copy "%WindowsSDK80Path%Debuggers\x86\dbghelp.dll" .\upload\OBS\32bit copy 64bit\obs.exe .\upload\OBS\64bit\ copy 64bit\obsapi.dll .\upload\OBS\64bit\ copy 64bit\*.pdb .\upload\OBS\64bit\ copy 64bit\libx264-146.dll .\upload\OBS\64bit copy 64bit\QSVHelper.exe .\upload\OBS\64bit copy 64bit\ObsNvenc.dll .\upload\OBS\64bit copy "%WindowsSDK80Path%Debuggers\x64\dbghelp.dll" .\upload\OBS\64bit copy 32bit\locale\*.txt .\upload\OBS\locale\ copy 32bit\services.xconfig .\upload\OBS\services\ copy 32bit\shaders\*.?Shader .\upload\OBS\shaders\
joenilan/OBS
installer/generate_binaries.bat
bat
gpl-2.0
8,574
@echo off rem // rem // This is a MS Visual C++ build script for examples from rem // "Programming -- Principles and Practice Using C++" by Bjarne Stroustrup rem // rem Usage: rem build - Build all examples using the most recent MS VC++ compiler rem build clean - Clean all examples rem build test - Test all built examples rem build [ msvc90 | msvc80 | msvc71 ] - Build with a given version of MS VC++ set current_dir=%cd% set divider=---------------------------------------------- echo %divider% & cd %current_dir%\Chapter02 & call build.bat %* echo %divider% & cd %current_dir%\Chapter03 & call build.bat %* echo %divider% & cd %current_dir%\Chapter04 & call build.bat %* echo %divider% & cd %current_dir%\Chapter05 & call build.bat %* echo %divider% & cd %current_dir%\Chapter06 & call build.bat %* echo %divider% & cd %current_dir%\Chapter07 & call build.bat %* echo %divider% & cd %current_dir%\Chapter08 & call build.bat %* echo %divider% & cd %current_dir%\Chapter09 & call build.bat %* echo %divider% & cd %current_dir%\Chapter10 & call build.bat %* echo %divider% & cd %current_dir%\Chapter11 & call build.bat %* echo %divider% & cd %current_dir%\Chapter12 & call build.bat %* echo %divider% & cd %current_dir%\Chapter13 & call build.bat %* echo %divider% & cd %current_dir%\Chapter14 & call build.bat %* echo %divider% & cd %current_dir%\Chapter15 & call build.bat %* echo %divider% & cd %current_dir%\Chapter16 & call build.bat %* echo %divider% & cd %current_dir%\Chapter17 & call build.bat %* echo %divider% & cd %current_dir%\Chapter18 & call build.bat %* echo %divider% & cd %current_dir%\Chapter19 & call build.bat %* echo %divider% & cd %current_dir%\Chapter20 & call build.bat %* echo %divider% & cd %current_dir%\Chapter21 & call build.bat %* echo %divider% & cd %current_dir%\Chapter22 & call build.bat %* echo %divider% & cd %current_dir%\Chapter23 & call build.bat %* echo %divider% & cd %current_dir%\Chapter24 & call build.bat %* echo %divider% & cd %current_dir%\Chapter25 & call build.bat %* echo %divider% & cd %current_dir%\Chapter26 & call build.bat %* echo %divider% & cd %current_dir%\Chapter27 & call build.bat %*
bewuethr/stroustrup_ppp
code_snippets/build.bat
bat
mit
2,205
java -Djava.library.path=../../lib/lwjgl-2.9.1/native/windows -Xmx128m -classpath classes;../../lib/jpct/jpct.jar;../../lib/lwjgl-2.9.1/jar/lwjgl.jar;../../lib/lwjgl-2.9.1/jar/lwjgl_util.jar HelloWorldOGL
neptunedockyard/deepseaJPCT
jpct/examples/helloworld/run_opengl.bat
bat
mit
204
@echo off rem Compile all of SIMH using MINGW make and gcc environment rem rem The makefile will determine if the needed WinPcap build rem components are available and the resulting simulators will rem run with networking support when the WinPcap environment rem is installed on the running system. rem rem Individual simulator sources are in .\simulator_name rem Individual simulator executables are to .\BIN rem rem If needed, define the path for the MINGW bin directory. rem gcc -v 1>NUL 2>NUL if ERRORLEVEL 1 path C:\MinGW\bin;%path% if not exist BIN mkdir BIN gcc -v 1>NUL 2>NUL if ERRORLEVEL 1 echo "MinGW Environment Unavailable" mingw32-make -f makefile %*
j-hoppe/BlinkenBone
projects/02.3_simh/4.x+realcons/src/build_mingw.bat
bat
mit
667
:: Run this script by double clicking on it in Windows explorer @ECHO OFF TITLE ApsimRun.py :: Change 'data' to the directory where the .apsim file(s) that need to be run are located :: ie "C:\Users\<user>\Documents\mydata" CD data "C:/Program Files (x86)/Apsim74-r2286/Model/ApsimRun.py"
dhstack/apsimRegions
examples/run.bat
bat
mit
290
@echo off @rem ########################################################################## @rem @rem node-wrapper startup script for Windows @rem --------------------------------------- @rem @rem See COPYING file for the legal stuff. @rem @rem ########################################################################## set NODEJS_VERSION=0.9.2 set NPM_VERSION=1.1.59 set NODEJS_PREFIX=%CD%\.node set NODEJS_URL=http://nodejs.org/dist/v%NODEJS_VERSION%/node.exe set NPM_URL=http://nodejs.org/dist/npm/npm-%NPM_VERSION%.zip set LOG_FILE=node-wrapper.log set ZIP=7za.exe @rem ########################################################################## set _NODE_JS_EXE=%NODEJS_PREFIX%\node.exe set _NPM_ZIP=%NODEJS_PREFIX%\npm-%NPM_VERSION%.zip set _NPM_EXE=%NODEJS_PREFIX%\npm.cmd @rem We create the log file and Node's folder. echo > %LOG_FILE% if NOT EXIST "%NODEJS_PREFIX%" mkdir %NODEJS_PREFIX% @rem ########################################################################## @rem ### Check & install node.js @rem ########################################################################## if NOT EXIST %_NODE_JS_EXE% ( echo Downloading nodejs into %NODEJS_PREFIX%. Be patient, it can take several minutes. @bitsadmin /cancel NodeJsDownloadJob > %LOG_FILE% @bitsadmin /create NodeJsDownloadJob >> %LOG_FILE% @bitsadmin /addfile NodeJsDownloadJob %NODEJS_URL% %_NODE_JS_EXE% >> %LOG_FILE% @bitsadmin /resume NodeJsDownloadJob >> %LOG_FILE% :loopnode FOR /F "delims=" %%d in ('bitsadmin /RawReturn /GetState NodeJsDownloadJob') do @set state=%%d @sleep 1 echo|set /p=". " if NOT '%state%' == 'TRANSFERRED' goto loopnode echo . @bitsadmin /complete NodeJsDownloadJob >> %LOG_FILE% ) @rem ########################################################################## @rem ### Check & install npm @rem ########################################################################## if NOT EXIST %_NPM_ZIP% ( echo Downloading npm into %NODEJS_PREFIX%. Be patient, it can take several minutes. @bitsadmin /cancel NpmDownloadJob >> %LOG_FILE% @bitsadmin /create NpmDownloadJob >> %LOG_FILE% @bitsadmin /addfile NpmDownloadJob %NPM_URL% %_NPM_ZIP% >> %LOG_FILE% @bitsadmin /resume NpmDownloadJob >> %LOG_FILE% :loopnpm FOR /F "delims=" %%d in ('bitsadmin /RawReturn /GetState NpmDownloadJob') do @set state=%%d @sleep 1 echo|set /p=". " if not '%state%' == 'TRANSFERRED' goto loopnpm echo . @bitsadmin /complete NpmDownloadJob >> %LOG_FILE% echo Installing npm "%ZIP%" x -o"%NODEJS_PREFIX%" -y "%_NPM_ZIP%" >> %LOG_FILE% ) set TOOL="" @rem ########################################################################## @rem ### Guesses which tool to use @rem ########################################################################## call :guess_tool_name %* if NOT %TOOL% == "" ( SETLOCAL set PATH=%NODEJS_PREFIX%;%PATH% if not EXIST %NODEJS_PREFIX%\%TOOL%.cmd ( IF ERRORLEVEL 0 ( echo Installing %TOOL%... "%_NPM_EXE%" install -g "%TOOL%" >> %LOG_FILE% 2>&1 echo ... installed. ) ) %NODEJS_PREFIX%\%TOOL%.cmd %* ENDLOCAL ) @rem ########################################################################## :guess_tool_name set basename= for /F %%i in ("%~f0") do set basename=%%~ni if "%basename%" == "node-wrapper" ( if "x%~1" == "x" ( echo No arguments passed. echo echo Usage: %~f0 [tool] [tool options] echo echo Examples: echo %~f0 grunt watch echo %~f0 brunch build echo echo You can also rename %~f0 to the name of your tool and then echo you won't need to pass the tool name in the command line ) else ( set TOOL=%~1 SHIFT ) ) else ( for /F %%i in ("%~f0") do set TOOL=%%~ni )
daniperez/node-wrapper
node-wrapper.bat
bat
mit
4,234
npm publish "%~dp0/../src/NSwag.Npm"
NSwag/NSwag
build/04_Publish.bat
bat
mit
36
@ECHO OFF ruby test/fixtures/baseball/batter.rb
testdouble/scripty
test/fixtures/user-scripts-win/parallel/batter.cmd
bat
mit
50
@echo off powershell $argFile = '%1';$dq = ([char]0x0022).ToString();if(!(Test-Path($argFile))){echo 'No such file';Exit;}$lastbackslash = $argFile.LastIndexOf('\');$lastdot = $argFile.LastIndexOf('.');if($lastdot -gt $lastbackslash){$output = $argFile.Remove($lastdot) + (Get-Date).ToString('yyyyMMddHHmmss') + '.7z';}else{$output = $argFile + (Get-Date).ToString('yyyyMMddHHmmss')+ '.7z';}$sevenzg = [System.IO.Path]::Combine([System.Environment]::GetEnvironmentVariable('programW6432'),'7-Zip\7zG.exe');if(!(Test-Path($sevenzg))){$sevenzg = [System.IO.Path]::Combine([System.Environment]::GetEnvironmentVariable('programfiles'),'7-Zip\7zG.exe');if(!(Test-Path($sevenzg))){$sevenzg = [System.IO.Path]::Combine([System.Environment]::GetEnvironmentVariable('programfiles(x86)'),'7-Zip\7zG.exe');if(!(Test-Path($sevenzg))){echo '7z not installed.'Exit;}}}if(Test-Path($output)){echo 'Filename exists (Rare exception)';Exit;}start $sevenzg ('a -mx=9 ' +$dq+ $output + $dq+' '+$dq + $argFile+$dq);
cshu/bpd
shellsendto/ZAppendTimestamp.cmd
bat
cc0-1.0
995
cmd_drivers/lguest/built-in.o := rm -f drivers/lguest/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/lguest/built-in.o
asopov/linux-tpt-2.6.39
drivers/lguest/.built-in.o.cmd
bat
gpl-2.0
179
cls powershell -Command "& { [Console]::WindowWidth = 150; [Console]::WindowHeight = 50; [Console]::BufferHeight = 1000; Start-Transcript %~dp0runbuild.txt; Import-Module %~dp0..\Tools\PSake\psake.psm1; Invoke-psake %~dp0..\ps\build.ps1 %*; Stop-Transcript; }" PAUSE
tonecool/Tonesoft.Settings
ps/build.cmd
bat
gpl-2.0
266
cmd_drivers/net/usb/smsc75xx.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/net/usb/smsc75xx.ko drivers/net/usb/smsc75xx.o drivers/net/usb/smsc75xx.mod.o
avareldalton85/rpi2-linux-rt
drivers/net/usb/.smsc75xx.ko.cmd
bat
gpl-2.0
267
cmd_drivers/mtd/onenand/onenand.o := /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/mtd/onenand/onenand.o drivers/mtd/onenand/onenand_base.o drivers/mtd/onenand/onenand_bbt.o
kannu1994/crespo_kernel
drivers/mtd/onenand/.onenand.o.cmd
bat
gpl-2.0
232
cmd_fs/proc/proc.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o fs/proc/proc.o fs/proc/task_mmu.o fs/proc/inode.o fs/proc/root.o fs/proc/base.o fs/proc/generic.o fs/proc/array.o fs/proc/fd.o fs/proc/proc_tty.o fs/proc/cmdline.o fs/proc/consoles.o fs/proc/cpuinfo.o fs/proc/devices.o fs/proc/interrupts.o fs/proc/loadavg.o fs/proc/meminfo.o fs/proc/stat.o fs/proc/uptime.o fs/proc/version.o fs/proc/softirqs.o fs/proc/namespaces.o fs/proc/self.o fs/proc/thread_self.o fs/proc/proc_sysctl.o fs/proc/proc_net.o fs/proc/kmsg.o fs/proc/page.o
avareldalton85/rpi2-linux-rt
fs/proc/.proc.o.cmd
bat
gpl-2.0
602
cmd_sound/core/snd-timer.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 sound/core/snd-timer.o sound/core/timer.o
FEDEVEL/tmp-imx6-tiny-rex-linux
sound/core/.snd-timer.o.cmd
bat
gpl-2.0
207
cmd_fs/yaffs2/built-in.o := /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/yaffs2/built-in.o fs/yaffs2/yaffs.o
kannu1994/crespo_kernel
fs/yaffs2/.built-in.o.cmd
bat
gpl-2.0
164
cmd_sound/isa/galaxy/built-in.o := rm -f sound/isa/galaxy/built-in.o; /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/isa/galaxy/built-in.o
kannu1994/crespo_kernel
sound/isa/galaxy/.built-in.o.cmd
bat
gpl-2.0
185
cmd_net/ieee802154/built-in.o := rm -f net/ieee802154/built-in.o; arm-none-linux-gnueabi-ar rcs net/ieee802154/built-in.o
EAVR/EV3.14
ev3sources/extra/linux-03.20.00.13/net/ieee802154/.built-in.o.cmd
bat
gpl-2.0
123
cmd_libbb/correct_password.o := gcc -Wp,-MD,libbb/.correct_password.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.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -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 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(correct_password)" -D"KBUILD_MODNAME=KBUILD_STR(correct_password)" -c -o libbb/correct_password.o libbb/correct_password.c deps_libbb/correct_password.o := \ libbb/correct_password.c \ $(wildcard include/config/feature/shadowpasswds.h) \ include/libbb.h \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/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/utmp.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/busybox/exec/path.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/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/feature/mtab/support.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/4.6.1/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/bits/predefs.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/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \ /usr/include/ctype.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.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/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/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/uio.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/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/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/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.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.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/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/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/x86_64-linux-gnu/sys/resource.h \ /usr/include/x86_64-linux-gnu/bits/resource.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.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/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/mntent.h \ /usr/include/paths.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ libbb/correct_password.o: $(deps_libbb/correct_password.o) $(deps_libbb/correct_password.o):
muthumani2/Muthu-busybox
libbb/.correct_password.o.cmd
bat
gpl-2.0
9,452
@echo off ECHO YOU MUST HAVE TORTOISEVN INSTALLED FOR THIS TO WORK! ECHO If you do not have TortoiseSVN installed, expect problems. START ../../micromacro.exe "%~dp0/svnupdate.lua"
RoMBotCommunity/RoMBot
SVN.update.bat
bat
gpl-2.0
180
cmd_fs/inode.o := ../prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-gcc -Wp,-MD,fs/.inode.o.d -nostdinc -isystem /home/keyur/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -I/home/keyur/latest/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__=6 -march=armv6k -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=2112 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(inode)" -D"KBUILD_MODNAME=KBUILD_STR(inode)" -D"DEBUG_HASH=45" -D"DEBUG_HASH2=35" -c -o fs/inode.o fs/inode.c deps_fs/inode.o := \ fs/inode.c \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/keyur/latest/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/keyur/latest/arch/arm/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/keyur/latest/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/keyur/latest/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /home/keyur/latest/arch/arm/include/asm/posix_types.h \ /home/keyur/latest/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /home/keyur/latest/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/keyur/latest/arch/arm/include/asm/hwcap.h \ /home/keyur/latest/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/keyur/latest/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /home/keyur/latest/arch/arm/include/asm/irqflags.h \ /home/keyur/latest/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ arch/arm/mach-msm/include/mach/barriers.h \ include/asm-generic/cmpxchg-local.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/keyur/latest/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 \ /home/keyur/latest/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/keyur/latest/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/keyur/latest/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /home/keyur/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /home/keyur/latest/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/keyur/latest/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/keyur/latest/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/keyur/latest/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /home/keyur/latest/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ /home/keyur/latest/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/keyur/latest/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ include/linux/path.h \ include/linux/stat.h \ /home/keyur/latest/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/kobject.h \ $(wildcard include/config/hotplug.h) \ include/linux/sysfs.h \ include/linux/errno.h \ /home/keyur/latest/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/kref.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /home/keyur/latest/arch/arm/include/asm/rwsem.h \ include/linux/percpu_counter.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /home/keyur/latest/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /home/keyur/latest/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/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) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /home/keyur/latest/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/keyur/latest/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/keyur/latest/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/keyur/latest/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ /home/keyur/latest/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/keyur/latest/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/keyur/latest/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /home/keyur/latest/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/keyur/latest/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /home/keyur/latest/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-msm/include/mach/vmalloc.h \ $(wildcard include/config/vmsplit/2g.h) \ /home/keyur/latest/arch/arm/include/asm/pgtable-hwdef.h \ /home/keyur/latest/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ $(wildcard include/config/arm/errata/720789.h) \ $(wildcard include/config/arch/msm8x60.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ /home/keyur/latest/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/linux/param.h \ /home/keyur/latest/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/jiffies.h \ /home/keyur/latest/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/keyur/latest/arch/arm/include/asm/ipcbuf.h \ /home/keyur/latest/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/keyur/latest/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/keyur/latest/arch/arm/include/asm/sigcontext.h \ /home/keyur/latest/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/proportions.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/keyur/latest/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/kmalloc_sizes.h \ include/linux/writeback.h \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/keyur/latest/arch/arm/include/asm/elf.h \ /home/keyur/latest/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ppc64.h) \ /home/keyur/latest/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/hash.h \ include/linux/swap.h \ $(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \ include/linux/memcontrol.h \ $(wildcard include/config/cgroup/mem/cont.h) \ include/linux/cgroup.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/idr.h \ include/linux/node.h \ $(wildcard include/config/hugetlbfs.h) \ include/linux/sysdev.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ $(wildcard include/config/pm/ops.h) \ include/linux/security.h \ $(wildcard include/config/security/path.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/securityfs.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /home/keyur/latest/arch/arm/include/asm/shmparam.h \ /home/keyur/latest/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /home/keyur/latest/arch/arm/include/asm/msgbuf.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/in6.h \ include/linux/pagemap.h \ include/linux/highmem.h \ $(wildcard include/config/debug/highmem.h) \ include/linux/uaccess.h \ /home/keyur/latest/arch/arm/include/asm/uaccess.h \ /home/keyur/latest/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /home/keyur/latest/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ $(wildcard include/config/arm/errata/411920.h) \ /home/keyur/latest/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /home/keyur/latest/arch/arm/include/asm/kmap_types.h \ include/linux/hardirq.h \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /home/keyur/latest/arch/arm/include/asm/hardirq.h \ /home/keyur/latest/arch/arm/include/asm/irq.h \ arch/arm/mach-msm/include/mach/irqs.h \ $(wildcard include/config/arch/qsd8x50.h) \ arch/arm/mach-msm/include/mach/irqs-7xxx.h \ include/linux/irq_cpustat.h \ include/linux/cdev.h \ include/linux/bootmem.h \ $(wildcard include/config/crash/dump.h) \ $(wildcard include/config/have/arch/bootmem/node.h) \ $(wildcard include/config/have/arch/alloc/remap.h) \ /home/keyur/latest/arch/arm/include/asm/dma.h \ $(wildcard include/config/isa/dma/api.h) \ $(wildcard include/config/pci.h) \ include/linux/inotify.h \ include/linux/fsnotify.h \ include/linux/dnotify.h \ include/linux/fsnotify_backend.h \ include/linux/audit.h \ $(wildcard include/config/change.h) \ include/linux/mount.h \ include/linux/async.h \ include/linux/posix_acl.h \ include/linux/buffer_head.h \ fs/inode.o: $(deps_fs/inode.o) $(deps_fs/inode.o):
venkatkamesh/2.6.35-kernel-for-lg-optimus-me-
fs/.inode.o.cmd
bat
gpl-2.0
26,174
cmd_sound/usb/caiaq/built-in.o := rm -f sound/usb/caiaq/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/usb/caiaq/built-in.o
selva-simple/Galaxy-R-Kernel
sound/usb/caiaq/.built-in.o.cmd
bat
gpl-2.0
177
cmd_sound/soc/s6000/built-in.o := rm -f sound/soc/s6000/built-in.o; arm-arago-linux-gnueabi-ar rcs sound/soc/s6000/built-in.o
calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1
sound/soc/s6000/.built-in.o.cmd
bat
gpl-2.0
127
cmd_arch/arm/lib/io-readsb.o := /root/Kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.io-readsb.o.d -nostdinc -isystem /root/Kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/root/Kernel/D710SPR_GB27_Kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-exynos/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/io-readsb.o arch/arm/lib/io-readsb.S source_arch/arm/lib/io-readsb.o := arch/arm/lib/io-readsb.S deps_arch/arm/lib/io-readsb.o := \ /root/Kernel/D710SPR_GB27_Kernel/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) \ /root/Kernel/D710SPR_GB27_Kernel/arch/arm/include/asm/linkage.h \ /root/Kernel/D710SPR_GB27_Kernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /root/Kernel/D710SPR_GB27_Kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/Kernel/D710SPR_GB27_Kernel/arch/arm/include/asm/hwcap.h \ /root/Kernel/D710SPR_GB27_Kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/lib/io-readsb.o: $(deps_arch/arm/lib/io-readsb.o) $(deps_arch/arm/lib/io-readsb.o):
garwynn/D710SPR_GB27_Kernel
arch/arm/lib/.io-readsb.o.cmd
bat
gpl-2.0
2,048
python "remove_special.py" pause del "%0" pause
velayudhum/balapy-basics
RemoveSpecial/geany_run_script.bat
bat
gpl-3.0
50
:: (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. :: :: This file contains confidential and proprietary information :: of Xilinx, Inc. and is protected under U.S. and :: international copyright and other intellectual property :: laws. :: :: DISCLAIMER :: This disclaimer is not a license and does not grant any :: rights to the materials distributed herewith. Except as :: otherwise provided in a valid license issued to you by :: Xilinx, and to the maximum extent permitted by applicable :: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND :: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES :: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING :: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- :: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and :: (2) Xilinx shall not be liable (whether in contract or tort, :: including negligence, or under any other theory of :: liability) for any loss or damage of any kind or nature :: related to, arising under or in connection with these :: materials, including for any direct, or any indirect, :: special, incidental, or consequential loss or damage :: (including loss of data, profits, goodwill, or any type of :: loss or damage suffered as a result of any action brought :: by a third party) even if such damage or loss was :: reasonably foreseeable or Xilinx had been advised of the :: possibility of the same. :: :: CRITICAL APPLICATIONS :: Xilinx products are not designed or intended to be fail- :: safe, or for use in any application requiring fail-safe :: performance, such as life-support or safety devices or :: systems, Class III medical devices, nuclear facilities, :: applications related to the deployment of airbags, or any :: other applications that could lead to death, personal :: injury, or severe property or environmental damage :: (individually and collectively, "Critical :: Applications"). Customer assumes the sole risk and :: liability of any use of Xilinx products in Critical :: Applications, subject only to applicable laws and :: regulations governing limitations on product liability. :: :: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS :: PART OF THIS FILE AT ALL TIMES. echo "Compiling Core VHDL UNISIM/Behavioral model" vhpcomp -work work ..\\..\\implement\\results\\routed.vhd echo "Compiling Test Bench Files" vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_pkg.vhd vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_rng.vhd vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_dgen.vhd vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_dverif.vhd vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_pctrl.vhd vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_synth.vhd vhpcomp -work work ..\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_tb.vhd fuse work.system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_tb -L simprim -o system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_tb.exe .\\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_tb.exe -sdfmax /system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_tb/system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_synth_inst/system_axi_vdma_0_wrapper_fifo_generator_v9_1_2_inst=..\\..\\implement\\results\\routed.sdf -gui -tclbatch .\\wave_isim.tcl
CprE488/Final
system/implementation/system_axi_vdma_0_wrapper_fifo_generator_v9_1_2/simulation/timing/simulate_isim.bat
bat
gpl-3.0
3,361
cd D:\LYM-sources\Porphyrograph-interface\debug\ Porphyrograph-interface-TVW.exe
yukao/Porphyrograph
LYM-projects/batFiles/TVW.QT.bat
bat
gpl-3.0
80
@echo off rem ------------------------------------------------------------------------- rem dcm4che2/mkuiddic Launcher rem ------------------------------------------------------------------------- rem $Id: mkuiddic.bat 14338 2010-11-18 11:05:27Z gunterze $ if not "%ECHO%" == "" echo %ECHO% if "%OS%" == "Windows_NT" setlocal set MAIN_CLASS=org.dcm4che2.data.UIDDictionary set MAIN_JAR=dcm4che-core-2.0.25.jar set DIRNAME=.\ if "%OS%" == "Windows_NT" set DIRNAME=%~dp0% rem Read all command line arguments set ARGS= :loop if [%1] == [] goto end set ARGS=%ARGS% %1 shift goto loop :end if not "%DCM4CHE_HOME%" == "" goto HAVE_DCM4CHE_HOME set DCM4CHE_HOME=%DIRNAME%.. :HAVE_DCM4CHE_HOME if not "%JAVA_HOME%" == "" goto HAVE_JAVA_HOME set JAVA=java goto SKIP_SET_JAVA_HOME :HAVE_JAVA_HOME set JAVA=%JAVA_HOME%\bin\java :SKIP_SET_JAVA_HOME set CP=%DCM4CHE_HOME%\lib\%MAIN_JAR% set CP=%CP%;%DCM4CHE_HOME%\lib\slf4j-log4j12-1.6.1.jar set CP=%CP%;%DCM4CHE_HOME%\lib\slf4j-api-1.6.1.jar set CP=%CP%;%DCM4CHE_HOME%\lib\log4j-1.2.16.jar "%JAVA%" %JAVA_OPTS% -cp "%CP%" %MAIN_CLASS% %ARGS%
gbook/nidb
tools/dcm4che/bin/mkuiddic.bat
bat
gpl-3.0
1,125
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f
CHEF-KOCH/regtweaks
OS independent/Batch/Disable Cortana and Web Search.bat
bat
mpl-2.0
106
@echo off python main.py rem if errorlevel 1 pause
gau-veldt/Blockiverse
Blockiverse.bat
bat
agpl-3.0
51
python cmsimde/wsgi.py
kmolab/kmolab.github.io
cms.bat
bat
agpl-3.0
22
java -cp ..\lib\chatPjava.jar chat.client.Start -exitwhenempty true pause
ekiwi/jade-mirror
leap/demo/bin/startChatParticipantPjava.bat
bat
lgpl-2.1
76
@echo off rem ------------------------------------------------------------------------- rem JBoss Bootstrap Script for Windows rem ------------------------------------------------------------------------- rem Use --debug to activate debug mode with an optional argument to specify the port rem Usage : standalone.bat --debug rem standalone.bat --debug 9797 rem By default debug mode is disable. set DEBUG_MODE=false set DEBUG_PORT=8787 rem Set to all parameters by default set SERVER_OPTS=%* rem Get the program name before using shift as the command modify the variable ~nx0 if "%OS%" == "Windows_NT" ( set "PROGNAME=%~nx0%" ) else ( set "PROGNAME=standalone.bat" ) @if not "%ECHO%" == "" echo %ECHO% @if "%OS%" == "Windows_NT" setlocal if "%OS%" == "Windows_NT" ( set "DIRNAME=%~dp0%" ) else ( set DIRNAME=.\ ) setlocal EnableDelayedExpansion rem check for the security manager system property echo(!SERVER_OPTS! | findstr /r /c:"-Djava.security.manager" > nul if not errorlevel == 1 ( echo WARNING: The use of -Djava.security.manager has been deprecated. Please use the -secmgr command line argument or SECMGR=true environment variable. set SECMGR=true ) setlocal DisableDelayedExpansion rem Read command-line args, the ~ removes the quotes from the parameter :READ-ARGS if "%~1" == "" ( goto MAIN ) else if "%~1" == "--debug" ( goto READ-DEBUG-PORT ) else if "%~1" == "-secmgr" ( set SECMGR=true ) shift goto READ-ARGS :READ-DEBUG-PORT set "DEBUG_MODE=true" set DEBUG_ARG="%2" if not %DEBUG_ARG% == "" ( if x%DEBUG_ARG:-=%==x%DEBUG_ARG% ( shift set DEBUG_PORT=%DEBUG_ARG% ) shift goto READ-ARGS ) :MAIN rem $Id$ ) pushd "%DIRNAME%.." set "RESOLVED_JBOSS_HOME=%CD%" popd if "x%JBOSS_HOME%" == "x" ( set "JBOSS_HOME=%RESOLVED_JBOSS_HOME%" ) pushd "%JBOSS_HOME%" set "SANITIZED_JBOSS_HOME=%CD%" popd if /i "%RESOLVED_JBOSS_HOME%" NEQ "%SANITIZED_JBOSS_HOME%" ( echo. echo WARNING: JBOSS_HOME may be pointing to a different installation - unpredictable results may occur. echo. echo JBOSS_HOME: "%JBOSS_HOME%" echo. rem 2 seconds pause ping 127.0.0.1 -n 3 > nul ) rem Read an optional configuration file. if "x%STANDALONE_CONF%" == "x" ( set "STANDALONE_CONF=%DIRNAME%standalone.conf.bat" ) if exist "%STANDALONE_CONF%" ( echo Calling "%STANDALONE_CONF%" call "%STANDALONE_CONF%" %* ) else ( echo Config file not found "%STANDALONE_CONF%" ) rem Set debug settings if not already set if "%DEBUG_MODE%" == "true" ( echo "%JAVA_OPTS%" | findstr /I "\-agentlib:jdwp" > nul if errorlevel == 1 ( set "JAVA_OPTS=%JAVA_OPTS% -agentlib:jdwp=transport=dt_socket,address=%DEBUG_PORT%,server=y,suspend=n" ) else ( echo Debug already enabled in JAVA_OPTS, ignoring --debug argument ) ) set DIRNAME= rem Setup directories, note directories with spaces do not work setlocal EnableDelayedExpansion set "CONSOLIDATED_OPTS=%JAVA_OPTS% %SERVER_OPTS%" set baseDirFound=false set configDirFound=false set logDirFound=false for %%a in (!CONSOLIDATED_OPTS!) do ( if !baseDirFound! == true ( set "JBOSS_BASE_DIR=%%~a" set baseDirFound=false ) if !configDirFound! == true ( set "JBOSS_CONFIG_DIR=%%~a" set configDirFound=false ) if !logDirFound! == true ( set "JBOSS_LOG_DIR=%%~a" set logDirFound=false ) if "%%~a" == "-Djboss.server.base.dir" ( set baseDirFound=true ) if "%%~a" == "-Djboss.server.config.dir" ( set configDirFound=true ) if "%%~a" == "-Djboss.server.log.dir" ( set logDirFound=true ) ) rem If the -Djava.security.manager is found, enable the -secmgr and include a bogus security manager for JBoss Modules to replace echo(!JAVA_OPTS! | findstr /r /c:"-Djava.security.manager" > nul && ( set "JAVA_OPTS=-Djava.security.manager=org.jboss.modules._private.StartupSecurityManager !JAVA_OPTS! -Djava.security.manager=org.jboss.modules._private.StartupSecurityManager" echo WARNING: The use of -Djava.security.manager has been deprecated. Please use the -secmgr command line argument or SECMGR=true environment variable. set SECMGR=true ) setlocal DisableDelayedExpansion rem Set default module root paths if "x%JBOSS_MODULEPATH%" == "x" ( set "JBOSS_MODULEPATH=%JBOSS_HOME%\modules" ) rem Set the standalone base dir if "x%JBOSS_BASE_DIR%" == "x" ( set "JBOSS_BASE_DIR=%JBOSS_HOME%\standalone" ) rem Set the standalone log dir if "x%JBOSS_LOG_DIR%" == "x" ( set "JBOSS_LOG_DIR=%JBOSS_BASE_DIR%\log" ) rem Set the standalone configuration dir if "x%JBOSS_CONFIG_DIR%" == "x" ( set "JBOSS_CONFIG_DIR=%JBOSS_BASE_DIR%\configuration" ) rem Setup JBoss specific properties set "JAVA_OPTS=-Dprogram.name=%PROGNAME% %JAVA_OPTS%" if "x%JAVA_HOME%" == "x" ( set JAVA=java echo JAVA_HOME is not set. Unexpected results may occur. echo Set JAVA_HOME to the directory of your local JDK to avoid this message. ) else ( if not exist "%JAVA_HOME%" ( echo JAVA_HOME "%JAVA_HOME%" path doesn't exist goto END ) else ( echo Setting JAVA property to "%JAVA_HOME%\bin\java" set "JAVA=%JAVA_HOME%\bin\java" ) ) if not "%PRESERVE_JAVA_OPTS%" == "true" ( rem Add -client to the JVM options, if supported (32 bit VM), and not overriden echo "%JAVA_OPTS%" | findstr /I \-server > nul if errorlevel == 1 ( "%JAVA%" -client -version 2>&1 | findstr /I /C:"Client VM" > nul if not errorlevel == 1 ( set "JAVA_OPTS=-client %JAVA_OPTS%" ) ) ) if not "%PRESERVE_JAVA_OPTS%" == "true" ( rem Add compressed oops, if supported (64 bit VM), and not overriden echo "%JAVA_OPTS%" | findstr /I "\-XX:\-UseCompressedOops \-client" > nul if errorlevel == 1 ( "%JAVA%" -XX:+UseCompressedOops -version > nul 2>&1 if not errorlevel == 1 ( set "JAVA_OPTS=-XX:+UseCompressedOops %JAVA_OPTS%" ) ) ) if not "%PRESERVE_JAVA_OPTS%" == "true" ( rem Add rotating GC logs, if supported, and not already defined echo "%JAVA_OPTS%" | findstr /I "\-verbose:gc" > nul if errorlevel == 1 ( rem Back up any prior logs move /y "%JBOSS_LOG_DIR%\gc.log.0" "%JBOSS_LOG_DIR%\backupgc.log.0" > nul 2>&1 move /y "%JBOSS_LOG_DIR%\gc.log.1" "%JBOSS_LOG_DIR%\backupgc.log.1" > nul 2>&1 move /y "%JBOSS_LOG_DIR%\gc.log.2" "%JBOSS_LOG_DIR%\backupgc.log.2" > nul 2>&1 move /y "%JBOSS_LOG_DIR%\gc.log.3" "%JBOSS_LOG_DIR%\backupgc.log.3" > nul 2>&1 move /y "%JBOSS_LOG_DIR%\gc.log.4" "%JBOSS_LOG_DIR%\backupgc.log.4" > nul 2>&1 move /y "%JBOSS_LOG_DIR%\gc.log.*.current" "%JBOSS_LOG_DIR%\backupgc.log.current" > nul 2>&1 "%JAVA%" -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=3M -Xloggc:%XLOGGC% -XX:-TraceClassUnloading -version > nul 2>&1 if not errorlevel == 1 ( if not exist "%JBOSS_LOG_DIR" > nul 2>&1 ( mkdir "%JBOSS_LOG_DIR%" ) set XLOGGC="%JBOSS_LOG_DIR%\gc.log" set "JAVA_OPTS=-verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=3M -XX:-TraceClassUnloading %JAVA_OPTS%" ) ) ) rem Find jboss-modules.jar, or we can't continue if exist "%JBOSS_HOME%\jboss-modules.jar" ( set "RUNJAR=%JBOSS_HOME%\jboss-modules.jar" ) else ( echo Could not locate "%JBOSS_HOME%\jboss-modules.jar". echo Please check that you are in the bin directory when running this script. goto END ) rem Set the module options set "MODULE_OPTS=" if "%SECMGR%" == "true" ( set "MODULE_OPTS=-secmgr" ) echo =============================================================================== echo. echo JBoss Bootstrap Environment echo. echo JBOSS_HOME: "%JBOSS_HOME%" echo. echo JAVA: "%JAVA%" echo. echo JAVA_OPTS: "%JAVA_OPTS%" echo. echo =============================================================================== echo. :RESTART if x%XLOGGC% == x ( "%JAVA%" %JAVA_OPTS% ^ "-Dorg.jboss.boot.log.file=%JBOSS_LOG_DIR%\server.log" ^ "-Dlogging.configuration=file:%JBOSS_CONFIG_DIR%/logging.properties" ^ -jar "%JBOSS_HOME%\jboss-modules.jar" ^ %MODULE_OPTS% ^ -mp "%JBOSS_MODULEPATH%" ^ -jaxpmodule "javax.xml.jaxp-provider" ^ org.jboss.as.standalone ^ "-Djboss.home.dir=%JBOSS_HOME%" ^ %SERVER_OPTS% ) else ( "%JAVA%" -Xloggc:%XLOGGC% %JAVA_OPTS% ^ "-Dorg.jboss.boot.log.file=%JBOSS_LOG_DIR%\server.log" ^ "-Dlogging.configuration=file:%JBOSS_CONFIG_DIR%/logging.properties" ^ -jar "%JBOSS_HOME%\jboss-modules.jar" ^ %MODULE_OPTS% ^ -mp "%JBOSS_MODULEPATH%" ^ -jaxpmodule "javax.xml.jaxp-provider" ^ org.jboss.as.standalone ^ "-Djboss.home.dir=%JBOSS_HOME%" ^ %SERVER_OPTS% ) if ERRORLEVEL 10 goto RESTART :END if "x%NOPAUSE%" == "x" pause :END_NO_PAUSE
sonyplaystation/jbosss
bin/standalone.bat
bat
lgpl-2.1
8,839
sbcl --dynamic-space-size 4098 --load start.lisp
cromachina/kero-painter
start.bat
bat
lgpl-3.0
50
echo Restoring dotnet tools... dotnet tool restore SET PAKET_TOOL_PATH=.paket IF NOT EXIST "%PAKET_TOOL_PATH%\paket.exe" ( dotnet tool install paket --tool-path ./%PAKET_TOOL_PATH% ) dotnet fake build -t %*
mausch/Fuchu
build.bat
bat
apache-2.0
212
@echo off setlocal enabledelayedexpansion set services="VMAuthdService" "VMnetDHCP" "VMware NAT Service" "VMUSBArbService" "VMwareHostd" "LanmanWorkstation" for %%c in (%*) do ( if "x%%c" equ "xstart" ( for %%s in (%services%) do ( set /p "ign=try to %%c service %%s ... " <nul set done=fail net /y start %%s>nul 2>&1 && set done=done echo !done! ) ) else if "x%%c" equ "xstop" ( for %%s in (%services%) do ( set /p "ign=try to %%c service %%s ... " <nul set done=fail net /y stop %%s>nul 2>&1 && set done=done echo !done! ) ) else if "x%%c" equ "xsc" ( for %%s in (%services%) do ( set /p "ign=try to config service %%s boot on demand ... " <nul set done=fail sc config %%s start= demand>nul 2>&1 && set done=done echo !done! ) ) else ( echo invalid command for net : %%c ) ) endlocal set /p "ign=all done, press enter key to exit ... "
soiff/scripts
batch/vmware.bat
bat
apache-2.0
934
@echo off set SBT_LAUNCHER_PATH="project\sbt-launch-0.13.5.jar" set SBT_LAUNCHER_SOURCE="http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/0.13.5/sbt-launch.jar" if not exist %SBT_LAUNCHER_PATH% powershell -Command "(New-Object Net.WebClient).DownloadFile('%SBT_LAUNCHER_SOURCE%', '%SBT_LAUNCHER_PATH%')" @REM Internal options, always specified set INTERNAL_OPTS=-Dfile.encoding=UTF-8 -Xmx768m -noverify -XX:ReservedCodeCacheSize=256m -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:MaxPermSize=512m @REM Add 64bit specific option java -version 2>&1 | find "64-Bit" >nul: if not errorlevel 1 ( set INTERNAL_OPTS=%INTERNAL_OPTS% -XX:+UseCompressedOops -XX:ReservedCodeCacheSize=128m ) @REM Default options, if nothing is specified set DEFAULT_OPTS= if "%LIFTSH_OPTS%"=="" ( set LIFTSH_OPTS=%DEFAULT_OPTS% ) @REM Call with INTERNAL_OPTS followed by LIFTSH_OPTS (or DEFAULT_OPTS). java always takes the last option when duplicate. java %INTERNAL_OPTS% %LIFTSH_OPTS% -jar "%~dp0\%SBT_LAUNCHER_PATH%" %*
sortable/framework
liftsh.cmd
bat
apache-2.0
1,042
@echo off echo Cleaning build del *.o *.exe
alzwded/Jakkat
clean.bat
bat
bsd-2-clause
45
@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\gygcnc.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\gygcnc.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
gygcnc/gygcnc
docs/make.bat
bat
bsd-3-clause
5,096
@if not defined __echo @echo off setlocal EnableDelayedExpansion :: Set the default arguments for build set __BuildArch=x64 set __BuildType=Debug set __BuildOS=Windows_NT :: Default to highest Visual Studio version available set __VSVersion=vs2015 if defined VS120COMNTOOLS set __VSVersion=vs2013 if defined VS140COMNTOOLS set __VSVersion=vs2015 :: Define a prefix for most output progress messages that come from this script. That makes :: it easier to see where these are coming from. Note that there is a trailing space here. set __MsgPrefix=BUILDTEST: set "__ProjectDir=%~dp0..\" :: remove trailing slash if %__ProjectDir:~-1%==\ set "__ProjectDir=%__ProjectDir:~0,-1%" set "__TestDir=%__ProjectDir%\tests" set "__ProjectFilesDir=%__TestDir%" set "__SourceDir=%__ProjectDir%\src" set "__PackagesDir=%__ProjectDir%\packages" set "__RootBinDir=%__ProjectDir%\bin" set "__LogsDir=%__RootBinDir%\Logs" set __CleanBuild= set __crossgen= set __ILAsmRoundtrip= set __BuildSequential= set __TestPriority= set __msbuildCleanBuildArgs= set __msbuildExtraArgs= set __verbosity=normal set __GCStressLevel=0 :Arg_Loop if "%1" == "" goto ArgsDone if /i "%1" == "/?" goto Usage if /i "%1" == "-?" goto Usage if /i "%1" == "/h" goto Usage if /i "%1" == "-h" goto Usage if /i "%1" == "/help" goto Usage if /i "%1" == "-help" goto Usage if /i "%1" == "x64" (set __BuildArch=x64&shift&goto Arg_Loop) if /i "%1" == "x86" (set __BuildArch=x86&shift&goto Arg_Loop) if /i "%1" == "arm" (set __BuildArch=arm&shift&goto Arg_Loop) if /i "%1" == "arm64" (set __BuildArch=arm64&shift&goto Arg_Loop) if /i "%1" == "debug" (set __BuildType=Debug&shift&goto Arg_Loop) if /i "%1" == "release" (set __BuildType=Release&shift&goto Arg_Loop) if /i "%1" == "checked" (set __BuildType=Checked&shift&goto Arg_Loop) if /i "%1" == "clean" (set __CleanBuild=1&shift&goto Arg_Loop) if /i "%1" == "vs2013" (set __VSVersion=%1&shift&goto Arg_Loop) if /i "%1" == "vs2015" (set __VSVersion=%1&shift&goto Arg_Loop) if /i "%1" == "crossgen" (set __crossgen=true&shift&goto Arg_Loop) if /i "%1" == "ilasmroundtrip" (set __ILAsmRoundtrip=true&shift&goto Arg_Loop) if /i "%1" == "sequential" (set __BuildSequential=1&shift&goto Arg_Loop) if /i "%1" == "priority" (set __TestPriority=%2&shift&shift&goto Arg_Loop) if /i "%1" == "gcstresslevel" (set __GCStressLevel=%2&shift&shift&goto Arg_Loop) if /i "%1" == "verbose" (set __verbosity=detailed&shift&goto Arg_Loop) if /i not "%1" == "msbuildargs" goto SkipMsbuildArgs :: All the rest of the args will be collected and passed directly to msbuild. :CollectMsbuildArgs shift if "%1"=="" goto ArgsDone set __msbuildExtraArgs=%__msbuildExtraArgs% %1 goto CollectMsbuildArgs :SkipMsbuildArgs echo Invalid command-line argument: %1 goto Usage :ArgsDone if %__verbosity%==detailed ( echo Enabling verbose file logging ) echo %__MsgPrefix%Commencing CoreCLR repo test build set "__BinDir=%__RootBinDir%\Product\%__BuildOS%.%__BuildArch%.%__BuildType%" set "__TestRootDir=%__RootBinDir%\tests" set "__TestBinDir=%__TestRootDir%\%__BuildOS%.%__BuildArch%.%__BuildType%" :: We have different managed and native intermediate dirs because the managed bits will include :: the configuration information deeper in the intermediates path. :: These variables are used by the msbuild project files. if not defined __TestIntermediateDir ( set "__TestIntermediateDir=tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%" ) set "__NativeTestIntermediatesDir=%__RootBinDir%\%__TestIntermediateDir%\Native" set "__ManagedTestIntermediatesDir=%__RootBinDir%\%__TestIntermediateDir%\Managed" :: Generate path to be set for CMAKE_INSTALL_PREFIX to contain forward slash set "__CMakeBinDir=%__TestBinDir%" set "__CMakeBinDir=%__CMakeBinDir:\=/%" :: Configure environment if we are doing a clean build. if not defined __CleanBuild goto SkipCleanBuild echo %__MsgPrefix%Doing a clean test build :: MSBuild projects would need a rebuild set __msbuildCleanBuildArgs=/t:rebuild :: Cleanup the binaries drop folder for the current configuration if exist "%__TestBinDir%" rd /s /q "%__TestBinDir%" if exist "%__NativeTestIntermediatesDir%" rd /s /q "%__NativeTestIntermediatesDir%" :SkipCleanBuild if not exist "%__TestBinDir%" md "%__TestBinDir%" if not exist "%__NativeTestIntermediatesDir%" md "%__NativeTestIntermediatesDir%" if not exist "%__ManagedTestIntermediatesDir%" md "%__ManagedTestIntermediatesDir%" if not exist "%__LogsDir%" md "%__LogsDir%" echo %__MsgPrefix%Checking prerequisites :: Eval the output from probe-win1.ps1 for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a set __VSProductVersion= if /i "%__VSVersion%" == "vs2013" set __VSProductVersion=120 if /i "%__VSVersion%" == "vs2015" set __VSProductVersion=140 :: Check presence of VS if not defined VS%__VSProductVersion%COMNTOOLS goto NoVS set __VSToolsRoot=!VS%__VSProductVersion%COMNTOOLS! if %__VSToolsRoot:~-1%==\ set "__VSToolsRoot=%__VSToolsRoot:~0,-1%" :: Does VS really exist? if not exist "%__VSToolsRoot%\..\IDE\devenv.exe" goto NoVS if not exist "%__VSToolsRoot%\..\..\VC\vcvarsall.bat" goto NoVS if not exist "%__VSToolsRoot%\VsDevCmd.bat" goto NoVS if /i "%__VSVersion%" =="vs2015" goto MSBuild14 set _msbuildexe="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" goto :CheckMSBuild14 :MSBuild14 set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" set UseRoslynCompiler=true :CheckMSBuild14 if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe" if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. && exit /b 1 :: Note: We've disabled node reuse because it causes file locking issues. :: The issue is that we extend the build with our own targets which :: means that that rebuilding cannot successfully delete the task :: assembly. set __msbuildCommonArgs=/nologo /nodeReuse:false %__msbuildExtraArgs% if not defined __BuildSequential ( set __msbuildCommonArgs=%__msbuildCommonArgs% /maxcpucount ) REM ========================================================================================= REM === REM === Restore Build Tools REM === REM ========================================================================================= call %__ProjectDir%\init-tools.cmd REM ========================================================================================= REM === REM === Native test build section REM === REM ========================================================================================= ::Building Native part of Tests setlocal EnableDelayedExpansion echo %__MsgPrefix%Commencing build of native test components for %__BuildArch%/%__BuildType% if defined __ToolsetDir ( echo %__MsgPrefix%ToolsetDir is defined to be :%__ToolsetDir% goto GenVSSolution :: Private ToolSet is Defined ) :: Set the environment for the native build echo %__MsgPrefix%Using environment: "%__VSToolsRoot%\..\..\VC\vcvarsall.bat" %__VCBuildArch% call "%__VSToolsRoot%\..\..\VC\vcvarsall.bat" x86_amd64 @if defined __echo @echo on if not defined VSINSTALLDIR ( echo %__MsgPrefix%Error: VSINSTALLDIR variable not defined. exit /b 1 ) if not exist "%VSINSTALLDIR%DIA SDK" goto NoDIA :GenVSSolution echo %__MsgPrefix%Regenerating the Visual Studio solution in %__NativeTestIntermediatesDir% pushd "%__NativeTestIntermediatesDir%" call "%__SourceDir%\pal\tools\gen-buildsys-win.bat" "%__ProjectFilesDir%\" %__VSVersion% %__BuildArch% @if defined __echo @echo on popd if not exist "%__NativeTestIntermediatesDir%\install.vcxproj" ( echo %__MsgPrefix%Failed to generate test native component build project! exit /b 1 ) set __msbuildNativeArgs=%__msbuildCleanBuildArgs% /p:Configuration=%__BuildType% if defined __ToolsetDir ( set __msbuildNativeArgs=%__msbuildNativeArgs% /p:UseEnv=true ) else ( set __msbuildNativeArgs=%__msbuildNativeArgs% /p:Platform=%__BuildArch% ) set __BuildLogRootName=Tests_Native call :msbuild "%__NativeTestIntermediatesDir%\install.vcxproj" %__msbuildNativeArgs% if errorlevel 1 exit /b 1 REM endlocal to rid us of environment changes from vcvarsall.bat endlocal REM ========================================================================================= REM === REM === Managed test build section REM === REM ========================================================================================= REM setlocal to prepare for vsdevcmd.bat setlocal EnableDelayedExpansion echo %__MsgPrefix%Starting the Managed Tests Build :: Set the environment for the managed build echo %__MsgPrefix%Using environment: "%__VSToolsRoot%\VsDevCmd.bat" call "%__VSToolsRoot%\VsDevCmd.bat" if not defined VSINSTALLDIR ( echo %__MsgPrefix%Error: buildtest.cmd should be run from a Visual Studio Command Prompt. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. exit /b 1 ) set __msbuildManagedBuildArgs=%__msbuildCleanBuildArgs% if defined __crossgen ( echo Building tests with CrossGen enabled. set __msbuildManagedBuildArgs=%__msbuildManagedBuildArgs% /p:CrossGen=true ) if defined __ILAsmRoundtrip ( echo Building tests with IlasmRoundTrip enabled. set __msbuildManagedBuildArgs=%__msbuildManagedBuildArgs% /p:IlasmRoundTrip=true ) if defined __TestPriority ( echo Building Test Priority %__TestPriority% set __msbuildManagedBuildArgs=%__msbuildManagedBuildArgs% /p:CLRTestPriorityToBuild=%__TestPriority% ) if %__GCStressLevel% GTR 0 ( echo Tests will run under GCStressLevel = %__GCStressLevel% set __msbuildManagedBuildArgs=%__msbuildManagedBuildArgs% /p:GCStressLevel=%__GCStressLevel% ) set __BuildLogRootName=Tests_Managed call :msbuild "%__ProjectFilesDir%\build.proj" %__msbuildManagedBuildArgs% if errorlevel 1 exit /b 1 set CORE_ROOT=%__TestBinDir%\Tests\Core_Root echo %__MsgPrefix%Creating test overlay... set __BuildLogRootName=Tests_Overlay_Managed call :msbuild "%__ProjectFilesDir%\runtest.proj" /t:CreateTestOverlay if errorlevel 1 exit /b 1 REM ========================================================================================= REM === REM === All builds complete! REM === REM ========================================================================================= echo %__MsgPrefix%Test build successful. echo %__MsgPrefix%Test binaries are available at !__TestBinDir! exit /b 0 REM ========================================================================================= REM === REM === Helper routines REM === REM ========================================================================================= :msbuild @REM Subroutine to invoke msbuild. All arguments are passed to msbuild. The first argument should be the @REM .proj file to invoke. @REM @REM On entry, __BuildLogRootName must be set to a file name prefix for the generated log file. @REM All the "standard" environment variables that aren't expected to change per invocation must also be set, @REM like __msbuildCommonArgs. @REM @REM The build log files will be overwritten, not appended to. echo %__MsgPrefix%Invoking msbuild set "__BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log" set "__BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn" set "__BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err" set __msbuildLogArgs=^ /fileloggerparameters:Verbosity=%__verbosity%;LogFile="%__BuildLog%";Append ^ /fileloggerparameters1:WarningsOnly;LogFile="%__BuildWrn%" ^ /fileloggerparameters2:ErrorsOnly;LogFile="%__BuildErr%" ^ /consoleloggerparameters:Summary ^ /verbosity:minimal set __msbuildArgs=%* %__msbuildCommonArgs% %__msbuildLogArgs% @REM The next line will overwrite the existing log file, if any. echo Invoking: %_msbuildexe% %__msbuildArgs% > "%__BuildLog%" %_msbuildexe% %__msbuildArgs% if errorlevel 1 ( echo %__MsgPrefix%Error: build failed. Refer to the build log files for details: echo %__BuildLog% echo %__BuildWrn% echo %__BuildErr% exit /b 1 ) exit /b 0 :Usage echo. echo Usage: echo %0 [option1] [option2] ... echo All arguments are optional. Options are case-insensitive. The options are: echo. echo./? -? /h -h /help -help: view this message. echo Build architecture: only x64 is currently allowed ^(default: x64^). echo Build type: one of Debug, Checked, Release ^(default: Debug^). echo Visual Studio version: one of VS2013 or VS2015 to force using a particular echo Visual Studio version ^(default: VS2015^). echo clean: force a clean build ^(default is to perform an incremental build^). echo CrossGen: enables the tests to run crossgen on the test executables before executing them. echo msbuildargs ... : all arguments following this tag will be passed directly to msbuild. echo priority ^<N^> : specify a set of test that will be built and run, with priority N. echo gcstresslevel ^<N^> : specify the GCStress level the tests should run under. echo sequential: force a non-parallel build ^(default is to build in parallel echo using all processors^). echo IlasmRoundTrip: enables ilasm round trip build and run of the tests before executing them. echo verbose: enables detailed file logging for the msbuild tasks into the msbuild log file. exit /b 1 :NoVS echo Visual Studio 2013+ ^(Community is free^) is a prerequisite to build this repository. echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1 :NoDIA echo Error: DIA SDK is missing at "%VSINSTALLDIR%DIA SDK". ^ This is due to a bug in the Visual Studio installer. It does not install DIA SDK at "%VSINSTALLDIR%" but rather ^ at the install location of previous Visual Studio version. The workaround is to copy the DIA SDK folder from the Visual Studio install location ^ of the previous version to "%VSINSTALLDIR%" and then build. :: DIA SDK not included in Express editions echo Visual Studio 2013 Express does not include the DIA SDK. ^ You need Visual Studio 2013+ (Community is free). echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1
Godin/coreclr
tests/buildtest.cmd
bat
mit
14,938
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_FSSHTTP_FSSHTTPB.MS_FSSHTTP_FSSHTTPB_S04_ExclusiveLock.TestCase_S04_TC21_CheckExclusiveLockAvailability_FileAlreadyLockedOnServer_Case2 /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_S04_TC21.cmd
bat
mit
408
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_WOPI.MS_WOPI_S03_SchemaLock.TestCase_S03_TC23_RefreshLock_FileAlreadyCheckedOutOnServer /testcontainer:..\..\MS-WOPI\TestSuite\bin\Debug\MS-WOPI_TestSuite.dll /runconfig:..\..\MS-WOPI\MS-WOPI.testsettings /unique pause
XinwLi/Interop-TestSuites-1
FileSyncandWOPI/Source/Scripts/MS-WOPI/RunMSWOPI_S03_TC23.cmd
bat
mit
312
cmd_kernel/power/built-in.o := arm-linux-gnueabihf-ld -EL -r -o kernel/power/built-in.o kernel/power/main.o kernel/power/console.o kernel/power/process.o kernel/power/suspend.o kernel/power/wakelock.o kernel/power/userwakelock.o kernel/power/earlysuspend.o kernel/power/fbearlysuspend.o kernel/power/suspend_time.o kernel/power/poweroff.o
Dee-UK/D33_KK_Kernel
kernel/power/.built-in.o.cmd
bat
gpl-2.0
344
cmd_kernel/up.o := arm-eabi-gcc -Wp,-MD,kernel/.up.o.d -nostdinc -isystem /home/hyunwoo82.park/gb_original/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/hyunwoo82.park/kernel/kernel/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Werror -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__=6 -march=armv6k -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=2112 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(up)" -D"KBUILD_MODNAME=KBUILD_STR(up)" -D"DEBUG_HASH=11" -D"DEBUG_HASH2=13" -c -o kernel/up.o kernel/up.c deps_kernel/up.o := \ kernel/up.c \ include/linux/interrupt.h \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/generic/irq/probe.h) \ $(wildcard include/config/proc/fs.h) \ include/linux/kernel.h \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /home/hyunwoo82.park/gb_original/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/linkage.h \ include/linux/stddef.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/posix_types.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/bitops.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/irqflags.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/hwcap.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ arch/arm/mach-msm/include/mach/barriers.h \ include/asm-generic/cmpxchg-local.h \ include/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/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/hyunwoo82.park/kernel/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) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/div64.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/processor.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/string.h \ include/linux/irqreturn.h \ include/linux/irqnr.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tiny/rcu.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/prove/rcu.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/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/tree/preempt/rcu.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ $(wildcard include/config/mm/owner.h) \ /home/hyunwoo82.park/kernel/kernel/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/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/param.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ $(wildcard include/config/arch/msm/scorpionmp.h) \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/errno.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/nodemask.h \ $(wildcard include/config/highmem.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/rwsem.h \ include/linux/completion.h \ include/linux/wait.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/current.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/hyunwoo82.park/kernel/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/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/memory/hotplug/sparse.h) \ /home/hyunwoo82.park/kernel/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/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /home/hyunwoo82.park/kernel/kernel/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/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/mach/lge.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/mach-types.h \ include/generated/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/htckovsky.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/desirec.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/vexpress.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/mahimahi.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/efikamx.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/efikasb.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/passionc.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) \ $(wildcard include/config/mach/mx23evk.h) \ $(wildcard include/config/mach/ap4evb.h) \ $(wildcard include/config/mach/stockholm.h) \ $(wildcard include/config/mach/lpc/h3131.h) \ $(wildcard include/config/mach/stingray.h) \ $(wildcard include/config/mach/kraken.h) \ $(wildcard include/config/mach/gw2388.h) \ $(wildcard include/config/mach/jadecpu.h) \ $(wildcard include/config/mach/carlisle.h) \ $(wildcard include/config/mach/lux/sf9.h) \ $(wildcard include/config/mach/nemid/tb.h) \ $(wildcard include/config/mach/terrier.h) \ $(wildcard include/config/mach/turbot.h) \ $(wildcard include/config/mach/sanddab.h) \ $(wildcard include/config/mach/mx35/cicada.h) \ $(wildcard include/config/mach/ghi2703d.h) \ $(wildcard include/config/mach/lux/sfx9.h) \ $(wildcard include/config/mach/lux/sf9g.h) \ $(wildcard include/config/mach/lux/edk9.h) \ $(wildcard include/config/mach/hw90240.h) \ $(wildcard include/config/mach/dm365/leopard.h) \ $(wildcard include/config/mach/mityomapl138.h) \ $(wildcard include/config/mach/scat110.h) \ $(wildcard include/config/mach/acer/a1.h) \ $(wildcard include/config/mach/cmcontrol.h) \ $(wildcard include/config/mach/pelco/lamar.h) \ $(wildcard include/config/mach/rfp43.h) \ $(wildcard include/config/mach/sk86r0301.h) \ $(wildcard include/config/mach/ctpxa.h) \ $(wildcard include/config/mach/epb/arm9/a.h) \ $(wildcard include/config/mach/guruplug.h) \ $(wildcard include/config/mach/spear310.h) \ $(wildcard include/config/mach/spear320.h) \ $(wildcard include/config/mach/robotx.h) \ $(wildcard include/config/mach/lsxhl.h) \ $(wildcard include/config/mach/smartlite.h) \ $(wildcard include/config/mach/cws2.h) \ $(wildcard include/config/mach/m619.h) \ $(wildcard include/config/mach/smartview.h) \ $(wildcard include/config/mach/lsa/salsa.h) \ $(wildcard include/config/mach/kizbox.h) \ $(wildcard include/config/mach/htccharmer.h) \ $(wildcard include/config/mach/guf/neso/lt.h) \ $(wildcard include/config/mach/pm9g45.h) \ $(wildcard include/config/mach/htcpanther.h) \ $(wildcard include/config/mach/htcpanther/cdma.h) \ $(wildcard include/config/mach/reb01.h) \ $(wildcard include/config/mach/aquila.h) \ $(wildcard include/config/mach/spark/sls/hw2.h) \ $(wildcard include/config/mach/esata/sheevaplug.h) \ $(wildcard include/config/mach/msm7x30/surf.h) \ $(wildcard include/config/mach/micro2440.h) \ $(wildcard include/config/mach/am2440.h) \ $(wildcard include/config/mach/tq2440.h) \ $(wildcard include/config/mach/lpc2478oem.h) \ $(wildcard include/config/mach/ak880x.h) \ $(wildcard include/config/mach/cobra3530.h) \ $(wildcard include/config/mach/pmppb.h) \ $(wildcard include/config/mach/u6715.h) \ $(wildcard include/config/mach/axar1500/sender.h) \ $(wildcard include/config/mach/g30/dvb.h) \ $(wildcard include/config/mach/vc088x.h) \ $(wildcard include/config/mach/mioa702.h) \ $(wildcard include/config/mach/hpmin.h) \ $(wildcard include/config/mach/ak880xak.h) \ $(wildcard include/config/mach/arm926tomap850.h) \ $(wildcard include/config/mach/lkevm.h) \ $(wildcard include/config/mach/mw6410.h) \ $(wildcard include/config/mach/terastation/wxl.h) \ $(wildcard include/config/mach/cpu8000e.h) \ $(wildcard include/config/mach/catania.h) \ $(wildcard include/config/mach/tokyo.h) \ $(wildcard include/config/mach/msm7201a/surf.h) \ $(wildcard include/config/mach/msm7201a/ffa.h) \ $(wildcard include/config/mach/msm7x25/surf.h) \ $(wildcard include/config/mach/msm7x25/ffa.h) \ $(wildcard include/config/mach/msm7x27/surf.h) \ $(wildcard include/config/mach/msm7x27/ffa.h) \ $(wildcard include/config/mach/msm7x30/ffa.h) \ $(wildcard include/config/mach/qsd8x50/surf.h) \ $(wildcard include/config/mach/qsd8x50/comet.h) \ $(wildcard include/config/mach/qsd8x50/ffa.h) \ $(wildcard include/config/mach/qsd8x50a/surf.h) \ $(wildcard include/config/mach/qsd8x50a/ffa.h) \ $(wildcard include/config/mach/adx/xgcp10.h) \ $(wildcard include/config/mach/mcgwumts2a.h) \ $(wildcard include/config/mach/mobikt.h) \ $(wildcard include/config/mach/mx53/evk.h) \ $(wildcard include/config/mach/igep0030.h) \ $(wildcard include/config/mach/axell/h40/h50/ctrl.h) \ $(wildcard include/config/mach/dtcommod.h) \ $(wildcard include/config/mach/gould.h) \ $(wildcard include/config/mach/siberia.h) \ $(wildcard include/config/mach/sbc3530.h) \ $(wildcard include/config/mach/qarm.h) \ $(wildcard include/config/mach/mips.h) \ $(wildcard include/config/mach/mx27grb.h) \ $(wildcard include/config/mach/sbc8100.h) \ $(wildcard include/config/mach/saarb.h) \ $(wildcard include/config/mach/omap3mini.h) \ $(wildcard include/config/mach/cnmbook7se.h) \ $(wildcard include/config/mach/catan.h) \ $(wildcard include/config/mach/harmony.h) \ $(wildcard include/config/mach/tonga.h) \ $(wildcard include/config/mach/cybook/orizon.h) \ $(wildcard include/config/mach/htcrhodiumcdma.h) \ $(wildcard include/config/mach/epc/g45.h) \ $(wildcard include/config/mach/epc/lpc3250.h) \ $(wildcard include/config/mach/mxc91341evb.h) \ $(wildcard include/config/mach/rtw1000.h) \ $(wildcard include/config/mach/bobcat.h) \ $(wildcard include/config/mach/trizeps6.h) \ $(wildcard include/config/mach/msm7x30/fluid.h) \ $(wildcard include/config/mach/nedap9263.h) \ $(wildcard include/config/mach/netgear/ms2110.h) \ $(wildcard include/config/mach/bmx.h) \ $(wildcard include/config/mach/netstream.h) \ $(wildcard include/config/mach/vpnext/rcu.h) \ $(wildcard include/config/mach/vpnext/mpu.h) \ $(wildcard include/config/mach/bcmring/tablet/v1.h) \ $(wildcard include/config/mach/sgarm10.h) \ $(wildcard include/config/mach/cm/t3517.h) \ $(wildcard include/config/mach/omap3/cps.h) \ $(wildcard include/config/mach/axar1500/receiver.h) \ $(wildcard include/config/mach/wbd222.h) \ $(wildcard include/config/mach/mt65xx.h) \ $(wildcard include/config/mach/msm8x60/surf.h) \ $(wildcard include/config/mach/msm8x60/sim.h) \ $(wildcard include/config/mach/vmc300.h) \ $(wildcard include/config/mach/tcc8000/sdk.h) \ $(wildcard include/config/mach/nanos.h) \ $(wildcard include/config/mach/stamp9g10.h) \ $(wildcard include/config/mach/stamp9g45.h) \ $(wildcard include/config/mach/h6053.h) \ $(wildcard include/config/mach/smint01.h) \ $(wildcard include/config/mach/prtlvt2.h) \ $(wildcard include/config/mach/ap420.h) \ $(wildcard include/config/mach/htcshift.h) \ $(wildcard include/config/mach/davinci/dm365/fc.h) \ $(wildcard include/config/mach/msm8x55/surf.h) \ $(wildcard include/config/mach/msm8x55/ffa.h) \ $(wildcard include/config/mach/esl/vamana.h) \ $(wildcard include/config/mach/sbc35.h) \ $(wildcard include/config/mach/mpx6446.h) \ $(wildcard include/config/mach/oreo/controller.h) \ $(wildcard include/config/mach/kopin/models.h) \ $(wildcard include/config/mach/ttc/vision2.h) \ $(wildcard include/config/mach/cns3420vb.h) \ $(wildcard include/config/mach/lpc2.h) \ $(wildcard include/config/mach/olympus.h) \ $(wildcard include/config/mach/vortex.h) \ $(wildcard include/config/mach/s5pc200.h) \ $(wildcard include/config/mach/ecucore/9263.h) \ $(wildcard include/config/mach/smdkc200.h) \ $(wildcard include/config/mach/emsiso/sx27.h) \ $(wildcard include/config/mach/apx/som9g45/ek.h) \ $(wildcard include/config/mach/songshan.h) \ $(wildcard include/config/mach/tianshan.h) \ $(wildcard include/config/mach/vpx500.h) \ $(wildcard include/config/mach/am3517sam.h) \ $(wildcard include/config/mach/skat91/sim508.h) \ $(wildcard include/config/mach/skat91/s3e.h) \ $(wildcard include/config/mach/omap4/panda.h) \ $(wildcard include/config/mach/df7220.h) \ $(wildcard include/config/mach/nemini.h) \ $(wildcard include/config/mach/t8200.h) \ $(wildcard include/config/mach/apf51.h) \ $(wildcard include/config/mach/dr/rc/unit.h) \ $(wildcard include/config/mach/bordeaux.h) \ $(wildcard include/config/mach/catania/b.h) \ $(wildcard include/config/mach/mx51/ocean.h) \ $(wildcard include/config/mach/ti8168evm.h) \ $(wildcard include/config/mach/neocoreomap.h) \ $(wildcard include/config/mach/withings/wbp.h) \ $(wildcard include/config/mach/dbps.h) \ $(wildcard include/config/mach/sbc9261.h) \ $(wildcard include/config/mach/pcbfp0001.h) \ $(wildcard include/config/mach/speedy.h) \ $(wildcard include/config/mach/chrysaor.h) \ $(wildcard include/config/mach/tango.h) \ $(wildcard include/config/mach/synology/dsx11.h) \ $(wildcard include/config/mach/hanlin/v3ext.h) \ $(wildcard include/config/mach/hanlin/v5.h) \ $(wildcard include/config/mach/hanlin/v3plus.h) \ $(wildcard include/config/mach/iriver/story.h) \ $(wildcard include/config/mach/irex/iliad.h) \ $(wildcard include/config/mach/irex/dr1000.h) \ $(wildcard include/config/mach/teton/bga.h) \ $(wildcard include/config/mach/snapper9g45.h) \ $(wildcard include/config/mach/tam3517.h) \ $(wildcard include/config/mach/pdc100.h) \ $(wildcard include/config/mach/eukrea/cpuimx25.h) \ $(wildcard include/config/mach/eukrea/cpuimx35.h) \ $(wildcard include/config/mach/eukrea/cpuimx51sd.h) \ $(wildcard include/config/mach/eukrea/cpuimx51.h) \ $(wildcard include/config/mach/p565.h) \ $(wildcard include/config/mach/acer/a4.h) \ $(wildcard include/config/mach/davinci/dm368/bip.h) \ $(wildcard include/config/mach/eshare.h) \ $(wildcard include/config/mach/hw/omapl138/europa.h) \ $(wildcard include/config/mach/wlbargn.h) \ $(wildcard include/config/mach/bm170.h) \ $(wildcard include/config/mach/netspace/mini/v2.h) \ $(wildcard include/config/mach/netspace/plug/v2.h) \ $(wildcard include/config/mach/siemens/l1.h) \ $(wildcard include/config/mach/elv/lcu1.h) \ $(wildcard include/config/mach/mcu1.h) \ $(wildcard include/config/mach/omap3/tao3530.h) \ $(wildcard include/config/mach/omap3/pcutouch.h) \ $(wildcard include/config/mach/smdkc210.h) \ $(wildcard include/config/mach/omap3/braillo.h) \ $(wildcard include/config/mach/spyplug.h) \ $(wildcard include/config/mach/ginger.h) \ $(wildcard include/config/mach/tny/t3530.h) \ $(wildcard include/config/mach/pca102.h) \ $(wildcard include/config/mach/spade.h) \ $(wildcard include/config/mach/mxc25/topaz.h) \ $(wildcard include/config/mach/t5325.h) \ $(wildcard include/config/mach/gw2361.h) \ $(wildcard include/config/mach/elog.h) \ $(wildcard include/config/mach/income.h) \ $(wildcard include/config/mach/bcm589x.h) \ $(wildcard include/config/mach/etna.h) \ $(wildcard include/config/mach/hawks.h) \ $(wildcard include/config/mach/meson.h) \ $(wildcard include/config/mach/xsbase255.h) \ $(wildcard include/config/mach/pvm2030.h) \ $(wildcard include/config/mach/mioa502.h) \ $(wildcard include/config/mach/vvbox/sdorig2.h) \ $(wildcard include/config/mach/vvbox/sdlite2.h) \ $(wildcard include/config/mach/vvbox/sdpro4.h) \ $(wildcard include/config/mach/htc/spv/m700.h) \ $(wildcard include/config/mach/mx257sx.h) \ $(wildcard include/config/mach/goni.h) \ $(wildcard include/config/mach/msm8x55/svlte/ffa.h) \ $(wildcard include/config/mach/msm8x55/svlte/surf.h) \ $(wildcard include/config/mach/quickstep.h) \ $(wildcard include/config/mach/dmw96.h) \ $(wildcard include/config/mach/hammerhead.h) \ $(wildcard include/config/mach/trident.h) \ $(wildcard include/config/mach/lightning.h) \ $(wildcard include/config/mach/iconnect.h) \ $(wildcard include/config/mach/autobot.h) \ $(wildcard include/config/mach/coconut.h) \ $(wildcard include/config/mach/durian.h) \ $(wildcard include/config/mach/cayenne.h) \ $(wildcard include/config/mach/fuji.h) \ $(wildcard include/config/mach/synology/6282.h) \ $(wildcard include/config/mach/em1sy.h) \ $(wildcard include/config/mach/m502.h) \ $(wildcard include/config/mach/matrix518.h) \ $(wildcard include/config/mach/tiny/gurnard.h) \ $(wildcard include/config/mach/spear1310.h) \ $(wildcard include/config/mach/bv07.h) \ $(wildcard include/config/mach/mxt/td61.h) \ $(wildcard include/config/mach/openrd/ultimate.h) \ $(wildcard include/config/mach/devixp.h) \ $(wildcard include/config/mach/miccpt.h) \ $(wildcard include/config/mach/mic256.h) \ $(wildcard include/config/mach/as1167.h) \ $(wildcard include/config/mach/omap3/ibiza.h) \ $(wildcard include/config/mach/u5500.h) \ $(wildcard include/config/mach/davinci/picto.h) \ $(wildcard include/config/mach/mecha.h) \ $(wildcard include/config/mach/bubba3.h) \ $(wildcard include/config/mach/pupitre.h) \ $(wildcard include/config/mach/tegra/harmony.h) \ $(wildcard include/config/mach/tegra/vogue.h) \ $(wildcard include/config/mach/tegra/e1165.h) \ $(wildcard include/config/mach/simplenet.h) \ $(wildcard include/config/mach/ec4350tbm.h) \ $(wildcard include/config/mach/pec/tc.h) \ $(wildcard include/config/mach/pec/hc2.h) \ $(wildcard include/config/mach/esl/mobilis/a.h) \ $(wildcard include/config/mach/esl/mobilis/b.h) \ $(wildcard include/config/mach/esl/wave/a.h) \ $(wildcard include/config/mach/esl/wave/b.h) \ $(wildcard include/config/mach/unisense/mmm.h) \ $(wildcard include/config/mach/blueshark.h) \ $(wildcard include/config/mach/e10.h) \ $(wildcard include/config/mach/app3k/robin.h) \ $(wildcard include/config/mach/pov15hd.h) \ $(wildcard include/config/mach/stella.h) \ $(wildcard include/config/mach/mach/htc/iolite.h) \ $(wildcard include/config/mach/linkstation/lschl.h) \ $(wildcard include/config/mach/netwalker.h) \ $(wildcard include/config/mach/acsx106.h) \ $(wildcard include/config/mach/atlas5/c1.h) \ $(wildcard include/config/mach/nsb3ast.h) \ $(wildcard include/config/mach/gnet/slc.h) \ $(wildcard include/config/mach/af4000.h) \ $(wildcard include/config/mach/ark9431.h) \ $(wildcard include/config/mach/fs/s5pc100.h) \ $(wildcard include/config/mach/omap3505nova8.h) \ $(wildcard include/config/mach/omap3621/edp1.h) \ $(wildcard include/config/mach/oratisaes.h) \ $(wildcard include/config/mach/smdkv310.h) \ $(wildcard include/config/mach/siemens/l0.h) \ $(wildcard include/config/mach/ventana.h) \ $(wildcard include/config/mach/wm8505/7in/netbook.h) \ $(wildcard include/config/mach/ec4350sdb.h) \ $(wildcard include/config/mach/mimas.h) \ $(wildcard include/config/mach/titan.h) \ $(wildcard include/config/mach/craneboard.h) \ $(wildcard include/config/mach/es2440.h) \ $(wildcard include/config/mach/najay/a9263.h) \ $(wildcard include/config/mach/htctornado.h) \ $(wildcard include/config/mach/dimm/mx257.h) \ $(wildcard include/config/mach/jigen.h) \ $(wildcard include/config/mach/smdk6450.h) \ $(wildcard include/config/mach/meno/qng.h) \ $(wildcard include/config/mach/ns2416.h) \ $(wildcard include/config/mach/rpc353.h) \ $(wildcard include/config/mach/tq6410.h) \ $(wildcard include/config/mach/sky6410.h) \ $(wildcard include/config/mach/dynasty.h) \ $(wildcard include/config/mach/vivo.h) \ $(wildcard include/config/mach/bury/bl7582.h) \ $(wildcard include/config/mach/bury/bps5270.h) \ $(wildcard include/config/mach/basi.h) \ $(wildcard include/config/mach/tn200.h) \ $(wildcard include/config/mach/c2mmi.h) \ $(wildcard include/config/mach/meson/6236m.h) \ $(wildcard include/config/mach/meson/8626m.h) \ $(wildcard include/config/mach/tube.h) \ $(wildcard include/config/mach/messina.h) \ $(wildcard include/config/mach/mx50/arm2.h) \ $(wildcard include/config/mach/cetus9263.h) \ $(wildcard include/config/mach/brownstone.h) \ $(wildcard include/config/mach/vmx25.h) \ $(wildcard include/config/mach/vmx51.h) \ $(wildcard include/config/mach/abacus.h) \ $(wildcard include/config/mach/cm4745.h) \ $(wildcard include/config/mach/oratislink.h) \ $(wildcard include/config/mach/davinci/dm365/dvr.h) \ $(wildcard include/config/mach/netviz.h) \ $(wildcard include/config/mach/flexibity.h) \ $(wildcard include/config/mach/wlan/computer.h) \ $(wildcard include/config/mach/lpc24xx.h) \ $(wildcard include/config/mach/spica.h) \ $(wildcard include/config/mach/gpsdisplay.h) \ $(wildcard include/config/mach/bipnet.h) \ $(wildcard include/config/mach/overo/ctu/inertial.h) \ $(wildcard include/config/mach/davinci/dm355/mmm.h) \ $(wildcard include/config/mach/pc9260/v2.h) \ $(wildcard include/config/mach/ptx7545.h) \ $(wildcard include/config/mach/tm/efdc.h) \ $(wildcard include/config/mach/waldo1.h) \ $(wildcard include/config/mach/omap3/waldo1.h) \ $(wildcard include/config/mach/flyer.h) \ $(wildcard include/config/mach/tornado3240.h) \ $(wildcard include/config/mach/soli/01.h) \ $(wildcard include/config/mach/omapl138/europalc.h) \ $(wildcard include/config/mach/helios/v1.h) \ $(wildcard include/config/mach/netspace/lite/v2.h) \ $(wildcard include/config/mach/ssc.h) \ $(wildcard include/config/mach/premierwave/en.h) \ $(wildcard include/config/mach/wasabi.h) \ $(wildcard include/config/mach/vivow.h) \ $(wildcard include/config/mach/mx50/rdp.h) \ $(wildcard include/config/mach/universal/c210.h) \ $(wildcard include/config/mach/real6410.h) \ $(wildcard include/config/mach/spx/sakura.h) \ $(wildcard include/config/mach/ij3k/2440.h) \ $(wildcard include/config/mach/omap3/bc10.h) \ $(wildcard include/config/mach/thebe.h) \ $(wildcard include/config/mach/rv082.h) \ $(wildcard include/config/mach/armlguest.h) \ $(wildcard include/config/mach/tjinc1000.h) \ $(wildcard include/config/mach/dockstar.h) \ $(wildcard include/config/mach/ax8008.h) \ $(wildcard include/config/mach/gnet/sgce.h) \ $(wildcard include/config/mach/pxwnas/500/1000.h) \ $(wildcard include/config/mach/ea20.h) \ $(wildcard include/config/mach/awm2.h) \ $(wildcard include/config/mach/ti8148evm.h) \ $(wildcard include/config/mach/tegra/seaboard.h) \ $(wildcard include/config/mach/linkstation/chlv2.h) \ $(wildcard include/config/mach/tera/pro2/rack.h) \ $(wildcard include/config/mach/rubys.h) \ $(wildcard include/config/mach/aquarius.h) \ $(wildcard include/config/mach/mx53/ard.h) \ $(wildcard include/config/mach/mx53/smd.h) \ $(wildcard include/config/mach/lswxl.h) \ $(wildcard include/config/mach/msm8x60/rumi3.h) \ $(wildcard include/config/mach/msm8x60/ffa.h) \ $(wildcard include/config/mach/yanomami.h) \ $(wildcard include/config/mach/gta04.h) \ $(wildcard include/config/mach/cm/a510.h) \ $(wildcard include/config/mach/omap3/rfs200.h) \ $(wildcard include/config/mach/kx33xx.h) \ $(wildcard include/config/mach/ptx7510.h) \ $(wildcard include/config/mach/top9000.h) \ $(wildcard include/config/mach/teenote.h) \ $(wildcard include/config/mach/ts3.h) \ $(wildcard include/config/mach/a0.h) \ $(wildcard include/config/mach/fsm9xxx/surf.h) \ $(wildcard include/config/mach/fsm9xxx/ffa.h) \ $(wildcard include/config/mach/frrhwcdma60w.h) \ $(wildcard include/config/mach/remus.h) \ $(wildcard include/config/mach/at91cap7xdk.h) \ $(wildcard include/config/mach/at91cap7stk.h) \ $(wildcard include/config/mach/kt/sbc/sam9/1.h) \ $(wildcard include/config/mach/oratisrouter.h) \ $(wildcard include/config/mach/armada/xp/db.h) \ $(wildcard include/config/mach/spdm.h) \ $(wildcard include/config/mach/gtib.h) \ $(wildcard include/config/mach/dgm3240.h) \ $(wildcard include/config/mach/atlas/i/lpe.h) \ $(wildcard include/config/mach/htcmega.h) \ $(wildcard include/config/mach/tricorder.h) \ $(wildcard include/config/mach/tx28.h) \ $(wildcard include/config/mach/bstbrd.h) \ $(wildcard include/config/mach/pwb3090.h) \ $(wildcard include/config/mach/idea6410.h) \ $(wildcard include/config/mach/qbc9263.h) \ $(wildcard include/config/mach/borabora.h) \ $(wildcard include/config/mach/valdez.h) \ $(wildcard include/config/mach/ls9g20.h) \ $(wildcard include/config/mach/mios/v1.h) \ $(wildcard include/config/mach/s5pc110/crespo.h) \ $(wildcard include/config/mach/controltek9g20.h) \ $(wildcard include/config/mach/tin307.h) \ $(wildcard include/config/mach/tin510.h) \ $(wildcard include/config/mach/ep3517.h) \ $(wildcard include/config/mach/bluecheese.h) \ $(wildcard include/config/mach/tem3x30.h) \ $(wildcard include/config/mach/harvest/desoto.h) \ $(wildcard include/config/mach/msm8x60/qrdc.h) \ $(wildcard include/config/mach/msm7x27/thunderc.h) \ $(wildcard include/config/mach/msm7x27/thunderg.h) \ $(wildcard include/config/mach/msm7x27/thundera.h) \ $(wildcard include/config/mach/spear900.h) \ $(wildcard include/config/mach/pcontrol/g20.h) \ $(wildcard include/config/mach/rdstor.h) \ $(wildcard include/config/mach/usdloader.h) \ $(wildcard include/config/mach/tsoploader.h) \ $(wildcard include/config/mach/kronos.h) \ $(wildcard include/config/mach/ffcore.h) \ $(wildcard include/config/mach/mone.h) \ $(wildcard include/config/mach/unit2s.h) \ $(wildcard include/config/mach/acer/a5.h) \ $(wildcard include/config/mach/etherpro/isp.h) \ $(wildcard include/config/mach/stretchs7000.h) \ $(wildcard include/config/mach/p87/smartsim.h) \ $(wildcard include/config/mach/tulip.h) \ $(wildcard include/config/mach/sunflower.h) \ $(wildcard include/config/mach/rib.h) \ $(wildcard include/config/mach/clod.h) \ $(wildcard include/config/mach/rump.h) \ $(wildcard include/config/mach/tenderloin.h) \ $(wildcard include/config/mach/shortloin.h) \ $(wildcard include/config/mach/crespo.h) \ $(wildcard include/config/mach/antares.h) \ $(wildcard include/config/mach/wb40n.h) \ $(wildcard include/config/mach/herring.h) \ $(wildcard include/config/mach/naxy400.h) \ $(wildcard include/config/mach/naxy1200.h) \ $(wildcard include/config/mach/vpr200.h) \ $(wildcard include/config/mach/bug20.h) \ $(wildcard include/config/mach/goflexnet.h) \ $(wildcard include/config/mach/torbreck.h) \ $(wildcard include/config/mach/saarb/mg1.h) \ $(wildcard include/config/mach/callisto.h) \ $(wildcard include/config/mach/multhsu.h) \ $(wildcard include/config/mach/saluda.h) \ $(wildcard include/config/mach/pemp/omap3/apollo.h) \ $(wildcard include/config/mach/vc0718.h) \ $(wildcard include/config/mach/mvblx.h) \ $(wildcard include/config/mach/inhand/apeiron.h) \ $(wildcard include/config/mach/inhand/fury.h) \ $(wildcard include/config/mach/inhand/siren.h) \ $(wildcard include/config/mach/hdnvp.h) \ $(wildcard include/config/mach/softwinner.h) \ $(wildcard include/config/mach/prima2/evb.h) \ $(wildcard include/config/mach/nas6210.h) \ $(wildcard include/config/mach/unisdev.h) \ $(wildcard include/config/mach/sbca11.h) \ $(wildcard include/config/mach/saga.h) \ $(wildcard include/config/mach/ns/k330.h) \ $(wildcard include/config/mach/tanna.h) \ $(wildcard include/config/mach/imate8502.h) \ $(wildcard include/config/mach/aspen.h) \ $(wildcard include/config/mach/daintree/cwac.h) \ $(wildcard include/config/mach/zmx25.h) \ $(wildcard include/config/mach/maple1.h) \ $(wildcard include/config/mach/qsd8x72/surf.h) \ $(wildcard include/config/mach/qsd8x72/ffa.h) \ $(wildcard include/config/mach/abilene.h) \ $(wildcard include/config/mach/eigen/ttr.h) \ $(wildcard include/config/mach/iomega/ix2/200.h) \ $(wildcard include/config/mach/coretec/vcx7400.h) \ $(wildcard include/config/mach/santiago.h) \ $(wildcard include/config/mach/mx257sol.h) \ $(wildcard include/config/mach/strasbourg.h) \ $(wildcard include/config/mach/msm8x60/fluid.h) \ $(wildcard include/config/mach/smartqv5.h) \ $(wildcard include/config/mach/smartqv3.h) \ $(wildcard include/config/mach/smartqv7.h) \ $(wildcard include/config/mach/paz00.h) \ $(wildcard include/config/mach/acmenetusfoxg20.h) \ $(wildcard include/config/mach/htcwillow.h) \ $(wildcard include/config/mach/fwbd/0404.h) \ $(wildcard include/config/mach/hdgu.h) \ $(wildcard include/config/mach/pyramid.h) \ $(wildcard include/config/mach/epiphan.h) \ $(wildcard include/config/mach/omap/bender.h) \ $(wildcard include/config/mach/gurnard.h) \ $(wildcard include/config/mach/gtl/it5100.h) \ $(wildcard include/config/mach/bcm2708.h) \ $(wildcard include/config/mach/mx51/ggc.h) \ $(wildcard include/config/mach/sharespace.h) \ $(wildcard include/config/mach/haba/knx/explorer.h) \ $(wildcard include/config/mach/simtec/kirkmod.h) \ $(wildcard include/config/mach/crux.h) \ $(wildcard include/config/mach/mx51/bravo.h) \ $(wildcard include/config/mach/charon.h) \ $(wildcard include/config/mach/picocom3.h) \ $(wildcard include/config/mach/picocom4.h) \ $(wildcard include/config/mach/serrano.h) \ $(wildcard include/config/mach/doubleshot.h) \ $(wildcard include/config/mach/evsy.h) \ $(wildcard include/config/mach/huashan.h) \ $(wildcard include/config/mach/lausanne.h) \ $(wildcard include/config/mach/emerald.h) \ $(wildcard include/config/mach/tqma35.h) \ $(wildcard include/config/mach/marvel.h) \ $(wildcard include/config/mach/manuae.h) \ $(wildcard include/config/mach/chacha.h) \ $(wildcard include/config/mach/lemon.h) \ $(wildcard include/config/mach/csc.h) \ $(wildcard include/config/mach/gira/knxip/router.h) \ $(wildcard include/config/mach/t20.h) \ $(wildcard include/config/mach/hdmini.h) \ $(wildcard include/config/mach/sciphone/g2.h) \ $(wildcard include/config/mach/express.h) \ $(wildcard include/config/mach/express/kt.h) \ $(wildcard include/config/mach/maximasp.h) \ $(wildcard include/config/mach/nitrogen/imx51.h) \ $(wildcard include/config/mach/nitrogen/imx53.h) \ $(wildcard include/config/mach/sunfire.h) \ $(wildcard include/config/mach/arowana.h) \ $(wildcard include/config/mach/tegra/daytona.h) \ $(wildcard include/config/mach/tegra/swordfish.h) \ $(wildcard include/config/mach/edison.h) \ $(wildcard include/config/mach/svp8500v1.h) \ $(wildcard include/config/mach/svp8500v2.h) \ $(wildcard include/config/mach/svp5500.h) \ $(wildcard include/config/mach/b5500.h) \ $(wildcard include/config/mach/s5500.h) \ $(wildcard include/config/mach/icon.h) \ $(wildcard include/config/mach/elephant.h) \ $(wildcard include/config/mach/msm8x60/charm/surf.h) \ $(wildcard include/config/mach/shooter.h) \ $(wildcard include/config/mach/spade/lte.h) \ $(wildcard include/config/mach/philhwani.h) \ $(wildcard include/config/mach/gsncomm.h) \ $(wildcard include/config/mach/strasbourg/a2.h) \ $(wildcard include/config/mach/mmm.h) \ $(wildcard include/config/mach/davinci/dm365/bv.h) \ $(wildcard include/config/mach/ag5evm.h) \ $(wildcard include/config/mach/sc575plc.h) \ $(wildcard include/config/mach/sc575ipc.h) \ $(wildcard include/config/mach/omap3/tdm3730.h) \ $(wildcard include/config/mach/g7.h) \ $(wildcard include/config/mach/top9000/eval.h) \ $(wildcard include/config/mach/top9000/su.h) \ $(wildcard include/config/mach/utm300.h) \ $(wildcard include/config/mach/tsunagi.h) \ $(wildcard include/config/mach/ts75xx.h) \ $(wildcard include/config/mach/msm8x60/charm/ffa.h) \ $(wildcard include/config/mach/ts47xx.h) \ $(wildcard include/config/mach/da850/k5.h) \ $(wildcard include/config/mach/ax502.h) \ $(wildcard include/config/mach/igep0032.h) \ $(wildcard include/config/mach/antero.h) \ $(wildcard include/config/mach/synergy.h) \ $(wildcard include/config/mach/ics/if/voip.h) \ $(wildcard include/config/mach/wlf/cragg/6410.h) \ $(wildcard include/config/mach/punica.h) \ $(wildcard include/config/mach/sbc/nt250.h) \ $(wildcard include/config/mach/mx27/wmultra.h) \ $(wildcard include/config/mach/mackerel.h) \ $(wildcard include/config/mach/mach/pvd/imx27.h) \ $(wildcard include/config/mach/fa9x27.h) \ $(wildcard include/config/mach/ns2816tb.h) \ $(wildcard include/config/mach/ns2816/ntpad.h) \ $(wildcard include/config/mach/ns2816/ntnb.h) \ $(wildcard include/config/mach/kaen.h) \ $(wildcard include/config/mach/nv1000.h) \ $(wildcard include/config/mach/nuc950ts.h) \ $(wildcard include/config/mach/nokia/rm680.h) \ $(wildcard include/config/mach/ast2200.h) \ $(wildcard include/config/mach/lead.h) \ $(wildcard include/config/mach/unino1.h) \ $(wildcard include/config/mach/msm8x60/qt.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/sem.h \ include/linux/ipc.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/ipcbuf.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ include/linux/rcutree.h \ include/linux/signal.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/sigcontext.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/percpu.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/mutex.h \ include/linux/srcu.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/hyunwoo82.park/kernel/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.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kref.h \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/hardirq.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/irq.h \ arch/arm/mach-msm/include/mach/irqs.h \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm8x60.h) \ arch/arm/mach-msm/include/mach/irqs-7xxx.h \ include/linux/irq_cpustat.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 \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/stat.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/debug/vm.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/elf.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ /home/hyunwoo82.park/kernel/kernel/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ kernel/up.o: $(deps_kernel/up.o) $(deps_kernel/up.o):
mcardielo/ThunderG-Kernel_2.6.35
kernel/.up.o.cmd
bat
gpl-2.0
177,193
cmd_net/sunrpc/auth_gss/rpcsec_gss_krb5.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-ld -m elf32ltsmip -r -o net/sunrpc/auth_gss/rpcsec_gss_krb5.o net/sunrpc/auth_gss/gss_krb5_mech.o net/sunrpc/auth_gss/gss_krb5_seal.o net/sunrpc/auth_gss/gss_krb5_unseal.o net/sunrpc/auth_gss/gss_krb5_seqnum.o net/sunrpc/auth_gss/gss_krb5_wrap.o
matteocrippa/dsl-n55u-bender
release/src-ra/linux/linux-2.6.21.x/net/sunrpc/auth_gss/.rpcsec_gss_krb5.o.cmd
bat
gpl-2.0
339
@echo off :: =========================================================================== :: Reminder example, 80x86, Vanilla port, Open Watcom compiler :: Last Updated for Version: 4.1.06 :: Date of the Last Update: Jan 06, 2011 :: :: Q u a n t u m L e a P s :: --------------------------- :: innovating embedded systems :: :: Copyright (C) 2002-2011 Quantum Leaps, LLC. All rights reserved. :: :: This software may be distributed and modified under the terms of the GNU :: General Public License version 2 (GPL) as published by the Free Software :: Foundation and appearing in the file GPL.TXT included in the packaging of :: this file. Please note that GPL Section 2[b] requires that all works based :: on this software must also be made publicly available under the terms of :: the GPL ("Copyleft"). :: :: Alternatively, this software may be distributed and modified under the :: terms of Quantum Leaps commercial licenses, which expressly supersede :: the GPL and are specifically designed for licensees interested in :: retaining the proprietary status of their code. :: :: Contact information: :: Quantum Leaps Web site: http://www.quantum-leaps.com :: e-mail: info@quantum-leaps.com :: =========================================================================== :: If you have defined the WATCOM environment variable, the following line has :: no effect and your definition is used. However, if the varible WATCOM is :: not defined, the following default is assuemed: if "%WATCOM%"=="" set WATCOM=c:\tools\WATCOM path %WATCOM%\binw set INCLUDE=%WATCOM%\H set CC=wcc.exe set AS=wasm.exe set LD=wlink.exe echo default selected set BINDIR=dbg set CCFLAGS=-d2 -ml -3 -fpi87 set LDFLAGS=@link_dbg.rsp :: compile ------------------------------------------------------------------- set SRCDIR=. set CCINC=@inc_qp.rsp @echo on %CC% %CCFLAGS% %CCINC% -fo=%BINDIR%\bsp.obj %SRCDIR%\bsp.c %CC% %CCFLAGS% %CCINC% -fo=%BINDIR%\reminder.obj %SRCDIR%\reminder.c @echo off :: link ---------------------------------------------------------------------- @echo on %LD% %LDFLAGS% @echo off
trigrass2/STM32491_CPLR
Firmware/Common/sys/qpc_5.3.1/examples/80x86/dos/watcom/l/reminder/make.bat
bat
lgpl-3.0
2,231
java Main
tomazas/k2-course
src/run.bat
bat
mit
9
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\GWSumm.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\GWSumm.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
duncanmmacleod/gwsumm
docs/make.bat
bat
gpl-3.0
6,701
/****************************************************************************** * * udma_demo_ccs.cmd - CCS linker configuration file for udma_demo. * * Copyright (c) 2012-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/udma_demo/udma_demo_ccs.cmd
bat
gpl-3.0
2,800
@echo off set path=%path%;%windir%\Microsoft.NET\Framework\v1.1.4322 csc /nologo /target:library /out:..\bin\FavoritesPlugin.dll /reference:..\..\..\bin\MCManager.dll csharp\*.cs pause
hostpipe/CrowdCMS
src/CMS.UI/Scripts/tinymce/plugins/imagemanager/plugins/Favorites/src/build.bat
bat
gpl-3.0
185
@ECHO off REM # Licensed to the Apache Software Foundation (ASF) under one REM # or more contributor license agreements. See the NOTICE file REM # distributed with this work for additional information REM # regarding copyright ownership. The ASF licenses this file REM # to you under the Apache License, Version 2.0 (the REM # "License"); you may not use this file except in compliance REM # with 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, REM # software distributed under the License is distributed on an REM # # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY REM # KIND, either express or implied. See the License for the REM # specific language governing permissions and limitations REM # under the License. REM # Note: Do not output anything in this script file, any output REM # may be inadvertantly placed in any output files if REM # output redirection is used. SETLOCAL IF "%JAVA_CMD%" == "" ( IF "%JAVA_HOME%" == "" ( SET JAVA_CMD=java ) ELSE ( REM # Keep JAVA_HOME to short-name without spaces FOR %%A IN ("%JAVA_HOME%") DO SET JAVA_CMD=%%~sfA\bin\java ) ) REM # Should work with Windows XP and greater. If not, specify the path to where it is installed. IF "%OPENNLP_HOME%" == "" ( SET OPENNLP_HOME=%~sp0.. ) ELSE ( REM # Keep OPENNLP_HOME to short-name without spaces FOR %%A IN ("%OPENNLP_HOME%") DO SET OPENNLP_HOME=%%~sfA ) setLocal EnableDelayedExpansion set CLASSPATH=" FOR %%A IN ("%OPENNLP_HOME%\lib\*.jar") DO ( set CLASSPATH=!CLASSPATH!;%%A ) set CLASSPATH=!CLASSPATH!" %JAVA_CMD% -Xmx1024m -cp %CLASSPATH% opennlp.bratann.NameFinderAnnService %* ENDLOCAL
apache/opennlp
opennlp-brat-annotator/src/main/bin/brat-annotation-service.bat
bat
apache-2.0
1,792