code stringlengths 3 1.03M | repo_name stringlengths 5 84 | path stringlengths 4 233 | language stringclasses 1
value | license stringclasses 15
values | size int32 3 1.03M |
|---|---|---|---|---|---|
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_FSSHTTP_FSSHTTPB.MS_FSSHTTP_FSSHTTPB_S04_ExclusiveLock.TestCase_S04_TC24_ConvertToSchemaJoinCoauth_InvalidArgument /testcontainer:..\..\MS-FSSHTTP-FSSHTTPB\TestSuite\bin\Debug\MS-FSSHTTP-FSSHTTPB_TestSuite.dll /runconfig:..\..\MS-FSSHTTP-FSSHTTPB\MS-FSSHTTP-FSSHTTPB.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | FileSyncandWOPI/Source/Scripts/MS-FSSHTTP-FSSHTTPB/RunTestCase_S04_TC24.cmd | bat | mit | 387 |
@REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
@setlocal EnableExtensions EnableDelayedExpansion
@echo off
rem - Specify the Azure SDK client build root
set current-path=%~dp0
set current-path=%current-path:~0,-1%
set client-root=%current-path%\..\..\..\..
for %%i in ("%client-root%") do set client-root=%%~fi
echo Client root is %client-root%
pushd %client-root%\c\build_all\packaging\windows\
where /q nuget.exe
if not !errorlevel! == 0 (
@Echo Azure IoT SDK needs to download nuget.exe from https://www.nuget.org/nuget.exe
@Echo https://www.nuget.org
choice /C yn /M "Do you want to download and run nuget.exe?"
if not !errorlevel!==1 goto :eof
rem if nuget.exe is not found, then ask user
Powershell.exe wget -outf nuget.exe https://nuget.org/nuget.exe
if not exist .\nuget.exe (
echo nuget does not exist
exit /b 1
)
)
echo Deleting any existing .nupkg files...
del *.nupkg
rem -- Copy all Win32 files from cmake build directory to the repo directory
xcopy /q /y /R %USERPROFILE%\cmake_Win32\iothub_client\Debug\*.* %client-root%\build_output\c\win32\debug\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /q /y /R %USERPROFILE%\cmake_Win32\serializer\Debug\*.* %client-root%\build_output\c\win32\debug\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /q /y /R %USERPROFILE%\cmake_Win32\iothub_client\Release\*.* %client-root%\build_output\c\win32\release\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /q /y /R %USERPROFILE%\cmake_Win32\serializer\Release\*.* %client-root%\build_output\c\win32\release\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
rem -- Copy all x64 files from cmake build directory to the repo directory
xcopy /q /y /R %USERPROFILE%\cmake_x64\iothub_client\Debug\*.* %client-root%\build_output\c\x64\debug\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /q /y /R %USERPROFILE%\cmake_x64\serializer\Debug\*.* %client-root%\build_output\c\x64\debug\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /q /y /R %USERPROFILE%\cmake_x64\iothub_client\Release\*.* %client-root%\build_output\c\x64\release\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /q /y /R %USERPROFILE%\cmake_x64\serializer\Release\*.* %client-root%\build_output\c\x64\release\*.*
if %errorlevel% neq 0 exit /b %errorlevel%
rem -- Package Nuget
nuget pack Microsoft.Azure.IoTHub.HttpTransport.nuspec
nuget pack Microsoft.Azure.IoTHub.AmqpTransport.nuspec
nuget pack Microsoft.Azure.IoTHub.IoTHubClient.nuspec
rem because nuget cannot access absolute files given by environment variables
mkdir paho_outputs
cd paho_outputs
mkdir Win32
mkdir x64
mkdir include
cd Win32
mkdir Release
mkdir Debug
cd ..
cd x64
mkdir Release
mkdir Debug
cd ..
cd ..
rem -- Copy Win32 Paho Files.
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\Debug\paho-mqtt3cs.lib" paho_outputs\Win32\Debug
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\Debug\paho-mqtt3cs.pdb" paho_outputs\Win32\Debug
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\Debug\paho-mqtt3cs.dll" paho_outputs\Win32\Debug
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\build\output\paho-mqtt3cs.lib" paho_outputs\Win32\Release
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\build\output\paho-mqtt3cs.dll" paho_outputs\Win32\Release
rem -- Copy 64 bits Paho Files.
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\x64\Debug\paho-mqtt3cs.lib" paho_outputs\x64\Debug
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\x64\Debug\paho-mqtt3cs.pdb" paho_outputs\x64\Debug
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\x64\Debug\paho-mqtt3cs.dll" paho_outputs\x64\Debug
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\x64\Release\paho-mqtt3cs.lib" paho_outputs\x64\Release
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\Windows Build\paho-mqtt3cs\x64\Release\paho-mqtt3cs.dll" paho_outputs\x64\Release
rem -- Copy Header Files
copy "%PAHO_PATH%\org.eclipse.paho.mqtt.c\src\*.h" paho_outputs\include
mkdir openssl_outputs
cd openssl_outputs
mkdir Win32
cd Win32
mkdir Debug
cd ..
mkdir x64
cd x64
mkdir Debug
cd ..
cd ..
copy "%OpenSSLDir%\out32dllForNuget\libeay32.dll" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\libeay32.lib" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\libeay32.exp" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\libeay32.pdb" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\ssleay32.dll" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\ssleay32.lib" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\ssleay32.exp" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out32dllForNuget\ssleay32.pdb" openssl_outputs\Win32\Debug
copy "%OpenSSLDir%\out64dll\libeay32.dll" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\libeay32.lib" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\libeay32.exp" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\libeay32.pdb" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\ssleay32.dll" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\ssleay32.lib" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\ssleay32.exp" openssl_outputs\x64\Debug
copy "%OpenSSLDir%\out64dll\ssleay32.pdb" openssl_outputs\x64\Debug
nuget pack Eclipse.Paho-C.paho-mqtt3cs.nuspec
nuget pack Microsoft.Azure.IoTHub.MqttTransport.nuspec
rmdir paho_outputs /S /Q
rmdir openssl_outputs /S /Q
nuget pack Microsoft.Azure.IoTHub.Serializer.nuspec
rmdir %client-root%\build_output /S /Q
popd
| andrew-buckley/azure-iot-sdks | c/build_all/packaging/windows/rebuild_nugets.cmd | bat | mit | 5,700 |
cd .\build\classes
java -Dsun.java2d.opengl=True -Dsun.java2d.opengl.fbobject=false halfNES %1
pause
rem Add -XX:+PrintCompilation to see JVM opts | madaixo/ProjectAVE | src/run.bat | bat | gpl-3.0 | 149 |
@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\LIBRE.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\LIBRE.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
| rogeriofalcone/libre | docs/make.bat | bat | gpl-3.0 | 6,699 |
@ECHO OFF
REM
REM Copyright (C) 2005 SIPfoundry Inc.
REM Licensed by SIPfoundry under the LGPL license.
REM
REM Copyright (C) 2005 Pingtel Corp.
REM Licensed to SIPfoundry under a Contributor Agreement.
REM
SET PROJECT_NAME=%1
echo build.noerr=1 > ..\..\..\err.prf
ECHO .
ECHO PROJECT_NAME: %PROJECT_NAME%
ECHO .
pushd .
:BUILD
ECHO ??? Building...
cd ..\..
devenv %PROJECT_NAME%.sln /clean debug
devenv %PROJECT_NAME%.sln /build debug
ECHO ??? Build result: %ERRORLEVEL%
IF NOT "%ERRORLEVEL%"=="0" GOTO ERROR_EXIT
devenv %PROJECT_NAME%.sln /clean debug_NoVideo
devenv %PROJECT_NAME%.sln /build debug_NoVideo
ECHO ??? Build result: %ERRORLEVEL%
IF NOT "%ERRORLEVEL%"=="0" GOTO ERROR_EXIT
devenv %PROJECT_NAME%.sln /clean release
devenv %PROJECT_NAME%.sln /build release
ECHO ??? Build result: %ERRORLEVEL%
IF NOT "%ERRORLEVEL%"=="0" GOTO ERROR_EXIT
devenv %PROJECT_NAME%.sln /clean release_NoVideo
devenv %PROJECT_NAME%.sln /build release_NoVideo
ECHO ??? Build result: %ERRORLEVEL%
IF NOT "%ERRORLEVEL%"=="0" GOTO ERROR_EXIT
rem cd ..\..
GOTO DONE
:ERROR_EXIT
ECHO .
ECHO *** %0 Error detected, aborting ... ***
popd .
echo build.err=1 > ..\..\..\err.prf
EXIT /B 1
:DONE
popd.
EXIT /B 0
| sipXtapi/sipXtapi | sipXcallLib/sipXtapi/build.win32/_build_cpp_project.bat | bat | lgpl-2.1 | 1,270 |
@echo off
echo ===============================================================================
echo = =
echo = RUNNING THIS SCRIPT CAN SERIOUSLY MESS UP YOUR MACHINE. Only use on a =
echo = clean system you are willing to break. =
echo = =
echo ===============================================================================
echo = =
echo = This script bootstraps a mumble windows build environment. To achieve this =
echo = it first installs msysgit, then checks out the mumble-releng repository so =
echo = it can run the actual powershell setup script. =
echo = =
echo ===============================================================================
echo.
rem Arch test
IF NOT EXIST "%PROGRAMFILES(X86)%" (GOTO wrongArch)
rem Windows version check
ver | find "6.2" > nul
if %errorLevel% == 0 goto goodVersion
goto wrongVersion
:goodVersion
rem Check for admin priviledges
net session >nul 2>&1
if not %errorLevel% == 0 goto noAdmin
rem Give the user a chance to abort
timeout /T 10
echo.
echo Bootstrapping into C:\dev\
mkdir C:\dev\
copy /Y %0 C:\dev\bootstrap.bat
cd /d C:\dev\
if not %errorLevel% == 0 goto error
IF EXIST "C:\Program Files (x86)\Git\bin\git.exe" GOTO :skipInstall
IF EXIST "Git-1.8.0-preview20121022.exe" GOTO :skipDownload
echo Downloading msysgit http://msysgit.googlecode.com/files/Git-1.8.0-preview20121022.exe ...
powershell -Command "$wc = New-Object System.Net.WebClient; $wc.downloadFile('http://msysgit.googlecode.com/files/Git-1.8.0-preview20121022.exe', 'Git-1.8.0-preview20121022.exe')"
if not %errorLevel% == 0 goto error
echo Done
goto skipSkipDownload
:skipDownload
echo Downloading msysgit...skipped
:skipSkipDownload
echo Installing msysgit...
start /wait Git-1.8.0-preview20121022.exe /SILENT /SUPPRESSMSGBOXES /COMPONENTS="*icons" /LOG="msysgit-setup.log" /NOCANCEL /NORESTART
if not %errorLevel% == 0 goto error
echo Done
goto skipSkipInstall
:skipInstall
echo Installing msysgit...skipped
:skipSkipInstall
echo Cloning mumble-releng...
"C:\Program Files (x86)\Git\bin\git.exe" clone git://github.com/mumble-voip/mumble-releng.git
if not %errorLevel% == 0 goto error
echo Done
cd mumble-releng\buildenv\windows
echo Launching setup process...
powershell -ExecutionPolicy bypass -File ".\setup.ps1"
goto end
:wrongArch
echo This script was written for 64-Bit machines only
exit /b 1
:wrongVersion
echo This script was written for Windows 8 and newer only
exit /b 2
:noAdmin
echo Bootstrap requires administrator priviledges
exit /b 3
:error
echo Failed, aborting
exit /b 666
:end
exit /b %errorLevel% | ccpgames/mumble-releng | buildenv/windows/bootstrap.bat | bat | bsd-3-clause | 2,939 |
@echo off
REM
REM It cleans temp files from project
REM
echo Cleaning files from compiler
del /Q "..\src\WorldParty.res"
del /Q /S "..\*.lps"
RD /Q /S "..\build"
RD /Q /S "..\src\backup"
echo Cleaning files from installer
RD /Q /S "..\installer\dist"
echo Cleaning files from game
del /Q "..\game\error.log" "..\game\avatar.db" "..\game\ultrastar.db" "..\game\cover.db" "..\game\config.ini" "..\game\WorldParty.exe"
echo Cleaning files from editor
del /Q /S "..\*.bak"
echo Done
| joelpg/usdxworldparty | tools/RobotClean.bat | bat | gpl-3.0 | 486 |
copy *.sql updates.sql | BlackWolfsDen/Justicar-WoW | sql/updates/world/trinity/Nieuw tekstdocument.bat | bat | gpl-2.0 | 22 |
rem set "SERVER_FOLDER={server.folder}"
rem set "HOME_FOLDER={home.folder}"
rem ## Set this property to deploy plugins to a different directory. This is mostly useful when the dotCMS is hosted in an application server.
rem ##In such a case, the location below must point to the root of the exploded dotCMS war.
rem set "target.root={dotcms.home}"
| zhiqinghuang/core | bin/build.conf.bat | bat | gpl-3.0 | 349 |
@echo off
REM
REM dex2jar - Tools to work with android .dex and java .class files
REM Copyright (c) 2009-2012 Panxiaobo
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
set CLASSPATH=
FOR %%i IN ("%~dp0lib\*.jar") DO CALL "%~dp0setclasspath.bat" "%%i"
java -Xms512m -Xmx1024m -cp %CLASSPATH% "com.googlecode.dex2jar.tools.Jasmin2Jar" %*
| xtiankisutsa/MARA_Framework | tools/qark/qark/lib/dex2jar/d2j-jasmin2jar.bat | bat | lgpl-3.0 | 891 |
@echo gorge test | jfhg/Nim | tests/vm/tgorge.bat | bat | mit | 16 |
MKDIR %Tmp%\webrtc4all
XCOPY . %Tmp%\webrtc4all /S /E /Y
MKDIR %Tmp%\webrtc4all\vcredist_x86
XCOPY %Tmp%\webrtc4all\vcredi~1.exe %Tmp%\webrtc4all\vcredist_x86 /Y
RENAME %Tmp%\webrtc4all\vcredist_x86\vcredi~1.exe vcredist_x86.exe
%Tmp%\webrtc4all\setup.exe | learnin9/webrtc4all | setup/webrtc4all.cmd | bat | gpl-2.0 | 260 |
md include
move .lib\gif_lib.h .\include
md src
move .\lib\*.h .\src
move .\lib\*.c .\src
| Ruzzz/OneFileTools | cpp/giflib/init.cmd | bat | mit | 92 |
@echo off
set CLASS_DIR=classes
if not exist %CLASS_DIR% mkdir %CLASS_DIR%
@echo on
javac -d %CLASS_DIR% -sourcepath .;src\Grid\ Application.java
java -classpath %CLASS_DIR% Application
| spookiecookie/ShellingSegregationModelUI | run.bat | bat | mit | 192 |
"C:\Program Files\IIS Express\iisexpress.exe" /path:"C:\Users\bradyg\GitHub\MVA-SignalR\04-03-Redis-Backplane\ScalingWithRedis" /port:9091 | jongalloway/MVA-SignalR | 04-03-Redis-Backplane/start-server-b.bat | bat | mit | 138 |
@echo off
rem *******************************************************************
rem * This will build all configurations of this project
rem *
rem * REQUIRES:
rem * - See '\_engine\build\windows\builder_actual_windows.bat'
rem *
rem * AUTHOR:
rem * Piotr Kosek <piotr@kosek.com>
rem * LICENSE:
rem * MIT/X11 License
rem * CHANGELOG:
rem * 0.1 [November, 2nd 2017]:
rem * - Initial version
rem *******************************************************************
rem * CONSTRAINS:
rem * - See '\_engine\build\windows\builder_actual_windows.bat'
rem *******************************************************************
rem * Copyright (c) 2017 Piotr Kosek
rem * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
rem * and associated documentation files (the "Software"), to deal in the Software without restriction,
rem * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
rem * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
rem * subject to the following conditions:
rem *
rem * The above copyright notice and this permission notice shall be included in all copies
rem * or substantial portions of the Software.
rem *
rem * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
rem * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR
rem * A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
rem * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
rem * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
rem * DEALINGS IN THE SOFTWARE.
rem *******************************************************************
rem * Set console color
color 07
rem * Mark current directory
pushd %~dp0
rem * Should we fail here to provide correct argument...
if "%~1"=="" goto real
rem * Execute script
echo | call %~1
rem * Should we fail here...
if errorlevel 1 (
rem * Output some info
echo Failed to build this project
rem * Keep console Window open
pause
rem * Fail execution
call failed
rem * Fail execution
exit 1
)
rem * Complete execution
goto ok
rem * Go to normal execution
:real
rem * From here, we will be enabling/disabling delayed expansion
rem * to avoid problems with special characters
setlocal enableextensions enabledelayedexpansion
rem * Search for all build scripts
for %%f in (build_windows_full_*.bat) do (
rem * Output some info
echo Running %%~nf
rem * Execute build script
start /wait build_all.bat %%f
rem * Should we fail here...
if errorlevel 1 (
rem * Output some info
echo Failed to prebuild debug build
rem * Fail execution
call failed
rem * Fail execution
exit 1
)
rem * Output some info
echo Done!
)
)
)
rem * Finalize successfully
goto ok
rem * In case of failure
:failed
rem * Set color to red
color CF
rem * Output some info
echo Failed!
rem * Keep console Window open
pause
rem * End script
endlocal
rem * Get back current directory
popd
rem * Kill batch script
exit 1
rem * Ok, we did not fail!
:ok
rem * Set color to green
color 2F
rem * Output some info
echo All Done!
rem * Keep console Window open if calling script directly
if "%~1"=="" pause
rem * End script
endlocal
rem * Get back current directory
popd
rem * Return OK
exit 0 | Shelim/pixie_engine | _engine/build/new_project/template/_command/windows/build_windows_all.bat | bat | mit | 3,473 |
nmake
cd ..\extra
del *.dll
cd bonk~
nmake /NOLOGO pd_nt
cd ..\choice
nmake /NOLOGO pd_nt
cd ..\expr~
nmake /NOLOGO pd_nt
cd ..\fiddle~
nmake /NOLOGO pd_nt
cd ..\loop~
nmake /NOLOGO pd_nt
cd ..\lrshift~
nmake /NOLOGO pd_nt
cd ..\pique
nmake /NOLOGO pd_nt
cd ..\sigmund~
nmake /NOLOGO pd_nt
cd ..\pd~
nmake /NOLOGO pd_nt
cd ..
| jconst/SoundDrop | SoundDrop/libpd/pure-data/msw/build-nt.bat | bat | mit | 326 |
@echo off
set xv_path=C:\\Xilinx\\Vivado\\2016.4\\bin
call %xv_path%/xsim vga_feature_transform_func_synth -key {Post-Synthesis:sim_1:Functional:vga_feature_transform} -tclbatch vga_feature_transform.tcl -log simulate.log
if "%errorlevel%"=="0" goto SUCCESS
if "%errorlevel%"=="1" goto END
:END
exit 1
:SUCCESS
exit 0
| lasalvavida/Zybo-Open-Source-Video-IP-Toolbox | video_ip/vga_feature_transform/vga_feature_transform.sim/sim_1/synth/func/simulate.bat | bat | mit | 318 |
@echo off
c:\progra~2\mozill~1\firefox.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
| jonspeicher/launchers | firefox.bat | bat | mit | 70 |
@echo off
title Mr.B's LaunchCodes
color 3
set /p chrome="Instructions: This batch file is a .bat that opens certain websites. The websites that open are google, gmail, google drive, googlemaps, weather.com, national geographic, cia.gov, and geopraphy.com and the hsana website, along with explorer. Use the enter key to continue."
set /p chrome="Enter your name: "
@echo Starting Chrome...
start chrome http://www.google.com
@echo Started Chrome.
@echo Starting gmail...
start chrome https://mail.google.com/mail/u/0/#inbox
@echo Started gmail.
@echo Starting drive.google.com...
start chrome https://drive.google.com/drive/
@echo Started drive.google.com
@echo Starting hsana.org...
start chrome https://hsana.org
@echo Started hsana.org.
@echo Starting explorer...
start explorer
@echo Started Geography.com
start chrome https://geography.com
@echo Started Cia.Gov
start chrome https://cia.gov
@echo Started National Geographic
start chrome http://www.nationalgeographic.com/
@echo Started National Geographic
@echo starting weather
start chrome https://www.wunderground.com/q/zmw:78660.1.99999
@echo Started weather
@echo Starting Google Maps
start chrome https:/maps.google.com
@echo Started Google Maps.
color b
set /p chrome="Are you satisfied with the service provided?"
pause
set /p chrome="Press any key and then use the enter key to close this Credits: Rishi and his fabulous ideas"
| RVaka18/rvaka18.github.io | mrbLaunchcode.bat | bat | mit | 1,442 |
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe doc\Bandwidth.Net.shfbproj
rem Fix links in markdowns to have ability to navigate them on Githubsources. Remove next line if you are going to publish generated docs to Github Wiki.
tools\FixMDForGithubSources.exe Help
| bandwidthcom/csharp-bandwidth | src/Bandwidth.Net/buildDocs.cmd | bat | mit | 283 |
@echo off
set PROTOC=d:\tools\protoc-3.0.0-win32\bin\protoc.exe
set JAVA_OUT=gen\java
rd /S /Q %JAVA_OUT%
md %JAVA_OUT%
%PROTOC%^
--proto_path=protos\v3^
--proto_path=protos/v2^
--java_out=%JAVA_OUT%^
protos/v3/foo/bar/msg.proto^
protos/v2/foo/bar/msg_v2.proto^
protos/v3/*.proto^
protos/v2/*.proto
| zxh0/vscode-proto3 | example/build.bat | bat | mit | 316 |
@echo off
cl /Fetilemapper_dbg.exe /Od /Zi toolsCode/Renderer.cpp toolsCode/windows_main.cpp tileMapper/main.cpp kernel32.lib user32.lib Gdi32.lib Comdlg32.lib
::devenv tilemapper_dbg.exe | Benjins/GBADev | debug-tiles.bat | bat | mit | 189 |
@echo off
title Uploader
javac -sourcepath ../../Components/Uploader -cp ../../Components/* ../../Components/Uploader/*.java
start "Uploader" /D"../../Components/Uploader" java -cp .;../* CreateUploader | sisv5/sisv5 | Scripts/runIndividualComp/runUploader.bat | bat | gpl-2.0 | 203 |
@%~dp0\busybox.exe lzma %*
| witwall/busybox-w32 | lzma.bat | bat | gpl-2.0 | 27 |
cmd_fs/ext3/namei.o := arm-eabi-gcc -Wp,-MD,fs/ext3/.namei.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(namei)" -D"KBUILD_MODNAME=KBUILD_STR(ext3)" -c -o fs/ext3/namei.o fs/ext3/namei.c
deps_fs/ext3/namei.o := \
fs/ext3/namei.c \
$(wildcard include/config/ext3/fs/xattr.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm7225.h) \
$(wildcard include/config/arch/msm7200a.h) \
$(wildcard include/config/arch/msm7201a.h) \
$(wildcard include/config/arch/msm7x00a.h) \
$(wildcard include/config/mach/desirec.h) \
$(wildcard include/config/arch/msm7227.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
include/asm/mach-types.h \
$(wildcard include/config/arch/ebsa110.h) \
$(wildcard include/config/arch/rpc.h) \
$(wildcard include/config/arch/nexuspci.h) \
$(wildcard include/config/arch/ebsa285.h) \
$(wildcard include/config/arch/netwinder.h) \
$(wildcard include/config/arch/cats.h) \
$(wildcard include/config/arch/tbox.h) \
$(wildcard include/config/arch/co285.h) \
$(wildcard include/config/arch/clps7110.h) \
$(wildcard include/config/arch/arc.h) \
$(wildcard include/config/arch/a5k.h) \
$(wildcard include/config/arch/etoile.h) \
$(wildcard include/config/arch/lacie/nas.h) \
$(wildcard include/config/arch/clps7500.h) \
$(wildcard include/config/arch/shark.h) \
$(wildcard include/config/sa1100/brutus.h) \
$(wildcard include/config/arch/personal/server.h) \
$(wildcard include/config/sa1100/itsy.h) \
$(wildcard include/config/arch/l7200.h) \
$(wildcard include/config/sa1100/pleb.h) \
$(wildcard include/config/arch/integrator.h) \
$(wildcard include/config/sa1100/h3600.h) \
$(wildcard include/config/arch/ixp1200.h) \
$(wildcard include/config/arch/p720t.h) \
$(wildcard include/config/sa1100/assabet.h) \
$(wildcard include/config/sa1100/victor.h) \
$(wildcard include/config/sa1100/lart.h) \
$(wildcard include/config/sa1100/ranger.h) \
$(wildcard include/config/sa1100/graphicsclient.h) \
$(wildcard include/config/sa1100/xp860.h) \
$(wildcard include/config/sa1100/cerf.h) \
$(wildcard include/config/sa1100/nanoengine.h) \
$(wildcard include/config/sa1100/fpic.h) \
$(wildcard include/config/sa1100/extenex1.h) \
$(wildcard include/config/sa1100/sherman.h) \
$(wildcard include/config/sa1100/accelent.h) \
$(wildcard include/config/arch/l7200/accelent.h) \
$(wildcard include/config/sa1100/netport.h) \
$(wildcard include/config/sa1100/pangolin.h) \
$(wildcard include/config/sa1100/yopy.h) \
$(wildcard include/config/sa1100/coolidge.h) \
$(wildcard include/config/sa1100/huw/webpanel.h) \
$(wildcard include/config/arch/spotme.h) \
$(wildcard include/config/arch/freebird.h) \
$(wildcard include/config/arch/ti925.h) \
$(wildcard include/config/arch/riscstation.h) \
$(wildcard include/config/sa1100/cavy.h) \
$(wildcard include/config/sa1100/jornada720.h) \
$(wildcard include/config/sa1100/omnimeter.h) \
$(wildcard include/config/arch/edb7211.h) \
$(wildcard include/config/sa1100/citygo.h) \
$(wildcard include/config/sa1100/pfs168.h) \
$(wildcard include/config/sa1100/spot.h) \
$(wildcard include/config/sa1100/flexanet.h) \
$(wildcard include/config/arch/webpal.h) \
$(wildcard include/config/sa1100/linpda.h) \
$(wildcard include/config/arch/anakin.h) \
$(wildcard include/config/sa1100/mvi.h) \
$(wildcard include/config/sa1100/jupiter.h) \
$(wildcard include/config/arch/psionw.h) \
$(wildcard include/config/sa1100/aln.h) \
$(wildcard include/config/arch/camelot.h) \
$(wildcard include/config/sa1100/gds2200.h) \
$(wildcard include/config/sa1100/psion/series7.h) \
$(wildcard include/config/sa1100/xfile.h) \
$(wildcard include/config/arch/accelent/ep9312.h) \
$(wildcard include/config/arch/ic200.h) \
$(wildcard include/config/sa1100/creditlart.h) \
$(wildcard include/config/sa1100/htm.h) \
$(wildcard include/config/arch/iq80310.h) \
$(wildcard include/config/sa1100/freebot.h) \
$(wildcard include/config/arch/entel.h) \
$(wildcard include/config/arch/enp3510.h) \
$(wildcard include/config/sa1100/trizeps.h) \
$(wildcard include/config/sa1100/nesa.h) \
$(wildcard include/config/arch/venus.h) \
$(wildcard include/config/arch/tardis.h) \
$(wildcard include/config/arch/mercury.h) \
$(wildcard include/config/sa1100/empeg.h) \
$(wildcard include/config/arch/i80200fcc.h) \
$(wildcard include/config/sa1100/itt/cpb.h) \
$(wildcard include/config/sa1100/svc.h) \
$(wildcard include/config/sa1100/alpha2.h) \
$(wildcard include/config/sa1100/alpha1.h) \
$(wildcard include/config/arch/netarm.h) \
$(wildcard include/config/sa1100/simpad.h) \
$(wildcard include/config/arch/pda1.h) \
$(wildcard include/config/arch/lubbock.h) \
$(wildcard include/config/arch/aniko.h) \
$(wildcard include/config/arch/clep7212.h) \
$(wildcard include/config/arch/cs89712.h) \
$(wildcard include/config/sa1100/weararm.h) \
$(wildcard include/config/sa1100/possio/px.h) \
$(wildcard include/config/sa1100/sidearm.h) \
$(wildcard include/config/sa1100/stork.h) \
$(wildcard include/config/sa1100/shannon.h) \
$(wildcard include/config/arch/ace.h) \
$(wildcard include/config/sa1100/ballyarm.h) \
$(wildcard include/config/sa1100/simputer.h) \
$(wildcard include/config/sa1100/nexterm.h) \
$(wildcard include/config/sa1100/sa1100/elf.h) \
$(wildcard include/config/sa1100/gator.h) \
$(wildcard include/config/arch/granite.h) \
$(wildcard include/config/sa1100/consus.h) \
$(wildcard include/config/arch/aaed2000.h) \
$(wildcard include/config/arch/cdb89712.h) \
$(wildcard include/config/sa1100/graphicsmaster.h) \
$(wildcard include/config/sa1100/adsbitsy.h) \
$(wildcard include/config/arch/pxa/idp.h) \
$(wildcard include/config/arch/plce.h) \
$(wildcard include/config/sa1100/pt/system3.h) \
$(wildcard include/config/arch/medalb.h) \
$(wildcard include/config/arch/eagle.h) \
$(wildcard include/config/arch/dsc21.h) \
$(wildcard include/config/arch/dsc24.h) \
$(wildcard include/config/arch/ti5472.h) \
$(wildcard include/config/arch/autcpu12.h) \
$(wildcard include/config/arch/uengine.h) \
$(wildcard include/config/sa1100/bluestem.h) \
$(wildcard include/config/arch/xingu8.h) \
$(wildcard include/config/arch/bushstb.h) \
$(wildcard include/config/sa1100/epsilon1.h) \
$(wildcard include/config/sa1100/balloon.h) \
$(wildcard include/config/arch/puppy.h) \
$(wildcard include/config/sa1100/elroy.h) \
$(wildcard include/config/arch/gms720.h) \
$(wildcard include/config/arch/s24x.h) \
$(wildcard include/config/arch/jtel/clep7312.h) \
$(wildcard include/config/arch/cx821xx.h) \
$(wildcard include/config/arch/edb7312.h) \
$(wildcard include/config/sa1100/bsa1110.h) \
$(wildcard include/config/arch/powerpin.h) \
$(wildcard include/config/arch/openarm.h) \
$(wildcard include/config/sa1100/whitechapel.h) \
$(wildcard include/config/sa1100/h3100.h) \
$(wildcard include/config/sa1100/h3800.h) \
$(wildcard include/config/arch/blue/v1.h) \
$(wildcard include/config/arch/pxa/cerf.h) \
$(wildcard include/config/arch/arm7tevb.h) \
$(wildcard include/config/sa1100/d7400.h) \
$(wildcard include/config/arch/piranha.h) \
$(wildcard include/config/sa1100/sbcamelot.h) \
$(wildcard include/config/sa1100/kings.h) \
$(wildcard include/config/arch/smdk2400.h) \
$(wildcard include/config/sa1100/collie.h) \
$(wildcard include/config/arch/idr.h) \
$(wildcard include/config/sa1100/badge4.h) \
$(wildcard include/config/arch/webnet.h) \
$(wildcard include/config/sa1100/d7300.h) \
$(wildcard include/config/sa1100/cep.h) \
$(wildcard include/config/arch/fortunet.h) \
$(wildcard include/config/arch/vc547x.h) \
$(wildcard include/config/sa1100/filewalker.h) \
$(wildcard include/config/sa1100/netgateway.h) \
$(wildcard include/config/sa1100/symbol2800.h) \
$(wildcard include/config/sa1100/suns.h) \
$(wildcard include/config/sa1100/frodo.h) \
$(wildcard include/config/sa1100/mach/tyte/ms301.h) \
$(wildcard include/config/arch/mx1ads.h) \
$(wildcard include/config/arch/h7201.h) \
$(wildcard include/config/arch/h7202.h) \
$(wildcard include/config/arch/amico.h) \
$(wildcard include/config/sa1100/iam.h) \
$(wildcard include/config/sa1100/tt530.h) \
$(wildcard include/config/arch/sam2400.h) \
$(wildcard include/config/sa1100/jornada56x.h) \
$(wildcard include/config/sa1100/active.h) \
$(wildcard include/config/arch/iq80321.h) \
$(wildcard include/config/sa1100/wid.h) \
$(wildcard include/config/arch/sabinal.h) \
$(wildcard include/config/arch/ixp425/matacumbe.h) \
$(wildcard include/config/sa1100/miniprint.h) \
$(wildcard include/config/arch/adm510x.h) \
$(wildcard include/config/sa1100/svs200.h) \
$(wildcard include/config/arch/atg/tcu.h) \
$(wildcard include/config/sa1100/jornada820.h) \
$(wildcard include/config/arch/s3c44b0.h) \
$(wildcard include/config/arch/margis2.h) \
$(wildcard include/config/arch/ks8695.h) \
$(wildcard include/config/arch/brh.h) \
$(wildcard include/config/arch/s3c2410.h) \
$(wildcard include/config/arch/possio/px30.h) \
$(wildcard include/config/arch/s3c2800.h) \
$(wildcard include/config/sa1100/fleetwood.h) \
$(wildcard include/config/arch/omaha.h) \
$(wildcard include/config/arch/ta7.h) \
$(wildcard include/config/sa1100/nova.h) \
$(wildcard include/config/arch/hmk.h) \
$(wildcard include/config/arch/karo.h) \
$(wildcard include/config/sa1100/fester.h) \
$(wildcard include/config/arch/gpi.h) \
$(wildcard include/config/arch/smdk2410.h) \
$(wildcard include/config/arch/i519.h) \
$(wildcard include/config/sa1100/nexio.h) \
$(wildcard include/config/sa1100/bitbox.h) \
$(wildcard include/config/sa1100/g200.h) \
$(wildcard include/config/sa1100/gill.h) \
$(wildcard include/config/arch/pxa/mercury.h) \
$(wildcard include/config/arch/ceiva.h) \
$(wildcard include/config/sa1100/fret.h) \
$(wildcard include/config/sa1100/emailphone.h) \
$(wildcard include/config/arch/h3900.h) \
$(wildcard include/config/arch/pxa1.h) \
$(wildcard include/config/sa1100/koan369.h) \
$(wildcard include/config/arch/cogent.h) \
$(wildcard include/config/arch/esl/simputer.h) \
$(wildcard include/config/arch/esl/simputer/clr.h) \
$(wildcard include/config/arch/esl/simputer/bw.h) \
$(wildcard include/config/arch/hhp/cradle.h) \
$(wildcard include/config/arch/he500.h) \
$(wildcard include/config/sa1100/inhandelf2.h) \
$(wildcard include/config/sa1100/inhandftip.h) \
$(wildcard include/config/sa1100/dnp1110.h) \
$(wildcard include/config/sa1100/pnp1110.h) \
$(wildcard include/config/arch/csb226.h) \
$(wildcard include/config/sa1100/arnold.h) \
$(wildcard include/config/mach/voiceblue.h) \
$(wildcard include/config/arch/jz8028.h) \
$(wildcard include/config/arch/h5400.h) \
$(wildcard include/config/sa1100/forte.h) \
$(wildcard include/config/sa1100/acam.h) \
$(wildcard include/config/sa1100/abox.h) \
$(wildcard include/config/arch/atmel.h) \
$(wildcard include/config/arch/sitsang.h) \
$(wildcard include/config/sa1100/cpu1110lcdnet.h) \
$(wildcard include/config/arch/mpl/vcma9.h) \
$(wildcard include/config/arch/opus/a1.h) \
$(wildcard include/config/arch/daytona.h) \
$(wildcard include/config/sa1100/killbear.h) \
$(wildcard include/config/arch/yoho.h) \
$(wildcard include/config/arch/jasper.h) \
$(wildcard include/config/arch/dsc25.h) \
$(wildcard include/config/mach/omap/innovator.h) \
$(wildcard include/config/arch/ramses.h) \
$(wildcard include/config/arch/s28x.h) \
$(wildcard include/config/arch/mport3.h) \
$(wildcard include/config/arch/pxa/eagle250.h) \
$(wildcard include/config/arch/pdb.h) \
$(wildcard include/config/sa1100/blue/2g.h) \
$(wildcard include/config/sa1100/bluearch.h) \
$(wildcard include/config/arch/ixdp2400.h) \
$(wildcard include/config/arch/ixdp2800.h) \
$(wildcard include/config/sa1100/explorer.h) \
$(wildcard include/config/arch/ixdp425.h) \
$(wildcard include/config/arch/chimp.h) \
$(wildcard include/config/arch/stork/nest.h) \
$(wildcard include/config/arch/stork/egg.h) \
$(wildcard include/config/sa1100/wismo.h) \
$(wildcard include/config/arch/ezlinx.h) \
$(wildcard include/config/arch/at91rm9200.h) \
$(wildcard include/config/arch/adtech/orion.h) \
$(wildcard include/config/arch/neptune.h) \
$(wildcard include/config/sa1100/hackkit.h) \
$(wildcard include/config/arch/pxa/wins30.h) \
$(wildcard include/config/sa1100/lavinna.h) \
$(wildcard include/config/arch/pxa/uengine.h) \
$(wildcard include/config/arch/innokom.h) \
$(wildcard include/config/arch/bms.h) \
$(wildcard include/config/arch/ixcdp1100.h) \
$(wildcard include/config/arch/prpmc1100.h) \
$(wildcard include/config/arch/at91rm9200dk.h) \
$(wildcard include/config/arch/armstick.h) \
$(wildcard include/config/arch/armonie.h) \
$(wildcard include/config/arch/mport1.h) \
$(wildcard include/config/arch/s3c5410.h) \
$(wildcard include/config/arch/zcp320a.h) \
$(wildcard include/config/arch/i/box.h) \
$(wildcard include/config/arch/stlc1502.h) \
$(wildcard include/config/arch/siren.h) \
$(wildcard include/config/arch/greenlake.h) \
$(wildcard include/config/arch/argus.h) \
$(wildcard include/config/sa1100/combadge.h) \
$(wildcard include/config/arch/rokepxa.h) \
$(wildcard include/config/arch/cintegrator.h) \
$(wildcard include/config/arch/guidea07.h) \
$(wildcard include/config/arch/tat257.h) \
$(wildcard include/config/arch/igp2425.h) \
$(wildcard include/config/arch/bluegramma.h) \
$(wildcard include/config/arch/ipod.h) \
$(wildcard include/config/arch/adsbitsyx.h) \
$(wildcard include/config/arch/trizeps2.h) \
$(wildcard include/config/arch/viper.h) \
$(wildcard include/config/sa1100/adsbitsyplus.h) \
$(wildcard include/config/sa1100/adsagc.h) \
$(wildcard include/config/arch/stp7312.h) \
$(wildcard include/config/mach/nx/phnx.h) \
$(wildcard include/config/arch/wep/ep250.h) \
$(wildcard include/config/arch/inhandelf3.h) \
$(wildcard include/config/arch/adi/coyote.h) \
$(wildcard include/config/arch/iyonix.h) \
$(wildcard include/config/arch/damicam/sa1110.h) \
$(wildcard include/config/arch/meg03.h) \
$(wildcard include/config/arch/pxa/whitechapel.h) \
$(wildcard include/config/arch/nwsc.h) \
$(wildcard include/config/arch/nwlarm.h) \
$(wildcard include/config/arch/ixp425/mguard.h) \
$(wildcard include/config/arch/pxa/netdcu4.h) \
$(wildcard include/config/arch/ixdp2401.h) \
$(wildcard include/config/arch/ixdp2801.h) \
$(wildcard include/config/arch/zodiac.h) \
$(wildcard include/config/arch/armmodul.h) \
$(wildcard include/config/sa1100/ketop.h) \
$(wildcard include/config/arch/av7200.h) \
$(wildcard include/config/arch/arch/ti925.h) \
$(wildcard include/config/arch/acq200.h) \
$(wildcard include/config/sa1100/pt/dafit.h) \
$(wildcard include/config/arch/ihba.h) \
$(wildcard include/config/arch/quinque.h) \
$(wildcard include/config/arch/nimbraone.h) \
$(wildcard include/config/arch/nimbra29x.h) \
$(wildcard include/config/arch/nimbra210.h) \
$(wildcard include/config/arch/hhp/d95xx.h) \
$(wildcard include/config/arch/labarm.h) \
$(wildcard include/config/arch/m825xx.h) \
$(wildcard include/config/sa1100/m7100.h) \
$(wildcard include/config/arch/nipc2.h) \
$(wildcard include/config/arch/fu7202.h) \
$(wildcard include/config/arch/adsagx.h) \
$(wildcard include/config/arch/pxa/pooh.h) \
$(wildcard include/config/arch/bandon.h) \
$(wildcard include/config/arch/pcm7210.h) \
$(wildcard include/config/arch/nms9200.h) \
$(wildcard include/config/arch/logodl.h) \
$(wildcard include/config/sa1100/m7140.h) \
$(wildcard include/config/arch/korebot.h) \
$(wildcard include/config/arch/iq31244.h) \
$(wildcard include/config/sa1100/koan393.h) \
$(wildcard include/config/arch/inhandftip3.h) \
$(wildcard include/config/arch/gonzo.h) \
$(wildcard include/config/arch/bast.h) \
$(wildcard include/config/arch/scanpass.h) \
$(wildcard include/config/arch/ep7312/pooh.h) \
$(wildcard include/config/arch/ta7s.h) \
$(wildcard include/config/arch/ta7v.h) \
$(wildcard include/config/sa1100/icarus.h) \
$(wildcard include/config/arch/h1900.h) \
$(wildcard include/config/sa1100/gemini.h) \
$(wildcard include/config/arch/axim.h) \
$(wildcard include/config/arch/audiotron.h) \
$(wildcard include/config/arch/h2200.h) \
$(wildcard include/config/arch/loox600.h) \
$(wildcard include/config/arch/niop.h) \
$(wildcard include/config/arch/dm310.h) \
$(wildcard include/config/arch/seedpxa/c2.h) \
$(wildcard include/config/arch/ixp4xx/mguard/pci.h) \
$(wildcard include/config/arch/h1940.h) \
$(wildcard include/config/arch/scorpio.h) \
$(wildcard include/config/arch/viva.h) \
$(wildcard include/config/arch/pxa/xcard.h) \
$(wildcard include/config/arch/csb335.h) \
$(wildcard include/config/arch/ixrd425.h) \
$(wildcard include/config/arch/iq80315.h) \
$(wildcard include/config/arch/nmp7312.h) \
$(wildcard include/config/arch/cx861xx.h) \
$(wildcard include/config/arch/enp2611.h) \
$(wildcard include/config/sa1100/xda.h) \
$(wildcard include/config/arch/csir/ims.h) \
$(wildcard include/config/arch/ixp421/dnaeeth.h) \
$(wildcard include/config/arch/pocketserv9200.h) \
$(wildcard include/config/arch/toto.h) \
$(wildcard include/config/arch/s3c2440.h) \
$(wildcard include/config/arch/ks8695p.h) \
$(wildcard include/config/arch/se4000.h) \
$(wildcard include/config/arch/quadriceps.h) \
$(wildcard include/config/arch/bronco.h) \
$(wildcard include/config/arch/esl/wireless/tab.h) \
$(wildcard include/config/arch/esl/sofcomp.h) \
$(wildcard include/config/arch/s5c7375.h) \
$(wildcard include/config/arch/spearhead.h) \
$(wildcard include/config/arch/pantera.h) \
$(wildcard include/config/arch/prayoglite.h) \
$(wildcard include/config/arch/gumstix.h) \
$(wildcard include/config/arch/rcube.h) \
$(wildcard include/config/arch/rea/olv.h) \
$(wildcard include/config/arch/pxa/iphone.h) \
$(wildcard include/config/arch/s3c3410.h) \
$(wildcard include/config/arch/espd/4510b.h) \
$(wildcard include/config/arch/mp1x.h) \
$(wildcard include/config/arch/at91rm9200tb.h) \
$(wildcard include/config/arch/adsvgx.h) \
$(wildcard include/config/mach/omap/h2.h) \
$(wildcard include/config/arch/pelee.h) \
$(wildcard include/config/mach/e740.h) \
$(wildcard include/config/arch/iq80331.h) \
$(wildcard include/config/arch/versatile/pb.h) \
$(wildcard include/config/mach/kev7a400.h) \
$(wildcard include/config/mach/lpd7a400.h) \
$(wildcard include/config/mach/lpd7a404.h) \
$(wildcard include/config/arch/fujitsu/camelot.h) \
$(wildcard include/config/arch/janus2m.h) \
$(wildcard include/config/mach/embtf.h) \
$(wildcard include/config/mach/hpm.h) \
$(wildcard include/config/mach/smdk2410tk.h) \
$(wildcard include/config/mach/smdk2410aj.h) \
$(wildcard include/config/mach/streetracer.h) \
$(wildcard include/config/mach/eframe.h) \
$(wildcard include/config/mach/csb337.h) \
$(wildcard include/config/mach/pxa/lark.h) \
$(wildcard include/config/mach/pnp2110.h) \
$(wildcard include/config/mach/tcc72x.h) \
$(wildcard include/config/mach/altair.h) \
$(wildcard include/config/mach/kc3.h) \
$(wildcard include/config/mach/sinteftd.h) \
$(wildcard include/config/mach/mainstone.h) \
$(wildcard include/config/mach/aday4x.h) \
$(wildcard include/config/mach/lite300.h) \
$(wildcard include/config/mach/s5c7376.h) \
$(wildcard include/config/mach/mt02.h) \
$(wildcard include/config/mach/mport3s.h) \
$(wildcard include/config/mach/ra/alpha.h) \
$(wildcard include/config/mach/xcep.h) \
$(wildcard include/config/mach/arcom/vulcan.h) \
$(wildcard include/config/mach/stargate.h) \
$(wildcard include/config/mach/armadilloj.h) \
$(wildcard include/config/mach/elroy/jack.h) \
$(wildcard include/config/mach/backend.h) \
$(wildcard include/config/mach/s5linbox.h) \
$(wildcard include/config/mach/nomadik.h) \
$(wildcard include/config/mach/ia/cpu/9200.h) \
$(wildcard include/config/mach/at91/bja1.h) \
$(wildcard include/config/mach/corgi.h) \
$(wildcard include/config/mach/poodle.h) \
$(wildcard include/config/mach/ten.h) \
$(wildcard include/config/mach/roverp5p.h) \
$(wildcard include/config/mach/sc2700.h) \
$(wildcard include/config/mach/ex/eagle.h) \
$(wildcard include/config/mach/nx/pxa12.h) \
$(wildcard include/config/mach/nx/pxa5.h) \
$(wildcard include/config/mach/blackboard2.h) \
$(wildcard include/config/mach/i819.h) \
$(wildcard include/config/mach/ixmb995e.h) \
$(wildcard include/config/mach/skyrider.h) \
$(wildcard include/config/mach/skyhawk.h) \
$(wildcard include/config/mach/enterprise.h) \
$(wildcard include/config/mach/dep2410.h) \
$(wildcard include/config/mach/armcore.h) \
$(wildcard include/config/mach/hobbit.h) \
$(wildcard include/config/mach/h7210.h) \
$(wildcard include/config/mach/pxa/netdcu5.h) \
$(wildcard include/config/mach/acc.h) \
$(wildcard include/config/mach/esl/sarva.h) \
$(wildcard include/config/mach/xm250.h) \
$(wildcard include/config/mach/t6tc1xb.h) \
$(wildcard include/config/mach/ess710.h) \
$(wildcard include/config/mach/mx31ads.h) \
$(wildcard include/config/mach/himalaya.h) \
$(wildcard include/config/mach/bolfenk.h) \
$(wildcard include/config/mach/at91rm9200kr.h) \
$(wildcard include/config/mach/edb9312.h) \
$(wildcard include/config/mach/omap/generic.h) \
$(wildcard include/config/mach/aximx3.h) \
$(wildcard include/config/mach/eb67xdip.h) \
$(wildcard include/config/mach/webtxs.h) \
$(wildcard include/config/mach/hawk.h) \
$(wildcard include/config/mach/ccat91sbc001.h) \
$(wildcard include/config/mach/expresso.h) \
$(wildcard include/config/mach/h4000.h) \
$(wildcard include/config/mach/dino.h) \
$(wildcard include/config/mach/ml675k.h) \
$(wildcard include/config/mach/edb9301.h) \
$(wildcard include/config/mach/edb9315.h) \
$(wildcard include/config/mach/reciva/tt.h) \
$(wildcard include/config/mach/cstcb01.h) \
$(wildcard include/config/mach/cstcb1.h) \
$(wildcard include/config/mach/shadwell.h) \
$(wildcard include/config/mach/goepel263.h) \
$(wildcard include/config/mach/acq100.h) \
$(wildcard include/config/mach/mx1fs2.h) \
$(wildcard include/config/mach/hiptop/g1.h) \
$(wildcard include/config/mach/sparky.h) \
$(wildcard include/config/mach/ns9750.h) \
$(wildcard include/config/mach/phoenix.h) \
$(wildcard include/config/mach/vr1000.h) \
$(wildcard include/config/mach/deisterpxa.h) \
$(wildcard include/config/mach/bcm1160.h) \
$(wildcard include/config/mach/pcm022.h) \
$(wildcard include/config/mach/adsgcx.h) \
$(wildcard include/config/mach/dreadnaught.h) \
$(wildcard include/config/mach/dm320.h) \
$(wildcard include/config/mach/markov.h) \
$(wildcard include/config/mach/cos7a400.h) \
$(wildcard include/config/mach/milano.h) \
$(wildcard include/config/mach/ue9328.h) \
$(wildcard include/config/mach/uex255.h) \
$(wildcard include/config/mach/ue2410.h) \
$(wildcard include/config/mach/a620.h) \
$(wildcard include/config/mach/ocelot.h) \
$(wildcard include/config/mach/cheetah.h) \
$(wildcard include/config/mach/omap/perseus2.h) \
$(wildcard include/config/mach/zvue.h) \
$(wildcard include/config/mach/roverp1.h) \
$(wildcard include/config/mach/asidial2.h) \
$(wildcard include/config/mach/s3c24a0.h) \
$(wildcard include/config/mach/e800.h) \
$(wildcard include/config/mach/e750.h) \
$(wildcard include/config/mach/s3c5500.h) \
$(wildcard include/config/mach/smdk5500.h) \
$(wildcard include/config/mach/signalsync.h) \
$(wildcard include/config/mach/nbc.h) \
$(wildcard include/config/mach/kodiak.h) \
$(wildcard include/config/mach/netbookpro.h) \
$(wildcard include/config/mach/hw90200.h) \
$(wildcard include/config/mach/condor.h) \
$(wildcard include/config/mach/cup.h) \
$(wildcard include/config/mach/kite.h) \
$(wildcard include/config/mach/scb9328.h) \
$(wildcard include/config/mach/omap/h3.h) \
$(wildcard include/config/mach/omap/h4.h) \
$(wildcard include/config/mach/n10.h) \
$(wildcard include/config/mach/montajade.h) \
$(wildcard include/config/mach/sg560.h) \
$(wildcard include/config/mach/dp1000.h) \
$(wildcard include/config/mach/omap/osk.h) \
$(wildcard include/config/mach/rg100v3.h) \
$(wildcard include/config/mach/mx2ads.h) \
$(wildcard include/config/mach/pxa/kilo.h) \
$(wildcard include/config/mach/ixp4xx/eagle.h) \
$(wildcard include/config/mach/tosa.h) \
$(wildcard include/config/mach/mb2520f.h) \
$(wildcard include/config/mach/emc1000.h) \
$(wildcard include/config/mach/tidsc25.h) \
$(wildcard include/config/mach/akcpmxl.h) \
$(wildcard include/config/mach/av3xx.h) \
$(wildcard include/config/mach/avila.h) \
$(wildcard include/config/mach/pxa/mpm10.h) \
$(wildcard include/config/mach/pxa/kyanite.h) \
$(wildcard include/config/mach/sgold.h) \
$(wildcard include/config/mach/oscar.h) \
$(wildcard include/config/mach/epxa4usb2.h) \
$(wildcard include/config/mach/xsengine.h) \
$(wildcard include/config/mach/ip600.h) \
$(wildcard include/config/mach/mcan2.h) \
$(wildcard include/config/mach/ddi/blueridge.h) \
$(wildcard include/config/mach/skyminder.h) \
$(wildcard include/config/mach/lpd79520.h) \
$(wildcard include/config/mach/edb9302.h) \
$(wildcard include/config/mach/hw90340.h) \
$(wildcard include/config/mach/cip/box.h) \
$(wildcard include/config/mach/ivpn.h) \
$(wildcard include/config/mach/rsoc2.h) \
$(wildcard include/config/mach/husky.h) \
$(wildcard include/config/mach/boxer.h) \
$(wildcard include/config/mach/shepherd.h) \
$(wildcard include/config/mach/aml42800aa.h) \
$(wildcard include/config/mach/lpc2294.h) \
$(wildcard include/config/mach/switchgrass.h) \
$(wildcard include/config/mach/ens/cmu.h) \
$(wildcard include/config/mach/mm6/sdb.h) \
$(wildcard include/config/mach/saturn.h) \
$(wildcard include/config/mach/i30030evb.h) \
$(wildcard include/config/mach/mxc27530evb.h) \
$(wildcard include/config/mach/smdk2800.h) \
$(wildcard include/config/mach/mtwilson.h) \
$(wildcard include/config/mach/ziti.h) \
$(wildcard include/config/mach/grandfather.h) \
$(wildcard include/config/mach/tengine.h) \
$(wildcard include/config/mach/s3c2460.h) \
$(wildcard include/config/mach/pdm.h) \
$(wildcard include/config/mach/h4700.h) \
$(wildcard include/config/mach/h6300.h) \
$(wildcard include/config/mach/rz1700.h) \
$(wildcard include/config/mach/a716.h) \
$(wildcard include/config/mach/estk2440a.h) \
$(wildcard include/config/mach/atwixp425.h) \
$(wildcard include/config/mach/csb336.h) \
$(wildcard include/config/mach/rirm2.h) \
$(wildcard include/config/mach/cx23518.h) \
$(wildcard include/config/mach/cx2351x.h) \
$(wildcard include/config/mach/computime.h) \
$(wildcard include/config/mach/izarus.h) \
$(wildcard include/config/mach/rts.h) \
$(wildcard include/config/mach/se5100.h) \
$(wildcard include/config/mach/s3c2510.h) \
$(wildcard include/config/mach/csb437tl.h) \
$(wildcard include/config/mach/slauson.h) \
$(wildcard include/config/mach/pearlriver.h) \
$(wildcard include/config/mach/tdc/p210.h) \
$(wildcard include/config/mach/sg580.h) \
$(wildcard include/config/mach/wrsbcarm7.h) \
$(wildcard include/config/mach/ipd.h) \
$(wildcard include/config/mach/pxa/dnp2110.h) \
$(wildcard include/config/mach/xaeniax.h) \
$(wildcard include/config/mach/somn4250.h) \
$(wildcard include/config/mach/pleb2.h) \
$(wildcard include/config/mach/cornwallis.h) \
$(wildcard include/config/mach/gurney/drv.h) \
$(wildcard include/config/mach/chaffee.h) \
$(wildcard include/config/mach/rms101.h) \
$(wildcard include/config/mach/rx3715.h) \
$(wildcard include/config/mach/swift.h) \
$(wildcard include/config/mach/roverp7.h) \
$(wildcard include/config/mach/pr818s.h) \
$(wildcard include/config/mach/trxpro.h) \
$(wildcard include/config/mach/nslu2.h) \
$(wildcard include/config/mach/e400.h) \
$(wildcard include/config/mach/trab.h) \
$(wildcard include/config/mach/cmc/pu2.h) \
$(wildcard include/config/mach/fulcrum.h) \
$(wildcard include/config/mach/netgate42x.h) \
$(wildcard include/config/mach/str710.h) \
$(wildcard include/config/mach/ixdpg425.h) \
$(wildcard include/config/mach/tomtomgo.h) \
$(wildcard include/config/mach/versatile/ab.h) \
$(wildcard include/config/mach/edb9307.h) \
$(wildcard include/config/mach/sg565.h) \
$(wildcard include/config/mach/lpd79524.h) \
$(wildcard include/config/mach/lpd79525.h) \
$(wildcard include/config/mach/rms100.h) \
$(wildcard include/config/mach/kb9200.h) \
$(wildcard include/config/mach/sx1.h) \
$(wildcard include/config/mach/hms39c7092.h) \
$(wildcard include/config/mach/armadillo.h) \
$(wildcard include/config/mach/ipcu.h) \
$(wildcard include/config/mach/loox720.h) \
$(wildcard include/config/mach/ixdp465.h) \
$(wildcard include/config/mach/ixdp2351.h) \
$(wildcard include/config/mach/adsvix.h) \
$(wildcard include/config/mach/dm270.h) \
$(wildcard include/config/mach/socltplus.h) \
$(wildcard include/config/mach/ecia.h) \
$(wildcard include/config/mach/cm4008.h) \
$(wildcard include/config/mach/p2001.h) \
$(wildcard include/config/mach/twister.h) \
$(wildcard include/config/mach/mudshark.h) \
$(wildcard include/config/mach/hb2.h) \
$(wildcard include/config/mach/iq80332.h) \
$(wildcard include/config/mach/sendt.h) \
$(wildcard include/config/mach/mx2jazz.h) \
$(wildcard include/config/mach/multiio.h) \
$(wildcard include/config/mach/hrdisplay.h) \
$(wildcard include/config/mach/mxc27530ads.h) \
$(wildcard include/config/mach/trizeps3.h) \
$(wildcard include/config/mach/zefeerdza.h) \
$(wildcard include/config/mach/zefeerdzb.h) \
$(wildcard include/config/mach/zefeerdzg.h) \
$(wildcard include/config/mach/zefeerdzn.h) \
$(wildcard include/config/mach/zefeerdzq.h) \
$(wildcard include/config/mach/gtwx5715.h) \
$(wildcard include/config/mach/astro/jack.h) \
$(wildcard include/config/mach/tip03.h) \
$(wildcard include/config/mach/a9200ec.h) \
$(wildcard include/config/mach/pnx0105.h) \
$(wildcard include/config/mach/adcpoecpu.h) \
$(wildcard include/config/mach/csb637.h) \
$(wildcard include/config/mach/mb9200.h) \
$(wildcard include/config/mach/kulun.h) \
$(wildcard include/config/mach/snapper.h) \
$(wildcard include/config/mach/optima.h) \
$(wildcard include/config/mach/dlhsbc.h) \
$(wildcard include/config/mach/x30.h) \
$(wildcard include/config/mach/n30.h) \
$(wildcard include/config/mach/manga/ks8695.h) \
$(wildcard include/config/mach/ajax.h) \
$(wildcard include/config/mach/nec/mp900.h) \
$(wildcard include/config/mach/vvtk1000.h) \
$(wildcard include/config/mach/kafa.h) \
$(wildcard include/config/mach/vvtk3000.h) \
$(wildcard include/config/mach/pimx1.h) \
$(wildcard include/config/mach/ollie.h) \
$(wildcard include/config/mach/skymax.h) \
$(wildcard include/config/mach/jazz.h) \
$(wildcard include/config/mach/tel/t3.h) \
$(wildcard include/config/mach/aisino/fcr255.h) \
$(wildcard include/config/mach/btweb.h) \
$(wildcard include/config/mach/dbg/lh79520.h) \
$(wildcard include/config/mach/cm41xx.h) \
$(wildcard include/config/mach/ts72xx.h) \
$(wildcard include/config/mach/nggpxa.h) \
$(wildcard include/config/mach/csb535.h) \
$(wildcard include/config/mach/csb536.h) \
$(wildcard include/config/mach/pxa/trakpod.h) \
$(wildcard include/config/mach/praxis.h) \
$(wildcard include/config/mach/lh75411.h) \
$(wildcard include/config/mach/otom.h) \
$(wildcard include/config/mach/nexcoder/2440.h) \
$(wildcard include/config/mach/loox410.h) \
$(wildcard include/config/mach/westlake.h) \
$(wildcard include/config/mach/nsb.h) \
$(wildcard include/config/mach/esl/sarva/stn.h) \
$(wildcard include/config/mach/esl/sarva/tft.h) \
$(wildcard include/config/mach/esl/sarva/iad.h) \
$(wildcard include/config/mach/esl/sarva/acc.h) \
$(wildcard include/config/mach/typhoon.h) \
$(wildcard include/config/mach/cnav.h) \
$(wildcard include/config/mach/a730.h) \
$(wildcard include/config/mach/netstar.h) \
$(wildcard include/config/mach/phasefale/supercon.h) \
$(wildcard include/config/mach/shiva1100.h) \
$(wildcard include/config/mach/etexsc.h) \
$(wildcard include/config/mach/ixdpg465.h) \
$(wildcard include/config/mach/a9m2410.h) \
$(wildcard include/config/mach/a9m2440.h) \
$(wildcard include/config/mach/a9m9750.h) \
$(wildcard include/config/mach/a9m9360.h) \
$(wildcard include/config/mach/unc90.h) \
$(wildcard include/config/mach/eco920.h) \
$(wildcard include/config/mach/satview.h) \
$(wildcard include/config/mach/roadrunner.h) \
$(wildcard include/config/mach/at91rm9200ek.h) \
$(wildcard include/config/mach/gp32.h) \
$(wildcard include/config/mach/gem.h) \
$(wildcard include/config/mach/i858.h) \
$(wildcard include/config/mach/hx2750.h) \
$(wildcard include/config/mach/mxc91131evb.h) \
$(wildcard include/config/mach/p700.h) \
$(wildcard include/config/mach/cpe.h) \
$(wildcard include/config/mach/spitz.h) \
$(wildcard include/config/mach/nimbra340.h) \
$(wildcard include/config/mach/lpc22xx.h) \
$(wildcard include/config/mach/comet3.h) \
$(wildcard include/config/mach/comet4.h) \
$(wildcard include/config/mach/csb625.h) \
$(wildcard include/config/mach/fortunet2.h) \
$(wildcard include/config/mach/s5h2200.h) \
$(wildcard include/config/mach/optorm920.h) \
$(wildcard include/config/mach/adsbitsyxb.h) \
$(wildcard include/config/mach/adssphere.h) \
$(wildcard include/config/mach/adsportal.h) \
$(wildcard include/config/mach/ln2410sbc.h) \
$(wildcard include/config/mach/cb3rufc.h) \
$(wildcard include/config/mach/mp2usb.h) \
$(wildcard include/config/mach/ntnp425c.h) \
$(wildcard include/config/mach/colibri.h) \
$(wildcard include/config/mach/pcm7220.h) \
$(wildcard include/config/mach/gateway7001.h) \
$(wildcard include/config/mach/pcm027.h) \
$(wildcard include/config/mach/cmpxa.h) \
$(wildcard include/config/mach/anubis.h) \
$(wildcard include/config/mach/ite8152.h) \
$(wildcard include/config/mach/lpc3xxx.h) \
$(wildcard include/config/mach/puppeteer.h) \
$(wildcard include/config/mach/e570.h) \
$(wildcard include/config/mach/x50.h) \
$(wildcard include/config/mach/recon.h) \
$(wildcard include/config/mach/xboardgp8.h) \
$(wildcard include/config/mach/fpic2.h) \
$(wildcard include/config/mach/akita.h) \
$(wildcard include/config/mach/a81.h) \
$(wildcard include/config/mach/svm/sc25x.h) \
$(wildcard include/config/mach/vadatech020.h) \
$(wildcard include/config/mach/tli.h) \
$(wildcard include/config/mach/edb9315lc.h) \
$(wildcard include/config/mach/passec.h) \
$(wildcard include/config/mach/ds/tiger.h) \
$(wildcard include/config/mach/e310.h) \
$(wildcard include/config/mach/e330.h) \
$(wildcard include/config/mach/rt3000.h) \
$(wildcard include/config/mach/nokia770.h) \
$(wildcard include/config/mach/pnx0106.h) \
$(wildcard include/config/mach/hx21xx.h) \
$(wildcard include/config/mach/faraday.h) \
$(wildcard include/config/mach/sbc9312.h) \
$(wildcard include/config/mach/batman.h) \
$(wildcard include/config/mach/jpd201.h) \
$(wildcard include/config/mach/mipsa.h) \
$(wildcard include/config/mach/kacom.h) \
$(wildcard include/config/mach/swarcocpu.h) \
$(wildcard include/config/mach/swarcodsl.h) \
$(wildcard include/config/mach/blueangel.h) \
$(wildcard include/config/mach/hairygrama.h) \
$(wildcard include/config/mach/banff.h) \
$(wildcard include/config/mach/carmeva.h) \
$(wildcard include/config/mach/sam255.h) \
$(wildcard include/config/mach/ppm10.h) \
$(wildcard include/config/mach/edb9315a.h) \
$(wildcard include/config/mach/sunset.h) \
$(wildcard include/config/mach/stargate2.h) \
$(wildcard include/config/mach/intelmote2.h) \
$(wildcard include/config/mach/trizeps4.h) \
$(wildcard include/config/mach/mainstone2.h) \
$(wildcard include/config/mach/ez/ixp42x.h) \
$(wildcard include/config/mach/tapwave/zodiac.h) \
$(wildcard include/config/mach/universalmeter.h) \
$(wildcard include/config/mach/hicoarm9.h) \
$(wildcard include/config/mach/pnx4008.h) \
$(wildcard include/config/mach/kws6000.h) \
$(wildcard include/config/mach/portux920t.h) \
$(wildcard include/config/mach/ez/x5.h) \
$(wildcard include/config/mach/omap/rudolph.h) \
$(wildcard include/config/mach/cpuat91.h) \
$(wildcard include/config/mach/rea9200.h) \
$(wildcard include/config/mach/acts/pune/sa1110.h) \
$(wildcard include/config/mach/ixp425.h) \
$(wildcard include/config/mach/i30030ads.h) \
$(wildcard include/config/mach/perch.h) \
$(wildcard include/config/mach/eis05r1.h) \
$(wildcard include/config/mach/pepperpad.h) \
$(wildcard include/config/mach/sb3010.h) \
$(wildcard include/config/mach/rm9200.h) \
$(wildcard include/config/mach/dma03.h) \
$(wildcard include/config/mach/road/s101.h) \
$(wildcard include/config/mach/iq81340sc.h) \
$(wildcard include/config/mach/iq/nextgen/b.h) \
$(wildcard include/config/mach/iq81340mc.h) \
$(wildcard include/config/mach/iq/nextgen/d.h) \
$(wildcard include/config/mach/iq/nextgen/e.h) \
$(wildcard include/config/mach/mallow/at91.h) \
$(wildcard include/config/mach/cybertracker/i.h) \
$(wildcard include/config/mach/gesbc931x.h) \
$(wildcard include/config/mach/centipad.h) \
$(wildcard include/config/mach/armsoc.h) \
$(wildcard include/config/mach/se4200.h) \
$(wildcard include/config/mach/ems197a.h) \
$(wildcard include/config/mach/micro9.h) \
$(wildcard include/config/mach/micro9l.h) \
$(wildcard include/config/mach/uc5471dsp.h) \
$(wildcard include/config/mach/sj5471eng.h) \
$(wildcard include/config/mach/cmpxa26x.h) \
$(wildcard include/config/mach/nc.h) \
$(wildcard include/config/mach/omap/palmte.h) \
$(wildcard include/config/mach/ajax52x.h) \
$(wildcard include/config/mach/siriustar.h) \
$(wildcard include/config/mach/iodata/hdlg.h) \
$(wildcard include/config/mach/at91rm9200utl.h) \
$(wildcard include/config/mach/biosafe.h) \
$(wildcard include/config/mach/mp1000.h) \
$(wildcard include/config/mach/parsy.h) \
$(wildcard include/config/mach/ccxp.h) \
$(wildcard include/config/mach/omap/gsample.h) \
$(wildcard include/config/mach/realview/eb.h) \
$(wildcard include/config/mach/samoa.h) \
$(wildcard include/config/mach/palmt3.h) \
$(wildcard include/config/mach/i878.h) \
$(wildcard include/config/mach/borzoi.h) \
$(wildcard include/config/mach/gecko.h) \
$(wildcard include/config/mach/ds101.h) \
$(wildcard include/config/mach/omap/palmtt2.h) \
$(wildcard include/config/mach/palmld.h) \
$(wildcard include/config/mach/cc9c.h) \
$(wildcard include/config/mach/sbc1670.h) \
$(wildcard include/config/mach/ixdp28x5.h) \
$(wildcard include/config/mach/omap/palmtt.h) \
$(wildcard include/config/mach/ml696k.h) \
$(wildcard include/config/mach/arcom/zeus.h) \
$(wildcard include/config/mach/osiris.h) \
$(wildcard include/config/mach/maestro.h) \
$(wildcard include/config/mach/palmte2.h) \
$(wildcard include/config/mach/ixbbm.h) \
$(wildcard include/config/mach/mx27ads.h) \
$(wildcard include/config/mach/ax8004.h) \
$(wildcard include/config/mach/at91sam9261ek.h) \
$(wildcard include/config/mach/loft.h) \
$(wildcard include/config/mach/magpie.h) \
$(wildcard include/config/mach/mx21ads.h) \
$(wildcard include/config/mach/mb87m3400.h) \
$(wildcard include/config/mach/mguard/delta.h) \
$(wildcard include/config/mach/davinci/dvdp.h) \
$(wildcard include/config/mach/htcuniversal.h) \
$(wildcard include/config/mach/tpad.h) \
$(wildcard include/config/mach/roverp3.h) \
$(wildcard include/config/mach/jornada928.h) \
$(wildcard include/config/mach/mv88fxx81.h) \
$(wildcard include/config/mach/stmp36xx.h) \
$(wildcard include/config/mach/sxni79524.h) \
$(wildcard include/config/mach/ams/delta.h) \
$(wildcard include/config/mach/uranium.h) \
$(wildcard include/config/mach/ucon.h) \
$(wildcard include/config/mach/nas100d.h) \
$(wildcard include/config/mach/l083/1000.h) \
$(wildcard include/config/mach/ezx.h) \
$(wildcard include/config/mach/pnx5220.h) \
$(wildcard include/config/mach/butte.h) \
$(wildcard include/config/mach/srm2.h) \
$(wildcard include/config/mach/dsbr.h) \
$(wildcard include/config/mach/crystalball.h) \
$(wildcard include/config/mach/tinypxa27x.h) \
$(wildcard include/config/mach/herbie.h) \
$(wildcard include/config/mach/magician.h) \
$(wildcard include/config/mach/cm4002.h) \
$(wildcard include/config/mach/b4.h) \
$(wildcard include/config/mach/maui.h) \
$(wildcard include/config/mach/cybertracker/g.h) \
$(wildcard include/config/mach/nxdkn.h) \
$(wildcard include/config/mach/mio8390.h) \
$(wildcard include/config/mach/omi/board.h) \
$(wildcard include/config/mach/mx21civ.h) \
$(wildcard include/config/mach/mahi/cdac.h) \
$(wildcard include/config/mach/palmtx.h) \
$(wildcard include/config/mach/s3c2413.h) \
$(wildcard include/config/mach/samsys/ep0.h) \
$(wildcard include/config/mach/wg302v1.h) \
$(wildcard include/config/mach/wg302v2.h) \
$(wildcard include/config/mach/eb42x.h) \
$(wildcard include/config/mach/iq331es.h) \
$(wildcard include/config/mach/cosydsp.h) \
$(wildcard include/config/mach/uplat7d.h) \
$(wildcard include/config/mach/ptdavinci.h) \
$(wildcard include/config/mach/mbus.h) \
$(wildcard include/config/mach/nadia2vb.h) \
$(wildcard include/config/mach/r1000.h) \
$(wildcard include/config/mach/hw90250.h) \
$(wildcard include/config/mach/omap/2430sdp.h) \
$(wildcard include/config/mach/davinci/evm.h) \
$(wildcard include/config/mach/omap/tornado.h) \
$(wildcard include/config/mach/olocreek.h) \
$(wildcard include/config/mach/palmz72.h) \
$(wildcard include/config/mach/nxdb500.h) \
$(wildcard include/config/mach/apf9328.h) \
$(wildcard include/config/mach/omap/wipoq.h) \
$(wildcard include/config/mach/omap/twip.h) \
$(wildcard include/config/mach/treo650.h) \
$(wildcard include/config/mach/acumen.h) \
$(wildcard include/config/mach/xp100.h) \
$(wildcard include/config/mach/fs2410.h) \
$(wildcard include/config/mach/pxa270/cerf.h) \
$(wildcard include/config/mach/sq2ftlpalm.h) \
$(wildcard include/config/mach/bsemserver.h) \
$(wildcard include/config/mach/netclient.h) \
$(wildcard include/config/mach/palmt5.h) \
$(wildcard include/config/mach/palmtc.h) \
$(wildcard include/config/mach/omap/apollon.h) \
$(wildcard include/config/mach/mxc30030evb.h) \
$(wildcard include/config/mach/rea/2d.h) \
$(wildcard include/config/mach/ti3e524.h) \
$(wildcard include/config/mach/ateb9200.h) \
$(wildcard include/config/mach/auckland.h) \
$(wildcard include/config/mach/ak3320m.h) \
$(wildcard include/config/mach/duramax.h) \
$(wildcard include/config/mach/n35.h) \
$(wildcard include/config/mach/pronghorn.h) \
$(wildcard include/config/mach/fundy.h) \
$(wildcard include/config/mach/logicpd/pxa270.h) \
$(wildcard include/config/mach/cpu777.h) \
$(wildcard include/config/mach/simicon9201.h) \
$(wildcard include/config/mach/leap2/hpm.h) \
$(wildcard include/config/mach/cm922txa10.h) \
$(wildcard include/config/mach/pxa.h) \
$(wildcard include/config/mach/sandgate2.h) \
$(wildcard include/config/mach/sandgate2g.h) \
$(wildcard include/config/mach/sandgate2p.h) \
$(wildcard include/config/mach/fred/jack.h) \
$(wildcard include/config/mach/ttg/color1.h) \
$(wildcard include/config/mach/nxeb500hmi.h) \
$(wildcard include/config/mach/netdcu8.h) \
$(wildcard include/config/mach/ng/fvx538.h) \
$(wildcard include/config/mach/ng/fvs338.h) \
$(wildcard include/config/mach/pnx4103.h) \
$(wildcard include/config/mach/hesdb.h) \
$(wildcard include/config/mach/xsilo.h) \
$(wildcard include/config/mach/espresso.h) \
$(wildcard include/config/mach/emlc.h) \
$(wildcard include/config/mach/sisteron.h) \
$(wildcard include/config/mach/rx1950.h) \
$(wildcard include/config/mach/tsc/venus.h) \
$(wildcard include/config/mach/ds101j.h) \
$(wildcard include/config/mach/mxc30030ads.h) \
$(wildcard include/config/mach/fujitsu/wimaxsoc.h) \
$(wildcard include/config/mach/dualpcmodem.h) \
$(wildcard include/config/mach/gesbc9312.h) \
$(wildcard include/config/mach/htcapache.h) \
$(wildcard include/config/mach/ixdp435.h) \
$(wildcard include/config/mach/catprovt100.h) \
$(wildcard include/config/mach/picotux1xx.h) \
$(wildcard include/config/mach/picotux2xx.h) \
$(wildcard include/config/mach/dsmg600.h) \
$(wildcard include/config/mach/empc2.h) \
$(wildcard include/config/mach/ventura.h) \
$(wildcard include/config/mach/phidget/sbc.h) \
$(wildcard include/config/mach/ij3k.h) \
$(wildcard include/config/mach/pisgah.h) \
$(wildcard include/config/mach/omap/fsample.h) \
$(wildcard include/config/mach/sg720.h) \
$(wildcard include/config/mach/redfox.h) \
$(wildcard include/config/mach/mysh/ep9315/1.h) \
$(wildcard include/config/mach/tpf106.h) \
$(wildcard include/config/mach/at91rm9200kg.h) \
$(wildcard include/config/mach/sledb.h) \
$(wildcard include/config/mach/ontrack.h) \
$(wildcard include/config/mach/pm1200.h) \
$(wildcard include/config/mach/ess24xxx.h) \
$(wildcard include/config/mach/coremp7.h) \
$(wildcard include/config/mach/nexcoder/6446.h) \
$(wildcard include/config/mach/stvc8380.h) \
$(wildcard include/config/mach/teklynx.h) \
$(wildcard include/config/mach/carbonado.h) \
$(wildcard include/config/mach/sysmos/mp730.h) \
$(wildcard include/config/mach/snapper/cl15.h) \
$(wildcard include/config/mach/pgigim.h) \
$(wildcard include/config/mach/ptx9160p2.h) \
$(wildcard include/config/mach/dcore1.h) \
$(wildcard include/config/mach/victorpxa.h) \
$(wildcard include/config/mach/mx2dtb.h) \
$(wildcard include/config/mach/pxa/irex/er0100.h) \
$(wildcard include/config/mach/omap/palmz71.h) \
$(wildcard include/config/mach/bartec/deg.h) \
$(wildcard include/config/mach/hw50251.h) \
$(wildcard include/config/mach/ibox.h) \
$(wildcard include/config/mach/atlaslh7a404.h) \
$(wildcard include/config/mach/pt2026.h) \
$(wildcard include/config/mach/htcalpine.h) \
$(wildcard include/config/mach/bartec/vtu.h) \
$(wildcard include/config/mach/vcoreii.h) \
$(wildcard include/config/mach/pdnb3.h) \
$(wildcard include/config/mach/htcbeetles.h) \
$(wildcard include/config/mach/s3c6400.h) \
$(wildcard include/config/mach/s3c2443.h) \
$(wildcard include/config/mach/omap/ldk.h) \
$(wildcard include/config/mach/smdk2460.h) \
$(wildcard include/config/mach/smdk2440.h) \
$(wildcard include/config/mach/smdk2412.h) \
$(wildcard include/config/mach/webbox.h) \
$(wildcard include/config/mach/cwwndp.h) \
$(wildcard include/config/mach/dragon.h) \
$(wildcard include/config/mach/opendo/cpu/board.h) \
$(wildcard include/config/mach/ccm2200.h) \
$(wildcard include/config/mach/etwarm.h) \
$(wildcard include/config/mach/m93030.h) \
$(wildcard include/config/mach/cc7u.h) \
$(wildcard include/config/mach/mtt/ranger.h) \
$(wildcard include/config/mach/nexus.h) \
$(wildcard include/config/mach/desman.h) \
$(wildcard include/config/mach/bkde303.h) \
$(wildcard include/config/mach/smdk2413.h) \
$(wildcard include/config/mach/aml/m7200.h) \
$(wildcard include/config/mach/aml/m5900.h) \
$(wildcard include/config/mach/sg640.h) \
$(wildcard include/config/mach/edg79524.h) \
$(wildcard include/config/mach/ai2410.h) \
$(wildcard include/config/mach/ixp465.h) \
$(wildcard include/config/mach/balloon3.h) \
$(wildcard include/config/mach/heins.h) \
$(wildcard include/config/mach/mpluseva.h) \
$(wildcard include/config/mach/rt042.h) \
$(wildcard include/config/mach/cwiem.h) \
$(wildcard include/config/mach/cm/x270.h) \
$(wildcard include/config/mach/cm/x255.h) \
$(wildcard include/config/mach/esh/at91.h) \
$(wildcard include/config/mach/sandgate3.h) \
$(wildcard include/config/mach/primo.h) \
$(wildcard include/config/mach/gemstone.h) \
$(wildcard include/config/mach/pronghornmetro.h) \
$(wildcard include/config/mach/sidewinder.h) \
$(wildcard include/config/mach/picomod1.h) \
$(wildcard include/config/mach/sg590.h) \
$(wildcard include/config/mach/akai9307.h) \
$(wildcard include/config/mach/fontaine.h) \
$(wildcard include/config/mach/wombat.h) \
$(wildcard include/config/mach/acq300.h) \
$(wildcard include/config/mach/mod/270.h) \
$(wildcard include/config/mach/vc0820.h) \
$(wildcard include/config/mach/ani/aim.h) \
$(wildcard include/config/mach/jellyfish.h) \
$(wildcard include/config/mach/amanita.h) \
$(wildcard include/config/mach/vlink.h) \
$(wildcard include/config/mach/dexflex.h) \
$(wildcard include/config/mach/eigen/ttq.h) \
$(wildcard include/config/mach/arcom/titan.h) \
$(wildcard include/config/mach/tabla.h) \
$(wildcard include/config/mach/mdirac3.h) \
$(wildcard include/config/mach/mrhfbp2.h) \
$(wildcard include/config/mach/at91rm9200rb.h) \
$(wildcard include/config/mach/ani/apm.h) \
$(wildcard include/config/mach/ella1.h) \
$(wildcard include/config/mach/inhand/pxa27x.h) \
$(wildcard include/config/mach/inhand/pxa25x.h) \
$(wildcard include/config/mach/empos/xm.h) \
$(wildcard include/config/mach/empos.h) \
$(wildcard include/config/mach/empos/tiny.h) \
$(wildcard include/config/mach/empos/sm.h) \
$(wildcard include/config/mach/egret.h) \
$(wildcard include/config/mach/ostrich.h) \
$(wildcard include/config/mach/n50.h) \
$(wildcard include/config/mach/ecbat91.h) \
$(wildcard include/config/mach/stareast.h) \
$(wildcard include/config/mach/dspg/dw.h) \
$(wildcard include/config/mach/onearm.h) \
$(wildcard include/config/mach/mrg110/6.h) \
$(wildcard include/config/mach/wrt300nv2.h) \
$(wildcard include/config/mach/xm/bulverde.h) \
$(wildcard include/config/mach/msm6100.h) \
$(wildcard include/config/mach/eti/b1.h) \
$(wildcard include/config/mach/zilog/za9l.h) \
$(wildcard include/config/mach/bit2440.h) \
$(wildcard include/config/mach/nbi.h) \
$(wildcard include/config/mach/smdk2443.h) \
$(wildcard include/config/mach/vdavinci.h) \
$(wildcard include/config/mach/atc6.h) \
$(wildcard include/config/mach/multmdw.h) \
$(wildcard include/config/mach/mba2440.h) \
$(wildcard include/config/mach/ecsd.h) \
$(wildcard include/config/mach/palmz31.h) \
$(wildcard include/config/mach/fsg.h) \
$(wildcard include/config/mach/razor101.h) \
$(wildcard include/config/mach/opera/tdm.h) \
$(wildcard include/config/mach/comcerto.h) \
$(wildcard include/config/mach/tb0319.h) \
$(wildcard include/config/mach/kws8000.h) \
$(wildcard include/config/mach/b2.h) \
$(wildcard include/config/mach/lcl54.h) \
$(wildcard include/config/mach/at91sam9260ek.h) \
$(wildcard include/config/mach/glantank.h) \
$(wildcard include/config/mach/n2100.h) \
$(wildcard include/config/mach/n4100.h) \
$(wildcard include/config/mach/vertical/rsc4.h) \
$(wildcard include/config/mach/sg8100.h) \
$(wildcard include/config/mach/im42xx.h) \
$(wildcard include/config/mach/ftxx.h) \
$(wildcard include/config/mach/lwfusion.h) \
$(wildcard include/config/mach/qt2410.h) \
$(wildcard include/config/mach/kixrp435.h) \
$(wildcard include/config/mach/ccw9c.h) \
$(wildcard include/config/mach/dabhs.h) \
$(wildcard include/config/mach/gzmx.h) \
$(wildcard include/config/mach/ipnw100ap.h) \
$(wildcard include/config/mach/cc9p9360dev.h) \
$(wildcard include/config/mach/cc9p9750dev.h) \
$(wildcard include/config/mach/cc9p9360val.h) \
$(wildcard include/config/mach/cc9p9750val.h) \
$(wildcard include/config/mach/nx70v.h) \
$(wildcard include/config/mach/at91rm9200df.h) \
$(wildcard include/config/mach/se/pilot2.h) \
$(wildcard include/config/mach/mtcn/t800.h) \
$(wildcard include/config/mach/vcmx212.h) \
$(wildcard include/config/mach/lynx.h) \
$(wildcard include/config/mach/at91sam9260id.h) \
$(wildcard include/config/mach/hw86052.h) \
$(wildcard include/config/mach/pilz/pmi3.h) \
$(wildcard include/config/mach/edb9302a.h) \
$(wildcard include/config/mach/edb9307a.h) \
$(wildcard include/config/mach/ct/dfs.h) \
$(wildcard include/config/mach/pilz/pmi4.h) \
$(wildcard include/config/mach/xceednp/ixp.h) \
$(wildcard include/config/mach/smdk2442b.h) \
$(wildcard include/config/mach/xnode.h) \
$(wildcard include/config/mach/aidx270.h) \
$(wildcard include/config/mach/rema.h) \
$(wildcard include/config/mach/bps1000.h) \
$(wildcard include/config/mach/hw90350.h) \
$(wildcard include/config/mach/omap/3430sdp.h) \
$(wildcard include/config/mach/bluetouch.h) \
$(wildcard include/config/mach/vstms.h) \
$(wildcard include/config/mach/xsbase270.h) \
$(wildcard include/config/mach/at91sam9260ek/cn.h) \
$(wildcard include/config/mach/adsturboxb.h) \
$(wildcard include/config/mach/oti4110.h) \
$(wildcard include/config/mach/hme/pxa.h) \
$(wildcard include/config/mach/deisterdca.h) \
$(wildcard include/config/mach/ces/ssem2.h) \
$(wildcard include/config/mach/ces/mtr.h) \
$(wildcard include/config/mach/tds/avng/sbc.h) \
$(wildcard include/config/mach/everest.h) \
$(wildcard include/config/mach/pnx4010.h) \
$(wildcard include/config/mach/oxnas.h) \
$(wildcard include/config/mach/fiori.h) \
$(wildcard include/config/mach/ml1200.h) \
$(wildcard include/config/mach/pecos.h) \
$(wildcard include/config/mach/nb2xxx.h) \
$(wildcard include/config/mach/hw6900.h) \
$(wildcard include/config/mach/cdcs/quoll.h) \
$(wildcard include/config/mach/quicksilver.h) \
$(wildcard include/config/mach/uplat926.h) \
$(wildcard include/config/mach/dep2410/thomas.h) \
$(wildcard include/config/mach/dtk2410.h) \
$(wildcard include/config/mach/chili.h) \
$(wildcard include/config/mach/demeter.h) \
$(wildcard include/config/mach/dionysus.h) \
$(wildcard include/config/mach/as352x.h) \
$(wildcard include/config/mach/service.h) \
$(wildcard include/config/mach/cs/e9301.h) \
$(wildcard include/config/mach/micro9m.h) \
$(wildcard include/config/mach/ia/mospck.h) \
$(wildcard include/config/mach/ql201b.h) \
$(wildcard include/config/mach/bbm.h) \
$(wildcard include/config/mach/exxx.h) \
$(wildcard include/config/mach/wma11b.h) \
$(wildcard include/config/mach/pelco/atlas.h) \
$(wildcard include/config/mach/g500.h) \
$(wildcard include/config/mach/bug.h) \
$(wildcard include/config/mach/mx33ads.h) \
$(wildcard include/config/mach/chub.h) \
$(wildcard include/config/mach/neo1973/gta01.h) \
$(wildcard include/config/mach/w90n740.h) \
$(wildcard include/config/mach/medallion/sa2410.h) \
$(wildcard include/config/mach/ia/cpu/9200/2.h) \
$(wildcard include/config/mach/dimmrm9200.h) \
$(wildcard include/config/mach/pm9261.h) \
$(wildcard include/config/mach/ml7304.h) \
$(wildcard include/config/mach/ucp250.h) \
$(wildcard include/config/mach/intboard.h) \
$(wildcard include/config/mach/gulfstream.h) \
$(wildcard include/config/mach/labquest.h) \
$(wildcard include/config/mach/vcmx313.h) \
$(wildcard include/config/mach/urg200.h) \
$(wildcard include/config/mach/cpux255lcdnet.h) \
$(wildcard include/config/mach/netdcu9.h) \
$(wildcard include/config/mach/netdcu10.h) \
$(wildcard include/config/mach/dspg/dga.h) \
$(wildcard include/config/mach/dspg/dvw.h) \
$(wildcard include/config/mach/solos.h) \
$(wildcard include/config/mach/at91sam9263ek.h) \
$(wildcard include/config/mach/osstbox.h) \
$(wildcard include/config/mach/kbat9261.h) \
$(wildcard include/config/mach/ct1100.h) \
$(wildcard include/config/mach/akcppxa.h) \
$(wildcard include/config/mach/ochaya1020.h) \
$(wildcard include/config/mach/hitrack.h) \
$(wildcard include/config/mach/syme1.h) \
$(wildcard include/config/mach/syhl1.h) \
$(wildcard include/config/mach/empca400.h) \
$(wildcard include/config/mach/em7210.h) \
$(wildcard include/config/mach/htchermes.h) \
$(wildcard include/config/mach/eti/c1.h) \
$(wildcard include/config/mach/ac100.h) \
$(wildcard include/config/mach/sneetch.h) \
$(wildcard include/config/mach/studentmate.h) \
$(wildcard include/config/mach/zir2410.h) \
$(wildcard include/config/mach/zir2413.h) \
$(wildcard include/config/mach/dlonip3.h) \
$(wildcard include/config/mach/instream.h) \
$(wildcard include/config/mach/ambarella.h) \
$(wildcard include/config/mach/nevis.h) \
$(wildcard include/config/mach/htc/trinity.h) \
$(wildcard include/config/mach/ql202b.h) \
$(wildcard include/config/mach/vpac270.h) \
$(wildcard include/config/mach/rd129.h) \
$(wildcard include/config/mach/htcwizard.h) \
$(wildcard include/config/mach/treo680.h) \
$(wildcard include/config/mach/tecon/tmezon.h) \
$(wildcard include/config/mach/zylonite.h) \
$(wildcard include/config/mach/gene1270.h) \
$(wildcard include/config/mach/zir2412.h) \
$(wildcard include/config/mach/mx31lite.h) \
$(wildcard include/config/mach/t700wx.h) \
$(wildcard include/config/mach/vf100.h) \
$(wildcard include/config/mach/nsb2.h) \
$(wildcard include/config/mach/nxhmi/bb.h) \
$(wildcard include/config/mach/nxhmi/re.h) \
$(wildcard include/config/mach/n4100pro.h) \
$(wildcard include/config/mach/sam9260.h) \
$(wildcard include/config/mach/omap/treo600.h) \
$(wildcard include/config/mach/indy2410.h) \
$(wildcard include/config/mach/nelt/a.h) \
$(wildcard include/config/mach/n311.h) \
$(wildcard include/config/mach/at91sam9260vgk.h) \
$(wildcard include/config/mach/at91leppe.h) \
$(wildcard include/config/mach/at91lepccn.h) \
$(wildcard include/config/mach/apc7100.h) \
$(wildcard include/config/mach/stargazer.h) \
$(wildcard include/config/mach/sonata.h) \
$(wildcard include/config/mach/schmoogie.h) \
$(wildcard include/config/mach/aztool.h) \
$(wildcard include/config/mach/mioa701.h) \
$(wildcard include/config/mach/sxni9260.h) \
$(wildcard include/config/mach/mxc27520evb.h) \
$(wildcard include/config/mach/armadillo5x0.h) \
$(wildcard include/config/mach/mb9260.h) \
$(wildcard include/config/mach/mb9263.h) \
$(wildcard include/config/mach/ipac9302.h) \
$(wildcard include/config/mach/cc9p9360js.h) \
$(wildcard include/config/mach/gallium.h) \
$(wildcard include/config/mach/msc2410.h) \
$(wildcard include/config/mach/ghi270.h) \
$(wildcard include/config/mach/davinci/leonardo.h) \
$(wildcard include/config/mach/oiab.h) \
$(wildcard include/config/mach/smdk6400.h) \
$(wildcard include/config/mach/nokia/n800.h) \
$(wildcard include/config/mach/greenphone.h) \
$(wildcard include/config/mach/compexwp18.h) \
$(wildcard include/config/mach/xmate.h) \
$(wildcard include/config/mach/energizer.h) \
$(wildcard include/config/mach/ime1.h) \
$(wildcard include/config/mach/swedatms.h) \
$(wildcard include/config/mach/ntnp435c.h) \
$(wildcard include/config/mach/spectro2.h) \
$(wildcard include/config/mach/h6039.h) \
$(wildcard include/config/mach/ep80219.h) \
$(wildcard include/config/mach/samoa/ii.h) \
$(wildcard include/config/mach/cwmxl.h) \
$(wildcard include/config/mach/as9200.h) \
$(wildcard include/config/mach/sfx1149.h) \
$(wildcard include/config/mach/navi010.h) \
$(wildcard include/config/mach/multmdp.h) \
$(wildcard include/config/mach/scb9520.h) \
$(wildcard include/config/mach/htcathena.h) \
$(wildcard include/config/mach/xp179.h) \
$(wildcard include/config/mach/h4300.h) \
$(wildcard include/config/mach/goramo/mlr.h) \
$(wildcard include/config/mach/mxc30020evb.h) \
$(wildcard include/config/mach/adsbitsyg5.h) \
$(wildcard include/config/mach/adsportalplus.h) \
$(wildcard include/config/mach/mmsp2plus.h) \
$(wildcard include/config/mach/em/x270.h) \
$(wildcard include/config/mach/tpp302.h) \
$(wildcard include/config/mach/tpm104.h) \
$(wildcard include/config/mach/tpm102.h) \
$(wildcard include/config/mach/tpm109.h) \
$(wildcard include/config/mach/fbxo1.h) \
$(wildcard include/config/mach/hxd8.h) \
$(wildcard include/config/mach/neo1973/gta02.h) \
$(wildcard include/config/mach/emtest.h) \
$(wildcard include/config/mach/ad6900.h) \
$(wildcard include/config/mach/europa.h) \
$(wildcard include/config/mach/metroconnect.h) \
$(wildcard include/config/mach/ez/s2410.h) \
$(wildcard include/config/mach/ez/s2440.h) \
$(wildcard include/config/mach/ez/ep9312.h) \
$(wildcard include/config/mach/ez/ep9315.h) \
$(wildcard include/config/mach/ez/x7.h) \
$(wildcard include/config/mach/godotdb.h) \
$(wildcard include/config/mach/mistral.h) \
$(wildcard include/config/mach/msm.h) \
$(wildcard include/config/mach/ct5910.h) \
$(wildcard include/config/mach/ct5912.h) \
$(wildcard include/config/mach/hynet/ine.h) \
$(wildcard include/config/mach/hynet/app.h) \
$(wildcard include/config/mach/msm7200.h) \
$(wildcard include/config/mach/msm7600.h) \
$(wildcard include/config/mach/ceb255.h) \
$(wildcard include/config/mach/ciel.h) \
$(wildcard include/config/mach/slm5650.h) \
$(wildcard include/config/mach/at91sam9rlek.h) \
$(wildcard include/config/mach/comtech/router.h) \
$(wildcard include/config/mach/sbc2410x.h) \
$(wildcard include/config/mach/at4x0bd.h) \
$(wildcard include/config/mach/cbifr.h) \
$(wildcard include/config/mach/arcom/quantum.h) \
$(wildcard include/config/mach/matrix520.h) \
$(wildcard include/config/mach/matrix510.h) \
$(wildcard include/config/mach/matrix500.h) \
$(wildcard include/config/mach/m501.h) \
$(wildcard include/config/mach/aaeon1270.h) \
$(wildcard include/config/mach/matrix500ev.h) \
$(wildcard include/config/mach/pac500.h) \
$(wildcard include/config/mach/pnx8181.h) \
$(wildcard include/config/mach/colibri320.h) \
$(wildcard include/config/mach/aztoolbb.h) \
$(wildcard include/config/mach/aztoolg2.h) \
$(wildcard include/config/mach/dvlhost.h) \
$(wildcard include/config/mach/zir9200.h) \
$(wildcard include/config/mach/zir9260.h) \
$(wildcard include/config/mach/cocopah.h) \
$(wildcard include/config/mach/nds.h) \
$(wildcard include/config/mach/rosencrantz.h) \
$(wildcard include/config/mach/fttx/odsc.h) \
$(wildcard include/config/mach/classe/r6904.h) \
$(wildcard include/config/mach/cam60.h) \
$(wildcard include/config/mach/mxc30031ads.h) \
$(wildcard include/config/mach/datacall.h) \
$(wildcard include/config/mach/at91eb01.h) \
$(wildcard include/config/mach/rty.h) \
$(wildcard include/config/mach/dwl2100.h) \
$(wildcard include/config/mach/vinsi.h) \
$(wildcard include/config/mach/db88f5281.h) \
$(wildcard include/config/mach/csb726.h) \
$(wildcard include/config/mach/tik27.h) \
$(wildcard include/config/mach/mx/uc7420.h) \
$(wildcard include/config/mach/rirm3.h) \
$(wildcard include/config/mach/pelco/odyssey.h) \
$(wildcard include/config/mach/adx/abox.h) \
$(wildcard include/config/mach/adx/tpid.h) \
$(wildcard include/config/mach/minicheck.h) \
$(wildcard include/config/mach/idam.h) \
$(wildcard include/config/mach/mario/mx.h) \
$(wildcard include/config/mach/vi1888.h) \
$(wildcard include/config/mach/zr4230.h) \
$(wildcard include/config/mach/t1/ix/blue.h) \
$(wildcard include/config/mach/syhq2.h) \
$(wildcard include/config/mach/computime/r3.h) \
$(wildcard include/config/mach/oratis.h) \
$(wildcard include/config/mach/mikko.h) \
$(wildcard include/config/mach/holon.h) \
$(wildcard include/config/mach/olip8.h) \
$(wildcard include/config/mach/ghi270hg.h) \
$(wildcard include/config/mach/davinci/dm6467/evm.h) \
$(wildcard include/config/mach/davinci/dm355/evm.h) \
$(wildcard include/config/mach/blackriver.h) \
$(wildcard include/config/mach/sandgatewp.h) \
$(wildcard include/config/mach/cdotbwsg.h) \
$(wildcard include/config/mach/quark963.h) \
$(wildcard include/config/mach/csb735.h) \
$(wildcard include/config/mach/littleton.h) \
$(wildcard include/config/mach/mio/p550.h) \
$(wildcard include/config/mach/motion2440.h) \
$(wildcard include/config/mach/imm500.h) \
$(wildcard include/config/mach/homematic.h) \
$(wildcard include/config/mach/ermine.h) \
$(wildcard include/config/mach/kb9202b.h) \
$(wildcard include/config/mach/hs1xx.h) \
$(wildcard include/config/mach/studentmate2440.h) \
$(wildcard include/config/mach/arvoo/l1/z1.h) \
$(wildcard include/config/mach/dep2410k.h) \
$(wildcard include/config/mach/xxsvideo.h) \
$(wildcard include/config/mach/im4004.h) \
$(wildcard include/config/mach/ochaya1050.h) \
$(wildcard include/config/mach/lep9261.h) \
$(wildcard include/config/mach/svenmeb.h) \
$(wildcard include/config/mach/fortunet2ne.h) \
$(wildcard include/config/mach/nxhx.h) \
$(wildcard include/config/mach/realview/pb11mp.h) \
$(wildcard include/config/mach/ids500.h) \
$(wildcard include/config/mach/ors/n725.h) \
$(wildcard include/config/mach/hsdarm.h) \
$(wildcard include/config/mach/sha/pon003.h) \
$(wildcard include/config/mach/sha/pon004.h) \
$(wildcard include/config/mach/sha/pon007.h) \
$(wildcard include/config/mach/sha/pon011.h) \
$(wildcard include/config/mach/h6042.h) \
$(wildcard include/config/mach/h6043.h) \
$(wildcard include/config/mach/looxc550.h) \
$(wildcard include/config/mach/cnty/titan.h) \
$(wildcard include/config/mach/app3xx.h) \
$(wildcard include/config/mach/sideoatsgrama.h) \
$(wildcard include/config/mach/treo700p.h) \
$(wildcard include/config/mach/treo700w.h) \
$(wildcard include/config/mach/treo750.h) \
$(wildcard include/config/mach/treo755p.h) \
$(wildcard include/config/mach/ezreganut9200.h) \
$(wildcard include/config/mach/sarge.h) \
$(wildcard include/config/mach/a696.h) \
$(wildcard include/config/mach/turtle.h) \
$(wildcard include/config/mach/mx27/3ds.h) \
$(wildcard include/config/mach/bishop.h) \
$(wildcard include/config/mach/pxx.h) \
$(wildcard include/config/mach/redwood.h) \
$(wildcard include/config/mach/omap/2430dlp.h) \
$(wildcard include/config/mach/omap/2430osk.h) \
$(wildcard include/config/mach/sardine.h) \
$(wildcard include/config/mach/halibut.h) \
$(wildcard include/config/mach/trout.h) \
$(wildcard include/config/mach/goldfish.h) \
$(wildcard include/config/mach/gesbc2440.h) \
$(wildcard include/config/mach/nomad.h) \
$(wildcard include/config/mach/rosalind.h) \
$(wildcard include/config/mach/cc9p9215.h) \
$(wildcard include/config/mach/cc9p9210.h) \
$(wildcard include/config/mach/cc9p9215js.h) \
$(wildcard include/config/mach/cc9p9210js.h) \
$(wildcard include/config/mach/nasffe.h) \
$(wildcard include/config/mach/tn2x0bd.h) \
$(wildcard include/config/mach/gwmpxa.h) \
$(wildcard include/config/mach/exyplus.h) \
$(wildcard include/config/mach/jadoo21.h) \
$(wildcard include/config/mach/looxn560.h) \
$(wildcard include/config/mach/bonsai.h) \
$(wildcard include/config/mach/adsmilgato.h) \
$(wildcard include/config/mach/gba.h) \
$(wildcard include/config/mach/h6044.h) \
$(wildcard include/config/mach/app.h) \
$(wildcard include/config/mach/tct/hammer.h) \
$(wildcard include/config/mach/herald.h) \
$(wildcard include/config/mach/artemis.h) \
$(wildcard include/config/mach/htctitan.h) \
$(wildcard include/config/mach/qranium.h) \
$(wildcard include/config/mach/adx/wsc2.h) \
$(wildcard include/config/mach/adx/medcom.h) \
$(wildcard include/config/mach/bboard.h) \
$(wildcard include/config/mach/cambria.h) \
$(wildcard include/config/mach/mt7xxx.h) \
$(wildcard include/config/mach/matrix512.h) \
$(wildcard include/config/mach/matrix522.h) \
$(wildcard include/config/mach/ipac5010.h) \
$(wildcard include/config/mach/sakura.h) \
$(wildcard include/config/mach/grocx.h) \
$(wildcard include/config/mach/pm9263.h) \
$(wildcard include/config/mach/sim/one.h) \
$(wildcard include/config/mach/acq132.h) \
$(wildcard include/config/mach/datr.h) \
$(wildcard include/config/mach/actux1.h) \
$(wildcard include/config/mach/actux2.h) \
$(wildcard include/config/mach/actux3.h) \
$(wildcard include/config/mach/flexit.h) \
$(wildcard include/config/mach/bh2x0bd.h) \
$(wildcard include/config/mach/atb2002.h) \
$(wildcard include/config/mach/xenon.h) \
$(wildcard include/config/mach/fm607.h) \
$(wildcard include/config/mach/matrix514.h) \
$(wildcard include/config/mach/matrix524.h) \
$(wildcard include/config/mach/inpod.h) \
$(wildcard include/config/mach/jive.h) \
$(wildcard include/config/mach/tll/mx21.h) \
$(wildcard include/config/mach/sbc2800.h) \
$(wildcard include/config/mach/cc7ucamry.h) \
$(wildcard include/config/mach/ubisys/p9/sc15.h) \
$(wildcard include/config/mach/ubisys/p9/ssc2d10.h) \
$(wildcard include/config/mach/ubisys/p9/rcu3.h) \
$(wildcard include/config/mach/aml/m8000.h) \
$(wildcard include/config/mach/snapper/270.h) \
$(wildcard include/config/mach/omap/bbx.h) \
$(wildcard include/config/mach/ucn2410.h) \
$(wildcard include/config/mach/sam9/l9260.h) \
$(wildcard include/config/mach/eti/c2.h) \
$(wildcard include/config/mach/avalanche.h) \
$(wildcard include/config/mach/realview/pb1176.h) \
$(wildcard include/config/mach/dp1500.h) \
$(wildcard include/config/mach/apple/iphone.h) \
$(wildcard include/config/mach/yl9200.h) \
$(wildcard include/config/mach/rd88f5182.h) \
$(wildcard include/config/mach/kurobox/pro.h) \
$(wildcard include/config/mach/se/poet.h) \
$(wildcard include/config/mach/mx31/3ds.h) \
$(wildcard include/config/mach/r270.h) \
$(wildcard include/config/mach/armour21.h) \
$(wildcard include/config/mach/dt2.h) \
$(wildcard include/config/mach/vt4.h) \
$(wildcard include/config/mach/tyco320.h) \
$(wildcard include/config/mach/adma.h) \
$(wildcard include/config/mach/wp188.h) \
$(wildcard include/config/mach/corsica.h) \
$(wildcard include/config/mach/bigeye.h) \
$(wildcard include/config/mach/tll5000.h) \
$(wildcard include/config/mach/bebot.h) \
$(wildcard include/config/mach/qong.h) \
$(wildcard include/config/mach/tcompact.h) \
$(wildcard include/config/mach/puma5.h) \
$(wildcard include/config/mach/elara.h) \
$(wildcard include/config/mach/ellington.h) \
$(wildcard include/config/mach/xda/atom.h) \
$(wildcard include/config/mach/energizer2.h) \
$(wildcard include/config/mach/odin.h) \
$(wildcard include/config/mach/actux4.h) \
$(wildcard include/config/mach/esl/omap.h) \
$(wildcard include/config/mach/omap2evm.h) \
$(wildcard include/config/mach/omap3evm.h) \
$(wildcard include/config/mach/adx/pcu57.h) \
$(wildcard include/config/mach/monaco.h) \
$(wildcard include/config/mach/levante.h) \
$(wildcard include/config/mach/tmxipx425.h) \
$(wildcard include/config/mach/leep.h) \
$(wildcard include/config/mach/raad.h) \
$(wildcard include/config/mach/dns323.h) \
$(wildcard include/config/mach/ap1000.h) \
$(wildcard include/config/mach/a9sam6432.h) \
$(wildcard include/config/mach/shiny.h) \
$(wildcard include/config/mach/omap3/beagle.h) \
$(wildcard include/config/mach/csr/bdb2.h) \
$(wildcard include/config/mach/nokia/n810.h) \
$(wildcard include/config/mach/c270.h) \
$(wildcard include/config/mach/sentry.h) \
$(wildcard include/config/mach/pcm038.h) \
$(wildcard include/config/mach/anc300.h) \
$(wildcard include/config/mach/htckaiser.h) \
$(wildcard include/config/mach/sbat100.h) \
$(wildcard include/config/mach/modunorm.h) \
$(wildcard include/config/mach/pelos/twarm.h) \
$(wildcard include/config/mach/flank.h) \
$(wildcard include/config/mach/sirloin.h) \
$(wildcard include/config/mach/brisket.h) \
$(wildcard include/config/mach/chuck.h) \
$(wildcard include/config/mach/otter.h) \
$(wildcard include/config/mach/davinci/ldk.h) \
$(wildcard include/config/mach/phreedom.h) \
$(wildcard include/config/mach/sg310.h) \
$(wildcard include/config/mach/ts209.h) \
$(wildcard include/config/mach/at91cap9adk.h) \
$(wildcard include/config/mach/tion9315.h) \
$(wildcard include/config/mach/mast.h) \
$(wildcard include/config/mach/pfw.h) \
$(wildcard include/config/mach/yl/p2440.h) \
$(wildcard include/config/mach/zsbc32.h) \
$(wildcard include/config/mach/omap/pace2.h) \
$(wildcard include/config/mach/imx/pace2.h) \
$(wildcard include/config/mach/mx31moboard.h) \
$(wildcard include/config/mach/mx37/3ds.h) \
$(wildcard include/config/mach/rcc.h) \
$(wildcard include/config/mach/arm9.h) \
$(wildcard include/config/mach/vision/ep9307.h) \
$(wildcard include/config/mach/scly1000.h) \
$(wildcard include/config/mach/fontel/ep.h) \
$(wildcard include/config/mach/voiceblue3g.h) \
$(wildcard include/config/mach/tt9200.h) \
$(wildcard include/config/mach/digi2410.h) \
$(wildcard include/config/mach/terastation/pro2.h) \
$(wildcard include/config/mach/linkstation/pro.h) \
$(wildcard include/config/mach/motorola/a780.h) \
$(wildcard include/config/mach/motorola/e6.h) \
$(wildcard include/config/mach/motorola/e2.h) \
$(wildcard include/config/mach/motorola/e680.h) \
$(wildcard include/config/mach/ur2410.h) \
$(wildcard include/config/mach/tas9261.h) \
$(wildcard include/config/mach/hermes/hd.h) \
$(wildcard include/config/mach/perseo/hd.h) \
$(wildcard include/config/mach/stargazer2.h) \
$(wildcard include/config/mach/e350.h) \
$(wildcard include/config/mach/wpcm450.h) \
$(wildcard include/config/mach/cartesio.h) \
$(wildcard include/config/mach/toybox.h) \
$(wildcard include/config/mach/tx27.h) \
$(wildcard include/config/mach/ts409.h) \
$(wildcard include/config/mach/p300.h) \
$(wildcard include/config/mach/xdacomet.h) \
$(wildcard include/config/mach/dexflex2.h) \
$(wildcard include/config/mach/ow.h) \
$(wildcard include/config/mach/armebs3.h) \
$(wildcard include/config/mach/u3.h) \
$(wildcard include/config/mach/smdk2450.h) \
$(wildcard include/config/mach/rsi/ews.h) \
$(wildcard include/config/mach/tnb.h) \
$(wildcard include/config/mach/toepath.h) \
$(wildcard include/config/mach/kb9263.h) \
$(wildcard include/config/mach/mt7108.h) \
$(wildcard include/config/mach/smtr2440.h) \
$(wildcard include/config/mach/manao.h) \
$(wildcard include/config/mach/cm/x300.h) \
$(wildcard include/config/mach/gulfstream/kp.h) \
$(wildcard include/config/mach/lanreadyfn522.h) \
$(wildcard include/config/mach/arma37.h) \
$(wildcard include/config/mach/mendel.h) \
$(wildcard include/config/mach/pelco/iliad.h) \
$(wildcard include/config/mach/unit2p.h) \
$(wildcard include/config/mach/inc20otter.h) \
$(wildcard include/config/mach/at91sam9g20ek.h) \
$(wildcard include/config/mach/storcenter.h) \
$(wildcard include/config/mach/smdk6410.h) \
$(wildcard include/config/mach/u300.h) \
$(wildcard include/config/mach/u500.h) \
$(wildcard include/config/mach/ds9260.h) \
$(wildcard include/config/mach/riverrock.h) \
$(wildcard include/config/mach/scibath.h) \
$(wildcard include/config/mach/at91sam7se512ek.h) \
$(wildcard include/config/mach/wrt350n/v2.h) \
$(wildcard include/config/mach/multimedia.h) \
$(wildcard include/config/mach/marvin.h) \
$(wildcard include/config/mach/x500.h) \
$(wildcard include/config/mach/awlug4lcu.h) \
$(wildcard include/config/mach/palermoc.h) \
$(wildcard include/config/mach/omap/ldp.h) \
$(wildcard include/config/mach/ip500.h) \
$(wildcard include/config/mach/ase2.h) \
$(wildcard include/config/mach/mx35evb.h) \
$(wildcard include/config/mach/aml/m8050.h) \
$(wildcard include/config/mach/mx35/3ds.h) \
$(wildcard include/config/mach/mars.h) \
$(wildcard include/config/mach/neuros/osd2.h) \
$(wildcard include/config/mach/badger.h) \
$(wildcard include/config/mach/trizeps4wl.h) \
$(wildcard include/config/mach/trizeps5.h) \
$(wildcard include/config/mach/marlin.h) \
$(wildcard include/config/mach/ts78xx.h) \
$(wildcard include/config/mach/hpipaq214.h) \
$(wildcard include/config/mach/at572d940dcm.h) \
$(wildcard include/config/mach/ne1board.h) \
$(wildcard include/config/mach/zante.h) \
$(wildcard include/config/mach/sffsdr.h) \
$(wildcard include/config/mach/tw2662.h) \
$(wildcard include/config/mach/vf10xx.h) \
$(wildcard include/config/mach/zoran43xx.h) \
$(wildcard include/config/mach/sonix926.h) \
$(wildcard include/config/mach/celestialsemi.h) \
$(wildcard include/config/mach/cc9m2443js.h) \
$(wildcard include/config/mach/tw5334.h) \
$(wildcard include/config/mach/htcartemis.h) \
$(wildcard include/config/mach/nal/hlite.h) \
$(wildcard include/config/mach/htcvogue.h) \
$(wildcard include/config/mach/smartweb.h) \
$(wildcard include/config/mach/mv86xx.h) \
$(wildcard include/config/mach/mv87xx.h) \
$(wildcard include/config/mach/songyoungho.h) \
$(wildcard include/config/mach/younghotema.h) \
$(wildcard include/config/mach/pcm037.h) \
$(wildcard include/config/mach/mmvp.h) \
$(wildcard include/config/mach/mmap.h) \
$(wildcard include/config/mach/ptid2410.h) \
$(wildcard include/config/mach/james/926.h) \
$(wildcard include/config/mach/fm6000.h) \
$(wildcard include/config/mach/db88f6281/bp.h) \
$(wildcard include/config/mach/rd88f6192/nas.h) \
$(wildcard include/config/mach/rd88f6281.h) \
$(wildcard include/config/mach/db78x00/bp.h) \
$(wildcard include/config/mach/smdk2416.h) \
$(wildcard include/config/mach/oce/spider/si.h) \
$(wildcard include/config/mach/oce/spider/sk.h) \
$(wildcard include/config/mach/rovern6.h) \
$(wildcard include/config/mach/pelco/evolution.h) \
$(wildcard include/config/mach/wbd111.h) \
$(wildcard include/config/mach/elaracpe.h) \
$(wildcard include/config/mach/mabv3.h) \
$(wildcard include/config/mach/mv2120.h) \
$(wildcard include/config/mach/csb737.h) \
$(wildcard include/config/mach/mx51/3ds.h) \
$(wildcard include/config/mach/g900.h) \
$(wildcard include/config/mach/apf27.h) \
$(wildcard include/config/mach/ggus2000.h) \
$(wildcard include/config/mach/omap/2430/mimic.h) \
$(wildcard include/config/mach/imx27lite.h) \
$(wildcard include/config/mach/almex.h) \
$(wildcard include/config/mach/control.h) \
$(wildcard include/config/mach/mba2410.h) \
$(wildcard include/config/mach/volcano.h) \
$(wildcard include/config/mach/zenith.h) \
$(wildcard include/config/mach/muchip.h) \
$(wildcard include/config/mach/magellan.h) \
$(wildcard include/config/mach/usb/a9260.h) \
$(wildcard include/config/mach/usb/a9263.h) \
$(wildcard include/config/mach/qil/a9260.h) \
$(wildcard include/config/mach/cme9210.h) \
$(wildcard include/config/mach/hczh4.h) \
$(wildcard include/config/mach/spearbasic.h) \
$(wildcard include/config/mach/dep2440.h) \
$(wildcard include/config/mach/hdl/gxr.h) \
$(wildcard include/config/mach/hdl/gt.h) \
$(wildcard include/config/mach/hdl/4g.h) \
$(wildcard include/config/mach/s3c6000.h) \
$(wildcard include/config/mach/mmsp2/mdk.h) \
$(wildcard include/config/mach/mpx220.h) \
$(wildcard include/config/mach/kzm/arm11/01.h) \
$(wildcard include/config/mach/htc/polaris.h) \
$(wildcard include/config/mach/htc/kaiser.h) \
$(wildcard include/config/mach/lg/ks20.h) \
$(wildcard include/config/mach/hhgps.h) \
$(wildcard include/config/mach/nokia/n810/wimax.h) \
$(wildcard include/config/mach/insight.h) \
$(wildcard include/config/mach/sapphire.h) \
$(wildcard include/config/mach/csb637xo.h) \
$(wildcard include/config/mach/evisiong.h) \
$(wildcard include/config/mach/stmp37xx.h) \
$(wildcard include/config/mach/stmp378x.h) \
$(wildcard include/config/mach/tnt.h) \
$(wildcard include/config/mach/tbxt.h) \
$(wildcard include/config/mach/playmate.h) \
$(wildcard include/config/mach/pns10.h) \
$(wildcard include/config/mach/eznavi.h) \
$(wildcard include/config/mach/ps4000.h) \
$(wildcard include/config/mach/ezx/a780.h) \
$(wildcard include/config/mach/ezx/e680.h) \
$(wildcard include/config/mach/ezx/a1200.h) \
$(wildcard include/config/mach/ezx/e6.h) \
$(wildcard include/config/mach/ezx/e2.h) \
$(wildcard include/config/mach/ezx/a910.h) \
$(wildcard include/config/mach/cwmx31.h) \
$(wildcard include/config/mach/sl2312.h) \
$(wildcard include/config/mach/blenny.h) \
$(wildcard include/config/mach/ds107.h) \
$(wildcard include/config/mach/dsx07.h) \
$(wildcard include/config/mach/picocom1.h) \
$(wildcard include/config/mach/lynx/wolverine.h) \
$(wildcard include/config/mach/ubisys/p9/sc19.h) \
$(wildcard include/config/mach/kratos/low.h) \
$(wildcard include/config/mach/m700.h) \
$(wildcard include/config/mach/edmini/v2.h) \
$(wildcard include/config/mach/zipit2.h) \
$(wildcard include/config/mach/hslfemtocell.h) \
$(wildcard include/config/mach/daintree/at91.h) \
$(wildcard include/config/mach/sg560usb.h) \
$(wildcard include/config/mach/omap3/pandora.h) \
$(wildcard include/config/mach/usr8200.h) \
$(wildcard include/config/mach/s1s65k.h) \
$(wildcard include/config/mach/s2s65a.h) \
$(wildcard include/config/mach/icore.h) \
$(wildcard include/config/mach/mss2.h) \
$(wildcard include/config/mach/belmont.h) \
$(wildcard include/config/mach/asusp525.h) \
$(wildcard include/config/mach/lb88rc8480.h) \
$(wildcard include/config/mach/hipxa.h) \
$(wildcard include/config/mach/mx25/3ds.h) \
$(wildcard include/config/mach/m800.h) \
$(wildcard include/config/mach/omap3530/lv/som.h) \
$(wildcard include/config/mach/prima/evb.h) \
$(wildcard include/config/mach/mx31bt1.h) \
$(wildcard include/config/mach/atlas4/evb.h) \
$(wildcard include/config/mach/mx31cicada.h) \
$(wildcard include/config/mach/mi424wr.h) \
$(wildcard include/config/mach/axs/ultrax.h) \
$(wildcard include/config/mach/at572d940deb.h) \
$(wildcard include/config/mach/davinci/da830/evm.h) \
$(wildcard include/config/mach/ep9302.h) \
$(wildcard include/config/mach/at572d940hfeb.h) \
$(wildcard include/config/mach/cybook3.h) \
$(wildcard include/config/mach/wdg002.h) \
$(wildcard include/config/mach/sg560adsl.h) \
$(wildcard include/config/mach/nextio/n2800/ica.h) \
$(wildcard include/config/mach/dove/db.h) \
$(wildcard include/config/mach/marvell/newdb.h) \
$(wildcard include/config/mach/vandihud.h) \
$(wildcard include/config/mach/magx/e8.h) \
$(wildcard include/config/mach/magx/z6.h) \
$(wildcard include/config/mach/magx/v8.h) \
$(wildcard include/config/mach/magx/u9.h) \
$(wildcard include/config/mach/toughcf08.h) \
$(wildcard include/config/mach/zw4400.h) \
$(wildcard include/config/mach/marat91.h) \
$(wildcard include/config/mach/overo.h) \
$(wildcard include/config/mach/at2440evb.h) \
$(wildcard include/config/mach/neocore926.h) \
$(wildcard include/config/mach/wnr854t.h) \
$(wildcard include/config/mach/imx27.h) \
$(wildcard include/config/mach/moose/db.h) \
$(wildcard include/config/mach/fab4.h) \
$(wildcard include/config/mach/htcdiamond.h) \
$(wildcard include/config/mach/fiona.h) \
$(wildcard include/config/mach/mxc30030/x.h) \
$(wildcard include/config/mach/bmp1000.h) \
$(wildcard include/config/mach/logi9200.h) \
$(wildcard include/config/mach/tqma31.h) \
$(wildcard include/config/mach/ccw9p9215js.h) \
$(wildcard include/config/mach/rd88f5181l/ge.h) \
$(wildcard include/config/mach/sifmain.h) \
$(wildcard include/config/mach/sam9/l9261.h) \
$(wildcard include/config/mach/cc9m2443.h) \
$(wildcard include/config/mach/xaria300.h) \
$(wildcard include/config/mach/it9200.h) \
$(wildcard include/config/mach/rd88f5181l/fxo.h) \
$(wildcard include/config/mach/kriss/sensor.h) \
$(wildcard include/config/mach/pilz/pmi5.h) \
$(wildcard include/config/mach/jade.h) \
$(wildcard include/config/mach/ks8695/softplc.h) \
$(wildcard include/config/mach/gprisc3.h) \
$(wildcard include/config/mach/stamp9g20.h) \
$(wildcard include/config/mach/smdk6430.h) \
$(wildcard include/config/mach/smdkc100.h) \
$(wildcard include/config/mach/tavorevb.h) \
$(wildcard include/config/mach/saar.h) \
$(wildcard include/config/mach/deister/eyecam.h) \
$(wildcard include/config/mach/at91sam9m10g45ek.h) \
$(wildcard include/config/mach/linkstation/produo.h) \
$(wildcard include/config/mach/hit/b0.h) \
$(wildcard include/config/mach/adx/rmu.h) \
$(wildcard include/config/mach/xg/cpe/main.h) \
$(wildcard include/config/mach/edb9407a.h) \
$(wildcard include/config/mach/dtb9608.h) \
$(wildcard include/config/mach/em104v1.h) \
$(wildcard include/config/mach/demo.h) \
$(wildcard include/config/mach/logi9260.h) \
$(wildcard include/config/mach/mx31/exm32.h) \
$(wildcard include/config/mach/usb/a9g20.h) \
$(wildcard include/config/mach/picproje2008.h) \
$(wildcard include/config/mach/cs/e9315.h) \
$(wildcard include/config/mach/qil/a9g20.h) \
$(wildcard include/config/mach/sha/pon020.h) \
$(wildcard include/config/mach/nad.h) \
$(wildcard include/config/mach/sbc35/a9260.h) \
$(wildcard include/config/mach/sbc35/a9g20.h) \
$(wildcard include/config/mach/davinci/beginning.h) \
$(wildcard include/config/mach/uwc.h) \
$(wildcard include/config/mach/mxlads.h) \
$(wildcard include/config/mach/htcnike.h) \
$(wildcard include/config/mach/deister/pxa270.h) \
$(wildcard include/config/mach/cme9210js.h) \
$(wildcard include/config/mach/cc9p9360.h) \
$(wildcard include/config/mach/mocha.h) \
$(wildcard include/config/mach/wapd170ag.h) \
$(wildcard include/config/mach/linkstation/mini.h) \
$(wildcard include/config/mach/afeb9260.h) \
$(wildcard include/config/mach/w90x900.h) \
$(wildcard include/config/mach/w90x700.h) \
$(wildcard include/config/mach/kt300ip.h) \
$(wildcard include/config/mach/kt300ip/g20.h) \
$(wildcard include/config/mach/srcm.h) \
$(wildcard include/config/mach/wlnx/9260.h) \
$(wildcard include/config/mach/openmoko/gta03.h) \
$(wildcard include/config/mach/osprey2.h) \
$(wildcard include/config/mach/kbio9260.h) \
$(wildcard include/config/mach/ginza.h) \
$(wildcard include/config/mach/a636n.h) \
$(wildcard include/config/mach/imx27ipcam.h) \
$(wildcard include/config/mach/nemoc.h) \
$(wildcard include/config/mach/geneva.h) \
$(wildcard include/config/mach/htcpharos.h) \
$(wildcard include/config/mach/neonc.h) \
$(wildcard include/config/mach/nas7100.h) \
$(wildcard include/config/mach/teuphone.h) \
$(wildcard include/config/mach/annax/eth2.h) \
$(wildcard include/config/mach/csb733.h) \
$(wildcard include/config/mach/bk3.h) \
$(wildcard include/config/mach/omap/em32.h) \
$(wildcard include/config/mach/et9261cp.h) \
$(wildcard include/config/mach/jasperc.h) \
$(wildcard include/config/mach/issi/arm9.h) \
$(wildcard include/config/mach/ued.h) \
$(wildcard include/config/mach/esiblade.h) \
$(wildcard include/config/mach/eye02.h) \
$(wildcard include/config/mach/imx27kbd.h) \
$(wildcard include/config/mach/sst61vc010/fpga.h) \
$(wildcard include/config/mach/kixvp435.h) \
$(wildcard include/config/mach/kixnp435.h) \
$(wildcard include/config/mach/africa.h) \
$(wildcard include/config/mach/nh233.h) \
$(wildcard include/config/mach/rd88f6183ap/ge.h) \
$(wildcard include/config/mach/bcm4760.h) \
$(wildcard include/config/mach/eddy/v2.h) \
$(wildcard include/config/mach/realview/pba8.h) \
$(wildcard include/config/mach/hid/a7.h) \
$(wildcard include/config/mach/hero.h) \
$(wildcard include/config/mach/omap/poseidon.h) \
$(wildcard include/config/mach/realview/pbx.h) \
$(wildcard include/config/mach/micro9s.h) \
$(wildcard include/config/mach/mako.h) \
$(wildcard include/config/mach/xdaflame.h) \
$(wildcard include/config/mach/phidget/sbc2.h) \
$(wildcard include/config/mach/limestone.h) \
$(wildcard include/config/mach/iprobe/c32.h) \
$(wildcard include/config/mach/rut100.h) \
$(wildcard include/config/mach/asusp535.h) \
$(wildcard include/config/mach/htcraphael.h) \
$(wildcard include/config/mach/sygdg1.h) \
$(wildcard include/config/mach/sygdg2.h) \
$(wildcard include/config/mach/seoul.h) \
$(wildcard include/config/mach/salerno.h) \
$(wildcard include/config/mach/ucn/s3c64xx.h) \
$(wildcard include/config/mach/msm7201a.h) \
$(wildcard include/config/mach/lpr1.h) \
$(wildcard include/config/mach/armadillo500fx.h) \
$(wildcard include/config/mach/g3evm.h) \
$(wildcard include/config/mach/z3/dm355.h) \
$(wildcard include/config/mach/w90p910evb.h) \
$(wildcard include/config/mach/w90p920evb.h) \
$(wildcard include/config/mach/w90p950evb.h) \
$(wildcard include/config/mach/w90n960evb.h) \
$(wildcard include/config/mach/camhd.h) \
$(wildcard include/config/mach/mvc100.h) \
$(wildcard include/config/mach/electrum/200.h) \
$(wildcard include/config/mach/htcjade.h) \
$(wildcard include/config/mach/memphis.h) \
$(wildcard include/config/mach/imx27sbc.h) \
$(wildcard include/config/mach/lextar.h) \
$(wildcard include/config/mach/mv88f6281gtw/ge.h) \
$(wildcard include/config/mach/ncp.h) \
$(wildcard include/config/mach/z32an.h) \
$(wildcard include/config/mach/tmq/capd.h) \
$(wildcard include/config/mach/omap3/wl.h) \
$(wildcard include/config/mach/chumby.h) \
$(wildcard include/config/mach/atsarm9.h) \
$(wildcard include/config/mach/davinci/dm365/evm.h) \
$(wildcard include/config/mach/bahamas.h) \
$(wildcard include/config/mach/das.h) \
$(wildcard include/config/mach/minidas.h) \
$(wildcard include/config/mach/vk1000.h) \
$(wildcard include/config/mach/centro.h) \
$(wildcard include/config/mach/ctera/2bay.h) \
$(wildcard include/config/mach/edgeconnect.h) \
$(wildcard include/config/mach/nd27000.h) \
$(wildcard include/config/mach/gemalto/cobra.h) \
$(wildcard include/config/mach/ingelabs/comet.h) \
$(wildcard include/config/mach/pollux/wiz.h) \
$(wildcard include/config/mach/blackstone.h) \
$(wildcard include/config/mach/topaz.h) \
$(wildcard include/config/mach/aixle.h) \
$(wildcard include/config/mach/mw998.h) \
$(wildcard include/config/mach/nokia/rx51.h) \
$(wildcard include/config/mach/vsc5605ev.h) \
$(wildcard include/config/mach/nt98700dk.h) \
$(wildcard include/config/mach/icontact.h) \
$(wildcard include/config/mach/swarco/frcpu.h) \
$(wildcard include/config/mach/swarco/scpu.h) \
$(wildcard include/config/mach/bbox/p16.h) \
$(wildcard include/config/mach/bstd.h) \
$(wildcard include/config/mach/sbc2440ii.h) \
$(wildcard include/config/mach/pcm034.h) \
$(wildcard include/config/mach/neso.h) \
$(wildcard include/config/mach/wlnx/9g20.h) \
$(wildcard include/config/mach/omap/zoom2.h) \
$(wildcard include/config/mach/totemnova.h) \
$(wildcard include/config/mach/c5000.h) \
$(wildcard include/config/mach/unipo/at91sam9263.h) \
$(wildcard include/config/mach/ethernut5.h) \
$(wildcard include/config/mach/arm11.h) \
$(wildcard include/config/mach/cpuat9260.h) \
$(wildcard include/config/mach/cpupxa255.h) \
$(wildcard include/config/mach/cpuimx27.h) \
$(wildcard include/config/mach/cheflux.h) \
$(wildcard include/config/mach/eb/cpux9k2.h) \
$(wildcard include/config/mach/opcotec.h) \
$(wildcard include/config/mach/yt.h) \
$(wildcard include/config/mach/motoq.h) \
$(wildcard include/config/mach/bsb1.h) \
$(wildcard include/config/mach/acs5k.h) \
$(wildcard include/config/mach/milan.h) \
$(wildcard include/config/mach/quartzv2.h) \
$(wildcard include/config/mach/rsvp.h) \
$(wildcard include/config/mach/rmp200.h) \
$(wildcard include/config/mach/snapper/9260.h) \
$(wildcard include/config/mach/dsm320.h) \
$(wildcard include/config/mach/adsgcm.h) \
$(wildcard include/config/mach/ase2/400.h) \
$(wildcard include/config/mach/pizza.h) \
$(wildcard include/config/mach/spot/ngpl.h) \
$(wildcard include/config/mach/armata.h) \
$(wildcard include/config/mach/exeda.h) \
$(wildcard include/config/mach/mx31sf005.h) \
$(wildcard include/config/mach/f5d8231/4/v2.h) \
$(wildcard include/config/mach/q2440.h) \
$(wildcard include/config/mach/qq2440.h) \
$(wildcard include/config/mach/mini2440.h) \
$(wildcard include/config/mach/colibri300.h) \
$(wildcard include/config/mach/jades.h) \
$(wildcard include/config/mach/spark.h) \
$(wildcard include/config/mach/benzina.h) \
$(wildcard include/config/mach/blaze.h) \
$(wildcard include/config/mach/linkstation/ls/hgl.h) \
$(wildcard include/config/mach/htcvenus.h) \
$(wildcard include/config/mach/sony/prs505.h) \
$(wildcard include/config/mach/hanlin/v3.h) \
$(wildcard include/config/mach/sapphira.h) \
$(wildcard include/config/mach/dack/sda/01.h) \
$(wildcard include/config/mach/armbox.h) \
$(wildcard include/config/mach/harris/rvp.h) \
$(wildcard include/config/mach/ribaldo.h) \
$(wildcard include/config/mach/agora.h) \
$(wildcard include/config/mach/omap3/mini.h) \
$(wildcard include/config/mach/a9sam6432/b.h) \
$(wildcard include/config/mach/usg2410.h) \
$(wildcard include/config/mach/pc72052/i10/revb.h) \
$(wildcard include/config/mach/mx35/exm32.h) \
$(wildcard include/config/mach/topas910.h) \
$(wildcard include/config/mach/hyena.h) \
$(wildcard include/config/mach/pospax.h) \
$(wildcard include/config/mach/hdl/gx.h) \
$(wildcard include/config/mach/ctera/4bay.h) \
$(wildcard include/config/mach/ctera/plug/c.h) \
$(wildcard include/config/mach/crwea/plug/i.h) \
$(wildcard include/config/mach/egauge2.h) \
$(wildcard include/config/mach/didj.h) \
$(wildcard include/config/mach/meister.h) \
$(wildcard include/config/mach/htcblackstone.h) \
$(wildcard include/config/mach/cpuat9g20.h) \
$(wildcard include/config/mach/smdk6440.h) \
$(wildcard include/config/mach/omap/35xx/mvp.h) \
$(wildcard include/config/mach/ctera/plug/i.h) \
$(wildcard include/config/mach/pvg610.h) \
$(wildcard include/config/mach/hprw6815.h) \
$(wildcard include/config/mach/omap3/oswald.h) \
$(wildcard include/config/mach/nas4220b.h) \
$(wildcard include/config/mach/htcraphael/cdma.h) \
$(wildcard include/config/mach/htcdiamond/cdma.h) \
$(wildcard include/config/mach/scaler.h) \
$(wildcard include/config/mach/zylonite2.h) \
$(wildcard include/config/mach/aspenite.h) \
$(wildcard include/config/mach/teton.h) \
$(wildcard include/config/mach/ttc/dkb.h) \
$(wildcard include/config/mach/bishop2.h) \
$(wildcard include/config/mach/ippv5.h) \
$(wildcard include/config/mach/farm926.h) \
$(wildcard include/config/mach/mmccpu.h) \
$(wildcard include/config/mach/sgmsfl.h) \
$(wildcard include/config/mach/tt8000.h) \
$(wildcard include/config/mach/zrn4300lp.h) \
$(wildcard include/config/mach/mptc.h) \
$(wildcard include/config/mach/h6051.h) \
$(wildcard include/config/mach/pvg610/101.h) \
$(wildcard include/config/mach/stamp9261/pc/evb.h) \
$(wildcard include/config/mach/pelco/odysseus.h) \
$(wildcard include/config/mach/tny/a9260.h) \
$(wildcard include/config/mach/tny/a9g20.h) \
$(wildcard include/config/mach/aesop/mp2530f.h) \
$(wildcard include/config/mach/dx900.h) \
$(wildcard include/config/mach/cpodc2.h) \
$(wildcard include/config/mach/tilt/8925.h) \
$(wildcard include/config/mach/davinci/dm357/evm.h) \
$(wildcard include/config/mach/swordfish.h) \
$(wildcard include/config/mach/corvus.h) \
$(wildcard include/config/mach/taurus.h) \
$(wildcard include/config/mach/axm.h) \
$(wildcard include/config/mach/axc.h) \
$(wildcard include/config/mach/baby.h) \
$(wildcard include/config/mach/mp200.h) \
$(wildcard include/config/mach/pcm043.h) \
$(wildcard include/config/mach/hanlin/v3c.h) \
$(wildcard include/config/mach/kbk9g20.h) \
$(wildcard include/config/mach/adsturbog5.h) \
$(wildcard include/config/mach/avenger/lite1.h) \
$(wildcard include/config/mach/suc.h) \
$(wildcard include/config/mach/at91sam7s256.h) \
$(wildcard include/config/mach/mendoza.h) \
$(wildcard include/config/mach/kira.h) \
$(wildcard include/config/mach/mx1hbm.h) \
$(wildcard include/config/mach/quatro43xx.h) \
$(wildcard include/config/mach/quatro4230.h) \
$(wildcard include/config/mach/nsb400.h) \
$(wildcard include/config/mach/drp255.h) \
$(wildcard include/config/mach/thoth.h) \
$(wildcard include/config/mach/firestone.h) \
$(wildcard include/config/mach/asusp750.h) \
$(wildcard include/config/mach/ctera/dl.h) \
$(wildcard include/config/mach/socr.h) \
$(wildcard include/config/mach/htcoxygen.h) \
$(wildcard include/config/mach/heroc.h) \
$(wildcard include/config/mach/zeno6800.h) \
$(wildcard include/config/mach/sc2mcs.h) \
$(wildcard include/config/mach/gene100.h) \
$(wildcard include/config/mach/as353x.h) \
$(wildcard include/config/mach/sheevaplug.h) \
$(wildcard include/config/mach/at91sam9g20.h) \
$(wildcard include/config/mach/mv88f6192gtw/fe.h) \
$(wildcard include/config/mach/cc9200.h) \
$(wildcard include/config/mach/sm9200.h) \
$(wildcard include/config/mach/tp9200.h) \
$(wildcard include/config/mach/snapperdv.h) \
$(wildcard include/config/mach/avengers/lite.h) \
$(wildcard include/config/mach/avengers/lite1.h) \
$(wildcard include/config/mach/omap3axon.h) \
$(wildcard include/config/mach/ma8xx.h) \
$(wildcard include/config/mach/mp201ek.h) \
$(wildcard include/config/mach/davinci/tux.h) \
$(wildcard include/config/mach/mpa1600.h) \
$(wildcard include/config/mach/pelco/troy.h) \
$(wildcard include/config/mach/nsb667.h) \
$(wildcard include/config/mach/rovers5/4mpix.h) \
$(wildcard include/config/mach/twocom.h) \
$(wildcard include/config/mach/ubisys/p9/rcu3r2.h) \
$(wildcard include/config/mach/hero/espresso.h) \
$(wildcard include/config/mach/afeusb.h) \
$(wildcard include/config/mach/t830.h) \
$(wildcard include/config/mach/spd8020/cc.h) \
$(wildcard include/config/mach/om/3d7k.h) \
$(wildcard include/config/mach/picocom2.h) \
$(wildcard include/config/mach/uwg4mx27.h) \
$(wildcard include/config/mach/uwg4mx31.h) \
$(wildcard include/config/mach/cherry.h) \
$(wildcard include/config/mach/mx51/babbage.h) \
$(wildcard include/config/mach/s3c2440turkiye.h) \
$(wildcard include/config/mach/tx37.h) \
$(wildcard include/config/mach/sbc2800/9g20.h) \
$(wildcard include/config/mach/benzglb.h) \
$(wildcard include/config/mach/benztd.h) \
$(wildcard include/config/mach/cartesio/plus.h) \
$(wildcard include/config/mach/solrad/g20.h) \
$(wildcard include/config/mach/mx27wallace.h) \
$(wildcard include/config/mach/fmzwebmodul.h) \
$(wildcard include/config/mach/rd78x00/masa.h) \
$(wildcard include/config/mach/smallogger.h) \
$(wildcard include/config/mach/ccw9p9215.h) \
$(wildcard include/config/mach/dm355/leopard.h) \
$(wildcard include/config/mach/ts219.h) \
$(wildcard include/config/mach/tny/a9263.h) \
$(wildcard include/config/mach/apollo.h) \
$(wildcard include/config/mach/at91cap9stk.h) \
$(wildcard include/config/mach/spc300.h) \
$(wildcard include/config/mach/eko.h) \
$(wildcard include/config/mach/ccw9m2443.h) \
$(wildcard include/config/mach/ccw9m2443js.h) \
$(wildcard include/config/mach/m2m/router/device.h) \
$(wildcard include/config/mach/star9104nas.h) \
$(wildcard include/config/mach/pca100.h) \
$(wildcard include/config/mach/z3/dm365/mod/01.h) \
$(wildcard include/config/mach/hipox.h) \
$(wildcard include/config/mach/omap3/piteds.h) \
$(wildcard include/config/mach/bm150r.h) \
$(wildcard include/config/mach/tbone.h) \
$(wildcard include/config/mach/merlin.h) \
$(wildcard include/config/mach/falcon.h) \
$(wildcard include/config/mach/davinci/da850/evm.h) \
$(wildcard include/config/mach/s5p6440.h) \
$(wildcard include/config/mach/at91sam9g10ek.h) \
$(wildcard include/config/mach/omap/4430sdp.h) \
$(wildcard include/config/mach/lpc313x.h) \
$(wildcard include/config/mach/magx/zn5.h) \
$(wildcard include/config/mach/magx/em30.h) \
$(wildcard include/config/mach/magx/ve66.h) \
$(wildcard include/config/mach/meesc.h) \
$(wildcard include/config/mach/otc570.h) \
$(wildcard include/config/mach/bcu2412.h) \
$(wildcard include/config/mach/beacon.h) \
$(wildcard include/config/mach/actia/tgw.h) \
$(wildcard include/config/mach/e4430.h) \
$(wildcard include/config/mach/ql300.h) \
$(wildcard include/config/mach/btmavb101.h) \
$(wildcard include/config/mach/btmawb101.h) \
$(wildcard include/config/mach/sq201.h) \
$(wildcard include/config/mach/quatro45xx.h) \
$(wildcard include/config/mach/openpad.h) \
$(wildcard include/config/mach/tx25.h) \
$(wildcard include/config/mach/omap3/torpedo.h) \
$(wildcard include/config/mach/htcraphael/k.h) \
$(wildcard include/config/mach/lal43.h) \
$(wildcard include/config/mach/htcraphael/cdma500.h) \
$(wildcard include/config/mach/anw6410.h) \
$(wildcard include/config/mach/htcprophet.h) \
$(wildcard include/config/mach/cfa/10022.h) \
$(wildcard include/config/mach/imx27/visstrim/m10.h) \
$(wildcard include/config/mach/px2imx27.h) \
$(wildcard include/config/mach/stm3210e/eval.h) \
$(wildcard include/config/mach/dvs10.h) \
$(wildcard include/config/mach/portuxg20.h) \
$(wildcard include/config/mach/arm/spv.h) \
$(wildcard include/config/mach/smdkc110.h) \
$(wildcard include/config/mach/cabespresso.h) \
$(wildcard include/config/mach/hmc800.h) \
$(wildcard include/config/mach/sholes.h) \
$(wildcard include/config/mach/btmxc31.h) \
$(wildcard include/config/mach/dt501.h) \
$(wildcard include/config/mach/ktx.h) \
$(wildcard include/config/mach/omap3517evm.h) \
$(wildcard include/config/mach/netspace/v2.h) \
$(wildcard include/config/mach/netspace/max/v2.h) \
$(wildcard include/config/mach/d2net/v2.h) \
$(wildcard include/config/mach/net2big/v2.h) \
$(wildcard include/config/mach/net4big/v2.h) \
$(wildcard include/config/mach/net5big/v2.h) \
$(wildcard include/config/mach/endb2443.h) \
$(wildcard include/config/mach/inetspace/v2.h) \
$(wildcard include/config/mach/tros.h) \
$(wildcard include/config/mach/pelco/homer.h) \
$(wildcard include/config/mach/ofsp8.h) \
$(wildcard include/config/mach/at91sam9g45ekes.h) \
$(wildcard include/config/mach/guf/cupid.h) \
$(wildcard include/config/mach/eab1r.h) \
$(wildcard include/config/mach/cordoba.h) \
$(wildcard include/config/mach/irvine.h) \
$(wildcard include/config/mach/sff772.h) \
$(wildcard include/config/mach/pelco/milano.h) \
$(wildcard include/config/mach/pc7302.h) \
$(wildcard include/config/mach/bip6000.h) \
$(wildcard include/config/mach/silvermoon.h) \
$(wildcard include/config/mach/vc0830.h) \
$(wildcard include/config/mach/dt430.h) \
$(wildcard include/config/mach/ji42pf.h) \
$(wildcard include/config/mach/gnet/ksm.h) \
$(wildcard include/config/mach/gnet/sgm.h) \
$(wildcard include/config/mach/gnet/sgr.h) \
$(wildcard include/config/mach/omap3/icetekevm.h) \
$(wildcard include/config/mach/pnp.h) \
$(wildcard include/config/mach/ctera/2bay/k.h) \
$(wildcard include/config/mach/ctera/2bay/u.h) \
$(wildcard include/config/mach/sas/c.h) \
$(wildcard include/config/mach/vma2315.h) \
$(wildcard include/config/mach/vcs.h) \
$(wildcard include/config/mach/spear600.h) \
$(wildcard include/config/mach/spear300.h) \
$(wildcard include/config/mach/spear1300.h) \
$(wildcard include/config/mach/lilly1131.h) \
$(wildcard include/config/mach/arvoo/ax301.h) \
$(wildcard include/config/mach/mapphone.h) \
$(wildcard include/config/mach/legend.h) \
$(wildcard include/config/mach/salsa.h) \
$(wildcard include/config/mach/lounge.h) \
$(wildcard include/config/mach/vision.h) \
$(wildcard include/config/mach/vmb20.h) \
$(wildcard include/config/mach/hy2410.h) \
$(wildcard include/config/mach/hy9315.h) \
$(wildcard include/config/mach/bullwinkle.h) \
$(wildcard include/config/mach/arm/ultimator2.h) \
$(wildcard include/config/mach/vs/v210.h) \
$(wildcard include/config/mach/vs/v212.h) \
$(wildcard include/config/mach/hmt.h) \
$(wildcard include/config/mach/suen3.h) \
$(wildcard include/config/mach/vesper.h) \
$(wildcard include/config/mach/str9.h) \
$(wildcard include/config/mach/omap3/wl/ff.h) \
$(wildcard include/config/mach/simcom.h) \
$(wildcard include/config/mach/mcwebio.h) \
$(wildcard include/config/mach/omap3/phrazer.h) \
$(wildcard include/config/mach/darwin.h) \
$(wildcard include/config/mach/oratiscomu.h) \
$(wildcard include/config/mach/rtsbc20.h) \
$(wildcard include/config/mach/i780.h) \
$(wildcard include/config/mach/gemini324.h) \
$(wildcard include/config/mach/oratislan.h) \
$(wildcard include/config/mach/oratisalog.h) \
$(wildcard include/config/mach/oratismadi.h) \
$(wildcard include/config/mach/oratisot16.h) \
$(wildcard include/config/mach/oratisdesk.h) \
$(wildcard include/config/mach/v2p/ca9.h) \
$(wildcard include/config/mach/sintexo.h) \
$(wildcard include/config/mach/cm3389.h) \
$(wildcard include/config/mach/omap3/cio.h) \
$(wildcard include/config/mach/sgh/i900.h) \
$(wildcard include/config/mach/bst100.h) \
$(wildcard include/config/mach/passion.h) \
$(wildcard include/config/mach/indesign/at91sam.h) \
$(wildcard include/config/mach/c4/badger.h) \
$(wildcard include/config/mach/c4/viper.h) \
$(wildcard include/config/mach/d2net.h) \
$(wildcard include/config/mach/bigdisk.h) \
$(wildcard include/config/mach/notalvision.h) \
$(wildcard include/config/mach/omap3/kboc.h) \
$(wildcard include/config/mach/cyclone.h) \
$(wildcard include/config/mach/ninja.h) \
$(wildcard include/config/mach/at91sam9g20ek/2mmc.h) \
$(wildcard include/config/mach/bcmring.h) \
$(wildcard include/config/mach/resol/dl2.h) \
$(wildcard include/config/mach/ifosw.h) \
$(wildcard include/config/mach/htcrhodium.h) \
$(wildcard include/config/mach/htctopaz.h) \
$(wildcard include/config/mach/matrix504.h) \
$(wildcard include/config/mach/mrfsa.h) \
$(wildcard include/config/mach/sc/p270.h) \
$(wildcard include/config/mach/atlas5/evb.h) \
$(wildcard include/config/mach/pelco/lobox.h) \
$(wildcard include/config/mach/dilax/pcu200.h) \
$(wildcard include/config/mach/leonardo.h) \
$(wildcard include/config/mach/zoran/approach7.h) \
$(wildcard include/config/mach/dp6xx.h) \
$(wildcard include/config/mach/bcm2153/vesper.h) \
$(wildcard include/config/mach/passionc.h) \
$(wildcard include/config/mach/clickc.h) \
$(wildcard include/config/mach/zb/gateway.h) \
$(wildcard include/config/mach/tazcard.h) \
$(wildcard include/config/mach/tazdev.h) \
$(wildcard include/config/mach/annax/cb/arm.h) \
$(wildcard include/config/mach/annax/dm3.h) \
$(wildcard include/config/mach/cerebric.h) \
$(wildcard include/config/mach/orca.h) \
$(wildcard include/config/mach/pc9260.h) \
$(wildcard include/config/mach/ems285a.h) \
$(wildcard include/config/mach/gec2410.h) \
$(wildcard include/config/mach/gec2440.h) \
$(wildcard include/config/mach/arch/mw903.h) \
$(wildcard include/config/mach/mw2440.h) \
$(wildcard include/config/mach/ecac2378.h) \
$(wildcard include/config/mach/tazkiosk.h) \
$(wildcard include/config/mach/whiterabbit/mch.h) \
$(wildcard include/config/mach/sbox9263.h) \
$(wildcard include/config/mach/oreo.h) \
$(wildcard include/config/mach/smdk6442.h) \
$(wildcard include/config/mach/openrd/base.h) \
$(wildcard include/config/mach/incredible.h) \
$(wildcard include/config/mach/incrediblec.h) \
$(wildcard include/config/mach/heroct.h) \
$(wildcard include/config/mach/mmnet1000.h) \
$(wildcard include/config/mach/devkit8000.h) \
$(wildcard include/config/mach/devkit9000.h) \
$(wildcard include/config/mach/mx31txtr.h) \
$(wildcard include/config/mach/u380.h) \
$(wildcard include/config/mach/hualu/board.h) \
$(wildcard include/config/mach/npcmx50.h) \
$(wildcard include/config/mach/mx51/lange51.h) \
$(wildcard include/config/mach/mx51/lange52.h) \
$(wildcard include/config/mach/riom.h) \
$(wildcard include/config/mach/comcas.h) \
$(wildcard include/config/mach/wsi/mx27.h) \
$(wildcard include/config/mach/cm/t35.h) \
$(wildcard include/config/mach/net2big.h) \
$(wildcard include/config/mach/motorola/a1600.h) \
$(wildcard include/config/mach/igep0020.h) \
$(wildcard include/config/mach/igep0010.h) \
$(wildcard include/config/mach/mv6281gtwge2.h) \
$(wildcard include/config/mach/scat100.h) \
$(wildcard include/config/mach/sanmina.h) \
$(wildcard include/config/mach/momento.h) \
$(wildcard include/config/mach/nuc9xx.h) \
$(wildcard include/config/mach/nuc910evb.h) \
$(wildcard include/config/mach/nuc920evb.h) \
$(wildcard include/config/mach/nuc950evb.h) \
$(wildcard include/config/mach/nuc945evb.h) \
$(wildcard include/config/mach/nuc960evb.h) \
$(wildcard include/config/mach/nuc932evb.h) \
$(wildcard include/config/mach/nuc900.h) \
$(wildcard include/config/mach/sd1soc.h) \
$(wildcard include/config/mach/ln2440bc.h) \
$(wildcard include/config/mach/rsbc.h) \
$(wildcard include/config/mach/openrd/client.h) \
$(wildcard include/config/mach/hpipaq11x.h) \
$(wildcard include/config/mach/wayland.h) \
$(wildcard include/config/mach/acnbsx102.h) \
$(wildcard include/config/mach/hwat91.h) \
$(wildcard include/config/mach/at91sam9263cs.h) \
$(wildcard include/config/mach/csb732.h) \
$(wildcard include/config/mach/u8500.h) \
$(wildcard include/config/mach/huqiu.h) \
$(wildcard include/config/mach/mx51/kunlun.h) \
$(wildcard include/config/mach/pmt1g.h) \
$(wildcard include/config/mach/htcelf.h) \
$(wildcard include/config/mach/armadillo420.h) \
$(wildcard include/config/mach/armadillo440.h) \
$(wildcard include/config/mach/u/chip/dual/arm.h) \
$(wildcard include/config/mach/csr/bdb3.h) \
$(wildcard include/config/mach/dolby/cat1018.h) \
$(wildcard include/config/mach/hy9307.h) \
$(wildcard include/config/mach/a/es.h) \
$(wildcard include/config/mach/davinci/irif.h) \
$(wildcard include/config/mach/agama9263.h) \
$(wildcard include/config/mach/marvell/jasper.h) \
$(wildcard include/config/mach/flint.h) \
$(wildcard include/config/mach/tavorevb3.h) \
$(wildcard include/config/mach/sch/m490.h) \
$(wildcard include/config/mach/rbl01.h) \
$(wildcard include/config/mach/omnifi.h) \
$(wildcard include/config/mach/otavalo.h) \
$(wildcard include/config/mach/sienna.h) \
$(wildcard include/config/mach/htc/excalibur/s620.h) \
$(wildcard include/config/mach/htc/opal.h) \
$(wildcard include/config/mach/touchbook.h) \
$(wildcard include/config/mach/latte.h) \
$(wildcard include/config/mach/xa200.h) \
$(wildcard include/config/mach/nimrod.h) \
$(wildcard include/config/mach/cc9p9215/3g.h) \
$(wildcard include/config/mach/cc9p9215/3gjs.h) \
$(wildcard include/config/mach/tk71.h) \
$(wildcard include/config/mach/comham3525.h) \
$(wildcard include/config/mach/mx31erebus.h) \
$(wildcard include/config/mach/mcardmx27.h) \
$(wildcard include/config/mach/paradise.h) \
$(wildcard include/config/mach/tide.h) \
$(wildcard include/config/mach/wzl2440.h) \
$(wildcard include/config/mach/sdrdemo.h) \
$(wildcard include/config/mach/ethercan2.h) \
$(wildcard include/config/mach/ecmimg20.h) \
$(wildcard include/config/mach/omap/dragon.h) \
$(wildcard include/config/mach/halo.h) \
$(wildcard include/config/mach/huangshan.h) \
$(wildcard include/config/mach/vl/ma2sc.h) \
$(wildcard include/config/mach/raumfeld/rc.h) \
$(wildcard include/config/mach/raumfeld/connector.h) \
$(wildcard include/config/mach/raumfeld/speaker.h) \
$(wildcard include/config/mach/multibus/master.h) \
$(wildcard include/config/mach/multibus/pbk.h) \
$(wildcard include/config/mach/tnetv107x.h) \
$(wildcard include/config/mach/snake.h) \
$(wildcard include/config/mach/cwmx27.h) \
$(wildcard include/config/mach/sch/m480.h) \
$(wildcard include/config/mach/platypus.h) \
$(wildcard include/config/mach/pss2.h) \
$(wildcard include/config/mach/davinci/apm150.h) \
$(wildcard include/config/mach/str9100.h) \
$(wildcard include/config/mach/net5big.h) \
$(wildcard include/config/mach/seabed9263.h) \
$(wildcard include/config/mach/mx51/m2id.h) \
$(wildcard include/config/mach/octvocplus/eb.h) \
$(wildcard include/config/mach/klk/firefox.h) \
$(wildcard include/config/mach/klk/wirma.h) \
$(wildcard include/config/mach/klk/wirma/mmi.h) \
$(wildcard include/config/mach/supersonic.h) \
$(wildcard include/config/mach/liberty.h) \
$(wildcard include/config/mach/mh355.h) \
$(wildcard include/config/mach/pc7802.h) \
$(wildcard include/config/mach/gnet/sgc.h) \
$(wildcard include/config/mach/einstein15.h) \
$(wildcard include/config/mach/cmpd.h) \
$(wildcard include/config/mach/davinci/hase1.h) \
$(wildcard include/config/mach/lgeincitephone.h) \
$(wildcard include/config/mach/ea313x.h) \
$(wildcard include/config/mach/fwbd/39064.h) \
$(wildcard include/config/mach/fwbd/390128.h) \
$(wildcard include/config/mach/pelco/moe.h) \
$(wildcard include/config/mach/minimix27.h) \
$(wildcard include/config/mach/omap3/thunder.h) \
$(wildcard include/config/mach/mx27amata.h) \
$(wildcard include/config/mach/bgat1.h) \
$(wildcard include/config/mach/buzz.h) \
$(wildcard include/config/mach/mb9g20.h) \
$(wildcard include/config/mach/yushan.h) \
$(wildcard include/config/mach/lizard.h) \
$(wildcard include/config/mach/omap3polycom.h) \
$(wildcard include/config/mach/smdkv210.h) \
$(wildcard include/config/mach/bravo.h) \
$(wildcard include/config/mach/siogentoo1.h) \
$(wildcard include/config/mach/siogentoo2.h) \
$(wildcard include/config/mach/sm3k.h) \
$(wildcard include/config/mach/acer/tempo/f900.h) \
$(wildcard include/config/mach/sst61vc010/dev.h) \
$(wildcard include/config/mach/glittertind.h) \
$(wildcard include/config/mach/omap/zoom3.h) \
$(wildcard include/config/mach/omap/3630sdp.h) \
$(wildcard include/config/mach/cybook2440.h) \
$(wildcard include/config/mach/torino/s.h) \
$(wildcard include/config/mach/havana.h) \
$(wildcard include/config/mach/beaumont/11.h) \
$(wildcard include/config/mach/vanguard.h) \
$(wildcard include/config/mach/s5pc110/draco.h) \
$(wildcard include/config/mach/cartesio/two.h) \
$(wildcard include/config/mach/aster.h) \
$(wildcard include/config/mach/voguesv210.h) \
$(wildcard include/config/mach/acm500x.h) \
$(wildcard include/config/mach/km9260.h) \
$(wildcard include/config/mach/nideflexg1.h) \
$(wildcard include/config/mach/ctera/plug/io.h) \
$(wildcard include/config/mach/smartq7.h) \
$(wildcard include/config/mach/at91sam9g10ek2.h) \
$(wildcard include/config/mach/asusp527.h) \
$(wildcard include/config/mach/at91sam9g20mpm2.h) \
$(wildcard include/config/mach/topasa900.h) \
$(wildcard include/config/mach/electrum/100.h) \
$(wildcard include/config/mach/mx51grb.h) \
$(wildcard include/config/mach/xea300.h) \
$(wildcard include/config/mach/htcstartrek.h) \
$(wildcard include/config/mach/lima.h) \
$(wildcard include/config/mach/csb740.h) \
$(wildcard include/config/mach/usb/s8815.h) \
$(wildcard include/config/mach/watson/efm/plugin.h) \
$(wildcard include/config/mach/milkyway.h) \
$(wildcard include/config/mach/g4evm.h) \
$(wildcard include/config/mach/picomod6.h) \
$(wildcard include/config/mach/omapl138/hawkboard.h) \
$(wildcard include/config/mach/ip6000.h) \
$(wildcard include/config/mach/ip6010.h) \
$(wildcard include/config/mach/utm400.h) \
$(wildcard include/config/mach/omap3/zybex.h) \
$(wildcard include/config/mach/wireless/space.h) \
$(wildcard include/config/mach/sx560.h) \
$(wildcard include/config/mach/ts41x.h) \
$(wildcard include/config/mach/elphel10373.h) \
$(wildcard include/config/mach/rhobot.h) \
$(wildcard include/config/mach/mx51/refresh.h) \
$(wildcard include/config/mach/ls9260.h) \
$(wildcard include/config/mach/shank.h) \
$(wildcard include/config/mach/qsd8x50/st1.h) \
$(wildcard include/config/mach/at91sam9m10ekes.h) \
$(wildcard include/config/mach/hiram.h) \
$(wildcard include/config/mach/phy3250.h) \
$(wildcard include/config/mach/ea3250.h) \
$(wildcard include/config/mach/fdi3250.h) \
$(wildcard include/config/mach/whitestone.h) \
$(wildcard include/config/mach/at91sam9263nit.h) \
$(wildcard include/config/mach/ccmx51.h) \
$(wildcard include/config/mach/ccmx51js.h) \
$(wildcard include/config/mach/ccwmx51.h) \
$(wildcard include/config/mach/ccwmx51js.h) \
$(wildcard include/config/mach/mini6410.h) \
$(wildcard include/config/mach/tiny6410.h) \
$(wildcard include/config/mach/nano6410.h) \
$(wildcard include/config/mach/at572d940hfnldb.h) \
$(wildcard include/config/mach/htcleo.h) \
$(wildcard include/config/mach/avp13.h) \
$(wildcard include/config/mach/xxsvideod.h) \
$(wildcard include/config/mach/vpnext.h) \
$(wildcard include/config/mach/swarco/itc3.h) \
$(wildcard include/config/mach/tx51.h) \
$(wildcard include/config/mach/dolby/cat1021.h) \
$(wildcard include/config/mach/mx28evk.h) \
$(wildcard include/config/mach/phoenix260.h) \
$(wildcard include/config/mach/uvaca/stork.h) \
$(wildcard include/config/mach/smartq5.h) \
$(wildcard include/config/mach/all3078.h) \
$(wildcard include/config/mach/ctera/2bay/ds.h) \
$(wildcard include/config/mach/siogentoo3.h) \
$(wildcard include/config/mach/epb5000.h) \
$(wildcard include/config/mach/hy9263.h) \
$(wildcard include/config/mach/acer/tempo/m900.h) \
$(wildcard include/config/mach/acer/tempo/dx900.h) \
$(wildcard include/config/mach/acer/tempo/x960.h) \
$(wildcard include/config/mach/acer/eten/v900.h) \
$(wildcard include/config/mach/acer/eten/x900.h) \
$(wildcard include/config/mach/bonnell.h) \
$(wildcard include/config/mach/oht/mx27.h) \
$(wildcard include/config/mach/htcquartz.h) \
$(wildcard include/config/mach/davinci/dm6467tevm.h) \
$(wildcard include/config/mach/c3ax03.h) \
$(wildcard include/config/mach/mxt/td60.h) \
$(wildcard include/config/mach/esyx.h) \
$(wildcard include/config/mach/dove/db2.h) \
$(wildcard include/config/mach/bulldog.h) \
$(wildcard include/config/mach/derell/me2000.h) \
$(wildcard include/config/mach/bcmring/base.h) \
$(wildcard include/config/mach/bcmring/evm.h) \
$(wildcard include/config/mach/bcmring/evm/jazz.h) \
$(wildcard include/config/mach/bcmring/sp.h) \
$(wildcard include/config/mach/bcmring/sv.h) \
$(wildcard include/config/mach/bcmring/sv/jazz.h) \
$(wildcard include/config/mach/bcmring/tablet.h) \
$(wildcard include/config/mach/bcmring/vp.h) \
$(wildcard include/config/mach/bcmring/evm/seikor.h) \
$(wildcard include/config/mach/bcmring/sp/wqvga.h) \
$(wildcard include/config/mach/bcmring/custom.h) \
$(wildcard include/config/mach/acer/s200.h) \
$(wildcard include/config/mach/bt270.h) \
$(wildcard include/config/mach/iseo.h) \
$(wildcard include/config/mach/cezanne.h) \
$(wildcard include/config/mach/lucca.h) \
$(wildcard include/config/mach/supersmart.h) \
$(wildcard include/config/mach/cs/misano.h) \
$(wildcard include/config/mach/magnolia2.h) \
$(wildcard include/config/mach/emxx.h) \
$(wildcard include/config/mach/outlaw.h) \
$(wildcard include/config/mach/riot/bei2.h) \
$(wildcard include/config/mach/riot/vox.h) \
$(wildcard include/config/mach/riot/x37.h) \
$(wildcard include/config/mach/mega25mx.h) \
$(wildcard include/config/mach/benzina2.h) \
$(wildcard include/config/mach/ignite.h) \
$(wildcard include/config/mach/foggia.h) \
$(wildcard include/config/mach/arezzo.h) \
$(wildcard include/config/mach/leica/skywalker.h) \
$(wildcard include/config/mach/jacinto2/jamr.h) \
$(wildcard include/config/mach/gts/nova.h) \
$(wildcard include/config/mach/p3600.h) \
$(wildcard include/config/mach/dlt2.h) \
$(wildcard include/config/mach/df3120.h) \
$(wildcard include/config/mach/ecucore/9g20.h) \
$(wildcard include/config/mach/nautel/lpc3240.h) \
$(wildcard include/config/mach/glacier.h) \
$(wildcard include/config/mach/phrazer/bulldog.h) \
$(wildcard include/config/mach/omap3/bulldog.h) \
$(wildcard include/config/mach/pca101.h) \
$(wildcard include/config/mach/buzzc.h) \
$(wildcard include/config/mach/sasie2.h) \
$(wildcard include/config/mach/davinci/cio.h) \
$(wildcard include/config/mach/smartmeter/dl.h) \
$(wildcard include/config/mach/wzl6410.h) \
$(wildcard include/config/mach/wzl6410m.h) \
$(wildcard include/config/mach/wzl6410f.h) \
$(wildcard include/config/mach/wzl6410i.h) \
$(wildcard include/config/mach/spacecom1.h) \
$(wildcard include/config/mach/pingu920.h) \
$(wildcard include/config/mach/bravoc.h) \
$(wildcard include/config/mach/cybo2440.h) \
$(wildcard include/config/mach/vdssw.h) \
$(wildcard include/config/mach/romulus.h) \
$(wildcard include/config/mach/omap/magic.h) \
$(wildcard include/config/mach/eltd100.h) \
$(wildcard include/config/mach/capc7117.h) \
$(wildcard include/config/mach/swan.h) \
$(wildcard include/config/mach/veu.h) \
$(wildcard include/config/mach/rm2.h) \
$(wildcard include/config/mach/tt2100.h) \
$(wildcard include/config/mach/venice.h) \
$(wildcard include/config/mach/pc7323.h) \
$(wildcard include/config/mach/masp.h) \
$(wildcard include/config/mach/fujitsu/tvstbsoc.h) \
$(wildcard include/config/mach/fujitsu/tvstbsoc1.h) \
$(wildcard include/config/mach/lexikon.h) \
$(wildcard include/config/mach/mini2440v2.h) \
$(wildcard include/config/mach/icontrol.h) \
$(wildcard include/config/mach/sheevad.h) \
$(wildcard include/config/mach/qsd8x50a/st1/1.h) \
$(wildcard include/config/mach/qsd8x50a/st1/5.h) \
$(wildcard include/config/mach/bee.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/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 \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/percpu.h \
$(wildcard include/config/modules.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/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 \
/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/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.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/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mm/owner.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/pgtable.h \
include/asm-generic/4level-fixup.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/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 \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/uaccess.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/shmparam.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/kmap_types.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.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/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) \
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 \
/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 \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/hardirq.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/jbd.h \
$(wildcard include/config/jbd/debug.h) \
$(wildcard include/config/buffer/debug.h) \
include/linux/buffer_head.h \
include/linux/journal-head.h \
include/linux/bit_spinlock.h \
include/linux/ext3_fs.h \
include/linux/magic.h \
include/linux/ext3_fs_i.h \
$(wildcard include/config/ext3/fs/posix/acl.h) \
include/linux/ext3_fs_sb.h \
include/linux/blockgroup_lock.h \
include/linux/ext3_jbd.h \
include/linux/quotaops.h \
include/linux/bio.h \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/mempool.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
fs/ext3/namei.h \
fs/ext3/xattr.h \
$(wildcard include/config/ext3/fs/security.h) \
include/linux/xattr.h \
fs/ext3/acl.h \
include/linux/posix_acl_xattr.h \
include/linux/posix_acl.h \
fs/ext3/namei.o: $(deps_fs/ext3/namei.o)
$(deps_fs/ext3/namei.o):
| HCDRJacob/wildfire-kernel | fs/ext3/.namei.o.cmd | bat | gpl-2.0 | 149,011 |
cmd_sound/pci/rme9652/built-in.o := rm -f sound/pci/rme9652/built-in.o; /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/pci/rme9652/built-in.o
| kannu1994/crespo_kernel | sound/pci/rme9652/.built-in.o.cmd | bat | gpl-2.0 | 188 |
@Set Path=C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727;C:\Program Files\Microsoft Visual Studio 8\VC\bin;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE;C:\Program Files\Microsoft Visual Studio 8\VC\vcpackages;%PATH%
@Set LIB=C:\Program Files\Microsoft Visual Studio 8\VC\lib;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Lib;%LIB%
@Set INCLUDE=C:\Program Files\Microsoft Visual Studio 8\VC\include;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\include;%INCLUDE%
@Set NetSamplePath=C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0
@Set VCBUILD_DEFAULT_CFG=Debug^|Win32
@Set VCBUILD_DEFAULT_OPTIONS=/useenv
@echo Setting environment to use Microsoft .NET Framework v2.0 SDK tools.
@echo For a list of SDK tools, see the 'StartTools.htm' file in the bin folder.
| jhogan/bin | sdkvars.bat | bat | gpl-2.0 | 847 |
cmd_libbb/perror_nomsg.o := arm-linux-musleabihf-gcc -Wp,-MD,libbb/.perror_nomsg.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.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(perror_nomsg)" -D"KBUILD_MODNAME=KBUILD_STR(perror_nomsg)" -c -o libbb/perror_nomsg.o libbb/perror_nomsg.c
deps_libbb/perror_nomsg.o := \
libbb/perror_nomsg.c \
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) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \
libbb/perror_nomsg.o: $(deps_libbb/perror_nomsg.o)
$(deps_libbb/perror_nomsg.o):
| ThinkIntegrate/busybox | libbb/.perror_nomsg.o.cmd | bat | gpl-2.0 | 2,547 |
cmd_net/netlink/built-in.o := /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/netlink/built-in.o net/netlink/af_netlink.o net/netlink/genetlink.o
| asopov/linux-tpt-2.6.39 | net/netlink/.built-in.o.cmd | bat | gpl-2.0 | 199 |
@echo off
REM recherche dans la BDR si le logiciel Winpooch est installe
REM reg QUERY renvoi 0 : succés ou 1 : echec
Reg QUERY HKLM\SOFTWARE\Winpooch /v Flag >nul
goto %ERRORLEVEL%
:1
echo Debut de l'installation
chmod ugo+rx *
Winpooch-0.6.6.exe /sp- /verysilent /norestart
echo Installation terminee.
Reg ADD HKLM\SOFTWARE\Winpooch /v Flag /t REG_DWORD /d "1" /f
goto END
:0
echo logiciel deja installe
exit 1
:END | cedricde/lrs | addons/lsc_deployment_scripts/Software_using_a_installer_INNO_SETUP/antivirus/Winpooch/installWinpooch.bat | bat | gpl-2.0 | 456 |
cmd_net/802/built-in.o := /home/algesat/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o net/802/built-in.o net/802/p8022.o net/802/psnap.o net/802/stp.o
| Algesat/BladeApex2 | net/802/.built-in.o.cmd | bat | gpl-2.0 | 149 |
cmd_net/rfkill/built-in.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/rfkill/built-in.o net/rfkill/rfkill.o
| TeamGlide/LiteKernel | net/rfkill/.built-in.o.cmd | bat | gpl-2.0 | 133 |
cmd_sound/pci/built-in.o := /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o sound/pci/built-in.o sound/pci/ac97/built-in.o sound/pci/ali5451/built-in.o sound/pci/au88x0/built-in.o sound/pci/aw2/built-in.o sound/pci/ctxfi/built-in.o sound/pci/ca0106/built-in.o sound/pci/cs46xx/built-in.o sound/pci/cs5535audio/built-in.o sound/pci/lx6464es/built-in.o sound/pci/echoaudio/built-in.o sound/pci/emu10k1/built-in.o sound/pci/hda/built-in.o sound/pci/ice1712/built-in.o sound/pci/korg1212/built-in.o sound/pci/mixart/built-in.o sound/pci/nm256/built-in.o sound/pci/oxygen/built-in.o sound/pci/pcxhr/built-in.o sound/pci/riptide/built-in.o sound/pci/rme9652/built-in.o sound/pci/trident/built-in.o sound/pci/ymfpci/built-in.o sound/pci/vx222/built-in.o
| freebsdmax/gsmart1315_kernel | sound/pci/.built-in.o.cmd | bat | gpl-2.0 | 815 |
cmd_lib/built-in.o := /home/algesat/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o lib/built-in.o lib/bcd.o lib/div64.o lib/sort.o lib/parser.o lib/halfmd4.o lib/debug_locks.o lib/random32.o lib/bust_spinlocks.o lib/hexdump.o lib/kasprintf.o lib/bitmap.o lib/scatterlist.o lib/string_helpers.o lib/gcd.o lib/lcm.o lib/list_sort.o lib/uuid.o lib/flex_array.o lib/bsearch.o lib/find_last_bit.o lib/find_next_bit.o lib/llist.o lib/kstrtox.o lib/pci_iomap.o lib/iomap_copy.o lib/devres.o lib/hweight.o lib/smp_processor_id.o lib/bitrev.o lib/crc-ccitt.o lib/crc16.o lib/crc32.o lib/libcrc32c.o lib/genalloc.o lib/zlib_inflate/built-in.o lib/zlib_deflate/built-in.o lib/reed_solomon/built-in.o lib/lzo/built-in.o lib/textsearch.o lib/ts_kmp.o lib/ts_bm.o lib/ts_fsm.o lib/percpu_counter.o lib/audit.o lib/fault-inject.o lib/nlattr.o lib/cpu_rmap.o lib/dynamic_queue_limits.o lib/qmi_encdec.o
| Algesat/BladeApex2 | lib/.built-in.o.cmd | bat | gpl-2.0 | 884 |
cmd_drivers/idle/built-in.o := rm -f drivers/idle/built-in.o; /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/idle/built-in.o
| doadin/samsung-kernel-msm7x30-Doadin | drivers/idle/.built-in.o.cmd | bat | gpl-2.0 | 161 |
@echo off
if [%1] == [] (
set ARG="TestSuites"
) else (
set ARG=%1
)
if not [%2] == [] (
goto usage
)
goto begin
:usage
echo Usage: %~n0 [TestStepsModuleFile ^| BaseDirectory]
echo Default base directory is TestSuites
goto end
:begin
setlocal enableDelayedExpansion
call %~dp0\setenv
set FORMATTER_DIR="%QTASTE_ROOT%\tools\TestScriptDoc"
echo.
echo Generating Test steps module XML doc...
java -cp %JYTHON_HOME%\jython.jar -Dpython.home=%JYTHON_HOME% -Dpython.path=%FORMATTER_DIR% org.python.util.jython %FORMATTER_DIR%\stepsmoduledoc_xmlformatter.py %ARG%
endlocal
:end
| remybaranx/qtaste | bin/generate-TestStepsModules-doc.bat | bat | gpl-3.0 | 625 |
/******************************************************************************
*
* usb_dev_serial_ccs.cmd - CCS linker configuration file for usb_dev_serial.
*
* Copyright (c) 2011-2013 Texas Instruments Incorporated. All rights reserved.
* Software License Agreement
*
* Texas Instruments (TI) is supplying this software for use solely and
* exclusively on TI's microcontroller products. The software is owned by
* TI and/or its suppliers, and is protected under applicable copyright
* laws. You may not combine this software with "viral" open-source
* software in order to form a larger program.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
* NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
* NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
* CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
* DAMAGES, FOR ANY REASON WHATSOEVER.
*
* This is part of revision 2.0.1.11577 of the EK-LM4F232 Firmware Package.
*
*****************************************************************************/
--retain=g_pfnVectors
/* The following command line options are set as part of the CCS project. */
/* If you are building using the command line, or for some reason want to */
/* define them here, you can uncomment and modify these lines as needed. */
/* If you are using CCS for building, it is probably better to make any such */
/* modifications in your CCS project and leave this file alone. */
/* */
/* --heap_size=0 */
/* --stack_size=256 */
/* --library=rtsv7M3_T_le_eabi.lib */
/* The starting address of the application. Normally the interrupt vectors */
/* must be located at the beginning of the application. */
#define APP_BASE 0x00000000
#define RAM_BASE 0x20000000
/* System memory map */
MEMORY
{
/* Application stored in and executes from internal flash */
FLASH (RX) : origin = APP_BASE, length = 0x00040000
/* Application uses internal RAM for data */
SRAM (RWX) : origin = 0x20000000, length = 0x00008000
}
/* Section allocation in memory */
SECTIONS
{
.intvecs: > APP_BASE
.text : > FLASH
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.vtable : > RAM_BASE
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}
__STACK_TOP = __stack + 1024;
| trfiladelfo/unesp_mdt | boards/SW-TM4C-2.0.1.11577/examples/boards/ek-lm4f232/usb_dev_serial/usb_dev_serial_ccs.cmd | bat | mpl-2.0 | 2,809 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
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\PlantUML9000Demo.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PlantUML9000Demo.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
| mar9000/plantuml | sphinx-demo/make.bat | bat | lgpl-3.0 | 6,488 |
@echo off
REM ### ================================================================== ###
REM ## ##
REM ## Copyright (c) 1998-2000 by Jason Dillon <jason@planet57.com> and ##
REM ## by Sacha Labourey <sacha.labourey@cogito-info.ch> ##
REM ## Copyright (c) 2001 by TIANI MEDGRAPH AG <gunter.zeilinger@tiani.com> ##
REM ## ##
REM ## This file is part of dcm4che. ##
REM ## ##
REM ## This library is free software; you can redistribute it and/or modify ##
REM ## it under the terms of the GNU Lesser General Public License as ##
REM ## published by the Free Software Foundation; either version 2 of the ##
REM ## License, or (at your option) any later version. ##
REM ## ##
REM ## This library is distributed in the hope that it will be useful, but ##
REM ## WITHOUT ANY WARRANTY; without even the implied warranty of ##
REM ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ##
REM ## Lesser General Public License for more details. ##
REM ## ##
REM ### ================================================================== ###
REM ## ##
REM ## This is the main entry point for the build system. ##
REM ## Users should be sure to execute this file rather than 'ant' to ##
REM ## ensure the correct version is being used with the correct ##
REM ## configuration. ##
REM ## ##
REM ### ================================================================== ###
REM $Id: build.bat 3451 2002-04-07 20:39:37Z gunterze $
REM ******************************************************
REM Ignore the ANT_HOME variable: we want to use *our*
REM ANT version and associated JARs.
REM ******************************************************
REM Ignore the users classpath, cause it might mess
REM things up
REM ******************************************************
SETLOCAL
set CLASSPATH=
set ANT_HOME=
set JAXP_DOM_FACTORY=org.apache.crimson.jaxp.DocumentBuilderFactoryImpl
set JAXP_SAX_FACTORY=org.apache.crimson.jaxp.SAXParserFactoryImpl
REM set JAXP_DOM_FACTORY=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
REM set JAXP_SAX_FACTORY=org.apache.xerces.jaxp.SAXParserFactoryImpl
set ANT_OPTS=-Djava.protocol.handler.pkgs=planet57.net.protocol -Djavax.xml.parsers.DocumentBuilderFactory=%JAXP_DOM_FACTORY% -Djavax.xml.parsers.SAXParserFactory=%JAXP_SAX_FACTORY% -Dbuild.script=build.bat
REM ******************************************************
REM - "for" loops have been unrolled for compatibility
REM with some WIN32 systems.
REM ******************************************************
set NAMES=tools;tools\ant;tools\apache\ant
set SUBFOLDERS=..;..\..;..\..\..;..\..\..\..
REM ******************************************************
REM ******************************************************
SET EXECUTED=FALSE
for %%i in (%NAMES%) do call :subLoop %%i %1 %2 %3 %4 %5 %6
goto :EOF
REM ******************************************************
REM ********* Search for names in the subfolders *********
REM ******************************************************
:subLoop
for %%j in (%SUBFOLDERS%) do call :testIfExists %%j\%1\bin\ant.bat %2 %3 %4 %5 %6 %7
goto :EOF
REM ******************************************************
REM ************ Test if ANT Batch file exists ***********
REM ******************************************************
:testIfExists
if exist %1 call :BatchFound %1 %2 %3 %4 %5 %6 %7 %8
goto :EOF
REM ******************************************************
REM ************** Batch file has been found *************
REM ******************************************************
:BatchFound
if (%EXECUTED%)==(FALSE) call :ExecuteBatch %1 %2 %3 %4 %5 %6 %7 %8
set EXECUTED=TRUE
goto :EOF
REM ******************************************************
REM ************* Execute Batch file only once ***********
REM ******************************************************
:ExecuteBatch
echo Calling %1 %2 %3 %4 %5 %6 %7 %8
call %1 %2 %3 %4 %5 %6 %7 %8
:end
pause
| medicayun/medicayundicom | dcm4che14/branches/gunter/build.bat | bat | apache-2.0 | 4,595 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set GRADLE_OPTS=-Xmx2048m -Xms256m -XX:MaxPermSize=1024m
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| EqualExperts/Midas | gradlew.bat | bat | bsd-2-clause | 2,371 |
echo off
rem update NLog.Web.AspNetCore.csproj for version number
cd NLog.Web.AspNetCore
msbuild /t:restore /t:build /p:configuration=release /verbosity:minimal
cd ..
| 304NotModified/NLog.Web | build_aspnetcore.bat | bat | bsd-3-clause | 172 |
@echo off
:: Change to the directory that this batch file is in
for /f %%i in ("%0") do set curpath=%%~dpi
cd /d %curpath%
:: Fetch input parameters
set target=%1
set config=%2
:: Set default target and config if needed
if "%target%"=="" set target=default
if "%config%"=="" set config=release
:: Execute the boo script with input params - accessible with env("x")
resources\phantom\phantom.exe -f:build.boo %target% -a:config=%config%
| danielsaidi/nextra | build.bat | bat | mit | 456 |
@echo off
IF ["%S1TBX_HOME%"]==[] echo "S1TBX_HOME is not defined. Please set S1TBX_HOME=installation_folder"
IF [%S1TBX_HOME:~-1%]==[/] set S1TBX_HOME=%S1TBX_HOME:~0,-1%
IF [%S1TBX_HOME:~-1%]==[\] set S1TBX_HOME=%S1TBX_HOME:~0,-1%
%comspec% /k gpt.bat -h
| kristotammeoja/ks | s1tbx-config/main/bin/win64/cli.bat | bat | gpl-3.0 | 260 |
SET FROM_ELF_PATH="C:\Keil_v5\ARM\ARMCC\Bin\fromelf.exe"
%FROM_ELF_PATH% ".\STM32469I_EVAL\STM32469I_EVAL.axf" --bin --output ".\STM32469I_EVAL\STM32469I_EVAL.bin" | TRothfelder/Multicopter | libs/STM32Cube_FW_F4_V1.16.0/Projects/STM32469I_EVAL/Applications/IAP/IAP_binary_template/MDK-ARM/axftobin.bat | bat | gpl-3.0 | 164 |
@ECHO OFF
%LIBAROMA_ADB% shell su -c mount -o rw,remount /
%LIBAROMA_ADB% shell su -c mkdir /tmp
%LIBAROMA_ADB% push libaroma_test /sdcard/
%LIBAROMA_ADB% shell su -c cp /sdcard/libaroma_test /tmp/
%LIBAROMA_ADB% shell su -c chmod 755 /tmp/libaroma_test
%LIBAROMA_ADB% shell su -c killall -19 system_server
%LIBAROMA_ADB% shell su -c killall -19 surfaceflinger
%LIBAROMA_ADB% shell su -c sleep 1
%LIBAROMA_ADB% shell su -c /tmp/libaroma_test
%LIBAROMA_ADB% shell su -c sleep 1
%LIBAROMA_ADB% shell su -c killall -18 surfaceflinger
%LIBAROMA_ADB% shell su -c killall -18 system_server
pause
| amarullz/libaroma | tools/win32/graphonly/deploy_android.bat | bat | apache-2.0 | 590 |
call "%VS140COMNTOOLS%..\..\VC\bin\amd64\vcvars64.bat"
cmake ..\\..\\ -DATOMIC_DEV_BUILD=0 -G "Visual Studio 14 2015 Win64"
msbuild /m Atomic.sln /p:Configuration=Release /p:Platform=x64
| rsredsq/AtomicGameEngine | Build/Windows/Compile.bat | bat | mit | 188 |
@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\Fermipy.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Fermipy.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
| fermiPy/fermipy | docs/make.bat | bat | bsd-3-clause | 7,246 |
rem @echo off
setlocal
call build_env_win32.bat
set BUILD_CONFIG=release
set PLATFORM_CONFIG=x64
set MAX_CPU_CONFIG=4
set CONFIG_PARAMETER=/p:Configuration="%BUILD_CONFIG%"
set PLATFORM_PARAMETER=/p:Platform="%PLATFORM_CONFIG%"
set CPU_PARAMETER=/maxcpucount:%MAX_CPU_CONFIG%
set PLATFORM_TOOLSET=/p:PlatformToolset=%PLATFORM_VER%
pushd ..\..\
cmake CMakeLists.txt -G "Visual Studio 15 2017 Win64"
%MSBUILD% assimp.sln %CONFIG_PARAMETER% %PLATFORM_PARAMETER% %CPU_PARAMETER% %PLATFORM_TOOLSET%
popd
endlocal
| MadManRises/Madgine | shared/assimp/tools/make/make_all_win32_x64.bat | bat | mit | 511 |
@CMD
| flake123p/ProjectH | OS_Script/BAT/B01_CopyFromOtherFolder/main/_cmd.bat | bat | gpl-3.0 | 6 |
@echo off
call :do cd %~dp0
call :do call Dependencies Set
:: Rad Studio: "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\bds.exe"
:: Delphi: "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\bds.exe" -pDelphi
:: C++ Builder "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\bds.exe" -pCBuilder
:: call :do start bds.exe -pDelphi
FOR /F "tokens=2*" %%P IN ('REG QUERY HKEY_CURRENT_USER\Software\Embarcadero\BDS\14.0 /v App 2^>NUL') DO call :do start "Delphi XE6" "%%Q" -pDelphi
pause
goto :eof
:do
echo %*
%*
goto :eof
| wesller/DUnitX | Run-Dependend-Delphi-XE6-From-Path.bat | bat | apache-2.0 | 570 |
@echo // Copyright (C) 1996-2008 Markus F.X.J. Oberhumer
@echo //
@echo // DOS 32-bit
@echo // Watcom C/C++ (using DOS/4G extender)
@echo //
@call b\prepare.bat
@if "%BECHO%"=="n" echo off
set CC=wcl386 -zq -mf -5r -bt#dos -l#dos4g
set CF=-ox -zc %CFI% %CFASM%
set LF=%BLIB%
%CC% %CF% -c src\*.c
@if errorlevel 1 goto error
wlib -q -b -n -t %BLIB% @b\win32\wc.rsp
@if errorlevel 1 goto error
%CC% %CF% examples\dict.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\lzopack.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\precomp.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\precomp2.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\simple.c %LF%
@if errorlevel 1 goto error
%CC% %CF% lzotest\lzotest.c %LF%
@if errorlevel 1 goto error
@call b\done.bat
@goto end
:error
@echo ERROR during build!
:end
@call b\unset.bat
| walkerka/opentoonz | thirdparty/lzo/2.03/B/dos32/wc.bat | bat | bsd-3-clause | 854 |
@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\django-filer.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-filer.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
| nimbis/django-filer | docs/make.bat | bat | bsd-3-clause | 4,118 |
::
:: Script to prepare Remote PC package contents.
::
:: Dependencies
set QT_PATH=c:\Dev\Qt\5.2.1\msvc2012_64_opengl
set VS_PATH=c:\Program Files (x86)\Microsoft Visual Studio 11.0
:: Copy VC++ runtime dependencies.
copy /Y "%VS_PATH%\VC\redist\x64\Microsoft.VC110.CRT\msvcp110.dll" .\release
copy /Y "%VS_PATH%\VC\redist\x64\Microsoft.VC110.CRT\msvcr110.dll" .\release
:: Copy QT libraries.
copy /Y %QT_PATH%\bin\icudt51.dll .\release
copy /Y %QT_PATH%\bin\icuin51.dll .\release
copy /Y %QT_PATH%\bin\icuuc51.dll .\release
copy /Y %QT_PATH%\bin\Qt5Core.dll .\release
copy /Y %QT_PATH%\bin\Qt5Gui.dll .\release
copy /Y %QT_PATH%\bin\Qt5Widgets.dll .\release
mkdir .\release\plugins\platforms
mkdir .\release\plugins\imageformats
copy /Y %QT_PATH%\plugins\platforms\qwindows.dll .\release\plugins\platforms
copy /Y %QT_PATH%\plugins\imageformats\qjpeg.dll .\release\plugins\imageformats
:: Copy help contents.
mkdir .\release\help
XCOPY ..\..\..\doc\RemotePCHelp\*.* .\release\help /E /I /Y /EXCLUDE:ignore.txt
:: Copy license stuff.
COPY /Y ..\..\..\doc\License\EULA.txt .\release
COPY /Y ..\..\..\doc\License\LIBS.txt .\release
| egorpushkin/iremote | dev/bin/win/prepare.bat | bat | mit | 1,135 |
@echo off
cls
packages\build\FAKE\tools\FAKE.exe doc.fsx %*
| pocketberserker/FAKE.GitBook | doc.cmd | bat | mit | 65 |
::
:: Deploy to GAE
::
:: What's the date on Windows
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "YYYY=%dt:~0,4%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set "HH=%dt:~8,2%" & set "Min=%dt:~10,2%" & set "Sec=%dt:~12,2%"
set "timestamp=%HH%%Min%%Sec%"
set "datestamp=%YYYY%-%MM%-%DD%"
::
:: Then deploy
::c:\python27\python "C:\Program Files (x86)\Google\google_appengine\appcfg.py"^
:: update ./web_app -V %datestamp%
::c:\Python27\python "c:\Program Files\Google\google_appengine\appcfg.py"^
:: update ./web_app -V %datestamp%
c:\python27\python "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\appcfg.py"^
update ./web_app -V 2017-06-15
pause | joejcollins/WomertonFarm | deploy.cmd | bat | mit | 746 |
@ECHO OFF
set MSYS2_PATH_TYPE=inherit
"C:\dev\ngi\usr\bin\mintty.exe" "/usr/bin/bash" --login | andeee/dotfiles | win32/bin/bash.bat | bat | mit | 93 |
set TOPDIR=%~dp0..\..
set MBDIR=projects\android
set GEN=ndk_android
@for %%* in (.) do set PROJECTNAME=%%~n*
%TOPDIR%\bin\windows\metabuilder --input metabuilder.lua --gen %GEN% --metabase %TOPDIR%\metabase --outdir metatmp
start metatmp\%PROJECTNAME%\%GEN%\
GOTO success
:error
pause
exit /b 1
:success
exit /b 0
| kjmac123/metabuilder | metabuilder/examples/mobileapp/ndk_android_windows.bat | bat | mit | 321 |
@ECHO OFF
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
IF '%errorlevel%' == '0' GOTO hasAdmin
ECHO Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
ECHO UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
EXIT /B
:hasAdmin
IF EXIST "%temp%\getadmin.vbs" ( DEL "%temp%\getadmin.vbs" )
ECHO Registering DeviareCOM.dll and DeviareCOM64.dll...
regsvr32 /s "%~dp0\DeviareCOM.dll"
regsvr32 /s "%~dp0\DeviareCOM64.dll"
PAUSE
| shinznatkid/SocketHook | Binary/RegisterCOMObjects.bat | bat | mit | 518 |
@echo off
set path=%path%;d:\L9T\labs\haskell\audiohs\libs
if "%1"=="configure" cabal configure -frunExamples --enable-test --extra-lib-dir=D:\L9T\labs\haskell\audiohs\libs
cabal build
cabal test --show-details=always
| lemol/audiohs | build.bat | bat | mit | 220 |
@git receive-pack %* | vethal/git-smart-http | script/git-receive-pack.cmd | bat | mit | 20 |
:: Setup SVN ignores (SVN v1.7+)
svn propset svn:ignore -R -F .svnignore .
| larsonjj/generator-pistacheo | app/templates/svn-init.bat | bat | mit | 75 |
cmd /k npm run-script build
| usab/NeoWalletGenerator | run build windows.cmd | bat | mit | 29 |
cp %1 chapter.ipynb
ipython nbconvert --to latex chapter.ipynb
ipython to_pdf.py chapter.tex
| zaqwes8811/micro-apps | self_driving/deps/Kalman_and_Bayesian_Filters_in_Python_master/pdf/make_chapter.bat | bat | mit | 95 |
cmd_/home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/bin2gray.ko := ld -r -m elf_i386 -T /usr/src/linux-headers-2.6.32-122-rtai/scripts/module-common.lds --build-id -o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/bin2gray.ko /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/bin2gray.o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/bin2gray.mod.o
| CalvinHsu1223/LinuxCNC-HAL-EtherCAT-Driver-with-ILC | src/.bin2gray.ko.cmd | bat | gpl-2.0 | 341 |
cmd_fs/ext3/built-in.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o fs/ext3/built-in.o fs/ext3/ext3.o
| dizgustipated/BOCA-2.6.35.14 | fs/ext3/.built-in.o.cmd | bat | gpl-2.0 | 123 |
cmd_sound/pci/ice1712/built-in.o := rm -f sound/pci/ice1712/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/pci/ice1712/built-in.o
| asopov/linux-tpt-2.6.39 | sound/pci/ice1712/.built-in.o.cmd | bat | gpl-2.0 | 188 |
cmd_sound/core/snd-rawmidi.o := /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o sound/core/snd-rawmidi.o sound/core/rawmidi.o
| arshull/GalaTab3_Kernel | sound/core/.snd-rawmidi.o.cmd | bat | gpl-2.0 | 153 |
cmd_drivers/tty/ipwireless/built-in.o := rm -f drivers/tty/ipwireless/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/tty/ipwireless/built-in.o
| selva-simple/Galaxy-R-Kernel | drivers/tty/ipwireless/.built-in.o.cmd | bat | gpl-2.0 | 198 |
cmd_lib/radix-tree.o := arm-eabi-gcc -Wp,-MD,lib/.radix-tree.o.d -nostdinc -isystem /home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -I/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(radix_tree)" -D"KBUILD_MODNAME=KBUILD_STR(radix_tree)" -c -o lib/radix-tree.o lib/radix-tree.c
deps_lib/radix-tree.o := \
lib/radix-tree.c \
$(wildcard include/config/base/small.h) \
include/linux/errno.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.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/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include/stdarg.h \
include/linux/linkage.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/irqflags.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hwcap.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
arch/arm/mach-tegra/include/mach/barriers.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/div64.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/stat.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
include/linux/const.h \
arch/arm/mach-tegra/include/mach/memory.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/smp.h \
arch/arm/mach-tegra/include/mach/smp.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hardware/gic.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/timex.h \
arch/arm/mach-tegra/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/elf.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/radix-tree.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slab.h) \
include/linux/slab_def.h \
include/trace/events/kmem.h \
include/trace/events/gfpflags.h \
include/linux/kmalloc_sizes.h \
include/linux/cpu.h \
$(wildcard include/config/arch/cpu/probe/release.h) \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/sysdev.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/node.h \
$(wildcard include/config/memory/hotplug/sparse.h) \
$(wildcard include/config/hugetlbfs.h) \
lib/radix-tree.o: $(deps_lib/radix-tree.o)
$(deps_lib/radix-tree.o):
| timmytim/honeybutter_kernel | lib/.radix-tree.o.cmd | bat | gpl-2.0 | 19,416 |
%windir%\microsoft.net\framework\v3.5\msbuild YATE.sln
@IF %ERRORLEVEL% NEQ 0 PAUSE | tws67/yate-in-vs2008 | windows/debugbuild.bat | bat | gpl-2.0 | 86 |
cmd_sound/i2c/other/built-in.o := rm -f sound/i2c/other/built-in.o; /home/aashir/android/toolchain/linaro/bin/arm-eabi-ar rcsD sound/i2c/other/built-in.o
| emwno/android_kernel_U8500 | sound/i2c/other/.built-in.o.cmd | bat | gpl-2.0 | 155 |
cmd_net/802/built-in.o := rm -f net/802/built-in.o; ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ar rcs net/802/built-in.o
| spacecaker/CM7_Space_Kernel_Cooper | net/802/.built-in.o.cmd | bat | gpl-2.0 | 129 |
@java -cp jdip.jar dip.misc.TestSuite -brief datc.txt >datc_out
| rgo/jDip | etc/scripts/test_datc.bat | bat | gpl-2.0 | 69 |
cmd_/home/liu/snull/snull.ko := ld -r -m elf_x86_64 -T /usr/src/linux-headers-3.5.0-40-generic/scripts/module-common.lds --build-id -o /home/liu/snull/snull.ko /home/liu/snull/snull.o /home/liu/snull/snull.mod.o
| tiantang46800/driver_net | snull/.snull.ko.cmd | bat | gpl-2.0 | 213 |
cmd_block/blk-ioc.o := ppc_4xx-gcc -m32 -Wp,-MD,block/.blk-ioc.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(blk_ioc)" -D"KBUILD_MODNAME=KBUILD_STR(blk_ioc)" -c -o block/.tmp_blk-ioc.o block/blk-ioc.c
deps_block/blk-ioc.o := \
block/blk-ioc.c \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \
$(wildcard include/config/phys/64bit.h) \
include/asm-generic/int-ll64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \
$(wildcard include/config/power4/only.h) \
$(wildcard include/config/ibm405/err77.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \
$(wildcard include/config/ppc/e500mc.h) \
$(wildcard include/config/e500.h) \
$(wildcard include/config/smp.h) \
include/linux/stringify.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \
$(wildcard include/config/ppc64.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/typecheck.h \
include/linux/dynamic_debug.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \
include/linux/byteorder/big_endian.h \
include/linux/swab.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \
include/linux/byteorder/generic.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \
$(wildcard include/config/vsx.h) \
$(wildcard include/config/ppc32.h) \
$(wildcard include/config/ppc/prep.h) \
$(wildcard include/config/task/size.h) \
$(wildcard include/config/kernel/start.h) \
$(wildcard include/config/4xx.h) \
$(wildcard include/config/booke.h) \
$(wildcard include/config/altivec.h) \
$(wildcard include/config/spe.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \
$(wildcard include/config/40x.h) \
$(wildcard include/config/fsl/emb/perfmon.h) \
$(wildcard include/config/8xx.h) \
$(wildcard include/config/ppc/book3s/64.h) \
$(wildcard include/config/ppc/book3s/32.h) \
$(wildcard include/config/ppc/book3e/64.h) \
$(wildcard include/config/e200.h) \
$(wildcard include/config/ppc/cell.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \
$(wildcard include/config/mpc10x/bridge.h) \
$(wildcard include/config/ppc/83xx.h) \
$(wildcard include/config/8260.h) \
$(wildcard include/config/ppc/mpc52xx.h) \
$(wildcard include/config/bdi/switch.h) \
$(wildcard include/config/power3.h) \
$(wildcard include/config/power4.h) \
$(wildcard include/config/44x.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \
$(wildcard include/config/403gcx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \
$(wildcard include/config/debugger.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/6xx.h) \
$(wildcard include/config/booke/wdt.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \
$(wildcard include/config/ppc/book3e.h) \
$(wildcard include/config/perf/events.h) \
include/linux/errno.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \
$(wildcard include/config/ppc/64k/pages.h) \
$(wildcard include/config/ppc/16k/pages.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/relocatable.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/ppc/std/mmu/64.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/ppc/smlpar.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \
$(wildcard include/config/crash/dump.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/not/coherent/cache.h) \
$(wildcard include/config/pte/64bit.h) \
include/asm-generic/getorder.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.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/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \
$(wildcard include/config/spu/base.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/detect/hung/task.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/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/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
include/trace/define_trace.h \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \
$(wildcard include/config/dynamic/ftrace.h) \
include/trace/events/module.h \
include/linux/bio.h \
$(wildcard include/config/block.h) \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/highmem.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable-ppc32.h \
$(wildcard include/config/consistent/size.h) \
$(wildcard include/config/fsl/booke.h) \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io.h \
$(wildcard include/config/ra.h) \
$(wildcard include/config/rd.h) \
$(wildcard include/config/ppc/indirect/io.h) \
$(wildcard include/config/eeh.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \
$(wildcard include/config/swiotlb.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \
$(wildcard include/config/ppc/iseries.h) \
$(wildcard include/config/power.h) \
$(wildcard include/config/8xx/cpu6.h) \
include/asm-generic/iomap.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \
$(wildcard include/config/ppc/std/mmu.h) \
$(wildcard include/config/kgdb.h) \
$(wildcard include/config/xmon.h) \
$(wildcard include/config/kprobes.h) \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/uaccess.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cacheflush.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kmap_types.h \
include/linux/mempool.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
$(wildcard include/config/blk/cgroup.h) \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/pagemap.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hardirq.h \
include/asm-generic/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumasks/offstack.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq.h \
$(wildcard include/config/nr/irqs.h) \
$(wildcard include/config/irqstacks.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
include/linux/irq_cpustat.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/writeback.h \
include/linux/bsg.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma.h \
include/linux/elevator.h \
include/linux/bootmem.h \
$(wildcard include/config/have/arch/bootmem/node.h) \
$(wildcard include/config/have/arch/alloc/remap.h) \
block/blk.h \
$(wildcard include/config/fail/io/timeout.h) \
block/blk-ioc.o: $(deps_block/blk-ioc.o)
$(deps_block/blk-ioc.o):
| mattkelly/linux-2.6-xlnx | block/.blk-ioc.o.cmd | bat | gpl-2.0 | 26,073 |
@echo off
title ECalc Build
rem ---------------------------------------------------------------------------
rem Prepare
rem ---------------------------------------------------------------------------
if exist bin\release echo Y | rmdir /s bin\release
if exist bin\release echo I | rmdir /s bin\release
goto compile
rem ---------------------------------------------------------------------------
rem compile
rem ---------------------------------------------------------------------------
:compile
echo Compiling ...
set compiler="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe"
%compiler% ECalc.sln /Build Release
goto clean
rem ---------------------------------------------------------------------------
rem cleanup
rem ---------------------------------------------------------------------------
:clean
echo Cleaning ...
cd bin\Release
del *.pdb
del MahApps.Metro.xml
del IronPython.*.xml
del IronPython.xml
del Microsoft.Scripting.*.xml
del Microsoft.Scripting.xml
del Microsoft.Dynamic.xml
del ICSharpCode.AvalonEdit.xml
cd ..
pause | webmaster442/ECalc | Compile.cmd | bat | gpl-3.0 | 1,077 |
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"ruby.exe" "/usr/bin/gem" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"ruby.exe" "%~dpn0" %*
| justathoughtor2/atomicApe | cygwin/bin/gem.bat | bat | gpl-3.0 | 140 |
@echo off
cd %~dp0
set TextTransform=..\..\OrangeShare\Windows\tools\TextTemplating\bin\TextTransform.exe
if not exist %TextTransform% call ..\..\OrangeShare\Windows\tools\TextTemplating\build.cmd
echo running texttransform..
%TextTransform% -out Defines.cs Defines.tt
%TextTransform% -out GlobalAssemblyInfo.cs GlobalAssemblyInfo.tt
%TextTransform% -out GlobalAssemblyInfoGit.cs GlobalAssemblyInfoGit.tt
| kylefransham/OrangeSync | OrangeLib/windows/transform_tt.cmd | bat | gpl-3.0 | 408 |
@echo off
echo Assembling . . .
echo.
brass usbtest.asm usbtest.8xp -l usbtest.html
echo .defcont +1>> build_number.asm
rem echo.
rem echo Signing. . . .
rem rabbitsign -g -o usbtest.8ck usbtest.hex
echo.
echo Build complete.
echo. | drdnar/usbcore | build.bat | bat | gpl-3.0 | 231 |
@if "%TOOLSET%"=="" goto NoToolset
@if not "%CHANNELS%"=="" goto ChannelOK
@set CHANNELS=8
:ChannelOK
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% task.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% main.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% ppm.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% lcd.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% input.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% buzzer.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% timer.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% eeprom.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% config.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% calc.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_common.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_service.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_global.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_popup.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_mix.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_key.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% menu_timer.c
%TOOLSET%/cxstm8 +warn +proto +mods0 +debug -i. -i%TOOLSET%/Hstm8 -l -pxp -ac -dMAX_CHANNELS=%CHANNELS% vector.c
%TOOLSET%/clnk -l%TOOLSET%/Lib -o gt3b.sm8 -mgt3b.map compile.lkf
%TOOLSET%/cvdwarf gt3b.sm8
%TOOLSET%/chex -o gt3b.s19 gt3b.sm8
@goto:EOF
:NoToolset
@echo TOOLSET variable is not set, set it with "set TOOLSET=path"
| semerad/gt3b | compile.bat | bat | gpl-3.0 | 2,527 |
java -cp .;lib\dxfeed-samples.jar;lib\qds.jar com.dxfeed.sample.console.LastEventsConsole | Devexperts/QD | dxfeed-samples/files/lastevents.bat | bat | mpl-2.0 | 89 |
@echo off
echo Running MF2005...
..\..\..\..\mf2005\msvs\Release\mf2005.exe testrivmvr.nam
pause
| jdhughes-usgs/river-eel | examples/mf6/test104_riv_mvr/mf2005/runmf2005.bat | bat | lgpl-3.0 | 97 |
REM This technically runs it...but who cares?
rdmd program.d
| ErichDonGubler/CS-3450-Project-Templates | src/templates/d/build.bat | bat | unlicense | 61 |
:: Licensed to the Apache Software Foundation (ASF) under one
:: or more contributor license agreements. See the NOTICE file
:: distributed with this work for additional information
:: regarding copyright ownership. The ASF licenses this file
:: to you under the Apache License, Version 2.0 (the
:: "License"); you may not use this file except in compliance
:: with the License. You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing,
:: software distributed under the License is distributed on an
:: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
:: KIND, either express or implied. See the License for the
:: specific language governing permissions and limitations
:: under the License
@ECHO OFF
SET script_path="%~dp0package.js"
IF EXIST %script_path% (
node -e "require('./%script_path%').listDevices().done(function(devices){console.log(devices)})"
) ELSE (
ECHO.
ECHO ERROR: Could not find 'package' script in 'cordova/lib' folder, aborting...>&2
EXIT /B 1
)
| cvaconsulting/moodlemobile-windows8 | cordova/lib/list-devices.bat | bat | apache-2.0 | 1,097 |
cmd_miscutils/man.o := gcc -Wp,-MD,miscutils/.man.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-builtin-printf -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(man)" -D"KBUILD_MODNAME=KBUILD_STR(man)" -c -o miscutils/man.o miscutils/man.c
deps_miscutils/man.o := \
miscutils/man.c \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/less.h) \
/usr/include/stdc-predef.h \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/verbose.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdbool.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/paths.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/libgen.h \
/usr/include/poll.h \
/usr/include/x86_64-linux-gnu/sys/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll2.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/x86_64-linux-gnu/bits/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/mntent.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/utmp.h \
/usr/include/x86_64-linux-gnu/bits/utmp.h \
/usr/include/utmpx.h \
/usr/include/x86_64-linux-gnu/bits/utmpx.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
miscutils/man.o: $(deps_miscutils/man.o)
$(deps_miscutils/man.o):
| rennman/copfvtci | build/busybox-1.25.1/miscutils/.man.o.cmd | bat | apache-2.0 | 10,203 |
cd %1
del /f /q BuildArtifacts\FlexibleServiceHost.*
Tools\ILMerge\ILMerge.exe /t:library /closed /xmldocs /useFullPublicKeyForReferences /out:BuildArtifacts\FlexibleServiceHost.dll BuildArtifacts\Release\FlexibleServiceHost.dll BuildArtifacts\Release\NLog.dll | antagonist112358/flexiblehost | Scripts/PostBuild.bat | bat | apache-2.0 | 262 |
@echo off
setlocal
@echo off
REM # Get to the pwiz root directory
set SCRIPTS_MISC_ROOT=%~dp0
set SCRIPTS_MISC_ROOT=%SCRIPTS_MISC_ROOT:~0,-1%
pushd %SCRIPTS_MISC_ROOT%\..\..
REM # argument of 32 or 64 sets target platform (default 32)
set TARGETPLATFORM=32
set ALL_ARGS= %*
if "%ALL_ARGS: 32=%" neq "%ALL_ARGS%" (
set TARGETPLATFORM=32
set ALL_ARGS=%ALL_ARGS: 32=%
)
if "%ALL_ARGS: 64=%" neq "%ALL_ARGS%" (
set TARGETPLATFORM=64
set ALL_ARGS=%ALL_ARGS: 64=%
)
set EXIT=0
set PROGRAM_FILES_DRIVE=%ProgramFiles:~0,2%
REM # register correct MSFileReader
call pwiz_tools\reg-controls.bat %TARGETPLATFORM%
if %ERRORLEVEL% NEQ 0 exit /b 1
REM # call clean
echo ##teamcity[progressMessage 'Cleaning project...']
call clean.bat
set EXIT=%ERRORLEVEL%
if %EXIT% NEQ 0 set ERROR_TEXT=Error performing clean & goto error
REM # the -p1 argument overrides bjam's default behavior of merging stderr into stdout
REM # the --abbreviate-paths argument abbreviates paths like .../ftr1-value/ftr2-value/...
REM # call quickbuild to build and run tests
echo ##teamcity[progressMessage 'Running build-apps...']
echo quickbuild.bat %ALL_ARGS% -p1 --abbreviate-paths --teamcity-test-decoration --without-compassxtract
call quickbuild.bat %ALL_ARGS% -p1 --abbreviate-paths --teamcity-test-decoration --without-compassxtract
set EXIT=%ERRORLEVEL%
if %EXIT% NEQ 0 set ERROR_TEXT=Error running quickbuild & goto error
popd
:error
if %EXIT% NEQ 0 echo ##teamcity[message text='%ERROR_TEXT%' status='ERROR']
exit /b %EXIT%
| biospi/mzmlb | pwiz/scripts/misc/tcbuild-apps.bat | bat | apache-2.0 | 1,571 |
@echo off
:#*****************************************************************************
:# *
:# Filename: make.bat *
:# *
:# Description: Front end to nmake, to build 16, 32 and 64 bits targets *
:# *
:# Notes: Designed to have a look-and-feel like that of Unix make. *
:# *
:# Options beginning with a - are interpreted locally. *
:# Ideally they should be compatible with that of Unix make. *
:# Options beginning with a / are passed on to nmake. *
:# *
:# Builds the 16-bits MS-DOS version if Visual C++ 1.52 is *
:# installed in its default location in C:\MSVC. *
:# *
:# When building real targets, logs all output, including *
:# that on stderr, into a TARGET.log file. This file is *
:# automatically loaded in Notepad in case of error. *
:# *
:# When building pseudo-targets, like clean or list_dirs, *
:# no logging is done, and all output goes to stdout/stderr. *
:# *
:# Invokes configure.bat if config.HOSTNAME.bat is absent. *
:# See configure.bat header for a description of its action, *
:# and of that of the optional configure.XXX.bat files. *
:# *
:# History: *
:# 2003-03-31 JFL Adapted from previous projects *
:# 2008-02-13 JFL Adapted to Visual Studio 2005 *
:# 2009-04-29 JFL Adapted to Visual Studio 2008 *
:# 2009-10-18 JFL Adapted to Windows 7 64-bits *
:# 2010-03-19 JFL Added support for building 64-bits Windows programs. *
:# 2010-04-07 JFL Added option -f to specify a make file. *
:# 2011-02-02 JFL Use a dedicated logging routine. *
:# Added boost paths. *
:# 2011-05-23 JFL Restructured symmetrically 16/32/64 bits tools discovery. *
:# 2012-10-01 JFL Fixed the location of the 64-bits rc.exe. *
:# 2012-10-16 JFL Use a default NMakeFile if one is available *
:# 2014-03-05 JFL Add support for Visual Studio 10 to 13. *
:# 2014-03-06 JFL Changed the log file extension to .log. *
:# 2014-03-21 JFL Moved personal settings to an outside config.bat file. *
:# 2014-03-24 JFL Define MSVCINC16/32/64 = short path of MSVC include files.*
:# 2014-04-04 JFL Fix and document in help support for using nmake options. *
:# 2014-04-21 JFL Split-off Microsoft tools discovery into configure.bat. *
:# Split-off all project-specific settings into ad-hoc *
:# configure.XXX.bat scripts. *
:# 2014-04-22 JFL Fixed the clean target, when 16-tools are missing. *
:# 2014-06-10 JFL Added the ability to get the default goal name from a *
:# rule in the make file, with the target "goal_name". *
:# 2014-06-24 JFL Added option -v to display verbose make output. *
:# 2014-12-03 JFL Added option -q to skip displaying the result message. *
:# 2015-01-06 JFL Log two bars around config.bat contents. *
:# 2015-01-14 JFL Updated PATH to be compatible with more VS versions. *
:# Rename config.bat as config.%COMPUTERNAME%.bat. *
:# 2015-01-16 JFL Updated help. *
:# 2015-10-15 JFL Do not run nmake if configure.bat fails. *
:# Fixed make help. *
:# 2015-10-16 JFL Renamed %POST_MAKE_ACTIONS%, and return nmake's exit code.*
:# 2015-10-30 JFL Added option -c to force using a different config. *
:# 2015-11-09 JFL Added my debugging framework. *
:# Infer the makefile name from the subdir of the targets. *
:# 2015-10-30 JFL Added option -o to select which nmake to use. *
:# Added option -L to avoid logging the output. This allows *
:# running make.bat recursively. *
:# 2016-07-12 JFL Store the log file in %OUTDIR% if defined. *
:# 2016-09-02 JFL Fixed the -f option. (Likely broken by 2015-01-09 changes)*
:# 2016-09-30 JFL Merged in the latest batch debugging library updates. *
:# Set the PID variable with the cmd.exe process ID. Useful *
:# for sub-scripts or make files to generate unique IDs. *
:# 2016-10-03 JFL Display list_programs pseudo target output directly. *
:# Fixed the :nmake routine to avoid creating a log file. *
:# 2016-10-04 JFL Fixed logging in case an OUTDIR is defined. *
:# Display build messages only if var. MESSAGES is defined. *
:# 2016-10-05 JFL Added Unix make-compatible option -C to change directory. *
:# Added option -u to upgrade the make scripts. *
:# 2016-10-06 JFL Added option -cde to clean debug environment variables. *
:# 2016-10-08 JFL Do not show the result when invoked recursively with -L. *
:# 2016-10-11 JFL Adapted for use in SysToolsLib global C include dir. *
:# Clear a few variables that pollute the (nmake /P) logs. *
:# 2016-10-13 JFL Added support for target cleanenv. *
:# 2016-10-19 JFL Gracefully fail if configuration failed. *
:# 2016-10-20 JFL Bug fix: Must now look for %OS%.mak in %STINCLUDE% dir. *
:# 2016-10-31 JFL Bug fix: Avoid a "file not found" error in recursive makes.
:# Define variables NMAKE, BMAKE and BCONF. *
:# 2016-11-02 JFL Automatically inherit the log file in recursive makes. *
:# Added option -l, and rewrote option -L. *
:# 2016-11-03 JFL Removed variable SHOW_RESULT and added variable MAKEDEPTH.*
:# 2016-11-04 JFL Fixed routine :CleanBuildEnvironment. *
:# 2016-11-05 JFL Fixed :Exec bug in XP/64. *
:# Indent sub-scripts output in debug mode. *
:# Avoid getting the PID if we have it already. *
:# 2016-11-07 JFL Updated the 10/19 errorlevel fix to work for DO and EXEC. *
:# 2016-11-08 JFL Change back to using variable MAKE, required by nmake<=7.1*
:# 2016-12-13 JFL Any goal that begins with "list_" and that contains no . *
:# or \ is assumed to be a pseudo-target not to be logged. *
:# Added options -q and -Q to set the output capture manually.
:# 2016-12-16 JFL Updated the batch library framework. *
:# 2017-02-22 JFL Look for default make files in the STINCLUDE directory. *
:# Added option -U to undefine variables. *
:# 2017-02-24 JFL Renamed the special "goal_name" as "module_name". *
:# Use this module_name earlier when making the log file name.
:# Default to the current directory name as the last resort. *
:# 2017-03-01 JFL Added variable IGNORE_NMAKEFILE for dealing with unwanted *
:# NMakefile homonyms. *
:# 2017-03-05 JFL Added variable LOGDIR to control where to store the log. *
:# 2017-03-10 JFL Get nmake.exe path from WIN32_PATH or WIN64_PATH. *
:# 2017-10-22 JFL Changed OUTDIR default to the bin subdirectory. *
:# Added %MD_OUTDIR% to allow creating a junction or symlink.*
:# 2017-10-22 JFL Support goals like bin\WIN32\myprog.exe. *
:# 2017-10-27 JFL Fixed OUTDIR changes. *
:# 2020-01-06 JFL Output a more helpful message if can't find nmake.exe. *
:# 2020-01-29 JFL In the end, count warnings, and open the log if any found.*
:# 2020-12-16 JFL Added optional LINK_OUDIR to link OUTDIR to another one. *
:# 2021-06-03 JFL Avoid counting constants like NO_WARNINGS as warnings. *
:# *
:# © Copyright 2016-2020 Hewlett Packard Enterprise Development LP *
:# Licensed under the Apache 2.0 license www.apache.org/licenses/LICENSE-2.0 *
:#*****************************************************************************
setlocal EnableExtensions EnableDelayedExpansion
set "VERSION=2021-06-03"
set "SCRIPT=%~nx0" &:# Script name
set "SPATH=%~dp0" & set "SPATH=!SPATH:~0,-1!" &:# Script path, without the trailing \
set "ARG0=%~f0" &:# Script full pathname
set ^"ARGS=%*^" &:# Argument line
:# Initialize the most commonly used library components.
call :Library.Init
:# Go process command-line arguments
goto Main
:#----------------------------------------------------------------------------#
:# #
:# Function Library.Init #
:# #
:# Description Initialize the most commonly used library components #
:# #
:#----------------------------------------------------------------------------#
:Library.Init
:# Initialize this library modules definitions.
:# Each one depends on the preceding ones, so if you need one, you need all the preceding ones as well.
call :Call.Init &:# Function calls and argument extraction
call :Macro.Init &:# Inline macros generation
call :Debug.Init &:# Debug routines
call :Exec.Init &:# Conditional execution routines
:# FOREACHLINE macro. (Changes the delimiter to none to catch the whole lines.)
set FOREACHLINE=for /f "delims="
:# HOME variable. For analogy with Unix systems.
if not defined HOME set "HOME=%HOMEDRIVE%%HOMEPATH%"
goto :eof
:#----------------------------------------------------------------------------#
:# #
:# Module Call #
:# #
:# Description Manage function calls and argument extraction #
:# #
:# Functions PopArg Pop the first argument from %ARGS% into #
:# %ARG% and %"ARG"% #
:# PopSimpleArg Simpler and faster version, incompatible #
:# with ! or ^ characters in ARG values. #
:# Prep2ExpandVars Prepare variables to return from the #
:# local scope (with expansion on or off) #
:# to a parent scope with expansion on. #
:# PrepArgVars Prepare variables containing pathnames #
:# that will be passed as arguments. #
:# #
:# Macros %POPARG% Pop one argument using :PopArg #
:# %POPSARG% Pop one argument using :PopSimpleArg #
:# %LCALL% Call a routine in this library, either #
:# locally, or from an outside script. #
:# %XCALL% Call an outside script routine, from #
:# another instance of that outside script. #
:# %XCALL@% Idem, but with all args stored in one var.#
:# #
:# Variables %ARG% The unquoted argument #
:# %"ARG"% The actual argument, possibly quoted #
:# %ARGS% Remaining command line arguments #
:# #
:# %CR% An ASCII Carrier Return character '\x0D' #
:# %LF% An ASCII Line Feed character '\x0A' #
:# %BS% An ASCII Back Space character '\x08' #
:# %FF% An ASCII Form Feed character '\x0C' #
:# #
:# Notes PopArg works around the defect of the shift command, #
:# which pops the first argument from the %* list, but does #
:# not remove it from %*. #
:# Also works around another defect with tricky characters #
:# like ! or ^ being lost when variable expansion is on. #
:# #
:# Important: The performance of this routine is much better #
:# when invoked with variable expansion disabled. This is #
:# due to the complex processing done to avoid issues with #
:# tricky characters like ! or ^ when expansion is enabled. #
:# If you're sure that NONE of the arguments contain such #
:# tricky characters, then call :PopSimpleArg. #
:# #
:# Uses an inner call to make sure the argument parsing is #
:# done by the actual cmd.exe parser. This guaranties that #
:# arguments are split exactly as shift would have done. #
:# #
:# But call itself has a quirk, which requires a convoluted #
:# workaround to process the /? argument. #
:# #
:# Known limitation: After using :PopArg, all consecutive #
:# argument separators in %ARGS% are replaced by one space. #
:# For example: "A==B" becomes "A B" #
:# This does not change the result of subsequent calls to #
:# :PopArg, but this prevents from using the tail itself as #
:# an argument. => Do not use :PopArg to get :Exec args! #
:# #
:# To do: Detect if the last arg has mismatched quotes, and #
:# if it does, append one. #
:# Right now such mismatched quotes will cause an error here.#
:# Do not work around this error to only pass back the bad #
:# argument, as this will only cause more errors further down#
:# #
:# History #
:# 2015-04-03 JFL Bug fix: Quoted args with an & inside failed to be poped. #
:# 2015-07-06 JFL Bug fix: Call quirk prevented inner call from popping /?. #
:# 2016-11-18 JFL Fixed popping arguments containing % characters. #
:# 2016-11-21 JFL Fixed popping quoted arguments containing &|<> characters.#
:# 2016-11-22 JFL Fixed popping arguments containing ^ characters. #
:# 2016-11-24 JFL Updated %POPARG% to work with trick characters ! and ^ in #
:# delayed expansion mode. The old and faster version is now #
:# called %POPSARG%. #
:# Added routine :Prep2ExpandVars allowing to pass any #
:# tricky string across call or endlocal barriers. #
:# 2016-12-01 JFL Added a %FF% Form Feed character variable. #
:# #
:#----------------------------------------------------------------------------#
call :Call.Init
goto Call.end
:Call.Init
if not defined LCALL set "LCALL=call" &:# Macro to call functions in this library
set "POPARG=%LCALL% :PopArg"
set "POPSARG=%LCALL% :PopSimpleArg"
:# Mechanism for calling subroutines in a second external instance of the top script.
set ^"XCALL=call "!ARG0!" -call^" &:# This is the top script's (or this lib's if called directly) ARG0
set ^"XCALL@=!XCALL! :CallVar^" &:# Indirect call, with the label and arguments in a variable
:# Define a LF variable containing a Line Feed ('\x0A')
set LF=^
%# The two blank lines here are necessary. #%
%# The two blank lines here are necessary. #%
:# Define a CR variable containing a Carriage Return ('\x0D')
for /f %%a in ('copy /Z %COMSPEC% nul') do set "CR=%%a"
:# Define a BS variable containing a BackSpace ('\x08')
:# Use prompt to store a backspace+space+backspace into a DEL variable.
for /F "tokens=1 delims=#" %%a in ('"prompt #$H# & echo on & for %%b in (1) do rem"') do set "DEL=%%a"
:# Then extract the first backspace
set "BS=%DEL:~0,1%"
:# Define a FF variable containing a Form Feed ('\x0C')
for /f %%A in ('cls') do set "FF=%%A"
:# Define variables for problematic characters, that cause parsing issues.
:# Use the ASCII control character name, or the html entity name.
:# Warning: The excl and hat characters need different quoting depending on context.
set "DEBUG.percnt=%%" &:# One percent sign
set "DEBUG.excl=^!" &:# One exclamation mark
set "DEBUG.hat=^" &:# One caret, aka. circumflex accent, or hat sign
set ^"DEBUG.quot="" &:# One double quote
set "DEBUG.apos='" &:# One apostrophe
set "DEBUG.amp=&" &:# One ampersand
set "DEBUG.vert=|" &:# One vertical bar
set "DEBUG.gt=>" &:# One greater than sign
set "DEBUG.lt=<" &:# One less than sign
set "DEBUG.lpar=(" &:# One left parenthesis
set "DEBUG.rpar=)" &:# One right parenthesis
set "DEBUG.lbrack=[" &:# One left bracket
set "DEBUG.rbrack=]" &:# One right bracket
set "DEBUG.sp= " &:# One space
set "DEBUG.tab= " &:# One tabulation
set "DEBUG.quest=?" &:# One question mark
set "DEBUG.ast=*" &:# One asterisk
set "DEBUG.cr=!CR!" &:# One carrier return
set "DEBUG.lf=!LF!" &:# One line feed
set "DEBUG.bs=!BS!" &:# One backspace
set "DEBUG.ff=!FF!" &:# One form feed
goto :eof
:PopArg
if "!!"=="" goto :PopArg.Eon
:PopArg.Eoff
:PopSimpleArg :# Will corrupt result if expansion is on and ARG contains ^ or ! characters.
:# Gotcha: The call parser first scans its command line for an unquoted /?.
:# If it finds one anywhere on the command line, then it ignores the target label and displays call help.
:# To work around that, we initialize %ARG% and %"ARG"% with an impossible combination of values.
set "ARG=Yes"
set ""ARG"=No"
set "PopArg.ARGS="
if defined ARGS (
setlocal EnableDelayedExpansion
for /f "delims=" %%a in ("!ARGS:%%=%%%%!") do endlocal & set ^"PopArg.ARGS=%%a^"
)
call :PopArg.Helper %PopArg.ARGS% >NUL 2>NUL &:# Output redirections ensure the call help is not actually output.
:# Finding that impossible combination now is proof that the call was not executed.
:# In this case, try again with the /? quoted, to prevent the call parser from processing it.
:# Note that we can not systematically do this /? enquoting, else it's "/?" that would break the call.
if "%ARG%"=="Yes" if [%"ARG"%]==[No] call :PopArg.Helper %PopArg.ARGS:/?="/?"%
set "PopArg.ARGS="
goto :eof
:PopArg.Helper
set "ARG=%~1" &:# Remove quotes from the argument
set ^""ARG"=%1^" &:# The same with quotes, if any, should we need them
if defined ARG set "ARG=%ARG:^^=^%"
if defined "ARG" set ^""ARG"=%"ARG":^^=^%^"
:# Rebuild the tail of the argument line, as shift does not do it
:# Never quote the set ARGS command, else some complex quoted strings break
set ARGS=%2
:PopArg.GetNext
shift
if defined ARGS set ^"ARGS=%ARGS:^^=^%^"
if [%2]==[] goto :eof
:# Leave quotes in the tail of the argument line
set ARGS=%ARGS% %2
goto :PopArg.GetNext
:PopArg.Eon
setlocal DisableDelayedExpansion
call :PopArg
call :Prep2ExpandVars ARG ^""ARG"^" ARGS
setlocal EnableDelayedExpansion
for /f %%a in ("-!ARG!") do for /f %%b in ("-!"ARG"!") do for /f %%c in ("-!ARGS!") do (
endlocal
endlocal
set "ARG=%%a"
set "ARG=!ARG:~1!"
set ^""ARG"=%%b^"
set ^""ARG"=!"ARG":~1!^"
set ^"ARGS=%%c^"
set "ARGS=!ARGS:~1!"
)
goto :eof
:# Prepare variables to return from the local scope (with expansion on or off) to a parent scope with expansion on
:Prep2ExpandVars VAR [VAR ...]
if "!!"=="" goto :Prep2ExpandVars.Eon
:Prep2ExpandVars.Eoff :# The local scope has expansion off
setlocal EnableDelayedExpansion
set "VALUE=!%~1!"
call :Prep2ExpandVars.Eon VALUE
endlocal & set "%~1=%VALUE%"
if not [%2]==[] shift & goto :Prep2ExpandVars.Eoff
goto :eof
:# Prepare variables, assuming the local scope itself has expansion on
:Prep2ExpandVars.Eon VAR [VAR ...]
if defined %1 (
for %%e in (sp tab cr lf quot amp vert lt gt hat percnt) do ( :# Encode named character entities
for %%c in ("!DEBUG.%%e!") do (
set "%~1=!%~1:%%~c= DEBUG.%%e !"
)
)
call set "%~1=%%%~1:^!= DEBUG.excl %%" & rem :# Encode exclamation points
call set "%~1=%%%~1: =^!%%" & rem :# Encode final expandable entities
)
if not [%2]==[] shift & goto :Prep2ExpandVars.Eon
goto :eof
:# Prepare variables containing pathnames that will be passed as "arguments"
:PrepArgVars
set "%~1=!%~1:%%=%%%%!" &:# Escape percent signs
if not [%2]==[] shift & goto :PrepArgVars
goto :eof
:# Indirect call, with the label and arguments in a variable
:CallVar CMDVAR
call !%1:%%=%%%%!
exit /b
:Call.end
:#----------------------------------------------------------------------------#
:# #
:# Module Macro #
:# #
:# Description Tools for defining inline functions, #
:# also known as macros by analogy with Unix shells macros #
:# #
:# Macros %MACRO% Define the prolog code of a macro #
:# %/MACRO% Define the epilog code of a macro #
:# #
:# Variables %LF1% A Line Feed ASCII character '\x0A' #
:# %LF2% Generates a LF when expanded twice #
:# %LF3% Generates a LF when expanded 3 times #
:# Etc... #
:# %\n% Macro command line separator #
:# #
:# Notes The principle is to define a variable containing the #
:# complete body of a function, like this: #
:# set $macro=for %%$ in (1 2) do if %%$==2 ( %\n% #
:# :# Define the body of your macro here %\n% #
:# :# Then return the result to the caller %\n% #
:# for /f "delims=" %%r in ('echo.%!%RETVAL%!%') do ( %\n% #
:# endlocal %&% set "RETVAL=%%~r" %\n% #
:# ) %\n% #
:# ) else setlocal enableDelayedExpansion %&% set ARGS= #
:# #
:# It is then invoked just like an external command: #
:# %$macro% ARG1 ARG2 ... #
:# #
:# The ideas that make all this possible were published on #
:# the dostips.com web site, in multiple messages exchanged #
:# by community experts. #
:# By convention on the dostips.com web site, macro names #
:# begin by a $ character; And the %\n% variable ends lines. #
:# The other variables are mine. #
:# #
:# The use of a for loop executed twice, is critical for #
:# allowing to place arguments behind the macro. #
:# The first loop executes only the tail line, which defines #
:# the arguments; The second loop executes the main body of #
:# the macro, which processes the arguments, and returns the #
:# result(s). #
:# To improve the readability of macros, replace the code in #
:# the first line by %MACRO%, and the code in the last line #
:# by %/MACRO% #
:# #
:# The use of the Line Feed character as command separator #
:# within macros is a clever trick, that helps debugging, #
:# but it is not necessary for macros to work. #
:# This helps debugging, because this allows to output the #
:# macro definition as a structured string spanning several #
:# lines, looking exactly like a normal function with one #
:# instruction per line. #
:# But it would be equally possible to define macros using #
:# the documented & character as command separator. #
:# #
:# Limitations: #
:# - A macro cannot call another macro. #
:# (This would require escaping all control characters in #
:# the sub-macro, so that they survive an additional #
:# level of expansion.) #
:# #
:# History #
:# 2015-04-15 JFL Initial version, based on dostips.com samples, with #
:# changes so that they work with DelayedExpansion on. #
:# 2015-11-27 JFL Added a primitive macro debugging capability. #
:# #
:#----------------------------------------------------------------------------#
call :Macro.Init
goto :Macro.End
:Macro.Init
:# LF generator variables, that become an LF after N expansions
:# %LF1% == %LF% ; %LF2% == To expand twice ; %LF3% == To expand 3 times ; Etc
:# Starting with LF2, the right # of ^ doubles on every line,
:# and the left # of ^ is 3 times the right # of ^.
set ^"LF1=^%LF%%LF%"
set ^"LF2=^^^%LF1%%LF1%^%LF1%%LF1%"
set ^"LF3=^^^^^^%LF2%%LF2%^^%LF2%%LF2%"
set ^"LF4=^^^^^^^^^^^^%LF3%%LF3%^^^^%LF3%%LF3%"
set ^"LF5=^^^^^^^^^^^^^^^^^^^^^^^^%LF4%%LF4%^^^^^^^^%LF4%%LF4%"
:# Variables for use in inline macro functions
set ^"\n=%LF3%^^^" &:# Insert a LF and continue macro on next line
set "^!=^^^^^^^!" &:# Define a %!%DelayedExpansion%!% variable
set "'^!=^^^!" &:# Idem, but inside a quoted string
set ">=^^^>" &:# Insert a redirection character
set "<=^^^<" &:# Insert a redirection character
set "&=^^^&" &:# Insert a command separator in a macro
:# Idem, to be expanded twice, for use in macros within macros
set "^!2=^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^!"
set "'^!2=^^^^^^^!"
set "&2=^^^^^^^^^^^^^^^&"
set "MACRO=for %%$ in (1 2) do if %%$==2" &:# Prolog code of a macro
set "/MACRO=else setlocal enableDelayedExpansion %&% set MACRO.ARGS=" &:# Epilog code of a macro
set "ENDMACRO=endlocal" &:# Ends the macro local scope started in /MACRO. Necessary before macro exit.
set "ON_MACRO_EXIT=for /f "delims=" %%r in ('echo" &:# Begin the return variables definitions
set "/ON_MACRO_EXIT=') do %ENDMACRO% %&% %%r" &:# End the return variables definitions
:# Primitive macro debugging definitions
:# Macros, usable anywhere, including within other macros, for conditionally displaying debug information
:# Use option -xd to set a > 0 macro debugging level.
:# Usage: %IF_XDLEVEL% N command
:# Runs command if the current macro debugging level is at least N.
:# Ex: %IF_XDLEVEL% 2 set VARIABLE
:# Recommended: Use set, instead of echo, to display variable values. This is sometimes
:# annoying because this displays other unwanted variables. But this is the only way
:# to be sure to display _all_ tricky characters correctly in any expansion mode.
:# Note: These debugging macros slow down a lot their enclosing macro.
:# They should be removed from the released code.
set "XDLEVEL=0" &:# 0=No macro debug; 1=medium debug; 2=full debug; 3=Even more debug
set "IF_XDLEVEL=for /f %%' in ('call echo.%%XDLEVEL%%') do if %%' GEQ"
goto :eof
:Macro.end
:#----------------------------------------------------------------------------#
:# #
:# Module Debug #
:# #
:# Description A collection of debug routines #
:# #
:# Functions Debug.Init Initialize debugging. Call once at first. #
:# Debug.Off Disable the debugging mode #
:# Debug.On Enable the debugging mode #
:# Debug.SetLog Set the log file #
:# Debug.Entry Log entry into a routine #
:# Debug.Return Log exit from a routine #
:# Verbose.Off Disable the verbose mode #
:# Verbose.On Enable the verbose mode #
:# Echo Echo and log strings, indented #
:# EchoVars Display the values of a set of variables #
:# EchoArgs Display the values of all arguments #
:# #
:# Macros %FUNCTION% Define and trace the entry in a function. #
:# %UPVAR% Declare a var. to pass back to the caller.#
:# %RETURN% Return from a function and trace it #
:# #
:# Always match uses of %FUNCTION% and %RETURN%. That is #
:# never use %RETURN% if there was no %FUNCTION% before it. #
:# #
:# :# Example of a factorial routine using this framework #
:# :Fact #
:# %FUNCTION% enableextensions enabledelayedexpansion #
:# %UPVAR% RETVAL #
:# set N=%1 #
:# if .%N%.==.0. ( #
:# set RETVAL=1 #
:# ) else ( #
:# set /A M=N-1 #
:# call :Fact !M! #
:# set /A RETVAL=N*RETVAL #
:# ) #
:# %RETURN% #
:# #
:# %ECHO% Echo and log a string, indented #
:# %LOG% Log a string, indented #
:# %ECHO.V% Idem, but display it in verbose mode only #
:# %ECHO.D% Idem, but display it in debug mode only #
:# #
:# %ECHOVARS% Indent, echo and log variables values #
:# %ECHOVARS.V% Idem, but display them in verb. mode only #
:# %ECHOVARS.D% Idem, but display them in debug mode only #
:# #
:# %IF_DEBUG% Execute a command in debug mode only #
:# %IF_VERBOSE% Execute a command in verbose mode only #
:# #
:# %FUNCTION0% Weak functions with no local variables. #
:# %RETURN0% Return from a %FUNCTION0% and trace it #
:# %RETURN#% Idem, with comments after the return #
:# #
:# Variables %>DEBUGOUT% Debug output redirect. Either "" or ">&2".#
:# %LOGFILE% Log file name. Inherited. Default=""==NUL #
:# Always set using call :Debug.SetLog #
:# %DEBUG% Debug mode. 0=Off; 1=On. Use functions #
:# Debug.Off and Debug.On to change it. #
:# Inherited. Default=0. #
:# %VERBOSE% Verbose mode. 0=Off; 1=On. Use functions #
:# Verbose.Off and Verbose.On to change it. #
:# Inherited. Default=0. #
:# %INDENT% Spaces to put ahead of all debug output. #
:# Inherited. Default=. (empty string) #
:# #
:# Notes All output from these routines is sent to the log file. #
:# In debug mode, the debug output is also sent to stderr. #
:# #
:# Traced functions are indented, based on the call depth. #
:# Use %ECHO% to get the same indentation of normal output. #
:# #
:# The output format matches the batch language syntax #
:# exactly. This allows copying the debug output directly #
:# into another command window, to check troublesome code. #
:# #
:# History #
:# 2011-11-15 JFL Split Debug.Init from Debug.Off, to improve clarity. #
:# 2011-12-12 JFL Output debug information to stderr, so that stdout can be #
:# used for returning information from the subroutine. #
:# 2011-12-13 JFL Standardize use of RETVAR/RETVAL, and display it on return.
:# 2012-07-09 JFL Restructured functions to a more "object-like" style. #
:# Added the three flavors of the Echo and EchoVars routines.#
:# 2012-07-19 JFL Added optimizations to improve performance in non-debug #
:# and non-verbose mode. Added routine Debug.SetLog. #
:# 2012-11-13 JFL Added macro LOG. Fixed setlocal bug in :EchoVars. #
:# 2013-08-27 JFL Changed %RETURN% to do exit /b. This allows returning #
:# an errorlevel by doing: %RETURN% %ERRORLEVEL% #
:# 2013-11-12 JFL Added macros %IF_DEBUG% and %IF_VERBOSE%. #
:# 2013-12-04 JFL Added variable %>DEBUGOUT% to allow sending debug output #
:# either to stdout or to stderr. #
:# 2015-10-29 JFL Added macro %RETURN#% to return with a comment. #
:# 2015-11-19 JFL %FUNCTION% now automatically generates its name & %* args.#
:# (Simplifies usage, but comes at a cost of about a 5% slow #
:# down when running in debug mode.) #
:# Added an %UPVAR% macro allowing to define the list of #
:# variables that need to make it back to the caller. #
:# %RETURN% (Actually the Debug.return routine) now handles #
:# this variable back propagation using the (goto) trick. #
:# This works well, but the performance is poor. #
:# 2015-11-25 JFL Rewrote the %FUNCTION% and %RETURN% macros to manage #
:# most common cases without calling a subroutine. This #
:# resolves the performance issues of the previous version. #
:# 2015-11-27 JFL Redesigned the problematic character return mechanism #
:# using a table of predefined generic entities. Includes #
:# support for returning strings with CR & LF. #
:# 2015-11-29 JFL Streamlined the macros and added lots of comments. #
:# The FUNCTION macro now runs with expansion enabled, then #
:# does a second setlocal in the end as requested. #
:# The RETURN macro now displays strings in debug mode with #
:# delayed expansion enabled. This fixes issues with CR & LF.#
:# Added a backspace entity. #
:# 2015-12-01 JFL Bug fix: %FUNCTION% with no arg did change the exp. mode. #
:# 2016-09-01 JFL Bug fix: %RETURN% incorrectly returned empty variables. #
:# 2016-11-02 JFL Bug fix: Avoid log file redirection failures in recursive #
:# scripts. #
:# 2016-11-13 JFL Bug fix: Correctly return special characters & | < > ? * #
:# 2016-11-24 JFL Fixed tracing %FUNCTION% arguments with ^ and % chars. #
:# #
:#----------------------------------------------------------------------------#
call :Debug.Init
goto :Debug.End
:Debug.Init
:# Preliminary checks to catch common problems
if exist echo >&2 echo WARNING: The file "echo" in the current directory will cause problems. Please delete it and retry.
:# Inherited variables from the caller: DEBUG, VERBOSE, INDENT, >DEBUGOUT
:# Initialize other debug variables
set "ECHO=%LCALL% :Echo"
set "ECHOVARS=%LCALL% :EchoVars"
:# The FUNCTION, UPVAR, and RETURN macros should work with delayed expansion on or off
set MACRO.GETEXP=(if "%'!2%%'!2%"=="" (set MACRO.EXP=EnableDelayedExpansion) else set MACRO.EXP=DisableDelayedExpansion)
set UPVAR=call set DEBUG.RETVARS=%%DEBUG.RETVARS%%
set RETURN=call set "DEBUG.ERRORLEVEL=%%ERRORLEVEL%%" %&% %MACRO% ( %\n%
set DEBUG.EXITCODE=%!%MACRO.ARGS%!%%\n%
if defined DEBUG.EXITCODE set DEBUG.EXITCODE=%!%DEBUG.EXITCODE: =%!%%\n%
if not defined DEBUG.EXITCODE set DEBUG.EXITCODE=%!%DEBUG.ERRORLEVEL%!%%\n%
for %%l in ("%'!%LF%'!%") do ( %# Make it easy to insert line-feeds in any mode #% %\n%
set "DEBUG.SETARGS=""" %# The initial "" makes sure that for loops below never get an empty arg list #% %\n%
for %%v in (%!%DEBUG.RETVARS%!%) do ( %\n%
set "DEBUG.VALUE=%'!%%%v%'!%" %# We must remove problematic characters in that value #% %\n%
if defined DEBUG.VALUE ( %# Else the following lines will generate phantom characters #% %\n%
set "DEBUG.VALUE=%'!%DEBUG.VALUE:%%=%%DEBUG.percnt%%%'!%" %# Encode percent #% %\n%
for %%e in (sp tab cr lf quot amp vert lt gt) do for %%c in ("%'!%DEBUG.%%e%'!%") do ( %# Encode named character entities #% %\n%
set "DEBUG.VALUE=%'!%DEBUG.VALUE:%%~c=%%DEBUG.%%e%%%'!%" %\n%
) %\n%
set "DEBUG.VALUE=%'!%DEBUG.VALUE:^^=%%DEBUG.hat%%%'!%" %# Encode carets #% %\n%
call set "DEBUG.VALUE=%%DEBUG.VALUE:%!%=^^^^%%" %# Encode exclamation points #% %\n%
set "DEBUG.VALUE=%'!%DEBUG.VALUE:^^^^=%%DEBUG.excl%%%'!%" %# Encode exclamation points #% %\n%
) %\n%
set DEBUG.SETARGS=%!%DEBUG.SETARGS%!% "%%v=%'!%DEBUG.VALUE%'!%"%\n%
) %\n%
if %!%DEBUG%!%==1 ( %# Build the debug message and display it #% %\n%
set "DEBUG.MSG=return %'!%DEBUG.EXITCODE%'!%" %\n%
for /f "delims=" %%v in ("%'!%DEBUG.SETARGS: =%%~l%'!%") do if not %%v=="" ( %# for /f avoids issues with ? and * #% %\n%
set "DEBUG.MSG=%'!%DEBUG.MSG%'!% %%DEBUG.amp%% set %%v" %!% %\n%
) %\n%
call set "DEBUG.MSG=%'!%DEBUG.MSG:%%=%%DEBUG.excl%%%'!%" %# Change all percent to ! #% %\n%
if defined ^^%>%DEBUGOUT ( %# If we use a debugging stream distinct from stdout #% %\n%
%!%LCALL%!% :Echo.Eval2DebugOut DEBUG.MSG %# Use a helper routine, as delayed redirection does not work #% %\n%
) else ( %# Output directly here, which is faster #% %\n%
for /f "delims=" %%c in ("%'!%INDENT%'!%%'!%DEBUG.MSG%'!%") do echo %%c%# Use a for loop to do a double !variable! expansion #%%\n%
) %\n%
if defined LOGFILE ( %# If we have to send a copy to a log file #% %\n%
%!%LCALL%!% :Echo.Eval2LogFile DEBUG.MSG %# Use a helper routine, as delayed redirection does not work #% %\n%
) %\n%
) %\n%
for %%r in (%!%DEBUG.EXITCODE%!%) do ( %# Carry the return values through the endlocal barriers #% %\n%
for /f "delims=" %%a in ("%'!%DEBUG.SETARGS%'!%") do ( %\n%
endlocal %&% endlocal %&% endlocal %# Exit the RETURN and FUNCTION local scopes #% %\n%
set "DEBUG.SETARGS=%%a" %\n%
if "%'!%%'!%"=="" ( %# Delayed expansion is ON #% %\n%
call set "DEBUG.SETARGS=%'!%DEBUG.SETARGS:%%=%%DEBUG.excl%%%'!%" %# Change all percent to ! #% %\n%
for /f "delims=" %%v in ("%'!%DEBUG.SETARGS: =%%~l%'!%") do if not %%v=="" ( %# for /f avoids issues with ? and * #% %\n%
set %%v %# Set each upvar variable in the caller's scope #% %\n%
) %\n%
) else ( %# Delayed expansion is OFF #% %\n%
setlocal EnableDelayedExpansion %\n%
for /f "delims=" %%v in ("%'!%DEBUG.SETARGS: =%%~l%'!%") do if %%v=="" ( %# for /f avoids issues with ? and * #% %\n%
endlocal %\n%
) else ( %\n%
call set %%v %# Set each upvar variable in the caller's scope #% %\n%
) %\n%
) %\n%
set "DEBUG.SETARGS=" %\n%
exit /b %%r %# Return to the caller #% %\n%
) %\n%
) %\n%
) %\n%
) %/MACRO%
:Debug.Init.2
set "LOG=%LCALL% :Echo.Log"
set ">>LOGFILE=>>%LOGFILE%"
if not defined LOGFILE set "LOG=rem" & set ">>LOGFILE=rem"
if .%LOGFILE%.==.NUL. set "LOG=rem" & set ">>LOGFILE=rem"
if .%NOREDIR%.==.1. set "LOG=rem" & set ">>LOGFILE=rem" &:# A parent script is already redirecting output. Trying to do it again here would fail.
set "ECHO.V=%LCALL% :Echo.Verbose"
set "ECHO.D=%LCALL% :Echo.Debug"
set "ECHOVARS.V=%LCALL% :EchoVars.Verbose"
set "ECHOVARS.D=%LCALL% :EchoVars.Debug"
:# Variables inherited from the caller...
:# Preserve INDENT if it contains just spaces, else clear it.
for /f %%s in ('echo.%INDENT%') do set "INDENT="
:# Preserve the log file name, else by default use NUL.
:# if not defined LOGFILE set "LOGFILE=NUL"
:# VERBOSE mode can only be 0 or 1. Default is 0.
if not .%VERBOSE%.==.1. set "VERBOSE=0"
call :Verbose.%VERBOSE%
:# DEBUG mode can only be 0 or 1. Default is 0.
if not .%DEBUG%.==.1. set "DEBUG=0"
goto :Debug.%DEBUG%
:Debug.SetLog
set "LOGFILE=%~1"
goto :Debug.Init.2
:Debug.Off
:Debug.0
set "DEBUG=0"
set "DEBUG.ENTRY=rem"
set "IF_DEBUG=if .%DEBUG%.==.1."
set "FUNCTION0=rem"
set FUNCTION=%MACRO.GETEXP% %&% %MACRO% ( %\n%
call set "FUNCTION.NAME=%%0" %\n%
call set ARGS=%%*%# Do not quote this, to keep string/non string aternance #%%\n%
if defined ARGS set ARGS=%!%ARGS:^^^^^^^^^^^^^^^^=^^^^^^^^%!%%# ^carets are doubled in quoted strings, halved outside. => Quadruple them if using unquoted ones #%%\n%
set "DEBUG.RETVARS=" %\n%
if not defined MACRO.ARGS set "MACRO.ARGS=%'!%MACRO.EXP%'!%" %\n%
setlocal %!%MACRO.ARGS%!% %\n%
) %/MACRO%
set "RETURN0=exit /b"
set "RETURN#=exit /b & rem"
set "EXEC.ARGS= %EXEC.ARGS%"
set "EXEC.ARGS=%EXEC.ARGS: -d=%"
set "EXEC.ARGS=%EXEC.ARGS:~1%"
:# Optimization to speed things up in non-debug mode
if not defined LOGFILE set "ECHO.D=rem"
if .%LOGFILE%.==.NUL. set "ECHO.D=rem"
if not defined LOGFILE set "ECHOVARS.D=rem"
if .%LOGFILE%.==.NUL. set "ECHOVARS.D=rem"
goto :eof
:Debug.On
:Debug.1
set "DEBUG=1"
set "DEBUG.ENTRY=:Debug.Entry"
set "IF_DEBUG=if .%DEBUG%.==.1."
set "FUNCTION0=call %LCALL% :Debug.Entry0 %%0 %%*"
set FUNCTION=%MACRO.GETEXP% %&% %MACRO% ( %\n%
call set "FUNCTION.NAME=%%0" %\n%
call set ARGS=%%*%# Do not quote this, to keep string/non string aternance #%%\n%
if defined ARGS set ARGS=%!%ARGS:^^^^^^^^^^^^^^^^=^^^^^^^^%!%%# ^carets are doubled in quoted strings, halved outside. => Quadruple them if using unquoted ones #%%\n%
if %!%DEBUG%!%==1 ( %# Build the debug message and display it #% %\n%
set DEBUG.MSG=call %!%FUNCTION.NAME%!% %!%ARGS%!%%\n%
if defined ^^%>%DEBUGOUT ( %# If we use a debugging stream distinct from stdout #% %\n%
%!%LCALL%!% :Echo.2DebugOut DEBUG.MSG %# Use a helper routine, as delayed redirection does not work #% %\n%
) else ( %# Output directly here, which is faster #% %\n%
echo%!%INDENT%!% %!%DEBUG.MSG%!%%\n%
) %\n%
if defined LOGFILE ( %# If we have to send a copy to a log file #% %\n%
%!%LCALL%!% :Echo.2LogFile DEBUG.MSG %# Use a helper routine, as delayed redirection does not work #% %\n%
) %\n%
call set "INDENT=%'!%INDENT%'!% " %\n%
) %\n%
set "DEBUG.RETVARS=" %\n%
if not defined MACRO.ARGS set "MACRO.ARGS=%'!%MACRO.EXP%'!%" %\n%
setlocal %!%MACRO.ARGS%!% %\n%
) %/MACRO%
set "RETURN0=call %LCALL% :Debug.Return0 %%ERRORLEVEL%% & exit /b"
:# Macro for displaying comments on the return log line
set RETURN#=call set "RETURN.ERR=%%ERRORLEVEL%%" %&% %MACRO% ( %\n%
%LCALL% :Debug.Return# %# Redirections can't work in macro. Do it in a function. #% %\n%
for %%r in (%!%RETURN.ERR%!%) do %ENDMACRO% %&% set "RETURN.ERR=" %&% call set "INDENT=%%INDENT:~2%%" %&% exit /b %%r %\n%
) %/MACRO%
set "EXEC.ARGS= %EXEC.ARGS%"
set "EXEC.ARGS=%EXEC.ARGS: -d=% -d"
set "EXEC.ARGS=%EXEC.ARGS:~1%"
:# Reverse the above optimization
set "ECHO.D=%LCALL% :Echo.Debug"
set "ECHOVARS.D=%LCALL% :EchoVars.Debug"
goto :eof
:Debug.Entry0
setlocal DisableDelayedExpansion
%>DEBUGOUT% echo %INDENT%call %*
if defined LOGFILE %>>LOGFILE% echo %INDENT%call %*
endlocal
set "INDENT=%INDENT% "
goto :eof
:Debug.Entry
setlocal DisableDelayedExpansion
%>DEBUGOUT% echo %INDENT%call %FUNCTION.NAME% %ARGS%
if defined LOGFILE %>>LOGFILE% echo %INDENT%call %FUNCTION.NAME% %ARGS%
endlocal
set "INDENT=%INDENT% "
goto :eof
:Debug.Return0 %1=Exit code
%>DEBUGOUT% echo %INDENT%return %1
if defined LOGFILE %>>LOGFILE% echo %INDENT%return %1
set "INDENT=%INDENT:~0,-2%"
exit /b %1
:Debug.Return# :# %RETURN.ERR% %MACRO.ARGS%
setlocal DisableDelayedExpansion
%>DEBUGOUT% echo %INDENT%return %RETURN.ERR% ^&:#%MACRO.ARGS%
if defined LOGFILE %>>LOGFILE% echo %INDENT%return %RETURN.ERR% ^&:#%MACRO.ARGS%
endlocal
goto :eof &:# %RETURN.ERR% will be processed in the %DEBUG#% macro.
:# Routine to set the VERBOSE mode, in response to the -v argument.
:Verbose.Off
:Verbose.0
set "VERBOSE=0"
set "IF_VERBOSE=if .%VERBOSE%.==.1."
set "EXEC.ARGS= %EXEC.ARGS%"
set "EXEC.ARGS=%EXEC.ARGS: -v=%"
set "EXEC.ARGS=%EXEC.ARGS:~1%"
:# Optimization to speed things up in non-verbose mode
if not defined LOGFILE set "ECHO.V=rem"
if .%LOGFILE%.==.NUL. set "ECHO.V=rem"
if not defined LOGFILE set "ECHOVARS.V=rem"
if .%LOGFILE%.==.NUL. set "ECHOVARS.V=rem"
goto :eof
:Verbose.On
:Verbose.1
set "VERBOSE=1"
set "IF_VERBOSE=if .%VERBOSE%.==.1."
set "EXEC.ARGS= %EXEC.ARGS%"
set "EXEC.ARGS=%EXEC.ARGS: -v=% -v"
set "EXEC.ARGS=%EXEC.ARGS:~1%"
:# Reverse the above optimization
set "ECHO.V=%LCALL% :Echo.Verbose"
set "ECHOVARS.V=%LCALL% :EchoVars.Verbose"
goto :eof
:# Echo and log a string, indented at the same level as the debug output.
:Echo
echo.%INDENT%%*
:Echo.Log
if defined LOGFILE %>>LOGFILE% echo.%INDENT%%*
goto :eof
:Echo.Verbose
:Echo.V
%IF_VERBOSE% goto :Echo
goto :Echo.Log
:Echo.Debug
:Echo.D
%IF_DEBUG% %>DEBUGOUT% echo.%INDENT%%*
goto :Echo.Log
:Echo.Eval2DebugOut %1=Name of string, with !variables! that need to be evaluated first
setlocal EnableDelayedExpansion &:# Make sure that !variables! get expanded
set "STRING=!%1!" &:# !variables! not yet expanded; They will be on next line
%>DEBUGOUT% echo.%INDENT%%STRING%
goto :eof
:Echo.2DebugOut %1=Name of string to output to the DEBUGOUT stream
setlocal EnableDelayedExpansion &:# Make sure that !variables! get expanded
%>DEBUGOUT% echo.%INDENT%!%1!
goto :eof
:Echo.Eval2LogFile %1=Name of string, with variables that need to be evaluated first
setlocal EnableDelayedExpansion &:# Make sure that !variables! get expanded
set "STRING=!%1!" &:# !variables! not yet expanded; They will be on next line
%>>LOGFILE% echo.%INDENT%%STRING%
goto :eof
:Echo.2LogFile %1=Name of string to output to the LOGFILE
setlocal EnableDelayedExpansion &:# Make sure that !variables! get expanded
%>>LOGFILE% echo.%INDENT%!%1!
goto :eof
:# Echo and log variable values, indented at the same level as the debug output.
:EchoVars
setlocal EnableExtensions EnableDelayedExpansion
:EchoVars.loop
if "%~1"=="" endlocal & goto :eof
%>DEBUGOUT% echo %INDENT%set "%~1=!%~1!"
if defined LOGFILE %>>LOGFILE% echo %INDENT%set "%~1=!%~1!"
shift
goto EchoVars.loop
:EchoVars.Verbose
%IF_VERBOSE% (
call :EchoVars %*
) else ( :# Make sure the variables are logged
call :EchoVars %* >NUL 2>NUL
)
goto :eof
:EchoVars.Debug
%IF_DEBUG% (
call :EchoVars %*
) else ( :# Make sure the variables are logged
call :EchoVars %* >NUL 2>NUL
)
goto :eof
:# Echo a list of arguments.
:EchoArgs
setlocal EnableExtensions DisableDelayedExpansion
set N=0
:EchoArgs.loop
if .%1.==.. endlocal & goto :eof
set /a N=N+1
%>DEBUGOUT% echo %INDENT%set "ARG%N%=%1"
shift
goto EchoArgs.loop
:Debug.End
:#----------------------------------------------------------------------------#
:# #
:# Module Exec #
:# #
:# Description Run a command, logging its output to the log file. #
:# #
:# In VERBOSE mode, display the command line first. #
:# In DEBUG mode, display the command line and the exit code.#
:# In NOEXEC mode, display the command line, but don't run it.
:# #
:# Functions Exec.Init Initialize Exec routines. Call once at 1st #
:# Exec.Off Disable execution of commands #
:# Exec.On Enable execution of commands #
:# Do Always execute a command, logging its output #
:# Exec Conditionally execute a command, logging it. #
:# Exec.SetErrorLevel Change the current ERRORLEVEL #
:# #
:# Exec Arguments -l Log the output to the log file. #
:# -L Do not send the output to the log file. (Dflt)#
:# -t Tee all output to the log file if there's a #
:# usable tee.exe. #
:# Known limitation: The exit code is always 0. #
:# -e Always echo the command. #
:# -v Trace the command in verbose mode. (Default) #
:# -V Do not trace the command in verbose mode. #
:# %* The command and its arguments #
:# Quote redirection operators. Ex: #
:# %EXEC% find /I "error" "<"logfile.txt ">"NUL #
:# Note: Quote redirections, NOT file numbers. #
:# Ex: 2">&"1 will work; "2>&1" will NOT work. #
:# #
:# Macros %DO% Always execute a command, logging its output #
:# %EXEC% Conditionally execute a command, logging it. #
:# %ECHO.X% Echo a string indented in -X mode, and log it.#
:# %ECHO.XD% Idem in -X or -D modes. #
:# %ECHO.XVD% Idem in -X or -V or -D modes. #
:# Useful to display commands in cases where #
:# %EXEC% can't be used, like in for ('cmd') ... #
:# %IF_EXEC% Execute a command if _not_ in NOEXEC mode #
:# %IF_NOEXEC% Execute a command in NOEXEC mode only #
:# %_DO% Echo and run a command. No opts. No logging. #
:# %_DO.D% Idem, echoing it in debug mode only. #
:# %_DO.XVD% Idem, echoing it in -X or -V or -D modes only.#
:# %XEXEC% Call :Exec from an external scriptlet, such #
:# one in a (for /f in ('commands')) block. #
:# %XEXEC@% Idem, but with all args stored in one var. #
:# #
:# Variables %NOEXEC% Exec mode. 0=Execute commands; 1=Don't. Use #
:# functions Exec.Off and Exec.On to change it. #
:# Inherited from the caller. Default=On. #
:# %NOREDIR% 0=Log command output to the log file; 1=Don't #
:# Inherited. Default=0. #
:# Useful in cases where the output must be #
:# shown to the user, and no tee.exe is available.
:# %EXEC.ARGS% Arguments to recursively pass to subcommands #
:# with the same execution options conventions. #
:# #
:# Notes %EXEC% can't be used from inside ('command') blocks. #
:# This is because these blocks are executed separately in #
:# a child shell. Use %XEXEC% or %XEXEC@% instead. #
:# These macros rely on the %XCALL% mechanism for calling #
:# subroutines in a second instance of a script. They depend #
:# on the following line being present after the ARGS #
:# variable definition at the top of your script: #
:# if '%1'=='-call' !ARGS:~1!& exit /b #
:# #
:# History #
:# 2010-05-19 JFL Created this routine. #
:# 2012-05-04 JFL Support logging ">" redirections. #
:# 2012-07-09 JFL Restructured functions to a more "object-like" style. #
:# 2012-07-11 JFL Support logging both "<" and ">" redirections. #
:# 2012-09-18 JFL Added macro %ECHO.X% for cases where %EXEC% can't be used.#
:# 2012-11-13 JFL Support for "|" pipes too. #
:# 2013-11-12 JFL Added macro %IF_NOEXEC%. #
:# 2013-12-04 JFL Added option -t to tee the output if possible. #
:# Split %ECHO.X% and %ECHO.XVD%. #
:# 2014-05-13 JFL Call tee.exe explicitely, to avoid problems if there's #
:# also a tee.bat script in the path. #
:# 2015-03-12 JFL If there are output redirections, then cancel any attempt #
:# at redirecting output to the log file. #
:# 2016-10-19 JFL Bug fix: Make sure the :Exec initialization preserves the #
:# errorlevel that was there on entrance. #
:# 2016-11-02 JFL Bug fix: Avoid log file redirection failures in recursive #
:# scripts. #
:# 2016-11-05 JFL Fixed :Exec bug in XP/64. #
:# Indent sub-scripts output in debug mode. #
:# 2016-11-06 JFL Updated the 10/19 errorlevel fix to work for DO and EXEC. #
:# 2016-11-17 JFL Fixed tracing the exit code when caller has exp. disabled.#
:# Added option -V to disable tracing exec in verbose mode. #
:# Added macro %ECHO.XD%. #
:# Faster and more exact method for separating the %EXEC% #
:# optional arguments from the command line to run. (The old #
:# method lost non-white batch argument separators = , ; in #
:# some cases.) #
:# 2016-11-24 JFL Fixed executing commands containing a ^ character. #
:# Added routine :_Do. #
:# 2016-12-13 JFL Rewrote _DO as a pure macro. #
:# 2016-12-15 JFL Changed the default to NOT redirecting the output to log. #
:# #
:#----------------------------------------------------------------------------#
call :Exec.Init
goto :Exec.End
:# Global variables initialization, to be called first in the main routine
:Exec.Init
set "DO=%LCALL% :Do"
set "EXEC=%LCALL% :Exec"
set "ECHO.X=%LCALL% :Echo.X"
set "ECHO.XD=%LCALL% :Echo.XD"
set "ECHO.XVD=%LCALL% :Echo.XVD"
if not .%NOEXEC%.==.1. set "NOEXEC=0"
:# Quick and simple DO macros, supporting a single command, no redirections, no tricky chars!
set _DO=%MACRO% ( %LCALL% :Echo %!%MACRO.ARGS%!% %&% %ON_MACRO_EXIT%%!%MACRO.ARGS%!%%/ON_MACRO_EXIT% ) %/MACRO%
set _DO.D=%MACRO% ( %LCALL% :Echo.D %!%MACRO.ARGS%!% %&% %ON_MACRO_EXIT%%!%MACRO.ARGS%!%%/ON_MACRO_EXIT% ) %/MACRO%
set _DO.XD=%MACRO% ( %LCALL% :Echo.XD %!%MACRO.ARGS%!% %&% %ON_MACRO_EXIT%%!%MACRO.ARGS%!%%/ON_MACRO_EXIT% ) %/MACRO%
set _DO.XVD=%MACRO% ( %LCALL% :Echo.XVD %!%MACRO.ARGS%!% %&% %ON_MACRO_EXIT%%!%MACRO.ARGS%!%%/ON_MACRO_EXIT% ) %/MACRO%
:# Execute commands from another instance of the main script
set "XEXEC=%XCALL% :Exec"
set "XEXEC@=%XCALL% :Exec.ExecVar"
:# Check if there's a tee.exe program available
:# set "Exec.HaveTee=0"
:# tee.exe --help >NUL 2>NUL
:# if not errorlevel 1 set "Exec.HaveTee=1"
for %%t in (tee.exe) do set "Exec.tee=%%~$PATH:t"
:# Initialize ERRORLEVEL with known values
set "TRUE.EXE=(call,)" &:# Macro to silently set ERRORLEVEL to 0
set "FALSE.EXE=(call)" &:# Macro to silently set ERRORLEVEL to 1
goto :NoExec.%NOEXEC%
:Exec.On
:NoExec.0
set "NOEXEC=0"
set "IF_NOEXEC=if .%NOEXEC%.==.1."
set "IF_EXEC=if .%NOEXEC%.==.0."
set "EXEC.ARGS= %EXEC.ARGS%"
set "EXEC.ARGS=%EXEC.ARGS: -X=%"
set "EXEC.ARGS=%EXEC.ARGS:~1%"
goto :eof
:# Routine to set the NOEXEC mode, in response to the -X argument.
:Exec.Off
:NoExec.1
set "NOEXEC=1"
set "IF_NOEXEC=if .%NOEXEC%.==.1."
set "IF_EXEC=if .%NOEXEC%.==.0."
set "EXEC.ARGS= %EXEC.ARGS%"
set "EXEC.ARGS=%EXEC.ARGS: -X=% -X"
set "EXEC.ARGS=%EXEC.ARGS:~1%"
goto :eof
:Echo.XVD
%IF_VERBOSE% goto :Echo
:Echo.XD
%IF_DEBUG% goto :Echo
:Echo.X
%IF_NOEXEC% goto :Echo
goto :Echo.Log
:Exec.SetErrorLevel %1
exit /b %1
:# Execute a command, logging its output.
:# Use for informative commands that should always be run, even in NOEXEC mode.
:Do
set "Exec.ErrorLevel=%ERRORLEVEL%" &:# Save the initial errorlevel
setlocal EnableExtensions DisableDelayedExpansion &:# Clears the errorlevel
%IF_NOEXEC% call :Exec.On
goto :Exec.Start
:# Execute critical operations that should not be run in NOEXEC mode.
:# Version supporting input and output redirections, and pipes.
:# Redirection operators MUST be surrounded by quotes. Ex: "<" or ">" or ">>"
:Exec
set "Exec.ErrorLevel=%ERRORLEVEL%" &:# Save the initial errorlevel
setlocal EnableExtensions DisableDelayedExpansion &:# Clears the errorlevel
:Exec.Start
set "Exec.NOREDIR=%NOREDIR%"
set "Exec.Redir=" &:# The selected redirection. Default: none
set "Exec.2Redir=>>%LOGFILE%,2>&1" &:# What to change it to, to enable redirection
if .%NOREDIR%.==.1. set "Exec.2Redir=" &:# Several cases forbid redirection
if not defined LOGFILE set "Exec.2Redir="
if /i .%LOGFILE%.==.NUL. set "Exec.2Redir="
set "Exec.IF_VERBOSE=%IF_VERBOSE%" &:# Echo the command in verbose mode
:# Record the command-line to execute.
:# Never comment (set Exec.cmd) lines themselves, to avoid appending extra spaces.
:# Use %*, but not %1 ... %9, because %N miss non-white argument separators like = , ;
set ^"Exec.Cmd=%*^" &:# Doubles ^carets within "quoted" strings, and halves those outside
set ^"Exec.Cmd=%Exec.Cmd:^^=^%^" &:# Fix the # of ^carets within "quoted" strings
:# Process optional arguments
goto :Exec.GetArgs
:Exec.NextArg
:# Remove the %EXEC% argument and following spaces from the head of the command line
setlocal EnableDelayedExpansion &:# The next line works because no :exec own argument may contain an '=' or a '!'
for /f "tokens=1* delims= " %%a in ("-!Exec.Cmd:*%1=!") do endlocal & set Exec.Cmd=%%b
shift
:Exec.GetArgs
if "%~1"=="-l" set "Exec.Redir=%Exec.2Redir%" & goto :Exec.NextArg :# Do send the output to the log file
if "%~1"=="-L" set "Exec.Redir=" & goto :Exec.NextArg :# Do not send the output to the log file
if "%~1"=="-t" if defined Exec.2Redir ( :# Tee the output to the log file
:# Warning: This prevents from getting the command exit code!
if defined Exec.tee set "Exec.Redir= 2>&1 | %Exec.tee% -a %LOGFILE%"
goto :Exec.NextArg
)
if "%~1"=="-e" set "Exec.IF_VERBOSE=if 1==1" & goto :Exec.NextArg :# Always echo the command
if "%~1"=="-v" set "Exec.IF_VERBOSE=%IF_VERBOSE%" & goto :Exec.NextArg :# Echo the command in verbose mode
if "%~1"=="-V" set "Exec.IF_VERBOSE=if 0==1" & goto :Exec.NextArg :# Do not echo the command in verbose mode
:# Anything else is part of the command. Prepare to display it and run it.
:# First stage: Split multi-char ops ">>" "2>" "2>>". Make sure to keep ">" signs quoted every time.
:# Do NOT use surrounding quotes for these set commands, else quoted arguments will break.
set Exec.Cmd=%Exec.Cmd:">>"=">"">"%
set Exec.Cmd=%Exec.Cmd:">>&"=">"">""&"%
set Exec.Cmd=%Exec.Cmd:">&"=">""&"%
:# If there are output redirections, then cancel any attempt at redirecting output to the log file.
set "Exec.Cmd1=%Exec.Cmd:"=%" &:# Remove quotes in the command string, to allow quoting the whole string.
if not "%Exec.Cmd1:>=%"=="%Exec.Cmd1%" set "Exec.Redir="
if defined Exec.Redir set "Exec.NOREDIR=1" &:# make sure child scripts do not try to redirect output again
:# Second stage: Convert quoted redirection operators (Ex: ">") to a usable (Ex: >) and a displayable (Ex: ^>) value.
:# Must be done once for each of the four < > | & operators.
:# Since each operation removes half of ^ escape characters, then insert
:# enough ^ to still protect the previous characters during the subsequent operations.
set Exec.toEcho=%Exec.Cmd:"|"=^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^|%
set Exec.toEcho=%Exec.toEcho:"&"=^^^^^^^^^^^^^^^&%
set Exec.toEcho=%Exec.toEcho:">"=^^^^^^^>%
set Exec.toEcho=%Exec.toEcho:"<"=^^^<%
:# Finally create the usable command, by removing the last level of ^ escapes.
set Exec.Cmd=%Exec.toEcho%
set "Exec.Echo=rem"
%IF_NOEXEC% set "Exec.Echo=echo"
%IF_DEBUG% set "Exec.Echo=echo"
%Exec.IF_VERBOSE% set "Exec.Echo=echo"
%>DEBUGOUT% %Exec.Echo%.%INDENT%%Exec.toEcho%
if defined LOGFILE %>>LOGFILE% echo.%INDENT%%Exec.toEcho%
:# Constraints at this stage:
:# The command exit code must make it through, back to the caller.
:# The local variables must disappear before return.
:# But the new variables created by the command must make it through.
:# This should work whether :Exec is called with delayed expansion on or off.
endlocal & if not .%NOEXEC%.==.1. (
set "NOREDIR=%Exec.NOREDIR%"
%IF_DEBUG% set "INDENT=%INDENT% "
call :Exec.SetErrorLevel %Exec.ErrorLevel% &:# Restore the errorlevel we had on :Exec entrance
%Exec.Cmd%%Exec.Redir%
call set "Exec.ErrorLevel=%%ERRORLEVEL%%" &:# Save the new errorlevel set by the command executed
set "NOREDIR=%NOREDIR%" &:# Sets ERRORLEVEL=1 in Windows XP/64
%IF_DEBUG% set "INDENT=%INDENT%"
call :Exec.TraceExit
)
exit /b
:Exec.TraceExit
for %%e in (%Exec.ErrorLevel%) do (
set "Exec.ErrorLevel="
%IF_DEBUG% %>DEBUGOUT% echo.%INDENT% exit %%e
if defined LOGFILE %>>LOGFILE% echo.%INDENT% exit %%e
exit /b %%e
)
:Exec.ExecVar CMDVAR
call :Exec !%1:%%=%%%%!
exit /b
:Exec.End
:#----------------------------------------------------------------------------#
:# End of the debugging library #
:#----------------------------------------------------------------------------#
:is_dir pathname -- Check if a pathname refers to an existing directory
for /f "tokens=1,2 delims=d" %%a in ("-%~a1") do if not "%%~b"=="" exit /b 0
exit /b 1
:#----------------------------------------------------------------------------#
:# #
:# Function GetPid #
:# #
:# Description Get the PID of the current console #
:# #
:# Arguments %1 = Variable name. Default: PID #
:# #
:# Notes Uses a lock file to make sure that two scripts running #
:# within 0.01s of each other do not get the same uid string.#
:# The instance that fails retries until it succeeds. #
:# No side effect on the window title. #
:# #
:# History #
:# 2014-12-23 DB D.Benham published on dostips.com: #
:# http://www.dostips.com/forum/viewtopic.php?p=38870#p38870 #
:# 2016-09-11 JFL Adapted to my %FUNCTION%/%UPVAR%/%RETURN% mechanism. #
:# #
:#----------------------------------------------------------------------------#
:GetPID [VARNAME]
%FUNCTION% EnableExtensions DisableDelayedExpansion
set "PIDVAR=%~1" & if not defined PIDVAR set "PIDVAR=PID"
%UPVAR% %PIDVAR%
:GetPID.retry
set "lock=%temp%\%~nx0.%time::=.%.lock"
set "uid=%lock:\=:b%"
set "uid=%uid:,=:c%"
set "uid=%uid:'=:q%"
set "uid=%uid:_=:u%"
setlocal enableDelayedExpansion
set "uid=!uid:%%=:p!"
endlocal & set "uid=%uid%"
2>nul ( 9>"%lock%" (
for /f "skip=1" %%A in (
'wmic process where "name='cmd.exe' and CommandLine like '%%<%uid%>%%'" get ParentProcessID'
) do for %%B in (%%A) do set "%PIDVAR%=%%B"
(call )
))||goto :GetPID.retry
del "%lock%" 2>nul
%RETURN%
:#----------------------------------------------------------------------------#
:# #
:# Function Main #
:# #
:# Description Process command line arguments, and main routine body #
:# #
:# Arguments %* Command line arguments #
:# #
:# Notes #
:# #
:# History #
:# #
:#----------------------------------------------------------------------------#
:GetDefaultMakeFile
%FUNCTION%
%UPVAR% MAKEFILE
set "NMAKEFILE=NMakeFile"
if "%IGNORE_NMAKEFILE%"=="1" set "NMAKEFILE=:" &:# An impossible name
if exist %NMAKEFILE% (
set "MAKEFILE=NMakeFile" &rem :# Default make file name
) else if exist All.mak (
set "MAKEFILE=All.mak" &rem :# Most powerful one, that can build for all MS OS versions
) else if exist DosWin.mak (
set "MAKEFILE=DosWin.mak" &rem :# Previous version of the same, more complex and less powerfull
) else if exist "%SPATH%\All.mak" (
set "MAKEFILE="%SPATH%\All.mak"" &rem :# Most powerful one, that can build for all MS OS versions
) else (
set "MAKEFILE=NMakeFile" &rem :# Revert to the default, even though we know it's not there
)
%RETURN%
:#-----------------------------------------------------------------------------
:GetConfig
if not exist %CONFIG.BAT% if exist configure.bat (
echo Generating %CONFIG.BAT%
%DO% call configure.bat
if errorlevel 1 (
>&2 echo The configure.bat script failed.
exit /b
)
)
:# Load tools settings
if exist %CONFIG.BAT% %DO% call %CONFIG.BAT%
goto :eof
:#-----------------------------------------------------------------------------
:# Get help about this script
:help
if not defined MAKEFILE call :GetDefaultMakeFile
:# Avoid calling :GetConfig here, as we don't want help to have any side effect
:# when users just want to know what this script does.
echo Build targets using nmake.exe
echo.
echo Usage: %SCRIPT% [options] [nmake_options] [macrodefs] [targets] ...
echo.
echo Options:
echo -?^|-h This help
echo -c CONFIG Use conf. from config.CONFIG.bat. Default: config.%COMPUTERNAME%.bat
echo -C DIRECTORY Change the current directory before doing anything
echo -cde Clean Debug Environment variables, if the script was interrupted
echo -d Run this script in debug mode
echo -f MAKEFILE Make file to use. Default: %MAKEFILE%
echo -H [PROGRAM] Display nmake.exe help (or that of another MSVC32 program)
echo -l LOGFILE Log output into a file. Default: Don't
echo -L Disable logging. Default: Use the parent script log file, if any
echo -O OS Use nmake for OS. Default: Use that for %MAKEORIGIN%
echo -q Run nmake without output capture. (Default for pseudo-targets)
echo -Q Capture nmake output into TARGET.log. (Default for real targets)
echo -u DIRECTORY Upgrade configure.bat and make.bat scripts in this dir.
echo -v Enable verbose output
echo -V Display %SCRIPT% version
echo -X Display the nmake command to run, but don't run it
echo.
echo Notes:
echo * Type "make [-f MAKEFILE] help" to get many a MAKEFILE Usage.
echo * The make output will be logged in a file called LAST_TARGET.log.
echo * If the first target is in SUBDIR, the default MAKEFILE changes to
echo SUBDIR.mak. In this case, all other targets must be in that same SUBDIR.
echo.
exit /b 0
:#-----------------------------------------------------------------------------
:# Get help about a Microsoft development tool
:mstool_help
call :GetConfig :# Get Development tools location
if errorlevel 1 exit /b
:# Update the PATH for running Visual Studio tools, from definitions set in %CONFIG.BAT%
set PATH=!%MAKEORIGIN%_PATH!
set PROG=nmake.exe
%POPARG%
if defined ARG set PROG=%ARG%
%ECHOVARS.D% MAKEORIGIN PATH EXEC
:# %EXEC% %PROG% /? &:# Can't use %EXEC%, nor anything that does a call, as /? breaks the call.
set /A XVD=DEBUG+VERBOSE+NOEXEC
if not %XVD%==0 echo %PROG% /?
%IF_EXEC% %PROG% /?
exit /b
:#-----------------------------------------------------------------------------
:# Run nmake without logging anything, for simple goals like help, clean, etc.
:nmake [nmake.exe options]
%FUNCTION%
if not defined MAKEFILE (
call :GetDefaultMakeFile
) else (
%ECHOVARS.D% MAKEFILE
)
call :GetConfig >NUL 2>NUL :# Get Development tools location. Also defines OUTDIR.
if errorlevel 1 %RETURN%
:# Update the PATH for running Visual Studio tools, from definitions set in %CONFIG.BAT%
set PATH=!%MAKEORIGIN%_PATH!
if not defined MAKE for %%m in (nmake.exe) do set "MAKE="%%~$PATH:m"" &:# Includes enclosing quotes
%ECHOVARS.D% CD MESSAGES OUTDIR MAKE MAKEORIGIN PATH INCLUDE %MAKEORIGIN%_CC
if [%MAKE%]==[""] set "MAKE="
if not defined MAKE (
set "MSG=Can't find nmake.exe"
if defined MSVC32LONG set ^"MSG=!MSG! in "%MSVC32LONG%"^"
>&2 echo Error: !MSG!. Try running configure.bat.
exit /b 1
)
set "NMAKEFLAGS=/NOLOGO /c /s"
%IF_VERBOSE% set "NMAKEFLAGS=/NOLOGO"
:# Clear a few multi-line variables that pollute the (nmake /P) logs
for %%v in (LF1 LF2 LF3 LF4 LF5 MACRO /MACRO ON_MACRO_EXIT) do set "%%v="
%EXEC% -L %MAKE% %NMAKEFLAGS% /F %MAKEFILE% %*
%RETURN%
:#-----------------------------------------------------------------------------
:# Delete everything that can be built by this make system
:distclean
call :nmake distclean
if exist config.* del config.* &:# Delete all instances of %CONFIG.BAT% for all systems
exit /b
:#-----------------------------------------------------------------------------
:# Update the make system scripts in another directory
:update_scripts
set "UPDATE=xcopy /c /d /y"
%IF_NOEXEC% set "UPDATE=%UPDATE% /l"
for %%s in (configure.bat make.bat) do (
%IF_VERBOSE% echo %UPDATE% %%s %1
%FOREACHLINE% %%n in ('%UPDATE% %%s %1 2^>NUL ^| findstr ":"') do (
>con echo Upgrading %~1\%%s
)
)
exit /b
:#-----------------------------------------------------------------------------
:# Cleanup the environment polluted by this script, in case it is interrupted
:CleanDebugEnvironment
%IF_DEBUG% @echo on
endlocal &:# Return to the shell environment
:# Delete families of variables, which we're pretty sure we all created
for %%f in (
"DEBUG." "ECHO." "ECHOVARS" "EXEC." "IF_" "LF" "RETURN"
VSCOMMON VSIDE VSTOOLS VSTUDIO
) do (
for /f "delims==" %%v in ('set %%f 2^>NUL') do set "%%v="
)
:# Delete individual variables with plain names
for %%v in (
"ARG" ARG ARG0 BS CONFIG.BAT CR DEBUG DEL DO ECHO EXEC FOREACHLINE FUNCTION FUNCTION0
LOG MACRO MACRO.GETEXP NOEXEC NOREDIR ON_MACRO_EXIT POPARG
SCRIPT SPATH UPVAR VERBOSE VERSION XDLEVEL BMAKE BCONF
CONFIG.BAT GOAL ISDEF LASTGOAL LOGFILE2 MAKEARGS MAKEFILE MAKEGOALS MAKEORIGIN
NEEDMAKEFILE NMAKE NMAKEFLAGS MAKEGOALS MAKEDEPTH POST_MAKE_ACTIONS SUBDIR UPDATE
) do set "%%v="
:# Delete individual variables with names with characters that need quoting
for %%v in (
"/MACRO" "/ON_MACRO_EXIT" "&" "&2" ">" ">>LOGFILE" "\n"
) do set "%%~v="
:# Delete variables with tricky characters that need escaping
set "^!="
set "'^!="
set "^!2="
set "'^!2="
:# Restore variables that are changed
set "OS=Windows_NT" &:# May have been changed to target OS values
exit /b
:#-----------------------------------------------------------------------------
:# Cleanup the environment variables normally generated by builds here
:CleanBuildEnvironment
if not defined PID call :GetPID
set "VARLISTFILE=%TMP%\cleanenv-%PID%.lst"
if %MAKEDEPTH%==0 ( :# Do this only in the top make file, in case of recursive makes
if exist "%VARLISTFILE%" del "%VARLISTFILE%"
)
set "HAD_CONFIG="
if exist "%CONFIG.BAT%" set "HAD_CONFIG=1"
call :nmake cleanenv
if not defined HAD_CONFIG del "%CONFIG.BAT%"
endlocal & ( :# Return to the shell environment. %Variables% already expanded in the (block) below.
if %MAKEDEPTH%==0 ( :# Do this only in the top make file, in case of recursive makes
for /f %%v in ('type "%VARLISTFILE%"') do ( :# Note: Do not use %FOREACHLINE%, as the file may contain extra spaces in each line.
%ECHO.D% :# Trying "%%v"
if defined %%v ( :# Remove variable from the parent shell environment
:# Do not use %DO%, as we've deleted most debug variables at this stage
echo set "%%v="
set "%%v="
)
)
)
)
exit /b
:#-----------------------------------------------------------------------------
:# Execute this make.bat command in another directory
:MakeInDir DIR
:# Get all arguments in the initial command line. Insert a space ahead.
set ARGS= %*
:# Remove the ' -C DIR' option that brought us here
set ARGS=!ARGS: -C %"ARG"%=!
if "!ARGS:~0,1!"==" " set ARGS=!ARGS:~1!
%DO% pushd %"ARG"%
%ECHO.V% :# cd %CD%
%DO% call %BMAKE% !ARGS!
set "ERROR=%ERRORLEVEL%"
%DO% popd
%ECHO.V% :# cd %CD%
exit /b %ERROR%
:#-----------------------------------------------------------------------------
:# Locate the make file in well known dirs and in the INCLUDE path
:LocateMakefile
if exist "%~1" set "MAKEFILE=%~1" & exit /b 0
if exist "%STINCLUDE%\%~1" set "MAKEFILE=%STINCLUDE%\%~1" & exit /b 0
for %%p in ("%INCLUDE:;=" "%") do if exist "%%p\%~1" set "MAKEFILE=%%p\%~1" & exit /b 0
set "MAKEFILE=%~1" & exit /b 1
:#-----------------------------------------------------------------------------
:main
set "BMAKE="%~f0"" &:# The full pathname to this make.bat script, with quotes
set "BCONF=%BMAKE:make.bat=configure.bat%" &:# The full pathname of configure.bat
set "CONFIG.BAT=config.%COMPUTERNAME%.bat" &:# The output file for this make.bat script
set "POST_MAKE_ACTIONS=" &:# A series of commands to run after the final endlocal after make
if not defined MAKEDEPTH ( :# This is the initial make.bat instance. Show the final result.
set "MAKEDEPTH=0"
) else ( :# This is a sub-instance. Do not show the intermediate result.
set /a "MAKEDEPTH+=1"
)
:# Make command line parsing analysis results
set "MAKEFILE="
set "NMAKEFLAGS=" &:# Do not name this MAKEFLAGS, as this confuses nmake
set "MAKEDEFS="
set "MAKEGOALS="
set "MAKEORIGIN=WIN32"
set "LIGHTMAKE=" &:# 1=Simply run nmake and exit. 0=Capture and process its output. Default: Use heuristic to choose
set "DOLOG=1" &:# By default, do create a log file
set ">DEBUGOUT=>&2" &:# Send debug output to stderr, so that it does not interfere with subroutines output capture
if not defined STINCLUDE ( :# Try getting the copy in the master environment
for /f "tokens=3" %%v in ('reg query "HKCU\Environment" /v STINCLUDE 2^>NUL') do set "STINCLUDE=%%v"
)
set "INCLUDE=%STINCLUDE%" &:# Ensure common make files are found by nmake in the %STINCLUDE% directory
:next_arg
if not defined ARGS set "ARG=" & goto go
%POPARG%
if "!ARG!"=="-?" goto help
if "!ARG!"=="/?" goto help
if "!ARG!"=="-c" %POPARG% & set "CONFIG.BAT=config.!ARG!.bat" & goto next_arg
if "!ARG!"=="-C" %POPARG% & call :MakeInDir %* & exit /b
if "!ARG!"=="-cde" goto :CleanDebugEnvironment
if "!ARG!"=="-d" call :Debug.On & call :Verbose.On & goto next_arg
if "!ARG!"=="-f" %POPARG% & call :LocateMakefile !ARG! & goto next_arg
if "!ARG!"=="/f" %POPARG% & call :LocateMakefile !ARG! & goto next_arg
if "!ARG!"=="-h" goto help
if "!ARG!"=="-H" goto mstool_help
if "!ARG!"=="-l" %POPARG% & call :Debug.SetLog !"ARG"! & goto next_arg
if "!ARG!"=="-L" call :Debug.SetLog & set "DOLOG=0" & goto next_arg
if "!ARG!"=="-O" %POPARG% & set "MAKEORIGIN=!ARG!" & goto next_arg
if "!ARG!"=="-q" set "LIGHTMAKE=1" & goto next_arg
if "!ARG!"=="-Q" set "LIGHTMAKE=0" & goto next_arg
if "!ARG!"=="-u" %POPARG% & call :update_scripts "!ARG!" & goto :eof
if "!ARG!"=="-U" %POPARG% & set "%ARG%=" & goto next_arg
if "!ARG!"=="-v" call :Verbose.On & goto next_arg
if "!ARG!"=="-V" (echo %VERSION%) & goto :eof
if "!ARG!"=="-X" call :Exec.Off & goto next_arg
:# Special targets that need special handling
if "!ARG!"=="cleanenv" goto :CleanBuildEnvironment &:# This routine exits directly
if not "LIGHTMAKE"=="0" (
for %%t in (help clean mostlyclean distclean module_name) do (
if "!ARG!"=="%%t" (
call :GetConfig
call :nmake !ARG! & exit /b
)
)
:# Any goal that begins with "list_" and that contains no . or \
if not "!ARG:list_=!"=="!ARG!" if "!ARG:.=!"=="!ARG!" if "!ARG:\=!"=="!ARG!" call :nmake !ARG! & exit /b
)
:# Anything else is an nmake argument. Fall through
goto go
:go
if "%LIGHTMAKE%"=="1" call :nmake !ARG! !ARGS! & exit /b
call :GetConfig :# Get Development tools location. Also defines OUTDIR.
if errorlevel 1 exit /b
:# Create the output directory if needed
if "%OUTDIR%"=="" (
set "OUTDIR=bin"
set "OUTDIR\=bin\"
) else if "%OUTDIR%"=="." (
set "OUTDIR\="
) else (
set "OUTDIR\=%OUTDIR%\"
)
:# Allow optionally creating a junction instead of a subdirectory
if defined LINK_OUTDIR ( :# Check if creating junctions works, and if so, prepare to create one
mklink /j TEST_JUNCTION_CREATION "%LINK_OUTDIR%\%OUTDIR%" >NUL 2>NUL
if not errorlevel 1 (
set "MD_OUTDIR0=!MD_OUTDIR!"
set MD_OUTDIR=mklink /j "%OUTDIR%" "%LINK_OUTDIR%\%OUTDIR%"
rd TEST_JUNCTION_CREATION
)
)
if not defined MD_OUTDIR set MD_OUTDIR=md "%OUTDIR%"
%ECHOVARS.D% CD OUTDIR LINK_OUTDIR MD_OUTDIR
if not "%OUTDIR%"=="" call :is_dir "%OUTDIR%" || %MD_OUTDIR% || (
>&2 echo Error: %MD_OUTDIR%: Cannot create the output directory.
exit /b 1
)
if defined LINK_OUTDIR ( :# Restore the initial MD_OUTDIR saved above
set "MD_OUTDIR=!MD_OUTDIR0!"
set "MD_OUTDIR0="
set "LINK_OUTDIR=" &rem Make sure it's not inherited
)
:# Select a log file
if "%DOLOG%"=="1" if not defined LOGFILE ( :# Create one, in OUTDIR if defined
set "LOGFILE=make.log"
set "LOGFILE=%OUTDIR\%!LOGFILE!"
if exist "!LOGFILE!" del "!LOGFILE!"
call :Debug.SetLog "!LOGFILE!"
) &:# else keep using the parent instance log file
:# Start logging by recording the make command.
%LOG% make %*
%LOG%
:# Log settings from %CONFIG.BAT%
%LOG% :# -------------------------- %CONFIG.BAT% --------------------------
%>>LOGFILE% type %CONFIG.BAT%
%LOG% :# ----------------------- End of %CONFIG.BAT% ----------------------
%LOG%
:# Get the shell PID. Useful for scripts or make files that want to generate unique IDs.
if not defined PID call :GetPID
:# Get the remaining args, and parse nmake command line arguments
set "LASTGOAL="
set "MAKEARGS=/x -"
set "NEEDMAKEFILE="
if defined MAKEFILE set "NEEDMAKEFILE=1"
goto :get_ra
:next_ra
%POPARG%
:get_ra
if not defined ARG goto done_ra
if "!ARG:~0,1!"=="/" ( :# This is a switch
%ECHO.D% :# nmake switch !"ARG"!
set "NMAKEFLAGS=!NMAKEFLAGS! !ARG!"
) else ( :# Not a switch, so either a variable definition or a goal
set "ISDEF="
for /l %%i in (0,1,20) do if not defined ISDEF if "!ARG:~%%i,1!!ARG:~%%i,1!"=="==" set "ISDEF=1"
if defined ISDEF ( :# It's a variable definition
%ECHO.D% :# nmake variable !"ARG"!
set MAKEDEFS=!MAKEDEFS!!SPACE!!"ARG"!
set MAKEARGS=!MAKEARGS! !"ARG"!
) else ( :# It's a goal = a build target
%ECHO.D% :# nmake goal !"ARG"!
set "LASTGOAL=!ARG!" &:# Record the last goal, without quotes
set MAKEGOALS=!MAKEGOALS! !"ARG"!
if not defined MAKEFILE if exist "%STINCLUDE%\All.mak" (
set "SUBDIR="
%ECHO.D% :# Looking for SUBDIR in goal !"ARG"!
:# If the goal includes a path, then extract the last component of that path.
if not "!ARG:\=!"=="!ARG!" for %%a in ("!ARG!") do for %%b in ("%%~dpa") do (
set "B=%%~b" &:# But this path ends with a trailing \, which we remove below
for %%c in ("!B:~0,-1!") do set "SUBDIR=%%~nxc"
)
if defined SUBDIR if exist "%STINCLUDE%\!SUBDIR!.mak" (
set "MAKEFILE=%STINCLUDE%\!SUBDIR!.mak"
%ECHO.D% :# Setting MAKEFILE !MAKEFILE! after goal !"ARG"!
)
if not defined MAKEFILE (
call :GetDefaultMakeFile
%ECHO.D% :# Using default MAKEFILE !MAKEFILE!
)
set MAKEARGS=!MAKEARGS! /f !MAKEFILE!
:# Note: I hoped to be able to use multiple make files for multiple goals in distinct subdirs.
:# This appears to work well in some cases, but not at all in others.
:# So until this is resolved, I'll prevent the generation of more than 1 make file.
:# set "MAKEFILE=" &:# Clear the make file, to allow generating others.
rem
) else (
set "NEEDMAKEFILE=1"
)
set MAKEARGS=!MAKEARGS! !"ARG"!
)
)
if "!NMAKEFLAGS:~0,1!"==" " set "NMAKEFLAGS=!NMAKEFLAGS:~1!"
if "!MAKEARGS:~0,1!"==" " set "MAKEARGS=!MAKEARGS:~1!"
goto next_ra
:done_ra
if not defined MAKEGOALS set "NEEDMAKEFILE=1" &:# We do need a make file to build a default target
%ECHOVARS.D% CD MAKEFILE NMAKEFLAGS MAKEDEFS MAKEGOALS LASTGOAL NEEDMAKEFILE INCLUDE STINCLUDE PID MAKEORIGIN %MAKEORIGIN%_CC OUTDIR
:# Set a makefile if needed, based on the target subdirectory
:# :# Select a make file if none was specified
:# if not defined MAKEFILE if exist "All.mak" if defined MAKEGOALS (
:# for %%g in (%MAKEGOALS%) do (
:# set "GOAL=%%~g"
:# %ECHO.D% :# Looking for SUBDIR in goal !GOAL!
:# :# Look for the first \ index
:# set "SUBDIR="
:# for /l %%i in (0,1,10) do if not defined SUBDIR if "!GOAL:~%%i,1!"=="\" set "SUBDIR=!GOAL:~0,%%i!"
:# if defined SUBDIR if not defined MAKEFILE if exist "!SUBDIR!.mak" (
:# set "MAKEFILE=!SUBDIR!.mak"
:# %ECHO.D% :# Setting MAKEFILE=!MAKEFILE! after goal !GOAL!
:# )
:# )
:# )
:# Use default makes files if still no one was specified
if not defined MAKEFILE call :GetDefaultMakeFile
if defined NEEDMAKEFILE set MAKEARGS=/f !MAKEFILE! !MAKEARGS!
:# Now run nmake
set RESULT=Success
set "MOPATH=!%MAKEORIGIN%_PATH!"
if not defined MAKE for %%m in (nmake.exe) do set "MAKE="%%~$MOPATH:m"" &:# Includes enclosing quotes
set "MOPATH="
:# set CMD=%MAKE% /f %MAKEFILE% /x - %NMAKEFLAGS% %MAKEDEFS% %MAKEGOALS%
set CMD=%MAKE% %NMAKEFLAGS% MESSAGES=1 %MAKEARGS%
setlocal &:# Clear a few multi-line variables that pollute the (nmake /P) logs
for %%v in (LF1 LF2 LF3 LF4 LF5 MACRO /MACRO ON_MACRO_EXIT) do set "%%v="
set "-L=-L"
if defined LOGFILE set "-L=-l"
%EXEC% %-L% %CMD%
endlocal & set ERROR=%ERRORLEVEL%
if not "%ERROR%"=="0" set RESULT=Failure
%IF_NOEXEC% if defined LOGFILE del %LOGFILE% & goto :eof
%LOG%
%LOG% %RESULT%
:# Log the post-make actions we're about to do
:# I'm afraid the %ECHO% methods won't work with multi-line macros, so decomposing the log and echo tasks.
%LOG%
%>>LOGFILE% 2>&1 (if defined POST_MAKE_ACTIONS (set POST_MAKE_ACTIONS) else (echo :# No POST_MAKE_ACTIONS))
if defined POST_MAKE_ACTIONS (%IF_VERBOSE% set POST_MAKE_ACTIONS) else (%IF_DEBUG% echo :# No POST_MAKE_ACTIONS)
%ECHO.D% make.bat: return %ERROR%
:# Rename %LOGFILE% after the goal. The goal is the last argument, without the extension.
if .%LOGFILE%.==.NUL. set "LOGFILE="
if %MAKEDEPTH%==0 if defined LOGFILE ( :# If this is the top-level instance of make.bat, show the final result
set GOAL=
for %%F in ("%LASTGOAL%") do set "GOAL=%%~nF"
:# If there's no goal, maybe the makefile itself has a rule to generate the default log file name
if not defined GOAL (
:# Gotcha: nmake always displays on stdout: "Started parsing rules in NMakeFile." So redirect stderr.
:# Gotcha: The exit code does not survive the 'sub-shell' return. So test it inside, and change the sub-shell output.
:# Gotcha: Testing variables in the subshell requires three pairs of ^. So use if errorlevel 1.
for %%m in (%MAKE%) do set "MAKE=%%~sm" &rem :# Get the short name, else the following invokation fails
%ECHO.D% !MAKE! /nologo /s /c /f %MAKEFILE% /x - module_name
for /f "delims=" %%g in (
'!MAKE! /nologo /s /c /f %MAKEFILE% /x - module_name 2^>NUL ^& if errorlevel 1 echo :'
) do set "GOAL=%%g"
:# ":" is an impossible goal name, flagging the absence of target "module_name" in the makefile.
if "!GOAL!"==":" set "GOAL="
)
:# If there's still no goal, use the make file name. (Provided it's not a generic makefile.)
if not defined GOAL for %%F in (%MAKEFILE%) do if /i "%%~nxF" neq "NMakefile" if /i "%%~nxF" neq "All.mak" set GOAL=%%~nF
:# If there's still no goal, and the %CD% is something like ...\PROGRAM\SRC, use the word %PROGRAM%
if not defined GOAL (
for %%f in ("!CD!") do set "CD0=%%~nxf"
pushd ..
for %%f in ("!CD!") do set "CD1=%%~nxf"
popd
if /i "!CD0!" equ "src" set "GOAL=!CD1!"
)
%ECHOVARS.D% GOAL
:# If there's still no goal, use the current directory name.
if not defined GOAL set "GOAL=!CD0!"
%ECHOVARS.D% GOAL LOGDIR
:# Rename %LOGFILE% after the %GOAL%, and display the build log.
set LOGFILE2=!GOAL!.log
if not defined LOGDIR if defined OUTDIR set "LOGDIR=%OUTDIR%"
if defined LOGDIR set "LOGFILE2=!LOGDIR!\!LOGFILE2!"
if not "!LOGFILE2!"=="!LOGFILE!" (
if exist "!LOGFILE2!" del "!LOGFILE2!"
move "!LOGFILE!" "!LOGFILE2!" >nul
call :Debug.SetLog "!LOGFILE2!"
)
%ECHOVARS.D% LOGFILE
)
if %MAKEDEPTH%==0 ( :# If this is the top-level instance of make.bat, show the final result
set "SHOW_LOG=%ERROR%"
if %ERROR%==0 if defined LOGFILE ( :# Count warnings in the log file, excluding constants like _CRT_SECURE_NO_WARNINGS
set "WARNINGS=0"
for /f "delims=" %%l in ('findstr /i warning "%LOGFILE%" ^| findstr /v WARNING') do set /a "WARNINGS+=1"
if not !WARNINGS!==0 (
set "RESULT=!RESULT!, but with !WARNINGS! warnings"
set "SHOW_LOG=1"
)
)
>con echo.
>con echo !RESULT!
if not !SHOW_LOG!==0 start notepad "%LOGFILE%"
)
set "&="
if defined POST_MAKE_ACTIONS set "&=&"
endlocal %&% %POST_MAKE_ACTIONS% & exit /b %ERROR%
| JFLarvoire/the_silver_searcher | win32/include/make.bat | bat | apache-2.0 | 92,320 |
@ECHO OFF
git commit -am "autosave %date%-%time:~0,8%" | MatthijsLasure/documentation | gitcommit.bat | bat | apache-2.0 | 54 |
-m --std=08 some analyze_options -P./libx --work=libx --workdir=./libx vhdl_lfile
-r --std=08 some analyze_options -P./libx --work=libx --workdir=./libx vhdl_lfile a few run_options -ggeneric_bool=true -ggeneric_int=42 -ggeneric_str=hello
| SymbiFlow/edalize | tests/test_ghdl/test04/elab-run.cmd | bat | bsd-2-clause | 239 |
@echo off
set "VIRTUAL_ENV=D:\Python27\myproject"
if defined _OLD_VIRTUAL_PROMPT (
set "PROMPT=%_OLD_VIRTUAL_PROMPT%"
) else (
if not defined PROMPT (
set "PROMPT=$P$G"
)
set "_OLD_VIRTUAL_PROMPT=%PROMPT%"
)
set "PROMPT=(myproject) %PROMPT%"
if not defined _OLD_VIRTUAL_PYTHONHOME (
set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%"
)
set PYTHONHOME=
if defined _OLD_VIRTUAL_PATH (
set "PATH=%_OLD_VIRTUAL_PATH%"
) else (
set "_OLD_VIRTUAL_PATH=%PATH%"
)
set "PATH=%VIRTUAL_ENV%\Scripts;%PATH%"
:END
| lz1988/flaskweb | Scripts/activate.bat | bat | bsd-2-clause | 531 |
cd C:\SQLCC\Release\Dir
SQLCC.exe --action=stop --traceFileName="TraceName" | stefanteixeira/sqlcc | stop.bat | bat | bsd-3-clause | 75 |
/*******************************************************************/
/* */
/* REXXUDEM.CMD */
/* */
/* This program calls the various REXX external functions */
/* provided in the REXXUTIL.C sample function package. */
/* */
/* Each function is called once to illustrate how it is used. */
/* Some of the functions have multiple options and multiple */
/* types of output, but not all options are used here. */
/* */
/* Some of the functions in REXXUTIL only work in windowed */
/* or fullscreen command prompt sessions, not in PMREXX. */
/* This is because they are doing vio-type operations such as */
/* placing the cursor at a particular place on the screen. */
/* So if this program is run in PMREXX, it will start a new */
/* windowed session and run itself there. */
/* */
/*******************************************************************/
'@echo off'
/* Detect if we are running under PMREXX. */
/* Some of the REXXUTIL functions (such as SysCurPos) only work */
/* in OS/2 command prompt sessions, not in PMREXX. */
If Address() = 'PMREXX' Then Do
Say 'This program will now run itself in a windowed '
Say ' command prompt session'
'START REXXUDEM.CMD /C /WIN'
Exit
End
/* We now know we are running in a line-mode session. */
/*
* Now load all functions
*/
say "Load all functons..."
rc = rxfuncadd('SysLoadFuncs','REXXUTIL', 'SysLoadFuncs')
say rc
call SysLoadFuncs
say "Done."
/*** Demonstrate SysOS2Ver ***/
call SysCls
say; say 'Demonstrating SysOS2Ver/SysVersion'
Say 'You are running OS/2 version 'SysECSVer( ) /* SysOS2Ver() */
say 'This is library version 'SysUtilVersion( )
/*** Demonstrate SysBootDrive ***/
/* save result for other tests */
say; say 'Demonstrating SysBootDrive'
bootdrive =SysBootDrive( )
say 'Boot drive is: 'bootdrive
say 'Boot drive type is: 'SysFileSystemType(bootdrive)
say 'SysProcessType 'SysProcessType( )
say 'Process codepage: 'SysQueryProcessCodePage( )
call SysPause 'Press a key'
/*** Demonstrate SysCls ***/
say;
call SysPause 'Demonstrating SysCls, press Enter key...'
call SysCls
say; say 'Did you see that quick screen-clear via SysCls?'
call SysPause 'Press a key'
/*** Demonstrate SysGetKey ***/
say;
say 'Demonstrating SysGetKey...'
say 'SysGetKey with NOECHO option - Press any letter key...'
keypressed = SysGetKey(NOECHO)
say 'You pressed 'keypressed
say;
say 'SysGetKey with ECHO option - Press any letter key...'
keypressed = SysGetKey(ECHO)
say;
say 'You pressed 'keypressed
call SysPause 'Press a key'
/*** Demonstrate SysQueryExtLIBPATH & SysSetExtLIBPATH ***/
call SysCls
say 'Demonstrating SysQueryExtLIBPATH & SysSetExtLIBPATH:'
savedBeginPath =SysQueryExtLIBPATH("B")
savedEndPath =SysQueryExtLIBPATH("E")
say ' Begin: 'savedBeginPath
say ' End: 'savedEndPath
say 'Setting both to c:\os2'
call SysSetExtLIBPATH "c:\os2",'b'
call SysSetExtLIBPATH "c:\os2",'e'
say ' Begin: 'SysQueryExtLIBPATH("B")
say ' End: 'SysQueryExtLIBPATH("E")
say 'Appending using %BEGINLIBPATH%;c:\os2\dll'
say 'and %ENDLIBPATH%;c:\os2\dll'
call SysSetExtLIBPATH "%BEGINLIBPATH%;c:\os2\dll",'b'
call SysSetExtLIBPATH "%ENDLIBPATH%;c:\os2\dll",'e'
say ' Begin: 'SysQueryExtLIBPATH("B")
say ' End: 'SysQueryExtLIBPATH("E")
say 'Clear both:'
call SysSetExtLIBPATH ,'b'
call SysSetExtLIBPATH ,'e'
say ' Begin: 'SysQueryExtLIBPATH("B")
say ' End: 'SysQueryExtLIBPATH("E")
say 'Restore previous:'
call SysSetExtLIBPATH savedBeginPath,'b'
call SysSetExtLIBPATH savedEndPath,'e'
say ' Begin: 'SysQueryExtLIBPATH("B")
say ' End: 'SysQueryExtLIBPATH("E")
call SysPause 'Press a key'
call SysCls
/*** Demonstrate SysQueryClassList ***/
say;
call SysPause 'Demonstrating SysQueryClassList, press Enter key...'
call SysQueryClassList names
DO i = 1 TO names.0
SAY i names.i
END
say 'Found 'names.0' classes'
call SysPause 'Press a key'
call SysCls
/*** Demonstrate SysAddFileHandle ***/
say;
call SysPause 'Demonstrating SysAddFileHandle, press Enter key...'
say 'Current number of file handles 'SysAddFileHandle('0')
call SysAddFileHandle(10)
say 'Add 10 handles, now number of file handles 'SysAddFileHandle(0)
call SysPause 'Press a key'
/*** Demonstrate SysCurPos ***/
call SysCls
say; say 'Demonstrating SysCurPos...'
call SysCurPos '3', '0'
call SysPause 'Press a key'
call SysCurPos '10', '50'
call SysPause 'Press a key'
call SysCurPos '20', '20'
call SysPause 'Press a key'
call SysCurPos '5', '65'
call SysPause 'Press a key'
call SysCurPos '23', '0'
call SysPause
/*** Demonstrate SysCurState ***/
call SysCls
call SysCurState 'OFF'
say; say 'Demonstrating SysCurState..'; say
call SysPause 'Note that the cursor is hidden. Press Enter key...'
call SysCurState 'ON'
/*** Demonstrate SysDriveInfo ***/
call SysCls
say; say 'Demonstrating SysDriveInfo by displaying',
bootdrive' drive info:'
say SysDriveInfo(bootdrive)
call SysPause
/*** Demonstrate SysDriveMap ***/
call SysCls
say; say 'Demonstrating SysDriveMap by displaying all available drives:'
say SysDriveMap( )
call SysPause
/*** Demonstrate SysGetMessage ***/
call SysCls
say; say 'Demonstrating SysGetMessage by reading message #34 from OSO001.MSG'; say
say SysGetMessage(34, , 'A:', 'the diskette labeled "Disk 2"', 'SER0002')
Say ' (that was just a demonstration. You do not have to insert a diskette)'
call SysPause 'Press a key'
/*** Demonstrate SysDumpVariables ***/
call SysCls
say 'Demonstrating SysDumpVariables...'
say 'This is a dump of current variables:'
call SysDumpVariables
say
call SysPause 'Press a key'
say 'Performing SysDumpVariables rxtemp.fil for next test'
call SysDumpVariables 'rxtemp.fil'
call SysPause 'Press a key'
/*** Demonstrate SysSetIcon ***/
say
say 'Demonstrating SysSetIcon...'
say 'add rexxudem.ico to rxtemp.fil'
Ret = SysSetIcon('rxtemp.fil', 'rexxudem.ico')
if Ret then say "Returned OK"
else say "Returned BAD"
call SysPause 'You can check the file and then Press a key'
/*** Demonstrate SysPutEA ***/
say; say 'Demonstrating SysPutEA...'
/*
call SysSay 'Creating rxtemp.fil...'
call lineout 'rxtemp.fil', 'xyzpdq'
call stream 'rxtemp.fil', 'C', 'CLOSE'
say 'done.'*/
OS2_rc = SysPutEA('rxtemp.fil', 'REXXUDEM', 'Demonstration of SysPutEA')
If OS2_rc = 0 Then Say 'rxtemp.fil now has an Extended Attribute',
'named REXXUDEM.'
Else Say 'We have a problem, the OS/2 file system returned error' OS2_rc
call SysPause 'Press a key'
/*** Demonstrate SysGetEA ***/
call SysCls
say; say 'Demonstrating SysGetEA...'
OS2_rc = SysGetEA('rxtemp.fil', 'REXXUDEM', 'my_output_variable')
If OS2_rc = 0 Then Do
Say 'the value of the REXXUDEM Exnded Attribute',
'is "'my_output_variable'"'
If my_output_variable == 'Demonstration of SysPutEA' then
Say ' ...and that is the right value.'
else Say ' ...but that is the wrong value!'
End
Else Say 'We have a problem, the OS/2 file system returned error' OS2_rc
call SysPause 'Press a key'
/*** Demonstrate SysGetFileDateTime and SysSetFileDateTime ***/
call SysCls
say; say 'Demonstrating SysGetFileDateTime and SysSetFileDateTime:'
say; say "Current rxtemp.fil times and dates:"
say 'Create: 'SysGetFileDateTime("rxtemp.fil", C)
say 'Access: 'SysGetFileDateTime("rxtemp.fil", A)
say 'Write: 'SysGetFileDateTime("rxtemp.fil", W)
say; say "Changing file modified time and date to:"
say "2000-03-20 13:25:02"
call SysSetFileDateTime "rxtemp.fil","2000-03-20","13:25:02"
say 'Write: 'SysGetFileDateTime("rxtemp.fil", W)
say; say "restoring to current:"
call SysSetFileDateTime "rxtemp.fil"
say 'Write: 'SysGetFileDateTime("rxtemp.fil", W)
call SysPause 'Press a key'
/*** Demonstrate SysFileDelete ***/
call SysCls
say; say 'Demonstrating SysFileDelete by deleting the file rxtemp.fil:'
call SysPause
if SysFileDelete('rxtemp.fil')=0 then
say 'The file rxtemp.fil has been deleted.'
else
say 'Could not delete rxtemp.fil!'
call SysPause
/*** Demonstrate SysFileSearch ***/
call SysCls
say; say 'Demonstrating SysFileSearch:'
say 'About to search the 'bootdrive'\CONFIG.SYS files for'
say 'the word "device":'; say
call SysPause; say
call SysFileSearch 'device', bootdrive'\config.sys', 'file'
say 'Lines found:'; say
do num=1 to file.0
say file.num
end
say
call SysPause
/*** Demonstrate SysFileTree ***/
call SysCls
say; say 'Demonstrating SysFileTree by displaying all entries in',
bootdrive' root subdir:'
call SysPause
call SysFileTree bootdrive'\*', 'files', 'B'
say;
do num=1 to files.0
say files.num
end
call SysPause
/*** Demonstrate SysIni ***/
call SysCls
say; say 'Demonstrating SysIni by placing time information in OS2.INI file...'
time=Time()
call SysIni , 'REXXUDEM', 'TIME', time
call SysPause
say; say 'Demonstrating SysIni by retrieving time information from OS2.INI file...'
val = SysIni( , 'REXXUDEM', 'TIME')
say 'The retrieved information = 'val; say
call SysPause
say; say 'Deleting the time information from the OS2.INI file...'
call SysINI , 'REXXUDEM', 'TIME', '$RXDEL'
call SysPause
/*** Demonstrate SysMkDir ***/
call SysCls
say; say 'Demonstrating SysMkDir:'
say 'RC when trying to create directory',
bootdrive'\RXTMPDIR = 'SysMkDir(bootdrive'\RXTMPDIR')
call SysPause
/*** Demonstrate SysRmDir ***/
call SysCls
say; say 'Demonstrating SysRmDir:'
say 'RC when trying to remove directory',
bootdrive'\RXTMPDIR = 'SysRmDir(bootdrive'\RXTMPDIR')
call SysPause
/*** Demonstrate SysSearchPath ***/
call SysCls
say; say 'Demonstrating SysSearchPath by searching for CMD.EXE in PATH:'
call SysPause
say 'Directory containing CMD.EXE is: 'SysSearchPath('PATH', 'cmd.exe')
call SysPause
/*** Demonstrate SysSleep ***/
call SysCls
say; say 'Demonstrating SysSleep: Sleeping for 2.5 seconds...'
call SysSleep '2.5'
call SysPause
/*** Demonstrate SysTempFileName ***/
call SysCls
say; say 'Demonstrating SysTempFileName:'; say
say 'Unique file in' bootdrive'\OS2 =',
SysTempFileName(bootdrive'\OS2\OS2.???'); say
call SysPause
/*** Demonstrate SysTextScreenRead ***/
call SysCls
say; say 'Demonstrating SysTextScreenRead by reading the entire screen.'; say
do i=0 to 10
say copies(' ', i*5)'Hello'
end
say
call SysPause 'Press Enter key to read the screen...'
screen = SysTextScreenRead(0, 0)
say 'Screen read.'
call SysPause 'Press Enter key to clear the screen then restore it...'
call SysCls
call SysSay screen
call SysPause
/*** Demonstrate SysTextScreenSize ***/
call SysCls
say; say 'Demonstrating SysTextScreenSize...'
parse value SysTextScreenSize() with row col
say 'Rows='row', Columns='col
call SysPause
/*** Demonstrate SysDropFuncs ***/
call SysCls
say; say 'Demonstrating SysDropFuncs...'
Call SysDropFuncs
Say 'The functions have now been dropped.'
say; say 'REXXUDEM demonstration program is complete.'
exit
SysPause:
parse arg prompt
if prompt='' then
prompt='Press Enter key when ready . . .'
call SysSay prompt
Pull .
say
return
SysSay:
parse arg string
call charout 'STDOUT', string
return
| OS2World/LIB-REXX-REXX_Utilities | rexxudem.cmd | bat | epl-1.0 | 11,462 |
cmd_drivers/media/rc/rc-core.o := arm-linux-gnueabihf-ld -EL -r -o drivers/media/rc/rc-core.o drivers/media/rc/rc-main.o drivers/media/rc/ir-raw.o
| Dee-UK/D33_KK_Kernel | drivers/media/rc/.rc-core.o.cmd | bat | gpl-2.0 | 151 |
cmd_net/netfilter/netfilter.o := mips-openwrt-linux-uclibc-ld -m elf32btsmip -r -o net/netfilter/netfilter.o net/netfilter/core.o net/netfilter/nf_log.o net/netfilter/nf_queue.o net/netfilter/nf_sockopt.o
| shizhai/wprobe | build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/net/netfilter/.netfilter.o.cmd | bat | gpl-2.0 | 209 |
@echo off
REM Copyright (C) 2008 Search Solution Corporation. All rights reserved by Search Solution.
REM
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation; either version 2 of the License, or
REM (at your option) any later version.
REM
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with this program; if not, write to the Free Software
REM Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
set APP_NAME=%0
set BUILD_TARGET=win32
set BUILD_MODE=.
set SELECTED_LOCALE=.
set LOCALE_PARAM=
set VS80_VC_FOLDER=
set VS90_VC_FOLDER=
set VS100_VC_FOLDER=
set VCVARS=bin\vcvars32.bat
:CHECK_OPTION
if "%1." == "." (GOTO :CHECK_ENV)
if "%1" == "/debug" (
if "%BUILD_MODE%" == "." (
set BUILD_MODE=debug
GOTO :DO_SHIFT
) else (GOTO :ERROR_BUILD_MODE)
)
if "%1" == "/release" (
if "%BUILD_MODE%" == "." (
set BUILD_MODE=release
GOTO :DO_SHIFT
) else (GOTO :ERROR_BUILD_MODE)
)
if "%1" == "/h" (GOTO :SHOW_USAGE)
if "%1" == "/?" (GOTO :SHOW_USAGE)
if "%1" == "/help" (GOTO :SHOW_USAGE)
if NOT "%2" == "" (GOTO :ERROR)
if "%SELECTED_LOCALE%" == "." (
set SELECTED_LOCALE=%1
GOTO :CHECK_ENV
)
GOTO :ERROR
:DO_SHIFT
shift
GOTO :CHECK_OPTION
:CHECK_ENV
if "%SELECTED_LOCALE%" == "." (
set SELECTED_LOCALE=all_locales
) else (
if "%SELECTED_LOCALE:~0,1%" == "-" goto :ERROR
set LOCALE_PARAM=%SELECTED_LOCALE%
)
if "%BUILD_MODE%" == "." set BUILD_MODE=release
@echo. Matching environment with the selected options...
@echo. Searching for Visual Studio installs...
if NOT "%VS80COMNTOOLS%"=="" (
@echo. Found installation for Visual Studio 2005
)
if NOT "%VS90COMNTOOLS%"=="" (
@echo. Found installation for Visual Studio 2008
)
if NOT "%VS100COMNTOOLS%"=="" (
@echo. Found installation for Visual Studio 2010
)
@echo. Checking for %BUILD_TARGET% configuration...
if exist "%VS90COMNTOOLS%..\..\VC\%VCVARS%" (
@echo. Found %BUILD_TARGET% configuration in Visual Studio 2008.
call "%VS90COMNTOOLS%..\..\VC\%VCVARS%"
goto :BUILD
)
if exist "%VS80COMNTOOLS%..\..\VC\%VCVARS%" (
echo Found %BUILD_TARGET% configuration in Visual Studio 2005.
call "%VS80COMNTOOLS%..\..\VC\%VCVARS%"
goto :BUILD
)
if exist "%VS100COMNTOOLS%..\..\VC\%VCVARS%" (
echo Found %BUILD_TARGET% configuration in Visual Studio 2010.
call "%VS100COMNTOOLS%..\..\VC\%VCVARS%"
goto :BUILD
)
goto :ENV_ERROR
:BUILD
@echo. Running %APP_NAME% with parameters:
@echo. BUILD_TARGET = %BUILD_TARGET%
@echo. BUILD_MODE = %BUILD_MODE%
@echo. SELECTED_LOCALE = %SELECTED_LOCALE%
@echo.
@echo. Generating locale C file for %SELECTED_LOCALE% ...
cubrid genlocale %LOCALE_PARAM%
if %ERRORLEVEL% NEQ 0 goto :ERROR_GENLOCALE
echo Compiling locale library ...
mkdir %CUBRID%\locales\loclib\Output
set CURRENT_DIR=%CD%
cd /D %CUBRID%\locales\loclib
nmake -f makefile %BUILD_MODE%
echo Done.
cd /D %CURRENT_DIR%
if not exist "%CUBRID%\locales\loclib\Output\loclib.dll" goto :BUILD_FAILED
echo Copying %CUBRID%\locales\loclib\Output\loclib.dll to %CUBRID%\lib\libcubrid_%SELECTED_LOCALE%.dll ...
copy %CUBRID%\locales\loclib\Output\loclib.dll %CUBRID%\lib\libcubrid_%SELECTED_LOCALE%.dll /y
echo Done.
echo Removing build folder %CUBRID%\locales\loclib\Output...
rmdir /S /Q %CUBRID%\locales\loclib\Output
echo Done.
echo Removing locale C source file %CUBRID%\locales\loclib\locale.c ...
del /Q %CUBRID%\locales\loclib\locale.c
echo Done!
echo The library for the selected locale(s) has been created at %CUBRID%\lib\libcubrid_%SELECTED_LOCALE%.dll
echo To check compatibility and synchronize your existing databases, run:
echo "cubrid synccolldb <database-name>"
goto :eof
:ERROR_TARGET
@echo. Target already set to %BUILD_TARGET%
GOTO :SHOW_USAGE
:ERROR_BUILD_MODE
@echo. Build mode already set to %BUILD_MODE%
GOTO :SHOW_USAGE
:ERROR
@echo. Invalid parameter %1
GOTO :SHOW_USAGE
:ERROR_GENLOCALE
@echo. ERROR : cubrid genlocale %LOCALE_PARAM% failed!
goto :GENERIC_ERROR
:ENV_ERROR
@echo. ERROR: Tools and configuration for %BUILD_TARGET% were not found.
goto :GENERIC_ERROR
:BUILD_FAILED
@echo. ERROR: Locale DLL compile failed!
goto :GENERIC_ERROR
:SHOW_USAGE
@echo.
@echo.USAGE: %APP_NAME% [/release^|/debug] [LOCALE]
@echo.Build locale shared 32bit DLL for CUBRID
@echo. OPTIONS
@echo. /release or /debug Build with release or debug mode (default: release)
@echo. LOCALE The locale name for which to build the library.
@echo. (Ommit param to build all configured locales.)
@echo. /help /h /? Display this help message and exit
@echo.
@echo. Examples:
@echo. %APP_NAME% # Build and pack all locales (32bit/release)
@echo. %APP_NAME% de_DE # Create release library for de_DE (German) locale
@echo. %APP_NAME% /debug # Create debug mode library with all locales
@echo. %APP_NAME% /debug de_DE # Create debug mode library for de_DE locale
:GENERIC_ERROR
if exist %CUBRID%\locales\loclib\Output (
rmdir /S /Q %CUBRID%\locales\loclib\Output
)
if exist %CUBRID%\locales\loclib\locale.c (
del /Q %CUBRID%\locales\loclib\locale.c
)
:eof
| andrei14vl/cubrid | locales/make_locale_Win32.bat | bat | gpl-3.0 | 5,706 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\rebuild\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\rebuild\cli.js" %*
) | mihl9/Pixel-Wars | server/node_modules/.bin/rebuild.cmd | bat | gpl-3.0 | 170 |
@echo off
echo Creating plots...
set savedir=%CD%
set basepath=C:/Users/Evan/Documents/SEMERU/TraceLab/trunk/SEMERU.Experiments/CSMR'13/results/
set script=%basepath%/PRcurve.Rocco.R
cd C:/Program Files/R/R-2.13.1/bin
echo Plotting Rocco results...
Rscript %script% Rocco %basepath%/CSMRTools/RoccoResults %basepath%/CSMRTools/RoccoResults
cd %savedir%
echo Done. | SoftwareEngineeringToolDemos/ICSE-2012-TraceLab | Main/Packages/SEMERU WM 1.0.0.0/SEMERU.Experiments/CSMR'13/results/plots.Rocco.bat | bat | gpl-3.0 | 363 |
@echo off
setlocal
cd %~dp0
rem By default on Windows we build Hadrian using Stack
./build.stack.bat %*
| ezyang/ghc | hadrian/build.bat | bat | bsd-3-clause | 105 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.