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
@IF NOT DEFINED DEBUG ECHO OFF REM ================================================================================= REM Make - Script to choreograph the various installation sub-jobs. REM REM REM Written by Ian Hogan, [email protected] REM REM ================================================================================= SET _ALLOWED_TARGETS=All Zip Templates S3Master REM S3Replica - not required as these are propogated by a Lambda function SET __APPLICATION_NAME=Installing files for ReSTFetcher Qrvey Sample SET _OPEN_AWS_REGION_MASTER=ap-southeast-1:apse2 SET _CLIENT_AWS_REGION_MASTER=ap-southeast-1:apse2 SET _CLIENT_PERMISSIONS=--acl public-read SET _OPEN_PERMISSIONS=--acl public-read TITLE %__APPLICATION_NAME% COLOR 79 SETLOCAL PUSHD "%~dp0" SET _INSTALL_PATH=%~dp0 SET _SELF=%~0 IF DEFINED ZIPPER ( SET _7ZIP=%ZIPPER% ) ELSE ( SET _7ZIP="C:\Program Files\7-Zip\7z.exe" ) IF NOT EXIST %_7ZIP% ( ECHO Unable to find 7ZIP application - please set ZIPPER environment variable! GOTO USAGE ) SET _MAKE_BUCKET= SET _DOMAIN=au-com-thinkronicity SET _VERSION=1.0.1 SET _SampleID=3 SET _S3_SOURCE=open* client* SET _S3_Payer=BucketOwner REM ================================================================================= REM Get parameters REM ================================================================================= :NEXT_PARAM IF "%~1"=="" GOTO USAGE IF /I "%~1"=="/P" ( SET _AWS_PROFILE=--profile %~2 SHIFT SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/C" ( SET _S3_SOURCE=client* SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/O" ( SET _S3_SOURCE=open* SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/BR" ( SET _S3_Payer=Requester SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/D" ( SET _DOMAIN=%~2 SHIFT SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/B" ( SET _MAKE_BUCKET=Y SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/F" ( SET _FILTER=%~2 SHIFT SHIFT GOTO NEXT_PARAM ) IF /I "%~1"=="/V" ( SET _VERSION=%~2 SHIFT SHIFT GOTO NEXT_PARAM ) REM ================================================================================= :DO_MAKE REM ================================================================================= REM Replace single quote with double quote in filter expression. IF DEFINED _FILTER SET _FILTER=%_FILTER:'="% TITLE %__APPLICATION_NAME% REM ================================================================================= REM Start installation REM ================================================================================= :NEXT_TARGET IF DEFINED _QUIT GOTO END IF "%~1"=="" GOTO END SET _TARGET=%~1 SHIFT FOR %%T IN (%_ALLOWED_TARGETS%) DO IF /I "%_TARGET%"=="%%T" (GOTO %_TARGET%_INSTALL) ECHO Unknown target - %_TARGET% GOTO USAGE REM ================================================================================= :ALL_INSTALL REM ================================================================================= CALL "%_SELF%" %_ALLOWED_TARGETS:~4% GOTO END REM ================================================================================= :Zip_INSTALL REM ================================================================================= PUSHD S3Buckets\files DEL "%_INSTALL_PATH%S3Buckets\opencode\au-com-thinkronicity-RestFetcher-QrveySample%_SampleID%-V%_VERSION%.zip" %_7ZIP% a -r -tZIP "%_INSTALL_PATH%S3Buckets\opencode\au-com-thinkronicity-RestFetcher-QrveySample%_SampleID%-V%_VERSION%.zip" *.* POPD GOTO NEXT_TARGET REM ================================================================================= :Templates_INSTALL REM ================================================================================= PUSHD Stack SET _BUCKET_SUFFIX=opencode CALL :DECODE_REGION_PARAM "%_CLIENT_AWS_REGION_MASTER%" SET _PERMISSIONS=%_CLIENT_PERMISSIONS% ECHO Copying from local file system to %_BUCKET%/CloudFormation/ aws s3 cp . s3://%_BUCKET%/CloudFormation/ %_AWS_PROFILE% %_PERMISSIONS% --recursive %_FILTER% POPD GOTO NEXT_TARGET REM ================================================================================= :S3Master_INSTALL REM ================================================================================= SET _OPEN_AWS_REGIONS=%_OPEN_AWS_REGION_MASTER% SET _CLIENT_AWS_REGIONS=%_CLIENT_AWS_REGION_MASTER% SET _SOURCE_BUCKET_OPEN= SET _SOURCE_BUCKET_CLIENT= PUSHD S3Buckets FOR /D %%F IN (%_S3_SOURCE%) DO CALL :DEPLOY_REGION_BUCKETS %%~nF POPD GOTO NEXT_TARGET REM ================================================================================= :S3Replica_INSTALL REM ================================================================================= SET _BUCKET_SUFFIX=opencode SET _OPEN_AWS_REGIONS=%_OPEN_AWS_REGIONS_REPLICA% SET _CLIENT_AWS_REGIONS=%_CLIENT_AWS_REGIONS_REPLICA% CALL :DECODE_REGION_PARAM "%_OPEN_AWS_REGION_MASTER%" SET _BUCKET_SUFFIX=clientcode SET _SOURCE_BUCKET_OPEN=%_BUCKET% SET _SOURCE_REGION_OPEN=%_BUCKET_REGION% CALL :DECODE_REGION_PARAM "%_CLIENT_AWS_REGION_MASTER%" SET _SOURCE_BUCKET_CLIENT=%_BUCKET% SET _SOURCE_REGION_CLIENT=%_BUCKET_REGION% PUSHD S3Buckets FOR /D %%F IN (%_S3_SOURCE%) DO CALL :DEPLOY_REGION_BUCKETS %%~nF POPD GOTO NEXT_TARGET REM ================================================================================= :DEPLOY_REGION_BUCKETS REM ================================================================================= SET _BUCKET_SUFFIX=%~1 IF /I "%_BUCKET_SUFFIX:~0,4%"=="open" ( SET _AWS_REGIONS=%_OPEN_AWS_REGIONS% SET _PERMISSIONS=%_OPEN_PERMISSIONS% SET _SOURCE_BUCKET=%_SOURCE_BUCKET_OPEN% SET _SOURCE_REGION=%_SOURCE_REGION_OPEN% ) ELSE ( SET _AWS_REGIONS=%_CLIENT_AWS_REGIONS% SET _PERMISSIONS=%_CLIENT_PERMISSIONS% SET _SOURCE_BUCKET=%_SOURCE_BUCKET_CLIENT% SET _SOURCE_REGION=%_SOURCE_REGION_CLIENT% ) IF DEFINED _AWS_REGIONS FOR %%R IN (%_AWS_REGIONS%) DO CALL :DEPLOY_BUCKET %%R GOTO :EOF REM ================================================================================= :DEPLOY_BUCKET REM ================================================================================= CALL :DECODE_REGION_PARAM "%~1" IF DEFINED _MAKE_BUCKET CALL :CREATE_BUCKET "%_BUCKET%" IF DEFINED _QUIT GOTO :EOF PUSHD "%_BUCKET_SUFFIX%" ECHO NOW IN "%_BUCKET_SUFFIX%" IF DEFINED _NO_COPY GOTO DEPLOY_BUCKET_END IF NOT DEFINED _SOURCE_BUCKET ( ECHO Copying from local file system to %_BUCKET% aws s3 cp . s3://%_BUCKET%/ %_AWS_PROFILE% %_PERMISSIONS% --recursive %_FILTER% ) ELSE ( ECHO Copying from source bucket %_SOURCE_BUCKET% to %_BUCKET% aws s3 cp s3://%_SOURCE_BUCKET%/ s3://%_BUCKET%/ --source-region %_SOURCE_REGION% %_AWS_PROFILE% %_PERMISSIONS% --recursive %_FILTER% ) :DEPLOY_BUCKET_END POPD GOTO :EOF REM ================================================================================= :DECODE_REGION_PARAM REM ================================================================================= SET _BUCKET_REGION_PARAM=%~1 SET _BUCKET_REGION_PARAM=%_BUCKET_REGION_PARAM: =% SET _BUCKET_REGION=%_BUCKET_REGION_PARAM:~0,-6% SET _BUCKET_REGION_CODE=%_BUCKET_REGION_PARAM:~-5% SET _BUCKET=%_DOMAIN%-%_BUCKET_SUFFIX%-%_BUCKET_REGION_CODE% ECHO _BUCKET_REGION_PARAM="%_BUCKET_REGION_PARAM%" ECHO _BUCKET_REGION="%_BUCKET_REGION%" ECHO _BUCKET_REGION_CODE="%_BUCKET_REGION_CODE%" ECHO _BUCKET="%_BUCKET%" GOTO :EOF REM ================================================================================= :CREATE_BUCKET REM ================================================================================= REM See if the target bucket exists aws s3 ls s3:// %_AWS_PROFILE% | FINDSTR "%~1" IF NOT ERRORLEVEL 1 GOTO CREATE_BUCKET_CHECK GOTO CREATE_BUCKET_GO :CREATE_BUCKET_CHECK SET _RESPONSE=Q CALL :GET_RESPONSE "Bucket %~1 already exists - continue with the install?" Y Q /R GOTO :EOF :CREATE_BUCKET_GO aws s3 mb s3://%~1 %_AWS_PROFILE% --region %_BUCKET_REGION% GOTO :EOF REM ================================================================================= :USAGE REM ================================================================================= ECHO. ECHO Usage is %0 [/P "AWS Profile name"] [/D Domain] [/V version] [/B] [/F filter] Target[, Target ...] ECHO. ECHO where Target is one of: FOR %%T IN (%_ALLOWED_TARGETS%) DO ECHO %%T ECHO. ECHO and: ECHO /P is optionally used to specify an AWS named profile ECHO /C is optionally used to specify only client S3 files need to be copied ECHO /O is optionally used to specify only open code S3 files need to be copied ECHO /D is optionally used to override the default application domain %_DOMAIN% ECHO /V is optionally used to override the default version of %_VERSION% REM ECHO /BR is optionally used to override the default bucket payer of BucketOwner with Requester ECHO /B is optionally used to specify the S3 Buckets should be created ECHO /F is optionally used to specify a filter for S3 copy operations. ECHO. GOTO END REM ================================================================================= :GET_RESPONSE REM ================================================================================= CALL "%_INSTALL_PATH%\_Scripts\GetResponse.cmd" %* GOTO :EOF REM ================================================================================= :LOG_MESSAGE REM ================================================================================= ECHO %* IF DEFINED _Log ECHO>>"%_Log%" %* GOTO :EOF REM ================================================================================= :END REM ================================================================================= PAUSE ENDLOCAL POPD
imhogan/RESTFetcher
Samples/Qrvey3/Make.cmd
bat
apache-2.0
9,672
@echo off rem ------------------------------------------------------------- rem Yii command line bootstrap script for Windows. rem rem @author Qiang Xue <[email protected]> rem @link http://www.yiiframework.com/ rem @copyright Copyright (c) 2008 Yii Software LLC rem @license http://www.yiiframework.com/license/ rem ------------------------------------------------------------- @setlocal set YII_PATH=%~dp0 if "%PHP_COMMAND%" == "" set PHP_COMMAND=D:\phpStudy\php54n\php.exe "%PHP_COMMAND%" "%YII_PATH%yii" %* @endlocal
aaroncnhk/yiwan
yii.bat
bat
bsd-3-clause
534
cd\ cd d:\htc-prototype\wip\estore-event grunt
chester0516/htc-prototype-bak
wip/estore-event/watch.bat
bat
mit
46
cmd_scripts/mod/mk_elfconfig := gcc -Wp,-MD,scripts/mod/.mk_elfconfig.d -O2 -I/home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include -I/home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/usr/include -Wall -Wmissing-prototypes -Wstrict-prototypes -I/home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include -I./tools/include -o scripts/mod/mk_elfconfig scripts/mod/mk_elfconfig.c source_scripts/mod/mk_elfconfig := scripts/mod/mk_elfconfig.c deps_scripts/mod/mk_elfconfig := \ /usr/include/stdc-predef.h \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include/endian.h \ /home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include/byteswap.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.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/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 \ /home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include/elf.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 \ scripts/mod/mk_elfconfig: $(deps_scripts/mod/mk_elfconfig) $(deps_scripts/mod/mk_elfconfig):
michalliu/OpenWrt-Firefly-Libraries
build_dir/target-mipsel_1004kc+dsp_uClibc-0.9.33.2/linux-ramips_mt7621/linux-3.18.11/scripts/mod/.mk_elfconfig.cmd
bat
gpl-2.0
3,187
@echo off set WINPYDIR=%~dp0WinPython\python-2.7.10.amd64 set WINPYVER=2.7.10.2 set HOME=%WINPYDIR%\..\settings set WINPYARCH="WIN32" if "%WINPYDIR:~-5%"=="amd64" set WINPYARCH="WIN-AMD64" rem handle R if included if not exist "%WINPYDIR%\..\tools\R\bin" goto r_bad set R_HOME=%WINPYDIR%\..\tools\R if %WINPYARCH%=="WIN32" set R_HOMEbin=%R_HOME%\bin\i386 if not %WINPYARCH%=="WIN32" set R_HOMEbin=%R_HOME%\bin\x64 :r_bad rem handle Julia if included if not exist "%WINPYDIR%\..\tools\Julia\bin" goto julia_bad set JULIA_HOME=%WINPYDIR%\..\tools\Julia\bin\ set JULIA_EXE=julia.exe set JULIA=%JULIA_HOME%%JULIA_EXE% set JULIA_PKGDIR=%WINPYDIR%\..\settings\.julia :julia_bad set PATH=%WINPYDIR%;%WINPYDIR%\Lib\site-packages\PyQt5;%WINPYDIR%\Lib\site-packages\PyQt4;%WINPYDIR%\DLLs;%WINPYDIR%\Scripts;%WINPYDIR%\..\tools;%WINPYDIR%\..\tools\mingw32\bin;%WINPYDIR%\..\tools\R\bin\x64;%WINPYDIR%\..\tools\Julia\bin;%PATH%; rem force default Qt kit for Spyder REM set QT_API=pyqt cd "%~dp0getwrite\experiments\BuilderExample" python.exe "%WINPYDIR%\Lib\site-packages\PsychoPy-1.83.2-py2.7.egg\psychopy\app\psychopyApp.py" -b %* PAUSE
isolver/OpenHandWrite
distribution/PsychoPyBuilder.bat
bat
gpl-3.0
1,140
pnputil -a arduino.inf
krishardy/argentum-control
src/platforms/windows/drivers/install_driver.cmd
bat
gpl-3.0
22
@echo OFF :: change these variables to fit your system :: path to dp2 command line interface SET DP2=C:\Program\daisy-pipeline\cli\dp2 :: use this directory to store results SET TARGET=C:\MY_DATA\EPUB\migrator-batch-convert :: read *.xml files in this directory and its subdirectories SET SOURCE=C:\MY_DATA\Arkiv\arkiv-test :: I added this line for retrieving css content in the html report /TJ SET BATCH_HOME=C:\MY_LOCAL_SCRIPTS\nordic-epub3-dtbook-migrator-batch mkdir "%TARGET%\zip" mkdir "%TARGET%\log" mkdir "%TARGET%\epub" SET current_date=%date% SET startTime=%time% SET /a sth=%startTime:~0,2% SET /a stm=1%startTime:~3,2% - 100 SET /a sts=1%startTime:~6,2% - 100 SET SCRIPT_1=nordic-dtbook-validate SET SCRIPT_2=nordic-dtbook-to-epub3 SET SCRIPT_3=nordic-epub3-validate SET SCRIPT_4=nordic-epub3-to-dtbook SET LOGFILE=%TARGET%\report-%current_date%-%sth%-%stm%-%sts%.html SET /a SOURCE_DTBOOK_COUNT=0 DEL "%LOGFILE%" echo "Writing output to LOGFILE" PUSHD %SOURCE% FOR /R %%A IN (*.xml) DO SET /a SOURCE_DTBOOK_COUNT+=1 SET /A PROGRESSBAR_INCREMENTS=100/(%SOURCE_DTBOOK_COUNT%*4) CALL :log "<!DOCTYPE html>" CALL :log "<html lang="en">" CALL :log "<head>" CALL :log " <meta encoding="utf-8"/>" CALL :log " <title>Nordic EPUB3/DTBook batch conversion</title>" CALL :log " <meta name=""viewport"" content=""width=device-width, initial-scale=1.0"" />" CALL :log " <style type="text/css">" TYPE %BATCH_HOME%\bootstrap.min.css >> %LOGFILE% CALL :log " </style>" CALL :log " <style>.nobr { white-space:nowrap; }</style>" CALL :log "</head>" CALL :log "<body class="content">" CALL :log " <div class="container">" CALL :log " <h1>Nordic EPUB3/DTBook batch conversion</h1>" CALL :log " <p>Start time: %current_date%-%sth%-%stm%-%sts%</p>" CALL :log " <p>DTBook files: %SOURCE_DTBOOK_COUNT%</p>" CALL :log "<div class=""progress progress-striped active"">" CALL :log " <div id=""progress-done"" class=""progress-bar progress-bar-success"" role=""progressbar"" aria-valuenow=""0"" aria-valuemin=""0"" aria-valuemax=""100"" style=""width: 0%;"">" CALL :log " <span><span id="progress-done-count">0</span>__DONE</span>" CALL :log " </div>" CALL :log "</div>" CALL :log "<div class=""progress progress-striped active"">" CALL :log " <div id=""progress-failed"" class=""progress-bar progress-bar-danger"" role=""progressbar"" aria-valuenow=""0"" aria-valuemin=""0"" aria-valuemax=""100"" style=""width: 0%;"">" CALL :log " <span><span id="progress-failed-count">0</span>__FAILED</span>" CALL :log " </div>" CALL :log "</div>" CALL :log "<div class=""progress progress-striped active"">" CALL :log " <div id=""progress-skipped"" class=""progress-bar progress-bar-warning"" role=""progressbar"" aria-valuenow=""0"" aria-valuemin=""0"" aria-valuemax=""100"" style=""width: 0%;"">" CALL :log " <span><span id="progress-skipped-count">0</span>__SKIPPED</span>" CALL :log " </div>" CALL :log "</div>" CALL :log " <table width=""100%"" class=""table table-bordered table-hover table-condensed"">" CALL :log "<thead><tr>" CALL :log "<th class="nobr">Book ID</th>" CALL :log "<th class="nobr">%SCRIPT_1%</th>" CALL :log "<th class="nobr">%SCRIPT_2%</th>" CALL :log "<th class="nobr">%SCRIPT_3%</th>" CALL :log "<th class="nobr">%SCRIPT_4%</th>" CALL :log "</tr></thead><tbody>" SET /a PROGRESS_DONE_COUNT=0 SET /a PROGRESS_SKIPPED_COUNT=0 SET /a PROGRESS_FAILED_COUNT=0 FOR /R %%I IN (*.xml) DO CALL :nordic_test %%~nI %%~dpI POPD :: finishing the log file CALL :log "</tbody></table>" CALL :log "<p>Finish time: %current_date%-%sth%-%stm%-%sts%</p>" CALL :log "</div>" CALL :log "</body></html>" echo "Report file: %LOGFILE%" :: ------------------------------------------------------------------------------------------ :: FUNCTION SECTION :: ------------------------------------------------------------------------------------------ :log SET var=%1 SET var=%var:>=^>% SET var=%var:<=^<% SET var=%var:""="% echo %var:~1,-1% >> "%LOGFILE%" goto :eof :html_h1 CALL :log "<h1>%1</h1>" goto :eof :html_h2 CALL :log "<h2>%1</h2>" goto :eof :html_h3 CALL :log "<h3>%1</h3>" goto :eof :html_tr CALL :log "<tr>" goto :eof :html_tr_end CALL :log "</tr>" goto :eof :html_td if "%1" == "DONE" ( CALL :log "<td class=""success""><ul>" ) else ( if "%1" == "VALIDATION_FAIL" ( CALL :log "<td class=""danger""><ul>" ) else ( CALL :log "<td class=""%1""><ul>" ) ) goto :eof :html_td_end CALL :log "</ul></td>" goto :eof :html_li if "%2" == "" ( CALL :log "<li>%~1</li>" ) else ( CALL :log "<li><a href=""%2"">%~1</a></li>" ) goto :eof :update_progress SET STATUS=%1 SET /a COUNT=0 if %STATUS% == DONE ( SET STATUS=done SET /a PROGRESS_DONE_COUNT=%PROGRESS_DONE_COUNT% + 1 SET /a COUNT=%PROGRESS_DONE_COUNT% ) else ( if %STATUS% == SKIPPED ( SET STATUS=skipped SET /a PROGRESS_SKIPPED_COUNT=%PROGRESS_SKIPPED_COUNT% + 1 SET /a COUNT=%PROGRESS_SKIPPED_COUNT% ) else ( SET STATUS=failed SET /a PROGRESS_FAILED_COUNT=%PROGRESS_FAILED_COUNT% + 1 SET /a COUNT=%PROGRESS_FAILED_COUNT% ) ) SET /A PROGRESS=%PROGRESSBAR_INCREMENTS% * %COUNT% CALL :log "<script type="text/javascript">" CALL :log "document.getElementById('progress-%STATUS%').setAttribute('aria-valuenow','%PROGRESS%');" CALL :log "document.getElementById('progress-%STATUS%').setAttribute('style','width: %PROGRESS%;');</script>" CALL :log "<script type="text/javascript">document.getElementById('progress-%STATUS%-count').innerHTML = '%COUNT%';" CALL :log "</script>" goto :eof :nordic_test :: takes two parameters; first the id, then the full file path CALL :html_tr CALL :log "<td><strong>%1</strong></td>" SET STATUS_1="" SET STATUS_2="" SET STATUS_3="" SET STATUS_4="" SET CURRENT_FILE=%1 SET CURRENT_PATH=%2 IF EXIST "%CURRENT_PATH%%CURRENT_FILE%.xml" ( CALL :runNordicDtbVal %%CURRENT_FILE%% %%CURRENT_PATH%% ) else ( CALL :html_td "danger" CALL :html_li "Status: SKIPPED" CALL :html_li "DTBook not found: %%2" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_tr_end ) goto :eof :runNordicDtbVal START /WAIT %DP2% %SCRIPT_1% --x-no-legacy="true" --x-dtbook="%2%1.xml" --output="%TARGET%\zip\%1.%SCRIPT_1%.zip" -p START /B /W %DP2% log --lastid --file="%TARGET%\log\%1.%SCRIPT_1%.log" MKDIR "%TARGET%\zip\%1.%SCRIPT_1%" 7z x %TARGET%\zip\%1.%SCRIPT_1%.zip -o%TARGET%\zip\%1.%SCRIPT_1% START /B /W %DP2% status -l>>"%TARGET%\zip\%1.%SCRIPT_1%\status.txt" FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_1%\status.txt">>"%TARGET%\zip\%1.%SCRIPT_1%\validation-status.txt" FOR /F "tokens=1,2,3 delims=: " %%M IN ('FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_1%\validation-status.txt"') DO SET STATUS_1=%%O CALL :update_progress %%STATUS_1%% SET HTML_1=%TARGET%\zip\%1.%SCRIPT_1%\html-report\html-report.xml SET LOG_1=%TARGET%\log\%1.%SCRIPT_1%.log CALL :html_td %%STATUS_1%% CALL :html_li "Status: %%STATUS_1%%" CALL :html_li "HTML report" %%HTML_1%% CALL :html_li "detailed log" %%LOG_1%% CALL :html_li "basename %2" %2 CALL :html_td_end START /B /W %DP2% delete --lastid CALL :runDtbToEpub %CURRENT_FILE% %CURRENT_PATH% goto :eof :runDtbToEpub IF "%STATUS_1%" == "DONE" ( START /WAIT %DP2% %SCRIPT_2% --x-no-legacy="false" --x-strict="false" --x-dtbook="%2%1.xml" --output="%TARGET%\zip\%1.%SCRIPT_2%.zip" -p START /B /W %DP2% log --lastid --file="%TARGET%\log\%1.%SCRIPT_2%.log" MKDIR "%TARGET%\zip\%1.%SCRIPT_2%" 7z x %TARGET%\zip\%1.%SCRIPT_2%.zip -o%TARGET%\zip\%1.%SCRIPT_2% START /B /W %DP2% status -l>>"%TARGET%\zip\%1.%SCRIPT_2%\status.txt" FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_2%\status.txt">>"%TARGET%\zip\%1.%SCRIPT_2%\validation-status.txt" FOR /F "tokens=1,2,3 delims=: " %%M IN ('FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_2%\validation-status.txt"') DO SET STATUS_2=%%O CALL :update_progress %%STATUS_2%% SET LOG_2=%TARGET%\log\%1.%SCRIPT_2%.log SET HTML_2=%TARGET%\zip\%1.%SCRIPT_2%\html-report\html-report.xml CALL :html_td %%STATUS_2%% CALL :html_li "Status: %%STATUS_2%%" CALL :html_li "HTML report" %%HTML_2%% CALL :html_li "detailed log" %%LOG_2%% CALL :html_li "basename %%2" %%2 CALL :html_td_end START /W %DP2% delete --lastid SET EPUB=%TARGET%\zip\%1.%SCRIPT_2%\output-dir\%1.epub SET EPUB_PTH=%TARGET%\zip\%1.%SCRIPT_2%\output-dir\ CALL :runNordicEpubVal %CURRENT_FILE% ) else ( CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_tr_end ) goto :eof :runNordicEpubVal IF "%STATUS_2%" == "DONE" ( START /W %DP2% %SCRIPT_3% --x-strict="false" --x-epub="%EPUB%" --output="%TARGET%\zip\%1.%SCRIPT_3%.zip" -p START /B /W %DP2% log --lastid --file="%TARGET%\log\%1.%SCRIPT_3%.log" MKDIR "%TARGET%\zip\%1.%SCRIPT_3%" 7z x %TARGET%\zip\%1.%SCRIPT_3%.zip -o%TARGET%\zip\%1.%SCRIPT_3% START /B /W %DP2% status -l>>"%TARGET%\zip\%1.%SCRIPT_3%\status.txt" FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_3%\status.txt">>"%TARGET%\zip\%1.%SCRIPT_3%\validation-status.txt" FOR /F "tokens=1,2,3 delims=: " %%M IN ('FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_3%\validation-status.txt"') DO SET STATUS_3=%%O CALL :update_progress %%STATUS_3%% SET LOG_3=%TARGET%\log\%1.%SCRIPT_3%.log SET HTML_3=%TARGET%\zip\%1.%SCRIPT_3%\html-report\html-report.xml CALL :html_td %%STATUS_3%% CALL :html_li "Status: %%STATUS_3%%" CALL :html_li "HTML report" %%HTML_3%% CALL :html_li "detailed log" %%LOG_3%% CALL :html_li "basename %%EPUB%%" %%EPUB_PTH%% CALL :html_td_end START /W %DP2% delete --lastid CALL :runNordicEpubToDtb %CURRENT_FILE% ) else ( CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_tr_end ) goto :eof :runNordicEpubToDtb IF "%STATUS_3%" == "DONE" ( START /W %DP2% %SCRIPT_4% --x-strict="false" --x-epub="%EPUB%" --output="%TARGET%\zip\%1.%SCRIPT_4%.zip" -p START /B /W %DP2% log --lastid --file="%TARGET%\log\%1.%SCRIPT_4%.log" MKDIR "%TARGET%\zip\%1.%SCRIPT_4%" 7z x %TARGET%\zip\%1.%SCRIPT_4%.zip -o%TARGET%\zip\%1.%SCRIPT_4% START /B /W %DP2% status -l>>"%TARGET%\zip\%1.%SCRIPT_4%\status.txt" FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_4%\status.txt">>"%TARGET%\zip\%1.%SCRIPT_4%\validation-status.txt" FOR /F "tokens=1,2,3 delims=: " %%M IN ('FINDSTR "Status" "%TARGET%\zip\%1.%SCRIPT_4%\validation-status.txt"') DO SET STATUS_4=%%O CALL :update_progress %%STATUS_4%% SET LOG_4=%TARGET%\log\%1.%SCRIPT_4%.log SET HTML_4=%TARGET%\zip\%1.%SCRIPT_4%\html-report\html-report.xml CALL :html_td %%STATUS_4%% CALL :html_li "Status: %%STATUS_4%%" CALL :html_li "HTML report" %%HTML_4%% CALL :html_li "detailed log" %%LOG_4%% CALL :html_li "basename %%EPUB%%" %%EPUB_PTH%% CALL :html_td_end CALL :html_tr_end START /W %DP2% delete --lastid ) else ( CALL :html_td CALL :html_li "Status: SKIPPED" CALL :update_progress SKIPPED CALL :html_td_end CALL :html_tr_end ) goto :eof
cwallin/nordic-epub3-dtbook-migrator-02f1665a1f4a82f9f61a31a7938452363396506e
batch-converter/run.bat
bat
lgpl-2.1
12,706
"..\..\..\Tools\cslex" "StrToTime.lex" "..\Parsers\StrToTimeScanner.cs" /v:2 REM "..\..\..\Tools\cslex" "json.lex" "..\Parsers\jsonLexer.cs" /v:2 REM "..\..\..\Tools\gppg" /l /r "json.y" "..\Parsers\jsonParser.cs" "..\Parsers\json.log" @pause
iolevel/peachpie-concept
src/Peachpie.Library/Generators/Generate.cmd
bat
apache-2.0
244
./mricron ./templates/ch2bet.nii.gz -s 3 -c -0 -l 20 -h 140 -b 40 -t -1 -r ./example/fmrir.ini -o ./example/saccades.nii.gz -l 1.96 -h 5 -z -o ./example/attention.nii.gz -l 1.96 -h 5 -z -x
gbook/nidb
tools/mricron/xfmri.bat
bat
gpl-3.0
188
@echo off REM Gurtle - IBugTraqProvider for Google Code REM Copyright (c) 2008 Atif Aziz. All rights reserved. REM REM Author(s): REM REM Atif Aziz, http://www.raboof.com REM REM This library is free software; you can redistribute it and/or modify it REM under the terms of the New BSD License, a copy of which should have REM been delivered along with this distribution. REM REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A REM PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT REM OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, REM SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT REM LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, REM DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY REM THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT REM (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE REM OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. pushd "%~dp0" SetLocal EnableDelayedExpansion :: get the revision of the working copy SubWCRev . src\version.in src\version.txt :: load the version numbers into variables for /F "delims=, tokens=1,2,3,4" %%i in (src\version.txt) do ( set majorversion=%%i set minorversion=%%j set microversion=%%k set wcversion=%%l ) :: write the AssemblyInfoVersion.cs file with the version info echo using System.Reflection; > src\Gurtle\Properties\AssemblyInfoVersion.cs echo [assembly: AssemblyVersion("%majorversion%.%minorversion%.%microversion%.%wcversion%")] >> src\Gurtle\Properties\AssemblyInfoVersion.cs echo [assembly: AssemblyFileVersion("%majorversion%.%minorversion%.%microversion%.%wcversion%")] >> src\Gurtle\Properties\AssemblyInfoVersion.cs :: write the VersionNumberInclude.wxi file echo ^<?xml version="1.0" encoding="utf-8"?^> > src\setup\VersionNumberInclude.wxi echo ^<Include Id="VersionNumberInclude"^> >> src\setup\VersionNumberInclude.wxi echo ^<?define MajorVersion="%majorversion%" ?^> >> src\setup\VersionNumberInclude.wxi echo ^<?define MinorVersion="%minorversion%" ?^> >> src\setup\VersionNumberInclude.wxi echo ^<?define MicroVersion="%microversion%" ?^> >> src\setup\VersionNumberInclude.wxi echo ^<?define BuildVersion="%wcversion%" ?^> >> src\setup\VersionNumberInclude.wxi echo ^</Include^> >> src\setup\VersionNumberInclude.wxi for %%i in (Debug Release) do ( "%SystemRoot%\Microsoft.NET\Framework\v3.5\msbuild" /p:Configuration=%%i /p:Platform=x86 src\Gurtle.sln "%SystemRoot%\Microsoft.NET\Framework\v3.5\msbuild" /p:Configuration=%%i /p:Platform=x64 src\Gurtle.sln ) :: build the installer pushd src\setup for %%a in (x86 x64) do ( echo Building setup for %%a platform set Platform=%%a ..\..\tools\WiX\candle -nologo -out ..\..\bin\Setup-%%a.wixobj Setup.wxs ..\..\tools\WiX\light -nologo -sice:ICE08 -sice:ICE09 -sice:ICE32 -sice:ICE61 -out ..\..\bin\Gurtle-%majorversion%.%minorversion%.%microversion%.%wcversion%-%%a.msi ..\..\bin\Setup-%%a.wixobj -ext WixUIExtension -cultures:en-us ..\..\tools\WiX\candle -nologo -out ..\..\bin\MergeModule-%%a.wixobj MergeModule.wxs ..\..\tools\WiX\light -nologo -sice:ICE08 -sice:ICE09 -sice:ICE32 -sice:ICE61 -out ..\..\bin\Gurtle-%majorversion%.%minorversion%.%microversion%.%wcversion%-%%a.msm ..\..\bin\MergeModule-%%a.wixobj ) popd del bin\*.wixobj del bin\*.wixpdb :end popd
ramkrishanbhatt/gurtle
build.cmd
bat
apache-2.0
3,663
@echo off SETLOCAL if NOT DEFINED RED5_HOME set RED5_HOME=%~dp0 REM Previous option set REM -Xrs -Xms512M -Xmx768M -Xss128K -XX:PermSize=256M -XX:MaxPermSize=512M -XX:NewRatio=2 -XX:MinHeapFreeRatio=20 -XX:+AggressiveHeap -XX:+DisableExplicitGC -XX:ParallelGCThreads=2 -XX:+UseParallelOldGC -XX:+MaxFDLimit -Dsun.rmi.dgc.client.gcInterval=990000 -Dsun.rmi.dgc.server.gcInterval=990000 -Djava.net.preferIPv4Stack=true -Xverify:none REM Update 06/2008 REM -Xmx768m -Xms256 -Xmn512m -Xss128k -XX:+AggressiveOpts -XX:+AggressiveHeap -XX:+DisableExplicitGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:SurvivorRatio=8 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=31 -Djava.net.preferIPv4Stack=true -Dsun.rmi.dgc.client.gcInterval=990000 -Dsun.rmi.dgc.server.gcInterval=990000 REM Update 03/2013 set JVM_OPTS=-Xmx1024m -Xms512m -Xss256k -XX:+AggressiveOpts -XX:+DisableExplicitGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC -Xverify:none -XX:+TieredCompilation -XX:+UseBiasedLocking -XX:+UseStringCache -XX:+UseParNewGC -XX:SurvivorRatio=16 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=31 -Djava.net.preferIPv4Stack=true -XX:InitialCodeCacheSize=8m -XX:ReservedCodeCacheSize=32m -Dorg.terracotta.quartz.skipUpdateCheck=true echo Running High Performance Red5 "%RED5_HOME%\red5.bat" >> "%RED5_HOME%\log\jvm.stdout" ENDLOCAL
esasse/red5-server
src/main/server/red5-highperf.bat
bat
apache-2.0
1,383
if not exist "C:\Windows\Temp\7z920-x64.msi" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.7-zip.org/a/7z920-x64.msi', 'C:\Windows\Temp\7z920-x64.msi')" <NUL ) msiexec /qb /i C:\Windows\Temp\7z920-x64.msi if "%PACKER_BUILDER_TYPE%" equ "vmware-iso" goto :vmware if "%PACKER_BUILDER_TYPE%" equ "virtualbox-iso" goto :virtualbox if "%PACKER_BUILDER_TYPE%" equ "parallels-iso" goto :parallels goto :done :vmware if exist "C:\Users\vagrant\windows.iso" ( move /Y C:\Users\vagrant\windows.iso C:\Windows\Temp ) if not exist "C:\Windows\Temp\windows.iso" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://softwareupdate.vmware.com/cds/vmw-desktop/ws/11.1.2/2780323/windows/packages/tools-windows-9.9.3.exe.tar', 'C:\Windows\Temp\vmware-tools.exe.tar')" <NUL cmd /c ""C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\vmware-tools.exe.tar -oC:\Windows\Temp" FOR /r "C:\Windows\Temp" %%a in (tools-windows-*.exe) DO REN "%%~a" "tools-windows.exe" cmd /c C:\Windows\Temp\tools-windows move /Y "C:\Program Files (x86)\VMware\tools-windows\windows.iso" C:\Windows\Temp rd /S /Q "C:\Program Files (x86)\VMWare" ) cmd /c ""C:\Program Files\7-Zip\7z.exe" x "C:\Windows\Temp\windows.iso" -oC:\Windows\Temp\VMWare" cmd /c C:\Windows\Temp\VMWare\setup.exe /S /v"/qn REBOOT=R\" goto :done :virtualbox :: There needs to be Oracle CA (Certificate Authority) certificates installed in order :: to prevent user intervention popups which will undermine a silent installation. cmd /c certutil -addstore -f "TrustedPublisher" A:\oracle-cert.cer move /Y C:\Users\vagrant\VBoxGuestAdditions.iso C:\Windows\Temp cmd /c ""C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\VBoxGuestAdditions.iso -oC:\Windows\Temp\virtualbox" cmd /c C:\Windows\Temp\virtualbox\VBoxWindowsAdditions.exe /S goto :done :parallels if exist "C:\Users\vagrant\prl-tools-win.iso" ( move /Y C:\Users\vagrant\prl-tools-win.iso C:\Windows\Temp cmd /C "C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\prl-tools-win.iso -oC:\Windows\Temp\parallels cmd /C C:\Windows\Temp\parallels\PTAgent.exe /install_silent rd /S /Q "c:\Windows\Temp\parallels" ) :done msiexec /qb /x C:\Windows\Temp\7z920-x64.msi
Dependencies/packer-windows
scripts/vm-guest-tools.bat
bat
mit
2,250
@echo off rem Build script for dojox.mobile rem rem Note: rem You may need to manually apply the following patch to your build script rem in order to completely remove all the unused modules from your build. rem The patch disables finding the dojo base modules being used from the rem dependent modules with a simple pattern matching, which sometimes rem unexpectedly picks up unused modules. rem For example, if you see query.js and NodeList.js baked into your build, rem while you are not using them, then it is worth trying the patch. rem The file to be patched is util/buildscripts/jslib/buildUtil.js. rem rem --- buildUtil.js-orig rem +++ buildUtil.js rem @@ -1506,7 +1506,7 @@ rem var addedResources = {}; rem - while((matches = buildUtil.baseMappingRegExp.exec(tempContents))){ rem + while(false&&(matches = buildUtil.baseMappingRegExp.exec(tempContents))){ rem var baseResource = buildUtil.baseMappings[matches[1]]; rem //Make sure we do not add the dependency to its source resource. if "%1"=="separate" goto ok if "%1"=="single" goto ok echo Usage: build separate^|single [webkit] echo separate Create mobile.js that includes only dojox.mobile echo single Create a single dojo.js layer that includes dojox.mobile echo webkit Enable webkitMobile=true option (Loses PC browser support) goto end :ok set optimize=shrinksafe set profile=mobile set dir=release-mobile-separate set webkit= if "%1"=="single" set profile=mobile-all if "%1"=="single" set dir=release-mobile-single if "%2"=="webkit" set webkit=webkitMobile=true cd ..\..\..\util\buildscripts call build profile=%profile% action=release customDijitBase=true optimize=%optimize% layerOptimize=%optimize% cssOptimize=comments releaseDir=../../%dir%/ %webkit% cd ..\..\dojox\mobile\build :end
skobbler/AddressHunter
web-app/public/js/dojox/mobile/build/build.bat
bat
bsd-3-clause
1,798
@echo off set ARCH=64 call %~dp0\02-clean.cmd
mgreter/libsass-msi-installer
compile/02-clean-64.bat
bat
mit
46
nuget pack Dxw.Throttling.Core.csproj -Prop Configuration=Release
dlatushkin/Dxw.Throttling
Source/Projects/Dxw.Throttling.Core/Dxw.Throttling.Core.nuget_pack.bat
bat
mit
65
@echo off %~dp0\hssearch\dist\build\HsSearch\hssearch.exe %*
clarkcb/xsearch
haskell/hssearch.bat
bat
mit
61
@echo off SET BUILDFOLDER=build IF NOT EXIST %BUILDFOLDER%\ ( mkdir %BUILDFOLDER% && echo INFO: %BUILDFOLDER% created ) cd build cmake -G "Visual Studio 11" .. cd ..
augmented-go/augmented-go
generate_vs_projects.bat
bat
mit
167
if not exist "BASES\SAS" mkdir BASES\SAS if not exist "output\SAS" mkdir output\sas @ECHO off IF [%1] == [] goto Alerta1 "C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -sysin EjemploLectura.sas -ICON -NOSPLASH -sysparm "" goto Alerta2 :Alerta1 ECHO OjO...... Se debe pasar algun parametro :Alerta2 ECHO El proceso finalizo, el parametro fue --%1--
JoraJora/datavisualizationR
Lectura/Lectura.bat
bat
mit
359
taskkill /IM python.exe /f start cmd /k c:\ProgramData\Anaconda3\python Arby2.py ETH start cmd /k c:\ProgramData\Anaconda3\python Arby2.py LTC start cmd /k c:\ProgramData\Anaconda3\python ArbyBinGdx.py exit
chavwithtache/crypo-check
src/ARBY_BK.bat
bat
mit
208
make -f Makefile.MinGW.g95 %1
ckuethe/wsjt
build_g95.bat
bat
gpl-2.0
31
cmd_net/ipv4/devinet.o := gcc -Wp,-MD,net/ipv4/.devinet.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(devinet)" -D"KBUILD_MODNAME=KBUILD_STR(devinet)" -c -o net/ipv4/devinet.o net/ipv4/devinet.c deps_net/ipv4/devinet.o := \ net/ipv4/devinet.c \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/kmod.h) \ include/asm/uaccess.h \ $(wildcard include/config/x86/32.h) \ include/asm/uaccess_32.h \ $(wildcard include/config/x86/intel/usercopy.h) \ $(wildcard include/config/x86/wp/works/ok.h) \ include/linux/errno.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/asm/posix_types.h \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ $(wildcard include/config/x86/cmov.h) \ include/asm/alternative.h \ $(wildcard include/config/smp.h) \ $(wildcard include/config/paravirt.h) \ include/asm/asm.h \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/processor.h \ $(wildcard include/config/x86/vsmp.h) \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/debug/lock/alloc.h) \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ include/linux/prefetch.h \ include/linux/capability.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.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) \ include/linux/preempt.h \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/math64.h \ include/asm/div64.h \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ include/asm/elf.h \ $(wildcard include/config/compat/vdso.h) \ include/asm/user.h \ include/asm/user_32.h \ include/asm/auxvec.h \ include/asm/vdso.h \ include/asm/desc.h \ include/asm/ldt.h \ include/asm/mmu.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ $(wildcard include/config/cc/stackprotector.h) \ include/asm-x86/mach-default/mach_apicdef.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/wait.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/asm/local.h \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/asm/module.h \ $(wildcard include/config/m486.h) \ $(wildcard include/config/m586.h) \ $(wildcard include/config/m586tsc.h) \ $(wildcard include/config/m586mmx.h) \ $(wildcard include/config/mcore2.h) \ $(wildcard include/config/m686.h) \ $(wildcard include/config/mpentiumii.h) \ $(wildcard include/config/mpentiumiii.h) \ $(wildcard include/config/mpentiumm.h) \ $(wildcard include/config/mpentium4.h) \ $(wildcard include/config/mk6.h) \ $(wildcard include/config/mk8.h) \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/mcrusoe.h) \ $(wildcard include/config/mefficeon.h) \ $(wildcard include/config/mwinchipc6.h) \ $(wildcard include/config/mwinchip2.h) \ $(wildcard include/config/mwinchip3d.h) \ $(wildcard include/config/mcyrixiii.h) \ $(wildcard include/config/mviac3/2.h) \ $(wildcard include/config/mviac7.h) \ $(wildcard include/config/mgeodegx1.h) \ $(wildcard include/config/mgeode/lx.h) \ include/linux/mm.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/rbtree.h \ include/linux/prio_tree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/auxvec.h \ include/linux/completion.h \ include/asm/pgtable.h \ include/asm/pgtable_32.h \ $(wildcard include/config/highpte.h) \ include/asm/paravirt.h \ include/asm/pgtable-2level-defs.h \ include/asm/pgtable-2level.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/socket.h \ include/asm/socket.h \ include/asm/sockios.h \ include/linux/sockios.h \ include/linux/uio.h \ include/linux/in.h \ include/linux/interrupt.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/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/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/asm/timex.h \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/jiffies.h \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/rcuclassic.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/asm/seccomp.h \ include/asm/seccomp_32.h \ include/linux/unistd.h \ include/asm/unistd.h \ include/asm/unistd_32.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/asm/hardirq.h \ include/asm/hardirq_32.h \ include/linux/irq.h \ $(wildcard include/config/irq/per/cpu.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/generic/pending/irq.h) \ $(wildcard include/config/irqbalance.h) \ $(wildcard include/config/auto/irq/affinity.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ include/asm/irq.h \ include/asm/irq_32.h \ include/asm-x86/mach-default/irq_vectors.h \ include/asm-x86/mach-default/irq_vectors_limits.h \ include/asm/irq_regs.h \ include/asm/irq_regs_32.h \ include/asm/hw_irq.h \ include/asm/hw_irq_32.h \ include/linux/profile.h \ $(wildcard include/config/profiling.h) \ include/asm/sections.h \ include/asm-generic/sections.h \ include/linux/irq_cpustat.h \ include/linux/if_addr.h \ include/linux/netlink.h \ include/linux/skbuff.h \ $(wildcard include/config/nf/conntrack.h) \ $(wildcard include/config/bridge/netfilter.h) \ $(wildcard include/config/netdevices/multiqueue.h) \ $(wildcard include/config/net/sched.h) \ $(wildcard include/config/net/cls/act.h) \ $(wildcard include/config/ipv6/ndisc/nodetype.h) \ $(wildcard include/config/net/dma.h) \ $(wildcard include/config/network/secmark.h) \ include/linux/net.h \ include/linux/random.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/sysctl.h \ include/linux/textsearch.h \ include/linux/err.h \ include/net/checksum.h \ include/asm/checksum.h \ include/asm/checksum_32.h \ include/linux/in6.h \ include/linux/dmaengine.h \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/semaphore.h \ include/asm/device.h \ $(wildcard include/config/dmar.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/dma-mapping.h \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/have/dma/attrs.h) \ include/asm/dma-mapping.h \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ include/asm/scatterlist.h \ include/asm/io.h \ include/asm/io_32.h \ include/asm-generic/iomap.h \ include/linux/vmalloc.h \ include/asm/swiotlb.h \ $(wildcard include/config/swiotlb.h) \ include/linux/if_ether.h \ include/linux/inet.h \ include/linux/netdevice.h \ $(wildcard include/config/wlan/80211.h) \ $(wildcard include/config/ax25.h) \ $(wildcard include/config/mac80211/mesh.h) \ $(wildcard include/config/tr.h) \ $(wildcard include/config/net/ipip.h) \ $(wildcard include/config/net/ipgre.h) \ $(wildcard include/config/ipv6/sit.h) \ $(wildcard include/config/ipv6/tunnel.h) \ $(wildcard include/config/netpoll.h) \ $(wildcard include/config/wireless/ext.h) \ $(wildcard include/config/net/poll/controller.h) \ $(wildcard include/config/net/ns.h) \ $(wildcard include/config/netpoll/trap.h) \ include/linux/if.h \ include/linux/hdlc/ioctl.h \ include/linux/if_packet.h \ include/net/net_namespace.h \ $(wildcard include/config/ipv6.h) \ $(wildcard include/config/ip/dccp.h) \ $(wildcard include/config/netfilter.h) \ $(wildcard include/config/net.h) \ include/net/netns/core.h \ include/net/netns/unix.h \ include/net/netns/packet.h \ include/net/netns/ipv4.h \ $(wildcard include/config/ip/multiple/tables.h) \ include/net/inet_frag.h \ include/net/netns/ipv6.h \ $(wildcard include/config/ipv6/multiple/tables.h) \ include/net/netns/dccp.h \ include/net/netns/x_tables.h \ include/linux/seq_file_net.h \ include/linux/seq_file.h \ include/linux/etherdevice.h \ include/linux/inetdevice.h \ include/linux/igmp.h \ include/net/arp.h \ include/linux/if_arp.h \ include/net/neighbour.h \ include/linux/neighbour.h \ include/net/rtnetlink.h \ include/linux/rtnetlink.h \ include/linux/if_link.h \ include/net/netlink.h \ include/net/ip.h \ $(wildcard include/config/inet.h) \ include/linux/ip.h \ include/net/inet_sock.h \ include/linux/jhash.h \ include/net/flow.h \ include/net/sock.h \ include/linux/security.h \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/namei.h \ include/linux/radix-tree.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/binfmts.h \ include/linux/shm.h \ include/asm/shmparam.h \ include/asm/shmbuf.h \ include/linux/msg.h \ include/asm/msgbuf.h \ include/linux/key.h \ include/linux/xfrm.h \ include/linux/filter.h \ include/net/dst.h \ $(wildcard include/config/net/cls/route.h) \ $(wildcard include/config/xfrm.h) \ include/net/request_sock.h \ include/net/route.h \ include/net/inetpeer.h \ include/linux/in_route.h \ include/linux/route.h \ include/net/snmp.h \ include/linux/snmp.h \ include/linux/ipv6.h \ $(wildcard include/config/ipv6/privacy.h) \ $(wildcard include/config/ipv6/router/pref.h) \ $(wildcard include/config/ipv6/route/info.h) \ $(wildcard include/config/ipv6/optimistic/dad.h) \ $(wildcard include/config/ipv6/mroute.h) \ $(wildcard include/config/ipv6/mip6.h) \ $(wildcard include/config/ipv6/subtrees.h) \ include/linux/icmpv6.h \ include/linux/tcp.h \ $(wildcard include/config/tcp/md5sig.h) \ include/net/inet_connection_sock.h \ include/linux/poll.h \ include/asm/poll.h \ include/asm-generic/poll.h \ include/net/inet_timewait_sock.h \ include/net/tcp_states.h \ include/net/timewait_sock.h \ include/linux/udp.h \ include/net/ip_fib.h \ $(wildcard include/config/ip/route/multipath.h) \ include/net/fib_rules.h \ include/linux/fib_rules.h \ net/ipv4/devinet.o: $(deps_net/ipv4/devinet.o) $(deps_net/ipv4/devinet.o):
namgk/kernel-tut
net/ipv4/.devinet.o.cmd
bat
gpl-2.0
24,878
cmd_drivers/serial/built-in.o := /opt/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/serial/built-in.o drivers/serial/serial_core.o drivers/serial/8250.o drivers/serial/brcm_bt_lpm.o drivers/serial/8250_early.o
sembre/kernel_totoro_update3
common/drivers/serial/.built-in.o.cmd
bat
gpl-2.0
219
cmd_drivers/media/video/videodev.o := arm-linux-androideabi-ld -EL -r -o drivers/media/video/videodev.o drivers/media/video/v4l2-dev.o drivers/media/video/v4l2-ioctl.o drivers/media/video/v4l2-device.o drivers/media/video/v4l2-fh.o drivers/media/video/v4l2-event.o drivers/media/video/v4l2-ctrls.o drivers/media/video/v4l2-subdev.o
hch-im/nexus4_kernel
drivers/media/video/.videodev.o.cmd
bat
gpl-2.0
336
cmd_crypto/crypto_blkcipher.o := ld -m elf_i386 -r -o crypto/crypto_blkcipher.o crypto/ablkcipher.o crypto/blkcipher.o
madhwang/linuxKernel
crypto/.crypto_blkcipher.o.cmd
bat
gpl-2.0
122
cmd_fs/jbd/checkpoint.o := gcc -Wp,-MD,fs/jbd/.checkpoint.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(checkpoint)" -D"KBUILD_MODNAME=KBUILD_STR(jbd)" -c -o fs/jbd/checkpoint.o fs/jbd/checkpoint.c deps_fs/jbd/checkpoint.o := \ fs/jbd/checkpoint.c \ include/linux/time.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/linux/cache.h \ $(wildcard include/config/smp.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/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ $(wildcard include/config/x86/cmov.h) \ include/asm/alternative.h \ $(wildcard include/config/paravirt.h) \ include/asm/asm.h \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ $(wildcard include/config/x86/vsmp.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) \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/processor.h \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/math64.h \ include/asm/div64.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/wait.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/mmu.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ $(wildcard include/config/cc/stackprotector.h) \ include/asm-x86/mach-default/mach_apicdef.h \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/linux/rcuclassic.h \ include/linux/namei.h \ include/linux/path.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/err.h \ include/linux/jbd.h \ $(wildcard include/config/jbd/debug.h) \ $(wildcard include/config/buffer/debug.h) \ include/linux/buffer_head.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/linux/completion.h \ include/asm/pgtable.h \ include/asm/pgtable_32.h \ $(wildcard include/config/highpte.h) \ include/asm/paravirt.h \ include/asm/pgtable-2level-defs.h \ include/asm/pgtable-2level.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ include/linux/uaccess.h \ include/asm/uaccess.h \ include/asm/uaccess_32.h \ $(wildcard include/config/x86/intel/usercopy.h) \ $(wildcard include/config/x86/wp/works/ok.h) \ include/asm/cacheflush.h \ $(wildcard include/config/debug/rodata.h) \ $(wildcard include/config/debug/rodata/test.h) \ include/asm/highmem.h \ include/linux/interrupt.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/asm/timex.h \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/jiffies.h \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/asm/seccomp.h \ include/asm/seccomp_32.h \ include/linux/unistd.h \ include/asm/unistd.h \ include/asm/unistd_32.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/asm/hardirq.h \ include/asm/hardirq_32.h \ include/linux/irq.h \ $(wildcard include/config/irq/per/cpu.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/generic/pending/irq.h) \ $(wildcard include/config/irqbalance.h) \ $(wildcard include/config/auto/irq/affinity.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ include/asm/irq.h \ include/asm/irq_32.h \ include/asm-x86/mach-default/irq_vectors.h \ include/asm-x86/mach-default/irq_vectors_limits.h \ include/asm/irq_regs.h \ include/asm/irq_regs_32.h \ include/asm/hw_irq.h \ include/asm/hw_irq_32.h \ include/linux/profile.h \ include/asm/sections.h \ include/asm-generic/sections.h \ include/linux/irq_cpustat.h \ include/asm/tlbflush.h \ include/linux/journal-head.h \ include/linux/bit_spinlock.h \ fs/jbd/checkpoint.o: $(deps_fs/jbd/checkpoint.o) $(deps_fs/jbd/checkpoint.o):
namgk/kernel-tut
fs/jbd/.checkpoint.o.cmd
bat
gpl-2.0
18,743
cmd_net/802/built-in.o := rm -f net/802/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD net/802/built-in.o
avareldalton85/rpi2-linux-rt
net/802/.built-in.o.cmd
bat
gpl-2.0
169
cmd_drivers/char/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/char/built-in.o drivers/char/mem.o drivers/char/random.o drivers/char/misc.o drivers/char/hw_random/built-in.o drivers/char/msm_rotator.o drivers/char/diag/built-in.o
friedrich420/S4-GPE-AEL-Kernel-4.4.3
drivers/char/.built-in.o.cmd
bat
gpl-2.0
286
cmd_net/built-in.o := /mnt/disk2/Dev/UG802/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld.bfd -EL -r -o net/built-in.o net/socket.o net/core/built-in.o net/llc/built-in.o net/ethernet/built-in.o net/802/built-in.o net/sched/built-in.o net/netlink/built-in.o net/netfilter/built-in.o net/ipv4/built-in.o net/xfrm/built-in.o net/unix/built-in.o net/ipv6/built-in.o net/packet/built-in.o net/key/built-in.o net/bridge/built-in.o net/phonet/built-in.o net/8021q/built-in.o net/wireless/built-in.o net/mac80211/built-in.o net/sysctl_net.o net/dns_resolver/built-in.o net/activity_stats.o
aloksinha2001/picuntu-3.0.8-alok
net/.built-in.o.cmd
bat
gpl-2.0
597
cmd_kernel/time/timer_stats.o := arm-eabi-gcc -Wp,-MD,kernel/time/.timer_stats.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(timer_stats)" -D"KBUILD_MODNAME=KBUILD_STR(timer_stats)" -c -o kernel/time/timer_stats.o kernel/time/timer_stats.c deps_kernel/time/timer_stats.o := \ kernel/time/timer_stats.c \ include/linux/proc_fs.h \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ $(wildcard include/config/mmu.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/numa.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/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/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/linux/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 \ /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) \ 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/sparsemem/vmemmap.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/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/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/ftrace/mcount/record.h) \ /usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/wait.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/seqlock.h \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /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/slab_def.h \ include/linux/kmalloc_sizes.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.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) \ include/linux/path.h \ include/linux/stat.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/math64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/magic.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/user.h \ include/linux/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 \ /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/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/iowait/acct.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/timex.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/auxvec.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ipcbuf.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sigcontext.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/seq_file.h \ include/linux/kallsyms.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/uaccess.h \ kernel/time/timer_stats.o: $(deps_kernel/time/timer_stats.o) $(deps_kernel/time/timer_stats.o):
HCDRJacob/wildfire-kernel
kernel/time/.timer_stats.o.cmd
bat
gpl-2.0
146,095
cmd_arch/arm/lib/getuser.o := /home/friedrich420/kernel/note3/N900TKernel/scripts/gcc-wrapper.py /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.getuser.o.d -nostdinc -isystem /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/../lib/gcc/arm-eabi/4.7/include -I/home/friedrich420/kernel/note3/N900TKernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/friedrich420/kernel/note3/N900TKernel/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -mcpu=cortex-a15 -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/getuser.o arch/arm/lib/getuser.S source_arch/arm/lib/getuser.o := arch/arm/lib/getuser.S deps_arch/arm/lib/getuser.o := \ $(wildcard include/config/cpu/use/domains.h) \ /home/friedrich420/kernel/note3/N900TKernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/friedrich420/kernel/note3/N900TKernel/arch/arm/include/asm/linkage.h \ /home/friedrich420/kernel/note3/N900TKernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/friedrich420/kernel/note3/N900TKernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/friedrich420/kernel/note3/N900TKernel/arch/arm/include/asm/hwcap.h \ /home/friedrich420/kernel/note3/N900TKernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ arch/arm/include/generated/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ arch/arm/lib/getuser.o: $(deps_arch/arm/lib/getuser.o) $(deps_arch/arm/lib/getuser.o):
friedrich420/Note-3-AEL-Kernel
arch/arm/lib/.getuser.o.cmd
bat
gpl-2.0
2,339
cmd_sound/soc/codecs/snd-soc-rt5631.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o sound/soc/codecs/snd-soc-rt5631.o sound/soc/codecs/rt5631.o
JoinTheRealms/TF700-dualboot-stockbased
sound/soc/codecs/.snd-soc-rt5631.o.cmd
bat
gpl-2.0
211
cmd_sound/soc/pxa/built-in.o := rm -f sound/soc/pxa/built-in.o; ../prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs sound/soc/pxa/built-in.o
venkatkamesh/2.6.35-kernel-for-lg-optimus-me-
sound/soc/pxa/.built-in.o.cmd
bat
gpl-2.0
157
cmd_drivers/ieee802154/built-in.o := rm -f drivers/ieee802154/built-in.o; /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/ieee802154/built-in.o
PrestigeMod/SHW-M440S
drivers/ieee802154/.built-in.o.cmd
bat
gpl-2.0
196
REM - Runs Monkey Island Server using built pyinstaller EXE - @title C^&C Server @pushd .. @monkey_island\monkey_island.exe @popd
guardicore/monkey
monkey/monkey_island/windows/run_cc_exe.bat
bat
gpl-3.0
129
cls cls @echo %time:~0,5% > CompilelogX.txt ::@nmakeall 2>&1 | .\PRJ\mtee /+ Compilelog0.txt @echo off SETLOCAL EnableDelayedExpansion for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( set "DEL=%%a" ) SET "COMPILE_TARGET_IC=ZET7101" SET "COMPILE_OPTION=RELEASE" IF "%COMPILE_OPTION%" == "RELEASE" Goto :ReleaseCompile Goto :BinCompile ::======================================================================================== :: Release Bin Compile ::======================================================================================== :ReleaseCompile ::del SvnRevCheck.log ::@SubWCRev .\ Release\ZET7101\ReleaseVerCheck.tmpl SvnRevCheck.log ::@FOR /F %%i IN (SvnRevCheck.log) DO @set /A DataNum=%%i ::echo FileChange = %DataNum% ::@set CheckResuklt=%DataNum% @set/a CheckResuklt-=0 Goto :BinCompile :BinCompile call :ColorText 0b "################################################################" @echo\ call :ColorText 0b "##### Start Compile Source Code ##########" @echo\ call :ColorText 0b "################################################################" @echo\ ::@if "%COMPILE_TARGET_IC%" == "all" ( @echo ===================== Compile ALL ===================== @nmakeall 2>&1 | .\PRJ\mtee /+ CompilelogX.txt ::) else ( ::@echo ===================== Compile Target %SEL% ===================== ::@nmake %COMPILE_TARGET_IC% %SEL2% 2>&1 | mtee /+ CompilelogX.txt ::) CALL AStyle.bat :DisplayLog :call :ColorText 0b "################################################################" :@echo\ :call :ColorText 0b "###### If You wanna Save Log , press y ############" :@echo\ :call :ColorText 0b "################################################################" :@e:cho\ ::@echo Save Log (y/n) : ::@set /p note= ::@If '%note%'=='y' ( :@echo Save Log Yes/No in 5 sec : ::CHOICE /t 5 /d y goto sub_save IF errorlevel 2 goto sub_abort IF errorlevel 1 goto sub_save :sub_save @echo\ @copy Compilelog1.txt Compilelog2.txt @copy Compilelog0.txt Compilelog1.txt @copy CompilelogX.txt Compilelog0.txt @echo\ call :ColorText 0b "------- Save Log Done !!! ---------------------" @echo\ call :ColorText 0b "------- Show New Compile Result !!! -----------" @echo\ goto LABEL_END :sub_abort @echo\ call :ColorText 0c "------- Save Log Abort !!! ---------------------" @echo\ call :ColorText 0c "------- Show Last Compile Result !!! -----------" @echo\ ) ::@@@@@@@@@@@@@@@@@@@@@@@@@@ ::ùùùø :LABEL_END call :ColorText 0f "######################################################################" @echo\ call :ColorText 0f "############### History Result Compare #########################" @echo\ call :ColorText 0f "######################################################################" @echo\ call :ColorText 0f " ùø H-Type ùø L-Type ùø 1T2R ùø C ùø CF ùø CK ùø H + C ùø" @echo\ call :ColorText 0f " Time ùø ROM RAMùø ROM RAMùø ROM RAMùø ROM RAMùø ROM RAMùø ROM RAMùø ROM RAMùø" ::call :ColorText 0f " text data bss dec hex filename" @echo\ set file=Compilelog0.txt call:ExtractCompileLog if exist Compilelog1.txt ( set file=Compilelog1.txt call:ExtractCompileLog ) if exist Compilelog2.txt ( set file=Compilelog2.txt call:ExtractCompileLog ) ::======================================================================================== :: Dump Bin ::======================================================================================== IF "%COMPILE_OPTION%" == "RELEASE" ( cd Release\ZET7101 ReleaseBinBatch.bat ) Goto :Eof Goto :Eof ::##################################################################### ::##################################################################### ::##################################################################### ::##################################################################### ::##################################################################### ::##################################################################### ::======Show the newest compile Result ============================= :ExtractCompileLog set "LineOfSet1=" set "LineOfSet2=" set "LineOfSet3=" set "LineOfSet4=" set "LineOfSet5=" set "LineOfSet6=" set "LineOfSet7=" set "LineOfSet8=" set "LineOfSet9=" set "LineOfSet10=" set "LineOfSet11=" set /a KeyWordCnt=0 ::for /f "delims=:" %%a in ('findstr /n "RomSize" "%file%"') do ( :: if not defined LineOfSet1 (set "LineOfSet1=%%a" :: ) else if not defined LineOfSet2 (set "LineOfSet2=%%a" :: ) else if not defined LineOfSet3 (set "LineOfSet3=%%a" :: ) else if not defined LineOfSet4 (set "LineOfSet4=%%a" :: ) else if not defined LineOfSet5 (set "LineOfSet5=%%a" :: ) else if not defined LineOfSet6 (set "LineOfSet6=%%a" :: ) else if not defined LineOfSet7 (set "LineOfSet7=%%a" :: ) else if not defined LineOfSet8 (set "LineOfSet8=%%a" :: ) else if not defined LineOfSet9 (set "LineOfSet9=%%a" :: ) else if not defined LineOfSet10 (set "LineOfSet10=%%a" :: ) else if not defined LineOfSet11 (set "LineOfSet11=%%a") :: :: set /a KeyWordCnt=KeyWordCnt+1 ::) for /f "delims=:" %%a in ('findstr /n "Device_Htype-LPitch" "%file%"') do ( if not defined LineOfSet1 (set "LineOfSet1=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_Ltype-LPitch" "%file%"') do ( if not defined LineOfSet2 (set "LineOfSet2=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-LPitch" "%file%"') do ( if not defined LineOfSet3 (set "LineOfSet3=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_Htype-SPitch" "%file%"') do ( if not defined LineOfSet4 (set "LineOfSet4=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_Ltype-SPitch" "%file%"') do ( if not defined LineOfSet5 (set "LineOfSet5=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-SPitch" "%file%"') do ( if not defined LineOfSet6 (set "LineOfSet6=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-SP-C" "%file%"') do ( if not defined LineOfSet7 (set "LineOfSet7=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-SP-CF" "%file%"') do ( if not defined LineOfSet8 (set "LineOfSet8=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-SP-CK" "%file%"') do ( if not defined LineOfSet9 (set "LineOfSet9=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_Htype-LP-C" "%file%"') do ( if not defined LineOfSet10 (set "LineOfSet10=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-LP-C" "%file%"') do ( if not defined LineOfSet11 (set "LineOfSet11=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) for /f "delims=:" %%a in ('findstr /n "Device_1T2R-LP-CF" "%file%"') do ( if not defined LineOfSet12 (set "LineOfSet12=%%a" ) set /a KeyWordCnt=KeyWordCnt+1 ) ::echo %LineOfSet1% %LineOfSet2% %LineOfSet3% set /a WARNINGCnt=0 for /f "delims=:" %%a in ('findstr /n "UNCALLED unreferenced" "%file%" ') do ( set /a WARNINGCnt=WARNINGCnt+1 ) set /a ERRORCnt=0 for /f "delims=:" %%a in ('findstr /n "error" "%file%" ') do ( set /a ERRORCnt=ERRORCnt+1 ) ::------------ show compile time ----------------------------------- @echo off & setlocal ENABLEEXTENSIONS set LineNo=0 set "CompileTime=" for /f "delims=" %%a in ('more/e +%LineNo% ^< %file% ') do ( if not defined CompileTime set "CompileTime=%%a" ) ::------------ show compile option #1 ------------------------------ set LineNo=%LineOfSet1% set "CompileResult1=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult1= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult1 set "CompileResult1=%%a" ) ) ::------------ show compile option #2 ------------------------------ set LineNo=%LineOfSet2% set "CompileResult2=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult2= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult2 set "CompileResult2=%%a" ) ) ::------------ show compile option #3 ------------------------------ set LineNo=%LineOfSet3% set "CompileResult3=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult3= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult3 set "CompileResult3=%%a" ) ) ::------------ show compile option #4 ------------------------------ set LineNo=%LineOfSet4% set "CompileResult4=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult4= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult4 set "CompileResult4=%%a" ) ) ::------------ show compile option #5 ------------------------------ set LineNo=%LineOfSet5% set "CompileResult5=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult5= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult5 set "CompileResult5=%%a" ) ) ::------------ show compile option #6 ------------------------------ set LineNo=%LineOfSet6% set "CompileResult6=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult6= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult6 set "CompileResult6=%%a" ) ) ::------------ show compile option #7 ------------------------------ set LineNo=%LineOfSet7% set "CompileResult7=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult7= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult7 set "CompileResult7=%%a" ) ) ::------------ show compile option #8 ------------------------------ set LineNo=%LineOfSet8% set "CompileResult8=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult8= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult8 set "CompileResult8=%%a" ) ) ::------------ show compile option #9 ------------------------------ set LineNo=%LineOfSet9% set "CompileResult9=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult9= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult9 set "CompileResult9=%%a" ) ) ::------------ show compile option #10 ------------------------------ set LineNo=%LineOfSet10% set "CompileResult10=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult10= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult10 set "CompileResult10=%%a" ) ) ::------------ show compile option #11 ------------------------------ set LineNo=%LineOfSet11% set "CompileResult11=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult11= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult11 set "CompileResult11=%%a" ) ) ::------------ show compile option #12 ------------------------------ set LineNo=%LineOfSet12% set "CompileResult12=" set/a LineNo-=0 if %LineNo% EQU 0 ( set "CompileResult12= " ) else ( for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined CompileResult12 set "CompileResult12=%%a" ) ) ::------------ show compile Checksum #1 ------------------------------ set LineNo=%LineOfChecksum1% set "String1=" set/a LineNo-=1 for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined String1 set "String1=%%a" ) ::------------ show compile Checksum #2 ------------------------------ set LineNo=%LineOfChecksum2% set "String2=" set/a LineNo-=1 for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined String2 set "String2=%%a" ) ::------------ show compile Checksum #3 ------------------------------ set LineNo=%LineOfChecksum3% set "String3=" set/a LineNo-=1 for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined String3 set "String3=%%a" ) ::------------ show compile Checksum #4 ------------------------------ set LineNo=%LineOfChecksum4% set "String4=" set/a LineNo-=1 for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined String4 set "String4=%%a" ) ::------------ show compile Checksum #5 ------------------------------ set LineNo=%LineOfChecksum5% set "String5=" set/a LineNo-=1 for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined String5 set "String5=%%a" ) ::------------ show compile Checksum #6 ------------------------------ set LineNo=%LineOfChecksum6% set "String6=" set/a LineNo-=1 for /f "delims=" %%a in ('more/e +%LineNo% ^< %file%') do ( if not defined String6 set "String6=%%a" ) ::SET CompileChecksum1=%~1 ::SET CompileChecksum1=%String1:~13,6% ::SET CompileChecksum2=%~1 ::SET CompileChecksum2=%String2:~13,6% ::SET CompileChecksum3=%~1 ::SET CompileChecksum3=%String3:~13,6% ::SET CompileChecksum4=%~1 ::SET CompileChecksum4=%String4:~13,6% ::SET CompileChecksum5=%~1 ::SET CompileChecksum5=%String5:~13,6% ::SET CompileChecksum6=%~1 ::SET CompileChecksum6=%String6:~13,6% SET CompileChecksum1= SET CompileChecksum1= SET CompileChecksum2= SET CompileChecksum2= SET CompileChecksum3= SET CompileChecksum3= SET CompileChecksum4= SET CompileChecksum4= SET CompileChecksum5= SET CompileChecksum5= SET CompileChecksum6= SET CompileChecksum6= SET Block= if %ERRORCnt% EQU 0 ( if %WARNINGCnt% EQU 0 ( goto :ShowResult ) else ( goto :ShowWarningResult ) ) else ( goto :ShowErrResult ) :ShowResult SETLOCAL EnableDelayedExpansion for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( set "DEL=%%a" ) call :ColorText 0A "O" ::@if "%COMPILE_TARGET_IC%" == "all" ( call :ColorText 02 "Lp" echo %CompileTime%[%CompileResult1% %CompileResult2% %CompileResult3% %CompileResult11% %CompileResult12% %CompileResult10%] call :ColorText 0e " Sp" echo %CompileTime%[%CompileResult4% %CompileResult5% %CompileResult6% %CompileResult7% %CompileResult8% %CompileResult9% ] ::) else ( ::@if "%SEL2%" == "1" ( ::echo %CompileTime%[ %CompileResult1% ][ ] ::) else ( ::echo %CompileTime%[ ][ %CompileResult1% ] ::) ) Goto :Eof :ShowWarningResult SETLOCAL EnableDelayedExpansion for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( set "DEL=%%a" ) call :ColorText 0b "X" echo %CompileTime% %CompileResult1% Goto :Eof :ShowErrResult SETLOCAL EnableDelayedExpansion for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( set "DEL=%%a" ) call :ColorText c0 "X" call :ColorText 02 "Lp" echo %CompileTime%[%CompileResult1% %CompileResult2% %CompileResult3% %CompileResult11% %CompileResult12% %CompileResult10%] call :ColorText 0e " Sp" echo %CompileTime%[%CompileResult4% %CompileResult5% %CompileResult6% %CompileResult7% %CompileResult8% %CompileResult9% ] Goto :Eof :ColorText echo off <nul set /p ".=%DEL%" > "%~2" findstr /v /a:%1 /R "^$" "%~2" nul del "%~2" > nul 2>&1 Goto :Eof
amaple0229/Zeitec_ZET7100FAE
7101/WorkLib/Run.bat
bat
lgpl-2.1
15,921
@echo off set COMPILER=vs set VS_VERSION=15 call __buildmaster.cmd
gigaherz/reactos-build-scripts
_buildvs15.cmd
bat
unlicense
69
@rem !/bin/msdos @ @echo %cd% @ @cd const @call make.bat @cd .. @ @cd list @call make.bat @cd ..
dmilos/color
example/less-than-1k/ctor/make.bat
bat
apache-2.0
96
@echo off setlocal REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%AWS_SNS_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%AWS_SNS_HOME:"=%\bin\sns-cmd.cmd" create-topic %* goto DONE :HOME_MISSING echo AWS_SNS_HOME is not set exit /b 1 :DONE
bizo/aws-tools
sns/SimpleNotificationServiceCli-1.0.3.0/bin/sns-create-topic.cmd
bat
apache-2.0
469
:: To build extensions for 64 bit Python 3, we need to configure environment :: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of: :: MS Windows SDK for Windows 7 and .NET Framework 4 (SDK v7.1) :: :: To build extensions for 64 bit Python 2, we need to configure environment :: variables to use the MSVC 2008 C++ compilers from GRMSDKX_EN_DVD.iso of: :: MS Windows SDK for Windows 7 and .NET Framework 3.5 (SDK v7.0) :: :: 32 bit builds, and 64-bit builds for 3.5 and beyond, do not require specific :: environment configurations. :: :: Note: this script needs to be _run with the /E:ON and /V:ON flags for the :: cmd interpreter, at least for (SDK v7.0) :: :: More details at: :: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows :: http://stackoverflow.com/a/13751649/163740 :: :: Author: Olivier Grisel :: License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/ :: :: Notes about batch files for Python people: :: :: Quotes in values are literally part of the values: :: SET FOO="bar" :: FOO is now five characters long: " b a r " :: If you don't want quotes, don't include them on the right-hand side. :: :: The CALL lines at the end of this file look redundant, but if you move them :: outside of the IF clauses, they do not _run properly in the SET_SDK_64==Y :: case, I don't know why. @ECHO OFF SET COMMAND_TO_RUN=%* SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows SET WIN_WDK=c:\Program Files (x86)\Windows Kits\10\Include\wdf :: Extract the major and minor versions, and allow for the minor version to be :: more than 9. This requires the version number to have two dots in it. SET MAJOR_PYTHON_VERSION=%PYTHON_VERSION:~0,1% IF "%PYTHON_VERSION:~3,1%" == "." ( SET MINOR_PYTHON_VERSION=%PYTHON_VERSION:~2,1% ) ELSE ( SET MINOR_PYTHON_VERSION=%PYTHON_VERSION:~2,2% ) :: Based on the Python version, determine what SDK version to use, and whether :: to set the SDK for 64-bit. IF %MAJOR_PYTHON_VERSION% == 2 ( SET WINDOWS_SDK_VERSION="v7.0" SET SET_SDK_64=Y ) ELSE ( IF %MAJOR_PYTHON_VERSION% == 3 ( SET WINDOWS_SDK_VERSION="v7.1" IF %MINOR_PYTHON_VERSION% LEQ 4 ( SET SET_SDK_64=Y ) ELSE ( SET SET_SDK_64=N IF EXIST "%WIN_WDK%" ( :: See: https://connect.microsoft.com/VisualStudio/feedback/details/1610302/ REN "%WIN_WDK%" 0wdf ) ) ) ELSE ( ECHO Unsupported Python version: "%MAJOR_PYTHON_VERSION%" EXIT 1 ) ) IF %PYTHON_ARCH% == 64 ( IF %SET_SDK_64% == Y ( ECHO Configuring Windows SDK %WINDOWS_SDK_VERSION% for Python %MAJOR_PYTHON_VERSION% on a 64 bit architecture SET DISTUTILS_USE_SDK=1 SET MSSdk=1 "%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WINDOWS_SDK_VERSION% "%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release ECHO Executing: %COMMAND_TO_RUN% call %COMMAND_TO_RUN% || EXIT 1 ) ELSE ( ECHO Using default MSVC build environment for 64 bit architecture ECHO Executing: %COMMAND_TO_RUN% call %COMMAND_TO_RUN% || EXIT 1 ) ) ELSE ( ECHO Using default MSVC build environment for 32 bit architecture ECHO Executing: %COMMAND_TO_RUN% call %COMMAND_TO_RUN% || EXIT 1 )
scikit-multilearn/scikit-multilearn
_appveyor/run_with_env.cmd
bat
bsd-2-clause
3,368
mkdir externals cd externals rmdir /s /q dlfcn-win32 mkdir tmp cd tmp REM dlfcn-win32 git clone https://github.com/dlfcn-win32/dlfcn-win32 cd dlfcn-win32 mkdir build cd build mkdir win64 cd win64 cmake -G "MinGW Makefiles" -DCMAKE_C_FLAGS=-m64 -DCMAKE_CXX_FLAGS=-m64 ../.. mingw32-make all cd .. cd .. cd .. cd .. mkdir dlfcn-win32 cd dlfcn-win32 mkdir include copy ..\tmp\dlfcn-win32\dlfcn.h include mkdir lib\win64 copy ..\tmp\dlfcn-win32\build\win64\libdl.dll lib\win64 cd .. rmdir /s /q tmp cd ..
KCL-Planning/VAL
scripts/windows/setup_dlfcn-win32.bat
bat
bsd-3-clause
512
start /B atom ./ ../csComp ../csServerComp ../test start gulp nodemon --delay 1000ms server.js start http://localhost:3002
TNOCS/csWeb-example
editWithGulp.bat
bat
mit
122
@echo off npm install && node_modules\.bin\hubot.cmd --name "co" %*
francho/agilico-slackbot
bin/hubot.cmd
bat
mit
69
:: usage: stanford-postagger model textFile :: e.g., stanford-postagger models\left3words-wsj-0-18.tagger sample-input.txt java -mx300m -cp "stanford-postagger.jar;" edu.stanford.nlp.tagger.maxent.MaxentTagger -model %1 -textFile %2
bulters/stanford-stemming-server
stanford-postagger.bat
bat
gpl-2.0
235
cmd_fs/nfs/nfs.o := arm-eabi-ld -EL -r -o fs/nfs/nfs.o fs/nfs/client.o fs/nfs/dir.o fs/nfs/file.o fs/nfs/getroot.o fs/nfs/inode.o fs/nfs/super.o fs/nfs/nfs2xdr.o fs/nfs/direct.o fs/nfs/pagelist.o fs/nfs/proc.o fs/nfs/read.o fs/nfs/symlink.o fs/nfs/unlink.o fs/nfs/write.o fs/nfs/namespace.o fs/nfs/mount_clnt.o fs/nfs/dns_resolve.o fs/nfs/cache_lib.o fs/nfs/nfs3proc.o fs/nfs/nfs3xdr.o fs/nfs/sysctl.o
mcardielo/ThunderG-Kernel_2.6.35
fs/nfs/.nfs.o.cmd
bat
gpl-2.0
406
cmd_sound/pci/pcxhr/built-in.o := rm -f sound/pci/pcxhr/built-in.o; /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ar rcsD sound/pci/pcxhr/built-in.o
friedrich420/Note-3-AEL-Kernel
sound/pci/pcxhr/.built-in.o.cmd
bat
gpl-2.0
166
@echo off setlocal rem REF [site] >> http://www.oracle.com/technetwork/java/javase/javawebstart/index.html call javaws java_web_start.jnlp endlocal echo on
sangwook236/general-development-and-testing
sw_dev/java/run_jnlp.bat
bat
gpl-2.0
166
cmd_sound/drivers/vx/built-in.o := rm -f sound/drivers/vx/built-in.o; /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ar rcsD sound/drivers/vx/built-in.o
friedrich420/Note-3-AEL-Kernel
sound/drivers/vx/.built-in.o.cmd
bat
gpl-2.0
169
cmd_sound/soundcore.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o sound/soundcore.o sound/sound_core.o
friedrich420/Note-3-AEL-Kernel
sound/.soundcore.o.cmd
bat
gpl-2.0
141
set batdir=%~dp0 cd %batdir% call ..\utilities\findMatlab.bat if %ismatlab%==1 ( start "Matlab" /b %matexe% -r "run ../matlab/utilities/initPaths.m;eventViewer();quit;" %matopts% ) else ( echo run ../matlab/utilities/initPaths.m;eventViewer;quit; | %matexe% %matopts% )
bopjesvla/BCI
dataAcq/startMatlabEventViewer.bat
bat
gpl-3.0
274
@echo off setlocal set TBB_PATH_LOCAL=%cd%\tbb mkdir -p build_win32 cd build_win32 del CMakeCache.txt del version.h REM set release settings cmake -L ^ -G "Visual Studio 12 2013" ^ -T "Intel C++ Compiler XE 15.0" ^ -D XEON_ISA=AVX2 ^ -D ENABLE_XEON_PHI_SUPPORT=OFF ^ -D USE_IMAGE_MAGICK=OFF ^ -D USE_LIBJPEG=OFF ^ -D USE_LIBPNG=OFF ^ -D USE_OPENEXR=OFF ^ -D TBB_ROOT=%TBB_PATH_LOCAL% ^ .. REM compile cmake --clean-first --build . --config Release --target PREINSTALL -- /m /nologo /verbosity:n REM create ZIP files cmake ^ -D RTCORE_ZIP_MODE=ON ^ -D CMAKE_INSTALL_INCLUDEDIR=include ^ -D CMAKE_INSTALL_LIBDIR=lib ^ -D CMAKE_INSTALL_DATAROOTDIR= ^ -D CMAKE_INSTALL_DOCDIR=doc ^ -D CMAKE_INSTALL_BINDIR=bin ^ .. cmake --build . --config Release --target PACKAGE -- /m /nologo /verbosity:n REM create installers cmake ^ -D RTCORE_ZIP_MODE=OFF ^ -D CMAKE_INSTALL_INCLUDEDIR=include ^ -D CMAKE_INSTALL_LIBDIR=lib ^ -D CMAKE_INSTALL_DATAROOTDIR= ^ -D CMAKE_INSTALL_DOCDIR=doc ^ -D CMAKE_INSTALL_BINDIR=bin ^ .. cmake --build . --config Release --target PACKAGE -- /m /nologo /verbosity:n cd .. mkdir build_x64 cd build_x64 del CMakeCache.txt # make sure to use default settings del version.h REM set release settings cmake -L ^ -G "Visual Studio 12 2013 Win64" ^ -T "Intel C++ Compiler XE 15.0" ^ -D XEON_ISA=AVX2 ^ -D TBB_ROOT=%TBB_PATH_LOCAL% ^ -D ENABLE_XEON_PHI_SUPPORT=OFF ^ -D USE_IMAGE_MAGICK=OFF ^ -D USE_LIBJPEG=OFF ^ -D USE_LIBPNG=OFF ^ -D USE_OPENEXR=OFF ^ .. REM compile cmake --clean-first --build . --config Release --target PREINSTALL -- /m /nologo /verbosity:n REM create installers cmake ^ -D RTCORE_ZIP_MODE=OFF ^ -D CMAKE_INSTALL_INCLUDEDIR=include ^ -D CMAKE_INSTALL_LIBDIR=lib ^ -D CMAKE_INSTALL_DATAROOTDIR= ^ -D CMAKE_INSTALL_DOCDIR=doc ^ -D CMAKE_INSTALL_BINDIR=bin ^ .. cmake --build . --config Release --target PACKAGE -- /m /nologo /verbosity:n REM create ZIP files cmake ^ -D RTCORE_ZIP_MODE=ON ^ -D CMAKE_INSTALL_INCLUDEDIR=include ^ -D CMAKE_INSTALL_LIBDIR=lib ^ -D CMAKE_INSTALL_DATAROOTDIR= ^ -D CMAKE_INSTALL_DOCDIR=doc ^ -D CMAKE_INSTALL_BINDIR=bin ^ .. cmake --build . --config Release --target PACKAGE -- /m /nologo /verbosity:n del CMakeCache.txt cd .. :abort endlocal :end
KIKI007/ReusedPrinter
external/embree/scripts/release_win.bat
bat
mpl-2.0
2,222
@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\rbitextensions.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\rbitextensions.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
Connexions/roadrunners
docs/make.bat
bat
agpl-3.0
6,717
if not exist "C:\Windows\Temp\7z920-x64.msi" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.7-zip.org/a/7z920-x64.msi', 'C:\Windows\Temp\7z920-x64.msi')" <NUL ) msiexec /qb /i C:\Windows\Temp\7z920-x64.msi if "%PACKER_BUILDER_TYPE%" equ "vmware-iso" goto :vmware if "%PACKER_BUILDER_TYPE%" equ "virtualbox-iso" goto :virtualbox if "%PACKER_BUILDER_TYPE%" equ "parallels-iso" goto :parallels goto :done :vmware if exist "C:\Users\vagrant\windows.iso" ( move /Y C:\Users\vagrant\windows.iso C:\Windows\Temp ) if not exist "C:\Windows\Temp\windows.iso" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://softwareupdate.vmware.com/cds/vmw-desktop/ws/12.5.2/4638234/windows/packages/tools-windows.tar', 'C:\Windows\Temp\vmware-tools.tar')" <NUL cmd /c ""C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\vmware-tools.tar -oC:\Windows\Temp" FOR /r "C:\Windows\Temp" %%a in (VMware-tools-windows-*.iso) DO REN "%%~a" "windows.iso" rd /S /Q "C:\Program Files (x86)\VMWare" ) cmd /c ""C:\Program Files\7-Zip\7z.exe" x "C:\Windows\Temp\windows.iso" -oC:\Windows\Temp\VMWare" cmd /c C:\Windows\Temp\VMWare\setup.exe /S /v"/qn REBOOT=R\" rd /Q "C:\Windows\Temp\vmware-tools.tar" rd /Q "C:\Windows\Temp\windows.iso" rd /S /Q "C:\Windows\Temp\VMware" goto :done :virtualbox :: There needs to be Oracle CA (Certificate Authority) certificates installed in order :: to prevent user intervention popups which will undermine a silent installation. cmd /c certutil -addstore -f "TrustedPublisher" A:\oracle-cert.cer if exist "C:\Users\vagrant\VBoxGuestAdditions.iso" ( move /Y C:\Users\vagrant\VBoxGuestAdditions.iso C:\Windows\Temp ) if not exist "C:\Windows\Temp\VBoxGuestAdditions.iso" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://download.virtualbox.org/virtualbox/5.1.12/VBoxGuestAdditions_5.1.12.iso', 'C:\Windows\Temp\VBoxGuestAdditions.iso')" <NUL ) cmd /c ""C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\VBoxGuestAdditions.iso -oC:\Windows\Temp\virtualbox" certutil -addstore -f "TrustedPublisher" C:\Windows\Temp\virtualbox\cert\vbox-sha256-r3.cer certutil -addstore -f "TrustedPublisher" C:\Windows\Temp\virtualbox\cert\vbox-sha256.cer certutil -addstore -f "TrustedPublisher" C:\Windows\Temp\virtualbox\cert\vbox-sha1.cer cmd /c C:\Windows\Temp\virtualbox\VBoxWindowsAdditions.exe /S rd /S /Q "C:\Windows\Temp\virtualbox" goto :done :parallels if exist "C:\Users\vagrant\prl-tools-win.iso" ( move /Y C:\Users\vagrant\prl-tools-win.iso C:\Windows\Temp cmd /C "C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\prl-tools-win.iso -oC:\Windows\Temp\parallels cmd /C C:\Windows\Temp\parallels\PTAgent.exe /install_silent rd /S /Q "C:\Windows\Temp\parallels" ) :done msiexec /qb /x C:\Windows\Temp\7z920-x64.msi
Sarafian/ISHBootstrap
Source/Packer/Vagrant/scripts/vm-guest-tools.bat
bat
apache-2.0
2,844
@echo off title UpdateRecovery xcopy %~dp0\..\Nitra.Visualizer\Recovery\Recovery.cs %~dp0\Nitra.Runtime\Internal\Recovery /R /Y pause
JetBrains/Nitra
Nitra/UpdateRecovery.cmd
bat
bsd-3-clause
136
@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\VumiJavascriptSandboxToolkit.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\VumiJavascriptSandboxToolkit.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
GeekFreaker/vumi-jssandbox-toolkit
docs/make.bat
bat
bsd-3-clause
6,745
inject.exe --run "E:\Games\SteamLibrary\SteamApps\common\Aliens vs Predator\AvP.exe" --inject --steam-app-id 10680 --export Load --add-path --path-resolution --module cerberus.dll
geota/hadesmem
scripts/x86/avp-dx9.bat
bat
mit
179
cmd_scripts/kconfig/zconf.tab.o := gcc -Wp,-MD,scripts/kconfig/.zconf.tab.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -Iscripts/kconfig -c -o scripts/kconfig/zconf.tab.o scripts/kconfig/zconf.tab.c deps_scripts/kconfig/zconf.tab.o := \ scripts/kconfig/zconf.tab.c \ /usr/include/ctype.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/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/xlocale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \ /usr/include/stdio.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/x86_64-linux-gnu/bits/locale.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/zconf.hash.c \ scripts/kconfig/lex.zconf.c \ /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/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/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/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 \ scripts/kconfig/util.c \ scripts/kconfig/confdata.c \ $(wildcard include/config/config.h) \ $(wildcard include/config/autoconfig.h) \ $(wildcard include/config/.h) \ $(wildcard include/config/overwriteconfig.h) \ $(wildcard include/config/notimestamp.h) \ $(wildcard include/config/autoheader.h) \ $(wildcard include/config/tristate.h) \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ scripts/kconfig/expr.c \ scripts/kconfig/symbol.c \ /usr/include/regex.h \ /usr/include/x86_64-linux-gnu/gnu/option-groups.h \ /usr/include/x86_64-linux-gnu/sys/utsname.h \ /usr/include/x86_64-linux-gnu/bits/utsname.h \ scripts/kconfig/menu.c \ scripts/kconfig/zconf.tab.o: $(deps_scripts/kconfig/zconf.tab.o) $(deps_scripts/kconfig/zconf.tab.o):
bigbiff/i717-GB-Kernel
scripts/kconfig/.zconf.tab.o.cmd
bat
gpl-2.0
4,155
@echo off ::set LOCAL_DEBUG=1 Setlocal EnableDelayedExpansion EnableExtensions if defined LOCAL_DEBUG echo APPVEYOR_BUILD_FOLDER %APPVEYOR_BUILD_FOLDER% echo platform %platform% :: ========================================================= :: Set some defaults. Infer some variables. :: if not defined MSVC_VER set MSVC_VER=12.0 if not defined RUNTIME set RUNTIME=msvc%MSVC_VER:.=% if not defined MSVC_YEAR set MSVC_YEAR=2013 if not defined BUILD_ROOT_DIR set BUILD_ROOT_DIR=c:\build if not defined DOWNLOADS_DIR set DOWNLOADS_DIR=%APPVEYOR_BUILD_FOLDER%\downloads if not defined COMMON_INSTALL_DIR set COMMON_INSTALL_DIR=%BUILD_ROOT_DIR%\local\%RUNTIME%\%PLATFORM% :: for cmake its the min version if not defined CMAKE_VERSION set CMAKE_VERSION=3.5.2 if not defined PG_VERSION set PG_VERSION=2.3.1 if not defined BOOST_VERSION set BOOST_VERSION=1.58.0 if not defined CGAL_VERSION set CGAL_VERSION=4.8.1 set CMAKE_GENERATOR=Visual Studio %MSVC_VER:.0=% %MSVC_YEAR% if "%platform%"=="x64" ( set CMAKE_GENERATOR=%CMAKE_GENERATOR% Win64 ) :: Determine if arch is 32/64 bits if /I "%platform%"=="x86" ( set arch=32) else ( set arch=64) :: :: ========================================================= :: create a download directory: pushd %APPVEYOR_BUILD_FOLDER% mkdir downloads 2>NUL popd mkdir %COMMON_INSTALL_DIR% 2>NUL if defined LOCAL_DEBUG dir %DOWNLOADS_DIR% if defined LOCAL_DEBUG dir %COMMON_INSTALL_DIR% :: ========================================================= :: Download and install cmake :: echo ==================================== CMAKE for /f "tokens=* delims=" %%a in ('cmake --version') do ( set CURR_CMAKE=%%a& goto _ExitForLoop1 ) :_ExitForLoop1 set CURR_CMAKE=%CURR_CMAKE:~14% echo cmake %CURR_CMAKE% found if "%CURR_CMAKE%" GTR "%CMAKE_VERSION%" ( echo cmake %CMAKE_VERSION% already installed ) else ( echo Downloading cmake %CMAKE_VERSION% pushd %DOWNLOADS_DIR% curl -L -O -S -s https://cmake.org/files/v3.5/cmake-%CMAKE_VERSION%-win32-%platform%.msi popd echo Installing cmake %CMAKE_VERSION% pushd %DOWNLOADS_DIR% start /wait msiexec /i cmake-%CMAKE_VERSION%-win32-%platform%.msi /qn popd for /f "tokens=* delims=" %%a in ('cmake --version') do ( set CURR_CMAKE=%%a& goto _ExitForLoop2 ) :_ExitForLoop2 set CURR_CMAKE=%CURR_CMAKE:~14% if "%CURR_CMAKE%" == "%CMAKE_VERSION%" ( echo cmake %CMAKE_VERSION% installed ) else ( echo something went wrong on cmake installation!!!!!!!!! Exit \B 1 ) ) echo ==================================== :: :: ========================================================= :: ========================================================= :: Download and install Postgis :: echo ==================================== POSTGIS if not exist "C:\Progra~1\PostgreSQL\9.4\makepostgisdb_using_extensions.bat" ( cd %APPVEYOR_BUILD_FOLDER% if not exist %DOWNLOADS_DIR%\postgis-pg94-binaries-%PG_VERSION%w%arch%gcc48.zip ( echo Downloading PostGIS %PG_VERSION% pushd %DOWNLOADS_DIR% curl -L -O -S -s http://winnie.postgis.net/download/windows/pg94/buildbot/postgis-pg94-binaries-%PG_VERSION%w%arch%gcc48.zip popd if not exist %DOWNLOADS_DIR%\postgis-pg94-binaries-%PG_VERSION%w%arch%gcc48.zip ( echo something went wrong on PostGIS %PG_VERSION% download !!!!!!!!! if defined LOCAL_DEBUG dir %DOWNLOADS_DIR% Exit \B 1 ) ) echo Extracting PostGIS %PG_VERSION% pushd %DOWNLOADS_DIR% 7z x -o%BUILD_ROOT_DIR%\ postgis-pg94-binaries-%PG_VERSION%w%arch%gcc48.zip popd echo **** Installing postGIS %PG_VERSION% xcopy /e /y /q %BUILD_ROOT_DIR%\postgis-pg94-binaries-%PG_VERSION%w%arch%gcc48 C:\Progra~1\PostgreSQL\9.4 if not exist "C:\Progra~1\PostgreSQL\9.4\makepostgisdb_using_extensions.bat" ( echo something went wrong on PostGIS %PG_VERSION% installation !!!!!!!!! if defined LOCAL_DEBUG dir %DOWNLOADS_DIR% if defined LOCAL_DEBUG dir C:\Progra~1\PostgreSQL\9.4\ Exit \B 1 ) else ( echo **** PostGIS %PG_VERSION% %arch% installed ) ) else ( echo PostGIS %PG_VERSION% %arch% already installed ) echo ==================================== :: ========================================================= :: Download and install Boost :: :: set BOOST_LOCAL_DEBUG=1 call ci/appveyor/install-boost.bat :: :: CGAL & GMP & MPFR :: :: set CGAL_LOCAL_DEBUG=1 call ci/appveyor/install-CGAL.bat echo ====================================================== echo Installation of Prerequisites done. echo Environment variables set: echo BOOST_THREAD_LIB %BOOST_THREAD_LIB% echo BOOST_SYSTEM_LIB %BOOST_SYSTEM_LIB% echo BOOST_INCLUDE_DIR %BOOST_INCLUDE_DIR% echo GMP_LIBRARIES %GMP_LIBRARIES% echo MPFR_LIBRARIES %MPFR_LIBRARIES% echo CGAL_LIBRARIES %CGAL_LIBRARIES% echo CGAL_INCLUDE_DIR %CGAL_INCLUDE_DIR% echo GMP_INCLUDE_DIR %GMP_INCLUDE_DIR% echo CMAKE_GENERATOR %CMAKE_GENERATOR% echo ====================================================== echo. endlocal & ( set BOOST_THREAD_LIB=%BOOST_THREAD_LIB% set BOOST_SYSTEM_LIB=%BOOST_SYSTEM_LIB% set BOOST_INCLUDE_DIR=%BOOST_INCLUDE_DIR% set GMP_LIBRARIES=%GMP_LIBRARIES% set MPFR_LIBRARIES=%MPFR_LIBRARIES% set CGAL_LIBRARIES=%CGAL_LIBRARIES% set CGAL_INCLUDE_DIR=%CGAL_INCLUDE_DIR% set GMP_INCLUDE_DIR=%GMP_INCLUDE_DIR% set CMAKE_GENERATOR=%CMAKE_GENERATOR% ) goto :eof
sankepallyrohithreddy/pgrouting
ci/appveyor/install.bat
bat
gpl-2.0
5,482
java -jar build/maven/aws-apigateway-swagger-importer-1.0.0-jar-with-dependencies.jar %*
s0enke/aws-apigateway-swagger-importer
aws-api-import.cmd
bat
apache-2.0
89
@ECHO OFF if not exist "D:\AHK-Tests" ( dbgprint "AHK Application testing suite not present, skipping." exit /b 0 ) xcopy /Y /H /E D:\AHK-Tests\*.* C:\ReactOS\bin dbgprint "....AHK Application testing suite added."
rickerliang/reactos-mirror2
boot/bootdata/bootcdregtest/AHKAppTests.cmd
bat
gpl-2.0
232
@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 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\DiscordNet.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\DiscordNet.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
dreadofmondays/xpandBot
docs/make.bat
bat
mit
6,989
java -jar Orape.jar
PinkBweezel/fabiano-swagger-of-doom
Client Updater/Orape.cmd
bat
gpl-3.0
19
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) 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. 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 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp 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 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PyZen.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyZen.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck 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 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
dipakvwarade/pychef
docs/make.bat
bat
apache-2.0
4,104
set MAPFILE=tgstation.2.1.3.dmm cd ../../_maps/map_files/TgStation/ copy %MAPFILE% %MAPFILE%.backup pause
DerptheStewpidGoat/PrisonStationOmega-Master
tools/mapmerge/prepare_map.bat
bat
agpl-3.0
108
@Echo off rem rem unbound-control-setup.cmd - set up SSL certificates for unbound-control rem rem Copyright (c) 2008, NLnet Labs. All rights reserved. rem Modified for Windows by Y.Voinov (c) 2014 rem rem This software is open source. rem rem Redistribution and use in source and binary forms, with or without rem modification, are permitted provided that the following conditions rem are met: rem rem Redistributions of source code must retain the above copyright notice, rem this list of conditions and the following disclaimer. rem rem Redistributions in binary form must reproduce the above copyright notice, rem this list of conditions and the following disclaimer in the documentation rem and/or other materials provided with the distribution. rem rem Neither the name of the NLNET LABS nor the names of its contributors may rem be used to endorse or promote products derived from this software without rem specific prior written permission. rem rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS rem "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT rem LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR rem A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT rem HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, rem SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED rem TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR rem PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF rem LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING rem NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS rem SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. rem settings: rem directory for files set prefix="C:\Program Files (x86)" set DESTDIR=%prefix%\Unbound rem issuer and subject name for certificates set SERVERNAME=unbound set CLIENTNAME=unbound-control rem validity period for certificates set DAYS=7200 rem size of keys in bits set BITS=1536 rem hash algorithm set HASH=sha256 rem base name for unbound server keys set SVR_BASE=unbound_server rem base name for unbound-control keys set CTL_BASE=unbound_control rem end of options rem Check OpenSSL installed for /f "delims=" %%a in ('where openssl') do @set SSL_PROGRAM=%%a if /I "%SSL_PROGRAM%"=="" echo SSL not found. If installed, add path to PATH environment variable. & exit 1 echo SSL found: %SSL_PROGRAM% set arg=%1 if /I "%arg%" == "-h" goto help if /I "%arg%"=="-d" set DESTDIR=%2 rem go!: echo setup in directory %DESTDIR% cd %DESTDIR% rem create certificate keys; do not recreate if they already exist. if exist %SVR_BASE%.key ( echo %SVR_BASE%.key exists goto next ) echo generating %SVR_BASE%.key "%SSL_PROGRAM%" genrsa -out %SVR_BASE%.key %BITS% || echo could not genrsa && exit 1 :next if exist %CTL_BASE%.key ( echo %CTL_BASE%.key exists goto next2 ) echo generating %CTL_BASE%.key "%SSL_PROGRAM%" genrsa -out %CTL_BASE%.key %BITS% || echo could not genrsa && exit 1 :next2 rem create self-signed cert for server if exist request.cfg (del /F /Q /S request.cfg) echo [req]>>request.cfg echo default_bits=%BITS%>>request.cfg echo default_md=%HASH%>>request.cfg echo prompt=no>>request.cfg echo distinguished_name=req_distinguished_name>>request.cfg echo.>>request.cfg echo [req_distinguished_name]>>request.cfg echo commonName=%SERVERNAME%>>request.cfg if not exist request.cfg ( echo could not create request.cfg exit 1 ) echo create %SVR_BASE%.pem (self signed certificate) "%SSL_PROGRAM%" req -key %SVR_BASE%.key -config request.cfg -new -x509 -days %DAYS% -out %SVR_BASE%.pem || echo could not create %SVR_BASE%.pem && exit 1 rem create trusted usage pem "%SSL_PROGRAM%" x509 -in %SVR_BASE%.pem -addtrust serverAuth -out %SVR_BASE%_trust.pem rem create client request and sign it if exist request.cfg (del /F /Q /S request.cfg) echo [req]>>request.cfg echo default_bits=%BITS%>>request.cfg echo default_md=%HASH%>>request.cfg echo prompt=no>>request.cfg echo distinguished_name=req_distinguished_name>>request.cfg echo.>>request.cfg echo [req_distinguished_name]>>request.cfg echo commonName=%CLIENTNAME%>>request.cfg if not exist request.cfg ( echo could not create request.cfg exit 1 ) echo create %CTL_BASE%.pem (signed client certificate) "%SSL_PROGRAM%" req -key %CTL_BASE%.key -config request.cfg -new | "%SSL_PROGRAM%" x509 -req -days %DAYS% -CA %SVR_BASE%_trust.pem -CAkey %SVR_BASE%.key -CAcreateserial -%HASH% -out %CTL_BASE%.pem if not exist %CTL_BASE%.pem ( echo could not create %CTL_BASE%.pem exit 1 ) rem create trusted usage pem rem "%SSL_PROGRAM%" x509 -in %CTL_BASE%.pem -addtrust clientAuth -out %CTL_BASE%_trust.pem rem see details with "%SSL_PROGRAM%" x509 -noout -text < %SVR_BASE%.pem rem echo "create %CTL_BASE%_browser.pfx (web client certificate)" rem echo "create webbrowser PKCSrem12 .PFX certificate file. In Firefox import in:" rem echo "preferences - advanced - encryption - view certificates - your certs" rem echo "empty password is used, simply click OK on the password dialog box." rem "%SSL_PROGRAM%" pkcs12 -export -in %CTL_BASE%_trust.pem -inkey %CTL_BASE%.key -name "unbound remote control client cert" -out %CTL_BASE%_browser.pfx -password "pass:" || echo could not create browser certificate && exit 1 rem remove crap del /F /Q /S request.cfg del /F /Q /S %CTL_BASE%_trust.pem del /F /Q /S %SVR_BASE%_trust.pem del /F /Q /S %SVR_BASE%_trust.srl echo Setup success. Certificates created. Enable in unbound.conf file to use exit 0 :help echo unbound-control-setup.cmd - setup SSL keys for unbound-control echo -d dir use directory to store keys and certificates. echo default: %DESTDIR% echo please run this command using the same user id that the echo unbound daemon uses, it needs read privileges. exit 1
hdais/unbound-bloomfilter
winrc/unbound-control-setup.cmd
bat
bsd-3-clause
6,018
/* //########################################################################### // // FILE: 28067_RAM_lnk.cmd // // TITLE: Linker Command File For F28067 examples that run out of RAM // // This ONLY includes all SARAM blocks on the F28067 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 F28067 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. //=========================================================================== */
martianmartin/Energia
hardware/c2000/cores/c2000/F2806x_common/cmd/28067_RAM_lnk.cmd
bat
lgpl-2.1
6,916
@if not defined _echo @echo off setlocal EnableDelayedExpansion if /I [%1] == [-?] goto Usage if /I [%1] == [-help] goto Usage @if [%1]==[] set __args=-p @call %~dp0run.cmd sync %__args% %* @exit /b %ERRORLEVEL% :Usage echo. echo Repository syncing script. echo. echo Options: echo -? - Prints Usage echo -help - Prints Usage echo -p - Restores all nuget packages for repository echo -ab - Downloads the latests product packages from Azure. echo The following properties are required: echo -AzureAccount="Account name" echo -AzureToken="Access token" echo To download a specific group of product packages, specify: echo -BuildMajor echo -BuildMinor echo To download from a specific container, specify: echo -Container="container name" echo To download blobs starting with a specific prefix, specify: echo -BlobNamePrefix="Blob name prefix" echo -n - Downloads test native binaries from the specified container echo The following properties are required: echo -AzureAccount="Account name" echo -AzureToken="Access token" echo -Container="Container name" echo -RuntimeId="RID" (Needs to match what's in the container) echo. echo. echo. echo If no option is specified then sync.cmd -p is implied.
pgavlin/coreclr
sync.cmd
bat
mit
1,459
::set "dirpath=c:\Users\herm\Documents\hermwong\phonegap-wp7\tests\MobileSpecUnitTests\" set dirpath=%CD%"\MobileSpecUnitTests\" dir /s /b %dirpath%www\*.* > temp.txt :: remove local path BatchSubstitute.bat %dirpath% "" temp.txt > filelist.txt :: temp.txt is re-used by the xml.js to store the xml nodes
sgrebnov/phonegap-wp7
tests/FileNameParser.bat
bat
mit
308
r2pkg.exe -c data aicollector.exe -p data -o data/autoids.content -j -ext .json .actor .render .sprite .target .item .particle
MrPepperoni/Reaping2-1
run/update_data.bat
bat
mit
129
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\abqpy_writeinputfile.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\abqpy_writeinputfile.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
k4vosh/abqpy_writeinputfile
docs/make.bat
bat
mit
7,479
:: Hak Cipta ©2018 :: @neon-nyan / codeneon :: [[email protected]] :: :: Di bawah Hak Cipta MIT License :: [https://github.com/neon-nyan/xAutoBatch/raw/master/LICENSE] :__jumper if "%jump%" == "" ( msg * Sertakan label terlebih dahulu! msg * Dan gunakan Classes ini dengan program Encodernya. msg * ^(/^^_^^^)/ Makasih! \^(^^_^^\^) ^<-----------^> Oleh: codeneon exit ) else ( goto %jump% ) :CheckValueInParameters set jumplabel=_resumeCheckValueInParameters goto :CheckParamAvailibility :_resumeCheckValueInParameters REM Setel value default dari parameter profile dengan high10 REM bila tidak tidak sesuai dengan definisi. if "%param%" == "profile" ( if "%output%" == "high10" ( REM EOF ) else if "%output%" == "high" ( REM EOF ) else set output=high10 ) set CheckData=--%param% %output% REM Bila parameter tidak mempunyai value, maka parameter tersebut tidak akan di REM keluarkan sebagai output. Melainkan akan terhapus dengan parameter lain. if "%output%" == "" ( set parameters=%parameters% ) else ( set parameters=%parameters% %CheckData% ) REM Output akan muncul bila parameter +debug berlaku. %argDebug% [DEBUG] %CheckData% goto :__end :NoCheckValueInParameters set jumplabel=:_resumeNoCheckValueInParameters goto :CheckParamAvailibility :_resumeNoCheckValueInParameters set CheckDataNoValue=--%param% set parameters=%parameters% %CheckDataNoValue% goto :__end :CheckParamAvailibility :DoCheckParamAvailibility if "%output%" == "" ( if /i "%param%" == "open-gop" ( REM EOF ) else if /i "%param%" == "weightb" ( REM EOF ) else if /i "%param%" == "stats" ( REM EOF ) else echo ---- Tidak ada value pada parameter %param% ) else set outputstat=%output% REM Output akan muncul bila parameter +debug berlaku. %argDebug% %debugStat% [INFO] Check Param: --%param% %outputstat%... find "%param%" "%input%" | echo > nul if "%errorlevel%" == "1" ( set parameters=%parameters% echo| set /p = GAGAL goto :_end ) echo| set /p = OK :_resume if "%jumplabel%" == "" ( echo. > nul ) else goto %jumplabel% :__end set jumplabel= set CheckData= set CheckDataNoValue= set jump=
neon-nyan/xAutoBatch
include/IO/PresetReader/CheckParamAvailibility.cmd
bat
mit
2,717
@echo off rem UTC-08:00 => Pacific Standard Time rem UTC+00:00 => GMT Standard Time rem UTC+09:00 => Tokyo Standard Time :Set tzutil /s "GMT Standard Time" exit /b
ka215/jquery.timeline
test/change_tz_gmt.bat
bat
mit
171
@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\proxme.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\proxme.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
nbargnesi/proxme
docs/make.bat
bat
mit
6,459
@echo off for /f "tokens=1-2" %%i in ('rake -T ^| peco') do ( echo %%i %%j %%i %%j break )
taichi/pbat
prake.bat
bat
mit
97
@ECHO off CHCP 65001 > NUL CD /d "%~dp0" SETLOCAL ENABLEEXTENSIONS SET KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" SET VALUE_NAME=HideFileExt FOR /F "usebackq tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( SET ValueName=%%A SET ValueType=%%B SET ValueValue=%%C ) IF x%ValueValue:0x0=%==x%ValueValue% ( ECHO Unhiding file extensions... START CMD /c REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f ) ENDLOCAL IF EXIST %SYSTEMROOT%\py.exe ( CMD /k py.exe -3.6 run.py EXIT ) python --version > NUL 2>&1 IF %ERRORLEVEL% NEQ 0 GOTO nopython CMD /k python run.py GOTO end :nopython ECHO ERROR: Python has either not been installed or not added to your PATH. :end PAUSE
shikhir-arora/Giesela
runbot.bat
bat
mit
817
@echo off cd bin\Debug DirectReaderBenchmark.exe ..\..\..\..\..\TestData\Irbis64\ibis.mst cd ..\..
amironov73/ManagedIrbis
Source/Benchmarks/DirectReaderBenchmark/run.cmd
bat
mit
101
@echo off cd .. rem --------------------------------------------------------- rem Site project rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone cxtlabs.github.io rem --------------------------------------------------------- if exist cxtlabs.github.io ( echo "repo cxt.github.io exists" ) else ( git clone https://github.com/cxtlabs/cxtlabs.github.io.git ) rem --------------------------------------------------------- rem vcloud environment projects rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone vcloud-dc-dev rem --------------------------------------------------------- if exist vcloud-dc-dev ( echo "repo vcloud-dc-dev already exists" ) else ( git clone https://github.com/cxtlabs/vcloud-dc-dev.git ) rem --------------------------------------------------------- rem rancher environment projects rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone rancher-dc-dev rem --------------------------------------------------------- if exist rancher-dc-dev ( echo "repo rancher-dc-dev already exists" ) else ( git clone https://github.com/cxtlabs/rancher-dc-dev.git ) rem --------------------------------------------------------- rem clone rancher-catalog rem --------------------------------------------------------- if exist rancher-catalog ( echo "repo rancher-catalog already exists" ) else ( git clone https://github.com/cxtlabs/rancher-catalog.git ) rem --------------------------------------------------------- rem lab projects rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone lab-docker-treg-host rem --------------------------------------------------------- if exist lab-docker-treg-host ( echo "repo lab-docker-treg-host already exists" ) else ( git clone https://github.com/cxtlabs/lab-docker-treg-host.git ) rem --------------------------------------------------------- rem clone lab-sandbox-rancher rem --------------------------------------------------------- if exist lab-sandbox-rancher ( echo "repo lab-sandbox-rancher exists" ) else ( git clone https://github.com/cxtlabs/lab-sandbox-rancher.git ) rem --------------------------------------------------------- rem clone lab-sandbox-ucp rem --------------------------------------------------------- if exist lab-sandbox-ucp ( echo "repo lab-sandbox-ucp exists" ) else ( git clone https://github.com/cxtlabs/lab-sandbox-ucp.git ) rem --------------------------------------------------------- rem clone lab-ubuntu-14.04-vcloud rem --------------------------------------------------------- if exist lab-ubuntu-12.04-vcloud ( echo "repo lab-ubuntu-12.04-vcloud exists" ) else ( git clone https://github.com/cxtlabs/lab-ubuntu-12.04-vcloud.git ) rem --------------------------------------------------------- rem clone lab-ubuntu-16.04-soe-swarm rem --------------------------------------------------------- if exist lab-ubuntu-16.04-soe-swarm ( echo "repo lab-ubuntu-16.04-soe-swarm exists" ) else ( git clone https://github.com/cxtlabs/lab-ubuntu-16.04-soe-swarm.git ) rem --------------------------------------------------------- rem vagrant projects rem --------------------------------------------------------- rem ========================================================= rem --------------------------------------------------------- rem ubuntu-12.04 rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone vagrant-ubuntu-12.04 rem --------------------------------------------------------- if exist vagrant-ubuntu-12.04 ( echo "repo vagrant-ubuntu-12.04 exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-12.04.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-12.04-mate rem --------------------------------------------------------- if exist vagrant-ubuntu-12.04-mate ( echo "repo vagrant-ubuntu-12.04-mate exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-12.04-mate.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-12.04-ovftool rem --------------------------------------------------------- if exist vagrant-ubuntu-12.04-ovftool ( echo "repo vagrant-ubuntu-12.04-ovftool exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-12.04-ovftool.git ) rem ========================================================= rem --------------------------------------------------------- rem ubuntu-14.04 rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04 rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04 ( echo "repo vagrant-ubuntu-14.04 exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-cs-docker-treg rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-cs-docker-treg ( echo "repo vagrant-ubuntu-14.04-cs-docker-treg already exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-cs-docker-treg.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-docker-trustreg rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-docker-trustreg ( echo "repo vagrant-ubuntu-14.04-docker-trustreg already exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-docker-trustreg.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-docker-reg rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-docker-reg ( echo "repo vagrant-ubuntu-14.04-docker-reg already exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-docker-reg.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-docker rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-docker ( echo "repo vagrant-ubuntu-14.04-docker already exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-docker.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-docker-harbor rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-docker-harbor ( echo "repo vagrant-ubuntu-14.04-docker-harbor exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-docker-harbor.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-cs-docker rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-cs-docker ( echo "repo vagrant-ubuntu-14.04-cs-docker already exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-cs-docker.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-mate rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-mate ( echo "repo vagrant-ubuntu-14.04-mate exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-mate.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-rancher rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-rancher ( echo "repo vagrant-ubuntu-14.04-rancher exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-rancher.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-rancherdc rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-rancherdc ( echo "repo vagrant-ubuntu-14.04-rancherdc exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-rancherdc.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-gitlab rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-gitlab ( echo "repo vagrant-ubuntu-14.04-gitlab exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-gitlab.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-bind9 rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-bind9 ( echo "repo vagrant-ubuntu-14.04-bind9 exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-bind9.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-14.04-dnsmasq rem --------------------------------------------------------- if exist vagrant-ubuntu-14.04-dnsmasq ( echo "repo vagrant-ubuntu-14.04-dnsmasq exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-14.04-dnsmasq.git ) rem ========================================================= rem --------------------------------------------------------- rem ubuntu-16.04 rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04 rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04 ( echo "repo vagrant-ubuntu-16.04 exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04-docker rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04-docker ( echo "repo vagrant-ubuntu-16.04-docker already exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04-docker.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04-mate rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04-mate ( echo "repo vagrant-ubuntu-16.04-mate exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04-mate.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04-ansible rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04-ansible ( echo "repo vagrant-ubuntu-16.04-ansible exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04-ansible.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04-soe rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04-soe ( echo "repo vagrant-ubuntu-16.04-soe exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04-soe.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04-soe-docker rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04-soe-docker ( echo "repo vagrant-ubuntu-16.04-soe-docker exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04-soe-docker.git ) rem --------------------------------------------------------- rem clone vagrant-ubuntu-16.04-soe-ansible rem --------------------------------------------------------- if exist vagrant-ubuntu-16.04-soe-ansible ( echo "repo vagrant-ubuntu-16.04-soe-ansible exists" ) else ( git clone https://github.com/cxtlabs/vagrant-ubuntu-16.04-soe-ansible.git ) rem ========================================================= rem --------------------------------------------------------- rem centos-7.x rem --------------------------------------------------------- rem --------------------------------------------------------- rem clone vagrant-centos-7.x-atomic rem --------------------------------------------------------- if exist vagrant-centos-7.x-atomic ( echo "repo vagrant-centos-7.x-atomic exists" ) else ( git clone https://github.com/cxtlabs/vagrant-centos-7.x-atomic.git )
cxtlabs/cxtlabs-cmd
git-clone-all.cmd
bat
mit
12,705
@echo off REM REM Copyright (c) 2005-2018 Intel Corporation REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. REM REM REM REM REM setlocal for %%D in ("%tbb_root%") do set actual_root=%%~fD set fslash_root=%actual_root:\=/% set bin_dir=%CD% set fslash_bin_dir=%bin_dir:\=/% set _INCLUDE=INCLUDE& set _LIB=LIB if not x%UNIXMODE%==x set _INCLUDE=CPATH& set _LIB=LIBRARY_PATH if not x%USE_INCLUDE_ENV%==x set _INCLUDE=INCLUDE echo Generating local tbbvars.bat echo @echo off>tbbvars.bat echo SET TBBROOT=%actual_root%>>tbbvars.bat echo SET TBB_ARCH_PLATFORM=%arch%\%runtime%>>tbbvars.bat echo SET TBB_TARGET_ARCH=%arch%>>tbbvars.bat echo SET %_INCLUDE%=%%TBBROOT%%\include;%%%_INCLUDE%%%>>tbbvars.bat echo SET %_LIB%=%bin_dir%;%%%_LIB%%%>>tbbvars.bat echo SET PATH=%bin_dir%;%%PATH%%>>tbbvars.bat if not x%UNIXMODE%==x echo SET LD_LIBRARY_PATH=%bin_dir%;%%LD_LIBRARY_PATH%%>>tbbvars.bat echo Generating local tbbvars.sh echo #!/bin/sh>tbbvars.sh echo export TBBROOT="%fslash_root%">>tbbvars.sh echo export TBB_ARCH_PLATFORM="%arch%\%runtime%">>tbbvars.sh echo export TBB_TARGET_ARCH="%arch%">>tbbvars.sh echo export %_INCLUDE%="${TBBROOT}/include;$%_INCLUDE%">>tbbvars.sh echo export %_LIB%="%fslash_bin_dir%;$%_LIB%">>tbbvars.sh echo export PATH="%fslash_bin_dir%;$PATH">>tbbvars.sh if not x%UNIXMODE%==x echo export LD_LIBRARY_PATH="%fslash_bin_dir%;$LD_LIBRARY_PATH">>tbbvars.sh echo Generating local tbbvars.csh echo #!/bin/csh>tbbvars.csh echo setenv TBBROOT "%actual_root%">>tbbvars.csh echo setenv TBB_ARCH_PLATFORM "%arch%\%runtime%">>tbbvars.csh echo setenv TBB_TARGET_ARCH "%arch%">>tbbvars.csh echo setenv %_INCLUDE% "${TBBROOT}\include;$%_INCLUDE%">>tbbvars.csh echo setenv %_LIB% "%bin_dir%;$%_LIB%">>tbbvars.csh echo setenv PATH "%bin_dir%;$PATH">>tbbvars.csh if not x%UNIXMODE%==x echo setenv LD_LIBRARY_PATH "%bin_dir%;$LD_LIBRARY_PATH">>tbbvars.csh if not x%LIB_STL_ANDROID%==x ( REM Workaround for copying Android* specific stl shared library to work folder copy /Y "%LIB_STL_ANDROID:/=\%" . ) endlocal exit
gallenmu/MoonGen
libmoon/deps/tbb/build/generate_tbbvars.bat
bat
mit
2,548
cmd_sound/isa/wavefront/built-in.o := rm -f sound/isa/wavefront/built-in.o; /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs sound/isa/wavefront/built-in.o
freebsdmax/gsmart1315_kernel
sound/isa/wavefront/.built-in.o.cmd
bat
gpl-2.0
213
cmd_sound/soc/codecs/built-in.o := arm-linux-gnueabi-ld -EL -r -o sound/soc/codecs/built-in.o sound/soc/codecs/snd-soc-spdif.o sound/soc/codecs/snd-soc-rt5631.o sound/soc/codecs/snd-soc-rockchip-hdmi.o
jpsminix/minix5
sound/soc/codecs/.built-in.o.cmd
bat
gpl-2.0
207
cmd_arch/arm/kernel/built-in.o := arm-linux-ld -EL -r -o arch/arm/kernel/built-in.o arch/arm/kernel/compat.o arch/arm/kernel/elf.o arch/arm/kernel/entry-armv.o arch/arm/kernel/entry-common.o arch/arm/kernel/irq.o arch/arm/kernel/process.o arch/arm/kernel/ptrace.o arch/arm/kernel/return_address.o arch/arm/kernel/setup.o arch/arm/kernel/signal.o arch/arm/kernel/sys_arm.o arch/arm/kernel/stacktrace.o arch/arm/kernel/time.o arch/arm/kernel/traps.o arch/arm/kernel/armksyms.o arch/arm/kernel/module.o arch/arm/kernel/sys_oabi-compat.o arch/arm/kernel/unwind.o arch/arm/kernel/io.o
heyoufei/mini2440_kernel
arch/arm/kernel/.built-in.o.cmd
bat
gpl-2.0
585
@echo off if "%OW_HOME%" == "" set OW_HOME=%~dp0.. set BIN_DIR=%OW_HOME%\bin set LIB_DIR=%OW_HOME%\lib set TARGET_DIR=%OW_HOME%\target set BUILD_DIR=%OW_HOME%\build set CLASSPATH=%BUILD_DIR%;%TARGET_DIR%\overlayweaver.jar;%LIB_DIR%\commons-cli-1.2.jar;%LIB_DIR%\clink200.jar set LOGGING_CONFIG="%BIN_DIR%\logging.properties" java -Djava.util.logging.config.file=%LOGGING_CONFIG% ow.tool.msgcounter.Main %*
ioniATX/DHT_oblivion
Blocs/IV_DHT_Block/Code/Overlay Weaver/overlayweaver/bin/owmsgcounter.bat
bat
gpl-2.0
409
cmd_arch/arm/mm/proc-v6.o := ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/mm/.proc-v6.o.d -nostdinc -isystem /home/robin/CodeSourcery/CodeSourcery/bin/../lib/gcc/arm-none-eabi/4.6.1/include -I/home/robin/Kernel/kernel/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -mfpu=vfp -mtune=arm1136jf-s -Wa,-march=armv6 -c -o arch/arm/mm/proc-v6.o arch/arm/mm/proc-v6.S deps_arch/arm/mm/proc-v6.o := \ arch/arm/mm/proc-v6.S \ $(wildcard include/config/smp.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/cpu/endian/be8.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/linkage.h \ /home/robin/Kernel/kernel/arch/arm/include/asm/linkage.h \ /home/robin/Kernel/kernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/hwcap.h \ /home/robin/Kernel/kernel/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/robin/Kernel/kernel/arch/arm/include/asm/pgtable-hwdef.h \ /home/robin/Kernel/kernel/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ include/asm-generic/4level-fixup.h \ /home/robin/Kernel/kernel/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.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/robin/Kernel/kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ arch/arm/mach-msm/include/mach/vmalloc.h \ $(wildcard include/config/vmsplit/2g.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ $(wildcard include/config/arm/errata/720789.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/glue.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) \ arch/arm/mm/proc-macros.S \ $(wildcard include/config/cpu/dcache/writethrough.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/robin/Kernel/kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ arch/arm/mm/proc-v6.o: $(deps_arch/arm/mm/proc-v6.o) $(deps_arch/arm/mm/proc-v6.o):
spacecaker/CM7_Space_Kernel_Cooper
arch/arm/mm/.proc-v6.o.cmd
bat
gpl-2.0
5,868
cmd_fs/fat/fat.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/fat/fat.o fs/fat/cache.o fs/fat/dir.o fs/fat/fatent.o fs/fat/file.o fs/fat/inode.o fs/fat/misc.o
TeamGlide/LiteKernel
fs/fat/.fat.o.cmd
bat
gpl-2.0
181
cmd_scripts/bin2c := ccache gcc -Wp,-MD,scripts/.bin2c.d -Iscripts -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/bin2c /drive2/Android/CM9/kernel/samsung/epic4gtouch/scripts/bin2c.c deps_scripts/bin2c := \ /drive2/Android/CM9/kernel/samsung/epic4gtouch/scripts/bin2c.c \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-redhat-linux/4.6.2/include/stddef.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-redhat-linux/4.6.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ scripts/bin2c: $(deps_scripts/bin2c) $(deps_scripts/bin2c):
tcp209/kernel_samsung_epic4gtouch
build/epic4gtouch/scripts/.bin2c.cmd
bat
gpl-2.0
914
cmd_/home/user/Desktop/awlsim-0.42/s3fnet-lxc/base/tklxcmngr/serial_driver/S3fserial.o := ld -m elf_x86_64 -r -o /home/user/Desktop/awlsim-0.42/s3fnet-lxc/base/tklxcmngr/serial_driver/S3fserial.o /home/user/Desktop/awlsim-0.42/s3fnet-lxc/base/tklxcmngr/serial_driver/s3fserial.o /home/user/Desktop/awlsim-0.42/s3fnet-lxc/base/tklxcmngr/serial_driver/hashmap.o /home/user/Desktop/awlsim-0.42/s3fnet-lxc/base/tklxcmngr/serial_driver/linkedlist.o /home/user/Desktop/awlsim-0.42/s3fnet-lxc/base/tklxcmngr/serial_driver/util.o
Vignesh2208/Awlsim
s3fnet-lxc/base/tklxcmngr/serial_driver/.S3fserial.o.cmd
bat
gpl-2.0
525
cmd_fs/jbd/jbd.o := ppc_4xx-ld -m elf32ppc -r -o fs/jbd/jbd.o fs/jbd/transaction.o fs/jbd/commit.o fs/jbd/recovery.o fs/jbd/checkpoint.o fs/jbd/revoke.o fs/jbd/journal.o
mattkelly/linux-2.6-xlnx
fs/jbd/.jbd.o.cmd
bat
gpl-2.0
174
cmd_networking/hostname.o := gcc -Wp,-MD,networking/.hostname.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(hostname)" -D"KBUILD_MODNAME=KBUILD_STR(hostname)" -c -o networking/hostname.o networking/hostname.c deps_networking/hostname.o := \ networking/hostname.c \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/long/opts.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/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/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 \ networking/hostname.o: $(deps_networking/hostname.o) $(deps_networking/hostname.o):
muthumani2/Muthu-busybox
networking/.hostname.o.cmd
bat
gpl-2.0
9,461
@echo off rem ------------------------------------------------------------------------- rem TestHarness Bootstrap Script for Win32 rem ------------------------------------------------------------------------- set JVM_MEM=-XX:MaxPermSize=256m -Xmx512m @if not "%ECHO%" == "" echo %ECHO% @if "%OS%" == "Windows_NT" setlocal set DIRNAME=.\ if "%OS%" == "Windows_NT" set DIRNAME=%~dp0% rem Read all command line arguments set ARGS= :loop if [%1] == [] goto endloop set ARGS=%ARGS% %1 shift goto loop :endloop if not "%JAVA_HOME%" == "" goto ADD_TOOLS set JAVA=java echo JAVA_HOME is not set. Unexpected results may occur. echo Set JAVA_HOME to the directory of your local JDK to avoid this message. :ADD_TOOLS set JAVA=%JAVA_HOME%\bin\java rem Setup TestHarness sepecific properties set TESTHARNESS_HOME=%DIRNAME% set JAVA_OPTS=%JAVA_OPTS% %JVM_MEM% set TESTHARNESS_CLASSPATH=;%TESTHARNESS_HOME%build\;%TESTHARNESS_HOME%lib\BrowserLauncher2-all-10rc4.jar;%TESTHARNESS_HOME%lib\commons-codec-1.1.jar;%TESTHARNESS_HOME%lib\httpunit.jar;%TESTHARNESS_HOME%lib\js.jar;%TESTHARNESS_HOME%lib\junit.jar;%TESTHARNESS_HOME%lib\log4j-1.2.13.jar;%TESTHARNESS_HOME%lib\nekohtml-0.9.5.jar;%TESTHARNESS_HOME%lib\Tidy.jar;%TESTHARNESS_HOME%lib\xercesImpl.jar;%TESTHARNESS_HOME%lib\xml-apis.jar echo =============================================================================== echo . echo TestHarness Bootstrap Environment echo . echo JAVA: %JAVA% echo . echo JAVA_OPTS: %JAVA_OPTS% echo . echo CLASSPATH: %TESTHARNESS_CLASSPATH% echo . echo TESTHARNESS_HOME: %TESTHARNESS_HOME% echo =============================================================================== echo . "%JAVA%" %JAVA_OPTS% -classpath "%TESTHARNESS_CLASSPATH%" org.lamsfoundation.testharness.Main test.properties :END if "%NOPAUSE%" == "" pause :END_NO_PAUSE
lamsfoundation/lams
TestHarness4LAMS2/run.bat
bat
gpl-2.0
1,863
@echo off IF ["%SNAP_HOME%"]==[] echo "SNAP_HOME is not defined. Please set SNAP_HOME=snap_installation_folder" IF [%SNAP_HOME:~-1%]==[/] set SNAP_HOME=%SNAP_HOME:~0,-1% IF [%SNAP_HOME:~-1%]==[\] set SNAP_HOME=%SNAP_HOME:~0,-1% "%SNAP_HOME%\jre\bin\java.exe" ^ -server -Xms512M -Xmx3000M -XX:PermSize=512m -XX:MaxPermSize=512m -Xverify:none ^ -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xconcurrentio -XX:CompileThreshold=10000 ^ -XX:+UseParallelGC -XX:+UseNUMA -XX:+UseLoopPredicate -XX:+UseStringCache ^ -Dceres.context=snap ^ "-Ds1tbx.mainClass=org.esa.beam.framework.gpf.main.Main" ^ "-Ds1tbx.home=%SNAP_HOME%" ^ "-Ds1tbx.debug=false" ^ "-Dncsa.hdf.hdflib.HDFLibrary.hdflib=%SNAP_HOME%\jhdf.dll" ^ "-Dncsa.hdf.hdf5lib.H5.hdf5lib=%SNAP_HOME%\jhdf5.dll" ^ -jar "%SNAP_HOME%\bin\ceres-launcher.jar" %* exit /B 0
julienmalik/snap
snap-config/main/bin/win64/gpt.bat
bat
gpl-3.0
862
@echo off title RealArcade Wrapper Killer v%rawkver% (.-+'~^-+ RGA File Checker +-^~`+-.) [...cRypTiCwaRe 2o16...] :: DISABLED ON 20131128 BECAUSE GH GAMES ARE NOW DIRECTLY SUPPORTED! ::----------------------------------------------------------------------------------- :: Checking for RGA v2.1+ - web-installer based games ::----------------------------------------------------------------------------------- if exist "gameinst.xml" call "core_rga_load.bat" if exist "*_RADRM.dll" call "core_rga_load.bat" if "%cd%" equ "%ghroot%\%GameName%" call "core_rga_load.bat" :end
esc0rtd3w/realarcade-wrapper-killer
extras/trash/core_rga_check.bat
bat
gpl-3.0
586
@echo off subst g: "C:\Users\George\Documents\GitHub\2DGame_GroupProject"
gwulfers88/2DGame_GroupProject
startup.bat
bat
gpl-3.0
73
@echo off forfiles -p "%H:\BKP%" -s -d -7 -m -c" "cmd /c del /f /q @path" stop exit
M3nin0/Script-Backup-Bat
exclusão.bat
bat
gpl-3.0
84
python trouter.py --conn=1000 --apps=127.0.0.1:8888 --port=8000 --threshold=5 --sync_threshold=4 --logging=info --enable_zmq=0 pause
shanghaiyangming/trouter
run_no_zeromq.bat
bat
gpl-3.0
133
blockMesh.exe copy 0\alpha1.org 0\alpha1 setFields.exe interFoam.exe parafoam
richelbilderbeek/OpenFoamExamples
ToolOpenFoamExample3/ToolOpenFoamExample3.bat
bat
gpl-3.0
77
@echo off rem ######################################################################## rem Warning: # rem This web server was designed to aid application development. # rem It may also be useful for testing purposes or for application # rem demonstrations that are run in controlled environments. # rem It is not intended to be a full-featured web server. # rem It should not be used on a public network. # rem Taken from http://php.net/manual/en/features.commandline.webserver.php # rem ######################################################################## php -S 127.0.0.1:8000 -t public/ bin/router.php
julianjupiter/php-mvc-phonebook
bin/server.bat
bat
gpl-3.0
751
@ECHO OFF REM pdump - JSTOR/Harvard Object Validation Environment REM Copyright 2003-2005 by JSTOR and the President and Fellows of Harvard College REM JHOVE is made available under the GNU General Public License (see the REM file LICENSE for details) REM REM Driver script for the PDF dump utility REM REM Usage: pdump file REM REM where file is a PDF file REM REM Configuration constants: REM JHOVE_HOME Jhove installation directory REM JAVA_HOME Java JRE directory REM JAVA Java interpreter REM EXTRA_JARS Extra jar files to add to CLASSPATH SET JHOVE_HOME=%~dp0 SET EXTRA_JARS= REM NOTE: Nothing below this line should be edited REM ######################################################################### SET CP=%JHOVE_HOME%\bin\JhoveApp.jar IF "%EXTRA_JARS%"=="" GOTO FI SET CP=%CP%:%EXTRA_JARS :FI REM Retrieve a copy of all command line arguments to pass to the application SET ARGS= :WHILE IF "%1"=="" GOTO LOOP SET ARGS=%ARGS% %1 SHIFT GOTO WHILE :LOOP REM Set the CLASSPATH and invoke the Java loader JAVA -classpath %CP% PDump %ARGS%
willp-bl/jhove-mavenised
scripts/pdump.bat
bat
lgpl-2.1
1,070
@ECHO OFF SETLOCAL CALL :setvars SET cmd=%1 IF "%cmd%"=="" SET cmd=all CALL :%cmd% GOTO :eof :setvars SET name=PCBot SET cc=javac SET cflags=-g:none -Xlint:deprecation SET src=src SET lib=lib SET res=resources SET out=bin SET scripts=scripts SET dist=%name%.jar SET lstf=temp.txt SET imgdir=%res%\images SET manifest=%res%\Manifest.txt SET version=100 CALL "%res%\FindJDK.bat" GOTO :eof :all CALL :clean 2>NUL ECHO Compiling bot CALL :Bot ECHO Compiling scripts CALL :Scripts 2>NUL ECHO Packing JAR CALL :pack CALL :end GOTO :eof :Bot IF EXIST "%lstf%" DEL /F /Q "%lstf%" FOR /F "usebackq tokens=*" %%G IN (`DIR /B /S "%src%\*.java"`) DO CALL :append "%%G" IF EXIST "%out%" RMDIR /S /Q "%out%" > NUL MKDIR "%out%" "%cc%" %cflags% -d "%out%" "@%lstf%" 2>NUL DEL /F /Q "%lstf%" GOTO :eof :Scripts CALL :mostlyclean IF EXIST "%scripts%" "%cc%" %cflags% -cp "%out%" %scripts%\*.java GOTO :eof :pack IF EXIST "%dist%" DEL /F /Q "%dist%" IF EXIST "%lstf%" DEL /F /Q "%lstf%" COPY "%manifest%" "%lstf%" > NUL ECHO Specification-Version: "%version%" >> "%lstf%" ECHO Implementation-Version: "%version%" >> "%lstf%" jar cfm "%dist%" "%lstf%" -C "%out%" . %versionfile% %imgdir%\* %scripts%\*.class %res%\*.bat %res%\*.sh DEL /F /Q "%lstf%" GOTO :eof :mostlyclean IF EXIST "%scripts%" ECHO. > "%scripts%\.class" IF EXIST "%scripts%" DEL /F /Q %scripts%\*.class GOTO :eof :end CALL :clean 2>NUL ECHO Compilation successful. GOTO :eof :append SET gx=%1 SET gx=%gx:\=\\% ECHO %gx% >> %lstf% GOTO :eof :clean CALL :mostlyclean RMDIR /S /Q "%out%" 2>NUL GOTO :eof :remove IF EXIST "%APPDATA%\%name%_Accounts.ini" DEL "%APPDATA%\%name%_Accounts.ini" IF EXIST "%APPDATA%\%name% Accounts.ini" DEL "%APPDATA%\%name% Accounts.ini" IF EXIST "%RSBOT_HOME%" RMDIR /S /Q "%RSBOT_HOME%" FOR /F "tokens=3" %%G IN ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Personal"') DO (SET docs=%%G) IF EXIST "%docs%\%name%" RMDIR /S /Q "%docs%\%name%" GOTO :eof
Latency/UtopianBot
make.bat
bat
lgpl-3.0
1,978
cmd /c D:\src\WR\trunk\build\scripts\combos\zBobTestStartWildfly.bat > D:\src\WR\trunk\build\scripts\combos\TestStartWildfly.log
bocogop/main
webreport/trunk/build/scripts/combos/zBobTestStartWildflyWithLog.bat
bat
unlicense
128
set MODEL="sozai\‚Û‚ñ‚Õ’·Ž®‰‰¹ƒ~ƒN.pmx" set MOTION_CENTER="sozai\— •\ƒ‰ƒo[ƒY.vmd" rem ”½“]A‚·‚ׂĂ̐e‚ð+18 set MOTION_CHERRY="sozai\cherry_x18.vmd" rem ”½“]A‘S‚Ă̐e‚ð-18 set MOTION_SNOW="sozai\snow_x-18.vmd" set CAMERA="sozai\— •\ƒJƒƒ‰_‰ü•Ï.vmd" set EYES_CONSTRAINT=—¼–Ú 10 20 0 0.4 0.4 0 set HEAD_CONSTRAINT=“ª 45 50 30 1 1 1 set NECK_CONSTRAINT=Žñ 15 10 0 1 1 1 set NECK_BLEND=Žñ 0.2 0.2 0.5 set HEAD_BLEND=“ª 0.2 0.2 0.5 REM center python ..\..\vmdgadgets\trace_camera.py %MODEL% %MOTION_CENTER% %CAMERA% center_head.vmd --constraint %EYES_CONSTRAINT% --constraint %HEAD_CONSTRAINT% --constraint %NECK_CONSTRAINT% --vmd_blend %NECK_BLEND% --vmd_blend %HEAD_BLEND% --frame_range 585 2538 --frame_range 2573 2763 --frame_range 2895 5274 --frame_range 5291 9999 REM right side cherry python ..\..\vmdgadgets\trace_camera.py %MODEL% %MOTION_CHERRY% %CAMERA% cherry_head.vmd --constraint %EYES_CONSTRAINT% --constraint %HEAD_CONSTRAINT% --constraint %NECK_CONSTRAINT% --vmd_blend %NECK_BLEND% --vmd_blend %HEAD_BLEND% --frame_range 4749 5274 --frame_range 5291 9999 REM left side snow python ..\..\vmdgadgets\trace_camera.py %MODEL% %MOTION_SNOW% %CAMERA% snow_head.vmd --constraint %EYES_CONSTRAINT% --constraint %HEAD_CONSTRAINT% --constraint %NECK_CONSTRAINT% --vmd_blend %NECK_BLEND% --vmd_blend %HEAD_BLEND% --frame_range 4749 5274 --frame_range 5291 9999
Hashi4/vmdgadgets
sample/lookat/sm30895630.bat
bat
apache-2.0
1,366
taskkill /f /im Bwl.GitManager.exe taskkill /f /im Bwl.GitManager.exe tools\vs-build-all.exe -debug -release * if %nopause%==true goto end pause :end
Lifemotion/Bwl.GitManager
!build.cmd
bat
apache-2.0
149