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
docker run -d -p 8080:8080 --name fabric.machinelearning imranq2/fabric.machinelearning
HintonBR/scratch
docker/machinelearning/run.cmd
bat
mit
87
@echo off SET modelFolder=%cd% SET modelFile=%modelFolder%/subsetUnionBenchmark.ecore :: Go to folder, in which the gradle task 'generateModel' is callable, e.g. the MDE4CPP home folder :: 'generateModel' is defined in %MDE4CPP_HOME%/src/common/universalGradleTasks/build.gradle CD /D %MDE4CPP_HOME% :: Call the gradle task with model path as parameter :: 'ecore4CPP' will be used CALL gradle generateModel -PModel=%modelFile% :: Go back to initial folder CD /D %modelFolder%
MDE4CPP/examples
benchmarks/SubsetUnionBenchmark/model/generate.bat
bat
mit
479
msbuild /property:Configuration=Release ..\Amazon-OAuth-Provider\Amazon-OAuth-Provider.csproj nuget pack Amazon-OAuth-Provider.nuspec
AreYouFreeBusy/Amazon-OAuth-Provider
nuget/pack.cmd
bat
mit
133
REM In _make.log wird jede verarbeitete Zeile aufgelistet REM Bei einem Fehler wird sofort die Verarbeitung unterbrochen REM Die letzte Zeile zeigt an, wo der Fehler aufgetreten ist _make C:\Users\Alfred\Programme\Firebird\x32\v258\bin\isql.exe _make.log
AlfredGerke/ZABonline
source/script/script/makedb.bat
bat
mit
255
-intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -o "G:/ceshi/lab3.2/test_for_aluCtr_isim_beh.exe" -prj "G:/ceshi/lab3.2/test_for_aluCtr_beh.prj" "work.test_for_aluCtr" "work.glbl"
chasingegg/Computer_Systems
CS334_computer organization lab/source/lab3_aluCtr/fuseRelaunch.cmd
bat
mit
227
D:\maconomy\index.html
bink81/development-tools
windows/index.bat
bat
mit
22
@echo off cd %cd% set dbServer=127.0.0.1 set dbAcount=sa set dbPass=Admin@123 set gameuser=game_user set gamepass=123 set dbpath=%cd%\Data @echo ÅäÖòÎÊýÈçÏ£º @echo [dbServer] Êý¾Ý¿â·þÎñÆ÷:%dbServer% @echo [dbAcount] ¿É´´½¨Êý¾Ý¿âµÄÕʺÅ(sa):%dbAcount% @echo [dbPass] ¿É´´½¨Êý¾Ý¿âµÄÃÜÂë(sa):%dbPass% @echo [gameuser] ÓÎÏ·µÇ¼ÕʺÅ:%gameuser% @echo [gamepass] ÓÎÏ·µÇ¼ÃÜÂë:%gamepass% @echo [dbpath] Êý¾Ý¿â´æ´¢Â·¾¶:%dbpath% @echo ================================================================ MD %dbpath% Sqlcmd -? 2>nul 1>nul if errorlevel 1 ( echo Çë°²×°sqlcmdÖ§³Ö¡£&pause>nul exit ) Sqlcmd -S %dbServer% -U %dbAcount% -P %dbPass% -d master -i ´´½¨±í½Å±¾.sql -v gameuser="%gameuser%" dbpath="%dbpath%" @echo ÕýÔÚ´´½¨Êý¾Ý¿â³É¹¦! @echo Ö´Ðгɹ¦ ECHO ÔËÐнáÊø£¡& PAUSE
wenhulove333/ScutServer
Source/Tools/ContractTools/db/mssql/必备库创建一键运行.bat
bat
mit
835
@echo off setlocal call project.bat if exist %PROJECT%\bin rd /s /q %PROJECT%\bin if errorlevel 1 goto error nuget restore if errorlevel 1 goto error msbuild %PROJECT%.sln /target:Clean,Rebuild /p:Configuration=Debug if errorlevel 1 goto error set TESTDLL=%PROJECT%.Tests\bin\Debug\%PROJECT%.Tests.dll if exist "%TESTDLL%" nunit3-console "%TESTDLL%" if errorlevel 1 goto error exit /B 0 :error exit /B 1
lassevk/commander
build.bat
bat
mit
412
TITLE UNIFORM SERVER - Start Apache as a program COLOR B0 @echo off cls rem ################################################### rem # Name: 2_Apache_program.bat rem # Created By: The Uniform Server Development Team rem # Edited Last By: Mike Gleaves (ric) rem # V 1.0 3-12-2009 rem ################################################## rem ### working directory current folder pushd %~dp0 rem ### Check Apache Syntax echo. echo 1) SYNTAX CHECK echo. echo The following test checks Apache configuration file syntax echo Any errors reported must be corrected. echo If syntax check is OK you will see step 2) echo. ..\usr\local\apache2\bin\Apache.exe -t if errorlevel 0 goto CONTINUE echo. pause exit rem ### Run Apache :CONTINUE echo. echo 2) START APACHE echo. echo Expected results: echo. echo A blank command window opens with a flashing cursor. echo This window remains open indicating the Apache server is running. echo Note: You may be challenged by your firewall ALLOW access echo. echo Do not close windows. Perform the following: echo. echo Running 1_port_check.bat will show port 80 is now in use echo Check server is accessible. Type the following into a browser http://localhost/ echo Uniform Server's index page is displayed echo. echo Run test by pressing any key. Perform above tests. echo. pause cd .. start usr\local\apache2\bin\Apache.exe -f conf/httpd.conf -d usr/local/apache2 echo. echo 3) STOP APACHE echo. echo In the blank command windows click cross top right. echo. echo This closes the Apache program confirm this as follows: echo. echo Running 1_port_check.bat port 80 is not displayed hence port is free to use echo Check server is not accessible type the following into a browser http://localhost/ echo. echo Close this command window by pressing any key. echo. echo. echo 4) FAILS TO START echo. echo 1) Check ports 80 is not being blocked echo 2) Always login as Admin echo 3) Disable the User Account Control (UAC) echo. echo Disable UAC on Windows Vista echo. echo a) Open up Control Panel, type in “UAC” into the search box. echo b) You will see a link for “Turn User Account Control (UAC) on or off” click this link: echo c) A new screen opens uncheck the box for “Use User Account Control (UAC)”, click the OK button. echo d) You must restart Windows. echo. echo Disable UAC on Windows 7 echo. echo a) Type UAC into the start menu or Control Panel search box. echo b) Drag the slider up or down, defines how often you want to be alerted. echo c) Drag it all the way down to the bottom, this disables UAC entirely. echo. pause rem ### restore original working directory popd
ravihansa3000/vesuvius-portable-windows
PortableApps/SahanaFoundation.org/a_diagnostic/2_Apache_program.bat
bat
mit
2,768
@echo off php vendor/espino316/rsphp/rsphp %*
espino316/rsphp
rsphp.bat
bat
mit
46
python ../../../tools/oxyresbuild.py -x xmls/ui.xml --src_data data --dest_data data --compress etc1
Taikatou/oxygine-framework
examples/Game/part5/gen-atlasses-android(ETC1).bat
bat
mit
100
SoftwareAcademy.exe < test.000.001.in.txt > test.000.001.out-Yavor.txt
ykomitov/Homeworks-TA
03.OOP/89.OOP_Exam_Preparation/1. SoftwareAcademy/z.runTest.bat
bat
mit
70
::------------------------------------------------------------------------------------------------------- :: Copyright (C) Microsoft. All rights reserved. :: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. ::------------------------------------------------------------------------------------------------------- @echo off setlocal set _HASERROR=0 set _binary=ch.exe set _BuildDir=%~dp0..\..\..\..\Build if "%_FILE%" == "" ( set "_FILE=%~dp0*.js" ) :ContinueArgParse if not [%1]==[] ( if [%1]==[-nojit] ( set _suffix=.nojit goto :ContinueArgParseEnd ) if [%1]==[-binary] ( if [%2]==[] ( echo Error: no argument supplied to -binary. Exiting ... exit /b 1 ) set _binary=%2 shift goto :ContinueArgParseEnd ) if [%1]==[-bindir] ( if [%2]==[] ( echo Error: no argument supplied to -bindir. Exiting ... exit /b 1 ) set _BinLocation=%2 shift goto :ContinueArgParseEnd ) :ContinueArgParseEnd shift goto :ContinueArgParse ) :: This script will expect %_binary% to be built for x86_debug and x64_debug if "%OutBaseDir%" NEQ "" ( set _BinLocation=%OutBaseDir%\Chakra.Core%_suffix%\bin ) if "%_BinLocation%"=="" ( set _BinLocation=%_BuildDir%\VcBuild%_suffix%\bin ) if not exist %_BinLocation%\x86_debug\%_binary% ( echo Error: %_BinLocation%\x86_debug\%_binary% not found, please build sources. Exiting ... exit /b 1 ) if not exist %_BinLocation%\x64_debug\%_binary% ( echo Error: %_BinLocation%\x64_debug\%_binary% not found, please build sources. Exiting ... exit /b 1 ) for %%i in (%_FILE%) do ( call :GenerateLibraryByteCodeHeader %%i ) exit /B %_HASERROR% :GenerateLibraryBytecodeHeader echo Generating %1%_suffix%.bc.32b.h call :Generate %1 %_BinLocation%\x86_debug %1%_suffix%.bc.32b.h echo Generating %1%_suffix%.bc.64b.h call :Generate %1 %_BinLocation%\x64_debug %1%_suffix%.bc.64b.h exit /B 0 :Generate %2\%_binary% -GenerateLibraryByteCodeHeader:%3 -JsBuiltIn -LdChakraLib %1 if "%errorlevel%" NEQ "0" ( echo %1: Error generating bytecode file. Ensure %3 writable. set _HASERROR=1 ) else ( echo Bytecode generated. Please rebuild to incorporate the new bytecode. )
mrkmarron/ChakraCore
lib/Runtime/Library/JsBuiltIn/GenByteCode.cmd
bat
mit
2,441
@echo OFF set path=%~1 set pathType=NUL set pathName=NUL set pathExt=NUL set selectedFolder=NUL set value=NUL call:getPathType "%path%" pathType call:getPathName "%path%" pathName call:getPathExtension "%path%" pathExt echo path: %path% echo type: %pathType% echo name: %pathName% echo extension: %pathExt% set concat=%pathName%%pathExt% echo %concat% ::call:selectFolder selectedFolder ::echo %selectedFolder% ::call:readReg "HKEY_CURRENT_USER\Software\Grimoire\Disable vJass syntax" value ::echo value: %value% ::"REG_SZ" for string ::"REG_DWORD" for integer (32-bit) ::"REG_QWORD" for integer (64-bit) ::"REG_BINARY" for binary or boolean ::"REG_EXPAND_SZ" for expandable string ::call:writeReg "HKEY_CURRENT_USER\Software\Grimoire\Custom" "test" "REG_SZ" ::call:deleteReg "HKEY_CURRENT_USER\Software\Grimoire\Custom" pause goto:eof :: directories in current directory :: for /D %%s in (%~1\*) do @echo %%~s :: all files in current directory :: for %%f in (.\*) do @echo %%~f :getPathType :: -- %~1: path :: -- %~2: return INVALID, FILE, DIRECTORY SETLOCAL ENABLEEXTENSIONS set pathType="Invalid" if not exist "%~1" ( set pathType=INVALID ) else ( set attribute=%~a1 set dirAttribute=%attribute:0,1% if "%dirAttribute%"=="d" ( set pathType=DIRECTORY ) else ( set pathType=FILE ) ) (ENDLOCAL & REM -- RETURN VALUES set %~2=%pathType% ) GOTO:EOF :getPathName :: -- %~1: path :: -- %~2: return name set %~2=%~n1 GOTO:EOF :getPathExtension :: -- %~1: path :: -- %~2: return extension set %~2=%~x1 GOTO:EOF :selectFolder :: -- %~1: return value for /F "Tokens=1 Delims=" %%I in ('C:\windows\system32\cscript.exe //nologo "%cd%\browseFolder.vbs"') do set %~1=%%I GOTO:EOF :readReg :: -- %~1: path :: -- %~2: return value for /F "Tokens=1 Delims=" %%I in ('C:\windows\system32\cscript.exe //nologo "%cd%\registry.vbs" "read" "%~1"') do set %~2=%%I GOTO:EOF :writeReg :: -- %~1: path :: -- %~2: value :: -- %~3: valueType C:\windows\system32\cscript.exe "//nologo" "%cd%\registry.vbs" "write" "%~1" "%~2" "%~3" GOTO:EOF :deleteReg :: -- %~1: path C:\windows\system32\cscript.exe "//nologo" "%cd%\registry.vbs" "delete" "%~1" GOTO:EOF
nestharus/JASS
jass/Tools/opt.bat
bat
mit
2,232
java -classpath ./xalan.jar;. org.apache.xalan.xslt.Process -in ../Questions_gouvernement_XIV.xml -xsl ../style.xsl -out ../view.html
DavidLibeau/Open-Data
AN/QuestionsGouvernement/resrc/compil.bat
bat
cc0-1.0
134
@echo off set HOME=C: set USER=Windows set CLIENT=.\ccg_client.exe if exist .\home set HOME=.\home if exist module_windows32\ccg_client.exe set CLIENT=module_windows32\ccg_client.exe start %CLIENT% --design 1024x768 --user %USER% %1 %2 %3 %4 %5 %6 %7 %8 %9 metw.xml
markferry/gccg-core
Metw.bat
bat
gpl-2.0
274
cmd_net/xfrm/built-in.o := /home/robin/toolchain/bin/arm-none-eabi-ld -EL -r -o net/xfrm/built-in.o net/xfrm/xfrm_policy.o net/xfrm/xfrm_state.o net/xfrm/xfrm_hash.o net/xfrm/xfrm_input.o net/xfrm/xfrm_output.o net/xfrm/xfrm_algo.o net/xfrm/xfrm_sysctl.o
spacecaker/CM7_Space_Kernel_Cooper
net/xfrm/.built-in.o.cmd
bat
gpl-2.0
260
cmd_init/built-in.o := rm -f init/built-in.o; arm-linux-musleabihf-ar rcs init/built-in.o
ThinkIntegrate/busybox
init/.built-in.o.cmd
bat
gpl-2.0
91
cmd_drivers/char/agp/built-in.o := rm -f drivers/char/agp/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/char/agp/built-in.o
avareldalton85/rpi2-linux-rt
drivers/char/agp/.built-in.o.cmd
bat
gpl-2.0
196
cmd_drivers/usb/misc/mdm_bridge.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/usb/misc/mdm_bridge.o drivers/usb/misc/mdm_ctrl_bridge.o drivers/usb/misc/mdm_data_bridge.o
friedrich420/S4-GPE-AEL-Kernel-4.4.3
drivers/usb/misc/.mdm_bridge.o.cmd
bat
gpl-2.0
216
cmd_arch/arm/lib/putuser.o := /root/CodeSourcery/Sourcery_G++_Lite//bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.putuser.o.d -nostdinc -isystem /root/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -Iinclude -I/usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -include asm/unified.h -msoft-float -c -o arch/arm/lib/putuser.o arch/arm/lib/putuser.S deps_arch/arm/lib/putuser.o := \ arch/arm/lib/putuser.S \ $(wildcard include/config/thumb2/kernel.h) \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/linkage.h \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ arch/arm/lib/putuser.o: $(deps_arch/arm/lib/putuser.o) $(deps_arch/arm/lib/putuser.o):
gzdaoke/linux2.6.32_kernel
arch/arm/lib/.putuser.o.cmd
bat
gpl-2.0
1,486
@echo off python main.py pause
scarvalhojr/ntlmaps
runserver.bat
bat
gpl-2.0
32
@echo off java NslCompiler %1 %2 %3 %4 %5 %6 %7 %8 %9 @echo on
salvadormarmol/NSL_3_0_S
nslc/bin/nslc.bat
bat
gpl-2.0
66
set mode=debug set outPath=..\%mode% set nunit="c:\nunit\nunit-console\nunit3-console.exe" mkdir ..\Archive del ..\Aphid\bin\%mode%\* /s /q del ..\Coywolf\bin\%mode%\* /s /q del ..\Boxelder\bin\%mode%\* /s /q del ..\Mantispid\bin\%mode%\* /s /q del %outPath%\* /s /q call xbuild ..\Aphid\Aphid.csproj mkdir %outPath%\Aphid mkdir %outPath%\Aphid\Library copy ..\Aphid\bin\%mode%\Aphid.exe %outPath%\Aphid copy ..\Aphid\bin\%mode%\Components.Aphid.dll %outPath%\Aphid copy ..\Aphid\bin\%mode%\*.alx %outPath%\Aphid copy ..\Aphid\bin\%mode%\Library\*.alx %outPath%\Aphid\Library call xbuild ..\Coywolf\Coywolf.csproj mkdir %outPath%\Coywolf mkdir %outPath%\Coywolf\Library copy ..\Coywolf\bin\%mode%\cw.exe %outPath%\Coywolf copy ..\Coywolf\bin\%mode%\phpFunctions.txt %outPath%\Coywolf copy ..\Coywolf\bin\%mode%\Components.Aphid.dll %outPath%\Coywolf ::copy ..\Coywolf\bin\%mode%\*.alx %outPath%\Coywolf copy ..\Coywolf\bin\%mode%\Library\Query.alx %outPath%\Coywolf\Library call xbuild ..\Boxelder\Boxelder.csproj mkdir %outPath%\Boxelder mkdir %outPath%\Boxelder\Library copy ..\Boxelder\bin\%mode%\be.exe %outPath%\Boxelder copy ..\Boxelder\bin\%mode%\Components.Aphid.dll %outPath%\Boxelder copy ..\Boxelder\bin\%mode%\*.alx %outPath%\Boxelder copy ..\Boxelder\bin\%mode%\Library\Query.alx %outPath%\Boxelder\Library call xbuild ..\Mantispid\Mantispid.csproj mkdir %outPath%\Mantispid mkdir %outPath%\Mantispid\Library copy ..\Mantispid\bin\%mode%\Mantispid.exe %outPath%\Mantispid copy ..\Mantispid\bin\%mode%\AphidCodeGenerator.exe %outPath%\Mantispid copy ..\Mantispid\bin\%mode%\llex.exe %outPath%\Mantispid copy ..\Mantispid\bin\%mode%\Components.Aphid.dll %outPath%\Mantispid copy ..\Mantispid\bin\%mode%\Library\*.alx %outPath%\Mantispid\Library copy ..\Components.Aphid\Aphid.alx %outPath%\Mantispid copy ..\Components.Aphid\Aphid.Lexer.alx %outPath%\Mantispid copy ..\Components.Aphid\Aphid.Lexer.Code.alx %outPath%\Mantispid copy ..\Components.Aphid\Aphid.Lexer.Tmpl.alx %outPath%\Mantispid call xbuild ..\Components.Aphid.Tests.Integration\Components.Aphid.Tests.Integration.csproj set testAsm=..\Components.Aphid.Tests.Integration\bin\%mode%\Components.Aphid.Tests.Integration.dll %nunit% %testAsm% --full --work=%outPath% --out=%outPath%\TestResults.txt --err=%outPath%\TestErrors.txt %outPath%\Aphid\Aphid.exe .\package.alx
John-Leitch/Aphid
build/make.cmd
bat
gpl-2.0
2,402
cmd_drivers/input/keyboard/built-in.o := ppc_4xx-ld -m elf32ppc -r -o drivers/input/keyboard/built-in.o drivers/input/keyboard/atkbd.o
mattkelly/linux-2.6-xlnx
drivers/input/keyboard/.built-in.o.cmd
bat
gpl-2.0
140
cmd_drivers/input/input-core.o := ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ld -EL -r -o drivers/input/input-core.o drivers/input/input.o drivers/input/input-compat.o drivers/input/ff-core.o
spacecaker/CM7_Space_Kernel_Cooper
drivers/input/.input-core.o.cmd
bat
gpl-2.0
203
@echo off set QT_INSTALL_DIR=%1 :: %QT_INSTALL_DIR%\bin\qtenv.bat :: echo -- QTDIR set to %QTDIR% :: set QTDIR=%QT_INSTALL_DIR%\qt set PATH=%QT_INSTALL_DIR%\bin set PATH=%PATH%;%QT_INSTALL_DIR%\bin;%QT_INSTALL_DIR%\mingw\bin set PATH=%PATH%;%SystemRoot%\System32 set QMAKESPEC=win32-g++ :: echo %PATH% rmdir /Q /S bin\ rmdir /Q /S obj\ cd Setup\Updater %QT_INSTALL_DIR%\qt\bin\qmake.exe -spec win32-g++ :: || exit 1 %QT_INSTALL_DIR%\mingw\bin\mingw32-make.exe & :: || exit 1 cd ..\..\
baoping/Red-Bull-Media-Player
agentbuild_updater.bat
bat
gpl-3.0
520
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=python -msphinx ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=rpg-dark-fantasy if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The Sphinx module was not found. Make sure you have Sphinx installed, echo.then set the SPHINXBUILD environment variable to point to the full echo.path of the 'sphinx-build' executable. Alternatively you may add the echo.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
lpenaud/rpg-dark-fantasy
sphinx/make.bat
bat
gpl-3.0
814
@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\pywim2.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pywim2.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
lavaner/pywim2
docs/make.bat
bat
gpl-3.0
6,701
echo off call vc-env_3.17.bat call vc-build.bat call deploy.bat
vogler75/oa4j
Native/Tools/vc-build_3.17.bat
bat
agpl-3.0
64
java -cp "ecsJars/*;common/*" -Dio.netty.tryReflectionSetAccessible=true de.iip_ecosphere.platform.support.LifecycleHandler$WaitingStarter %*
SSEHUB/EASyProducer
Plugins/EASy-Producer/ScenariosTest/testdata/real/IIP-Ecosphere/nov21/expected/SerializerConfig1/ecs8.bat
bat
apache-2.0
142
adb uninstall uk.co.tekkies.readings
tekkies/Readings
un.bat
bat
apache-2.0
36
@echo off if defined MSYSTEM ( echo This .bat file is for Windows CMD.EXE shell only. goto end ) :: Missing requirements check set MISSING_REQUIREMENTS= python.exe --version >NUL 2>NUL if %errorlevel% neq 0 set "MISSING_REQUIREMENTS= python &echo\" git.exe --version >NUL 2>NUL if %errorlevel% neq 0 set "MISSING_REQUIREMENTS=%MISSING_REQUIREMENTS% git" if not "%MISSING_REQUIREMENTS%" == "" goto :error_missing_requirements :: Infer IDF_PATH from script location set IDF_PATH=%~dp0 set IDF_PATH=%IDF_PATH:~0,-1% for /f "delims=" %%i in ('python.exe "%IDF_PATH%\tools\install_util.py" extract targets "%*"') do set TARGETS=%%i echo Installing ESP-IDF tools python.exe "%IDF_PATH%\tools\idf_tools.py" install --targets=%TARGETS% if %errorlevel% neq 0 goto :end for /f "delims=" %%i in ('python.exe "%IDF_PATH%\tools\install_util.py" extract features "%*"') do set FEATURES=%%i echo Setting up Python environment python.exe "%IDF_PATH%\tools\idf_tools.py" install-python-env --features=%FEATURES% if %errorlevel% neq 0 goto :end echo All done! You can now run: echo export.bat goto :end :error_missing_requirements echo. echo Error^: The following tools are not installed in your environment. echo. echo %MISSING_REQUIREMENTS% echo. echo Please use the Windows Tool installer for setting up your environment. echo Download link: https://dl.espressif.com/dl/esp-idf/ echo For more details please visit our website: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/windows-setup.html goto :end :end
espressif/esp-idf
install.bat
bat
apache-2.0
1,571
del ..\contribution.xml /q REM Build Viz Databound contribution.xml files call build_viz.cmd REM Build the rest as normal type ..\..\org.scn.community.shared\templates.main\contribution.xml.head.txt ^ ..\templates\contribution.xml.head.txt ^ ..\..\org.scn.community.shared\templates.main\eula.xml.txt ^ ..\..\org.scn.community.shared\templates.main\license.xml.txt ^ ..\templates\contribution.xml.groups.txt ^ ..\res\Choropleth\def\contribution.xml ^ ..\res\DataTable\def\contribution.xml ^ ..\res\DropDown\def\contribution.xml ^ ..\res\D3Hier\def\contribution.xml ^ ..\res\FacetFilter\def\contribution.xml ^ ..\res\HexBin\def\contribution.xml ^ ..\res\LeaderBoard\def\contribution.xml ^ ..\res\MarimekkoChart\def\contribution.xml ^ ..\res\MultiLevelDropDown\def\contribution.xml ^ ..\res\NiceChart\def\contribution.xml ^ ..\res\Projector\def\contribution.xml ^ ..\res\RangeSlider\def\contribution.xml ^ ..\res\ResultSetInfo\def\contribution.xml ^ ..\res\ScatterPlot\def\contribution.xml ^ ..\res\Slider\def\contribution.xml ^ ..\res\Table2D\def\contribution.xml ^ ..\res\TopFlop\def\contribution.xml ^ ..\res\TopFlopChart\def\contribution.xml ^ ..\res\UI5Table\def\contribution.xml ^ ..\..\org.scn.community.shared\templates.main\contribution.xml.close.txt > ^ ..\contribution.xml del ..\contribution.ztl /q type ..\..\org.scn.community.shared\templates.main\contribution.ztl.head.txt ^ ..\templates\contribution.ztl.head.txt ^ ..\..\org.scn.community.shared\templates.main\license.js.txt ^ ..\res\Choropleth\def\contribution.ztl ^ ..\res\DataTable\def\contribution.ztl ^ ..\res\DropDown\def\contribution.ztl ^ ..\res\D3Hier\def\contribution.ztl ^ ..\res\FacetFilter\def\contribution.ztl ^ ..\res\HexBin\def\contribution.ztl ^ ..\res\LeaderBoard\def\contribution.ztl ^ ..\res\MarimekkoChart\def\contribution.ztl ^ ..\res\MultiLevelDropDown\def\contribution.ztl ^ ..\res\NiceChart\def\contribution.ztl ^ ..\res\Projector\def\contribution.ztl ^ ..\res\RangeSlider\def\contribution.ztl ^ ..\res\ResultSetInfo\def\contribution.ztl ^ ..\res\ScatterPlot\def\contribution.ztl ^ ..\res\Slider\def\contribution.ztl ^ ..\res\Table2D\def\contribution.ztl ^ ..\res\TopFlop\def\contribution.ztl ^ ..\res\TopFlopChart\def\contribution.ztl ^ ..\res\UI5Table\def\contribution.ztl ^ ..\..\org.scn.community.shared\templates.main\contribution.ztl.close.txt > ^ ..\contribution.ztl del ..\META-INF\MANIFEST.MF /q type ..\..\org.scn.community.shared\templates.main\MANIFEST.MF ^ ..\templates\MANIFEST.MF > ^ ..\META-INF\MANIFEST.MF
YunuSahin/sdk
src/org.scn.community.databound/script/build.cmd
bat
apache-2.0
2,519
cmd_coreutils/mv.o := gcc -Wp,-MD,coreutils/.mv.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-builtin-printf -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mv)" -D"KBUILD_MODNAME=KBUILD_STR(mv)" -c -o coreutils/mv.o coreutils/mv.c deps_coreutils/mv.o := \ coreutils/mv.c \ $(wildcard include/config/feature/mv/long/options.h) \ $(wildcard include/config/feature/verbose.h) \ $(wildcard include/config/selinux.h) \ /usr/include/stdc-predef.h \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdbool.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ /usr/include/x86_64-linux-gnu/bits/uio.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/inttypes.h \ /usr/include/netdb.h \ /usr/include/netinet/in.h \ /usr/include/x86_64-linux-gnu/sys/socket.h \ /usr/include/x86_64-linux-gnu/sys/uio.h \ /usr/include/x86_64-linux-gnu/bits/socket.h \ /usr/include/x86_64-linux-gnu/bits/socket_type.h \ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ /usr/include/x86_64-linux-gnu/asm/socket.h \ /usr/include/asm-generic/socket.h \ /usr/include/x86_64-linux-gnu/asm/sockios.h \ /usr/include/asm-generic/sockios.h \ /usr/include/x86_64-linux-gnu/bits/socket2.h \ /usr/include/x86_64-linux-gnu/bits/in.h \ /usr/include/rpc/netdb.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/netdb.h \ /usr/include/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp2.h \ /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/paths.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/libgen.h \ /usr/include/poll.h \ /usr/include/x86_64-linux-gnu/sys/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll2.h \ /usr/include/x86_64-linux-gnu/sys/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctls.h \ /usr/include/x86_64-linux-gnu/asm/ioctls.h \ /usr/include/asm-generic/ioctls.h \ /usr/include/linux/ioctl.h \ /usr/include/x86_64-linux-gnu/asm/ioctl.h \ /usr/include/asm-generic/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.h \ /usr/include/x86_64-linux-gnu/bits/timex.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/x86_64-linux-gnu/bits/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/mntent.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/utmp.h \ /usr/include/x86_64-linux-gnu/bits/utmp.h \ /usr/include/utmpx.h \ /usr/include/x86_64-linux-gnu/bits/utmpx.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ coreutils/libcoreutils/coreutils.h \ coreutils/mv.o: $(deps_coreutils/mv.o) $(deps_coreutils/mv.o):
rennman/copfvtci
build/busybox-1.25.1/coreutils/.mv.o.cmd
bat
apache-2.0
10,250
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. rem --------------------------------------------------------------------------- rem Start/Stop Script for the CATALINA Server rem rem Environment Variable Prerequisites rem rem Do not set the variables in this script. Instead put them into a script rem setenv.bat in CATALINA_BASE/bin to keep your customizations separate. rem rem WHEN RUNNING TOMCAT AS A WINDOWS SERVICE: rem Note that the environment variables that affect the behavior of this rem script will have no effect at all on Windows Services. As such, any rem local customizations made in a CATALINA_BASE/bin/setenv.bat script rem will also have no effect on Tomcat when launched as a Windows Service. rem The configuration that controls Windows Services is stored in the Windows rem Registry, and is most conveniently maintained using the "tomcatXw.exe" rem maintenance utility, where "X" is the major version of Tomcat you are rem running. rem rem CATALINA_HOME May point at your Catalina "build" directory. rem rem CATALINA_BASE (Optional) Base directory for resolving dynamic portions rem of a Catalina installation. If not present, resolves to rem the same directory that CATALINA_HOME points to. rem rem CATALINA_OPTS (Optional) Java runtime options used when the "start", rem "run" or "debug" command is executed. rem Include here and not in JAVA_OPTS all options, that should rem only be used by Tomcat itself, not by the stop process, rem the version command etc. rem Examples are heap size, GC logging, JMX ports etc. rem rem CATALINA_TMPDIR (Optional) Directory path location of temporary directory rem the JVM should use (java.io.tmpdir). Defaults to rem %CATALINA_BASE%\temp. rem rem JAVA_HOME Must point at your Java Development Kit installation. rem Required to run the with the "debug" argument. rem rem JRE_HOME Must point at your Java Runtime installation. rem Defaults to JAVA_HOME if empty. If JRE_HOME and JAVA_HOME rem are both set, JRE_HOME is used. rem rem JAVA_OPTS (Optional) Java runtime options used when any command rem is executed. rem Include here and not in CATALINA_OPTS all options, that rem should be used by Tomcat and also by the stop process, rem the version command etc. rem Most options should go into CATALINA_OPTS. rem rem JAVA_ENDORSED_DIRS (Optional) Lists of of semi-colon separated directories rem containing some jars in order to allow replacement of APIs rem created outside of the JCP (i.e. DOM and SAX from W3C). rem It can also be used to update the XML parser implementation. rem This is only supported for Java <= 8. rem Defaults to $CATALINA_HOME/endorsed. rem rem JPDA_TRANSPORT (Optional) JPDA transport used when the "jpda start" rem command is executed. The default is "dt_socket". rem rem JPDA_ADDRESS (Optional) Java runtime options used when the "jpda start" rem command is executed. The default is localhost:8000. rem rem JPDA_SUSPEND (Optional) Java runtime options used when the "jpda start" rem command is executed. Specifies whether JVM should suspend rem execution immediately after startup. Default is "n". rem rem JPDA_OPTS (Optional) Java runtime options used when the "jpda start" rem command is executed. If used, JPDA_TRANSPORT, JPDA_ADDRESS, rem and JPDA_SUSPEND are ignored. Thus, all required jpda rem options MUST be specified. The default is: rem rem -agentlib:jdwp=transport=%JPDA_TRANSPORT%, rem address=%JPDA_ADDRESS%,server=y,suspend=%JPDA_SUSPEND% rem rem JSSE_OPTS (Optional) Java runtime options used to control the TLS rem implementation when JSSE is used. Default is: rem "-Djdk.tls.ephemeralDHKeySize=2048" rem rem LOGGING_CONFIG (Optional) Override Tomcat's logging config file rem Example (all one line) rem set LOGGING_CONFIG="-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties" rem rem LOGGING_MANAGER (Optional) Override Tomcat's logging manager rem Example (all one line) rem set LOGGING_MANAGER="-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager" rem rem TITLE (Optional) Specify the title of Tomcat window. The default rem TITLE is Tomcat if it's not specified. rem Example (all one line) rem set TITLE=Tomcat.Cluster#1.Server#1 [%DATE% %TIME%] rem --------------------------------------------------------------------------- setlocal rem Suppress Terminate batch job on CTRL+C if not ""%1"" == ""run"" goto mainEntry if "%TEMP%" == "" goto mainEntry if exist "%TEMP%\%~nx0.run" goto mainEntry echo Y>"%TEMP%\%~nx0.run" if not exist "%TEMP%\%~nx0.run" goto mainEntry echo Y>"%TEMP%\%~nx0.Y" call "%~f0" %* <"%TEMP%\%~nx0.Y" rem Use provided errorlevel set RETVAL=%ERRORLEVEL% del /Q "%TEMP%\%~nx0.Y" >NUL 2>&1 exit /B %RETVAL% :mainEntry del /Q "%TEMP%\%~nx0.run" >NUL 2>&1 rem Guess CATALINA_HOME if not defined set "CURRENT_DIR=%cd%" if not "%CATALINA_HOME%" == "" goto gotHome set "CATALINA_HOME=%CURRENT_DIR%" if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome cd .. set "CATALINA_HOME=%cd%" cd "%CURRENT_DIR%" :gotHome if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome echo The CATALINA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program goto end :okHome rem Copy CATALINA_BASE from CATALINA_HOME if not defined if not "%CATALINA_BASE%" == "" goto gotBase set "CATALINA_BASE=%CATALINA_HOME%" :gotBase rem Ensure that neither CATALINA_HOME nor CATALINA_BASE contains a semi-colon rem as this is used as the separator in the classpath and Java provides no rem mechanism for escaping if the same character appears in the path. Check this rem by replacing all occurrences of ';' with '' and checking that neither rem CATALINA_HOME nor CATALINA_BASE have changed if "%CATALINA_HOME%" == "%CATALINA_HOME:;=%" goto homeNoSemicolon echo Using CATALINA_HOME: "%CATALINA_HOME%" echo Unable to start as CATALINA_HOME contains a semicolon (;) character goto end :homeNoSemicolon if "%CATALINA_BASE%" == "%CATALINA_BASE:;=%" goto baseNoSemicolon echo Using CATALINA_BASE: "%CATALINA_BASE%" echo Unable to start as CATALINA_BASE contains a semicolon (;) character goto end :baseNoSemicolon rem Ensure that any user defined CLASSPATH variables are not used on startup, rem but allow them to be specified in setenv.bat, in rare case when it is needed. set CLASSPATH= rem Get standard environment variables if not exist "%CATALINA_BASE%\bin\setenv.bat" goto checkSetenvHome call "%CATALINA_BASE%\bin\setenv.bat" goto setenvDone :checkSetenvHome if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat" :setenvDone rem Get standard Java environment variables if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath echo Cannot find "%CATALINA_HOME%\bin\setclasspath.bat" echo This file is needed to run this program goto end :okSetclasspath call "%CATALINA_HOME%\bin\setclasspath.bat" %1 if errorlevel 1 goto end rem Add on extra jar file to CLASSPATH rem Note that there are no quotes as we do not want to introduce random rem quotes into the CLASSPATH if "%CLASSPATH%" == "" goto emptyClasspath set "CLASSPATH=%CLASSPATH%;" :emptyClasspath set "CLASSPATH=%CLASSPATH%%CATALINA_HOME%\bin\bootstrap.jar" if not "%CATALINA_TMPDIR%" == "" goto gotTmpdir set "CATALINA_TMPDIR=%CATALINA_BASE%\temp" :gotTmpdir rem Add tomcat-juli.jar to classpath rem tomcat-juli.jar can be over-ridden per instance if not exist "%CATALINA_BASE%\bin\tomcat-juli.jar" goto juliClasspathHome set "CLASSPATH=%CLASSPATH%;%CATALINA_BASE%\bin\tomcat-juli.jar" goto juliClasspathDone :juliClasspathHome set "CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\tomcat-juli.jar" :juliClasspathDone if not "%JSSE_OPTS%" == "" goto gotJsseOpts set JSSE_OPTS="-Djdk.tls.ephemeralDHKeySize=2048" :gotJsseOpts set "JAVA_OPTS=%JAVA_OPTS% %JSSE_OPTS%" rem Register custom URL handlers rem Do this here so custom URL handles (specifically 'war:...') can be used in the security policy set "JAVA_OPTS=%JAVA_OPTS% -Djava.protocol.handler.pkgs=org.apache.catalina.webresources" if not "%LOGGING_CONFIG%" == "" goto noJuliConfig set LOGGING_CONFIG=-Dnop if not exist "%CATALINA_BASE%\conf\logging.properties" goto noJuliConfig set LOGGING_CONFIG=-Djava.util.logging.config.file="%CATALINA_BASE%\conf\logging.properties" :noJuliConfig if not "%LOGGING_MANAGER%" == "" goto noJuliManager set LOGGING_MANAGER=-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager :noJuliManager rem Configure JAVA 9 specific start-up parameters set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.base/java.lang=ALL-UNNAMED" set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.base/java.io=ALL-UNNAMED" set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED" rem Java 9 no longer supports the java.endorsed.dirs rem system property. Only try to use it if rem JAVA_ENDORSED_DIRS was explicitly set rem or CATALINA_HOME/endorsed exists. set ENDORSED_PROP=ignore.endorsed.dirs if "%JAVA_ENDORSED_DIRS%" == "" goto noEndorsedVar set ENDORSED_PROP=java.endorsed.dirs goto doneEndorsed :noEndorsedVar if not exist "%CATALINA_HOME%\endorsed" goto doneEndorsed set ENDORSED_PROP=java.endorsed.dirs :doneEndorsed rem ----- Execute The Requested Command --------------------------------------- echo Using CATALINA_BASE: "%CATALINA_BASE%" echo Using CATALINA_HOME: "%CATALINA_HOME%" echo Using CATALINA_TMPDIR: "%CATALINA_TMPDIR%" if ""%1"" == ""debug"" goto use_jdk echo Using JRE_HOME: "%JRE_HOME%" goto java_dir_displayed :use_jdk echo Using JAVA_HOME: "%JAVA_HOME%" :java_dir_displayed echo Using CLASSPATH: "%CLASSPATH%" set _EXECJAVA=%_RUNJAVA% set MAINCLASS=org.apache.catalina.startup.Bootstrap set ACTION=start set SECURITY_POLICY_FILE= set DEBUG_OPTS= set JPDA= if not ""%1"" == ""jpda"" goto noJpda set JPDA=jpda if not "%JPDA_TRANSPORT%" == "" goto gotJpdaTransport set JPDA_TRANSPORT=dt_socket :gotJpdaTransport if not "%JPDA_ADDRESS%" == "" goto gotJpdaAddress set JPDA_ADDRESS=localhost:8000 :gotJpdaAddress if not "%JPDA_SUSPEND%" == "" goto gotJpdaSuspend set JPDA_SUSPEND=n :gotJpdaSuspend if not "%JPDA_OPTS%" == "" goto gotJpdaOpts set JPDA_OPTS=-agentlib:jdwp=transport=%JPDA_TRANSPORT%,address=%JPDA_ADDRESS%,server=y,suspend=%JPDA_SUSPEND% :gotJpdaOpts shift :noJpda if ""%1"" == ""debug"" goto doDebug if ""%1"" == ""run"" goto doRun if ""%1"" == ""start"" goto doStart if ""%1"" == ""stop"" goto doStop if ""%1"" == ""configtest"" goto doConfigTest if ""%1"" == ""version"" goto doVersion echo Usage: catalina ( commands ... ) echo commands: echo debug Start Catalina in a debugger echo debug -security Debug Catalina with a security manager echo jpda start Start Catalina under JPDA debugger echo run Start Catalina in the current window echo run -security Start in the current window with security manager echo start Start Catalina in a separate window echo start -security Start in a separate window with security manager echo stop Stop Catalina echo configtest Run a basic syntax check on server.xml echo version What version of tomcat are you running? goto end :doDebug shift set _EXECJAVA=%_RUNJDB% set DEBUG_OPTS=-sourcepath "%CATALINA_HOME%\..\..\java" if not ""%1"" == ""-security"" goto execCmd shift echo Using Security Manager set "SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy" goto execCmd :doRun shift if not ""%1"" == ""-security"" goto execCmd shift echo Using Security Manager set "SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy" goto execCmd :doStart shift if "%TITLE%" == "" set TITLE=Tomcat set _EXECJAVA=start "%TITLE%" %_RUNJAVA% if not ""%1"" == ""-security"" goto execCmd shift echo Using Security Manager set "SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy" goto execCmd :doStop shift set ACTION=stop set CATALINA_OPTS= goto execCmd :doConfigTest shift set ACTION=configtest set CATALINA_OPTS= goto execCmd :doVersion %_EXECJAVA% -classpath "%CATALINA_HOME%\lib\catalina.jar" org.apache.catalina.util.ServerInfo goto end :execCmd rem Get remaining unshifted command line arguments and save them in the set CMD_LINE_ARGS= :setArgs if ""%1""=="""" goto doneSetArgs set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 shift goto setArgs :doneSetArgs rem Execute Java with the applicable properties if not "%JPDA%" == "" goto doJpda if not "%SECURITY_POLICY_FILE%" == "" goto doSecurity %_EXECJAVA% %LOGGING_CONFIG% %LOGGING_MANAGER% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -D%ENDORSED_PROP%="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :doSecurity %_EXECJAVA% %LOGGING_CONFIG% %LOGGING_MANAGER% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -D%ENDORSED_PROP%="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :doJpda if not "%SECURITY_POLICY_FILE%" == "" goto doSecurityJpda %_EXECJAVA% %LOGGING_CONFIG% %LOGGING_MANAGER% %JAVA_OPTS% %JPDA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -D%ENDORSED_PROP%="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :doSecurityJpda %_EXECJAVA% %LOGGING_CONFIG% %LOGGING_MANAGER% %JAVA_OPTS% %JPDA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -D%ENDORSED_PROP%="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :end
gitee2008/glaf
tomcat/bin/catalina.bat
bat
apache-2.0
15,528
set DATABASE_URL='jdbc:postgresql://localhost:5432/twitterwall2?user=twitterwall2&password=twitterwall2pwd' set DATABASE_URL_TEST='jdbc:postgresql://localhost:5432/twitterwall2test?user=twitterwall2test&password=twitterwall2testpwd' set TWITTERWALL_FRONTEND_MAX_RESULTS=200 set TWITTERWALL_SHOW_USERS_MENU=true set TWITTERWALL_CONTEXT_TEST=true set TWITTER_PAGE_SIZE=500 set TWITTER_FETCH_TESTDATA=false set TWITTERWALL_WAIT_FOR_TEST=120000 set TWITTERWALL_URL_TEST_DATA_VERBOSE=false set TWITTERWALL_SCHEDULER_ALLOW_UPDATE_TWEETS=false set TWITTERWALL_SCHEDULER_ALLOW_UPDATE_USERS=false set TWITTERWALL_SCHEDULER_ALLOW_UPDATE_USERS_FROM_MENTION=false set TWITTERWALL_SCHEDULER_ALLOW_REMOVE_OLD_DATA_FROM_STORAGE=false set TWITTERWALL_SCHEDULER_ALLOW_SEARCH=false set TWITTER_SEARCH_TERM='#hibernate OR #java OR #TYPO3' set TWITTERWALL_INFO_WEBPAGE=https://github.com/phasenraum2010/twitterwall2 set TWITTERWALL_THEME=typo3 set TWITTERWALL_APP_NAME=Twitterwall set TWITTERWALL_INFO_IMPRINT_SCREEN_NAME=port80guru set TWITTERWALL_GOOGLE_ANALYTICS_ID=TWITTERWALL_GOOGLE_ANALYTICS_ID set TWITTERWALL_SCHEDULER_HEROKU_DB_LIMIT=false set TWITTERWALL_SCHEDULER_USER_LIST_NAME=test-typo3-hibernate-java set TWITTERWALL_SCHEDULER_USER_LIST_ALLOW=false set TWITTERWALL_JPA_HIBERNATE_DDL_AUTO=update @REM set TWITTERWALL_JPA_HIBERNATE_DDL_AUTO=create-drop set TWITTERWALL_LOGIN_USERNAME=tw set TWITTERWALL_LOGIN_PASSWORD=vbfvjdgar64r67tf7a46tf76rgtfgf7d6g mvnw clean spring-boot:run exit 0
phasenraum2010/twitterwall2
run.cmd
bat
apache-2.0
1,482
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\CWR-API.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\CWR-API.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
weso/CWR-DataApi
docs/make.bat
bat
mit
6,992
set BUILD_OUTDIR=%1 set BUILD_PROJECTDIR=%2 echo --------------------------------------- echo OUTPUT : [%BUILD_OUTDIR%] echo SOLUTION: [%BUILD_PROJECTDIR%] echo --------------------------------------- echo "Mesh Optimization dependencies copy done"
GPUOpen-Tools/Compressonator
applications/_plugins/cmesh/mesh_optimizer/copyfiles.bat
bat
mit
252
@ECHO OFF REM Find MSBuild. REM by yoyo: http://stackoverflow.com/a/13752506/1700174 FOR /D %%D in (%SYSTEMROOT%\Microsoft.NET\Framework\v4*) DO SET msbuild.exe=%%D\MSBuild.exe IF NOT EXIST "%msbuild.exe%" ( ECHO Error: MSBuild not found. Could not compile tests. EXIT /B 1 ) REM Compile tests. CALL %msbuild.exe% Tests\Tests.csproj /property:Configuration=Debug /verbosity:minimal IF NOT %ERRORLEVEL% == 0 ( ECHO Error %ERRORLEVEL%: Could not compile tests. EXIT /B %ERRORLEVEL% ) REM Run tests. Tests\Libraries\NSpec\NSpecRunner.exe Tests\bin\Debug\Tests.dll
robinryf/Entitas-CSharp
runTests.bat
bat
mit
571
cmd_arch/arm/kernel/vmlinux.lds := /home/amit/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-gcc -E -Wp,-MD,arch/arm/kernel/.vmlinux.lds.d -nostdinc -isystem /home/amit/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/../lib/gcc/arm-none-eabi/4.6.3/include -I/home/amit/Desktop/GT-S5830_Kernel/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -DTEXT_OFFSET=0x00008000 -P -C -Uarm -D__ASSEMBLY__ -DLINKER_SCRIPT -o arch/arm/kernel/vmlinux.lds arch/arm/kernel/vmlinux.lds.S deps_arch/arm/kernel/vmlinux.lds := \ arch/arm/kernel/vmlinux.lds.S \ $(wildcard include/config/xip/kernel.h) \ $(wildcard include/config/xip/phys/addr.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/unwind.h) \ $(wildcard include/config/have/tcm.h) \ include/asm-generic/vmlinux.lds.h \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/pm/trace.h) \ $(wildcard include/config/blk/dev/initrd.h) \ /home/amit/Desktop/GT-S5830_Kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/amit/Desktop/GT-S5830_Kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/iwmmxt.h) \ /home/amit/Desktop/GT-S5830_Kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/sparsemem.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/amit/Desktop/GT-S5830_Kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ /home/amit/Desktop/GT-S5830_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/sa1100.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/memory/hotplug/sparse.h) \ include/asm-generic/getorder.h \ arch/arm/kernel/vmlinux.lds: $(deps_arch/arm/kernel/vmlinux.lds) $(deps_arch/arm/kernel/vmlinux.lds):
MadManA/MadKernel_cooper
arch/arm/kernel/.vmlinux.lds.cmd
bat
gpl-2.0
3,854
cmd_scripts/kconfig/kxgettext.o := gcc -Wp,-MD,scripts/kconfig/.kxgettext.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<curses.h>" -DLOCALE -c -o scripts/kconfig/kxgettext.o scripts/kconfig/kxgettext.c deps_scripts/kconfig/kxgettext.o := \ scripts/kconfig/kxgettext.c \ /usr/include/stdlib.h \ /usr/include/features.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i386-redhat-linux/4.1.2/include/stddef.h \ /usr/include/sys/types.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/time.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/string.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i386-redhat-linux/4.1.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/lib/gcc/i386-redhat-linux/4.1.2/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/bits/locale.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/kxgettext.o: $(deps_scripts/kconfig/kxgettext.o) $(deps_scripts/kconfig/kxgettext.o):
dduval/kernel-rhel6
scripts/kconfig/.kxgettext.o.cmd
bat
gpl-2.0
1,726
@echo off REM REM []-------------------------[] REM | check INPUT/ENVIRONMENT | REM []-------------------------[] REM set _ScriptFiles=runme.txt set _DBServer=%1 set _UserName=%2 set _Password=%3 set _LogDir=.\Log echo _ScriptFiles=%_ScriptFiles% echo _DBServer=%_DBServer% echo _UserName=%_userName% echo _Password=%_Password% echo _LogDir=%_LogDir% REM REM []---------------------------[] REM | Actual Execution of scripts | REM []---------------------------[] REM echo. if exist out.txt erase out.txt if exist .\Log\*.log erase %_LogDir%\*.log >nul time /T for /F "tokens=*" %%A in (%_ScriptFiles%) do ( call ExecScript.bat "%%A" %_DBServer% %_UserName% %_Password% if errorlevel 1 goto show_logfile ) if exist .\Log\*.log erase %_LogDir%\*.log >nul goto end :show_logfile pause :end set _ScriptFiles= set _DBServer=
jandppw/ppwcode-recovered-from-google-code
dotnet/Kit/UserManagement/trunk/Database/Scripts/runme.bat
bat
apache-2.0
876
@ECHO OFF REM REM ScrollDemo2.bat REM REM $Id$ REM REM Java startup script rem rem This file is part of the OpenLink Software Virtuoso Open-Source (VOS) rem project. rem rem Copyright (C) 1998-2014 OpenLink Software rem rem This project is free software; you can redistribute it and/or modify it rem under the terms of the GNU General Public License as published by the rem Free Software Foundation; only version 2 of the License, dated June 1991. rem rem This program 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 along rem with this program; if not, write to the Free Software Foundation, Inc., rem 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA rem rem echo -------------------------------------------------------------------------- echo ScrollDemo2 from OpenLink Software echo -------------------------------------------------------------------------- runjava . ScrollDemo2
v7fasttrack/virtuoso-opensource
binsrc/samples/JDBC/jdk1.5/ScrollDemo2/ScrollDemo2.bat
bat
gpl-2.0
1,181
make pause
swarzesherz/rxTools
msethax/payload/build.bat
bat
bsd-2-clause
11
@echo off set CB_DEVEL_DIR=devel%1 set CB_DEVEL_RESDIR=..\..\..\%CB_DEVEL_DIR%\share\CodeBlocks call:mkdirSilent "%CB_DEVEL_RESDIR%\SpellChecker" call:mkdirSilent "%CB_DEVEL_RESDIR%\images\settings" zip -j9 %CB_DEVEL_RESDIR%\SpellChecker.zip manifest.xml SpellCheckSettingsPanel.xrc xcopy /D /Y OnlineSpellChecking.xml "%CB_DEVEL_RESDIR%\SpellChecker\" xcopy /D /Y dictionaries\*.aff "%CB_DEVEL_RESDIR%\SpellChecker\" xcopy /D /Y dictionaries\*.dic "%CB_DEVEL_RESDIR%\SpellChecker\" xcopy /D /Y dictionaries\th_*.dat "%CB_DEVEL_RESDIR%\SpellChecker\" xcopy /D /Y dictionaries\th_*.idx "%CB_DEVEL_RESDIR%\SpellChecker\" xcopy /D /Y *.png "%CB_DEVEL_RESDIR%\images\settings\" call:copyImageFiles rc "%CB_DEVEL_RESDIR%\SpellChecker" set CB_OUTPUT_DIR=output%1 set CB_OUTPUT_RESDIR=..\..\..\%CB_OUTPUT_DIR%\share\CodeBlocks call:mkdirSilent "%CB_OUTPUT_RESDIR%\SpellChecker" call:mkdirSilent "%CB_OUTPUT_RESDIR%\images\settings" xcopy /D /Y "%CB_DEVEL_RESDIR%\SpellChecker\*" "%CB_OUTPUT_RESDIR%\SpellChecker\" xcopy /D /Y *.png "%CB_OUTPUT_RESDIR%\images\settings\" ::-------------------------------------------------------- ::-- Function section starts below here ::-------------------------------------------------------- GOTO:EOF :mkdirSilent - create a directory if it doesn't exists echo Make dir %~1 if not exist "%~1" mkdir "%~1" GOTO:EOF :copyImageFiles - create a directory and copy image files to it setlocal echo Copy image files from %~1 to %~2 REM call mkdirSilent %~2 for %%g in (16x16,20x20,24x24,28x28,32x32,40x40,48x48,56x56,64x64) do ( echo From %~1\%%g to %~2\%%g call:mkdirSilent %~2\%%g xcopy /D /Y %~1\%%g\*.png %~2\%%g > nul ) REM call:mkdirSilent "%CB_OUTPUT_RESDIR%\images\ThreadSearch\32x32" REM xcopy /D /y "%CB_DEVEL_RESDIR%\images\ThreadSearch\32x32\*.png" "%CB_OUTPUT_RESDIR%\images\ThreadSearch\32x32" > nul endlocal GOTO:EOF
obfuscated/codeblocks_sf
src/plugins/contrib/SpellChecker/update.bat
bat
gpl-3.0
1,937
setlocal if "%NUGET_KEY%"=="" SET NUGET_KEY=%1 echo "key: '%NUGET_KEY%'" set BINROOT=%TF_BUILD_BINARIESDIRECTORY%\Release\NuGet if not exist %BINROOT% echo "Error: '%BINROOT%' does not exist."&goto :eof set NUGET=%TF_BUILD_SOURCESDIRECTORY%\NuGet.exe if not exist %NUGET% echo "Error: '%NUGET%' does not exist."&goto :eof set NUGET_GALLERY=https://www.myget.org/F/applicationinsights/api/v2/package for /r "%BINROOT%" %%P in (*.nupkg) do call :push %%P goto :eof :push set PACKAGE=%1 if %PACKAGE:.symbols.=% == %PACKAGE% ( %NUGET% push "%PACKAGE%" %NUGET_KEY% -source %NUGET_GALLERY% ) goto :eof endlocal
pharring/ApplicationInsights-dotnet
LOGGING/PushNugetPackages.cmd
bat
mit
618
/* //########################################################################### // // FILE: 28065_RAM_lnk.cmd // // TITLE: Linker Command File For F28065 examples that run out of RAM // // This ONLY includes all SARAM blocks on the F28065 device. // This does not include flash or OTP. // // Keep in mind that L0,L1,L2,L3 and L4 are protected by the code // security module. // // What this means is in most cases you will want to move to // another memory map file which has more memory defined. // //########################################################################### // $TI Release: 2806x C/C++ Header Files V1.10 $ // $Release Date: April 7, 2011 $ //########################################################################### */ /* ====================================================== // For Code Composer Studio V2.2 and later // --------------------------------------- // In addition to this memory linker command file, // add the header linker command file directly to the project. // The header linker command file is required to link the // peripheral structures to the proper locations within // the memory map. // // The header linker files are found in <base>\F2806x_headers\cmd // // For BIOS applications add: F2806x_Headers_BIOS.cmd // For nonBIOS applications add: F2806x_Headers_nonBIOS.cmd ========================================================= */ /* ====================================================== // For Code Composer Studio prior to V2.2 // -------------------------------------- // 1) Use one of the following -l statements to include the // header linker command file in the project. The header linker // file is required to link the peripheral structures to the proper // locations within the memory map */ /* Uncomment this line to include file only for non-BIOS applications */ /* -l F2806x_Headers_nonBIOS.cmd */ /* Uncomment this line to include file only for BIOS applications */ /* -l F2806x_Headers_BIOS.cmd */ /* 2) In your project add the path to <base>\F2806x_headers\cmd to the library search path under project->build options, linker tab, library search path (-i). /*========================================================= */ /* Define the memory block start/length for the F2806x PAGE 0 will be used to organize program sections PAGE 1 will be used to organize data sections Notes: Memory blocks on F28065 are uniform (ie same physical memory) in both PAGE 0 and PAGE 1. That is the same memory region should not be defined for both PAGE 0 and PAGE 1. Doing so will result in corruption of program and/or data. Contiguous SARAM memory blocks can be combined if required to create a larger memory block. */ MEMORY { PAGE 0 : /* BEGIN is used for the "boot to SARAM" bootloader mode */ BEGIN : origin = 0x000000, length = 0x000002 RAMM0 : origin = 0x000050, length = 0x0003B0 RAML0_L3 : origin = 0x008000, length = 0x002000 /* RAML0-3 combined for size of .text */ /* in Example_F2806xSWPrioritezedInterrupts */ RESET : origin = 0x3FFFC0, length = 0x000002 FPUTABLES : origin = 0x3FD860, length = 0x0006A0 /* FPU Tables in Boot ROM */ IQTABLES : origin = 0x3FDF00, length = 0x000B50 /* IQ Math Tables in Boot ROM */ IQTABLES2 : origin = 0x3FEA50, length = 0x00008C /* IQ Math Tables in Boot ROM */ IQTABLES3 : origin = 0x3FEADC, length = 0x0000AA /* IQ Math Tables in Boot ROM */ BOOTROM : origin = 0x3FF3B0, length = 0x000C10 PAGE 1 : BOOT_RSVD : origin = 0x000002, length = 0x00004E /* Part of M0, BOOT rom will use this for stack */ RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */ RAML4 : origin = 0x00A000, length = 0x002000 /* on-chip RAM block L4 */ RAML5 : origin = 0x00C000, length = 0x002000 /* on-chip RAM block L5 */ RAML6 : origin = 0x00E000, length = 0x002000 /* on-chip RAM block L6 */ RAML7 : origin = 0x010000, length = 0x002000 /* on-chip RAM block L7 */ RAML8 : origin = 0x012000, length = 0x002000 /* on-chip RAM block L8 */ USB_RAM : origin = 0x040000, length = 0x000800 /* USB RAM */ } SECTIONS { /* Setup for "boot to SARAM" mode: The codestart section (found in DSP28_CodeStartBranch.asm) re-directs execution to the start of user code. */ codestart : > BEGIN, PAGE = 0 ramfuncs : > RAMM0, PAGE = 0 .text : > RAML0_L3, PAGE = 0 .cinit : > RAMM0, PAGE = 0 .pinit : > RAMM0, PAGE = 0 .switch : > RAMM0, PAGE = 0 .reset : > RESET, PAGE = 0, TYPE = DSECT /* not used, */ .stack : > RAMM1, PAGE = 1 .ebss : > RAML4, PAGE = 1 .econst : > RAML4, PAGE = 1 .esysmem : > RAML4, PAGE = 1 IQmath : > RAML0_L3, PAGE = 0 IQmathTables : > IQTABLES, PAGE = 0, TYPE = NOLOAD /* Allocate FPU math areas: */ FPUmathTables : > FPUTABLES, PAGE = 0, TYPE = NOLOAD DMARAML5 : > RAML5, PAGE = 1 DMARAML6 : > RAML6, PAGE = 1 DMARAML7 : > RAML7, PAGE = 1 DMARAML8 : > RAML8, PAGE = 1 /* Uncomment the section below if calling the IQNexp() or IQexp() functions from the IQMath.lib library in order to utilize the relevant IQ Math table in Boot ROM (This saves space and Boot ROM is 1 wait-state). If this section is not uncommented, IQmathTables2 will be loaded into other memory (SARAM, Flash, etc.) and will take up space, but 0 wait-state is possible. */ /* IQmathTables2 : > IQTABLES2, PAGE = 0, TYPE = NOLOAD { IQmath.lib<IQNexpTable.obj> (IQmathTablesRam) } */ /* Uncomment the section below if calling the IQNasin() or IQasin() functions from the IQMath.lib library in order to utilize the relevant IQ Math table in Boot ROM (This saves space and Boot ROM is 1 wait-state). If this section is not uncommented, IQmathTables2 will be loaded into other memory (SARAM, Flash, etc.) and will take up space, but 0 wait-state is possible. */ /* IQmathTables3 : > IQTABLES3, PAGE = 0, TYPE = NOLOAD { IQmath.lib<IQNasinTable.obj> (IQmathTablesRam) } */ } /* //=========================================================================== // End of file. //=========================================================================== */
battosai30/Energia
hardware/c2000/cores/c2000/F2806x_common/cmd/28065_RAM_lnk.cmd
bat
lgpl-2.1
6,913
@echo off if defined DOTNET_HOST_PATH ( set HOST_PATH=%DOTNET_HOST_PATH% ) else ( set HOST_PATH=dotnet ) "%HOST_PATH%" "%~dp0\vbc.dll" %*
jcouv/roslyn
src/NuGet/Microsoft.NETCore.Compilers/tools/bincore/RunVbc.cmd
bat
apache-2.0
146
@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 --------------------------------------------------------------------------- rem Startup script for the WSDLJava rem rem Environment Variable Prequisites rem rem AXIS2_HOME Must point at your AXIS2 directory rem rem JAVA_HOME Must point at your Java Development Kit installation. rem rem JAVA_OPTS (Optional) Java runtime options rem --------------------------------------------------------------------------- set CURRENT_DIR=%cd% rem Make sure prerequisite environment variables are set if not "%JAVA_HOME%" == "" goto gotJavaHome echo The JAVA_HOME environment variable is not defined echo This environment variable is needed to run this program goto end :gotJavaHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome goto okJavaHome :noJavaHome echo The JAVA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program echo NB: JAVA_HOME should point to a JDK/JRE goto end :okJavaHome rem check the AXIS2_HOME environment variable if not "%AXIS2_HOME%" == "" goto gotHome set AXIS2_HOME=%CURRENT_DIR% if exist "%AXIS2_HOME%\bin\axis2.bat" goto okHome rem guess the home. Jump one directory up to check if that is the home cd .. set AXIS2_HOME=%cd% cd %CURRENT_DIR% :gotHome if EXIST "%AXIS2_HOME%\lib\axis2*.jar" goto okHome echo The AXIS2_HOME environment variable is not defined correctly echo This environment variable is needed to run this program goto end :okHome rem set the classes setlocal EnableDelayedExpansion rem loop through the libs and add them to the class path set AXIS2_CLASS_PATH=%AXIS2_HOME% FOR %%c in ("%AXIS2_HOME%\lib\*.jar") DO set AXIS2_CLASS_PATH=!AXIS2_CLASS_PATH!;%%c rem ----- Execute The Requested Command --------------------------------------- echo Using AXIS2_HOME: %AXIS2_HOME% echo Using JAVA_HOME: %JAVA_HOME% set _RUNJAVA="%JAVA_HOME%\bin\java" %_RUNJAVA% %JAVA_OPTS% -cp "!AXIS2_CLASS_PATH!" org.apache.axis2.wsdl.WSDL2Java %* endlocal :end
arunasujith/wso2-axis2
modules/tool/script/wsdl2java.bat
bat
apache-2.0
2,822
@ECHO OFF SET BIN_TARGET=%~dp0/../doctrine/doctrine-module/bin/doctrine-module php "%BIN_TARGET%" %*
SavedX/zend-2.local
vendor/bin/doctrine-module.bat
bat
bsd-3-clause
101
@echo off AjGenesis.Command %* Command=ApplicationNew TechnologyCommand.ajg
ajlopez/AjGenesis
commands/ApplicationNew.cmd
bat
mit
76
@echo off echo GoCryptoTrader: Generating gRPC, proxy and swagger files. REM You may need to include the go mod package for the annotations file: REM %GOPATH%\pkg\mod\github.com\grpc-ecosystem\grpc-gateway\[email protected]\third_party\googleapis protoc -I=. -I=%GOPATH%\src -I=%GOPATH%\src\github.com\grpc-ecosystem\grpc-gateway\third_party\googleapis --go_out=paths=source_relative:. rpc.proto protoc -I=. -I=%GOPATH%\src -I=%GOPATH%\src\github.com\grpc-ecosystem\grpc-gateway\third_party\googleapis --go-grpc_out=paths=source_relative:. rpc.proto protoc -I=. -I=%GOPATH%\src -I=%GOPATH%\src\github.com\grpc-ecosystem\grpc-gateway\third_party\googleapis --grpc-gateway_out=paths=source_relative,logtostderr=true:. rpc.proto protoc -I=. -I=%GOPATH%\src -I=%GOPATH%\src\github.com\grpc-ecosystem\grpc-gateway\third_party\googleapis --openapiv2_out=logtostderr=true:. rpc.proto
thrasher-/gocryptotrader
gctrpc/gen_pb_win.bat
bat
mit
870
set pythonpath=D:\pfaff\projekte\software\wradlib-outgoing set SPHINXOPTS=-D pngmath_latex=D:\pfaff\tools\miktex-portable\miktex\bin\latex.exe -D pngmath_dvipng=D:\pfaff\tools\miktex-portable\miktex\bin\dvipng.exe call make.bat clean deltree source/generated call make.bat htmlhelp > make-htmlhelp.log 2>&1 call make.bat html > make-html.log 2>&1 pause
jjhelmus/wradlib
doc/make-many.bat
bat
mit
358
 SET HarvestFileDir=%1 SET OutputPath=%2 SET ComponentGroup=%3 SET SourceVar=%4 echo ComponentGroup = %3 echo ComponentGroup = %ComponentGroup% echo "%WIX%\bin\heat.exe" dir "%HarvestFileDir%" -cg %ComponentGroup% -gg -scom -sreg -sfrag -srd -dr INSTALLDIR -var var.%ComponentGroup%.SourceDir -out "%OutputPath%" "%WIX%\bin\heat.exe" dir %HarvestFileDir% -cg %ComponentGroup% -gg -scom -sreg -sfrag -srd -dr INSTALLDIR -var var.%SourceVar% -out %OutputPath%
sparql-studio/sparql-studio
Code/Src/SPARQL_Studio.Setup/MakeHeat.cmd
bat
mit
461
java -classpath SteamCardFinder.jar se.lolektivet.steamcardfinder.Main %*
linusonline/Misc
SteamCardFinder.bat
bat
mit
74
webpack -p
giladgreen/pokerStats
1.bat
bat
mit
11
@setlocal EnableDelayedExpansion EnableExtensions @for %%i in (%~dp0\_packer_config*.cmd) do @call "%%~i" @if defined PACKER_DEBUG (@echo on) else (@echo off) title Setting network configuration. Please wait... echo ==^> Disabling new network prompt reg add "HKLM\System\CurrentControlSet\Control\Network\NewNetworkWindowOff" echo ==^> Enabling icmpv4 Echo Request netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow echo ==^> Disabling ipv6 protocol reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /f /v DisabledComponents /t REG_DWORD /d 0xffffffff title Setting folder options. Please wait... echo ==^> Setting folder options echo ==^> Show file extensions :: Default is 1 - hide file extensions reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v HideFileExt /t REG_DWORD /d 0 echo ==^> Show hidden files and folders :: Default is 2 - do not show hidden files and folders reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v Hidden /t REG_DWORD /d 1 echo ==^> Display Full path :: Default FullPath 0 and FullPathAddress 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v FullPath /t REG_DWORD /d 1 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v FullPathAddress /t REG_DWORD /d 1 title Setting power configuration. Please wait... echo ==^> Setting power configuration to High Performance powercfg -setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c echo ==^> Zero Hibernation File reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /f /v HibernateFileSizePercent /t REG_DWORD /d 0 echo ==^> Disable Hibernation Mode reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /f /v HibernateEnabled /t REG_DWORD /d 0 title Setting command prompt personalization. Please wait... echo ==^> Enable QuickEdit mode :: Default is 1 - Disable QuickEdit mode reg add "HKCU\Console /v QuickEdit /t REG_DWORD /d 0 /f echo ==^> Show Run command in Start Menu :: Default is 0 - Disable Show Run reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v Start_ShowRun /t REG_DWORD /d 1 title Setting UI personalization. Please wait... echo ==^> Set taskbar icons: small :: Default is 0 - Display Large Icons reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarSmallIcons /t REG_QWORD /d 1 echo ==^> Set Control Panel icons: small :: Default is 0 - Display Large Icons reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /f /v AllItemsIconView /t REG_QWORD /d 1 echo ==^> Show Administrative Tools in Start Menu :: Default is 0 - Don't Show Administrator Tools reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v StartMenuAdminTools /t REG_DWORD /d 1 echo ==^> Disable available user names at login :: Default is 0 - Display Last UserName reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /f /v dontdisplaylastusername /t REG_DWORD /d 1 :exit0 ver>nul goto :exit :exit1 verify other 2>nul :exit
audio4ears/packer-windows
scripts/customize-windows.bat
bat
mit
3,148
@echo off echo This example requires the DUB package dwtlib rdmd rdub gui\hello_dwt.d --force if %0 == "%~0" pause
jasc2v8/dwtlib
examples/example_gui.bat
bat
epl-1.0
118
@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\think_bayes.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\think_bayes.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
mrwizard82d1/think_bayes
docs/make.bat
bat
epl-1.0
5,106
@ECHO OFF @"%~dp0jruby.exe" -S jruby_visualizer %*
burnnat/sassedit
org.jruby.jruby/META-INF/jruby.home/bin/jruby_visualizer.bat
bat
epl-1.0
51
cmd_sound/core/snd-compress.o := /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ld -EL -r -o sound/core/snd-compress.o sound/core/compress_offload.o
domintech/PandaBoard-LinuxKernel
sound/core/.snd-compress.o.cmd
bat
gpl-2.0
227
cmd_libbb/str_tolower.o := gcc -Wp,-MD,libbb/.str_tolower.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(str_tolower)" -D"KBUILD_MODNAME=KBUILD_STR(str_tolower)" -c -o libbb/str_tolower.o libbb/str_tolower.c deps_libbb/str_tolower.o := \ libbb/str_tolower.c \ include/libbb.h \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/feature/shadowpasswds.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/str_tolower.o: $(deps_libbb/str_tolower.o) $(deps_libbb/str_tolower.o):
muthumani2/Muthu-busybox
libbb/.str_tolower.o.cmd
bat
gpl-2.0
9,397
cmd_net/ipv6/netfilter/nf_log_ipv6.ko := mips-openwrt-linux-uclibc-ld -r -m elf32btsmip -T ./scripts/module-common.lds -s --build-id -o net/ipv6/netfilter/nf_log_ipv6.ko net/ipv6/netfilter/nf_log_ipv6.o net/ipv6/netfilter/nf_log_ipv6.mod.o
Parkdaeyoung/OPENWRT-LEAKY-BUCKET
build_dir/target-mips_34kc_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.18.44/net/ipv6/netfilter/.nf_log_ipv6.ko.cmd
bat
gpl-2.0
242
cmd_scripts/basic/fixdep := gcc -Wp,-MD,scripts/basic/.fixdep.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/basic/fixdep scripts/basic/fixdep.c deps_scripts/basic/fixdep := \ scripts/basic/fixdep.c \ $(wildcard include/config/his/driver.h) \ $(wildcard include/config/my/option.h) \ $(wildcard include/config/.h) \ $(wildcard include/config/foo.h) \ $(wildcard include/config/boom.h) \ /usr/include/x86_64-linux-gnu/sys/types.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/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stddef.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.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/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/string3.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/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/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/syslimits.h \ /usr/include/limits.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/ctype.h \ /usr/include/arpa/inet.h \ /usr/include/netinet/in.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.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/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 \ scripts/basic/fixdep: $(deps_scripts/basic/fixdep) $(deps_scripts/basic/fixdep):
dnh34/proj1
scripts/basic/.fixdep.cmd
bat
gpl-2.0
3,839
cmd_libbb/inet_common.o := gcc -Wp,-MD,libbb/.inet_common.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(inet_common)" -D"KBUILD_MODNAME=KBUILD_STR(inet_common)" -c -o libbb/inet_common.o libbb/inet_common.c deps_libbb/inet_common.o := \ libbb/inet_common.c \ $(wildcard include/config/feature/etc/networks.h) \ $(wildcard include/config/feature/ipv6.h) \ include/libbb.h \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/feature/shadowpasswds.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/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 \ include/inet_common.h \ libbb/inet_common.o: $(deps_libbb/inet_common.o) $(deps_libbb/inet_common.o):
muthumani2/Muthu-busybox
libbb/.inet_common.o.cmd
bat
gpl-2.0
9,479
cmd_sound/built-in.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-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/s5p-rp/built-in.o sound/last.o
dizgustipated/BOCA-2.6.35.14
sound/.built-in.o.cmd
bat
gpl-2.0
533
cmd_drivers/hid/hid-dummy.mod.o := arm-eabi-gcc -Wp,-MD,drivers/hid/.hid-dummy.mod.o.d -nostdinc -isystem /usr/bin/../lib/gcc/arm-eabi/4.5.0/include -Iinclude -I/home/jacob/source/wildfire-kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -fno-dwarf2-cfi-asm -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(hid_dummy.mod)" -D"KBUILD_MODNAME=KBUILD_STR(hid_dummy)" -DMODULE -c -o drivers/hid/hid-dummy.mod.o drivers/hid/hid-dummy.mod.c deps_drivers/hid/hid-dummy.mod.o := \ drivers/hid/hid-dummy.mod.c \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm7225.h) \ $(wildcard include/config/arch/msm7200a.h) \ $(wildcard include/config/arch/msm7201a.h) \ $(wildcard include/config/arch/msm7x00a.h) \ $(wildcard include/config/mach/desirec.h) \ $(wildcard include/config/arch/msm7227.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ include/asm/mach-types.h \ $(wildcard include/config/arch/ebsa110.h) \ $(wildcard include/config/arch/rpc.h) \ $(wildcard include/config/arch/nexuspci.h) \ $(wildcard include/config/arch/ebsa285.h) \ $(wildcard include/config/arch/netwinder.h) \ $(wildcard include/config/arch/cats.h) \ $(wildcard include/config/arch/tbox.h) \ $(wildcard include/config/arch/co285.h) \ $(wildcard include/config/arch/clps7110.h) \ $(wildcard include/config/arch/arc.h) \ $(wildcard include/config/arch/a5k.h) \ $(wildcard include/config/arch/etoile.h) \ $(wildcard include/config/arch/lacie/nas.h) \ $(wildcard include/config/arch/clps7500.h) \ $(wildcard include/config/arch/shark.h) \ $(wildcard include/config/sa1100/brutus.h) \ $(wildcard include/config/arch/personal/server.h) \ $(wildcard include/config/sa1100/itsy.h) \ $(wildcard include/config/arch/l7200.h) \ $(wildcard include/config/sa1100/pleb.h) \ $(wildcard include/config/arch/integrator.h) \ $(wildcard include/config/sa1100/h3600.h) \ $(wildcard include/config/arch/ixp1200.h) \ $(wildcard include/config/arch/p720t.h) \ $(wildcard include/config/sa1100/assabet.h) \ $(wildcard include/config/sa1100/victor.h) \ $(wildcard include/config/sa1100/lart.h) \ $(wildcard include/config/sa1100/ranger.h) \ $(wildcard include/config/sa1100/graphicsclient.h) \ $(wildcard include/config/sa1100/xp860.h) \ $(wildcard include/config/sa1100/cerf.h) \ $(wildcard include/config/sa1100/nanoengine.h) \ $(wildcard include/config/sa1100/fpic.h) \ $(wildcard include/config/sa1100/extenex1.h) \ $(wildcard include/config/sa1100/sherman.h) \ $(wildcard include/config/sa1100/accelent.h) \ $(wildcard include/config/arch/l7200/accelent.h) \ $(wildcard include/config/sa1100/netport.h) \ $(wildcard include/config/sa1100/pangolin.h) \ $(wildcard include/config/sa1100/yopy.h) \ $(wildcard include/config/sa1100/coolidge.h) \ $(wildcard include/config/sa1100/huw/webpanel.h) \ $(wildcard include/config/arch/spotme.h) \ $(wildcard include/config/arch/freebird.h) \ $(wildcard include/config/arch/ti925.h) \ $(wildcard include/config/arch/riscstation.h) \ $(wildcard include/config/sa1100/cavy.h) \ $(wildcard include/config/sa1100/jornada720.h) \ $(wildcard include/config/sa1100/omnimeter.h) \ $(wildcard include/config/arch/edb7211.h) \ $(wildcard include/config/sa1100/citygo.h) \ $(wildcard include/config/sa1100/pfs168.h) \ $(wildcard include/config/sa1100/spot.h) \ $(wildcard include/config/sa1100/flexanet.h) \ $(wildcard include/config/arch/webpal.h) \ $(wildcard include/config/sa1100/linpda.h) \ $(wildcard include/config/arch/anakin.h) \ $(wildcard include/config/sa1100/mvi.h) \ $(wildcard include/config/sa1100/jupiter.h) \ $(wildcard include/config/arch/psionw.h) \ $(wildcard include/config/sa1100/aln.h) \ $(wildcard include/config/arch/camelot.h) \ $(wildcard include/config/sa1100/gds2200.h) \ $(wildcard include/config/sa1100/psion/series7.h) \ $(wildcard include/config/sa1100/xfile.h) \ $(wildcard include/config/arch/accelent/ep9312.h) \ $(wildcard include/config/arch/ic200.h) \ $(wildcard include/config/sa1100/creditlart.h) \ $(wildcard include/config/sa1100/htm.h) \ $(wildcard include/config/arch/iq80310.h) \ $(wildcard include/config/sa1100/freebot.h) \ $(wildcard include/config/arch/entel.h) \ $(wildcard include/config/arch/enp3510.h) \ $(wildcard include/config/sa1100/trizeps.h) \ $(wildcard include/config/sa1100/nesa.h) \ $(wildcard include/config/arch/venus.h) \ $(wildcard include/config/arch/tardis.h) \ $(wildcard include/config/arch/mercury.h) \ $(wildcard include/config/sa1100/empeg.h) \ $(wildcard include/config/arch/i80200fcc.h) \ $(wildcard include/config/sa1100/itt/cpb.h) \ $(wildcard include/config/sa1100/svc.h) \ $(wildcard include/config/sa1100/alpha2.h) \ $(wildcard include/config/sa1100/alpha1.h) \ $(wildcard include/config/arch/netarm.h) \ $(wildcard include/config/sa1100/simpad.h) \ $(wildcard include/config/arch/pda1.h) \ $(wildcard include/config/arch/lubbock.h) \ $(wildcard include/config/arch/aniko.h) \ $(wildcard include/config/arch/clep7212.h) \ $(wildcard include/config/arch/cs89712.h) \ $(wildcard include/config/sa1100/weararm.h) \ $(wildcard include/config/sa1100/possio/px.h) \ $(wildcard include/config/sa1100/sidearm.h) \ $(wildcard include/config/sa1100/stork.h) \ $(wildcard include/config/sa1100/shannon.h) \ $(wildcard include/config/arch/ace.h) \ $(wildcard include/config/sa1100/ballyarm.h) \ $(wildcard include/config/sa1100/simputer.h) \ $(wildcard include/config/sa1100/nexterm.h) \ $(wildcard include/config/sa1100/sa1100/elf.h) \ $(wildcard include/config/sa1100/gator.h) \ $(wildcard include/config/arch/granite.h) \ $(wildcard include/config/sa1100/consus.h) \ $(wildcard include/config/arch/aaed2000.h) \ $(wildcard include/config/arch/cdb89712.h) \ $(wildcard include/config/sa1100/graphicsmaster.h) \ $(wildcard include/config/sa1100/adsbitsy.h) \ $(wildcard include/config/arch/pxa/idp.h) \ $(wildcard include/config/arch/plce.h) \ $(wildcard include/config/sa1100/pt/system3.h) \ $(wildcard include/config/arch/medalb.h) \ $(wildcard include/config/arch/eagle.h) \ $(wildcard include/config/arch/dsc21.h) \ $(wildcard include/config/arch/dsc24.h) \ $(wildcard include/config/arch/ti5472.h) \ $(wildcard include/config/arch/autcpu12.h) \ $(wildcard include/config/arch/uengine.h) \ $(wildcard include/config/sa1100/bluestem.h) \ $(wildcard include/config/arch/xingu8.h) \ $(wildcard include/config/arch/bushstb.h) \ $(wildcard include/config/sa1100/epsilon1.h) \ $(wildcard include/config/sa1100/balloon.h) \ $(wildcard include/config/arch/puppy.h) \ $(wildcard include/config/sa1100/elroy.h) \ $(wildcard include/config/arch/gms720.h) \ $(wildcard include/config/arch/s24x.h) \ $(wildcard include/config/arch/jtel/clep7312.h) \ $(wildcard include/config/arch/cx821xx.h) \ $(wildcard include/config/arch/edb7312.h) \ $(wildcard include/config/sa1100/bsa1110.h) \ $(wildcard include/config/arch/powerpin.h) \ $(wildcard include/config/arch/openarm.h) \ $(wildcard include/config/sa1100/whitechapel.h) \ $(wildcard include/config/sa1100/h3100.h) \ $(wildcard include/config/sa1100/h3800.h) \ $(wildcard include/config/arch/blue/v1.h) \ $(wildcard include/config/arch/pxa/cerf.h) \ $(wildcard include/config/arch/arm7tevb.h) \ $(wildcard include/config/sa1100/d7400.h) \ $(wildcard include/config/arch/piranha.h) \ $(wildcard include/config/sa1100/sbcamelot.h) \ $(wildcard include/config/sa1100/kings.h) \ $(wildcard include/config/arch/smdk2400.h) \ $(wildcard include/config/sa1100/collie.h) \ $(wildcard include/config/arch/idr.h) \ $(wildcard include/config/sa1100/badge4.h) \ $(wildcard include/config/arch/webnet.h) \ $(wildcard include/config/sa1100/d7300.h) \ $(wildcard include/config/sa1100/cep.h) \ $(wildcard include/config/arch/fortunet.h) \ $(wildcard include/config/arch/vc547x.h) \ $(wildcard include/config/sa1100/filewalker.h) \ $(wildcard include/config/sa1100/netgateway.h) \ $(wildcard include/config/sa1100/symbol2800.h) \ $(wildcard include/config/sa1100/suns.h) \ $(wildcard include/config/sa1100/frodo.h) \ $(wildcard include/config/sa1100/mach/tyte/ms301.h) \ $(wildcard include/config/arch/mx1ads.h) \ $(wildcard include/config/arch/h7201.h) \ $(wildcard include/config/arch/h7202.h) \ $(wildcard include/config/arch/amico.h) \ $(wildcard include/config/sa1100/iam.h) \ $(wildcard include/config/sa1100/tt530.h) \ $(wildcard include/config/arch/sam2400.h) \ $(wildcard include/config/sa1100/jornada56x.h) \ $(wildcard include/config/sa1100/active.h) \ $(wildcard include/config/arch/iq80321.h) \ $(wildcard include/config/sa1100/wid.h) \ $(wildcard include/config/arch/sabinal.h) \ $(wildcard include/config/arch/ixp425/matacumbe.h) \ $(wildcard include/config/sa1100/miniprint.h) \ $(wildcard include/config/arch/adm510x.h) \ $(wildcard include/config/sa1100/svs200.h) \ $(wildcard include/config/arch/atg/tcu.h) \ $(wildcard include/config/sa1100/jornada820.h) \ $(wildcard include/config/arch/s3c44b0.h) \ $(wildcard include/config/arch/margis2.h) \ $(wildcard include/config/arch/ks8695.h) \ $(wildcard include/config/arch/brh.h) \ $(wildcard include/config/arch/s3c2410.h) \ $(wildcard include/config/arch/possio/px30.h) \ $(wildcard include/config/arch/s3c2800.h) \ $(wildcard include/config/sa1100/fleetwood.h) \ $(wildcard include/config/arch/omaha.h) \ $(wildcard include/config/arch/ta7.h) \ $(wildcard include/config/sa1100/nova.h) \ $(wildcard include/config/arch/hmk.h) \ $(wildcard include/config/arch/karo.h) \ $(wildcard include/config/sa1100/fester.h) \ $(wildcard include/config/arch/gpi.h) \ $(wildcard include/config/arch/smdk2410.h) \ $(wildcard include/config/arch/i519.h) \ $(wildcard include/config/sa1100/nexio.h) \ $(wildcard include/config/sa1100/bitbox.h) \ $(wildcard include/config/sa1100/g200.h) \ $(wildcard include/config/sa1100/gill.h) \ $(wildcard include/config/arch/pxa/mercury.h) \ $(wildcard include/config/arch/ceiva.h) \ $(wildcard include/config/sa1100/fret.h) \ $(wildcard include/config/sa1100/emailphone.h) \ $(wildcard include/config/arch/h3900.h) \ $(wildcard include/config/arch/pxa1.h) \ $(wildcard include/config/sa1100/koan369.h) \ $(wildcard include/config/arch/cogent.h) \ $(wildcard include/config/arch/esl/simputer.h) \ $(wildcard include/config/arch/esl/simputer/clr.h) \ $(wildcard include/config/arch/esl/simputer/bw.h) \ $(wildcard include/config/arch/hhp/cradle.h) \ $(wildcard include/config/arch/he500.h) \ $(wildcard include/config/sa1100/inhandelf2.h) \ $(wildcard include/config/sa1100/inhandftip.h) \ $(wildcard include/config/sa1100/dnp1110.h) \ $(wildcard include/config/sa1100/pnp1110.h) \ $(wildcard include/config/arch/csb226.h) \ $(wildcard include/config/sa1100/arnold.h) \ $(wildcard include/config/mach/voiceblue.h) \ $(wildcard include/config/arch/jz8028.h) \ $(wildcard include/config/arch/h5400.h) \ $(wildcard include/config/sa1100/forte.h) \ $(wildcard include/config/sa1100/acam.h) \ $(wildcard include/config/sa1100/abox.h) \ $(wildcard include/config/arch/atmel.h) \ $(wildcard include/config/arch/sitsang.h) \ $(wildcard include/config/sa1100/cpu1110lcdnet.h) \ $(wildcard include/config/arch/mpl/vcma9.h) \ $(wildcard include/config/arch/opus/a1.h) \ $(wildcard include/config/arch/daytona.h) \ $(wildcard include/config/sa1100/killbear.h) \ $(wildcard include/config/arch/yoho.h) \ $(wildcard include/config/arch/jasper.h) \ $(wildcard include/config/arch/dsc25.h) \ $(wildcard include/config/mach/omap/innovator.h) \ $(wildcard include/config/arch/ramses.h) \ $(wildcard include/config/arch/s28x.h) \ $(wildcard include/config/arch/mport3.h) \ $(wildcard include/config/arch/pxa/eagle250.h) \ $(wildcard include/config/arch/pdb.h) \ $(wildcard include/config/sa1100/blue/2g.h) \ $(wildcard include/config/sa1100/bluearch.h) \ $(wildcard include/config/arch/ixdp2400.h) \ $(wildcard include/config/arch/ixdp2800.h) \ $(wildcard include/config/sa1100/explorer.h) \ $(wildcard include/config/arch/ixdp425.h) \ $(wildcard include/config/arch/chimp.h) \ $(wildcard include/config/arch/stork/nest.h) \ $(wildcard include/config/arch/stork/egg.h) \ $(wildcard include/config/sa1100/wismo.h) \ $(wildcard include/config/arch/ezlinx.h) \ $(wildcard include/config/arch/at91rm9200.h) \ $(wildcard include/config/arch/adtech/orion.h) \ $(wildcard include/config/arch/neptune.h) \ $(wildcard include/config/sa1100/hackkit.h) \ $(wildcard include/config/arch/pxa/wins30.h) \ $(wildcard include/config/sa1100/lavinna.h) \ $(wildcard include/config/arch/pxa/uengine.h) \ $(wildcard include/config/arch/innokom.h) \ $(wildcard include/config/arch/bms.h) \ $(wildcard include/config/arch/ixcdp1100.h) \ $(wildcard include/config/arch/prpmc1100.h) \ $(wildcard include/config/arch/at91rm9200dk.h) \ $(wildcard include/config/arch/armstick.h) \ $(wildcard include/config/arch/armonie.h) \ $(wildcard include/config/arch/mport1.h) \ $(wildcard include/config/arch/s3c5410.h) \ $(wildcard include/config/arch/zcp320a.h) \ $(wildcard include/config/arch/i/box.h) \ $(wildcard include/config/arch/stlc1502.h) \ $(wildcard include/config/arch/siren.h) \ $(wildcard include/config/arch/greenlake.h) \ $(wildcard include/config/arch/argus.h) \ $(wildcard include/config/sa1100/combadge.h) \ $(wildcard include/config/arch/rokepxa.h) \ $(wildcard include/config/arch/cintegrator.h) \ $(wildcard include/config/arch/guidea07.h) \ $(wildcard include/config/arch/tat257.h) \ $(wildcard include/config/arch/igp2425.h) \ $(wildcard include/config/arch/bluegramma.h) \ $(wildcard include/config/arch/ipod.h) \ $(wildcard include/config/arch/adsbitsyx.h) \ $(wildcard include/config/arch/trizeps2.h) \ $(wildcard include/config/arch/viper.h) \ $(wildcard include/config/sa1100/adsbitsyplus.h) \ $(wildcard include/config/sa1100/adsagc.h) \ $(wildcard include/config/arch/stp7312.h) \ $(wildcard include/config/mach/nx/phnx.h) \ $(wildcard include/config/arch/wep/ep250.h) \ $(wildcard include/config/arch/inhandelf3.h) \ $(wildcard include/config/arch/adi/coyote.h) \ $(wildcard include/config/arch/iyonix.h) \ $(wildcard include/config/arch/damicam/sa1110.h) \ $(wildcard include/config/arch/meg03.h) \ $(wildcard include/config/arch/pxa/whitechapel.h) \ $(wildcard include/config/arch/nwsc.h) \ $(wildcard include/config/arch/nwlarm.h) \ $(wildcard include/config/arch/ixp425/mguard.h) \ $(wildcard include/config/arch/pxa/netdcu4.h) \ $(wildcard include/config/arch/ixdp2401.h) \ $(wildcard include/config/arch/ixdp2801.h) \ $(wildcard include/config/arch/zodiac.h) \ $(wildcard include/config/arch/armmodul.h) \ $(wildcard include/config/sa1100/ketop.h) \ $(wildcard include/config/arch/av7200.h) \ $(wildcard include/config/arch/arch/ti925.h) \ $(wildcard include/config/arch/acq200.h) \ $(wildcard include/config/sa1100/pt/dafit.h) \ $(wildcard include/config/arch/ihba.h) \ $(wildcard include/config/arch/quinque.h) \ $(wildcard include/config/arch/nimbraone.h) \ $(wildcard include/config/arch/nimbra29x.h) \ $(wildcard include/config/arch/nimbra210.h) \ $(wildcard include/config/arch/hhp/d95xx.h) \ $(wildcard include/config/arch/labarm.h) \ $(wildcard include/config/arch/m825xx.h) \ $(wildcard include/config/sa1100/m7100.h) \ $(wildcard include/config/arch/nipc2.h) \ $(wildcard include/config/arch/fu7202.h) \ $(wildcard include/config/arch/adsagx.h) \ $(wildcard include/config/arch/pxa/pooh.h) \ $(wildcard include/config/arch/bandon.h) \ $(wildcard include/config/arch/pcm7210.h) \ $(wildcard include/config/arch/nms9200.h) \ $(wildcard include/config/arch/logodl.h) \ $(wildcard include/config/sa1100/m7140.h) \ $(wildcard include/config/arch/korebot.h) \ $(wildcard include/config/arch/iq31244.h) \ $(wildcard include/config/sa1100/koan393.h) \ $(wildcard include/config/arch/inhandftip3.h) \ $(wildcard include/config/arch/gonzo.h) \ $(wildcard include/config/arch/bast.h) \ $(wildcard include/config/arch/scanpass.h) \ $(wildcard include/config/arch/ep7312/pooh.h) \ $(wildcard include/config/arch/ta7s.h) \ $(wildcard include/config/arch/ta7v.h) \ $(wildcard include/config/sa1100/icarus.h) \ $(wildcard include/config/arch/h1900.h) \ $(wildcard include/config/sa1100/gemini.h) \ $(wildcard include/config/arch/axim.h) \ $(wildcard include/config/arch/audiotron.h) \ $(wildcard include/config/arch/h2200.h) \ $(wildcard include/config/arch/loox600.h) \ $(wildcard include/config/arch/niop.h) \ $(wildcard include/config/arch/dm310.h) \ $(wildcard include/config/arch/seedpxa/c2.h) \ $(wildcard include/config/arch/ixp4xx/mguard/pci.h) \ $(wildcard include/config/arch/h1940.h) \ $(wildcard include/config/arch/scorpio.h) \ $(wildcard include/config/arch/viva.h) \ $(wildcard include/config/arch/pxa/xcard.h) \ $(wildcard include/config/arch/csb335.h) \ $(wildcard include/config/arch/ixrd425.h) \ $(wildcard include/config/arch/iq80315.h) \ $(wildcard include/config/arch/nmp7312.h) \ $(wildcard include/config/arch/cx861xx.h) \ $(wildcard include/config/arch/enp2611.h) \ $(wildcard include/config/sa1100/xda.h) \ $(wildcard include/config/arch/csir/ims.h) \ $(wildcard include/config/arch/ixp421/dnaeeth.h) \ $(wildcard include/config/arch/pocketserv9200.h) \ $(wildcard include/config/arch/toto.h) \ $(wildcard include/config/arch/s3c2440.h) \ $(wildcard include/config/arch/ks8695p.h) \ $(wildcard include/config/arch/se4000.h) \ $(wildcard include/config/arch/quadriceps.h) \ $(wildcard include/config/arch/bronco.h) \ $(wildcard include/config/arch/esl/wireless/tab.h) \ $(wildcard include/config/arch/esl/sofcomp.h) \ $(wildcard include/config/arch/s5c7375.h) \ $(wildcard include/config/arch/spearhead.h) \ $(wildcard include/config/arch/pantera.h) \ $(wildcard include/config/arch/prayoglite.h) \ $(wildcard include/config/arch/gumstix.h) \ $(wildcard include/config/arch/rcube.h) \ $(wildcard include/config/arch/rea/olv.h) \ $(wildcard include/config/arch/pxa/iphone.h) \ $(wildcard include/config/arch/s3c3410.h) \ $(wildcard include/config/arch/espd/4510b.h) \ $(wildcard include/config/arch/mp1x.h) \ $(wildcard include/config/arch/at91rm9200tb.h) \ $(wildcard include/config/arch/adsvgx.h) \ $(wildcard include/config/mach/omap/h2.h) \ $(wildcard include/config/arch/pelee.h) \ $(wildcard include/config/mach/e740.h) \ $(wildcard include/config/arch/iq80331.h) \ $(wildcard include/config/arch/versatile/pb.h) \ $(wildcard include/config/mach/kev7a400.h) \ $(wildcard include/config/mach/lpd7a400.h) \ $(wildcard include/config/mach/lpd7a404.h) \ $(wildcard include/config/arch/fujitsu/camelot.h) \ $(wildcard include/config/arch/janus2m.h) \ $(wildcard include/config/mach/embtf.h) \ $(wildcard include/config/mach/hpm.h) \ $(wildcard include/config/mach/smdk2410tk.h) \ $(wildcard include/config/mach/smdk2410aj.h) \ $(wildcard include/config/mach/streetracer.h) \ $(wildcard include/config/mach/eframe.h) \ $(wildcard include/config/mach/csb337.h) \ $(wildcard include/config/mach/pxa/lark.h) \ $(wildcard include/config/mach/pnp2110.h) \ $(wildcard include/config/mach/tcc72x.h) \ $(wildcard include/config/mach/altair.h) \ $(wildcard include/config/mach/kc3.h) \ $(wildcard include/config/mach/sinteftd.h) \ $(wildcard include/config/mach/mainstone.h) \ $(wildcard include/config/mach/aday4x.h) \ $(wildcard include/config/mach/lite300.h) \ $(wildcard include/config/mach/s5c7376.h) \ $(wildcard include/config/mach/mt02.h) \ $(wildcard include/config/mach/mport3s.h) \ $(wildcard include/config/mach/ra/alpha.h) \ $(wildcard include/config/mach/xcep.h) \ $(wildcard include/config/mach/arcom/vulcan.h) \ $(wildcard include/config/mach/stargate.h) \ $(wildcard include/config/mach/armadilloj.h) \ $(wildcard include/config/mach/elroy/jack.h) \ $(wildcard include/config/mach/backend.h) \ $(wildcard include/config/mach/s5linbox.h) \ $(wildcard include/config/mach/nomadik.h) \ $(wildcard include/config/mach/ia/cpu/9200.h) \ $(wildcard include/config/mach/at91/bja1.h) \ $(wildcard include/config/mach/corgi.h) \ $(wildcard include/config/mach/poodle.h) \ $(wildcard include/config/mach/ten.h) \ $(wildcard include/config/mach/roverp5p.h) \ $(wildcard include/config/mach/sc2700.h) \ $(wildcard include/config/mach/ex/eagle.h) \ $(wildcard include/config/mach/nx/pxa12.h) \ $(wildcard include/config/mach/nx/pxa5.h) \ $(wildcard include/config/mach/blackboard2.h) \ $(wildcard include/config/mach/i819.h) \ $(wildcard include/config/mach/ixmb995e.h) \ $(wildcard include/config/mach/skyrider.h) \ $(wildcard include/config/mach/skyhawk.h) \ $(wildcard include/config/mach/enterprise.h) \ $(wildcard include/config/mach/dep2410.h) \ $(wildcard include/config/mach/armcore.h) \ $(wildcard include/config/mach/hobbit.h) \ $(wildcard include/config/mach/h7210.h) \ $(wildcard include/config/mach/pxa/netdcu5.h) \ $(wildcard include/config/mach/acc.h) \ $(wildcard include/config/mach/esl/sarva.h) \ $(wildcard include/config/mach/xm250.h) \ $(wildcard include/config/mach/t6tc1xb.h) \ $(wildcard include/config/mach/ess710.h) \ $(wildcard include/config/mach/mx31ads.h) \ $(wildcard include/config/mach/himalaya.h) \ $(wildcard include/config/mach/bolfenk.h) \ $(wildcard include/config/mach/at91rm9200kr.h) \ $(wildcard include/config/mach/edb9312.h) \ $(wildcard include/config/mach/omap/generic.h) \ $(wildcard include/config/mach/aximx3.h) \ $(wildcard include/config/mach/eb67xdip.h) \ $(wildcard include/config/mach/webtxs.h) \ $(wildcard include/config/mach/hawk.h) \ $(wildcard include/config/mach/ccat91sbc001.h) \ $(wildcard include/config/mach/expresso.h) \ $(wildcard include/config/mach/h4000.h) \ $(wildcard include/config/mach/dino.h) \ $(wildcard include/config/mach/ml675k.h) \ $(wildcard include/config/mach/edb9301.h) \ $(wildcard include/config/mach/edb9315.h) \ $(wildcard include/config/mach/reciva/tt.h) \ $(wildcard include/config/mach/cstcb01.h) \ $(wildcard include/config/mach/cstcb1.h) \ $(wildcard include/config/mach/shadwell.h) \ $(wildcard include/config/mach/goepel263.h) \ $(wildcard include/config/mach/acq100.h) \ $(wildcard include/config/mach/mx1fs2.h) \ $(wildcard include/config/mach/hiptop/g1.h) \ $(wildcard include/config/mach/sparky.h) \ $(wildcard include/config/mach/ns9750.h) \ $(wildcard include/config/mach/phoenix.h) \ $(wildcard include/config/mach/vr1000.h) \ $(wildcard include/config/mach/deisterpxa.h) \ $(wildcard include/config/mach/bcm1160.h) \ $(wildcard include/config/mach/pcm022.h) \ $(wildcard include/config/mach/adsgcx.h) \ $(wildcard include/config/mach/dreadnaught.h) \ $(wildcard include/config/mach/dm320.h) \ $(wildcard include/config/mach/markov.h) \ $(wildcard include/config/mach/cos7a400.h) \ $(wildcard include/config/mach/milano.h) \ $(wildcard include/config/mach/ue9328.h) \ $(wildcard include/config/mach/uex255.h) \ $(wildcard include/config/mach/ue2410.h) \ $(wildcard include/config/mach/a620.h) \ $(wildcard include/config/mach/ocelot.h) \ $(wildcard include/config/mach/cheetah.h) \ $(wildcard include/config/mach/omap/perseus2.h) \ $(wildcard include/config/mach/zvue.h) \ $(wildcard include/config/mach/roverp1.h) \ $(wildcard include/config/mach/asidial2.h) \ $(wildcard include/config/mach/s3c24a0.h) \ $(wildcard include/config/mach/e800.h) \ $(wildcard include/config/mach/e750.h) \ $(wildcard include/config/mach/s3c5500.h) \ $(wildcard include/config/mach/smdk5500.h) \ $(wildcard include/config/mach/signalsync.h) \ $(wildcard include/config/mach/nbc.h) \ $(wildcard include/config/mach/kodiak.h) \ $(wildcard include/config/mach/netbookpro.h) \ $(wildcard include/config/mach/hw90200.h) \ $(wildcard include/config/mach/condor.h) \ $(wildcard include/config/mach/cup.h) \ $(wildcard include/config/mach/kite.h) \ $(wildcard include/config/mach/scb9328.h) \ $(wildcard include/config/mach/omap/h3.h) \ $(wildcard include/config/mach/omap/h4.h) \ $(wildcard include/config/mach/n10.h) \ $(wildcard include/config/mach/montajade.h) \ $(wildcard include/config/mach/sg560.h) \ $(wildcard include/config/mach/dp1000.h) \ $(wildcard include/config/mach/omap/osk.h) \ $(wildcard include/config/mach/rg100v3.h) \ $(wildcard include/config/mach/mx2ads.h) \ $(wildcard include/config/mach/pxa/kilo.h) \ $(wildcard include/config/mach/ixp4xx/eagle.h) \ $(wildcard include/config/mach/tosa.h) \ $(wildcard include/config/mach/mb2520f.h) \ $(wildcard include/config/mach/emc1000.h) \ $(wildcard include/config/mach/tidsc25.h) \ $(wildcard include/config/mach/akcpmxl.h) \ $(wildcard include/config/mach/av3xx.h) \ $(wildcard include/config/mach/avila.h) \ $(wildcard include/config/mach/pxa/mpm10.h) \ $(wildcard include/config/mach/pxa/kyanite.h) \ $(wildcard include/config/mach/sgold.h) \ $(wildcard include/config/mach/oscar.h) \ $(wildcard include/config/mach/epxa4usb2.h) \ $(wildcard include/config/mach/xsengine.h) \ $(wildcard include/config/mach/ip600.h) \ $(wildcard include/config/mach/mcan2.h) \ $(wildcard include/config/mach/ddi/blueridge.h) \ $(wildcard include/config/mach/skyminder.h) \ $(wildcard include/config/mach/lpd79520.h) \ $(wildcard include/config/mach/edb9302.h) \ $(wildcard include/config/mach/hw90340.h) \ $(wildcard include/config/mach/cip/box.h) \ $(wildcard include/config/mach/ivpn.h) \ $(wildcard include/config/mach/rsoc2.h) \ $(wildcard include/config/mach/husky.h) \ $(wildcard include/config/mach/boxer.h) \ $(wildcard include/config/mach/shepherd.h) \ $(wildcard include/config/mach/aml42800aa.h) \ $(wildcard include/config/mach/lpc2294.h) \ $(wildcard include/config/mach/switchgrass.h) \ $(wildcard include/config/mach/ens/cmu.h) \ $(wildcard include/config/mach/mm6/sdb.h) \ $(wildcard include/config/mach/saturn.h) \ $(wildcard include/config/mach/i30030evb.h) \ $(wildcard include/config/mach/mxc27530evb.h) \ $(wildcard include/config/mach/smdk2800.h) \ $(wildcard include/config/mach/mtwilson.h) \ $(wildcard include/config/mach/ziti.h) \ $(wildcard include/config/mach/grandfather.h) \ $(wildcard include/config/mach/tengine.h) \ $(wildcard include/config/mach/s3c2460.h) \ $(wildcard include/config/mach/pdm.h) \ $(wildcard include/config/mach/h4700.h) \ $(wildcard include/config/mach/h6300.h) \ $(wildcard include/config/mach/rz1700.h) \ $(wildcard include/config/mach/a716.h) \ $(wildcard include/config/mach/estk2440a.h) \ $(wildcard include/config/mach/atwixp425.h) \ $(wildcard include/config/mach/csb336.h) \ $(wildcard include/config/mach/rirm2.h) \ $(wildcard include/config/mach/cx23518.h) \ $(wildcard include/config/mach/cx2351x.h) \ $(wildcard include/config/mach/computime.h) \ $(wildcard include/config/mach/izarus.h) \ $(wildcard include/config/mach/rts.h) \ $(wildcard include/config/mach/se5100.h) \ $(wildcard include/config/mach/s3c2510.h) \ $(wildcard include/config/mach/csb437tl.h) \ $(wildcard include/config/mach/slauson.h) \ $(wildcard include/config/mach/pearlriver.h) \ $(wildcard include/config/mach/tdc/p210.h) \ $(wildcard include/config/mach/sg580.h) \ $(wildcard include/config/mach/wrsbcarm7.h) \ $(wildcard include/config/mach/ipd.h) \ $(wildcard include/config/mach/pxa/dnp2110.h) \ $(wildcard include/config/mach/xaeniax.h) \ $(wildcard include/config/mach/somn4250.h) \ $(wildcard include/config/mach/pleb2.h) \ $(wildcard include/config/mach/cornwallis.h) \ $(wildcard include/config/mach/gurney/drv.h) \ $(wildcard include/config/mach/chaffee.h) \ $(wildcard include/config/mach/rms101.h) \ $(wildcard include/config/mach/rx3715.h) \ $(wildcard include/config/mach/swift.h) \ $(wildcard include/config/mach/roverp7.h) \ $(wildcard include/config/mach/pr818s.h) \ $(wildcard include/config/mach/trxpro.h) \ $(wildcard include/config/mach/nslu2.h) \ $(wildcard include/config/mach/e400.h) \ $(wildcard include/config/mach/trab.h) \ $(wildcard include/config/mach/cmc/pu2.h) \ $(wildcard include/config/mach/fulcrum.h) \ $(wildcard include/config/mach/netgate42x.h) \ $(wildcard include/config/mach/str710.h) \ $(wildcard include/config/mach/ixdpg425.h) \ $(wildcard include/config/mach/tomtomgo.h) \ $(wildcard include/config/mach/versatile/ab.h) \ $(wildcard include/config/mach/edb9307.h) \ $(wildcard include/config/mach/sg565.h) \ $(wildcard include/config/mach/lpd79524.h) \ $(wildcard include/config/mach/lpd79525.h) \ $(wildcard include/config/mach/rms100.h) \ $(wildcard include/config/mach/kb9200.h) \ $(wildcard include/config/mach/sx1.h) \ $(wildcard include/config/mach/hms39c7092.h) \ $(wildcard include/config/mach/armadillo.h) \ $(wildcard include/config/mach/ipcu.h) \ $(wildcard include/config/mach/loox720.h) \ $(wildcard include/config/mach/ixdp465.h) \ $(wildcard include/config/mach/ixdp2351.h) \ $(wildcard include/config/mach/adsvix.h) \ $(wildcard include/config/mach/dm270.h) \ $(wildcard include/config/mach/socltplus.h) \ $(wildcard include/config/mach/ecia.h) \ $(wildcard include/config/mach/cm4008.h) \ $(wildcard include/config/mach/p2001.h) \ $(wildcard include/config/mach/twister.h) \ $(wildcard include/config/mach/mudshark.h) \ $(wildcard include/config/mach/hb2.h) \ $(wildcard include/config/mach/iq80332.h) \ $(wildcard include/config/mach/sendt.h) \ $(wildcard include/config/mach/mx2jazz.h) \ $(wildcard include/config/mach/multiio.h) \ $(wildcard include/config/mach/hrdisplay.h) \ $(wildcard include/config/mach/mxc27530ads.h) \ $(wildcard include/config/mach/trizeps3.h) \ $(wildcard include/config/mach/zefeerdza.h) \ $(wildcard include/config/mach/zefeerdzb.h) \ $(wildcard include/config/mach/zefeerdzg.h) \ $(wildcard include/config/mach/zefeerdzn.h) \ $(wildcard include/config/mach/zefeerdzq.h) \ $(wildcard include/config/mach/gtwx5715.h) \ $(wildcard include/config/mach/astro/jack.h) \ $(wildcard include/config/mach/tip03.h) \ $(wildcard include/config/mach/a9200ec.h) \ $(wildcard include/config/mach/pnx0105.h) \ $(wildcard include/config/mach/adcpoecpu.h) \ $(wildcard include/config/mach/csb637.h) \ $(wildcard include/config/mach/mb9200.h) \ $(wildcard include/config/mach/kulun.h) \ $(wildcard include/config/mach/snapper.h) \ $(wildcard include/config/mach/optima.h) \ $(wildcard include/config/mach/dlhsbc.h) \ $(wildcard include/config/mach/x30.h) \ $(wildcard include/config/mach/n30.h) \ $(wildcard include/config/mach/manga/ks8695.h) \ $(wildcard include/config/mach/ajax.h) \ $(wildcard include/config/mach/nec/mp900.h) \ $(wildcard include/config/mach/vvtk1000.h) \ $(wildcard include/config/mach/kafa.h) \ $(wildcard include/config/mach/vvtk3000.h) \ $(wildcard include/config/mach/pimx1.h) \ $(wildcard include/config/mach/ollie.h) \ $(wildcard include/config/mach/skymax.h) \ $(wildcard include/config/mach/jazz.h) \ $(wildcard include/config/mach/tel/t3.h) \ $(wildcard include/config/mach/aisino/fcr255.h) \ $(wildcard include/config/mach/btweb.h) \ $(wildcard include/config/mach/dbg/lh79520.h) \ $(wildcard include/config/mach/cm41xx.h) \ $(wildcard include/config/mach/ts72xx.h) \ $(wildcard include/config/mach/nggpxa.h) \ $(wildcard include/config/mach/csb535.h) \ $(wildcard include/config/mach/csb536.h) \ $(wildcard include/config/mach/pxa/trakpod.h) \ $(wildcard include/config/mach/praxis.h) \ $(wildcard include/config/mach/lh75411.h) \ $(wildcard include/config/mach/otom.h) \ $(wildcard include/config/mach/nexcoder/2440.h) \ $(wildcard include/config/mach/loox410.h) \ $(wildcard include/config/mach/westlake.h) \ $(wildcard include/config/mach/nsb.h) \ $(wildcard include/config/mach/esl/sarva/stn.h) \ $(wildcard include/config/mach/esl/sarva/tft.h) \ $(wildcard include/config/mach/esl/sarva/iad.h) \ $(wildcard include/config/mach/esl/sarva/acc.h) \ $(wildcard include/config/mach/typhoon.h) \ $(wildcard include/config/mach/cnav.h) \ $(wildcard include/config/mach/a730.h) \ $(wildcard include/config/mach/netstar.h) \ $(wildcard include/config/mach/phasefale/supercon.h) \ $(wildcard include/config/mach/shiva1100.h) \ $(wildcard include/config/mach/etexsc.h) \ $(wildcard include/config/mach/ixdpg465.h) \ $(wildcard include/config/mach/a9m2410.h) \ $(wildcard include/config/mach/a9m2440.h) \ $(wildcard include/config/mach/a9m9750.h) \ $(wildcard include/config/mach/a9m9360.h) \ $(wildcard include/config/mach/unc90.h) \ $(wildcard include/config/mach/eco920.h) \ $(wildcard include/config/mach/satview.h) \ $(wildcard include/config/mach/roadrunner.h) \ $(wildcard include/config/mach/at91rm9200ek.h) \ $(wildcard include/config/mach/gp32.h) \ $(wildcard include/config/mach/gem.h) \ $(wildcard include/config/mach/i858.h) \ $(wildcard include/config/mach/hx2750.h) \ $(wildcard include/config/mach/mxc91131evb.h) \ $(wildcard include/config/mach/p700.h) \ $(wildcard include/config/mach/cpe.h) \ $(wildcard include/config/mach/spitz.h) \ $(wildcard include/config/mach/nimbra340.h) \ $(wildcard include/config/mach/lpc22xx.h) \ $(wildcard include/config/mach/comet3.h) \ $(wildcard include/config/mach/comet4.h) \ $(wildcard include/config/mach/csb625.h) \ $(wildcard include/config/mach/fortunet2.h) \ $(wildcard include/config/mach/s5h2200.h) \ $(wildcard include/config/mach/optorm920.h) \ $(wildcard include/config/mach/adsbitsyxb.h) \ $(wildcard include/config/mach/adssphere.h) \ $(wildcard include/config/mach/adsportal.h) \ $(wildcard include/config/mach/ln2410sbc.h) \ $(wildcard include/config/mach/cb3rufc.h) \ $(wildcard include/config/mach/mp2usb.h) \ $(wildcard include/config/mach/ntnp425c.h) \ $(wildcard include/config/mach/colibri.h) \ $(wildcard include/config/mach/pcm7220.h) \ $(wildcard include/config/mach/gateway7001.h) \ $(wildcard include/config/mach/pcm027.h) \ $(wildcard include/config/mach/cmpxa.h) \ $(wildcard include/config/mach/anubis.h) \ $(wildcard include/config/mach/ite8152.h) \ $(wildcard include/config/mach/lpc3xxx.h) \ $(wildcard include/config/mach/puppeteer.h) \ $(wildcard include/config/mach/e570.h) \ $(wildcard include/config/mach/x50.h) \ $(wildcard include/config/mach/recon.h) \ $(wildcard include/config/mach/xboardgp8.h) \ $(wildcard include/config/mach/fpic2.h) \ $(wildcard include/config/mach/akita.h) \ $(wildcard include/config/mach/a81.h) \ $(wildcard include/config/mach/svm/sc25x.h) \ $(wildcard include/config/mach/vadatech020.h) \ $(wildcard include/config/mach/tli.h) \ $(wildcard include/config/mach/edb9315lc.h) \ $(wildcard include/config/mach/passec.h) \ $(wildcard include/config/mach/ds/tiger.h) \ $(wildcard include/config/mach/e310.h) \ $(wildcard include/config/mach/e330.h) \ $(wildcard include/config/mach/rt3000.h) \ $(wildcard include/config/mach/nokia770.h) \ $(wildcard include/config/mach/pnx0106.h) \ $(wildcard include/config/mach/hx21xx.h) \ $(wildcard include/config/mach/faraday.h) \ $(wildcard include/config/mach/sbc9312.h) \ $(wildcard include/config/mach/batman.h) \ $(wildcard include/config/mach/jpd201.h) \ $(wildcard include/config/mach/mipsa.h) \ $(wildcard include/config/mach/kacom.h) \ $(wildcard include/config/mach/swarcocpu.h) \ $(wildcard include/config/mach/swarcodsl.h) \ $(wildcard include/config/mach/blueangel.h) \ $(wildcard include/config/mach/hairygrama.h) \ $(wildcard include/config/mach/banff.h) \ $(wildcard include/config/mach/carmeva.h) \ $(wildcard include/config/mach/sam255.h) \ $(wildcard include/config/mach/ppm10.h) \ $(wildcard include/config/mach/edb9315a.h) \ $(wildcard include/config/mach/sunset.h) \ $(wildcard include/config/mach/stargate2.h) \ $(wildcard include/config/mach/intelmote2.h) \ $(wildcard include/config/mach/trizeps4.h) \ $(wildcard include/config/mach/mainstone2.h) \ $(wildcard include/config/mach/ez/ixp42x.h) \ $(wildcard include/config/mach/tapwave/zodiac.h) \ $(wildcard include/config/mach/universalmeter.h) \ $(wildcard include/config/mach/hicoarm9.h) \ $(wildcard include/config/mach/pnx4008.h) \ $(wildcard include/config/mach/kws6000.h) \ $(wildcard include/config/mach/portux920t.h) \ $(wildcard include/config/mach/ez/x5.h) \ $(wildcard include/config/mach/omap/rudolph.h) \ $(wildcard include/config/mach/cpuat91.h) \ $(wildcard include/config/mach/rea9200.h) \ $(wildcard include/config/mach/acts/pune/sa1110.h) \ $(wildcard include/config/mach/ixp425.h) \ $(wildcard include/config/mach/i30030ads.h) \ $(wildcard include/config/mach/perch.h) \ $(wildcard include/config/mach/eis05r1.h) \ $(wildcard include/config/mach/pepperpad.h) \ $(wildcard include/config/mach/sb3010.h) \ $(wildcard include/config/mach/rm9200.h) \ $(wildcard include/config/mach/dma03.h) \ $(wildcard include/config/mach/road/s101.h) \ $(wildcard include/config/mach/iq81340sc.h) \ $(wildcard include/config/mach/iq/nextgen/b.h) \ $(wildcard include/config/mach/iq81340mc.h) \ $(wildcard include/config/mach/iq/nextgen/d.h) \ $(wildcard include/config/mach/iq/nextgen/e.h) \ $(wildcard include/config/mach/mallow/at91.h) \ $(wildcard include/config/mach/cybertracker/i.h) \ $(wildcard include/config/mach/gesbc931x.h) \ $(wildcard include/config/mach/centipad.h) \ $(wildcard include/config/mach/armsoc.h) \ $(wildcard include/config/mach/se4200.h) \ $(wildcard include/config/mach/ems197a.h) \ $(wildcard include/config/mach/micro9.h) \ $(wildcard include/config/mach/micro9l.h) \ $(wildcard include/config/mach/uc5471dsp.h) \ $(wildcard include/config/mach/sj5471eng.h) \ $(wildcard include/config/mach/cmpxa26x.h) \ $(wildcard include/config/mach/nc.h) \ $(wildcard include/config/mach/omap/palmte.h) \ $(wildcard include/config/mach/ajax52x.h) \ $(wildcard include/config/mach/siriustar.h) \ $(wildcard include/config/mach/iodata/hdlg.h) \ $(wildcard include/config/mach/at91rm9200utl.h) \ $(wildcard include/config/mach/biosafe.h) \ $(wildcard include/config/mach/mp1000.h) \ $(wildcard include/config/mach/parsy.h) \ $(wildcard include/config/mach/ccxp.h) \ $(wildcard include/config/mach/omap/gsample.h) \ $(wildcard include/config/mach/realview/eb.h) \ $(wildcard include/config/mach/samoa.h) \ $(wildcard include/config/mach/palmt3.h) \ $(wildcard include/config/mach/i878.h) \ $(wildcard include/config/mach/borzoi.h) \ $(wildcard include/config/mach/gecko.h) \ $(wildcard include/config/mach/ds101.h) \ $(wildcard include/config/mach/omap/palmtt2.h) \ $(wildcard include/config/mach/palmld.h) \ $(wildcard include/config/mach/cc9c.h) \ $(wildcard include/config/mach/sbc1670.h) \ $(wildcard include/config/mach/ixdp28x5.h) \ $(wildcard include/config/mach/omap/palmtt.h) \ $(wildcard include/config/mach/ml696k.h) \ $(wildcard include/config/mach/arcom/zeus.h) \ $(wildcard include/config/mach/osiris.h) \ $(wildcard include/config/mach/maestro.h) \ $(wildcard include/config/mach/palmte2.h) \ $(wildcard include/config/mach/ixbbm.h) \ $(wildcard include/config/mach/mx27ads.h) \ $(wildcard include/config/mach/ax8004.h) \ $(wildcard include/config/mach/at91sam9261ek.h) \ $(wildcard include/config/mach/loft.h) \ $(wildcard include/config/mach/magpie.h) \ $(wildcard include/config/mach/mx21ads.h) \ $(wildcard include/config/mach/mb87m3400.h) \ $(wildcard include/config/mach/mguard/delta.h) \ $(wildcard include/config/mach/davinci/dvdp.h) \ $(wildcard include/config/mach/htcuniversal.h) \ $(wildcard include/config/mach/tpad.h) \ $(wildcard include/config/mach/roverp3.h) \ $(wildcard include/config/mach/jornada928.h) \ $(wildcard include/config/mach/mv88fxx81.h) \ $(wildcard include/config/mach/stmp36xx.h) \ $(wildcard include/config/mach/sxni79524.h) \ $(wildcard include/config/mach/ams/delta.h) \ $(wildcard include/config/mach/uranium.h) \ $(wildcard include/config/mach/ucon.h) \ $(wildcard include/config/mach/nas100d.h) \ $(wildcard include/config/mach/l083/1000.h) \ $(wildcard include/config/mach/ezx.h) \ $(wildcard include/config/mach/pnx5220.h) \ $(wildcard include/config/mach/butte.h) \ $(wildcard include/config/mach/srm2.h) \ $(wildcard include/config/mach/dsbr.h) \ $(wildcard include/config/mach/crystalball.h) \ $(wildcard include/config/mach/tinypxa27x.h) \ $(wildcard include/config/mach/herbie.h) \ $(wildcard include/config/mach/magician.h) \ $(wildcard include/config/mach/cm4002.h) \ $(wildcard include/config/mach/b4.h) \ $(wildcard include/config/mach/maui.h) \ $(wildcard include/config/mach/cybertracker/g.h) \ $(wildcard include/config/mach/nxdkn.h) \ $(wildcard include/config/mach/mio8390.h) \ $(wildcard include/config/mach/omi/board.h) \ $(wildcard include/config/mach/mx21civ.h) \ $(wildcard include/config/mach/mahi/cdac.h) \ $(wildcard include/config/mach/palmtx.h) \ $(wildcard include/config/mach/s3c2413.h) \ $(wildcard include/config/mach/samsys/ep0.h) \ $(wildcard include/config/mach/wg302v1.h) \ $(wildcard include/config/mach/wg302v2.h) \ $(wildcard include/config/mach/eb42x.h) \ $(wildcard include/config/mach/iq331es.h) \ $(wildcard include/config/mach/cosydsp.h) \ $(wildcard include/config/mach/uplat7d.h) \ $(wildcard include/config/mach/ptdavinci.h) \ $(wildcard include/config/mach/mbus.h) \ $(wildcard include/config/mach/nadia2vb.h) \ $(wildcard include/config/mach/r1000.h) \ $(wildcard include/config/mach/hw90250.h) \ $(wildcard include/config/mach/omap/2430sdp.h) \ $(wildcard include/config/mach/davinci/evm.h) \ $(wildcard include/config/mach/omap/tornado.h) \ $(wildcard include/config/mach/olocreek.h) \ $(wildcard include/config/mach/palmz72.h) \ $(wildcard include/config/mach/nxdb500.h) \ $(wildcard include/config/mach/apf9328.h) \ $(wildcard include/config/mach/omap/wipoq.h) \ $(wildcard include/config/mach/omap/twip.h) \ $(wildcard include/config/mach/treo650.h) \ $(wildcard include/config/mach/acumen.h) \ $(wildcard include/config/mach/xp100.h) \ $(wildcard include/config/mach/fs2410.h) \ $(wildcard include/config/mach/pxa270/cerf.h) \ $(wildcard include/config/mach/sq2ftlpalm.h) \ $(wildcard include/config/mach/bsemserver.h) \ $(wildcard include/config/mach/netclient.h) \ $(wildcard include/config/mach/palmt5.h) \ $(wildcard include/config/mach/palmtc.h) \ $(wildcard include/config/mach/omap/apollon.h) \ $(wildcard include/config/mach/mxc30030evb.h) \ $(wildcard include/config/mach/rea/2d.h) \ $(wildcard include/config/mach/ti3e524.h) \ $(wildcard include/config/mach/ateb9200.h) \ $(wildcard include/config/mach/auckland.h) \ $(wildcard include/config/mach/ak3320m.h) \ $(wildcard include/config/mach/duramax.h) \ $(wildcard include/config/mach/n35.h) \ $(wildcard include/config/mach/pronghorn.h) \ $(wildcard include/config/mach/fundy.h) \ $(wildcard include/config/mach/logicpd/pxa270.h) \ $(wildcard include/config/mach/cpu777.h) \ $(wildcard include/config/mach/simicon9201.h) \ $(wildcard include/config/mach/leap2/hpm.h) \ $(wildcard include/config/mach/cm922txa10.h) \ $(wildcard include/config/mach/pxa.h) \ $(wildcard include/config/mach/sandgate2.h) \ $(wildcard include/config/mach/sandgate2g.h) \ $(wildcard include/config/mach/sandgate2p.h) \ $(wildcard include/config/mach/fred/jack.h) \ $(wildcard include/config/mach/ttg/color1.h) \ $(wildcard include/config/mach/nxeb500hmi.h) \ $(wildcard include/config/mach/netdcu8.h) \ $(wildcard include/config/mach/ng/fvx538.h) \ $(wildcard include/config/mach/ng/fvs338.h) \ $(wildcard include/config/mach/pnx4103.h) \ $(wildcard include/config/mach/hesdb.h) \ $(wildcard include/config/mach/xsilo.h) \ $(wildcard include/config/mach/espresso.h) \ $(wildcard include/config/mach/emlc.h) \ $(wildcard include/config/mach/sisteron.h) \ $(wildcard include/config/mach/rx1950.h) \ $(wildcard include/config/mach/tsc/venus.h) \ $(wildcard include/config/mach/ds101j.h) \ $(wildcard include/config/mach/mxc30030ads.h) \ $(wildcard include/config/mach/fujitsu/wimaxsoc.h) \ $(wildcard include/config/mach/dualpcmodem.h) \ $(wildcard include/config/mach/gesbc9312.h) \ $(wildcard include/config/mach/htcapache.h) \ $(wildcard include/config/mach/ixdp435.h) \ $(wildcard include/config/mach/catprovt100.h) \ $(wildcard include/config/mach/picotux1xx.h) \ $(wildcard include/config/mach/picotux2xx.h) \ $(wildcard include/config/mach/dsmg600.h) \ $(wildcard include/config/mach/empc2.h) \ $(wildcard include/config/mach/ventura.h) \ $(wildcard include/config/mach/phidget/sbc.h) \ $(wildcard include/config/mach/ij3k.h) \ $(wildcard include/config/mach/pisgah.h) \ $(wildcard include/config/mach/omap/fsample.h) \ $(wildcard include/config/mach/sg720.h) \ $(wildcard include/config/mach/redfox.h) \ $(wildcard include/config/mach/mysh/ep9315/1.h) \ $(wildcard include/config/mach/tpf106.h) \ $(wildcard include/config/mach/at91rm9200kg.h) \ $(wildcard include/config/mach/sledb.h) \ $(wildcard include/config/mach/ontrack.h) \ $(wildcard include/config/mach/pm1200.h) \ $(wildcard include/config/mach/ess24xxx.h) \ $(wildcard include/config/mach/coremp7.h) \ $(wildcard include/config/mach/nexcoder/6446.h) \ $(wildcard include/config/mach/stvc8380.h) \ $(wildcard include/config/mach/teklynx.h) \ $(wildcard include/config/mach/carbonado.h) \ $(wildcard include/config/mach/sysmos/mp730.h) \ $(wildcard include/config/mach/snapper/cl15.h) \ $(wildcard include/config/mach/pgigim.h) \ $(wildcard include/config/mach/ptx9160p2.h) \ $(wildcard include/config/mach/dcore1.h) \ $(wildcard include/config/mach/victorpxa.h) \ $(wildcard include/config/mach/mx2dtb.h) \ $(wildcard include/config/mach/pxa/irex/er0100.h) \ $(wildcard include/config/mach/omap/palmz71.h) \ $(wildcard include/config/mach/bartec/deg.h) \ $(wildcard include/config/mach/hw50251.h) \ $(wildcard include/config/mach/ibox.h) \ $(wildcard include/config/mach/atlaslh7a404.h) \ $(wildcard include/config/mach/pt2026.h) \ $(wildcard include/config/mach/htcalpine.h) \ $(wildcard include/config/mach/bartec/vtu.h) \ $(wildcard include/config/mach/vcoreii.h) \ $(wildcard include/config/mach/pdnb3.h) \ $(wildcard include/config/mach/htcbeetles.h) \ $(wildcard include/config/mach/s3c6400.h) \ $(wildcard include/config/mach/s3c2443.h) \ $(wildcard include/config/mach/omap/ldk.h) \ $(wildcard include/config/mach/smdk2460.h) \ $(wildcard include/config/mach/smdk2440.h) \ $(wildcard include/config/mach/smdk2412.h) \ $(wildcard include/config/mach/webbox.h) \ $(wildcard include/config/mach/cwwndp.h) \ $(wildcard include/config/mach/dragon.h) \ $(wildcard include/config/mach/opendo/cpu/board.h) \ $(wildcard include/config/mach/ccm2200.h) \ $(wildcard include/config/mach/etwarm.h) \ $(wildcard include/config/mach/m93030.h) \ $(wildcard include/config/mach/cc7u.h) \ $(wildcard include/config/mach/mtt/ranger.h) \ $(wildcard include/config/mach/nexus.h) \ $(wildcard include/config/mach/desman.h) \ $(wildcard include/config/mach/bkde303.h) \ $(wildcard include/config/mach/smdk2413.h) \ $(wildcard include/config/mach/aml/m7200.h) \ $(wildcard include/config/mach/aml/m5900.h) \ $(wildcard include/config/mach/sg640.h) \ $(wildcard include/config/mach/edg79524.h) \ $(wildcard include/config/mach/ai2410.h) \ $(wildcard include/config/mach/ixp465.h) \ $(wildcard include/config/mach/balloon3.h) \ $(wildcard include/config/mach/heins.h) \ $(wildcard include/config/mach/mpluseva.h) \ $(wildcard include/config/mach/rt042.h) \ $(wildcard include/config/mach/cwiem.h) \ $(wildcard include/config/mach/cm/x270.h) \ $(wildcard include/config/mach/cm/x255.h) \ $(wildcard include/config/mach/esh/at91.h) \ $(wildcard include/config/mach/sandgate3.h) \ $(wildcard include/config/mach/primo.h) \ $(wildcard include/config/mach/gemstone.h) \ $(wildcard include/config/mach/pronghornmetro.h) \ $(wildcard include/config/mach/sidewinder.h) \ $(wildcard include/config/mach/picomod1.h) \ $(wildcard include/config/mach/sg590.h) \ $(wildcard include/config/mach/akai9307.h) \ $(wildcard include/config/mach/fontaine.h) \ $(wildcard include/config/mach/wombat.h) \ $(wildcard include/config/mach/acq300.h) \ $(wildcard include/config/mach/mod/270.h) \ $(wildcard include/config/mach/vc0820.h) \ $(wildcard include/config/mach/ani/aim.h) \ $(wildcard include/config/mach/jellyfish.h) \ $(wildcard include/config/mach/amanita.h) \ $(wildcard include/config/mach/vlink.h) \ $(wildcard include/config/mach/dexflex.h) \ $(wildcard include/config/mach/eigen/ttq.h) \ $(wildcard include/config/mach/arcom/titan.h) \ $(wildcard include/config/mach/tabla.h) \ $(wildcard include/config/mach/mdirac3.h) \ $(wildcard include/config/mach/mrhfbp2.h) \ $(wildcard include/config/mach/at91rm9200rb.h) \ $(wildcard include/config/mach/ani/apm.h) \ $(wildcard include/config/mach/ella1.h) \ $(wildcard include/config/mach/inhand/pxa27x.h) \ $(wildcard include/config/mach/inhand/pxa25x.h) \ $(wildcard include/config/mach/empos/xm.h) \ $(wildcard include/config/mach/empos.h) \ $(wildcard include/config/mach/empos/tiny.h) \ $(wildcard include/config/mach/empos/sm.h) \ $(wildcard include/config/mach/egret.h) \ $(wildcard include/config/mach/ostrich.h) \ $(wildcard include/config/mach/n50.h) \ $(wildcard include/config/mach/ecbat91.h) \ $(wildcard include/config/mach/stareast.h) \ $(wildcard include/config/mach/dspg/dw.h) \ $(wildcard include/config/mach/onearm.h) \ $(wildcard include/config/mach/mrg110/6.h) \ $(wildcard include/config/mach/wrt300nv2.h) \ $(wildcard include/config/mach/xm/bulverde.h) \ $(wildcard include/config/mach/msm6100.h) \ $(wildcard include/config/mach/eti/b1.h) \ $(wildcard include/config/mach/zilog/za9l.h) \ $(wildcard include/config/mach/bit2440.h) \ $(wildcard include/config/mach/nbi.h) \ $(wildcard include/config/mach/smdk2443.h) \ $(wildcard include/config/mach/vdavinci.h) \ $(wildcard include/config/mach/atc6.h) \ $(wildcard include/config/mach/multmdw.h) \ $(wildcard include/config/mach/mba2440.h) \ $(wildcard include/config/mach/ecsd.h) \ $(wildcard include/config/mach/palmz31.h) \ $(wildcard include/config/mach/fsg.h) \ $(wildcard include/config/mach/razor101.h) \ $(wildcard include/config/mach/opera/tdm.h) \ $(wildcard include/config/mach/comcerto.h) \ $(wildcard include/config/mach/tb0319.h) \ $(wildcard include/config/mach/kws8000.h) \ $(wildcard include/config/mach/b2.h) \ $(wildcard include/config/mach/lcl54.h) \ $(wildcard include/config/mach/at91sam9260ek.h) \ $(wildcard include/config/mach/glantank.h) \ $(wildcard include/config/mach/n2100.h) \ $(wildcard include/config/mach/n4100.h) \ $(wildcard include/config/mach/vertical/rsc4.h) \ $(wildcard include/config/mach/sg8100.h) \ $(wildcard include/config/mach/im42xx.h) \ $(wildcard include/config/mach/ftxx.h) \ $(wildcard include/config/mach/lwfusion.h) \ $(wildcard include/config/mach/qt2410.h) \ $(wildcard include/config/mach/kixrp435.h) \ $(wildcard include/config/mach/ccw9c.h) \ $(wildcard include/config/mach/dabhs.h) \ $(wildcard include/config/mach/gzmx.h) \ $(wildcard include/config/mach/ipnw100ap.h) \ $(wildcard include/config/mach/cc9p9360dev.h) \ $(wildcard include/config/mach/cc9p9750dev.h) \ $(wildcard include/config/mach/cc9p9360val.h) \ $(wildcard include/config/mach/cc9p9750val.h) \ $(wildcard include/config/mach/nx70v.h) \ $(wildcard include/config/mach/at91rm9200df.h) \ $(wildcard include/config/mach/se/pilot2.h) \ $(wildcard include/config/mach/mtcn/t800.h) \ $(wildcard include/config/mach/vcmx212.h) \ $(wildcard include/config/mach/lynx.h) \ $(wildcard include/config/mach/at91sam9260id.h) \ $(wildcard include/config/mach/hw86052.h) \ $(wildcard include/config/mach/pilz/pmi3.h) \ $(wildcard include/config/mach/edb9302a.h) \ $(wildcard include/config/mach/edb9307a.h) \ $(wildcard include/config/mach/ct/dfs.h) \ $(wildcard include/config/mach/pilz/pmi4.h) \ $(wildcard include/config/mach/xceednp/ixp.h) \ $(wildcard include/config/mach/smdk2442b.h) \ $(wildcard include/config/mach/xnode.h) \ $(wildcard include/config/mach/aidx270.h) \ $(wildcard include/config/mach/rema.h) \ $(wildcard include/config/mach/bps1000.h) \ $(wildcard include/config/mach/hw90350.h) \ $(wildcard include/config/mach/omap/3430sdp.h) \ $(wildcard include/config/mach/bluetouch.h) \ $(wildcard include/config/mach/vstms.h) \ $(wildcard include/config/mach/xsbase270.h) \ $(wildcard include/config/mach/at91sam9260ek/cn.h) \ $(wildcard include/config/mach/adsturboxb.h) \ $(wildcard include/config/mach/oti4110.h) \ $(wildcard include/config/mach/hme/pxa.h) \ $(wildcard include/config/mach/deisterdca.h) \ $(wildcard include/config/mach/ces/ssem2.h) \ $(wildcard include/config/mach/ces/mtr.h) \ $(wildcard include/config/mach/tds/avng/sbc.h) \ $(wildcard include/config/mach/everest.h) \ $(wildcard include/config/mach/pnx4010.h) \ $(wildcard include/config/mach/oxnas.h) \ $(wildcard include/config/mach/fiori.h) \ $(wildcard include/config/mach/ml1200.h) \ $(wildcard include/config/mach/pecos.h) \ $(wildcard include/config/mach/nb2xxx.h) \ $(wildcard include/config/mach/hw6900.h) \ $(wildcard include/config/mach/cdcs/quoll.h) \ $(wildcard include/config/mach/quicksilver.h) \ $(wildcard include/config/mach/uplat926.h) \ $(wildcard include/config/mach/dep2410/thomas.h) \ $(wildcard include/config/mach/dtk2410.h) \ $(wildcard include/config/mach/chili.h) \ $(wildcard include/config/mach/demeter.h) \ $(wildcard include/config/mach/dionysus.h) \ $(wildcard include/config/mach/as352x.h) \ $(wildcard include/config/mach/service.h) \ $(wildcard include/config/mach/cs/e9301.h) \ $(wildcard include/config/mach/micro9m.h) \ $(wildcard include/config/mach/ia/mospck.h) \ $(wildcard include/config/mach/ql201b.h) \ $(wildcard include/config/mach/bbm.h) \ $(wildcard include/config/mach/exxx.h) \ $(wildcard include/config/mach/wma11b.h) \ $(wildcard include/config/mach/pelco/atlas.h) \ $(wildcard include/config/mach/g500.h) \ $(wildcard include/config/mach/bug.h) \ $(wildcard include/config/mach/mx33ads.h) \ $(wildcard include/config/mach/chub.h) \ $(wildcard include/config/mach/neo1973/gta01.h) \ $(wildcard include/config/mach/w90n740.h) \ $(wildcard include/config/mach/medallion/sa2410.h) \ $(wildcard include/config/mach/ia/cpu/9200/2.h) \ $(wildcard include/config/mach/dimmrm9200.h) \ $(wildcard include/config/mach/pm9261.h) \ $(wildcard include/config/mach/ml7304.h) \ $(wildcard include/config/mach/ucp250.h) \ $(wildcard include/config/mach/intboard.h) \ $(wildcard include/config/mach/gulfstream.h) \ $(wildcard include/config/mach/labquest.h) \ $(wildcard include/config/mach/vcmx313.h) \ $(wildcard include/config/mach/urg200.h) \ $(wildcard include/config/mach/cpux255lcdnet.h) \ $(wildcard include/config/mach/netdcu9.h) \ $(wildcard include/config/mach/netdcu10.h) \ $(wildcard include/config/mach/dspg/dga.h) \ $(wildcard include/config/mach/dspg/dvw.h) \ $(wildcard include/config/mach/solos.h) \ $(wildcard include/config/mach/at91sam9263ek.h) \ $(wildcard include/config/mach/osstbox.h) \ $(wildcard include/config/mach/kbat9261.h) \ $(wildcard include/config/mach/ct1100.h) \ $(wildcard include/config/mach/akcppxa.h) \ $(wildcard include/config/mach/ochaya1020.h) \ $(wildcard include/config/mach/hitrack.h) \ $(wildcard include/config/mach/syme1.h) \ $(wildcard include/config/mach/syhl1.h) \ $(wildcard include/config/mach/empca400.h) \ $(wildcard include/config/mach/em7210.h) \ $(wildcard include/config/mach/htchermes.h) \ $(wildcard include/config/mach/eti/c1.h) \ $(wildcard include/config/mach/ac100.h) \ $(wildcard include/config/mach/sneetch.h) \ $(wildcard include/config/mach/studentmate.h) \ $(wildcard include/config/mach/zir2410.h) \ $(wildcard include/config/mach/zir2413.h) \ $(wildcard include/config/mach/dlonip3.h) \ $(wildcard include/config/mach/instream.h) \ $(wildcard include/config/mach/ambarella.h) \ $(wildcard include/config/mach/nevis.h) \ $(wildcard include/config/mach/htc/trinity.h) \ $(wildcard include/config/mach/ql202b.h) \ $(wildcard include/config/mach/vpac270.h) \ $(wildcard include/config/mach/rd129.h) \ $(wildcard include/config/mach/htcwizard.h) \ $(wildcard include/config/mach/treo680.h) \ $(wildcard include/config/mach/tecon/tmezon.h) \ $(wildcard include/config/mach/zylonite.h) \ $(wildcard include/config/mach/gene1270.h) \ $(wildcard include/config/mach/zir2412.h) \ $(wildcard include/config/mach/mx31lite.h) \ $(wildcard include/config/mach/t700wx.h) \ $(wildcard include/config/mach/vf100.h) \ $(wildcard include/config/mach/nsb2.h) \ $(wildcard include/config/mach/nxhmi/bb.h) \ $(wildcard include/config/mach/nxhmi/re.h) \ $(wildcard include/config/mach/n4100pro.h) \ $(wildcard include/config/mach/sam9260.h) \ $(wildcard include/config/mach/omap/treo600.h) \ $(wildcard include/config/mach/indy2410.h) \ $(wildcard include/config/mach/nelt/a.h) \ $(wildcard include/config/mach/n311.h) \ $(wildcard include/config/mach/at91sam9260vgk.h) \ $(wildcard include/config/mach/at91leppe.h) \ $(wildcard include/config/mach/at91lepccn.h) \ $(wildcard include/config/mach/apc7100.h) \ $(wildcard include/config/mach/stargazer.h) \ $(wildcard include/config/mach/sonata.h) \ $(wildcard include/config/mach/schmoogie.h) \ $(wildcard include/config/mach/aztool.h) \ $(wildcard include/config/mach/mioa701.h) \ $(wildcard include/config/mach/sxni9260.h) \ $(wildcard include/config/mach/mxc27520evb.h) \ $(wildcard include/config/mach/armadillo5x0.h) \ $(wildcard include/config/mach/mb9260.h) \ $(wildcard include/config/mach/mb9263.h) \ $(wildcard include/config/mach/ipac9302.h) \ $(wildcard include/config/mach/cc9p9360js.h) \ $(wildcard include/config/mach/gallium.h) \ $(wildcard include/config/mach/msc2410.h) \ $(wildcard include/config/mach/ghi270.h) \ $(wildcard include/config/mach/davinci/leonardo.h) \ $(wildcard include/config/mach/oiab.h) \ $(wildcard include/config/mach/smdk6400.h) \ $(wildcard include/config/mach/nokia/n800.h) \ $(wildcard include/config/mach/greenphone.h) \ $(wildcard include/config/mach/compexwp18.h) \ $(wildcard include/config/mach/xmate.h) \ $(wildcard include/config/mach/energizer.h) \ $(wildcard include/config/mach/ime1.h) \ $(wildcard include/config/mach/swedatms.h) \ $(wildcard include/config/mach/ntnp435c.h) \ $(wildcard include/config/mach/spectro2.h) \ $(wildcard include/config/mach/h6039.h) \ $(wildcard include/config/mach/ep80219.h) \ $(wildcard include/config/mach/samoa/ii.h) \ $(wildcard include/config/mach/cwmxl.h) \ $(wildcard include/config/mach/as9200.h) \ $(wildcard include/config/mach/sfx1149.h) \ $(wildcard include/config/mach/navi010.h) \ $(wildcard include/config/mach/multmdp.h) \ $(wildcard include/config/mach/scb9520.h) \ $(wildcard include/config/mach/htcathena.h) \ $(wildcard include/config/mach/xp179.h) \ $(wildcard include/config/mach/h4300.h) \ $(wildcard include/config/mach/goramo/mlr.h) \ $(wildcard include/config/mach/mxc30020evb.h) \ $(wildcard include/config/mach/adsbitsyg5.h) \ $(wildcard include/config/mach/adsportalplus.h) \ $(wildcard include/config/mach/mmsp2plus.h) \ $(wildcard include/config/mach/em/x270.h) \ $(wildcard include/config/mach/tpp302.h) \ $(wildcard include/config/mach/tpm104.h) \ $(wildcard include/config/mach/tpm102.h) \ $(wildcard include/config/mach/tpm109.h) \ $(wildcard include/config/mach/fbxo1.h) \ $(wildcard include/config/mach/hxd8.h) \ $(wildcard include/config/mach/neo1973/gta02.h) \ $(wildcard include/config/mach/emtest.h) \ $(wildcard include/config/mach/ad6900.h) \ $(wildcard include/config/mach/europa.h) \ $(wildcard include/config/mach/metroconnect.h) \ $(wildcard include/config/mach/ez/s2410.h) \ $(wildcard include/config/mach/ez/s2440.h) \ $(wildcard include/config/mach/ez/ep9312.h) \ $(wildcard include/config/mach/ez/ep9315.h) \ $(wildcard include/config/mach/ez/x7.h) \ $(wildcard include/config/mach/godotdb.h) \ $(wildcard include/config/mach/mistral.h) \ $(wildcard include/config/mach/msm.h) \ $(wildcard include/config/mach/ct5910.h) \ $(wildcard include/config/mach/ct5912.h) \ $(wildcard include/config/mach/hynet/ine.h) \ $(wildcard include/config/mach/hynet/app.h) \ $(wildcard include/config/mach/msm7200.h) \ $(wildcard include/config/mach/msm7600.h) \ $(wildcard include/config/mach/ceb255.h) \ $(wildcard include/config/mach/ciel.h) \ $(wildcard include/config/mach/slm5650.h) \ $(wildcard include/config/mach/at91sam9rlek.h) \ $(wildcard include/config/mach/comtech/router.h) \ $(wildcard include/config/mach/sbc2410x.h) \ $(wildcard include/config/mach/at4x0bd.h) \ $(wildcard include/config/mach/cbifr.h) \ $(wildcard include/config/mach/arcom/quantum.h) \ $(wildcard include/config/mach/matrix520.h) \ $(wildcard include/config/mach/matrix510.h) \ $(wildcard include/config/mach/matrix500.h) \ $(wildcard include/config/mach/m501.h) \ $(wildcard include/config/mach/aaeon1270.h) \ $(wildcard include/config/mach/matrix500ev.h) \ $(wildcard include/config/mach/pac500.h) \ $(wildcard include/config/mach/pnx8181.h) \ $(wildcard include/config/mach/colibri320.h) \ $(wildcard include/config/mach/aztoolbb.h) \ $(wildcard include/config/mach/aztoolg2.h) \ $(wildcard include/config/mach/dvlhost.h) \ $(wildcard include/config/mach/zir9200.h) \ $(wildcard include/config/mach/zir9260.h) \ $(wildcard include/config/mach/cocopah.h) \ $(wildcard include/config/mach/nds.h) \ $(wildcard include/config/mach/rosencrantz.h) \ $(wildcard include/config/mach/fttx/odsc.h) \ $(wildcard include/config/mach/classe/r6904.h) \ $(wildcard include/config/mach/cam60.h) \ $(wildcard include/config/mach/mxc30031ads.h) \ $(wildcard include/config/mach/datacall.h) \ $(wildcard include/config/mach/at91eb01.h) \ $(wildcard include/config/mach/rty.h) \ $(wildcard include/config/mach/dwl2100.h) \ $(wildcard include/config/mach/vinsi.h) \ $(wildcard include/config/mach/db88f5281.h) \ $(wildcard include/config/mach/csb726.h) \ $(wildcard include/config/mach/tik27.h) \ $(wildcard include/config/mach/mx/uc7420.h) \ $(wildcard include/config/mach/rirm3.h) \ $(wildcard include/config/mach/pelco/odyssey.h) \ $(wildcard include/config/mach/adx/abox.h) \ $(wildcard include/config/mach/adx/tpid.h) \ $(wildcard include/config/mach/minicheck.h) \ $(wildcard include/config/mach/idam.h) \ $(wildcard include/config/mach/mario/mx.h) \ $(wildcard include/config/mach/vi1888.h) \ $(wildcard include/config/mach/zr4230.h) \ $(wildcard include/config/mach/t1/ix/blue.h) \ $(wildcard include/config/mach/syhq2.h) \ $(wildcard include/config/mach/computime/r3.h) \ $(wildcard include/config/mach/oratis.h) \ $(wildcard include/config/mach/mikko.h) \ $(wildcard include/config/mach/holon.h) \ $(wildcard include/config/mach/olip8.h) \ $(wildcard include/config/mach/ghi270hg.h) \ $(wildcard include/config/mach/davinci/dm6467/evm.h) \ $(wildcard include/config/mach/davinci/dm355/evm.h) \ $(wildcard include/config/mach/blackriver.h) \ $(wildcard include/config/mach/sandgatewp.h) \ $(wildcard include/config/mach/cdotbwsg.h) \ $(wildcard include/config/mach/quark963.h) \ $(wildcard include/config/mach/csb735.h) \ $(wildcard include/config/mach/littleton.h) \ $(wildcard include/config/mach/mio/p550.h) \ $(wildcard include/config/mach/motion2440.h) \ $(wildcard include/config/mach/imm500.h) \ $(wildcard include/config/mach/homematic.h) \ $(wildcard include/config/mach/ermine.h) \ $(wildcard include/config/mach/kb9202b.h) \ $(wildcard include/config/mach/hs1xx.h) \ $(wildcard include/config/mach/studentmate2440.h) \ $(wildcard include/config/mach/arvoo/l1/z1.h) \ $(wildcard include/config/mach/dep2410k.h) \ $(wildcard include/config/mach/xxsvideo.h) \ $(wildcard include/config/mach/im4004.h) \ $(wildcard include/config/mach/ochaya1050.h) \ $(wildcard include/config/mach/lep9261.h) \ $(wildcard include/config/mach/svenmeb.h) \ $(wildcard include/config/mach/fortunet2ne.h) \ $(wildcard include/config/mach/nxhx.h) \ $(wildcard include/config/mach/realview/pb11mp.h) \ $(wildcard include/config/mach/ids500.h) \ $(wildcard include/config/mach/ors/n725.h) \ $(wildcard include/config/mach/hsdarm.h) \ $(wildcard include/config/mach/sha/pon003.h) \ $(wildcard include/config/mach/sha/pon004.h) \ $(wildcard include/config/mach/sha/pon007.h) \ $(wildcard include/config/mach/sha/pon011.h) \ $(wildcard include/config/mach/h6042.h) \ $(wildcard include/config/mach/h6043.h) \ $(wildcard include/config/mach/looxc550.h) \ $(wildcard include/config/mach/cnty/titan.h) \ $(wildcard include/config/mach/app3xx.h) \ $(wildcard include/config/mach/sideoatsgrama.h) \ $(wildcard include/config/mach/treo700p.h) \ $(wildcard include/config/mach/treo700w.h) \ $(wildcard include/config/mach/treo750.h) \ $(wildcard include/config/mach/treo755p.h) \ $(wildcard include/config/mach/ezreganut9200.h) \ $(wildcard include/config/mach/sarge.h) \ $(wildcard include/config/mach/a696.h) \ $(wildcard include/config/mach/turtle.h) \ $(wildcard include/config/mach/mx27/3ds.h) \ $(wildcard include/config/mach/bishop.h) \ $(wildcard include/config/mach/pxx.h) \ $(wildcard include/config/mach/redwood.h) \ $(wildcard include/config/mach/omap/2430dlp.h) \ $(wildcard include/config/mach/omap/2430osk.h) \ $(wildcard include/config/mach/sardine.h) \ $(wildcard include/config/mach/halibut.h) \ $(wildcard include/config/mach/trout.h) \ $(wildcard include/config/mach/goldfish.h) \ $(wildcard include/config/mach/gesbc2440.h) \ $(wildcard include/config/mach/nomad.h) \ $(wildcard include/config/mach/rosalind.h) \ $(wildcard include/config/mach/cc9p9215.h) \ $(wildcard include/config/mach/cc9p9210.h) \ $(wildcard include/config/mach/cc9p9215js.h) \ $(wildcard include/config/mach/cc9p9210js.h) \ $(wildcard include/config/mach/nasffe.h) \ $(wildcard include/config/mach/tn2x0bd.h) \ $(wildcard include/config/mach/gwmpxa.h) \ $(wildcard include/config/mach/exyplus.h) \ $(wildcard include/config/mach/jadoo21.h) \ $(wildcard include/config/mach/looxn560.h) \ $(wildcard include/config/mach/bonsai.h) \ $(wildcard include/config/mach/adsmilgato.h) \ $(wildcard include/config/mach/gba.h) \ $(wildcard include/config/mach/h6044.h) \ $(wildcard include/config/mach/app.h) \ $(wildcard include/config/mach/tct/hammer.h) \ $(wildcard include/config/mach/herald.h) \ $(wildcard include/config/mach/artemis.h) \ $(wildcard include/config/mach/htctitan.h) \ $(wildcard include/config/mach/qranium.h) \ $(wildcard include/config/mach/adx/wsc2.h) \ $(wildcard include/config/mach/adx/medcom.h) \ $(wildcard include/config/mach/bboard.h) \ $(wildcard include/config/mach/cambria.h) \ $(wildcard include/config/mach/mt7xxx.h) \ $(wildcard include/config/mach/matrix512.h) \ $(wildcard include/config/mach/matrix522.h) \ $(wildcard include/config/mach/ipac5010.h) \ $(wildcard include/config/mach/sakura.h) \ $(wildcard include/config/mach/grocx.h) \ $(wildcard include/config/mach/pm9263.h) \ $(wildcard include/config/mach/sim/one.h) \ $(wildcard include/config/mach/acq132.h) \ $(wildcard include/config/mach/datr.h) \ $(wildcard include/config/mach/actux1.h) \ $(wildcard include/config/mach/actux2.h) \ $(wildcard include/config/mach/actux3.h) \ $(wildcard include/config/mach/flexit.h) \ $(wildcard include/config/mach/bh2x0bd.h) \ $(wildcard include/config/mach/atb2002.h) \ $(wildcard include/config/mach/xenon.h) \ $(wildcard include/config/mach/fm607.h) \ $(wildcard include/config/mach/matrix514.h) \ $(wildcard include/config/mach/matrix524.h) \ $(wildcard include/config/mach/inpod.h) \ $(wildcard include/config/mach/jive.h) \ $(wildcard include/config/mach/tll/mx21.h) \ $(wildcard include/config/mach/sbc2800.h) \ $(wildcard include/config/mach/cc7ucamry.h) \ $(wildcard include/config/mach/ubisys/p9/sc15.h) \ $(wildcard include/config/mach/ubisys/p9/ssc2d10.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3.h) \ $(wildcard include/config/mach/aml/m8000.h) \ $(wildcard include/config/mach/snapper/270.h) \ $(wildcard include/config/mach/omap/bbx.h) \ $(wildcard include/config/mach/ucn2410.h) \ $(wildcard include/config/mach/sam9/l9260.h) \ $(wildcard include/config/mach/eti/c2.h) \ $(wildcard include/config/mach/avalanche.h) \ $(wildcard include/config/mach/realview/pb1176.h) \ $(wildcard include/config/mach/dp1500.h) \ $(wildcard include/config/mach/apple/iphone.h) \ $(wildcard include/config/mach/yl9200.h) \ $(wildcard include/config/mach/rd88f5182.h) \ $(wildcard include/config/mach/kurobox/pro.h) \ $(wildcard include/config/mach/se/poet.h) \ $(wildcard include/config/mach/mx31/3ds.h) \ $(wildcard include/config/mach/r270.h) \ $(wildcard include/config/mach/armour21.h) \ $(wildcard include/config/mach/dt2.h) \ $(wildcard include/config/mach/vt4.h) \ $(wildcard include/config/mach/tyco320.h) \ $(wildcard include/config/mach/adma.h) \ $(wildcard include/config/mach/wp188.h) \ $(wildcard include/config/mach/corsica.h) \ $(wildcard include/config/mach/bigeye.h) \ $(wildcard include/config/mach/tll5000.h) \ $(wildcard include/config/mach/bebot.h) \ $(wildcard include/config/mach/qong.h) \ $(wildcard include/config/mach/tcompact.h) \ $(wildcard include/config/mach/puma5.h) \ $(wildcard include/config/mach/elara.h) \ $(wildcard include/config/mach/ellington.h) \ $(wildcard include/config/mach/xda/atom.h) \ $(wildcard include/config/mach/energizer2.h) \ $(wildcard include/config/mach/odin.h) \ $(wildcard include/config/mach/actux4.h) \ $(wildcard include/config/mach/esl/omap.h) \ $(wildcard include/config/mach/omap2evm.h) \ $(wildcard include/config/mach/omap3evm.h) \ $(wildcard include/config/mach/adx/pcu57.h) \ $(wildcard include/config/mach/monaco.h) \ $(wildcard include/config/mach/levante.h) \ $(wildcard include/config/mach/tmxipx425.h) \ $(wildcard include/config/mach/leep.h) \ $(wildcard include/config/mach/raad.h) \ $(wildcard include/config/mach/dns323.h) \ $(wildcard include/config/mach/ap1000.h) \ $(wildcard include/config/mach/a9sam6432.h) \ $(wildcard include/config/mach/shiny.h) \ $(wildcard include/config/mach/omap3/beagle.h) \ $(wildcard include/config/mach/csr/bdb2.h) \ $(wildcard include/config/mach/nokia/n810.h) \ $(wildcard include/config/mach/c270.h) \ $(wildcard include/config/mach/sentry.h) \ $(wildcard include/config/mach/pcm038.h) \ $(wildcard include/config/mach/anc300.h) \ $(wildcard include/config/mach/htckaiser.h) \ $(wildcard include/config/mach/sbat100.h) \ $(wildcard include/config/mach/modunorm.h) \ $(wildcard include/config/mach/pelos/twarm.h) \ $(wildcard include/config/mach/flank.h) \ $(wildcard include/config/mach/sirloin.h) \ $(wildcard include/config/mach/brisket.h) \ $(wildcard include/config/mach/chuck.h) \ $(wildcard include/config/mach/otter.h) \ $(wildcard include/config/mach/davinci/ldk.h) \ $(wildcard include/config/mach/phreedom.h) \ $(wildcard include/config/mach/sg310.h) \ $(wildcard include/config/mach/ts209.h) \ $(wildcard include/config/mach/at91cap9adk.h) \ $(wildcard include/config/mach/tion9315.h) \ $(wildcard include/config/mach/mast.h) \ $(wildcard include/config/mach/pfw.h) \ $(wildcard include/config/mach/yl/p2440.h) \ $(wildcard include/config/mach/zsbc32.h) \ $(wildcard include/config/mach/omap/pace2.h) \ $(wildcard include/config/mach/imx/pace2.h) \ $(wildcard include/config/mach/mx31moboard.h) \ $(wildcard include/config/mach/mx37/3ds.h) \ $(wildcard include/config/mach/rcc.h) \ $(wildcard include/config/mach/arm9.h) \ $(wildcard include/config/mach/vision/ep9307.h) \ $(wildcard include/config/mach/scly1000.h) \ $(wildcard include/config/mach/fontel/ep.h) \ $(wildcard include/config/mach/voiceblue3g.h) \ $(wildcard include/config/mach/tt9200.h) \ $(wildcard include/config/mach/digi2410.h) \ $(wildcard include/config/mach/terastation/pro2.h) \ $(wildcard include/config/mach/linkstation/pro.h) \ $(wildcard include/config/mach/motorola/a780.h) \ $(wildcard include/config/mach/motorola/e6.h) \ $(wildcard include/config/mach/motorola/e2.h) \ $(wildcard include/config/mach/motorola/e680.h) \ $(wildcard include/config/mach/ur2410.h) \ $(wildcard include/config/mach/tas9261.h) \ $(wildcard include/config/mach/hermes/hd.h) \ $(wildcard include/config/mach/perseo/hd.h) \ $(wildcard include/config/mach/stargazer2.h) \ $(wildcard include/config/mach/e350.h) \ $(wildcard include/config/mach/wpcm450.h) \ $(wildcard include/config/mach/cartesio.h) \ $(wildcard include/config/mach/toybox.h) \ $(wildcard include/config/mach/tx27.h) \ $(wildcard include/config/mach/ts409.h) \ $(wildcard include/config/mach/p300.h) \ $(wildcard include/config/mach/xdacomet.h) \ $(wildcard include/config/mach/dexflex2.h) \ $(wildcard include/config/mach/ow.h) \ $(wildcard include/config/mach/armebs3.h) \ $(wildcard include/config/mach/u3.h) \ $(wildcard include/config/mach/smdk2450.h) \ $(wildcard include/config/mach/rsi/ews.h) \ $(wildcard include/config/mach/tnb.h) \ $(wildcard include/config/mach/toepath.h) \ $(wildcard include/config/mach/kb9263.h) \ $(wildcard include/config/mach/mt7108.h) \ $(wildcard include/config/mach/smtr2440.h) \ $(wildcard include/config/mach/manao.h) \ $(wildcard include/config/mach/cm/x300.h) \ $(wildcard include/config/mach/gulfstream/kp.h) \ $(wildcard include/config/mach/lanreadyfn522.h) \ $(wildcard include/config/mach/arma37.h) \ $(wildcard include/config/mach/mendel.h) \ $(wildcard include/config/mach/pelco/iliad.h) \ $(wildcard include/config/mach/unit2p.h) \ $(wildcard include/config/mach/inc20otter.h) \ $(wildcard include/config/mach/at91sam9g20ek.h) \ $(wildcard include/config/mach/storcenter.h) \ $(wildcard include/config/mach/smdk6410.h) \ $(wildcard include/config/mach/u300.h) \ $(wildcard include/config/mach/u500.h) \ $(wildcard include/config/mach/ds9260.h) \ $(wildcard include/config/mach/riverrock.h) \ $(wildcard include/config/mach/scibath.h) \ $(wildcard include/config/mach/at91sam7se512ek.h) \ $(wildcard include/config/mach/wrt350n/v2.h) \ $(wildcard include/config/mach/multimedia.h) \ $(wildcard include/config/mach/marvin.h) \ $(wildcard include/config/mach/x500.h) \ $(wildcard include/config/mach/awlug4lcu.h) \ $(wildcard include/config/mach/palermoc.h) \ $(wildcard include/config/mach/omap/ldp.h) \ $(wildcard include/config/mach/ip500.h) \ $(wildcard include/config/mach/ase2.h) \ $(wildcard include/config/mach/mx35evb.h) \ $(wildcard include/config/mach/aml/m8050.h) \ $(wildcard include/config/mach/mx35/3ds.h) \ $(wildcard include/config/mach/mars.h) \ $(wildcard include/config/mach/neuros/osd2.h) \ $(wildcard include/config/mach/badger.h) \ $(wildcard include/config/mach/trizeps4wl.h) \ $(wildcard include/config/mach/trizeps5.h) \ $(wildcard include/config/mach/marlin.h) \ $(wildcard include/config/mach/ts78xx.h) \ $(wildcard include/config/mach/hpipaq214.h) \ $(wildcard include/config/mach/at572d940dcm.h) \ $(wildcard include/config/mach/ne1board.h) \ $(wildcard include/config/mach/zante.h) \ $(wildcard include/config/mach/sffsdr.h) \ $(wildcard include/config/mach/tw2662.h) \ $(wildcard include/config/mach/vf10xx.h) \ $(wildcard include/config/mach/zoran43xx.h) \ $(wildcard include/config/mach/sonix926.h) \ $(wildcard include/config/mach/celestialsemi.h) \ $(wildcard include/config/mach/cc9m2443js.h) \ $(wildcard include/config/mach/tw5334.h) \ $(wildcard include/config/mach/htcartemis.h) \ $(wildcard include/config/mach/nal/hlite.h) \ $(wildcard include/config/mach/htcvogue.h) \ $(wildcard include/config/mach/smartweb.h) \ $(wildcard include/config/mach/mv86xx.h) \ $(wildcard include/config/mach/mv87xx.h) \ $(wildcard include/config/mach/songyoungho.h) \ $(wildcard include/config/mach/younghotema.h) \ $(wildcard include/config/mach/pcm037.h) \ $(wildcard include/config/mach/mmvp.h) \ $(wildcard include/config/mach/mmap.h) \ $(wildcard include/config/mach/ptid2410.h) \ $(wildcard include/config/mach/james/926.h) \ $(wildcard include/config/mach/fm6000.h) \ $(wildcard include/config/mach/db88f6281/bp.h) \ $(wildcard include/config/mach/rd88f6192/nas.h) \ $(wildcard include/config/mach/rd88f6281.h) \ $(wildcard include/config/mach/db78x00/bp.h) \ $(wildcard include/config/mach/smdk2416.h) \ $(wildcard include/config/mach/oce/spider/si.h) \ $(wildcard include/config/mach/oce/spider/sk.h) \ $(wildcard include/config/mach/rovern6.h) \ $(wildcard include/config/mach/pelco/evolution.h) \ $(wildcard include/config/mach/wbd111.h) \ $(wildcard include/config/mach/elaracpe.h) \ $(wildcard include/config/mach/mabv3.h) \ $(wildcard include/config/mach/mv2120.h) \ $(wildcard include/config/mach/csb737.h) \ $(wildcard include/config/mach/mx51/3ds.h) \ $(wildcard include/config/mach/g900.h) \ $(wildcard include/config/mach/apf27.h) \ $(wildcard include/config/mach/ggus2000.h) \ $(wildcard include/config/mach/omap/2430/mimic.h) \ $(wildcard include/config/mach/imx27lite.h) \ $(wildcard include/config/mach/almex.h) \ $(wildcard include/config/mach/control.h) \ $(wildcard include/config/mach/mba2410.h) \ $(wildcard include/config/mach/volcano.h) \ $(wildcard include/config/mach/zenith.h) \ $(wildcard include/config/mach/muchip.h) \ $(wildcard include/config/mach/magellan.h) \ $(wildcard include/config/mach/usb/a9260.h) \ $(wildcard include/config/mach/usb/a9263.h) \ $(wildcard include/config/mach/qil/a9260.h) \ $(wildcard include/config/mach/cme9210.h) \ $(wildcard include/config/mach/hczh4.h) \ $(wildcard include/config/mach/spearbasic.h) \ $(wildcard include/config/mach/dep2440.h) \ $(wildcard include/config/mach/hdl/gxr.h) \ $(wildcard include/config/mach/hdl/gt.h) \ $(wildcard include/config/mach/hdl/4g.h) \ $(wildcard include/config/mach/s3c6000.h) \ $(wildcard include/config/mach/mmsp2/mdk.h) \ $(wildcard include/config/mach/mpx220.h) \ $(wildcard include/config/mach/kzm/arm11/01.h) \ $(wildcard include/config/mach/htc/polaris.h) \ $(wildcard include/config/mach/htc/kaiser.h) \ $(wildcard include/config/mach/lg/ks20.h) \ $(wildcard include/config/mach/hhgps.h) \ $(wildcard include/config/mach/nokia/n810/wimax.h) \ $(wildcard include/config/mach/insight.h) \ $(wildcard include/config/mach/sapphire.h) \ $(wildcard include/config/mach/csb637xo.h) \ $(wildcard include/config/mach/evisiong.h) \ $(wildcard include/config/mach/stmp37xx.h) \ $(wildcard include/config/mach/stmp378x.h) \ $(wildcard include/config/mach/tnt.h) \ $(wildcard include/config/mach/tbxt.h) \ $(wildcard include/config/mach/playmate.h) \ $(wildcard include/config/mach/pns10.h) \ $(wildcard include/config/mach/eznavi.h) \ $(wildcard include/config/mach/ps4000.h) \ $(wildcard include/config/mach/ezx/a780.h) \ $(wildcard include/config/mach/ezx/e680.h) \ $(wildcard include/config/mach/ezx/a1200.h) \ $(wildcard include/config/mach/ezx/e6.h) \ $(wildcard include/config/mach/ezx/e2.h) \ $(wildcard include/config/mach/ezx/a910.h) \ $(wildcard include/config/mach/cwmx31.h) \ $(wildcard include/config/mach/sl2312.h) \ $(wildcard include/config/mach/blenny.h) \ $(wildcard include/config/mach/ds107.h) \ $(wildcard include/config/mach/dsx07.h) \ $(wildcard include/config/mach/picocom1.h) \ $(wildcard include/config/mach/lynx/wolverine.h) \ $(wildcard include/config/mach/ubisys/p9/sc19.h) \ $(wildcard include/config/mach/kratos/low.h) \ $(wildcard include/config/mach/m700.h) \ $(wildcard include/config/mach/edmini/v2.h) \ $(wildcard include/config/mach/zipit2.h) \ $(wildcard include/config/mach/hslfemtocell.h) \ $(wildcard include/config/mach/daintree/at91.h) \ $(wildcard include/config/mach/sg560usb.h) \ $(wildcard include/config/mach/omap3/pandora.h) \ $(wildcard include/config/mach/usr8200.h) \ $(wildcard include/config/mach/s1s65k.h) \ $(wildcard include/config/mach/s2s65a.h) \ $(wildcard include/config/mach/icore.h) \ $(wildcard include/config/mach/mss2.h) \ $(wildcard include/config/mach/belmont.h) \ $(wildcard include/config/mach/asusp525.h) \ $(wildcard include/config/mach/lb88rc8480.h) \ $(wildcard include/config/mach/hipxa.h) \ $(wildcard include/config/mach/mx25/3ds.h) \ $(wildcard include/config/mach/m800.h) \ $(wildcard include/config/mach/omap3530/lv/som.h) \ $(wildcard include/config/mach/prima/evb.h) \ $(wildcard include/config/mach/mx31bt1.h) \ $(wildcard include/config/mach/atlas4/evb.h) \ $(wildcard include/config/mach/mx31cicada.h) \ $(wildcard include/config/mach/mi424wr.h) \ $(wildcard include/config/mach/axs/ultrax.h) \ $(wildcard include/config/mach/at572d940deb.h) \ $(wildcard include/config/mach/davinci/da830/evm.h) \ $(wildcard include/config/mach/ep9302.h) \ $(wildcard include/config/mach/at572d940hfeb.h) \ $(wildcard include/config/mach/cybook3.h) \ $(wildcard include/config/mach/wdg002.h) \ $(wildcard include/config/mach/sg560adsl.h) \ $(wildcard include/config/mach/nextio/n2800/ica.h) \ $(wildcard include/config/mach/dove/db.h) \ $(wildcard include/config/mach/marvell/newdb.h) \ $(wildcard include/config/mach/vandihud.h) \ $(wildcard include/config/mach/magx/e8.h) \ $(wildcard include/config/mach/magx/z6.h) \ $(wildcard include/config/mach/magx/v8.h) \ $(wildcard include/config/mach/magx/u9.h) \ $(wildcard include/config/mach/toughcf08.h) \ $(wildcard include/config/mach/zw4400.h) \ $(wildcard include/config/mach/marat91.h) \ $(wildcard include/config/mach/overo.h) \ $(wildcard include/config/mach/at2440evb.h) \ $(wildcard include/config/mach/neocore926.h) \ $(wildcard include/config/mach/wnr854t.h) \ $(wildcard include/config/mach/imx27.h) \ $(wildcard include/config/mach/moose/db.h) \ $(wildcard include/config/mach/fab4.h) \ $(wildcard include/config/mach/htcdiamond.h) \ $(wildcard include/config/mach/fiona.h) \ $(wildcard include/config/mach/mxc30030/x.h) \ $(wildcard include/config/mach/bmp1000.h) \ $(wildcard include/config/mach/logi9200.h) \ $(wildcard include/config/mach/tqma31.h) \ $(wildcard include/config/mach/ccw9p9215js.h) \ $(wildcard include/config/mach/rd88f5181l/ge.h) \ $(wildcard include/config/mach/sifmain.h) \ $(wildcard include/config/mach/sam9/l9261.h) \ $(wildcard include/config/mach/cc9m2443.h) \ $(wildcard include/config/mach/xaria300.h) \ $(wildcard include/config/mach/it9200.h) \ $(wildcard include/config/mach/rd88f5181l/fxo.h) \ $(wildcard include/config/mach/kriss/sensor.h) \ $(wildcard include/config/mach/pilz/pmi5.h) \ $(wildcard include/config/mach/jade.h) \ $(wildcard include/config/mach/ks8695/softplc.h) \ $(wildcard include/config/mach/gprisc3.h) \ $(wildcard include/config/mach/stamp9g20.h) \ $(wildcard include/config/mach/smdk6430.h) \ $(wildcard include/config/mach/smdkc100.h) \ $(wildcard include/config/mach/tavorevb.h) \ $(wildcard include/config/mach/saar.h) \ $(wildcard include/config/mach/deister/eyecam.h) \ $(wildcard include/config/mach/at91sam9m10g45ek.h) \ $(wildcard include/config/mach/linkstation/produo.h) \ $(wildcard include/config/mach/hit/b0.h) \ $(wildcard include/config/mach/adx/rmu.h) \ $(wildcard include/config/mach/xg/cpe/main.h) \ $(wildcard include/config/mach/edb9407a.h) \ $(wildcard include/config/mach/dtb9608.h) \ $(wildcard include/config/mach/em104v1.h) \ $(wildcard include/config/mach/demo.h) \ $(wildcard include/config/mach/logi9260.h) \ $(wildcard include/config/mach/mx31/exm32.h) \ $(wildcard include/config/mach/usb/a9g20.h) \ $(wildcard include/config/mach/picproje2008.h) \ $(wildcard include/config/mach/cs/e9315.h) \ $(wildcard include/config/mach/qil/a9g20.h) \ $(wildcard include/config/mach/sha/pon020.h) \ $(wildcard include/config/mach/nad.h) \ $(wildcard include/config/mach/sbc35/a9260.h) \ $(wildcard include/config/mach/sbc35/a9g20.h) \ $(wildcard include/config/mach/davinci/beginning.h) \ $(wildcard include/config/mach/uwc.h) \ $(wildcard include/config/mach/mxlads.h) \ $(wildcard include/config/mach/htcnike.h) \ $(wildcard include/config/mach/deister/pxa270.h) \ $(wildcard include/config/mach/cme9210js.h) \ $(wildcard include/config/mach/cc9p9360.h) \ $(wildcard include/config/mach/mocha.h) \ $(wildcard include/config/mach/wapd170ag.h) \ $(wildcard include/config/mach/linkstation/mini.h) \ $(wildcard include/config/mach/afeb9260.h) \ $(wildcard include/config/mach/w90x900.h) \ $(wildcard include/config/mach/w90x700.h) \ $(wildcard include/config/mach/kt300ip.h) \ $(wildcard include/config/mach/kt300ip/g20.h) \ $(wildcard include/config/mach/srcm.h) \ $(wildcard include/config/mach/wlnx/9260.h) \ $(wildcard include/config/mach/openmoko/gta03.h) \ $(wildcard include/config/mach/osprey2.h) \ $(wildcard include/config/mach/kbio9260.h) \ $(wildcard include/config/mach/ginza.h) \ $(wildcard include/config/mach/a636n.h) \ $(wildcard include/config/mach/imx27ipcam.h) \ $(wildcard include/config/mach/nemoc.h) \ $(wildcard include/config/mach/geneva.h) \ $(wildcard include/config/mach/htcpharos.h) \ $(wildcard include/config/mach/neonc.h) \ $(wildcard include/config/mach/nas7100.h) \ $(wildcard include/config/mach/teuphone.h) \ $(wildcard include/config/mach/annax/eth2.h) \ $(wildcard include/config/mach/csb733.h) \ $(wildcard include/config/mach/bk3.h) \ $(wildcard include/config/mach/omap/em32.h) \ $(wildcard include/config/mach/et9261cp.h) \ $(wildcard include/config/mach/jasperc.h) \ $(wildcard include/config/mach/issi/arm9.h) \ $(wildcard include/config/mach/ued.h) \ $(wildcard include/config/mach/esiblade.h) \ $(wildcard include/config/mach/eye02.h) \ $(wildcard include/config/mach/imx27kbd.h) \ $(wildcard include/config/mach/sst61vc010/fpga.h) \ $(wildcard include/config/mach/kixvp435.h) \ $(wildcard include/config/mach/kixnp435.h) \ $(wildcard include/config/mach/africa.h) \ $(wildcard include/config/mach/nh233.h) \ $(wildcard include/config/mach/rd88f6183ap/ge.h) \ $(wildcard include/config/mach/bcm4760.h) \ $(wildcard include/config/mach/eddy/v2.h) \ $(wildcard include/config/mach/realview/pba8.h) \ $(wildcard include/config/mach/hid/a7.h) \ $(wildcard include/config/mach/hero.h) \ $(wildcard include/config/mach/omap/poseidon.h) \ $(wildcard include/config/mach/realview/pbx.h) \ $(wildcard include/config/mach/micro9s.h) \ $(wildcard include/config/mach/mako.h) \ $(wildcard include/config/mach/xdaflame.h) \ $(wildcard include/config/mach/phidget/sbc2.h) \ $(wildcard include/config/mach/limestone.h) \ $(wildcard include/config/mach/iprobe/c32.h) \ $(wildcard include/config/mach/rut100.h) \ $(wildcard include/config/mach/asusp535.h) \ $(wildcard include/config/mach/htcraphael.h) \ $(wildcard include/config/mach/sygdg1.h) \ $(wildcard include/config/mach/sygdg2.h) \ $(wildcard include/config/mach/seoul.h) \ $(wildcard include/config/mach/salerno.h) \ $(wildcard include/config/mach/ucn/s3c64xx.h) \ $(wildcard include/config/mach/msm7201a.h) \ $(wildcard include/config/mach/lpr1.h) \ $(wildcard include/config/mach/armadillo500fx.h) \ $(wildcard include/config/mach/g3evm.h) \ $(wildcard include/config/mach/z3/dm355.h) \ $(wildcard include/config/mach/w90p910evb.h) \ $(wildcard include/config/mach/w90p920evb.h) \ $(wildcard include/config/mach/w90p950evb.h) \ $(wildcard include/config/mach/w90n960evb.h) \ $(wildcard include/config/mach/camhd.h) \ $(wildcard include/config/mach/mvc100.h) \ $(wildcard include/config/mach/electrum/200.h) \ $(wildcard include/config/mach/htcjade.h) \ $(wildcard include/config/mach/memphis.h) \ $(wildcard include/config/mach/imx27sbc.h) \ $(wildcard include/config/mach/lextar.h) \ $(wildcard include/config/mach/mv88f6281gtw/ge.h) \ $(wildcard include/config/mach/ncp.h) \ $(wildcard include/config/mach/z32an.h) \ $(wildcard include/config/mach/tmq/capd.h) \ $(wildcard include/config/mach/omap3/wl.h) \ $(wildcard include/config/mach/chumby.h) \ $(wildcard include/config/mach/atsarm9.h) \ $(wildcard include/config/mach/davinci/dm365/evm.h) \ $(wildcard include/config/mach/bahamas.h) \ $(wildcard include/config/mach/das.h) \ $(wildcard include/config/mach/minidas.h) \ $(wildcard include/config/mach/vk1000.h) \ $(wildcard include/config/mach/centro.h) \ $(wildcard include/config/mach/ctera/2bay.h) \ $(wildcard include/config/mach/edgeconnect.h) \ $(wildcard include/config/mach/nd27000.h) \ $(wildcard include/config/mach/gemalto/cobra.h) \ $(wildcard include/config/mach/ingelabs/comet.h) \ $(wildcard include/config/mach/pollux/wiz.h) \ $(wildcard include/config/mach/blackstone.h) \ $(wildcard include/config/mach/topaz.h) \ $(wildcard include/config/mach/aixle.h) \ $(wildcard include/config/mach/mw998.h) \ $(wildcard include/config/mach/nokia/rx51.h) \ $(wildcard include/config/mach/vsc5605ev.h) \ $(wildcard include/config/mach/nt98700dk.h) \ $(wildcard include/config/mach/icontact.h) \ $(wildcard include/config/mach/swarco/frcpu.h) \ $(wildcard include/config/mach/swarco/scpu.h) \ $(wildcard include/config/mach/bbox/p16.h) \ $(wildcard include/config/mach/bstd.h) \ $(wildcard include/config/mach/sbc2440ii.h) \ $(wildcard include/config/mach/pcm034.h) \ $(wildcard include/config/mach/neso.h) \ $(wildcard include/config/mach/wlnx/9g20.h) \ $(wildcard include/config/mach/omap/zoom2.h) \ $(wildcard include/config/mach/totemnova.h) \ $(wildcard include/config/mach/c5000.h) \ $(wildcard include/config/mach/unipo/at91sam9263.h) \ $(wildcard include/config/mach/ethernut5.h) \ $(wildcard include/config/mach/arm11.h) \ $(wildcard include/config/mach/cpuat9260.h) \ $(wildcard include/config/mach/cpupxa255.h) \ $(wildcard include/config/mach/cpuimx27.h) \ $(wildcard include/config/mach/cheflux.h) \ $(wildcard include/config/mach/eb/cpux9k2.h) \ $(wildcard include/config/mach/opcotec.h) \ $(wildcard include/config/mach/yt.h) \ $(wildcard include/config/mach/motoq.h) \ $(wildcard include/config/mach/bsb1.h) \ $(wildcard include/config/mach/acs5k.h) \ $(wildcard include/config/mach/milan.h) \ $(wildcard include/config/mach/quartzv2.h) \ $(wildcard include/config/mach/rsvp.h) \ $(wildcard include/config/mach/rmp200.h) \ $(wildcard include/config/mach/snapper/9260.h) \ $(wildcard include/config/mach/dsm320.h) \ $(wildcard include/config/mach/adsgcm.h) \ $(wildcard include/config/mach/ase2/400.h) \ $(wildcard include/config/mach/pizza.h) \ $(wildcard include/config/mach/spot/ngpl.h) \ $(wildcard include/config/mach/armata.h) \ $(wildcard include/config/mach/exeda.h) \ $(wildcard include/config/mach/mx31sf005.h) \ $(wildcard include/config/mach/f5d8231/4/v2.h) \ $(wildcard include/config/mach/q2440.h) \ $(wildcard include/config/mach/qq2440.h) \ $(wildcard include/config/mach/mini2440.h) \ $(wildcard include/config/mach/colibri300.h) \ $(wildcard include/config/mach/jades.h) \ $(wildcard include/config/mach/spark.h) \ $(wildcard include/config/mach/benzina.h) \ $(wildcard include/config/mach/blaze.h) \ $(wildcard include/config/mach/linkstation/ls/hgl.h) \ $(wildcard include/config/mach/htcvenus.h) \ $(wildcard include/config/mach/sony/prs505.h) \ $(wildcard include/config/mach/hanlin/v3.h) \ $(wildcard include/config/mach/sapphira.h) \ $(wildcard include/config/mach/dack/sda/01.h) \ $(wildcard include/config/mach/armbox.h) \ $(wildcard include/config/mach/harris/rvp.h) \ $(wildcard include/config/mach/ribaldo.h) \ $(wildcard include/config/mach/agora.h) \ $(wildcard include/config/mach/omap3/mini.h) \ $(wildcard include/config/mach/a9sam6432/b.h) \ $(wildcard include/config/mach/usg2410.h) \ $(wildcard include/config/mach/pc72052/i10/revb.h) \ $(wildcard include/config/mach/mx35/exm32.h) \ $(wildcard include/config/mach/topas910.h) \ $(wildcard include/config/mach/hyena.h) \ $(wildcard include/config/mach/pospax.h) \ $(wildcard include/config/mach/hdl/gx.h) \ $(wildcard include/config/mach/ctera/4bay.h) \ $(wildcard include/config/mach/ctera/plug/c.h) \ $(wildcard include/config/mach/crwea/plug/i.h) \ $(wildcard include/config/mach/egauge2.h) \ $(wildcard include/config/mach/didj.h) \ $(wildcard include/config/mach/meister.h) \ $(wildcard include/config/mach/htcblackstone.h) \ $(wildcard include/config/mach/cpuat9g20.h) \ $(wildcard include/config/mach/smdk6440.h) \ $(wildcard include/config/mach/omap/35xx/mvp.h) \ $(wildcard include/config/mach/ctera/plug/i.h) \ $(wildcard include/config/mach/pvg610.h) \ $(wildcard include/config/mach/hprw6815.h) \ $(wildcard include/config/mach/omap3/oswald.h) \ $(wildcard include/config/mach/nas4220b.h) \ $(wildcard include/config/mach/htcraphael/cdma.h) \ $(wildcard include/config/mach/htcdiamond/cdma.h) \ $(wildcard include/config/mach/scaler.h) \ $(wildcard include/config/mach/zylonite2.h) \ $(wildcard include/config/mach/aspenite.h) \ $(wildcard include/config/mach/teton.h) \ $(wildcard include/config/mach/ttc/dkb.h) \ $(wildcard include/config/mach/bishop2.h) \ $(wildcard include/config/mach/ippv5.h) \ $(wildcard include/config/mach/farm926.h) \ $(wildcard include/config/mach/mmccpu.h) \ $(wildcard include/config/mach/sgmsfl.h) \ $(wildcard include/config/mach/tt8000.h) \ $(wildcard include/config/mach/zrn4300lp.h) \ $(wildcard include/config/mach/mptc.h) \ $(wildcard include/config/mach/h6051.h) \ $(wildcard include/config/mach/pvg610/101.h) \ $(wildcard include/config/mach/stamp9261/pc/evb.h) \ $(wildcard include/config/mach/pelco/odysseus.h) \ $(wildcard include/config/mach/tny/a9260.h) \ $(wildcard include/config/mach/tny/a9g20.h) \ $(wildcard include/config/mach/aesop/mp2530f.h) \ $(wildcard include/config/mach/dx900.h) \ $(wildcard include/config/mach/cpodc2.h) \ $(wildcard include/config/mach/tilt/8925.h) \ $(wildcard include/config/mach/davinci/dm357/evm.h) \ $(wildcard include/config/mach/swordfish.h) \ $(wildcard include/config/mach/corvus.h) \ $(wildcard include/config/mach/taurus.h) \ $(wildcard include/config/mach/axm.h) \ $(wildcard include/config/mach/axc.h) \ $(wildcard include/config/mach/baby.h) \ $(wildcard include/config/mach/mp200.h) \ $(wildcard include/config/mach/pcm043.h) \ $(wildcard include/config/mach/hanlin/v3c.h) \ $(wildcard include/config/mach/kbk9g20.h) \ $(wildcard include/config/mach/adsturbog5.h) \ $(wildcard include/config/mach/avenger/lite1.h) \ $(wildcard include/config/mach/suc.h) \ $(wildcard include/config/mach/at91sam7s256.h) \ $(wildcard include/config/mach/mendoza.h) \ $(wildcard include/config/mach/kira.h) \ $(wildcard include/config/mach/mx1hbm.h) \ $(wildcard include/config/mach/quatro43xx.h) \ $(wildcard include/config/mach/quatro4230.h) \ $(wildcard include/config/mach/nsb400.h) \ $(wildcard include/config/mach/drp255.h) \ $(wildcard include/config/mach/thoth.h) \ $(wildcard include/config/mach/firestone.h) \ $(wildcard include/config/mach/asusp750.h) \ $(wildcard include/config/mach/ctera/dl.h) \ $(wildcard include/config/mach/socr.h) \ $(wildcard include/config/mach/htcoxygen.h) \ $(wildcard include/config/mach/heroc.h) \ $(wildcard include/config/mach/zeno6800.h) \ $(wildcard include/config/mach/sc2mcs.h) \ $(wildcard include/config/mach/gene100.h) \ $(wildcard include/config/mach/as353x.h) \ $(wildcard include/config/mach/sheevaplug.h) \ $(wildcard include/config/mach/at91sam9g20.h) \ $(wildcard include/config/mach/mv88f6192gtw/fe.h) \ $(wildcard include/config/mach/cc9200.h) \ $(wildcard include/config/mach/sm9200.h) \ $(wildcard include/config/mach/tp9200.h) \ $(wildcard include/config/mach/snapperdv.h) \ $(wildcard include/config/mach/avengers/lite.h) \ $(wildcard include/config/mach/avengers/lite1.h) \ $(wildcard include/config/mach/omap3axon.h) \ $(wildcard include/config/mach/ma8xx.h) \ $(wildcard include/config/mach/mp201ek.h) \ $(wildcard include/config/mach/davinci/tux.h) \ $(wildcard include/config/mach/mpa1600.h) \ $(wildcard include/config/mach/pelco/troy.h) \ $(wildcard include/config/mach/nsb667.h) \ $(wildcard include/config/mach/rovers5/4mpix.h) \ $(wildcard include/config/mach/twocom.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3r2.h) \ $(wildcard include/config/mach/hero/espresso.h) \ $(wildcard include/config/mach/afeusb.h) \ $(wildcard include/config/mach/t830.h) \ $(wildcard include/config/mach/spd8020/cc.h) \ $(wildcard include/config/mach/om/3d7k.h) \ $(wildcard include/config/mach/picocom2.h) \ $(wildcard include/config/mach/uwg4mx27.h) \ $(wildcard include/config/mach/uwg4mx31.h) \ $(wildcard include/config/mach/cherry.h) \ $(wildcard include/config/mach/mx51/babbage.h) \ $(wildcard include/config/mach/s3c2440turkiye.h) \ $(wildcard include/config/mach/tx37.h) \ $(wildcard include/config/mach/sbc2800/9g20.h) \ $(wildcard include/config/mach/benzglb.h) \ $(wildcard include/config/mach/benztd.h) \ $(wildcard include/config/mach/cartesio/plus.h) \ $(wildcard include/config/mach/solrad/g20.h) \ $(wildcard include/config/mach/mx27wallace.h) \ $(wildcard include/config/mach/fmzwebmodul.h) \ $(wildcard include/config/mach/rd78x00/masa.h) \ $(wildcard include/config/mach/smallogger.h) \ $(wildcard include/config/mach/ccw9p9215.h) \ $(wildcard include/config/mach/dm355/leopard.h) \ $(wildcard include/config/mach/ts219.h) \ $(wildcard include/config/mach/tny/a9263.h) \ $(wildcard include/config/mach/apollo.h) \ $(wildcard include/config/mach/at91cap9stk.h) \ $(wildcard include/config/mach/spc300.h) \ $(wildcard include/config/mach/eko.h) \ $(wildcard include/config/mach/ccw9m2443.h) \ $(wildcard include/config/mach/ccw9m2443js.h) \ $(wildcard include/config/mach/m2m/router/device.h) \ $(wildcard include/config/mach/star9104nas.h) \ $(wildcard include/config/mach/pca100.h) \ $(wildcard include/config/mach/z3/dm365/mod/01.h) \ $(wildcard include/config/mach/hipox.h) \ $(wildcard include/config/mach/omap3/piteds.h) \ $(wildcard include/config/mach/bm150r.h) \ $(wildcard include/config/mach/tbone.h) \ $(wildcard include/config/mach/merlin.h) \ $(wildcard include/config/mach/falcon.h) \ $(wildcard include/config/mach/davinci/da850/evm.h) \ $(wildcard include/config/mach/s5p6440.h) \ $(wildcard include/config/mach/at91sam9g10ek.h) \ $(wildcard include/config/mach/omap/4430sdp.h) \ $(wildcard include/config/mach/lpc313x.h) \ $(wildcard include/config/mach/magx/zn5.h) \ $(wildcard include/config/mach/magx/em30.h) \ $(wildcard include/config/mach/magx/ve66.h) \ $(wildcard include/config/mach/meesc.h) \ $(wildcard include/config/mach/otc570.h) \ $(wildcard include/config/mach/bcu2412.h) \ $(wildcard include/config/mach/beacon.h) \ $(wildcard include/config/mach/actia/tgw.h) \ $(wildcard include/config/mach/e4430.h) \ $(wildcard include/config/mach/ql300.h) \ $(wildcard include/config/mach/btmavb101.h) \ $(wildcard include/config/mach/btmawb101.h) \ $(wildcard include/config/mach/sq201.h) \ $(wildcard include/config/mach/quatro45xx.h) \ $(wildcard include/config/mach/openpad.h) \ $(wildcard include/config/mach/tx25.h) \ $(wildcard include/config/mach/omap3/torpedo.h) \ $(wildcard include/config/mach/htcraphael/k.h) \ $(wildcard include/config/mach/lal43.h) \ $(wildcard include/config/mach/htcraphael/cdma500.h) \ $(wildcard include/config/mach/anw6410.h) \ $(wildcard include/config/mach/htcprophet.h) \ $(wildcard include/config/mach/cfa/10022.h) \ $(wildcard include/config/mach/imx27/visstrim/m10.h) \ $(wildcard include/config/mach/px2imx27.h) \ $(wildcard include/config/mach/stm3210e/eval.h) \ $(wildcard include/config/mach/dvs10.h) \ $(wildcard include/config/mach/portuxg20.h) \ $(wildcard include/config/mach/arm/spv.h) \ $(wildcard include/config/mach/smdkc110.h) \ $(wildcard include/config/mach/cabespresso.h) \ $(wildcard include/config/mach/hmc800.h) \ $(wildcard include/config/mach/sholes.h) \ $(wildcard include/config/mach/btmxc31.h) \ $(wildcard include/config/mach/dt501.h) \ $(wildcard include/config/mach/ktx.h) \ $(wildcard include/config/mach/omap3517evm.h) \ $(wildcard include/config/mach/netspace/v2.h) \ $(wildcard include/config/mach/netspace/max/v2.h) \ $(wildcard include/config/mach/d2net/v2.h) \ $(wildcard include/config/mach/net2big/v2.h) \ $(wildcard include/config/mach/net4big/v2.h) \ $(wildcard include/config/mach/net5big/v2.h) \ $(wildcard include/config/mach/endb2443.h) \ $(wildcard include/config/mach/inetspace/v2.h) \ $(wildcard include/config/mach/tros.h) \ $(wildcard include/config/mach/pelco/homer.h) \ $(wildcard include/config/mach/ofsp8.h) \ $(wildcard include/config/mach/at91sam9g45ekes.h) \ $(wildcard include/config/mach/guf/cupid.h) \ $(wildcard include/config/mach/eab1r.h) \ $(wildcard include/config/mach/cordoba.h) \ $(wildcard include/config/mach/irvine.h) \ $(wildcard include/config/mach/sff772.h) \ $(wildcard include/config/mach/pelco/milano.h) \ $(wildcard include/config/mach/pc7302.h) \ $(wildcard include/config/mach/bip6000.h) \ $(wildcard include/config/mach/silvermoon.h) \ $(wildcard include/config/mach/vc0830.h) \ $(wildcard include/config/mach/dt430.h) \ $(wildcard include/config/mach/ji42pf.h) \ $(wildcard include/config/mach/gnet/ksm.h) \ $(wildcard include/config/mach/gnet/sgm.h) \ $(wildcard include/config/mach/gnet/sgr.h) \ $(wildcard include/config/mach/omap3/icetekevm.h) \ $(wildcard include/config/mach/pnp.h) \ $(wildcard include/config/mach/ctera/2bay/k.h) \ $(wildcard include/config/mach/ctera/2bay/u.h) \ $(wildcard include/config/mach/sas/c.h) \ $(wildcard include/config/mach/vma2315.h) \ $(wildcard include/config/mach/vcs.h) \ $(wildcard include/config/mach/spear600.h) \ $(wildcard include/config/mach/spear300.h) \ $(wildcard include/config/mach/spear1300.h) \ $(wildcard include/config/mach/lilly1131.h) \ $(wildcard include/config/mach/arvoo/ax301.h) \ $(wildcard include/config/mach/mapphone.h) \ $(wildcard include/config/mach/legend.h) \ $(wildcard include/config/mach/salsa.h) \ $(wildcard include/config/mach/lounge.h) \ $(wildcard include/config/mach/vision.h) \ $(wildcard include/config/mach/vmb20.h) \ $(wildcard include/config/mach/hy2410.h) \ $(wildcard include/config/mach/hy9315.h) \ $(wildcard include/config/mach/bullwinkle.h) \ $(wildcard include/config/mach/arm/ultimator2.h) \ $(wildcard include/config/mach/vs/v210.h) \ $(wildcard include/config/mach/vs/v212.h) \ $(wildcard include/config/mach/hmt.h) \ $(wildcard include/config/mach/suen3.h) \ $(wildcard include/config/mach/vesper.h) \ $(wildcard include/config/mach/str9.h) \ $(wildcard include/config/mach/omap3/wl/ff.h) \ $(wildcard include/config/mach/simcom.h) \ $(wildcard include/config/mach/mcwebio.h) \ $(wildcard include/config/mach/omap3/phrazer.h) \ $(wildcard include/config/mach/darwin.h) \ $(wildcard include/config/mach/oratiscomu.h) \ $(wildcard include/config/mach/rtsbc20.h) \ $(wildcard include/config/mach/i780.h) \ $(wildcard include/config/mach/gemini324.h) \ $(wildcard include/config/mach/oratislan.h) \ $(wildcard include/config/mach/oratisalog.h) \ $(wildcard include/config/mach/oratismadi.h) \ $(wildcard include/config/mach/oratisot16.h) \ $(wildcard include/config/mach/oratisdesk.h) \ $(wildcard include/config/mach/v2p/ca9.h) \ $(wildcard include/config/mach/sintexo.h) \ $(wildcard include/config/mach/cm3389.h) \ $(wildcard include/config/mach/omap3/cio.h) \ $(wildcard include/config/mach/sgh/i900.h) \ $(wildcard include/config/mach/bst100.h) \ $(wildcard include/config/mach/passion.h) \ $(wildcard include/config/mach/indesign/at91sam.h) \ $(wildcard include/config/mach/c4/badger.h) \ $(wildcard include/config/mach/c4/viper.h) \ $(wildcard include/config/mach/d2net.h) \ $(wildcard include/config/mach/bigdisk.h) \ $(wildcard include/config/mach/notalvision.h) \ $(wildcard include/config/mach/omap3/kboc.h) \ $(wildcard include/config/mach/cyclone.h) \ $(wildcard include/config/mach/ninja.h) \ $(wildcard include/config/mach/at91sam9g20ek/2mmc.h) \ $(wildcard include/config/mach/bcmring.h) \ $(wildcard include/config/mach/resol/dl2.h) \ $(wildcard include/config/mach/ifosw.h) \ $(wildcard include/config/mach/htcrhodium.h) \ $(wildcard include/config/mach/htctopaz.h) \ $(wildcard include/config/mach/matrix504.h) \ $(wildcard include/config/mach/mrfsa.h) \ $(wildcard include/config/mach/sc/p270.h) \ $(wildcard include/config/mach/atlas5/evb.h) \ $(wildcard include/config/mach/pelco/lobox.h) \ $(wildcard include/config/mach/dilax/pcu200.h) \ $(wildcard include/config/mach/leonardo.h) \ $(wildcard include/config/mach/zoran/approach7.h) \ $(wildcard include/config/mach/dp6xx.h) \ $(wildcard include/config/mach/bcm2153/vesper.h) \ $(wildcard include/config/mach/passionc.h) \ $(wildcard include/config/mach/clickc.h) \ $(wildcard include/config/mach/zb/gateway.h) \ $(wildcard include/config/mach/tazcard.h) \ $(wildcard include/config/mach/tazdev.h) \ $(wildcard include/config/mach/annax/cb/arm.h) \ $(wildcard include/config/mach/annax/dm3.h) \ $(wildcard include/config/mach/cerebric.h) \ $(wildcard include/config/mach/orca.h) \ $(wildcard include/config/mach/pc9260.h) \ $(wildcard include/config/mach/ems285a.h) \ $(wildcard include/config/mach/gec2410.h) \ $(wildcard include/config/mach/gec2440.h) \ $(wildcard include/config/mach/arch/mw903.h) \ $(wildcard include/config/mach/mw2440.h) \ $(wildcard include/config/mach/ecac2378.h) \ $(wildcard include/config/mach/tazkiosk.h) \ $(wildcard include/config/mach/whiterabbit/mch.h) \ $(wildcard include/config/mach/sbox9263.h) \ $(wildcard include/config/mach/oreo.h) \ $(wildcard include/config/mach/smdk6442.h) \ $(wildcard include/config/mach/openrd/base.h) \ $(wildcard include/config/mach/incredible.h) \ $(wildcard include/config/mach/incrediblec.h) \ $(wildcard include/config/mach/heroct.h) \ $(wildcard include/config/mach/mmnet1000.h) \ $(wildcard include/config/mach/devkit8000.h) \ $(wildcard include/config/mach/devkit9000.h) \ $(wildcard include/config/mach/mx31txtr.h) \ $(wildcard include/config/mach/u380.h) \ $(wildcard include/config/mach/hualu/board.h) \ $(wildcard include/config/mach/npcmx50.h) \ $(wildcard include/config/mach/mx51/lange51.h) \ $(wildcard include/config/mach/mx51/lange52.h) \ $(wildcard include/config/mach/riom.h) \ $(wildcard include/config/mach/comcas.h) \ $(wildcard include/config/mach/wsi/mx27.h) \ $(wildcard include/config/mach/cm/t35.h) \ $(wildcard include/config/mach/net2big.h) \ $(wildcard include/config/mach/motorola/a1600.h) \ $(wildcard include/config/mach/igep0020.h) \ $(wildcard include/config/mach/igep0010.h) \ $(wildcard include/config/mach/mv6281gtwge2.h) \ $(wildcard include/config/mach/scat100.h) \ $(wildcard include/config/mach/sanmina.h) \ $(wildcard include/config/mach/momento.h) \ $(wildcard include/config/mach/nuc9xx.h) \ $(wildcard include/config/mach/nuc910evb.h) \ $(wildcard include/config/mach/nuc920evb.h) \ $(wildcard include/config/mach/nuc950evb.h) \ $(wildcard include/config/mach/nuc945evb.h) \ $(wildcard include/config/mach/nuc960evb.h) \ $(wildcard include/config/mach/nuc932evb.h) \ $(wildcard include/config/mach/nuc900.h) \ $(wildcard include/config/mach/sd1soc.h) \ $(wildcard include/config/mach/ln2440bc.h) \ $(wildcard include/config/mach/rsbc.h) \ $(wildcard include/config/mach/openrd/client.h) \ $(wildcard include/config/mach/hpipaq11x.h) \ $(wildcard include/config/mach/wayland.h) \ $(wildcard include/config/mach/acnbsx102.h) \ $(wildcard include/config/mach/hwat91.h) \ $(wildcard include/config/mach/at91sam9263cs.h) \ $(wildcard include/config/mach/csb732.h) \ $(wildcard include/config/mach/u8500.h) \ $(wildcard include/config/mach/huqiu.h) \ $(wildcard include/config/mach/mx51/kunlun.h) \ $(wildcard include/config/mach/pmt1g.h) \ $(wildcard include/config/mach/htcelf.h) \ $(wildcard include/config/mach/armadillo420.h) \ $(wildcard include/config/mach/armadillo440.h) \ $(wildcard include/config/mach/u/chip/dual/arm.h) \ $(wildcard include/config/mach/csr/bdb3.h) \ $(wildcard include/config/mach/dolby/cat1018.h) \ $(wildcard include/config/mach/hy9307.h) \ $(wildcard include/config/mach/a/es.h) \ $(wildcard include/config/mach/davinci/irif.h) \ $(wildcard include/config/mach/agama9263.h) \ $(wildcard include/config/mach/marvell/jasper.h) \ $(wildcard include/config/mach/flint.h) \ $(wildcard include/config/mach/tavorevb3.h) \ $(wildcard include/config/mach/sch/m490.h) \ $(wildcard include/config/mach/rbl01.h) \ $(wildcard include/config/mach/omnifi.h) \ $(wildcard include/config/mach/otavalo.h) \ $(wildcard include/config/mach/sienna.h) \ $(wildcard include/config/mach/htc/excalibur/s620.h) \ $(wildcard include/config/mach/htc/opal.h) \ $(wildcard include/config/mach/touchbook.h) \ $(wildcard include/config/mach/latte.h) \ $(wildcard include/config/mach/xa200.h) \ $(wildcard include/config/mach/nimrod.h) \ $(wildcard include/config/mach/cc9p9215/3g.h) \ $(wildcard include/config/mach/cc9p9215/3gjs.h) \ $(wildcard include/config/mach/tk71.h) \ $(wildcard include/config/mach/comham3525.h) \ $(wildcard include/config/mach/mx31erebus.h) \ $(wildcard include/config/mach/mcardmx27.h) \ $(wildcard include/config/mach/paradise.h) \ $(wildcard include/config/mach/tide.h) \ $(wildcard include/config/mach/wzl2440.h) \ $(wildcard include/config/mach/sdrdemo.h) \ $(wildcard include/config/mach/ethercan2.h) \ $(wildcard include/config/mach/ecmimg20.h) \ $(wildcard include/config/mach/omap/dragon.h) \ $(wildcard include/config/mach/halo.h) \ $(wildcard include/config/mach/huangshan.h) \ $(wildcard include/config/mach/vl/ma2sc.h) \ $(wildcard include/config/mach/raumfeld/rc.h) \ $(wildcard include/config/mach/raumfeld/connector.h) \ $(wildcard include/config/mach/raumfeld/speaker.h) \ $(wildcard include/config/mach/multibus/master.h) \ $(wildcard include/config/mach/multibus/pbk.h) \ $(wildcard include/config/mach/tnetv107x.h) \ $(wildcard include/config/mach/snake.h) \ $(wildcard include/config/mach/cwmx27.h) \ $(wildcard include/config/mach/sch/m480.h) \ $(wildcard include/config/mach/platypus.h) \ $(wildcard include/config/mach/pss2.h) \ $(wildcard include/config/mach/davinci/apm150.h) \ $(wildcard include/config/mach/str9100.h) \ $(wildcard include/config/mach/net5big.h) \ $(wildcard include/config/mach/seabed9263.h) \ $(wildcard include/config/mach/mx51/m2id.h) \ $(wildcard include/config/mach/octvocplus/eb.h) \ $(wildcard include/config/mach/klk/firefox.h) \ $(wildcard include/config/mach/klk/wirma.h) \ $(wildcard include/config/mach/klk/wirma/mmi.h) \ $(wildcard include/config/mach/supersonic.h) \ $(wildcard include/config/mach/liberty.h) \ $(wildcard include/config/mach/mh355.h) \ $(wildcard include/config/mach/pc7802.h) \ $(wildcard include/config/mach/gnet/sgc.h) \ $(wildcard include/config/mach/einstein15.h) \ $(wildcard include/config/mach/cmpd.h) \ $(wildcard include/config/mach/davinci/hase1.h) \ $(wildcard include/config/mach/lgeincitephone.h) \ $(wildcard include/config/mach/ea313x.h) \ $(wildcard include/config/mach/fwbd/39064.h) \ $(wildcard include/config/mach/fwbd/390128.h) \ $(wildcard include/config/mach/pelco/moe.h) \ $(wildcard include/config/mach/minimix27.h) \ $(wildcard include/config/mach/omap3/thunder.h) \ $(wildcard include/config/mach/mx27amata.h) \ $(wildcard include/config/mach/bgat1.h) \ $(wildcard include/config/mach/buzz.h) \ $(wildcard include/config/mach/mb9g20.h) \ $(wildcard include/config/mach/yushan.h) \ $(wildcard include/config/mach/lizard.h) \ $(wildcard include/config/mach/omap3polycom.h) \ $(wildcard include/config/mach/smdkv210.h) \ $(wildcard include/config/mach/bravo.h) \ $(wildcard include/config/mach/siogentoo1.h) \ $(wildcard include/config/mach/siogentoo2.h) \ $(wildcard include/config/mach/sm3k.h) \ $(wildcard include/config/mach/acer/tempo/f900.h) \ $(wildcard include/config/mach/sst61vc010/dev.h) \ $(wildcard include/config/mach/glittertind.h) \ $(wildcard include/config/mach/omap/zoom3.h) \ $(wildcard include/config/mach/omap/3630sdp.h) \ $(wildcard include/config/mach/cybook2440.h) \ $(wildcard include/config/mach/torino/s.h) \ $(wildcard include/config/mach/havana.h) \ $(wildcard include/config/mach/beaumont/11.h) \ $(wildcard include/config/mach/vanguard.h) \ $(wildcard include/config/mach/s5pc110/draco.h) \ $(wildcard include/config/mach/cartesio/two.h) \ $(wildcard include/config/mach/aster.h) \ $(wildcard include/config/mach/voguesv210.h) \ $(wildcard include/config/mach/acm500x.h) \ $(wildcard include/config/mach/km9260.h) \ $(wildcard include/config/mach/nideflexg1.h) \ $(wildcard include/config/mach/ctera/plug/io.h) \ $(wildcard include/config/mach/smartq7.h) \ $(wildcard include/config/mach/at91sam9g10ek2.h) \ $(wildcard include/config/mach/asusp527.h) \ $(wildcard include/config/mach/at91sam9g20mpm2.h) \ $(wildcard include/config/mach/topasa900.h) \ $(wildcard include/config/mach/electrum/100.h) \ $(wildcard include/config/mach/mx51grb.h) \ $(wildcard include/config/mach/xea300.h) \ $(wildcard include/config/mach/htcstartrek.h) \ $(wildcard include/config/mach/lima.h) \ $(wildcard include/config/mach/csb740.h) \ $(wildcard include/config/mach/usb/s8815.h) \ $(wildcard include/config/mach/watson/efm/plugin.h) \ $(wildcard include/config/mach/milkyway.h) \ $(wildcard include/config/mach/g4evm.h) \ $(wildcard include/config/mach/picomod6.h) \ $(wildcard include/config/mach/omapl138/hawkboard.h) \ $(wildcard include/config/mach/ip6000.h) \ $(wildcard include/config/mach/ip6010.h) \ $(wildcard include/config/mach/utm400.h) \ $(wildcard include/config/mach/omap3/zybex.h) \ $(wildcard include/config/mach/wireless/space.h) \ $(wildcard include/config/mach/sx560.h) \ $(wildcard include/config/mach/ts41x.h) \ $(wildcard include/config/mach/elphel10373.h) \ $(wildcard include/config/mach/rhobot.h) \ $(wildcard include/config/mach/mx51/refresh.h) \ $(wildcard include/config/mach/ls9260.h) \ $(wildcard include/config/mach/shank.h) \ $(wildcard include/config/mach/qsd8x50/st1.h) \ $(wildcard include/config/mach/at91sam9m10ekes.h) \ $(wildcard include/config/mach/hiram.h) \ $(wildcard include/config/mach/phy3250.h) \ $(wildcard include/config/mach/ea3250.h) \ $(wildcard include/config/mach/fdi3250.h) \ $(wildcard include/config/mach/whitestone.h) \ $(wildcard include/config/mach/at91sam9263nit.h) \ $(wildcard include/config/mach/ccmx51.h) \ $(wildcard include/config/mach/ccmx51js.h) \ $(wildcard include/config/mach/ccwmx51.h) \ $(wildcard include/config/mach/ccwmx51js.h) \ $(wildcard include/config/mach/mini6410.h) \ $(wildcard include/config/mach/tiny6410.h) \ $(wildcard include/config/mach/nano6410.h) \ $(wildcard include/config/mach/at572d940hfnldb.h) \ $(wildcard include/config/mach/htcleo.h) \ $(wildcard include/config/mach/avp13.h) \ $(wildcard include/config/mach/xxsvideod.h) \ $(wildcard include/config/mach/vpnext.h) \ $(wildcard include/config/mach/swarco/itc3.h) \ $(wildcard include/config/mach/tx51.h) \ $(wildcard include/config/mach/dolby/cat1021.h) \ $(wildcard include/config/mach/mx28evk.h) \ $(wildcard include/config/mach/phoenix260.h) \ $(wildcard include/config/mach/uvaca/stork.h) \ $(wildcard include/config/mach/smartq5.h) \ $(wildcard include/config/mach/all3078.h) \ $(wildcard include/config/mach/ctera/2bay/ds.h) \ $(wildcard include/config/mach/siogentoo3.h) \ $(wildcard include/config/mach/epb5000.h) \ $(wildcard include/config/mach/hy9263.h) \ $(wildcard include/config/mach/acer/tempo/m900.h) \ $(wildcard include/config/mach/acer/tempo/dx900.h) \ $(wildcard include/config/mach/acer/tempo/x960.h) \ $(wildcard include/config/mach/acer/eten/v900.h) \ $(wildcard include/config/mach/acer/eten/x900.h) \ $(wildcard include/config/mach/bonnell.h) \ $(wildcard include/config/mach/oht/mx27.h) \ $(wildcard include/config/mach/htcquartz.h) \ $(wildcard include/config/mach/davinci/dm6467tevm.h) \ $(wildcard include/config/mach/c3ax03.h) \ $(wildcard include/config/mach/mxt/td60.h) \ $(wildcard include/config/mach/esyx.h) \ $(wildcard include/config/mach/dove/db2.h) \ $(wildcard include/config/mach/bulldog.h) \ $(wildcard include/config/mach/derell/me2000.h) \ $(wildcard include/config/mach/bcmring/base.h) \ $(wildcard include/config/mach/bcmring/evm.h) \ $(wildcard include/config/mach/bcmring/evm/jazz.h) \ $(wildcard include/config/mach/bcmring/sp.h) \ $(wildcard include/config/mach/bcmring/sv.h) \ $(wildcard include/config/mach/bcmring/sv/jazz.h) \ $(wildcard include/config/mach/bcmring/tablet.h) \ $(wildcard include/config/mach/bcmring/vp.h) \ $(wildcard include/config/mach/bcmring/evm/seikor.h) \ $(wildcard include/config/mach/bcmring/sp/wqvga.h) \ $(wildcard include/config/mach/bcmring/custom.h) \ $(wildcard include/config/mach/acer/s200.h) \ $(wildcard include/config/mach/bt270.h) \ $(wildcard include/config/mach/iseo.h) \ $(wildcard include/config/mach/cezanne.h) \ $(wildcard include/config/mach/lucca.h) \ $(wildcard include/config/mach/supersmart.h) \ $(wildcard include/config/mach/cs/misano.h) \ $(wildcard include/config/mach/magnolia2.h) \ $(wildcard include/config/mach/emxx.h) \ $(wildcard include/config/mach/outlaw.h) \ $(wildcard include/config/mach/riot/bei2.h) \ $(wildcard include/config/mach/riot/vox.h) \ $(wildcard include/config/mach/riot/x37.h) \ $(wildcard include/config/mach/mega25mx.h) \ $(wildcard include/config/mach/benzina2.h) \ $(wildcard include/config/mach/ignite.h) \ $(wildcard include/config/mach/foggia.h) \ $(wildcard include/config/mach/arezzo.h) \ $(wildcard include/config/mach/leica/skywalker.h) \ $(wildcard include/config/mach/jacinto2/jamr.h) \ $(wildcard include/config/mach/gts/nova.h) \ $(wildcard include/config/mach/p3600.h) \ $(wildcard include/config/mach/dlt2.h) \ $(wildcard include/config/mach/df3120.h) \ $(wildcard include/config/mach/ecucore/9g20.h) \ $(wildcard include/config/mach/nautel/lpc3240.h) \ $(wildcard include/config/mach/glacier.h) \ $(wildcard include/config/mach/phrazer/bulldog.h) \ $(wildcard include/config/mach/omap3/bulldog.h) \ $(wildcard include/config/mach/pca101.h) \ $(wildcard include/config/mach/buzzc.h) \ $(wildcard include/config/mach/sasie2.h) \ $(wildcard include/config/mach/davinci/cio.h) \ $(wildcard include/config/mach/smartmeter/dl.h) \ $(wildcard include/config/mach/wzl6410.h) \ $(wildcard include/config/mach/wzl6410m.h) \ $(wildcard include/config/mach/wzl6410f.h) \ $(wildcard include/config/mach/wzl6410i.h) \ $(wildcard include/config/mach/spacecom1.h) \ $(wildcard include/config/mach/pingu920.h) \ $(wildcard include/config/mach/bravoc.h) \ $(wildcard include/config/mach/cybo2440.h) \ $(wildcard include/config/mach/vdssw.h) \ $(wildcard include/config/mach/romulus.h) \ $(wildcard include/config/mach/omap/magic.h) \ $(wildcard include/config/mach/eltd100.h) \ $(wildcard include/config/mach/capc7117.h) \ $(wildcard include/config/mach/swan.h) \ $(wildcard include/config/mach/veu.h) \ $(wildcard include/config/mach/rm2.h) \ $(wildcard include/config/mach/tt2100.h) \ $(wildcard include/config/mach/venice.h) \ $(wildcard include/config/mach/pc7323.h) \ $(wildcard include/config/mach/masp.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc1.h) \ $(wildcard include/config/mach/lexikon.h) \ $(wildcard include/config/mach/mini2440v2.h) \ $(wildcard include/config/mach/icontrol.h) \ $(wildcard include/config/mach/sheevad.h) \ $(wildcard include/config/mach/qsd8x50a/st1/1.h) \ $(wildcard include/config/mach/qsd8x50a/st1/5.h) \ $(wildcard include/config/mach/bee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/linkage.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/linux/stat.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/math64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/mutex-debug.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/module.h \ include/linux/vermagic.h \ include/linux/utsrelease.h \ drivers/hid/hid-dummy.mod.o: $(deps_drivers/hid/hid-dummy.mod.o) $(deps_drivers/hid/hid-dummy.mod.o):
HCDRJacob/wildfire-kernel
drivers/hid/.hid-dummy.mod.o.cmd
bat
gpl-2.0
140,516
cmd_net/netlink/built-in.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o net/netlink/built-in.o net/netlink/af_netlink.o net/netlink/genetlink.o
JoinTheRealms/TF700-dualboot-stockbased
net/netlink/.built-in.o.cmd
bat
gpl-2.0
213
@setlocal @REM copy the EXE into C:\MDOS, IFF changed @set TMPDIR=C:\MDOS @set TMPFIL1=gshhg.exe @set TMPFIL2=gshhg.exe @set TMPSRC=Release\%TMPFIL1% @if NOT EXIST %TMPSRC% goto ERR1 @echo Current source %TMPSRC% @call dirmin %TMPSRC% @if NOT EXIST %TMPDIR%\nul goto ERR2 @set TMPDST=%TMPDIR%\%TMPFIL2% @if NOT EXIST %TMPDST% goto DOCOPY @echo Current destination %TMPDST% @call dirmin %TMPDST% @REM Compare @fc4 -q -v0 -b %TMPSRC% %TMPDST% >nul @if ERRORLEVEL 2 goto NOFC4 @if ERRORLEVEL 1 goto DOCOPY @echo. @echo Files are the SAME... Nothing done... @echo. @goto END :NOFC4 @echo Can NOT run fc4! so doing copy... :DOCOPY @echo Will do 'copy %TMPSRC% %TMPDST%' @pause copy %TMPSRC% %TMPDST% @if NOT EXIST %TMPDST% goto ERR3 @call dirmin %TMPDST% @echo Done file update... @goto END :ERR1 @echo Source %TMPSRC% does NOT exist! Has it been built? *** FIX ME *** @goto ISERR :ERR2 @echo Destination %TMPDIR% does NOT exist! @goto ISERR :ERR3 @echo Copy of %TMPSRC% to %TMPDST% FAILED! @goto ISERR :ISERR @endlocal @exit /b 1 :END @endlocal @exit /b 0 @REM eof
geoffmcl/gshhg
build.x64/updexe.bat
bat
gpl-2.0
1,071
cmd_drivers/i2c/i2c-core.o := arm-eabi-gcc -Wp,-MD,drivers/i2c/.i2c-core.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(i2c_core)" -D"KBUILD_MODNAME=KBUILD_STR(i2c_core)" -D"DEBUG_HASH=37" -D"DEBUG_HASH2=61" -c -o drivers/i2c/i2c-core.o drivers/i2c/i2c-core.c deps_drivers/i2c/i2c-core.o := \ drivers/i2c/i2c-core.c \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/of.h) \ $(wildcard include/config/i2c/compat.h) \ $(wildcard include/config/x86.h) \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /data/repos/kernels/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /data/repos/kernels/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /data/repos/kernels/arch/arm/include/asm/posix_types.h \ /data/repos/kernels/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /data/repos/kernels/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /data/repos/kernels/arch/arm/include/asm/hwcap.h \ /data/repos/kernels/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /data/repos/kernels/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/linkage.h \ /data/repos/kernels/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /data/repos/kernels/arch/arm/include/asm/irqflags.h \ /data/repos/kernels/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ include/asm-generic/cmpxchg-local.h \ include/linux/stat.h \ /data/repos/kernels/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /data/repos/kernels/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /data/repos/kernels/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /data/repos/kernels/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /data/repos/kernels/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /data/repos/kernels/arch/arm/include/asm/div64.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /data/repos/kernels/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /data/repos/kernels/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /data/repos/kernels/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /data/repos/kernels/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ /data/repos/kernels/arch/arm/include/asm/spinlock.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /data/repos/kernels/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /data/repos/kernels/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /data/repos/kernels/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /data/repos/kernels/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/memory/hotplug/sparse.h) \ /data/repos/kernels/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /data/repos/kernels/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/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/arch/msm/cortex/a5.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ $(wildcard include/config/arch/msm/scorpionmp.h) \ $(wildcard include/config/arch/msm7x27.h) \ /data/repos/kernels/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /data/repos/kernels/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /data/repos/kernels/arch/arm/include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /data/repos/kernels/arch/arm/include/asm/smp.h \ arch/arm/mach-msm/include/mach/smp.h \ /data/repos/kernels/arch/arm/include/asm/hardware/gic.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /data/repos/kernels/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /data/repos/kernels/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /data/repos/kernels/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /data/repos/kernels/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /data/repos/kernels/arch/arm/include/asm/elf.h \ /data/repos/kernels/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ 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/completion.h \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ /data/repos/kernels/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/linux/i2c.h \ $(wildcard include/config/i2c.h) \ $(wildcard include/config/i2c/boardinfo.h) \ include/linux/i2c-id.h \ include/linux/mod_devicetable.h \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/devtmpfs.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm/runtime.h) \ $(wildcard include/config/pm/ops.h) \ /data/repos/kernels/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/capability.h \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /data/repos/kernels/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /data/repos/kernels/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /data/repos/kernels/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /data/repos/kernels/arch/arm/include/asm/ipcbuf.h \ /data/repos/kernels/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /data/repos/kernels/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /data/repos/kernels/arch/arm/include/asm/sigcontext.h \ /data/repos/kernels/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /data/repos/kernels/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/of.h \ $(wildcard include/config/sparc.h) \ $(wildcard include/config/of/dynamic.h) \ include/linux/idr.h \ include/linux/hardirq.h \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /data/repos/kernels/arch/arm/include/asm/hardirq.h \ /data/repos/kernels/arch/arm/include/asm/irq.h \ arch/arm/mach-msm/include/mach/irqs.h \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm8x60.h) \ $(wildcard include/config/arch/msm8960.h) \ arch/arm/mach-msm/include/mach/irqs-8x60.h \ include/linux/irq_cpustat.h \ include/linux/pm_runtime.h \ /data/repos/kernels/arch/arm/include/asm/uaccess.h \ /data/repos/kernels/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ drivers/i2c/i2c-core.h \ drivers/i2c/i2c-core.o: $(deps_drivers/i2c/i2c-core.o) $(deps_drivers/i2c/i2c-core.o):
bigbiff/i717-GB-Kernel
drivers/i2c/.i2c-core.o.cmd
bat
gpl-2.0
23,205
setMode -bscan setCable -p auto identify assignfile -p 2 -file top.mcs erase -p 2 program -p 2 quit
Murailab-arch/magukara
boards/netfpga/synthesis/flash.cmd
bat
gpl-3.0
100
@ECHO OFF SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION SET /A ERROR_HELP_SCREEN=1 SET /A ERROR_FILE_NOT_FOUND=2 SET /A ERROR_FILE_READ_ONLY=4 SET /A ERROR_UNKNOWN=8 set project_dir=%CD% set SCONS_MSCOMMON_DEBUG=- set PATH=C:\tools\msys64\mingw32\bin;C:\tools\msys64\usr\bin;%PATH% echo "JAVA_HOME : %JAVA_HOME%" call where bash call where cl call java -version call scons --version call gcc --version REM call clang --version call i686-w64-mingw32-g++ --version REM call perl -V call python --version REM call cl /? REM Get scons from http://fr1cslfrbm0059.misys.global.ad/download/scons/scons-2.4.1.zip and copy it to C:\Python27\scons-2.4.1 REM call C:\Python27\python.exe C:\Python27\scons-2.4.1\setup.py install REM call C:\Python27\scons-2.4.1.bat --version REM call C:\Python27\Scripts\pip2.7.exe install pywin32==228 call conan install sample\microsoft --build boost -g scons -if .\sample\build-x86_64 echo "===============" echo "BUILD" call date /T && ECHO date succeeded! call time /T cd %project_dir%\ || ECHO command return code %ERRORLEVEL% echo "cd %project_dir%\" REM /c/Python38/python.exe /c/Python38/Scripts/scons.exe echo "call C:\Python38\python.exe C:\Python38\Scripts\scons.exe %SCONS_OPTS%" REM call scons %SCONS_OPTS% || EXIT /B 1 call scons %SCONS_OPTS% IF %ERRORLEVEL% NEQ 0 ( ECHO do something here to address the error %ERRORLEVEL% REM EXIT 2 ) call date /T call time /T if not exist %project_dir%\install\winnt\debug\bin\run_tests.exe ( echo "Build failure: install\winnt\debug\bin\run_tests.exe not found." REM exit 1 ) if not exist %project_dir%\install\winnt\debug\bin\run_app.exe ( echo "Build failure: install\winnt\debug\bin\run_app.exe not found." REM exit 1 ) pause echo "===============" cd %project_dir%\install\winnt || EXIT /B 1 del ..\winnt.zip "C:\Program Files\7-Zip\7z" a -r ..\winnt.zip -xr!*.pdb * echo "===============" cd %WORKSPACE% || EXIT /B 1 echo NABLA #%BUILD_NUMBER%-sha1:%GIT_COMMIT:~0,6% > NABLA_WINDOWS_VERSION.TXT || EXIT /B 1 echo "===============" echo "scons use_mingw=False use_cpp11=False use_pthread=False" echo "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2019\Visual Studio Tools" echo "C:\VS\2019\BuildTools" pause echo ELVL: !ERRORLEVEL! IF NOT !ERRORLEVEL! == 0 ( ECHO ABORT: !ERRORLEVEL! exit /b !ERRORLEVEL! ) ELSE ( ECHO PROCEED: !ERRORLEVEL! ) REM exit 0
AlbanAndrieu/nabla-cpp
build.bat
bat
gpl-3.0
2,403
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\AdaptiveLNneuronmodelsforNENGO.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\AdaptiveLNneuronmodelsforNENGO.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
jleugeri/nengo-adaptiveLN-models
docs/make.bat
bat
gpl-3.0
7,301
REM -- Pushing \\Games-DL.stage.real.com\gameconsole files copy /y \\Games-DL.stage.real.com\gameconsole\"go ahead and push-gameconsole" \\Games-DL.stage.real.com\gameconsole\push-gameconsole echo OFF date /T >> \\Games-DL.stage.real.com\gameconsole\gameconsole_push.log time /T >> \\Games-DL.stage.real.com\gameconsole\gameconsole_push.log echo Reason: %1 %2 %3 %4 %5 %6 %7 %8 %9 >> \\Games-DL.stage.real.com\gameconsole\gameconsole_push.log
esc0rtd3w/realarcade-wrapper-killer
extras/dumps/sites/origin.gamehouse.com/gameconsole/gameconsole_push.bat
bat
gpl-3.0
443
@ECHO OFF SET FORMATOUT=%~p0\formatout.cmd CALL:getColorCode %1 %2 :getColorCode col ret -- converts color text to color code :: -- col [in] - color text BackgroundForeground, i.e.: BlueLYellow for 1E :: -- ret [out] - return variable to return color code in :$created 20060101 :$changed 20080219 :$categories Color,Echo :$source http://www.dostips.com SETLOCAL set col=%~1 set col=%col:Gray=8% set col=%col:LBlue=9% set col=%col:LGreen=A% set col=%col:LAqua=B% set col=%col:LRed=C% set col=%col:LPurple=D% set col=%col:LYellow=E% set col=%col:LWhite=F% set col=%col:Black=0% set col=%col:Blue=1% set col=%col:Green=2% set col=%col:Aqua=3% set col=%col:Red=4% set col=%col:Purple=5% set col=%col:Yellow=6% set col=%col:White=7% ENDLOCAL & IF "%~2" NEQ "" (SET %~2=%col%) ELSE (echo.%col%) GOTO :Done :FORMATOUT CALL %FORMATOUT% %~1 %~2 "%~3" "%~4%~5%~6" GOTO:EOF :Done
GaryLBaird/CommandLineHelper
scripts/cmd/libs/getColorCode.cmd
bat
gpl-3.0
912
nmake -f psp.mak CFG="PSP - Win32 load V2 dll Release" copy ..\..\..\win\dll\anet2.dll copy ..\..\..\win\dll\winets2.dll load2dr\load2dr -c=2 -d=winets2.dll -r=HamRoom -s=iserv.activision.com -l=Load.log :end
BygoneWorlds/anet
src/test/PSP/lrun.bat
bat
lgpl-2.1
209
@echo off setlocal @echo off REM # Get to the pwiz root directory set SCRIPTS_MISC_ROOT=%~dp0 set SCRIPTS_MISC_ROOT=%SCRIPTS_MISC_ROOT:~0,-1% pushd %SCRIPTS_MISC_ROOT%\..\.. set EXIT=0 REM # call clean echo ##teamcity[progressMessage 'Cleaning project...'] call clean.bat set EXIT=%ERRORLEVEL% if %EXIT% NEQ 0 set ERROR_TEXT=Error performing clean & goto error REM # the -p1 argument overrides bjam's default behavior of merging stderr into stdout REM # the --abbreviate-paths argument abbreviates paths like .../ftr1-value/ftr2-value/... REM # call quickbuild to build and run tests echo ##teamcity[progressMessage 'Running quickbuild...'] call quickbuild.bat -p1 --abbreviate-paths --teamcity-test-decoration --verbose-test %* set EXIT=%ERRORLEVEL% if %EXIT% NEQ 0 set ERROR_TEXT=Error running quickbuild & goto error REM # uncomment this to test that test failures and error output are handled properly REM call quickbuild.bat -p1 --teamcity-test-decoration pwiz/utility/misc//FailUnitTest pwiz/utility/misc//FailRunTest popd :error echo "##teamcity[message text='%ERROR_TEXT%' status='ERROR']" exit /b %EXIT%
biospi/mzmlb
pwiz/scripts/misc/tcbuild.bat
bat
apache-2.0
1,155
@ECHO OFF :Loop IF "%1"=="clean" GOTO clean IF "%1"=="build" GOTO build :clean rm -f lib/*.pyc ui/*.pyc ui/ui_*.py resources*.py *.pyc :build ( echo Building... CALL pyuic4 ui/MainWindow.ui > ui/ui_mainwindow.py CALL pyrcc4 resources.qrc -o resources_rc.py GOTO end REM EXIT /B 0 ) :end echo Done!
luis-wang/python_Tesseract_GUI_Demo
win32compile.bat
bat
apache-2.0
336
@REM This batch file has been generated by the IAR Embedded Workbench @REM C-SPY Debugger, as an aid to preparing a command line for running @REM the cspybat command line utility using the appropriate settings. @REM @REM Note that this file is generated every time a new debug session @REM is initialized, so you may want to move or rename the file before @REM making changes. @REM @REM You can launch cspybat by typing the name of this batch file followed @REM by the name of the debug file (usually an ELF/DWARF or UBROF file). @REM @REM Read about available command line parameters in the C-SPY Debugging @REM Guide. Hints about additional command line parameters that may be @REM useful in specific cases: @REM --download_only Downloads a code image without starting a debug @REM session afterwards. @REM --silent Omits the sign-on message. @REM --timeout Limits the maximum allowed execution time. @REM "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\common\bin\cspybat" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\arm\bin\armproc.dll" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\arm\bin\armsim2.dll" %1 --plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\arm\bin\armbat.dll" --backend -B "--endian=little" "--cpu=ARM7TDMI" "--fpu=None" "--semihosting=none" "--multicore_nr_of_cores=1"
takeshineshiro/cc3200_wifi_module
WMScanner/settings/WMScanner.Release.cspy.bat
bat
apache-2.0
1,424
node driver.js --mode=local --platform=mobileweb
appcelerator/titanium_mobile_tizen
tests/anvil/driver/start_mobileweb.bat
bat
apache-2.0
48
@echo off %comspec% /c ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 8.1 && "fbuild.exe" %*"
pierricgimmig/orbitprofiler
external/DIA2Dump/fb.bat
bat
bsd-2-clause
122
@echo off if "%1" == "" goto error del dcfdrvr dcf_%1c.zip cd .. pack client\packing.lst client\dcfdrvr /L copy readme.os2 client cd client zip dcf_%1c.zip dcfinst.exe dcfinst.hlp dcfdrvr readme.os2 goto end :error echo Syntax: makeinst <bldlevel> echo example: makeinst 250 :end 
OS2World/APP-CLOCK-Clock60
install/Client/makeinst.cmd
bat
bsd-3-clause
285
@echo off set BATCH_DIR=%~dp0 cd %BATCH_DIR% cd ..\.. set MY_DIR=%CD% call build\auto\setup_vs_any.cmd call build\auto\helper_get_svnversion.cmd call build\auto\helper_get_openmpt_version.cmd set MPT_REVISION=%OPENMPT_VERSION%-r%SVNVERSION% cd bin\Win32 || goto error del /f /q openmpt-win32old.tar del /f /q openmpt-win32old-%MPT_REVISION%.7z copy /y ..\..\LICENSE .\LICENSE.txt || goto error rmdir /s /q Licenses mkdir Licenses copy /y ..\..\packageTemplate\Licenses\*.* .\Licenses\ || goto error "C:\Program Files\7-Zip\7z.exe" a -t7z -mx=9 openmpt-win32old-%MPT_REVISION%.7z ^ LICENSE.txt ^ Licenses ^ mptrack.exe ^ OpenMPT_SoundTouch_f32.dll ^ PluginBridge32.exe ^ PluginBridge64.exe ^ || goto error "C:\Program Files\7-Zip\7z.exe" a -t7z -mx=9 openmpt-win32old-%MPT_REVISION%-symbols.7z mptrack.pdb || goto error "C:\Program Files\7-Zip\7z.exe" a -ttar openmpt-win32old.tar openmpt-win32old-%MPT_REVISION%.7z openmpt-win32old-%MPT_REVISION%-symbols.7z || goto error del /f /q openmpt-win32old-%MPT_REVISION%.7z del /f /q openmpt-win32old-%MPT_REVISION%-symbols.7z cd ..\.. || goto error goto noerror :error cd "%MY_DIR%" exit 1 :noerror cd "%MY_DIR%" exit 0
ModusCreateOrg/libOpenMPT-ios
libopenmpt-0.2.6401/build/auto/package_openmpt_win32old.cmd
bat
bsd-3-clause
1,231
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCPRPT.S04_StreamForErrorCodeTable_TestSuite.MSOXCPRPT_S04_StreamForErrorCodeTable_TestSuite4 /testcontainer:..\..\MS-OXCPRPT\TestSuite\bin\Debug\MS-OXCPRPT_TestSuite.dll /runconfig:..\..\MS-OXCPRPT\MS-OXCPRPT.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeMAPI/Source/Scripts/MS-OXCPRPT/RunMSOXCPRPT_S04_StreamForErrorCodeTable_TestSuite4.cmd
bat
mit
331
cmd_drivers/input/touchscreen/built-in.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/input/touchscreen/built-in.o drivers/input/touchscreen/atmel.o
jdlfg/Mecha-kernel-jdlfg
drivers/input/touchscreen/.built-in.o.cmd
bat
gpl-2.0
210
cmd_drivers/net/built-in.o := arm-eabi-ld -EL -r -o drivers/net/built-in.o drivers/net/mii.o drivers/net/phy/built-in.o drivers/net/Space.o drivers/net/loopback.o drivers/net/ppp_generic.o drivers/net/ppp_deflate.o drivers/net/bsd_comp.o drivers/net/ppp_mppe.o drivers/net/pppox.o drivers/net/pppolac.o drivers/net/pppopns.o drivers/net/slip.o drivers/net/slhc.o drivers/net/dummy.o drivers/net/tun.o drivers/net/smc91x.o drivers/net/smc911x.o drivers/net/smsc911x.o drivers/net/arm/built-in.o drivers/net/wireless/built-in.o drivers/net/msm_rmnet_bam.o
MrHyde03/android_kernel_samsung_espressovzw
drivers/net/.built-in.o.cmd
bat
gpl-2.0
559
@echo off chcp 65001 echo. pushd %~dp0 ::Attempts to start py launcher without relying on PATH %SYSTEMROOT%\py.exe --version > NUL 2>&1 IF %ERRORLEVEL% NEQ 0 GOTO attempt %SYSTEMROOT%\py.exe -3 launcher.py PAUSE GOTO end ::Attempts to start py launcher by relying on PATH :attempt py.exe --version > NUL 2>&1 IF %ERRORLEVEL% NEQ 0 GOTO lastattempt py.exe -3 launcher.py PAUSE GOTO end ::As a last resort, attempts to start whatever Python there is :lastattempt python.exe --version > NUL 2>&1 IF %ERRORLEVEL% NEQ 0 GOTO message python.exe launcher.py PAUSE GOTO end :message echo Couldn't find a valid Python ^>3.5 installation. Python needs to be installed and available in the PATH environment echo variable. PAUSE :end
Controller-Network/MARViN-D
start_launcher.bat
bat
gpl-3.0
727
@echo off powershell -NoProfile -ExecutionPolicy Bypass -Command "& .\ConvertImagesToPdfFromUrlsAsynchronously.ps1" echo Script finished with errorlevel=%errorlevel% pause
bytescout/ByteScout-SDK-SourceCode
PDF.co Web API/Image To PDF API/PowerShell/Convert Images To PDF From URLs Asynchronously/run.bat
bat
apache-2.0
173
@echo off setlocal if not exist "%JAVA_HOME%\bin\java.exe" ( echo "Please set JAVA_HOME" exit /b 1 ) rem Set Quartz to the base directory of the Quartz Distribution @SET WD=%~d0%~p0 @SET QUARTZ=%WD%..\.. @rem setup the class path... CALL "%WD%..\bin\buildcp.bat" SET QUARTZ_CP=%TMP_CP% rem !!!!!!! Please read important information. !!!!!! rem If "java" is not in your path, please set the path rem for Java 2 Runtime Environment in the path variable below rem for example : rem @SET PATH=D:\jdk1.6.0_18;%PATH% rem rem a configuration file for log4j logging @SET LOG4J_PROPS="-Dlog4j.configuration=file:%WD%log4j.xml" rem Set the location and name of the quartz.properties file @SET QUARTZ_PROPS="-Dorg.quartz.properties=%WD%instance1.properties" rem Set the path to your Terracotta server home here @SET INSTALL_DIR=%WD%..\..\.. IF NOT EXIST "%INSTALL_DIR%\server\bin\start-tc-server.bat" ( echo "Modify the script to set INSTALL_DIR" exit /B ) dir /b "%INSTALL_DIR%\apis\toolkit\lib\terracotta-toolkit*.jar" > temp.tmp FOR /F %%I IN (temp.tmp) DO SET TC_CP="%INSTALL_DIR%\apis\toolkit\lib\%%I";%TC_CP% del temp.tmp "%JAVA_HOME%\bin\java.exe" -cp %QUARTZ_CP%;%TC_CP% %QUARTZ_PROPS% %LOG4J_PROPS% -Dtc.install-root=%INSTALL_DIR% org.quartz.examples.example15.ClusterExample %1 endlocal
suthat/signal
vendor/quartz-2.2.0/examples/example15/instance1.bat
bat
apache-2.0
1,343
dotnet fixie -- --category Delivery --category Security
Suremaker/LightBDD
examples/Example.LightBDD.Fixie2/run-dotnet-fixie-filter-categories.cmd
bat
bsd-2-clause
55
@echo off rem Batch script for running the test suite. rem Requires the python package `nose` to be installed. set nosetests=call python -W ignore::DeprecationWarning -m nose %nosetests% ^ tests/test_provided_code.py ^ tests/test_1_parsing.py ^ tests/test_2_evaluating_simple_expressions.py ^ tests/test_3_evaluating_complex_expressions.py ^ tests/test_4_working_with_variables_and_environments.py ^ tests/test_5_adding_functions_to_the_mix.py ^ tests/test_6_working_with_lists.py ^ tests/test_7_using_the_language.py ^ tests/test_8_final_touches.py ^ tests/test_sanity_checks.py ^ --stop
kvalle/diy-lisp
run-tests.bat
bat
bsd-3-clause
590
@if (@x)==(@y) @end /***** jscript comment ****** @echo off cscript //E:JScript //nologo "%~f0" "%~nx0" %* exit /b %errorlevel% @if (@x)==(@y) @end ****** end comment *********/ var FileSystemObj = new ActiveXObject("Scripting.FileSystemObject"); var ARGS = WScript.Arguments; var scriptName=ARGS.Item(0); //var arguments:String[] = Environment.GetCommandLineArgs(); var directory="."; //var filter="creation"; var max_date=(new Date()).getTime(); var min_date=(new Date(0)).getTime(); var DD=0; var hh=0; var mm=0; var ss=0; var recursive=true; var show_dirs=false; var show_files=true; var direction="after"; //var show_files=true; //var show_dirs=false; var getFunct=getDateCreated; function printHelp(){ WScript.Echo(scriptName + " filters files/directories by date or time"); WScript.Echo(""); WScript.Echo("Usage:"); WScript.Echo(scriptName + " directory [options]"); WScript.Echo("Options:"); WScript.Echo("-beginDate dd-MM-yy#hh:mm:ss -endDate dd-MM-yy#hh:mm:ss"); WScript.Echo(" will show files/directories between the two dates.Date formats "); WScript.Echo(" Short dates can use either a '/' or "-" date separator, but must follow the month/day/year format, for example '7/20/96'"); WScript.Echo(" Long dates of the form 'July 10 1995' can be given with the year, month, and day in any order, and the year in 2-digit or 4-digit form. If you use the 2-digit form, the year must be greater than or equal to 70."); WScript.Echo(" Any text inside parentheses is treated as a comment. These parentheses may be nested."); WScript.Echo(" Both commas and spaces are treated as delimiters. Multiple delimiters are permitted."); WScript.Echo(" Month and day names must have two or more characters. Two character names that are not unique are resolved as the last match. For example, 'Ju' is resolved as July, not June."); WScript.Echo(" The stated day of the week is ignored if it is incorrect given the remainder of the supplied date. For example, 'Tuesday November 9 1996' is accepted and parsed even though that date actually falls on a Friday. The resulting Date object contains 'Friday November 9 1996'."); WScript.Echo(" JScript handles all standard time zones, as well as Universal Coordinated Time (UTC) and Greenwich Mean Time (GMT)."); WScript.Echo(" Hours, minutes, and seconds are separated by colons, although all need not be specified. '10:', '10:11', and '10:11:12' are all valid."); WScript.Echo(" If the 24-hour clock is used, it is an error to specify 'PM' for times later than 12 noon. For example, '23:15 PM' is an error."); WScript.Echo(" A string containing an invalid date is an error. For example, a string containing two years or two months is an error."); WScript.Echo("-direction before|after "); WScript.Echo(" will search for files/directories before or after given date.Default is after"); WScript.Echo("-hh Number"); WScript.Echo(" Will add/subtract(if number is negative) hours to given dates"); WScript.Echo(" Default is 0"); WScript.Echo("-mm Number"); WScript.Echo(" Will add/subtract(if number is negative) minutes to given dates"); WScript.Echo(" Default is 0"); WScript.Echo("-dd Number"); WScript.Echo(" Will add/subtract(if number is negative) days to given dates"); WScript.Echo(" Default is 0"); WScript.Echo("-ss Number"); WScript.Echo(" Will add/subtract(if number is negative) seconds to given dates"); WScript.Echo(" Default is 0"); WScript.Echo("-recursive yes|no"); WScript.Echo(" Will search be recursive or not"); WScript.Echo(" Default is yes"); WScript.Echo("-show dirs|files|all"); WScript.Echo(" Will search files or directories"); WScript.Echo(" Default is files"); WScript.Echo(""); WScript.Echo("-show dirs|files|all"); WScript.Echo(" Will search files or directories by passed time property "); WScript.Echo(" Default is files"); WScript.Echo(""); WScript.Echo("Examples:"); WScript.Echo(""); WScript.Echo("Will show files older than 5 hours"); WScript.Echo(scriptName + '"." -hh -5'); WScript.Echo(""); WScript.Echo("Will show files between the begin and end date"); WScript.Echo(scriptName + '"." -beginDate "September 1, 2014 10:15 AM" -endDate "November 1, 2014 10:15 PM" '); WScript.Echo("Will show files newer than 5 hours starting from given date"); WScript.Echo(scriptName + '"." -hh 5 -beginDate -beginDate "September 1, 2014 10:15 AM"'); WScript.Echo(""); WScript.Echo("Will show files older than 5 hours starting from given date"); WScript.Echo(scriptName + '"." -hh 5 -beginDate -beginDate "September 1, 2014 10:15 AM" -direction before'); WScript.Echo(""); } function getLastModified(obj){ return obj.DateLastModified; } function getDateCreated(obj){ return obj.DateCreated; } function getLastAccessed(obj){ return obj.DateLastAccessed; } function check(enumObj,filterFunction){ for (; !enumObj.atEnd(); enumObj.moveNext()){ var dateObj=new Date(filterFunction(enumObj.item())); if ((dateObj.getTime() <= max_date) && (dateObj.getTime() >= min_date)){ WScript.Echo(enumObj.item()); } } } function parseDate(string){ //https://msdn.microsoft.com/en-us/library/k4w173wk(v=vs.84).aspx try { return Date.parse(string); } catch (err){ WScript.Echo("Wrong date format"); WScript.Echo(err.message); WScript.Quit(4); } } function list(directory,filterFunction){ var folder=FileSystemObj.GetFolder(directory); if (show_files){ var file_enum = new Enumerator(folder.files); check(file_enum,filterFunction); } if (show_dirs){ var folder_enum = new Enumerator(folder.SubFolders ); check(folder_enum,filterFunction); } if(recursive){ var folder_enum = new Enumerator(folder.SubFolders ); for (;!folder_enum.atEnd(); folder_enum.moveNext()){ list(folder_enum.item(),filterFunction); } } } function parseArgs(){ if (ARGS.Item(1) == "-h" || ARGS.Item(1) == "-help"){ printHelp(); } if (ARGS.length<2){ WScript.Echo("Wrong arguments"); printHelp(); Environment.Exit(1); } if (ARGS.length%2 != 0){ WScript.Echo("Wrong number of arguments"); printHelp(); Environment.Exit(2); } directory=ARGS.Item(1); for (var i=2;i<ARGS.length-1;i=i+2){ var arg= ARGS.Item(i).toLowerCase(); var next=ARGS.Item(i+1).toLowerCase(); switch (arg){ case "-direction" : if (next == 'before') { direction="before"; } break; case "-hh" : hh=parseInt(next); break; case "-dd" : DD=parseInt(next); break; case "-mm" : mm=parseInt(next); break; case "-ss" : ss=parseInt(next); break; case "-filetime" : switch(next){ case "created": getFunct=getDateCreated; break; case "accessed": getFunct=getLastAccessed; break; case "modified": getFunct=getLastModified; break; default : WScript.Echo("invalid value "+ next); WScript.Quit(4); } break; case "-recursive" : if (next == "no"){ recursive=false; } break; case "-show" : if (next == "dirs"){ show_dirs = true; show_files = false; } if (next == "all"){ show_dirs = true; show_files = true; } break; case "-begindate" : min_date=parseDate(next); break; case "-enddate" : max_date=parseDate(next); break; default: WScript.Echo("Wrong argument " + arg); WScript.Quit(5); } } } parseArgs(); //ticks are in nanoseconds if (direction=='after'){ min_date=max_date + (hh*3600000)+ (DD*86400000) + (ss*1000) + (mm*60000) ; }else{ max_date=max_date + (hh*3600000)+ (DD*86400000) + (ss*1000) + (mm*60000) ; } // swap if needed if (min_date > max_date) { min_date=min_date^max_date; max_date=min_date^max_date; min_date=min_date^max_date; } list(directory,getFunct);
TheBigBear/batch.scripts
hybrids/jscript/FileTimeFilterJS.bat
bat
mit
7,845
@echo off :: :: Postbuild step for NiftySolution toolbar. :: if "%1" == "" ( goto :HELP ) if "%2" == "" ( goto :HELP ) goto :DOIT :HELP echo Usage: ^<projectdir^> ^<outdir^> echo. echo Needs to be called from Visual Studio goto :EOF :DOIT setlocal set PROJECTDIR=%1 set OUTDIR=%2 :: Guess where the resgen.exe and al.exe files are... :: You might need to change this to suit your environment!!! set SDKDIR=%ProgramFiles%\Microsoft SDKs\Windows\v7.0A set PATH=%PATH%;%SDKDIR%\Bin\NETFX 4.0 Tools;%SDKDIR%\Bin pushd "%PROJECTDIR%" mkdir "%PROJECTDIR%\%OUTDIR%\en-US" Resgen "%PROJECTDIR%\ToolbarIcons.resx" Al /embed:"%PROJECTDIR%\ToolbarIcons.resources" /culture:en-US /out:"%PROJECTDIR%\%OUTDIR%\en-US\NiftySolution.resources.dll" del "%PROJECTDIR%\ToolbarIcons.resources" popd endlocal
ben-marsh/niftyplugins
NiftySolution/PostBuild2010.cmd
bat
mit
983
@echo off :: :: smartd warning script :: :: Copyright (C) 2012-13 Christian Franke <[email protected]> :: :: This program is free software; you can redistribute it and/or modify :: it under the terms of the GNU General Public License as published by :: the Free Software Foundation; either version 2, or (at your option) :: any later version. :: :: You should have received a copy of the GNU General Public License :: (for example COPYING); If not, see <http://www.gnu.org/licenses/>. :: :: $Id$ :: set err= :: Parse options set dryrun= if "%1" == "--dryrun" ( set dryrun=t shift ) if not "%1" == "" ( echo smartd warning message script echo. echo Usage: echo set SMARTD_MAILER='Path to external script, empty for "blat"' echo set SMARTD_ADDRESS='Space separated mail adresses, empty if none' echo set SMARTD_MESSAGE='Error Message' echo set SMARTD_FAILTYPE='Type of failure, "EMailTest" for tests' echo set SMARTD_TFIRST='Date of first message sent, empty if none' echo :: set SMARTD_TFIRSTEPOCH='time_t format of above' echo set SMARTD_PREVCNT='Number of previous messages, 0 if none' echo set SMARTD_NEXTDAYS='Number of days until next message, empty if none' echo set SMARTD_DEVICEINFO='Device identify information' echo :: set SMARTD_DEVICE='Device name' echo :: set SMARTD_DEVICESTRING='Annotated device name' echo :: set SMARTD_DEVICETYPE='Device type from -d directive, "auto" if none' echo smartd_warning.cmd [--dryrun] goto EOF ) if "%SMARTD_ADDRESS%%SMARTD_MAILER%" == "" ( echo smartd_warning.cmd: SMARTD_ADDRESS or SMARTD_MAILER must be set goto EOF ) :: USERDNSDOMAIN may be unset if running as service if "%USERDNSDOMAIN%" == "" ( for /f "delims== tokens=2 usebackq" %%d in (`WMIC PATH Win32_Computersystem WHERE "PartOfDomain=TRUE" GET Domain /VALUE 2^>nul ^| find "Domain=" 2^>nul`) do set USERDNSDOMAIN=%%~d ) :: Format subject set SMARTD_SUBJECT=SMART error (%SMARTD_FAILTYPE%) detected on host: %COMPUTERNAME% :: Temp file for message if not "%TMP%" == "" set SMARTD_FULLMSGFILE=%TMP%\smartd_warning-%RANDOM%.txt if "%TMP%" == "" set SMARTD_FULLMSGFILE=smartd_warning-%RANDOM%.txt :: Format message ( echo This message was generated by the smartd service running on: echo. echo. host name: %COMPUTERNAME% if not "%USERDNSDOMAIN%" == "" echo. DNS domain: %USERDNSDOMAIN% if "%USERDNSDOMAIN%" == "" echo. DNS domain: [Empty] if not "%USERDOMAIN%" == "" echo. Win domain: %USERDOMAIN% echo. echo The following warning/error was logged by the smartd service: echo. :: SMARTD_MESSAGE and SMARTD_DEVICEINFO may contain parentheses for %%m in ("%SMARTD_MESSAGE%") do echo.%%~m echo. echo Device info: for %%m in ("%SMARTD_DEVICEINFO%") do echo.%%~m set m= echo. echo For details see the event log or log file of smartd. if not "%SMARTD_FAILTYPE%" == "EmailTest" ( echo. echo You can also use the smartctl utility for further investigation. if not "%SMARTD_PREVCNT%" == "0" echo The original message about this issue was sent at %SMARTD_TFIRST% if "%SMARTD_NEXTDAYS%" == "" ( echo No additional messages about this problem will be sent. ) else ( if "%SMARTD_NEXTDAYS%" == "1" ( echo Another message will be sent in 24 hours if the problem persists. ) else ( echo Another message will be sent in %SMARTD_NEXTDAYS% days if the problem persists. )) ) ) > "%SMARTD_FULLMSGFILE%" if not "%dryrun%" == "" ( echo %SMARTD_FULLMSGFILE%: type "%SMARTD_FULLMSGFILE%" echo --EOF-- ) :: Check first address set first= for /F "tokens=1*" %%a in ("%SMARTD_ADDRESS%") do (set first=%%a) set wtssend= if "%first%" == "console" set wtssend=-c if "%first%" == "active" set wtssend=-a if "%first%" == "connected" set wtssend=-s set first= if not "%wtssend%" == "" ( :: Show Message box(es) via WTSSendMessage() if not "%dryrun%" == "" ( echo call wtssendmsg %wtssend% "%SMARTD_SUBJECT%" - ^< "%SMARTD_FULLMSGFILE%" ) else ( call wtssendmsg %wtssend% "%SMARTD_SUBJECT%" - < "%SMARTD_FULLMSGFILE%" if errorlevel 1 set err=t ) :: Remove first address for /F "tokens=1*" %%a in ("%SMARTD_ADDRESS%") do (set SMARTD_ADDRESS=%%b) ) set wtssend= :: Make comma separated address list set SMARTD_ADDRCSV= if not "%SMARTD_ADDRESS%" == "" set SMARTD_ADDRCSV=%SMARTD_ADDRESS: =,% :: Use blat mailer by default if not "%SMARTD_ADDRESS%" == "" if "%SMARTD_MAILER%" == "" set SMARTD_MAILER=blat :: Send mail or run command if not "%SMARTD_ADDRCSV%" == "" ( :: Send mail if not "%dryrun%" == "" ( echo call "%SMARTD_MAILER%" - -q -subject "%SMARTD_SUBJECT%" -to "%SMARTD_ADDRCSV%" ^< "%SMARTD_FULLMSGFILE%" ) else ( call "%SMARTD_MAILER%" - -q -subject "%SMARTD_SUBJECT%" -to "%SMARTD_ADDRCSV%" < "%SMARTD_FULLMSGFILE%" if errorlevel 1 set err=t ) ) else ( if not "%SMARTD_MAILER%" == "" ( :: Run command if not "%dryrun%" == "" ( echo call "%SMARTD_MAILER%" ^<nul ) else ( call "%SMARTD_MAILER%" <nul if errorlevel 1 set err=t ) )) del "%SMARTD_FULLMSGFILE%" >nul 2>nul :EOF if not "%err%" == "" goto ERROR 2>nul
fnadeau/smartmontools
smartmontools/os_win32/smartd_warning.cmd
bat
gpl-2.0
5,159
gradlew.bat build -x test pause
mannyrivera2010/groovy-gradle-skeleton
gradle-buildNoTest.bat
bat
apache-2.0
31
cmd_lib/gen_crc32table := gcc -Wp,-MD,lib/.gen_crc32table.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o lib/gen_crc32table lib/gen_crc32table.c source_lib/gen_crc32table := lib/gen_crc32table.c deps_lib/gen_crc32table := \ /usr/include/stdc-predef.h \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ lib/crc32defs.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ lib/gen_crc32table: $(deps_lib/gen_crc32table) $(deps_lib/gen_crc32table):
Zaphod-Beeblebrox/kernel_rockchip_rk3188
lib/.gen_crc32table.cmd
bat
gpl-2.0
1,276
xsb plot boringen_to_csv_shape_plot.yaml
tomvansteijn/xsb
xsboringen/examples/example_surfacelevel/plot.bat
bat
gpl-3.0
42
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=certbot-dns-dnsimple 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.https://www.sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
letsencrypt/letsencrypt
certbot-dns-dnsimple/docs/make.bat
bat
apache-2.0
793
#!/bin/csh #################### # Script: unsupsendUpdates.cmd # This script "unschedules" the Suspend production job #################### "rm" -f $statusArea/pending/Suspend echo "--- Production Jobs Restarted --- "
VisionAerie/vision
application/localvision/adminScripts/unsuspendUpdates.cmd
bat
bsd-3-clause
221