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
if "%1" == "" (
echo Usage: %0 suffix
exit /B 1
)
for %%x in ( hkcr hkcu hklm hku hkcc ) do (
echo adding %%x to keys_%1.txt
reg query %%x /f pdfcreator /k /s >> keys_%1.txt
)
| Open365/spice-web-client | misc/pdfcreator/generate_registry.bat | bat | agpl-3.0 | 192 |
@echo off
tclsh cb_call1.tcl
| hemmerling/codebreaker | src/tcl/codebreaker_call/cb_call1.bat | bat | lgpl-2.1 | 31 |
REM @echo off
REM No LIBRARYNAME here as this is not distributed with Tribler as BaseLib
REM Check that we are running from the expected directory
IF NOT EXIST build\win (
ECHO .
ECHO Please, execute this script from the repository root
EXIT /b
)
REM locate Python directory and set up Python environment
python3 build\win\locate-python.py > tmp_pythonhome.txt
SET /p PYTHONHOME= < tmp_pythonhome.txt
DEL /f /q tmp_pythonhome.txt
REM Arno: Add . to find our core
SET PYTHONPATH=.;%PYTHONHOME%
ECHO PYTHONPATH SET TO %PYTHONPATH%
REM ----- Check for PyInstaller
IF NOT EXIST %PYTHONHOME%\Scripts\pyinstaller.exe (
ECHO .
ECHO Could not locate pyinstaller in %PYTHONHOME%\Scripts.
ECHO Please modify this script or install PyInstaller [www.pyinstaller.org]
EXIT /b
)
REM ----- Check for NSIS installer
SET NSIS="C:\Program Files\NSIS\makensis.exe"
IF NOT EXIST %NSIS% SET NSIS="C:\Program Files (x86)\NSIS\makensis.exe"
IF NOT EXIST %NSIS% (
ECHO .
ECHO Could not locate the NSIS installer at %NSIS%.
ECHO Please modify this script or install NSIS [nsis.sf.net]
EXIT /b
)
REM ----- Clean up
call build\win\clean.bat
REM ----- Build
REM Arno: When adding files here, make sure tribler.nsi actually
REM packs them in the installer .EXE
%PYTHONHOME%\Scripts\pyinstaller.exe tribler.spec
copy build\win\resources\tribler*.nsi dist\tribler
REM Martijn 2016-11-05: causing problems with PyInstaller
REM copy Tribler\Main\Build\Win\tribler.exe.manifest dist\tribler
type LICENSE binary-LICENSE-postfix.txt > binary-LICENSE.txt
copy binary-LICENSE.txt dist\tribler
mkdir dist\tribler\tools
copy build\win\tools\reset*.bat dist\tribler\tools
REM Laurens, 2016-04-20: Copy the redistributables of 2008, 2012 and 2015 and the VLC installer to the install dir
REM Sandip, 2019-10-24: redistributables 2008, 2012 are not necessary anymore
REM copy C:\build\vc_redist_110.exe dist\tribler
copy C:\build\vc_redist_140.exe dist\tribler
REM Copy various libraries required on runtime (libsodium and openssl)
copy C:\build\libsodium.dll dist\tribler
REM Sandip, 2019-10-24: No need to copy openssl dlls separately
REM copy C:\build\openssl\*.dll dist\tribler
REM Copy missing dll files
copy C:\build\missing_dlls\*.dll dist\tribler
REM Copy VLC, different files based on 32-bit or 64-bit
mkdir dist\tribler\VLC
xcopy C:\build\vlc dist\tribler\VLC /s /e
REM Make sure that there are no conflicting VLC DLLs in the Tribler root directory
IF EXIST dist\tribler\libvlc.dll DEL /F dist\tribler\libvlc.dll
IF EXIST dist\tribler\libvlccore.dll DEL /F dist\tribler\libvlccore.dll
REM If there is a plugin cache (plugins.dat), remove it to avoid stale plugin warnings during runtime
IF EXIST dist\tribler\VLC\plugins\plugins.dat DEL /F dist\tribler\VLC\plugins\plugins.dat
@echo Running NSIS
cd dist\tribler
REM get password for swarmplayerprivatekey.pfx
set /p PASSWORD="Enter the PFX password:"
REM Arno: Sign Tribler.exe so MS "Block / Unblock" dialog has publisher info.
REM --- Doing this in ugly way for now
signtool.exe sign /f C:\build\certs\certificate.pfx /p "%PASSWORD%" /d "Tribler" /t "http://timestamp.digicert.com" tribler.exe
:makeinstaller
%NSIS% tribler.nsi
move Tribler_*.exe ..
cd ..
REM Arno: Sign installer
signtool.exe sign /f c:\build\certs\certificate.pfx /p "%PASSWORD%" /d "Tribler" /t "http://timestamp.digicert.com" Tribler_*.exe
cd ..
| hbiyik/tribler | build/win/makedist_win.bat | bat | lgpl-3.0 | 3,383 |
nuget pack ..\Source\MediaFireSDK\MediaFireSDK.csproj -Prop Configuration=Release | MediaFire/mediafire-csharp-open-sdk | Nuget/CreateNugetPackage.bat | bat | apache-2.0 | 81 |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem
rem ----------------------------------------------------------------------------
rem build.bat - Win32 Build Script for Apache Lenya
rem
rem $Id: build.bat 54525 2004-10-11 09:39:04Z cziegeler $
rem ----------------------------------------------------------------------------
rem ----- Ignore system CLASSPATH variable
set OLD_CLASSPATH=%CLASSPATH%
set CLASSPATH=
for %%i in (lib\*.jar) do call tools\bin\appendcp.bat %%i
rem ----- Use Ant shipped with Cocoon. Ignore installed in the system Ant
set OLD_ANT_HOME=%ANT_HOME%
set ANT_HOME=tools
call %ANT_HOME%\bin\ant -Djava.endorsed.dirs=lib\endorsed -logger org.apache.tools.ant.NoBannerLogger -emacs %1 %2 %3 %4 %5 %6 %7 %8 %9
rem ----- Restore ANT_HOME and ANT_OPTS
set ANT_HOME=%OLD_ANT_HOME%
set OLD_ANT_HOME=
rem ----- Restore CLASSPATH
set CLASSPATH=%OLD_CLASSPATH%
set OLD_CLASSPATH=
| apache/lenya | build.bat | bat | apache-2.0 | 1,682 |
@echo off
cscript /nologo %0\..\count.js
| joewalnes/websocketd | examples/windows-jscript/count.cmd | bat | bsd-2-clause | 43 |
@ECHO OFF
:: ********************************************************************************************************************
::
:: enabling Technology progressive OS deployment
:: Client System Bootstrapper for Windows 10 Enterprise Installations
::
:: Update All Microsoft Store Apps
:: Version 1.0.0
::
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
::
:: Please review all the scripts BEFORE you install it on any of your systems.
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
::
:: ********************************************************************************************************************
SETLOCAL
:UpdateAllMicrosoftStoreApps
TITLE UpdateAllMicrosoftStoreApps
SET Module=UpdateAllMicrosoftStoreApps
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
:SetLogHeader
ECHO ******************************************************************************** >%logfile_setup%
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
ECHO.>>%logfile_setup% 2>nul
:LOGIC
ECHO Update all Microsoft Store Apps
ECHO %TIME:~0,8% Update all Microsoft Store Apps >>%logfile_setup% 2>&1
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Update-AllMicrosoftStoreApps.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
ECHO.>>%logfile_setup% 2>nul
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
ECHO ******************************************************************************** >>%logfile_setup%
ECHO.>>%logfile_setup% 2>nul
:: ********************************************************************************************************************
::
:: Changelog:
::
:: 0.9.0: Internal Test
:: 1.0.0: Initial Release
::
:: ********************************************************************************************************************
::
:: License: BSD 3-Clause License
::
:: Copyright 2020, enabling Technology
:: All rights reserved.
::
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
:: following conditions are met:
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
:: disclaimer.
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
:: following disclaimer in the documentation and/or other materials provided with the distribution.
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
:: products derived from this software without specific prior written permission.
::
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
::
:: ********************************************************************************************************************
::
:: Disclaimer:
:: - Use at your own risk, etc.
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
:: in any kind
:: - This is a third-party Software
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
:: subsidiaries in any way
:: - The Software is not supported by Microsoft Corp (MSFT)
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
::
:: ********************************************************************************************************************
| jhochwald/PowerShell-collection | Windows10-Bootstrapper/sources/$OEM$/$$/Setup/Scripts/35-UpdateAllMicrosoftStoreApps/UpdateAllMicrosoftStoreApps.cmd | bat | bsd-3-clause | 4,523 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S02_OperationOnContentType.MSLISTSWS_S02_TC42_GetListContentTypes_IncorrectListName /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S02_TC42_GetListContentTypes_IncorrectListName.cmd | bat | mit | 328 |
java -classpath ..\..\lib\ironjacamar-rarinfo.jar;..\..\lib\ironjacamar-common-spi.jar;..\..\lib\jboss-logging.jar;..\..\lib\jboss-common-core.jar;..\..\lib\ironjacamar-spec-api.jar;..\..\lib\jandex.jar;..\..\lib\ironjacamar-common-impl.jar;..\..\lib\ironjacamar-common-api.jar;..\..\lib\ironjacamar-core-impl.jar;..\..\lib\ironjacamar-core-api.jar;..\..\lib\ironjacamar-validator.jar;..\..\lib\jandex.jar;..\..\lib\validation-api.jar;..\..\lib\hibernate-validator.jar org.ironjacamar.rarinfo.Main %*
| jandsu/ironjacamar | rarinfo/src/dist/resources/rar-info.bat | bat | epl-1.0 | 501 |
# Not used
| gitpan/Devel-Trepan | t/data/trace1.cmd | bat | gpl-3.0 | 11 |
rmdir /q /s build
mkdir build
cmake.exe -G "Visual Studio 16 2019" -A x64 -Bbuild .
| google/filament | third_party/tinyexr/vcsetup2019.bat | bat | apache-2.0 | 85 |
@echo off
rem tools/mkdeps.sh
rem
rem Copyright (C) 2012 Gregory Nutt. All rights reserved.
rem Author: Gregory Nutt <gnutt@nuttx.org>
rem
rem Redistribution and use in source and binary forms, with or without
rem modification, are permitted provided that the following conditions
rem are met:
rem
rem 1. Redistributions of source code must retain the above copyright
rem notice, this list of conditions and the following disclaimer.
rem 2. Redistributions in binary form must reproduce the above copyright
rem notice, this list of conditions and the following disclaimer in
rem the documentation and/or other materials provided with the
rem distribution.
rem 3. Neither the name NuttX nor the names of its contributors may be
rem used to endorse or promote products derived from this software
rem without specific prior written permission.
rem
rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
rem "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
rem LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
rem FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
rem COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
rem INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
rem BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
rem OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
rem AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
rem LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
rem ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
rem POSSIBILITY OF SUCH DAMAGE.
rem Accumulate CFLAGS up to "--"
set cc=
set cflags=
set altpath=
set files=
set args=
set objpath=
set suffix=.o
set debug=n
:Loop
if "%1"=="" goto Continue
if "%1"=="--" (
set cc=%cflags%
set cflags=%args%
set args=
goto NextParm
)
if "%1"=="--dep-path" (
if "%args%"=="" (
set altpath=%altpath% %2
) else (
set args=%args% %2
)
shift
goto NextParm
)
if "%1"=="--obj-path" (
set objpath=%2
shift
goto NextParm
)
if "%1"=="--obj-suffix" (
set suffix=%2
shift
goto NextParm
)
if "%1"=="--dep-debug" (
rem @echo on
set debug=y
goto NextParm
)
if "%1"=="--help" goto Usage
if "%args%"=="" (
set args=%1
) else (
set args=%args% %1
)
:NextParm
shift
goto Loop
:Continue
set files=%args%
if "%debug%"=="y" (
echo cc=%cc%
echo cflags=%cflags%
echo files=%files%
echo altpath=%altpath%
)
rem Now check if we have everything
if "%cc%"=="" (
echo ERROR: No compiler specified
goto Usage
)
if "%files%"=="" (
rem Don't report an error -- this happens normally in some configurations
echo # No files specified for dependency generataion
goto End
)
rem Then get the dependencies for each file
if "%altpath%"=="" goto NoPaths
for %%G in (%files%) do (
set fullpath=
set file=%%G
call :Checkpaths
if "%debug%"=="y" echo %file%: fullpath=%fullpath%
if "%fullpath%"=="" goto :NoFile
mtarg=""
if "%objpath%"=="" (
set objname=%~n1
set mtarg="-MT %objpath%\%objname%%suffix%
)
if "%debug%"=="y" echo CMD: %cc% -M %cflags% %fullpath%
%cc% -M %mtarg% %cflags% %fullpath% || goto DepFail
)
goto :End
:NoPaths
for %%G in (%files%) do (
set fullpath=
set file=%%G
call :CheckFile %%G
)
goto :End
:CheckFile
if "%debug%"=="y" echo Checkfile: Checking %file%
if not exist %file% goto :NoFile
set fullpath=%file%
if "%debug%"=="y" echo CMD: %cc% -M %cflags% %fullpath%
%cc% -M %cflags% %fullpath% || goto DepFail
goto :EOF
:CheckPaths
for %%H in (%altpath%) do (
set tmppath=%%H\%file%
if "%debug%"=="y" echo Checkfile: Checking %tmppath%
if exist %tmppath% (
set fullpath=%tmppath%
goto :EOF
)
)
goto :EOF
:NoFile
echo ERROR: No readable file at %file%
goto Usage
:DepFail
echo ERROR: Failed to created dependencies for %file%
:Usage
echo Usage: mkdeps [OPTIONS] CC -- CFLAGS -- file [file [file...]]
echo Where:
echo CC
echo A variable number of arguments that define how to execute the compiler
echo CFLAGS
echo The compiler compilation flags
echo file
echo One or more C files whose dependencies will be checked. Each file is expected
echo to reside in the current directory unless --dep-path is provided on the command line
echo And [OPTIONS] include:
echo --dep-debug
echo Enable script debug
echo --dep-path ^<path^>
echo Do not look in the current directory for the file. Instead, look in <path> to see
echo if the file resides there. --dep-path may be used multiple times to specify
echo multiple alternative location
echo --obj-path ^<path^>
echo The final objects will not reside in this path but, rather, at the path provided by
echo ^<path^>. if provided multiple time, only the last --obj-path will be used.
echo --obj-suffix ^<suffix^>
echo If and object path is provided, then the extension will be assumed to be .o. This
echo default suffix can be overrided with this command line option.
echo --help
echo Shows this message and exits
:End
| IUTInfoAix/terrarium_2015 | nuttx/tools/mkdeps.bat | bat | bsd-2-clause | 5,121 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set TOOLSPATH=../tools
set EXAMPLEBUILD=examples_rst.py
set NOTEBOOKBUILD=nbgenerate.py
set FOLDTOC=fold_toc.py
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
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" (
REM python %TOOLSPATH%/%EXAMPLEBUILD%
echo python %TOOLSPATH%/%NOTEBOOKBUILD% --execute=True --allow_errors=True
python %TOOLSPATH%/%NOTEBOOKBUILD% --execute=True --allow_errors=True
echo %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
xcopy /s source/examples/notebooks/generated/*.html %BUILDDIR%/html/examples/notebooks/generated
echo python %TOOLSPATH%/%FOLDTOC% %BUILDDIR%/html/index.html
python %TOOLSPATH%/%FOLDTOC% %BUILDDIR%/html/index.html
echo python %TOOLSPATH%/%FOLDTOC% %BUILDDIR%/html/examples/index.html ../_static
python %TOOLSPATH%/%FOLDTOC% %BUILDDIR%/html/examples/index.html ../_static
echo python %TOOLSPATH%/%FOLDTOC% %BUILDDIR%/html/dev/index.html ../_static
python %TOOLSPATH%/%FOLDTOC% %BUILDDIR%/html/dev/index.html ../_static
if NOT EXIST %BUILDDIR%/html/examples/notebooks/generated mkdir %BUILDDIR%\html\examples\notebooks\generated
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\esip.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\esip.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
start python fix_longtable.py %BUILDDIR%
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| phobson/statsmodels | docs/make.bat | bat | bsd-3-clause | 5,565 |
.\halite.exe -d "30 30" "ruby MyBot.rb" "ruby RandomBot.rb"
| discotroll65/garretts-halite-repo | runGame.bat | bat | mit | 60 |
@if not defined _echo @echo off
setlocal
set INIT_TOOLS_LOG=%~dp0init-tools.log
if [%PACKAGES_DIR%]==[] set PACKAGES_DIR=%~dp0packages\
if [%TOOLRUNTIME_DIR%]==[] set TOOLRUNTIME_DIR=%~dp0Tools
set DOTNET_PATH=%TOOLRUNTIME_DIR%\dotnetcli\
if [%DOTNET_CMD%]==[] set DOTNET_CMD=%DOTNET_PATH%dotnet.exe
if [%BUILDTOOLS_SOURCE%]==[] set BUILDTOOLS_SOURCE=https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json
set /P BUILDTOOLS_VERSION=< "%~dp0BuildToolsVersion.txt"
set BUILD_TOOLS_PATH=%PACKAGES_DIR%Microsoft.DotNet.BuildTools\%BUILDTOOLS_VERSION%\lib\
set INIT_TOOLS_RESTORE_PROJECT=%~dp0init-tools.msbuild
set BUILD_TOOLS_SEMAPHORE_DIR=%TOOLRUNTIME_DIR%\%BUILDTOOLS_VERSION%
set BUILD_TOOLS_SEMAPHORE=%BUILD_TOOLS_SEMAPHORE_DIR%\init-tools.completed
:: if force option is specified then clean the tool runtime and build tools package directory to force it to get recreated
if [%1]==[force] (
if exist "%TOOLRUNTIME_DIR%" rmdir /S /Q "%TOOLRUNTIME_DIR%"
if exist "%PACKAGES_DIR%Microsoft.DotNet.BuildTools" rmdir /S /Q "%PACKAGES_DIR%Microsoft.DotNet.BuildTools"
)
:: If semaphore exists do nothing
if exist "%BUILD_TOOLS_SEMAPHORE%" (
echo %__MsgPrefix%Tools are already initialized.
goto :EOF
)
if exist "%TOOLRUNTIME_DIR%" rmdir /S /Q "%TOOLRUNTIME_DIR%"
if exist "%DotNetBuildToolsDir%" (
echo Using tools from '%DotNetBuildToolsDir%'.
mklink /j "%TOOLRUNTIME_DIR%" "%DotNetBuildToolsDir%"
if not exist "%DOTNET_CMD%" (
echo ERROR: Ensure that '%DotNetBuildToolsDir%' contains the .NET Core SDK at '%DOTNET_PATH%'
exit /b 1
)
echo Done initializing tools.
echo Using tools from '%DotNetBuildToolsDir%'. > "%BUILD_TOOLS_SEMAPHORE%"
exit /b 0
)
echo Running %0 > "%INIT_TOOLS_LOG%"
set /p DOTNET_VERSION=< "%~dp0DotnetCLIVersion.txt"
if exist "%DOTNET_CMD%" goto :afterdotnetrestore
echo %__MsgPrefix%Installing dotnet cli...
if NOT exist "%DOTNET_PATH%" mkdir "%DOTNET_PATH%"
set DOTNET_ZIP_NAME=dotnet-sdk-%DOTNET_VERSION%-win-x64.zip
set DOTNET_REMOTE_PATH=https://dotnetcli.azureedge.net/dotnet/Sdk/%DOTNET_VERSION%/%DOTNET_ZIP_NAME%
set DOTNET_LOCAL_PATH=%DOTNET_PATH%%DOTNET_ZIP_NAME%
echo %__MsgPrefix%Installing '%DOTNET_REMOTE_PATH%' to '%DOTNET_LOCAL_PATH%' >> "%INIT_TOOLS_LOG%"
powershell -NoProfile -ExecutionPolicy unrestricted -Command "$retryCount = 0; $success = $false; do { try { (New-Object Net.WebClient).DownloadFile('%DOTNET_REMOTE_PATH%', '%DOTNET_LOCAL_PATH%'); $success = $true; } catch { if ($retryCount -ge 6) { throw; } else { $retryCount++; Start-Sleep -Seconds (5 * $retryCount); } } } while ($success -eq $false); Add-Type -Assembly 'System.IO.Compression.FileSystem' -ErrorVariable AddTypeErrors; if ($AddTypeErrors.Count -eq 0) { [System.IO.Compression.ZipFile]::ExtractToDirectory('%DOTNET_LOCAL_PATH%', '%DOTNET_PATH%') } else { (New-Object -com shell.application).namespace('%DOTNET_PATH%').CopyHere((new-object -com shell.application).namespace('%DOTNET_LOCAL_PATH%').Items(),16) }" >> "%INIT_TOOLS_LOG%"
if NOT exist "%DOTNET_LOCAL_PATH%" (
echo %__MsgPrefix%ERROR: Could not install dotnet cli correctly. 1>&2
goto :error
)
:afterdotnetrestore
if exist "%BUILD_TOOLS_PATH%" goto :afterbuildtoolsrestore
echo %__MsgPrefix%Restoring BuildTools version %BUILDTOOLS_VERSION%...
echo %__MsgPrefix%Running: "%DOTNET_CMD%" restore "%INIT_TOOLS_RESTORE_PROJECT%" --no-cache --packages %PACKAGES_DIR% --source "%BUILDTOOLS_SOURCE%" /p:BuildToolsPackageVersion=%BUILDTOOLS_VERSION% /p:ToolsDir=%TOOLRUNTIME_DIR% >> "%INIT_TOOLS_LOG%"
call "%DOTNET_CMD%" restore "%INIT_TOOLS_RESTORE_PROJECT%" --no-cache --packages %PACKAGES_DIR% --source "%BUILDTOOLS_SOURCE%" /p:BuildToolsPackageVersion=%BUILDTOOLS_VERSION% /p:ToolsDir=%TOOLRUNTIME_DIR% >> "%INIT_TOOLS_LOG%"
if NOT exist "%BUILD_TOOLS_PATH%init-tools.cmd" (
%__MsgPrefix%echo ERROR: Could not restore build tools correctly. 1>&2
goto :error
)
:afterbuildtoolsrestore
:: Ask init-tools to also restore ILAsm
set /p ILASMCOMPILER_VERSION=< "%~dp0ILAsmVersion.txt"
echo %__MsgPrefix%Initializing BuildTools...
echo %__MsgPrefix%Running: "%BUILD_TOOLS_PATH%init-tools.cmd" "%~dp0" "%DOTNET_CMD%" "%TOOLRUNTIME_DIR%" >> "%INIT_TOOLS_LOG%"
call "%BUILD_TOOLS_PATH%init-tools.cmd" "%~dp0" "%DOTNET_CMD%" "%TOOLRUNTIME_DIR%" >> "%INIT_TOOLS_LOG%"
set INIT_TOOLS_ERRORLEVEL=%ERRORLEVEL%
if not [%INIT_TOOLS_ERRORLEVEL%]==[0] (
echo ERROR: An error occured when trying to initialize the tools. 1>&2
goto :error
)
:: Create semaphore file
echo %__MsgPrefix%Done initializing tools.
if NOT exist "%BUILD_TOOLS_SEMAPHORE_DIR%" (
mkdir "%BUILD_TOOLS_SEMAPHORE_DIR%"
)
echo %__MsgPrefix%Init-Tools.cmd completed for BuildTools Version: %BUILDTOOLS_VERSION% > "%BUILD_TOOLS_SEMAPHORE%"
exit /b 0
:error
echo %__MsgPrefix%Please check the detailed log that follows. 1>&2
type "%INIT_TOOLS_LOG%" 1>&2
exit /b 1
| ruben-ayrapetyan/coreclr | init-tools.cmd | bat | mit | 4,848 |
@echo off
rem Hack to run install-info with multiple info files on the command
rem line on the Windows platform.
rem Copyright (C) 2003-2013 Free Software Foundation, Inc.
rem This file is part of GNU Emacs.
rem GNU Emacs 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 3 of the License, or
rem (at your option) any later version.
rem GNU Emacs 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 You should have received a copy of the GNU General Public License
rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/.
rem Usage:
rem multi-install-info <switch passed to install-info> FILE1 FILE2 ...
rem
rem By Peter 'Luna' Runestig <peter@runestig.com> 2003
set INSTALL_INFO=install-info
set II_SWITCH=%1=%2
rem Eat the install-info switch:
shift
:Loop
shift
if .%1% == . goto EndLoop
%INSTALL_INFO% %II_SWITCH% %1
goto Loop
:EndLoop
| sjw7453584/emacs-24.3 | nt/multi-install-info.bat | bat | gpl-3.0 | 1,242 |
@echo off
cd ..\test
set XML_SCHEMA=..\schema\FIX50SP2.xml
set XML_HF_SCHEMA=..\schema\FIX42PERF.xml
set XML_FIXT_SCHEMA=..\schema\FIXT11.xml
set Configuration=%2
set Platform=%3
set OutDir=%4
set F8C=not_set
if %Configuration% EQU Debug (
set F8C=%OutDir%\f8cd
) else (
set F8C=%OutDir%\f8c
)
set lost=0
for %%i in (Myfix_classes.cpp
Myfix_classes.hpp
Myfix_router.hpp
Myfix_traits.cpp
Myfix_types.cpp
Myfix_types.hpp
Perf_classes.cpp
Perf_classes.hpp
Perf_router.hpp
Perf_traits.cpp
Perf_types.cpp
Perf_types.hpp) do (
if not exist %%i (
set lost=1
echo %%i NOT exist
) else (
echo %%i exist
)
)
set needBuild=0
set needClean=0
echo going to do [%1]
if %1 EQU clean (
set needClean=1
set needBuild=0
)
if %1 EQU rebuild (
set needClean=1
set needBuild=1
)
if %1 EQU build (
if %lost% == 1 (
set needClean=1
set needBuild=1
)
)
if %needClean% == 1 (
echo ************going to clean************
for %%i in (Myfix_classes.cpp
Myfix_classes.hpp
Myfix_router.hpp
Myfix_traits.cpp
Myfix_types.cpp
Myfix_types.hpp
Perf_classes.cpp
Perf_classes.hpp
Perf_router.hpp
Perf_traits.cpp
Perf_types.cpp
Perf_types.hpp) do (
if exist %%i (
echo going to del %%i
del %%i
)
)
echo ************ clean end ************
)
if %needBuild% == 1 (
echo ************going to generate************
%F8C% -rVn TEX %XML_SCHEMA% -x %XML_FIXT_SCHEMA%
%F8C% -sVUp Perf -n TEX %XML_HF_SCHEMA%
echo ************ generate done ************
)
| singhdev/fix8 | msvc/f8c_test.cmd | bat | lgpl-3.0 | 1,575 |
@echo on
REM This is an example how the manuals get generated on Windows with MikTeX (2.9)
REM Set the full path to executable pdflatex, or put its installation path to the %PATH% env instead.
set PDFLATEXBIN="pdflatex"
cd %~dp0
mkdir output
REM Comment out or in whatever your focus is on.
REM English XCSoar-manual generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0en --include-directory=%~dp0 --output-directory=%~dp0output %~dp0en\XCSoar-manual.tex
REM English XCSoar-developer-manual generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0en --include-directory=%~dp0 --output-directory=%~dp0output %~dp0en\XCSoar-developer-manual.tex
REM German XCSoar-Blitzeinstieg generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0de\Blitz --include-directory=%~dp0de\Blitz\Bilder --include-directory=%~dp0 --output-directory=%~dp0output %~dp0de\Blitz\XCSoar-Blitzeinstieg.tex
REM German XCSoar-Handbuch generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0de --include-directory=%~dp0 --include-directory=%~dp0en --output-directory=%~dp0output %~dp0de\XCSoar-manual-de.tex
REM French XCSoar-Prise-en-main generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0fr --include-directory=%~dp0 --output-directory=%~dp0output %~dp0fr\XCSoar-Prise-en-main.tex
REM French XCSoar-manual-fr generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0fr --include-directory=%~dp0 --include-directory=%~dp0en --output-directory=%~dp0output %~dp0fr\XCSoar-manual-fr.tex
REM Polish XCSoar-manual-pl generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0pl --include-directory=%~dp0 --include-directory=%~dp0en --output-directory=%~dp0output %~dp0pl\XCSoar-manual-pl.tex
REM Portuguese XCSoar-manual-pt_BR generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0pt_BR --include-directory=%~dp0 --include-directory=%~dp0en --output-directory=%~dp0output %~dp0pl\XCSoar-manual-pt_BR.tex
| etnestad/xcsoar | doc/manual/generate_manuals.bat | bat | gpl-2.0 | 2,235 |
:: 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 full_path=%~dp0
IF EXIST %full_path%check_reqs.js (
cscript "%full_path%check_reqs.js" //nologo
) ELSE (
ECHO.
ECHO ERROR: Could not find 'check_reqs.js' in 'bin' folder, aborting...>&2
EXIT /B 1
)
| christiankaiser/geoguide | lib/phonegap-2.8.1/lib/android/bin/check_reqs.bat | bat | gpl-3.0 | 1,034 |
:: This script assumes the standard setup on tensorflow Jenkins windows machines.
:: It is NOT guaranteed to work on any other machine. Use at your own risk!
::
:: REQUIREMENTS:
:: * All installed in standard locations:
:: - JDK8, and JAVA_HOME set.
:: - Microsoft Visual Studio 2015 Community Edition
:: - Msys2
:: - Anaconda3
:: - CMake
:: Record the directory we are in. Script should be invoked from the root of the repository.
SET REPO_ROOT=%cd%
:: Make sure we have a clean directory to build things in.
SET BUILD_DIR=cmake_build
RMDIR %BUILD_DIR% /S /Q
MKDIR %BUILD_DIR%
CD %BUILD_DIR%
:: Set which tests to build
SET BUILD_CC_TESTS=OFF
SET BUILD_PYTHON_TESTS=ON
SET PIP_EXE="C:\Program Files\Anaconda3\Scripts\pip.exe"
:: Run the CMAKE build to build the pip package.
CALL %REPO_ROOT%\tensorflow\tools\ci_build\windows\gpu\cmake\run_build.bat
if %errorlevel% neq 0 exit /b %errorlevel%
:: Attempt to upgrade PIP to work around Anaconda issue #542.
%PIP_EXE% install --ignore-installed --upgrade pip setuptools -v -v
:: Since there are no wildcards in windows command prompt, use dark magic to get the wheel file name.
DIR %REPO_ROOT%\%BUILD_DIR%\tf_python\dist\ /S /B > wheel_filename_file
set /p WHEEL_FILENAME=<wheel_filename_file
del wheel_filename_file
:: Install the pip package.
echo Installing PIP package...
%PIP_EXE% install --upgrade %WHEEL_FILENAME% -v -v
if %errorlevel% neq 0 exit /b %errorlevel%
:: Run all python tests if the installation succeeded.
echo Running tests...
ctest -C Release --output-on-failure --jobs 1
| GehenHe/Recognize-Face-on-Android | tensorflow/tools/ci_build/windows/gpu/cmake/run_py.bat | bat | apache-2.0 | 1,560 |
@echo off
if not "x%WDKDIR%" == "x" goto SELECT_LIB
echo The WDKDIR environment variable is not set
echo Set this variable to your WDK directory (without ending backslash)
echo Example: set WDKDIR C:\WinDDK\6001
pause
goto:eof
:SELECT_LIB
set PROJECT_DIR=%~dp0
set LIBRARY_NAME=StormLibWDK
:PREPARE_SOURCES
echo Preparing sources ...
copy .\src\wdk\sources-cpp.cpp . >nul
copy .\src\wdk\sources-wdk-* . >nul
echo.
:BUILD_LIB_32
echo Building %LIBRARY_NAME%.lib (32-bit) ...
set DDKBUILDENV=
call %WDKDIR%\bin\setenv.bat %WDKDIR%\ fre w2k
cd %PROJECT_DIR%
build.exe -czgw
del buildfre_w2k_x86.log
echo.
:BUILD_LIB_64
echo Building %LIBRARY_NAME%.lib (64-bit) ...
set DDKBUILDENV=
call %WDKDIR%\bin\setenv.bat %WDKDIR%\ fre x64 WLH
cd %PROJECT_DIR%
build.exe -czgw
del buildfre_wlh_amd64.log
echo.
:COPY_LIBS
xcopy /Y /D .\src\StormLib.h ..\aaa\inc >nul
xcopy /Y /D .\src\StormPort.h ..\aaa\inc >nul
xcopy /Y /D .\objfre_w2k_x86\i386\%LIBRARY_NAME%.lib ..\aaa\lib32\%LIBRARY_NAME%.lib >nul
xcopy /Y /D .\objfre_wlh_amd64\amd64\%LIBRARY_NAME%.lib ..\aaa\lib64\%LIBRARY_NAME%.lib >nul
:CLEANUP
if exist sources-cpp.cpp del sources-cpp.cpp
if exist sources-wdk-* del sources-wdk-*
if exist build.bat del build.bat
| ladislav-zezula/StormLib | make.bat | bat | mit | 1,221 |
:: Created by npm, please don't edit manually.
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\esmangle\bin\esmangle.js" %*
) ELSE (
node "%~dp0\..\esmangle\bin\esmangle.js" %*
) | vendethiel/Sprockets-PHP | node_modules/.bin/esmangle.cmd | bat | mit | 192 |
@echo off
echo Chinook Database Version 1.4
echo.
if "%1"=="" goto MENU
if not exist %1 goto ERROR
set SQLFILE=%1
goto RUNSQL
:ERROR
echo The file %1 does not exist.
echo.
goto END
:MENU
echo Options:
echo.
echo 1. Run Chinook_PostgreSql.sql
echo 2. Exit
echo.
choice /c 123
if (%ERRORLEVEL%)==(1) set SQLFILE=Chinook_PostgreSql.sql
if (%ERRORLEVEL%)==(2) goto END
:RUNSQL
echo.
echo Running %SQLFILE%...
SET "PGOPTIONS=-c client_min_messages=WARNING"
"C:\Program Files\PostgreSQL\pg95\bin\dropdb" --if-exists -U postgres Chinook
"C:\Program Files\PostgreSQL\pg95\bin\createdb" -U postgres Chinook
"C:\Program Files\PostgreSQL\pg95\bin\psql" -f %SQLFILE% -q Chinook postgres
:END
echo.
set SQLFILE=
| naster01/DataCloner | archive/DataCloner.IntegrationTests/Chinook1.4/CreatePostgreSql.bat | bat | mit | 707 |
:: Purpose: Runs a series of cleaners and anti-virus engines to clean up/disinfect a Windows PC. All Windows versions XP and up are supported
:: Kevin Flynn: "Who's that guy?"
:: Program: "That's Tron. He fights for the User."
:: Requirements: Run from the current users desktop. Run as Administrator.
:: Author: vocatus on reddit.com/r/TronScript ( vocatus.gate at gmail ) // PGP key: 0x07d1490f82a211a2
:: Version: 1.2.1 - Remove references to Adobe Flash
:: 1.2.0 / Change REMOVE_MALWAREBYTES to PRESERVE_MALWAREBYTES (-pmb)
:: 1.1.9 + Add REMOVE_MALWAREBYTES (-rmb) switch to have Tron automatically remove Malwarebytes at the end of the run. Thanks to tbr:greg
:: + Add SKIP_COOKIE_CLEANUP (-scc) switch to have Tron preserve ALL cookies. Thanks to tbr:sebastian
:: 1.1.8 / Rename all instances of "argument(s)" to "switch(es)" to maintain project consistency
:: 1.1.7 + Add value of WIN_VER_NUM to -c output
:: 1.1.6 + Add support for new SKIP_ONEDRIVE_REMOVAL (-sor) switch. Thanks to github:ptrkhh
:: 1.1.5 - Remove references to patching Java due to removal of that functionality
:: 1.1.4 - Remove auto-relaunch on reboot if the script was interrupted. Just couldn't get it working reliably with UAC. Thanks to u/bubonis
:: 1.1.3 ! Move prerun checks and tasks to after parse_commandline_switches, to allow -dev switch to function correctly. Thanks to github:justinhachemeister
:: * Replace all relative references to reg.exe with hard-coded %REG% (set in initialize_environment.bat). Thanks to u/SkyPork for reporting
:: 1.1.2 / Move SMART error detection code to prerun_checks_and_tasks.bat
:: 1.1.1 + Add upload of Metro app list dump if -udl switch is used
:: / Move Stage 7 code out of tron.bat into it's own discrete script
:: 1.1.0 / Move network connection detection code into initialize_environment.bat
:: + Add display of whether or not warnings and errors were detected to end-screen
:: 1.0.9 + Add support for detection of Internet connection on French language systems. Thanks to u/mr_marmotte
:: 1.0.8 * Improve network detection routine to address possibility of multiple languages in ipconfig output
:: 1.0.7 * Improve network detection routine to work on German-language systems. Thanks to u/smokie12
:: 1.0.6 ! Bugfixes for -a and -asm switches. Thanks to u/agent-squirrel
:: 1.0.5 * Update code to support new -asm switch and alter original -a switch behavior (no longer auto-reboot into safe mode, unless -asm is used along with -a)
:: - Remove "System is not in Safe Mode" warning. Tron is shifting emphasis away from running in Safe Mode since it's not technically required
:: * Move help output (-h) to it's own function at the bottom of the script instead of cluttering up the pre-run section
:: 1.0.4 ! Fix bug in debug log upload code
:: 1.0.3 / Debug Log Upload: Replace PendingFileRename attachment with the system desktop screenshot instead, since this is often more helpful in troubleshooting
:: BE AWARE A SCREENSHOT OF THE DESKTOP CAN CONTAIN PERSONAL INFORMATION, ONLY USE THE -UDL SWITCH IF YOU'RE AWARE OF THIS!
:: 1.0.2 * Preface WMIC calls with null input to ensure the pipe is closed, fixes issue with WMI hanging on WinXP machines. Thanks to github:salsifis
:: Relevant pull: https://github.com/bmrf/tron/pull/108
:: 1.0.1 * Update date/time logging functions to use new log_with_date.bat. No functionality change but should help with code readability. Thanks to /u/DudeManFoo
:: 1.0.0 * Major breaking changes; VERSION in this script now just refers to tron.bat and NOT the overall Tron project version
:: Tron overall project version now resides in \resources\functions\initialize_environment.bat. See that file for more details
:: + Add REPO_TRON_VERSION and REPO_TRON_DATE to config dump (-c) output
:: + Add switch -scs and associated SKIP_CUSTOM_SCRIPTS variable to allow forcibly skipping Stage 8 (custom scripts). This only has
:: effect if .bat files exist in the stage_8_custom_scripts directory. If nothing is there then this option has no effect
:: + Add switch -swo and associated SKIP_WSUS_OFFLINE variable to allow forcibly skipping bundled WSUS Offline updates even if they're
:: present in stage_5_patch\wsus_offline\client\Update.cmd. Online Windows Updates will still be attempted.
:: / Change -sp switch and associated SKIP_PATCHES variable to -sap and SKIP_APP_PATCHES to be consistent with other skip switches
:: / Change -sw switch (SKIP_WINDOWS_UPDATE) to -swu to be consistent with other skip switches
:: - Move task "Enable F8 Key on Bootup" to prerun_checks_and_tasks.bat
:: - Move task "Create log directories if they don't exist" to initialize_environment.bat
:: * Update welcome screen with note about Stage 8: Custom scripts
:: Usage: Run this script as an Administrator (Safe Mode preferred but not required), follow the prompts, and reboot when finished. That's it.
:: Read the included instructions file for information on changing the default run options, using command-line switches, bundling your own scripts, and much more.
::
:: "Do not withhold good from those to whom it is due, when it is in your power to act." -p3:27
@echo off && cls && echo. && echo Loading...
SETLOCAL
:::::::::::::::::::::
:: PREP AND CHECKS ::
:::::::::::::::::::::
color 0f
set SCRIPT_VERSION=1.2.1
set SCRIPT_DATE=2021-01-15
:: Get in the correct drive (~d0) and path (~dp0). Sometimes needed when run from a network or thumb drive.
:: We stay in the \resources directory for the rest of the script
%~d0 2>NUL
pushd "%~dp0" 2>NUL
pushd resources
:: Load the settings file
call functions\tron_settings.bat
:: Initialize the runtime environment
:: We need to pass all CLI switches (%*) so that if we're resuming and -resume is used, initialize_environment.bat has access to it to detect a resume state
call functions\initialize_environment.bat %*
:: Show help if requested
for %%i in (%*) do ( if /i %%i==-h ( call :display_help && exit /b 0) )
:: Parse command-line switches. If used these will override related settings specified in tron_settings.bat.
call :parse_cmdline_args %*
:: Do the pre-run checks and tasks (Admin rights check, temp directory check, SSD check etc)
call functions\prerun_checks_and_tasks.bat
:: Make sure user didn't pass -a and -asm together
if /i %AUTORUN%==yes (
if /i %AUTORUN_IN_SAFE_MODE%==yes ( cls && echo. && echo ERROR: You cannot use -a and -asm together. Pick one or the other. && exit /b 1 ) )
:: INTERNAL PREP: Check if we're resuming from a failed or incomplete previous run (often caused by forced reboots in stage_2_de-bloat)
:: Populate what stage we were on as well as what CLI switches were used. This could probably be a single IF block but I got lazy
:: trying to figure out all the annoying variable expansion parsing stuff. Oh well
if exist tron_stage.txt (
REM Read in the values from the previous run
set /p RESUME_STAGE=<tron_stage.txt 2>NUL
set /p RESUME_SWITCHES=<tron_switches.txt 2>NUL
)
if exist tron_stage.txt call :parse_cmdline_args %RESUME_SWITCHES%
if exist tron_stage.txt (
call functions\log_with_date.bat "! Incomplete run detected. Resuming at %RESUME_STAGE% using switches %RESUME_SWITCHES%..."
REM We can assume Caffeine isn't running (keeps system awake) if we're resuming, so go ahead and re-launch it before jumping to our stage
start "" stage_0_prep\caffeine\caffeine.exe -noicon
goto %RESUME_STAGE%
)
:: INTERNAL PREP: Skip update check if we don't have a network connection
if /i %NETWORK_AVAILABLE%==no (
call functions\log_with_date.bat "! Tron doesn't think we have a network connection. Skipping update checks."
set SKIP_CHECK_UPDATE=yes
set WARNINGS_DETECTED=yes_check_update_skipped
)
:: INTERNAL PREP: Check for updates
if /i %DRY_RUN%==yes set SKIP_CHECK_UPDATE=yes
if /i %AUTORUN%==yes set SKIP_CHECK_UPDATE=yes
if /i %AUTORUN_IN_SAFE_MODE%==yes set SKIP_CHECK_UPDATE=yes
if /i %SKIP_CHECK_UPDATE%==no (
echo.
call functions\log.bat " Checking repo for updated Tron version..."
echo.
call stage_0_prep\check_update\check_update.bat
call functions\log.bat " Done."
echo.
if /i %SKIP_DEBLOAT_UPDATE%==no (
if /i %CONFIG_DUMP%==no (
call functions\log.bat " Downloading latest S2 debloat lists from Github..."
echo.
call stage_0_prep\check_update\check_update_debloat_lists.bat
call functions\log.bat " Done."
echo.
)
)
)
:: INTERNAL PREP: Execute config dump if requested
if /i %CONFIG_DUMP%==yes (
:: We need this set/endlocal pair because on Vista the OS name has "(TM)" in it, which breaks the script. Sigh
SETLOCAL ENABLEDELAYEDEXPANSION
cls
echo.
echo Tron v%TRON_VERSION% ^(%TRON_DATE%^) config dump
echo.
echo Command-line switches:
echo %*
echo.
echo User-set variables:
echo AUTORUN: %AUTORUN%
echo AUTORUN_IN_SAFE_MODE: %AUTORUN_IN_SAFE_MODE%
echo AUTO_REBOOT_DELAY: %AUTO_REBOOT_DELAY%
echo AUTO_SHUTDOWN: %AUTO_SHUTDOWN%
echo CONFIG_DUMP: %CONFIG_DUMP%
echo DEV_MODE: %DEV_MODE%
echo DRY_RUN: %DRY_RUN%
echo EMAIL_REPORT: %EMAIL_REPORT%
echo EULA_ACCEPTED: %EULA_ACCEPTED%
echo LOGFILE: %LOGFILE%
echo LOGPATH: %LOGPATH%
echo NO_PAUSE: %NO_PAUSE%
echo PRESERVE_METRO_APPS: %PRESERVE_METRO_APPS%
echo PRESERVE_POWER_SCHEME: %PRESERVE_POWER_SCHEME%
echo PRESERVE_MALWAREBYTES: %PRESERVE_MALWAREBYTES%
echo QUARANTINE_PATH: %QUARANTINE_PATH%
echo SELF_DESTRUCT: %SELF_DESTRUCT%
echo SKIP_ANTIVIRUS_SCANS: %SKIP_ANTIVIRUS_SCANS%
echo SKIP_APP_PATCHES: %SKIP_APP_PATCHES%
echo SKIP_CUSTOM_SCRIPTS: %SKIP_CUSTOM_SCRIPTS%
echo SKIP_DEBLOAT: %SKIP_DEBLOAT%
echo SKIP_DEBLOAT_UPDATE: %SKIP_DEBLOAT_UPDATE%
echo SKIP_DEFRAG: %SKIP_DEFRAG%
echo SKIP_DISM_CLEANUP: %SKIP_DISM_CLEANUP%
echo SKIP_EVENT_LOG_CLEAR: %SKIP_EVENT_LOG_CLEAR%
echo SKIP_KASPERSKY_SCAN: %SKIP_KASPERSKY_SCAN%
echo SKIP_MBAM_INSTALL: %SKIP_MBAM_INSTALL%
echo SKIP_ONEDRIVE_REMOVAL: %SKIP_ONEDRIVE_REMOVAL%
echo SKIP_PAGEFILE_RESET: %SKIP_PAGEFILE_RESET%
echo SKIP_SOPHOS_SCAN: %SKIP_SOPHOS_SCAN%
echo SKIP_TELEMETRY_REMOVAL: %SKIP_TELEMETRY_REMOVAL%
echo SKIP_WINDOWS_UPDATES: %SKIP_WINDOWS_UPDATES%
echo SKIP_WSUS_OFFLINE: %SKIP_WSUS_OFFLINE%
echo UNICORN_POWER_MODE: %UNICORN_POWER_MODE%
echo UPLOAD_DEBUG_LOGS: %UPLOAD_DEBUG_LOGS%
echo VERBOSE: %VERBOSE%
echo.
echo Script-internal variables:
echo BAD_RUNPATH: %BAD_RUNPATH%
echo CUR_DATE: %CUR_DATE%
echo DTS: %DTS%
echo FIND: %FIND%
echo FINDSTR: %FINDSTR%
echo FREE_SPACE_AFTER: %FREE_SPACE_AFTER%
echo FREE_SPACE_BEFORE: %FREE_SPACE_BEFORE%
echo FREE_SPACE_SAVED: %FREE_SPACE_SAVED%
echo HELP: %HELP%
echo NETWORK_AVAILABLE: %NETWORK_AVAILABLE%
echo REG: %REG%
echo SAFE_MODE: %SAFE_MODE%
echo SAFEBOOT_OPTION: %SAFEBOOT_OPTION%
echo SMART_PROBLEM_CODE: %SMART_PROBLEM_CODE%
echo SYSTEM_LANGUAGE: %SYSTEM_LANGUAGE%
echo TEMP: !TEMP!
echo TARGET_METRO: %TARGET_METRO%
echo TIME: %TIME%
echo TIME_ZONE_NAME: !TIME_ZONE_NAME!
echo TRON_DATE: %TRON_DATE%
echo TRON_VERSION: %TRON_VERSION%
echo PROCESSOR_ARCHITECTURE: %PROCESSOR_ARCHITECTURE%
echo REPO_TRON_DATE: %REPO_TRON_DATE%
echo REPO_TRON_VERSION: %REPO_TRON_VERSION%
echo RESUME_DETECTED: %RESUME_DETECTED%
echo RESUME_SWITCHES: %RESUME_SWITCHES%
echo RESUME_STAGE: %RESUME_STAGE%
echo WIN_VER: !WIN_VER!
echo WIN_VER_NUM: %WIN_VER_NUM%
echo WMIC: %WMIC%
ENDLOCAL DISABLEDELAYEDEXPANSION
exit /b 0
)
:: INTERNAL PREP: Autorun check. Skip EULA, Safe Mode but no Network, Welcome Screen and Email Report checks.
:: I assume if you use either of the auto switches (-a, -asm) you know what you're doing
:autorun_check
if /i %AUTORUN%==yes goto execute_jobs
if /i %AUTORUN_IN_SAFE_MODE%==yes goto execute_jobs
:: INTERNAL PREP: Display the annoying disclaimer screen. Sigh
cls
SETLOCAL ENABLEDELAYEDEXPANSION
if /i not %EULA_ACCEPTED%==yes (
color CF
echo ************************** ANNOYING DISCLAIMER **************************
echo * HEY^^! READ THE INSTRUCTIONS and understand what Tron does, because it *
echo * does a lot of stuff that, while not harmful, can be annoying if not *
echo * expected. e.g. wiping temp files, Local Store, cookies, etc. So if *
echo * Tron does something you didn't expect and you didn't read the *
echo * instructions, it is YOUR FAULT. *
echo * *
echo * tron.bat and the supporting code and scripts are free and open-source *
echo * under the MIT License. All 3rd-party tools Tron calls ^(MBAM, KVRT, *
echo * etc^) are bound by their respective licenses. It is YOUR *
echo * RESPONSIBILITY to determine if you have the rights to use these tools *
echo * in whatever environment you're in. *
echo * *
echo * BOTTOM LINE: By running Tron you accept complete responsibility for *
echo * anything that happens. There is NO WARRANTY, you run it at your OWN *
echo * RISK and anything that happens, good or bad, is YOUR RESPONSIBILITY. *
echo * If you don't agree to this then don't run Tron. *
echo *************************************************************************
echo.
echo Type I AGREE ^(all caps^) to accept this and go to the main menu, or
echo press ctrl^+c to cancel.
echo.
:eula_prompt
set /p CHOICE= Response:
if not "!CHOICE!"=="I AGREE" echo You must type I AGREE to continue&& goto eula_prompt
color 0f
)
ENDLOCAL DISABLEDELAYEDEXPANSION
:: INTERNAL PREP: Check if we're in Safe Mode without Network support
if /i "%SAFEBOOT_OPTION%"=="MINIMAL" (
cls
color 0e
echo.
echo NOTE
echo.
echo The system is in Safe Mode without Network support.
echo Tron functions best in regular boot mode or
echo "Safe Mode with Networking" in order to download
echo Windows and anti-virus definition file updates.
echo.
echo Tron will still function, but rebooting to regular
echo mode or "Safe Mode with Networking" is recommended.
echo.
pause
cls
)
:: INTERNAL PREP: UPM detection circuit
if /i %UNICORN_POWER_MODE%==on (color DF) else (color 0f)
:: INTERNAL PREP: Welcome screen
cls
echo ********************* TRON v%TRON_VERSION% (%TRON_DATE%) *********************
echo * Script to automate a series of cleanup/disinfection tools *
echo * Author: vocatus on reddit.com/r/TronScript *
echo * *
echo * Stage: Tools: *
echo * 0 Prep: Create SysRestore point/Rkill/ProcessKiller/Stinger/ *
echo * TDSSKiller/registry backup/clean oldest VSS set *
echo * 1 TempClean: TempFileClean/CCleaner/IE ^& Event Logs clean *
echo * 2 De-bloat: Remove OEM bloatware, remove Metro bloatware *
echo * 3 Disinfect: Sophos/KVRT/MBAM/DISM repair *
echo * 4 Repair: MSIcleanup/PageFileReset/chkdsk/SFC/telemetry removal *
echo * 5 Patch: Update 7-Zip/Windows, DISM base cleanup *
echo * 6 Optimize: defrag %SystemDrive% (mechanical only, SSDs skipped) *
echo * 7 Wrap-up: collect logs, send email report (if requested) *
echo * 8 Custom: If present, execute user-provided custom scripts *
echo * *
echo * \tron\resources\stage_9_manual_tools contains other useful utils *
echo ***********************************************************************
:: So ugly
echo Current settings (run tron.bat -c to dump full config):
echo Log location: %LOGPATH%\%LOGFILE%
if "%AUTO_REBOOT_DELAY%"=="0" (
echo Auto-reboot delay: disabled
) else (
echo Auto-reboot delay: %AUTO_REBOOT_DELAY% seconds
)
if /i "%SKIP_DEFRAG%"=="yes_ssd" echo Skip defrag? %SKIP_DEFRAG% ^(SSD detected^)
if /i "%SKIP_DEFRAG%"=="yes_vm" echo Skip defrag? %SKIP_DEFRAG% ^(VM detected^)
if /i "%SKIP_DEFRAG%"=="yes_error" echo Skip defrag? %SKIP_DEFRAG% ^(error reading disk stats^)
if /i "%SKIP_DEFRAG%"=="yes" echo Skip defrag? %SKIP_DEFRAG% ^(user set^)
if /i "%SKIP_DEFRAG%"=="no" echo Skip defrag? %SKIP_DEFRAG%
if /i "%SAFE_MODE%"=="no" echo Safe mode? %SAFE_MODE%
if /i "%SAFEBOOT_OPTION%"=="MINIMAL" echo Safe mode? %SAFE_MODE%, without Networking
if /i "%SAFEBOOT_OPTION%"=="NETWORK" echo Safe mode? %SAFE_MODE%, with Networking ^(ideal^)
if /i "%SKIP_DEFRAG:~0,3%"=="yes" (
echo Runtime estimate: 4-6 hours
) else (
echo Runtime estimate: 7-9 hours
)
if /i %DRY_RUN%==yes echo ! DRY_RUN set; will not execute any jobs
if /i %DEV_MODE%==yes echo ! DEV_MODE set; unsupported OS detection overridden
if /i %UNICORN_POWER_MODE%==on echo !! UNICORN POWER MODE ACTIVATED !!
echo.
:welcome_screen_trailer
pause
cls
:: INTERNAL PREP: Email report check
:: If -er switch was used or EMAIL_REPORT was set to yes, check for a correctly configured SwithMailSettings.xml
SETLOCAL ENABLEDELAYEDEXPANSION
if /i %EMAIL_REPORT%==yes (
%FINDSTR% /i "YOUR-EMAIL-ADDRESS" stage_7_wrap-up\email_report\SwithMailSettings.xml >NUL
if !ERRORLEVEL!==0 (
color cf
cls
echo.
echo ERROR
echo.
echo You requested an email report ^(used the -er switch or set
echo the EMAIL_REPORT variable to "yes"^) but didn't configure
echo the settings file with your information. Update the following
echo file with your SMTP username, password, etc:
echo.
echo \resources\stage_7_wrap-up\email_report\SwithMailSettings.xml
echo.
echo Alternatively you can run SwithMail.exe to have the GUI generate
echo a config file for you.
echo.
pause
)
)
ENDLOCAL DISABLEDELAYEDEXPANSION
::::::::::::::::::
:: EXECUTE JOBS ::
::::::::::::::::::
:execute_jobs
echo execute_jobs>tron_stage.txt
:: Stamp CLI switches so we can resume if we get interrupted by a reboot
if /i not "%*"=="" echo %*> tron_switches.txt
:: Make sure we're actually in Safe Mode if AUTORUN_IN_SAFE_MODE was requested
if /i %AUTORUN_IN_SAFE_MODE%==yes (
if /i not "%SAFE_MODE%"=="yes" (
cls
echo.
call functions\log.bat " ! AUTORUN_IN_SAFE_MODE (-asm) used, but we're not in Safe Mode. Rebooting in 10 seconds."
echo.
if /i %DRY_RUN%==no (
bcdedit /set {default} safeboot network >nul 2>&1
shutdown -r -f -t 10 >nul 2>&1
pause
exit 4
)
)
)
:: UPM detection circuit #2
if /i %UNICORN_POWER_MODE%==on (color DF) else (color 0f)
:: Expand the scrollback buffer if VERBOSE (-v) was used. This way we don't lose any output on the screen
:: We'll also display a message below, since using the MODE command flushes the scrollback and we don't want to lose the header
if /i %VERBOSE%==yes mode con:lines=9000
:: Create log header and dump all run-time variables to the log file, but skip if we're resuming from an interrupted run
cls
if /i %RESUME_DETECTED%==no (
echo. > "%LOGPATH%\%LOGFILE%"
call functions\log.bat "-------------------------------------------------------------------------------"
call functions\log.bat " Tron v%TRON_VERSION% (%TRON_DATE%)"
call functions\log.bat " %WIN_VER% (%PROCESSOR_ARCHITECTURE%)"
call functions\log.bat " Executing as "%USERDOMAIN%\%USERNAME%" on %COMPUTERNAME%"
call functions\log.bat " Logfile: %LOGPATH%\%LOGFILE%"
call functions\log.bat " Command-line switches: %*"
call functions\log.bat " Time zone: %TIME_ZONE_NAME%"
call functions\log.bat " Safe Mode: %SAFE_MODE% %SAFEBOOT_OPTION%"
call functions\log.bat " Free space before Tron run: %FREE_SPACE_BEFORE% MB"
call functions\log.bat "-------------------------------------------------------------------------------"
)
:: If verbose (-v) was used, notify that we expanded the scrollback buffer
if /i %VERBOSE%==yes call functions\log_with_date.bat "! VERBOSE (-v) output requested. All commands will display verbose output when possible."
if /i %VERBOSE%==yes call functions\log_with_date.bat " Expanded the scrollback buffer to accomodate increased output."
:: INTERNAL PREP: Tell us if the update check failed or was skipped
if %WARNINGS_DETECTED%==yes_check_update_failed call functions\log_with_date.bat "! WARNING: Tron update check failed."
if %WARNINGS_DETECTED%==yes_check_update_skipped call functions\log_with_date.bat "! NOTE: Tron doesn't think the system has a network connection. Update checks were skipped."
:: INTERNAL PREP: Check if we had SMART disk errors and warn about it if so. This is detected in prerun_checks_and_tasks.bat
if /i not %SMART_PROBLEM_CODE%==undetected (
call functions\log_with_date.bat "! WARNING: SMART check indicated at least one drive with '%SMART_PROBLEM_CODE%' status"
call functions\log.bat " SMART errors can mean a drive is close to failure"
call functions\log.bat " Recommend you back the system up BEFORE running Tron"
call functions\log.bat " Defrag will be skipped as a precaution"
color 0e
)
:: INTERNAL PREP: If we're in Safe Mode, set the system to permanently boot into Safe Mode in case we get interrupted by a reboot
:: We undo this at the end of the script. Only works on Vista and up
if /i "%SAFE_MODE%"=="yes" (
if %WIN_VER_NUM% geq 6.0 (
title Tron v%TRON_VERSION% [stage_0_prep] [safeboot]
call functions\log_with_date.bat " Setting system to always boot to Safe Mode w/ Networking..."
call functions\log_with_date.bat " Will re-enable regular boot when Tron is finished."
if /i %DRY_RUN%==no bcdedit /set {default} safeboot network >> "%LOGPATH%\%LOGFILE%"
call functions\log_with_date.bat " Done."
)
)
:::::::::::::::::::
:: STAGE 0: PREP ::
:::::::::::::::::::
:stage_0_prep
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_0_prep>tron_stage.txt
title Tron v%TRON_VERSION% [stage_0_prep]
call stage_0_prep\stage_0_prep.bat
::::::::::::::::::::::::
:: STAGE 1: TEMPCLEAN ::
::::::::::::::::::::::::
:stage_1_tempclean
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_1_tempclean>tron_stage.txt
title Tron v%TRON_VERSION% [stage_1_tempclean]
call stage_1_tempclean\stage_1_tempclean.bat
:::::::::::::::::::::::
:: STAGE 2: De-Bloat ::
:::::::::::::::::::::::
:stage_2_de-bloat
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_2_de-bloat>tron_stage.txt
title Tron v%TRON_VERSION% [stage_2_de-bloat]
if /i %SKIP_DEBLOAT%==no (
call stage_2_de-bloat\stage_2_de-bloat.bat
) else (
call functions\log_with_date.bat "! SKIP_DEBLOAT (-sdb) set, skipping Stage 2..."
)
::::::::::::::::::::::::
:: STAGE 3: Disinfect ::
::::::::::::::::::::::::
:stage_3_disinfect
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_3_disinfect>tron_stage.txt
title Tron v%TRON_VERSION% [stage_3_disinfect]
if /i %SKIP_ANTIVIRUS_SCANS%==no (
call stage_3_disinfect\stage_3_disinfect.bat
) else (
call functions\log_with_date.bat "! SKIP_ANTIVIRUS_SCANS (-sa) set. Skipping Stage 3 (Sophos, KVRT, MBAM)."
)
:: Since this whole section takes a long time to run, set the date again in case we crossed over midnight during the scans
call :set_cur_date
:::::::::::::::::::::
:: STAGE 4: Repair ::
:::::::::::::::::::::
:stage_4_repair
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_4_repair>tron_stage.txt
title Tron v%TRON_VERSION% [stage_4_repair]
call stage_4_repair\stage_4_repair.bat
:: Set current date again, since Stage 4 can take quite a while to run
call :set_cur_date
::::::::::::::::::::::
:: STAGE 5: Patches ::
::::::::::::::::::::::
:stage_5_patch
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_5_patch>tron_stage.txt
title Tron v%TRON_VERSION% [stage_5_patch]
call stage_5_patch\stage_5_patch.bat
:::::::::::::::::::::::
:: STAGE 6: Optimize ::
:::::::::::::::::::::::
:stage_6_optimize
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_6_optimize>tron_stage.txt
title Tron v%TRON_VERSION% [stage_6_optimize]
call stage_6_optimize\stage_6_optimize.bat
::::::::::::::::::::::
:: STAGE 7: Wrap-up ::
::::::::::::::::::::::
:stage_7_wrap-up
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_7_wrap-up>tron_stage.txt
title Tron v%TRON_VERSION% [stage_7_wrap-up]
call stage_7_wrap-up\stage_7_wrap-up.bat
:::::::::::::::::::::::::::::
:: STAGE 8: Custom Scripts ::
:::::::::::::::::::::::::::::
:stage_8_custom_scripts
:: Stamp current stage so we can resume if we get interrupted by a reboot
echo stage_8_custom_scripts>tron_stage.txt
if /i %SKIP_CUSTOM_SCRIPTS%==yes (
call functions\log_with_date.bat "! SKIP_CUSTOM_SCRIPTS (-scs) set to "%SKIP_CUSTOM_SCRIPTS%", skipping..."
) else (
if exist stage_8_custom_scripts\*.bat (
echo stage_8_custom_scripts>tron_stage.txt
call functions\log_with_date.bat "! Custom scripts detected, executing now..."
call functions\log_with_date.bat " stage_8_custom_scripts begin..."
if %DRY_RUN%==no for %%i in (stage_8_custom_scripts\*.bat) do (
call functions\log_with_date.bat " Executing %%i..."
call %%i
call functions\log_with_date.bat " %%i done."
)
call functions\log_with_date.bat " stage_8_custom_scripts complete."
)
)
::::::::::::::::::::::
:: Post-run Cleanup ::
::::::::::::::::::::::
:: JOB: Remove resume-related files, registry entry, boot switch, and other misc files
call functions\log_with_date.bat " Doing miscellaneous clean up..."
del /f /q tron_switches.txt >nul 2>&1
del /f /q tron_stage.txt >nul 2>&1
:: Skip these during a dry run because they toss errors. Not actually a problem, just an annoyance
if %DRY_RUN%==no (
bcdedit /deletevalue {current} safeboot >nul 2>&1
bcdedit /deletevalue {default} safeboot >nul 2>&1
bcdedit /deletevalue safeboot >nul 2>&1
)
del /f /q "%TEMP%\tron_smart_results.txt" >nul 2>&1
del /f /q OOSU10.ini >nul 2>&1
del /f /q SIV_DBGOUT.log >nul 2>&1
call functions\log_with_date.bat " Done."
:: JOB: Shut down Caffeine which has kept the system awake during the Tron run
stage_0_prep\caffeine\caffeine.exe -appexit
:: Notify of Tron completion
title Tron v%TRON_VERSION% (%TRON_DATE%) [DONE]
call functions\log_with_date.bat " TRON RUN COMPLETE. Use \resources\stage_9_manual_tools if further action is required."
:: Check if auto-reboot was requested
if "%AUTO_REBOOT_DELAY%"=="0" (
call functions\log_with_date.bat " Auto-reboot (-r) not selected. Reboot as soon as possible."
) else (
call functions\log_with_date.bat "! Auto-reboot selected. Rebooting in %AUTO_REBOOT_DELAY% seconds."
)
:: Check if shutdown was requested
if /i %AUTO_SHUTDOWN%==yes call functions\log_with_date.bat "! Auto-shutdown selected. Shutting down in %AUTO_REBOOT_DELAY% seconds."
:: Notify that we're going to email the log file
if /i %EMAIL_REPORT%==yes call functions\log_with_date.bat " Email report requested. Will email logs in a few moments."
:: Upload logs if the switch was used
if /i %UPLOAD_DEBUG_LOGS%==yes call functions\log_with_date.bat " Debug log upload enabled (thank-you!). Will upload logs in a few moments."
:: Check if self-destruct was set
if /i %SELF_DESTRUCT%==yes (
call functions\log_with_date.bat "! Self-destruct selected. De-rezzing self. Goodbye..."
)
:: Error checking. Color the window based on run results so we can see at a glance if it's done
color 2f
:: Were warnings detected?
if /i not %WARNINGS_DETECTED%==no (
color e0
call functions\log_with_date.bat "! WARNINGS were detected (%WARNINGS_DETECTED%). Recommend reviewing the log file."
)
:: Were errors detected?
if /i not %ERRORS_DETECTED%==no (
color cf
call functions\log_with_date.bat "! ERRORS were detected (%ERRORS_DETECTED%). Review the log file."
)
:: UPM detection circuit
if /i %UNICORN_POWER_MODE%==on color DF
:: Display and log the job summary
echo.
call functions\log.bat "-------------------------------------------------------------------------------"
call functions\log.bat " Tron v%TRON_VERSION% (%TRON_DATE%) complete"
call functions\log.bat " %WIN_VER% (%PROCESSOR_ARCHITECTURE%)"
call functions\log.bat " Executed as %USERDOMAIN%\%USERNAME% on %COMPUTERNAME%"
call functions\log.bat " Command-line switches: %*"
call functions\log.bat " Time zone: %TIME_ZONE_NAME%"
call functions\log.bat " Safe Mode: %SAFE_MODE% %SAFEBOOT_OPTION%"
call functions\log.bat " Logfile: %LOGPATH%\%LOGFILE%"
call functions\log.bat " Warnings detected?: %WARNINGS_DETECTED%"
call functions\log.bat " Debug logs uploaded?: %UPLOAD_DEBUG_LOGS%"
call functions\log.bat " Free space before Tron run: %FREE_SPACE_BEFORE% MB"
call functions\log.bat " Free space after Tron run: %FREE_SPACE_AFTER% MB"
call functions\log.bat " Disk space reclaimed: %FREE_SPACE_SAVED% MB *"
call functions\log.bat ""
call functions\log.bat " * If you see negative disk space don't panic. Due to how some of Tron's"
call functions\log.bat " functions work, actual space reclaimed will not be visible until after"
call functions\log.bat " a reboot."
call functions\log.bat "-------------------------------------------------------------------------------"
:: JOB: Send the email report if requested
SETLOCAL ENABLEDELAYEDEXPANSION
if /i %EMAIL_REPORT%==yes (
if /i %DRY_RUN%==no (
stage_7_wrap-up\email_report\SwithMail.exe /s /x "stage_7_wrap-up\email_report\SwithMailSettings.xml" /l "%RAW_LOGS%\swithmail.log" /a "%LOGPATH%\%LOGFILE%|%SUMMARY_LOGS%\tron_removed_files.txt|%SUMMARY_LOGS%\tron_removed_programs.txt" /p1 "Tron v%TRON_VERSION% (%TRON_DATE%) executed as %USERDOMAIN%\%USERNAME%" /p2 "%LOGPATH%\%LOGFILE%" /p3 "%SAFE_MODE% %SAFEBOOT_OPTION%" /p4 "%FREE_SPACE_BEFORE%/%FREE_SPACE_AFTER%/%FREE_SPACE_SAVED%" /p5 "%CLI_switches%"
if !ERRORLEVEL!==0 (
call functions\log_with_date.bat " Done."
) else (
call functions\log_with_date.bat "^! Something went wrong, email may not have gone out. Check your settings."
)
)
)
ENDLOCAL DISABLEDELAYEDEXPANSION
:: JOB: Upload debug logs if requested
SETLOCAL ENABLEDELAYEDEXPANSION
if /i %UPLOAD_DEBUG_LOGS%==yes (
if /i %DRY_RUN%==no (
if /i %WIN_VER_NUM% GEQ 6.2 stage_7_wrap-up\email_report\SwithMail.exe /s /x "stage_7_wrap-up\email_report\debug_log_upload_settings.xml" /l "%USERPROFILE%\desktop\swithmail.log" /a "%LOGPATH%\%LOGFILE%|%RAW_LOGS%\GUID_dump_%COMPUTERNAME%_%CUR_DATE%.txt|%RAW_LOGS%\Metro_app_dump_%COMPUTERNAME%_%CUR_DATE%.txt|%RAW_LOGS%\tron_%COMPUTERNAME%_pre-run_screenshot*.png" /p1 "Tron v%TRON_VERSION% (%TRON_DATE%) executed as %USERDOMAIN%\%USERNAME%" /p2 "%LOGPATH%\%LOGFILE%" /p3 "%SAFE_MODE% %SAFEBOOT_OPTION%" /p4 "%FREE_SPACE_BEFORE%/%FREE_SPACE_AFTER%/%FREE_SPACE_SAVED%" /p5 "%CLI_switches%"
if /i %WIN_VER_NUM% LSS 6.2 stage_7_wrap-up\email_report\SwithMail.exe /s /x "stage_7_wrap-up\email_report\debug_log_upload_settings.xml" /l "%USERPROFILE%\desktop\swithmail.log" /a "%LOGPATH%\%LOGFILE%|%RAW_LOGS%\GUID_dump_%COMPUTERNAME%_%CUR_DATE%.txt|%RAW_LOGS%\tron_%COMPUTERNAME%_pre-run_screenshot*.png" /p1 "Tron v%TRON_VERSION% (%TRON_DATE%) executed as %USERDOMAIN%\%USERNAME%" /p2 "%LOGPATH%\%LOGFILE%" /p3 "%SAFE_MODE% %SAFEBOOT_OPTION%" /p4 "%FREE_SPACE_BEFORE%/%FREE_SPACE_AFTER%/%FREE_SPACE_SAVED%" /p5 "%CLI_switches%"
if !ERRORLEVEL!==0 (
call functions\log_with_date.bat " Done."
) else (
call functions\log_with_date.bat "^! Something went wrong, logs may not have uploaded. Please notify Vocatus."
)
)
)
ENDLOCAL DISABLEDELAYEDEXPANSION
:: Skip everything below here if we're doing a dry run
if /i %DRY_RUN%==yes goto end_and_skip_shutdown
:: Perform reboot if requested
if /i not "%AUTO_REBOOT_DELAY%"=="0" shutdown -r -f -t %AUTO_REBOOT_DELAY% -c "Rebooting in %AUTO_REBOOT_DELAY% seconds to finish cleanup."
:: Perform shutdown if requested
if /i %AUTO_SHUTDOWN%==yes shutdown -f -t %AUTO_REBOOT_DELAY% -s
:: De-rez self if requested
set CWD=%CD%
if /i %SELF_DESTRUCT%==yes (
cd ..
del /f /q tron.bat >NUL 2>&1
%SystemDrive%
cd \
rmdir /s /q "%CWD%"
exit 0
)
:end_and_skip_shutdown
echo.
if /i %NO_PAUSE%==no pause
if /i not %ERRORS_DETECTED%==no exit /b 1
if /i not %WARNINGS_DETECTED%==no exit /b 2
exit /b 0
ENDLOCAL
:: That's all, folks
:::::::::::::::
:: FUNCTIONS ::
:::::::::::::::
:: Get the date into ISO 8601 standard format (yyyy-mm-dd) so we can use it
:set_cur_date
for /f %%a in ('^<NUL %WMIC% OS GET LocalDateTime ^| %FIND% "."') DO set DTS=%%a
set CUR_DATE=%DTS:~0,4%-%DTS:~4,2%-%DTS:~6,2%
goto :eof
:: Parse CLI switches and flip the appropriate variables
:parse_cmdline_args
:: This line required for Swithmail. We use CLI_switches instead of %* because Swithmail chokes if %* is empty.
:: CLI_switches is used in three places: The two Swithmail jobs (upload debug logs and email report) and to dump the list of CLI switches to the log file at the beginning
if /i not "%*"=="" (set CLI_switches=%*) else (set CLI_switches=No CLI switches used)
for %%i in (%*) do (
if /i %%i==-a set AUTORUN=yes
if /i %%i==-asm set AUTORUN_IN_SAFE_MODE=yes
if /i %%i==-c set CONFIG_DUMP=yes
if /i %%i==-d set DRY_RUN=yes
if /i %%i==-dev set DEV_MODE=yes
if /i %%i==-e set EULA_ACCEPTED=yes
if /i %%i==-er set EMAIL_REPORT=yes
if /i %%i==-h set HELP=yes
if /i %%i==-m set PRESERVE_METRO_APPS=yes
if /i %%i==-np set NO_PAUSE=yes
if /i %%i==-o set AUTO_SHUTDOWN=yes
if /i %%i==-p set PRESERVE_POWER_SCHEME=yes
if /i %%i==-pmb set PRESERVE_MALWAREBYTES=yes
if /i %%i==-r set AUTO_REBOOT_DELAY=15
if /i %%i==-sa set SKIP_ANTIVIRUS_SCANS=yes
if /i %%i==-sap set SKIP_APP_PATCHES=yes
if /i %%i==-scs set SKIP_CUSTOM_SCRIPTS=yes
if /i %%i==-scc set SKIP_COOKIE_CLEANUP=yes
if /i %%i==-sd set SKIP_DEFRAG=yes
if /i %%i==-sdb set SKIP_DEBLOAT=yes
if /i %%i==-sdc set SKIP_DISM_CLEANUP=yes
if /i %%i==-sdu set SKIP_DEBLOAT_UPDATE=yes
if /i %%i==-se set SKIP_EVENT_LOG_CLEAR=yes
if /i %%i==-sk set SKIP_KASPERSKY_SCAN=yes
if /i %%i==-sm set SKIP_MBAM_INSTALL=yes
if /i %%i==-sor set SKIP_ONEDRIVE_REMOVAL=yes
if /i %%i==-spr set SKIP_PAGEFILE_RESET=yes
if /i %%i==-str set SKIP_TELEMETRY_REMOVAL=yes
if /i %%i==-ss set SKIP_SOPHOS_SCAN=yes
if /i %%i==-swu set SKIP_WINDOWS_UPDATES=yes
if /i %%i==-swo set SKIP_WSUS_OFFLINE=yes
if /i %%i==-udl set UPLOAD_DEBUG_LOGS=yes
if /i %%i==-upm set UNICORN_POWER_MODE=on
if /i %%i==-v set VERBOSE=yes
if /i %%i==-x set SELF_DESTRUCT=yes
)
goto :eof
:: Show help if requested
:display_help
cls
echo.
echo Tron v%TRON_VERSION% ^(%TRON_DATE%^)
echo Author: vocatus on old.reddit.com/r/TronScript
echo.
echo Usage: tron.bat ^[ ^[-a^|-asm^] -c -d -dev -e -er -m -np -o -p -pmb -r -sa -sap -scc -scs -sd
echo -sdb -sdc -sdu -se -sk -sm -sor -spr -ss -str -swu -swo -udl -v -x^] ^| ^[-h^]
echo.
echo Optional switches ^(can be combined^):
echo -a Automatic mode ^(no welcome screen or prompts; implies -e^)
echo -asm Automatic mode ^(no welcome screen or prompts; implies -e; reboots to Safe Mode first^)
echo -c Config dump ^(display config. Can be used with other switches to see what
echo WOULD happen, but script will never execute if this switch is used^)
echo -d Dry run ^(run through script but don't execute any jobs^)
echo -dev Override OS detection ^(allow running on unsupported Windows versions^)
echo -e Accept EULA ^(suppress disclaimer warning screen^)
echo -er Email a report when finished. Requires you to configure SwithMailSettings.xml
echo -m Preserve OEM Metro apps ^(don't remove them^)
echo -np Skip pause at the end of the script
echo -o Power off after running ^(overrides -r^)
echo -p Preserve power settings ^(don't reset to Windows default^)
echo -pmb Preserve Malwarebytes ^(don't uninstall it^) after Tron is complete
echo -r Reboot automatically 15 seconds after script completion
echo -sa Skip ALL anti-virus scans ^(KVRT, MBAM, SAV^)
echo -sap Skip application patches ^(don't patch 7-Zip^)
echo -scs Skip custom scripts ^(has no effect if you haven't supplied custom scripts^)
echo -scc Skip cookie cleanup ^(not recommended, Tron auto-preserves most common login cookies^)
echo -sd Skip defrag ^(force Tron to ALWAYS skip Stage 6 defrag^)
echo -sdb Skip de-bloat ^(entire OEM bloatware removal process; implies -m^)
echo -sdc Skip DISM cleanup ^(SxS component store deflation^)
echo -sdu Skip debloat update. Prevent Tron from auto-updating the S2 debloat lists
echo -se Skip Event Log clear ^(don't backup then wipe Windows Event Logs^)
echo -sk Skip Kaspersky Virus Rescue Tool ^(KVRT^) scan
echo -sm Skip Malwarebytes Anti-Malware ^(MBAM^) installation
echo -sor Skip OneDrive removal regardless whether it's in use or not
echo -spr Skip page file settings reset ^(don't set to "Let Windows manage the page file"^)
echo -ss Skip Sophos Anti-Virus ^(SAV^) scan
echo -str Skip Telemetry Removal ^(just turn telemetry off instead of removing it^)
echo -swu Skip Windows Updates entirely ^(ignore both WSUS Offline and online methods^)
echo -swo Skip user-supplied WSUS Offline updates ^(if they exist; online updates still attempted^)
echo -udl Upload debug logs. Send tron.log and the system GUID dump to the Tron developer
echo -v Verbose. Show as much output as possible. NOTE: Significantly slower!
echo -x Self-destruct. Tron deletes itself after running and leaves logs intact
echo.
echo Misc switches ^(must be used alone^)
echo -h Display this help text
echo.
goto :eof
:eof
| bmrf/tron | tron.bat | bat | mit | 39,840 |
git add .
git commit -m"update"
git push | Exper1ence/qinxiaoguyi | push.bat | bat | mit | 40 |
#
cl.exe main.cpp | longlongwaytogo/Learning.test | vc_cmd/exe/build.bat | bat | mit | 19 |
ECHO %ERRORLEVEL%
| stackprobe/Factory | DevTools/el.bat | bat | mit | 18 |
@:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@::
@:: m_logsep -- write separator message
@::
@:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ECHO @@@@@@@@@@
@ECHO @@@@@@@@@@
@ECHO @@@@@@@@@@ L OOO GGG
@ECHO @@@@@@@@@@ L O O G
@ECHO @@@@@@@@@@ L O O G GG
@ECHO @@@@@@@@@@ L O O G G
@ECHO @@@@@@@@@@ LLLLL OOO GGG
@ECHO @@@@@@@@@@
@ECHO @@@@@@@@@@
@ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
| dufferprog/verbexx | cmd/m_logsep.cmd | bat | mit | 2,042 |
rem ************************************************************************
rem * uninstall-headers.bat - generated by gendsp.pl
rem *
set msvc=%1
del %COINDIR%\include\Inventor\C\XML\attribute.h
del %COINDIR%\include\Inventor\C\XML\document.h
del %COINDIR%\include\Inventor\C\XML\element.h
del %COINDIR%\include\Inventor\C\XML\entity.h
del %COINDIR%\include\Inventor\C\XML\path.h
del %COINDIR%\include\Inventor\C\XML\types.h
del %COINDIR%\include\Inventor\C\XML\parser.h
del %COINDIR%\include\Inventor\C\XML\world.h
del %COINDIR%\include\Inventor\C\base\hash.h
del %COINDIR%\include\Inventor\C\base\heap.h
del %COINDIR%\include\Inventor\C\base\memalloc.h
del %COINDIR%\include\Inventor\C\base\rbptree.h
del %COINDIR%\include\Inventor\C\base\time.h
del %COINDIR%\include\Inventor\C\base\string.h
del %COINDIR%\include\Inventor\C\base\list.h
del %COINDIR%\include\Inventor\C\errors\error.h
del %COINDIR%\include\Inventor\C\errors\debugerror.h
del %COINDIR%\include\Inventor\C\glue\gl.h
del %COINDIR%\include\Inventor\C\glue\dl.h
del %COINDIR%\include\Inventor\C\glue\spidermonkey.h
del %COINDIR%\include\Inventor\C\threads\common.h
del %COINDIR%\include\Inventor\C\threads\thread.h
del %COINDIR%\include\Inventor\C\threads\mutex.h
del %COINDIR%\include\Inventor\C\threads\condvar.h
del %COINDIR%\include\Inventor\C\threads\recmutex.h
del %COINDIR%\include\Inventor\C\threads\rwmutex.h
del %COINDIR%\include\Inventor\C\threads\storage.h
del %COINDIR%\include\Inventor\C\threads\worker.h
del %COINDIR%\include\Inventor\C\threads\wpool.h
del %COINDIR%\include\Inventor\C\threads\sched.h
del %COINDIR%\include\Inventor\C\threads\sync.h
del %COINDIR%\include\Inventor\C\threads\fifo.h
del %COINDIR%\include\Inventor\C\threads\barrier.h
del %COINDIR%\include\Inventor\C\basic.h
del %COINDIR%\include\Inventor\C\tidbits.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRML.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLAnchor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLAppearance.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLAudioClip.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLBackground.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLBillboard.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLBox.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLCollision.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLColor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLColorInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLCone.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLCoordinate.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLCoordinateInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLCylinder.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLCylinderSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLDirectionalLight.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLDragSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLElevationGrid.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLExtrusion.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLFog.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLFontStyle.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLGeometry.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLGroup.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLImageTexture.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLIndexedFaceSet.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLIndexedLine.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLIndexedLineSet.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLIndexedShape.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLInline.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLLOD.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLLight.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLMacros.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLMaterial.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLMovieTexture.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLNavigationInfo.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLNodes.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLNormal.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLNormalInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLOrientationInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLParent.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLPixelTexture.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLPlaneSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLPointLight.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLPointSet.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLPositionInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLProximitySensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLScalarInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLScript.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLShape.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSound.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSphere.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSphereSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSpotLight.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSubInterpolator.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLSwitch.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLText.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLTexture.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLTextureCoordinate.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLTextureTransform.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLTimeSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLTouchSensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLTransform.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLVertexLine.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLVertexPoint.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLVertexShape.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLViewpoint.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLVisibilitySensor.h
del %COINDIR%\include\Inventor\VRMLnodes\SoVRMLWorldInfo.h
del %COINDIR%\include\Inventor\actions\SoSubAction.h
del %COINDIR%\include\Inventor\actions\SoActions.h
del %COINDIR%\include\Inventor\actions\SoAction.h
del %COINDIR%\include\Inventor\actions\SoBoxHighlightRenderAction.h
del %COINDIR%\include\Inventor\actions\SoCallbackAction.h
del %COINDIR%\include\Inventor\actions\SoGLRenderAction.h
del %COINDIR%\include\Inventor\actions\SoGetBoundingBoxAction.h
del %COINDIR%\include\Inventor\actions\SoGetMatrixAction.h
del %COINDIR%\include\Inventor\actions\SoGetPrimitiveCountAction.h
del %COINDIR%\include\Inventor\actions\SoHandleEventAction.h
del %COINDIR%\include\Inventor\actions\SoLineHighlightRenderAction.h
del %COINDIR%\include\Inventor\actions\SoPickAction.h
del %COINDIR%\include\Inventor\actions\SoRayPickAction.h
del %COINDIR%\include\Inventor\actions\SoReorganizeAction.h
del %COINDIR%\include\Inventor\actions\SoSearchAction.h
del %COINDIR%\include\Inventor\actions\SoSimplifyAction.h
del %COINDIR%\include\Inventor\actions\SoToVRMLAction.h
del %COINDIR%\include\Inventor\actions\SoToVRML2Action.h
del %COINDIR%\include\Inventor\actions\SoWriteAction.h
del %COINDIR%\include\Inventor\actions\SoAudioRenderAction.h
del %COINDIR%\include\Inventor\annex\HardCopy\SoHardCopy.h
del %COINDIR%\include\Inventor\annex\HardCopy\SoPSVectorOutput.h
del %COINDIR%\include\Inventor\annex\HardCopy\SoVectorOutput.h
del %COINDIR%\include\Inventor\annex\HardCopy\SoVectorizeAction.h
del %COINDIR%\include\Inventor\annex\HardCopy\SoVectorizePSAction.h
del %COINDIR%\include\Inventor\annex\ForeignFiles\SoForeignFileKit.h
del %COINDIR%\include\Inventor\annex\ForeignFiles\SoSTLFileKit.h
del %COINDIR%\include\Inventor\annex\FXViz\nodes\SoShadowGroup.h
del %COINDIR%\include\Inventor\annex\FXViz\nodes\SoShadowStyle.h
del %COINDIR%\include\Inventor\annex\FXViz\nodes\SoShadowDirectionalLight.h
del %COINDIR%\include\Inventor\annex\FXViz\nodes\SoShadowSpotLight.h
del %COINDIR%\include\Inventor\annex\FXViz\nodes\SoShadowCulling.h
del %COINDIR%\include\Inventor\annex\FXViz\elements\SoShadowStyleElement.h
del %COINDIR%\include\Inventor\annex\FXViz\elements\SoGLShadowCullingElement.h
del %COINDIR%\include\Inventor\annex\Profiler\nodes\SoProfilerStats.h
del %COINDIR%\include\Inventor\annex\Profiler\elements\SoProfilerElement.h
del %COINDIR%\include\Inventor\annex\Profiler\nodekits\SoNodeVisualize.h
del %COINDIR%\include\Inventor\annex\Profiler\nodekits\SoProfilerOverlayKit.h
del %COINDIR%\include\Inventor\annex\Profiler\nodekits\SoProfilerTopKit.h
del %COINDIR%\include\Inventor\annex\Profiler\nodekits\SoScrollingGraphKit.h
del %COINDIR%\include\Inventor\annex\Profiler\nodekits\SoProfilerVisualizeKit.h
del %COINDIR%\include\Inventor\annex\Profiler\engines\SoProfilerTopEngine.h
del %COINDIR%\include\Inventor\annex\Profiler\utils\SoProfilingReportGenerator.h
del %COINDIR%\include\Inventor\annex\Profiler\SbProfilingData.h
del %COINDIR%\include\Inventor\annex\Profiler\SoProfiler.h
del %COINDIR%\include\Inventor\bundles\SoBundle.h
del %COINDIR%\include\Inventor\bundles\SoMaterialBundle.h
del %COINDIR%\include\Inventor\bundles\SoNormalBundle.h
del %COINDIR%\include\Inventor\bundles\SoVertexAttributeBundle.h
del %COINDIR%\include\Inventor\bundles\SoTextureCoordinateBundle.h
del %COINDIR%\include\Inventor\caches\SoBoundingBoxCache.h
del %COINDIR%\include\Inventor\caches\SoCache.h
del %COINDIR%\include\Inventor\caches\SoConvexDataCache.h
del %COINDIR%\include\Inventor\caches\SoGLCacheList.h
del %COINDIR%\include\Inventor\caches\SoGLRenderCache.h
del %COINDIR%\include\Inventor\caches\SoNormalCache.h
del %COINDIR%\include\Inventor\caches\SoPrimitiveVertexCache.h
del %COINDIR%\include\Inventor\caches\SoTextureCoordinateCache.h
del %COINDIR%\include\Inventor\collision\SoIntersectionDetectionAction.h
del %COINDIR%\include\Inventor\details\SoSubDetail.h
del %COINDIR%\include\Inventor\details\SoDetail.h
del %COINDIR%\include\Inventor\details\SoDetails.h
del %COINDIR%\include\Inventor\details\SoConeDetail.h
del %COINDIR%\include\Inventor\details\SoCubeDetail.h
del %COINDIR%\include\Inventor\details\SoCylinderDetail.h
del %COINDIR%\include\Inventor\details\SoFaceDetail.h
del %COINDIR%\include\Inventor\details\SoLineDetail.h
del %COINDIR%\include\Inventor\details\SoNodeKitDetail.h
del %COINDIR%\include\Inventor\details\SoPointDetail.h
del %COINDIR%\include\Inventor\details\SoTextDetail.h
del %COINDIR%\include\Inventor\draggers\SoDragger.h
del %COINDIR%\include\Inventor\draggers\SoCenterballDragger.h
del %COINDIR%\include\Inventor\draggers\SoDirectionalLightDragger.h
del %COINDIR%\include\Inventor\draggers\SoDragPointDragger.h
del %COINDIR%\include\Inventor\draggers\SoHandleBoxDragger.h
del %COINDIR%\include\Inventor\draggers\SoJackDragger.h
del %COINDIR%\include\Inventor\draggers\SoPointLightDragger.h
del %COINDIR%\include\Inventor\draggers\SoRotateCylindricalDragger.h
del %COINDIR%\include\Inventor\draggers\SoRotateDiscDragger.h
del %COINDIR%\include\Inventor\draggers\SoRotateSphericalDragger.h
del %COINDIR%\include\Inventor\draggers\SoScale1Dragger.h
del %COINDIR%\include\Inventor\draggers\SoScale2Dragger.h
del %COINDIR%\include\Inventor\draggers\SoScale2UniformDragger.h
del %COINDIR%\include\Inventor\draggers\SoScaleUniformDragger.h
del %COINDIR%\include\Inventor\draggers\SoSpotLightDragger.h
del %COINDIR%\include\Inventor\draggers\SoTabBoxDragger.h
del %COINDIR%\include\Inventor\draggers\SoTabPlaneDragger.h
del %COINDIR%\include\Inventor\draggers\SoTrackballDragger.h
del %COINDIR%\include\Inventor\draggers\SoTransformBoxDragger.h
del %COINDIR%\include\Inventor\draggers\SoTransformerDragger.h
del %COINDIR%\include\Inventor\draggers\SoTranslate1Dragger.h
del %COINDIR%\include\Inventor\draggers\SoTranslate2Dragger.h
del %COINDIR%\include\Inventor\elements\SoSubElement.h
del %COINDIR%\include\Inventor\elements\SoElements.h
del %COINDIR%\include\Inventor\elements\SoAccumulatedElement.h
del %COINDIR%\include\Inventor\elements\SoAmbientColorElement.h
del %COINDIR%\include\Inventor\elements\SoAnnoText3CharOrientElement.h
del %COINDIR%\include\Inventor\elements\SoAnnoText3FontSizeHintElement.h
del %COINDIR%\include\Inventor\elements\SoAnnoText3RenderPrintElement.h
del %COINDIR%\include\Inventor\elements\SoBBoxModelMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoBumpMapElement.h
del %COINDIR%\include\Inventor\elements\SoBumpMapCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoBumpMapMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoCacheElement.h
del %COINDIR%\include\Inventor\elements\SoCacheHintElement.h
del %COINDIR%\include\Inventor\elements\SoClipPlaneElement.h
del %COINDIR%\include\Inventor\elements\SoComplexityElement.h
del %COINDIR%\include\Inventor\elements\SoComplexityTypeElement.h
del %COINDIR%\include\Inventor\elements\SoCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoCreaseAngleElement.h
del %COINDIR%\include\Inventor\elements\SoCullElement.h
del %COINDIR%\include\Inventor\elements\SoDecimationPercentageElement.h
del %COINDIR%\include\Inventor\elements\SoDecimationTypeElement.h
del %COINDIR%\include\Inventor\elements\SoDiffuseColorElement.h
del %COINDIR%\include\Inventor\elements\SoDrawStyleElement.h
del %COINDIR%\include\Inventor\elements\SoElement.h
del %COINDIR%\include\Inventor\elements\SoEmissiveColorElement.h
del %COINDIR%\include\Inventor\elements\SoEnvironmentElement.h
del %COINDIR%\include\Inventor\elements\SoFloatElement.h
del %COINDIR%\include\Inventor\elements\SoFocalDistanceElement.h
del %COINDIR%\include\Inventor\elements\SoFontNameElement.h
del %COINDIR%\include\Inventor\elements\SoFontSizeElement.h
del %COINDIR%\include\Inventor\elements\SoGeoElement.h
del %COINDIR%\include\Inventor\elements\SoGLCacheContextElement.h
del %COINDIR%\include\Inventor\elements\SoGLClipPlaneElement.h
del %COINDIR%\include\Inventor\elements\SoGLColorIndexElement.h
del %COINDIR%\include\Inventor\elements\SoGLCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoGLDisplayList.h
del %COINDIR%\include\Inventor\elements\SoGLDrawStyleElement.h
del %COINDIR%\include\Inventor\elements\SoGLEnvironmentElement.h
del %COINDIR%\include\Inventor\elements\SoGLLazyElement.h
del %COINDIR%\include\Inventor\elements\SoGLLightIdElement.h
del %COINDIR%\include\Inventor\elements\SoGLLinePatternElement.h
del %COINDIR%\include\Inventor\elements\SoGLLineWidthElement.h
del %COINDIR%\include\Inventor\elements\SoGLModelMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoGLMultiTextureCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoGLMultiTextureEnabledElement.h
del %COINDIR%\include\Inventor\elements\SoGLMultiTextureMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoGLMultiTextureImageElement.h
del %COINDIR%\include\Inventor\elements\SoGLNormalElement.h
del %COINDIR%\include\Inventor\elements\SoGLNormalizeElement.h
del %COINDIR%\include\Inventor\elements\SoGLPointSizeElement.h
del %COINDIR%\include\Inventor\elements\SoGLPolygonOffsetElement.h
del %COINDIR%\include\Inventor\elements\SoGLProjectionMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoGLRenderPassElement.h
del %COINDIR%\include\Inventor\elements\SoGLShapeHintsElement.h
del %COINDIR%\include\Inventor\elements\SoGLShadeModelElement.h
del %COINDIR%\include\Inventor\elements\SoGLTextureCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoGLTextureEnabledElement.h
del %COINDIR%\include\Inventor\elements\SoGLTexture3EnabledElement.h
del %COINDIR%\include\Inventor\elements\SoGLTextureImageElement.h
del %COINDIR%\include\Inventor\elements\SoGLTextureMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoGLUpdateAreaElement.h
del %COINDIR%\include\Inventor\elements\SoGLVBOElement.h
del %COINDIR%\include\Inventor\elements\SoGLViewingMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoGLViewportRegionElement.h
del %COINDIR%\include\Inventor\elements\SoInt32Element.h
del %COINDIR%\include\Inventor\elements\SoLazyElement.h
del %COINDIR%\include\Inventor\elements\SoLightAttenuationElement.h
del %COINDIR%\include\Inventor\elements\SoLightElement.h
del %COINDIR%\include\Inventor\elements\SoLightModelElement.h
del %COINDIR%\include\Inventor\elements\SoLinePatternElement.h
del %COINDIR%\include\Inventor\elements\SoLineWidthElement.h
del %COINDIR%\include\Inventor\elements\SoLocalBBoxMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoLongElement.h
del %COINDIR%\include\Inventor\elements\SoMaterialBindingElement.h
del %COINDIR%\include\Inventor\elements\SoVertexAttributeBindingElement.h
del %COINDIR%\include\Inventor\elements\SoModelMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoMultiTextureCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoMultiTextureEnabledElement.h
del %COINDIR%\include\Inventor\elements\SoMultiTextureMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoMultiTextureImageElement.h
del %COINDIR%\include\Inventor\elements\SoNormalBindingElement.h
del %COINDIR%\include\Inventor\elements\SoNormalElement.h
del %COINDIR%\include\Inventor\elements\SoOverrideElement.h
del %COINDIR%\include\Inventor\elements\SoPickRayElement.h
del %COINDIR%\include\Inventor\elements\SoPickStyleElement.h
del %COINDIR%\include\Inventor\elements\SoPointSizeElement.h
del %COINDIR%\include\Inventor\elements\SoPolygonOffsetElement.h
del %COINDIR%\include\Inventor\elements\SoProfileCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoProfileElement.h
del %COINDIR%\include\Inventor\elements\SoProjectionMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoReplacedElement.h
del %COINDIR%\include\Inventor\elements\SoShapeHintsElement.h
del %COINDIR%\include\Inventor\elements\SoShapeStyleElement.h
del %COINDIR%\include\Inventor\elements\SoShininessElement.h
del %COINDIR%\include\Inventor\elements\SoSpecularColorElement.h
del %COINDIR%\include\Inventor\elements\SoSwitchElement.h
del %COINDIR%\include\Inventor\elements\SoTextOutlineEnabledElement.h
del %COINDIR%\include\Inventor\elements\SoTextureCombineElement.h
del %COINDIR%\include\Inventor\elements\SoTextureCoordinateBindingElement.h
del %COINDIR%\include\Inventor\elements\SoTextureCoordinateElement.h
del %COINDIR%\include\Inventor\elements\SoTextureEnabledElement.h
del %COINDIR%\include\Inventor\elements\SoTexture3EnabledElement.h
del %COINDIR%\include\Inventor\elements\SoTextureImageElement.h
del %COINDIR%\include\Inventor\elements\SoTextureMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoTextureOverrideElement.h
del %COINDIR%\include\Inventor\elements\SoTextureQualityElement.h
del %COINDIR%\include\Inventor\elements\SoTextureUnitElement.h
del %COINDIR%\include\Inventor\elements\SoTransparencyElement.h
del %COINDIR%\include\Inventor\elements\SoUnitsElement.h
del %COINDIR%\include\Inventor\elements\SoViewVolumeElement.h
del %COINDIR%\include\Inventor\elements\SoViewingMatrixElement.h
del %COINDIR%\include\Inventor\elements\SoViewportRegionElement.h
del %COINDIR%\include\Inventor\elements\SoWindowElement.h
del %COINDIR%\include\Inventor\elements\SoListenerPositionElement.h
del %COINDIR%\include\Inventor\elements\SoListenerOrientationElement.h
del %COINDIR%\include\Inventor\elements\SoListenerGainElement.h
del %COINDIR%\include\Inventor\elements\SoListenerDopplerElement.h
del %COINDIR%\include\Inventor\elements\SoSoundElement.h
del %COINDIR%\include\Inventor\elements\SoGLShaderProgramElement.h
del %COINDIR%\include\Inventor\elements\SoDepthBufferElement.h
del %COINDIR%\include\Inventor\elements\SoGLDepthBufferElement.h
del %COINDIR%\include\Inventor\elements\SoVertexAttributeElement.h
del %COINDIR%\include\Inventor\elements\SoGLVertexAttributeElement.h
del %COINDIR%\include\Inventor\engines\SoSubEngine.h
del %COINDIR%\include\Inventor\engines\SoSubNodeEngine.h
del %COINDIR%\include\Inventor\engines\SoEngines.h
del %COINDIR%\include\Inventor\engines\SoBoolOperation.h
del %COINDIR%\include\Inventor\engines\SoCalculator.h
del %COINDIR%\include\Inventor\engines\SoCompose.h
del %COINDIR%\include\Inventor\engines\SoComposeMatrix.h
del %COINDIR%\include\Inventor\engines\SoComposeRotation.h
del %COINDIR%\include\Inventor\engines\SoComposeRotationFromTo.h
del %COINDIR%\include\Inventor\engines\SoComposeVec2f.h
del %COINDIR%\include\Inventor\engines\SoComposeVec3f.h
del %COINDIR%\include\Inventor\engines\SoComposeVec4f.h
del %COINDIR%\include\Inventor\engines\SoComputeBoundingBox.h
del %COINDIR%\include\Inventor\engines\SoConcatenate.h
del %COINDIR%\include\Inventor\engines\SoCounter.h
del %COINDIR%\include\Inventor\engines\SoDecomposeMatrix.h
del %COINDIR%\include\Inventor\engines\SoDecomposeRotation.h
del %COINDIR%\include\Inventor\engines\SoDecomposeVec2f.h
del %COINDIR%\include\Inventor\engines\SoDecomposeVec3f.h
del %COINDIR%\include\Inventor\engines\SoDecomposeVec4f.h
del %COINDIR%\include\Inventor\engines\SoElapsedTime.h
del %COINDIR%\include\Inventor\engines\SoEngine.h
del %COINDIR%\include\Inventor\engines\SoEngineOutput.h
del %COINDIR%\include\Inventor\engines\SoFieldConverter.h
del %COINDIR%\include\Inventor\engines\SoGate.h
del %COINDIR%\include\Inventor\engines\SoInterpolate.h
del %COINDIR%\include\Inventor\engines\SoInterpolateFloat.h
del %COINDIR%\include\Inventor\engines\SoInterpolateRotation.h
del %COINDIR%\include\Inventor\engines\SoInterpolateVec2f.h
del %COINDIR%\include\Inventor\engines\SoInterpolateVec3f.h
del %COINDIR%\include\Inventor\engines\SoInterpolateVec4f.h
del %COINDIR%\include\Inventor\engines\SoNodeEngine.h
del %COINDIR%\include\Inventor\engines\SoOnOff.h
del %COINDIR%\include\Inventor\engines\SoOneShot.h
del %COINDIR%\include\Inventor\engines\SoOutputData.h
del %COINDIR%\include\Inventor\engines\SoSelectOne.h
del %COINDIR%\include\Inventor\engines\SoTimeCounter.h
del %COINDIR%\include\Inventor\engines\SoTransformVec3f.h
del %COINDIR%\include\Inventor\engines\SoTriggerAny.h
del %COINDIR%\include\Inventor\engines\SoTexture2Convert.h
del %COINDIR%\include\Inventor\engines\SoHeightMapToNormalMap.h
del %COINDIR%\include\Inventor\errors\SoErrors.h
del %COINDIR%\include\Inventor\errors\SoDebugError.h
del %COINDIR%\include\Inventor\errors\SoError.h
del %COINDIR%\include\Inventor\errors\SoMemoryError.h
del %COINDIR%\include\Inventor\errors\SoReadError.h
del %COINDIR%\include\Inventor\events\SoSubEvent.h
del %COINDIR%\include\Inventor\events\SoButtonEvent.h
del %COINDIR%\include\Inventor\events\SoEvent.h
del %COINDIR%\include\Inventor\events\SoEvents.h
del %COINDIR%\include\Inventor\events\SoKeyboardEvent.h
del %COINDIR%\include\Inventor\events\SoLocation2Event.h
del %COINDIR%\include\Inventor\events\SoMotion3Event.h
del %COINDIR%\include\Inventor\events\SoMouseButtonEvent.h
del %COINDIR%\include\Inventor\events\SoSpaceballButtonEvent.h
del %COINDIR%\include\Inventor\fields\SoSubField.h
del %COINDIR%\include\Inventor\fields\SoFields.h
del %COINDIR%\include\Inventor\fields\SoField.h
del %COINDIR%\include\Inventor\fields\SoFieldContainer.h
del %COINDIR%\include\Inventor\fields\SoFieldData.h
del %COINDIR%\include\Inventor\fields\SoMFBitMask.h
del %COINDIR%\include\Inventor\fields\SoMFBool.h
del %COINDIR%\include\Inventor\fields\SoMFColor.h
del %COINDIR%\include\Inventor\fields\SoMFColorRGBA.h
del %COINDIR%\include\Inventor\fields\SoMFDouble.h
del %COINDIR%\include\Inventor\fields\SoMFEngine.h
del %COINDIR%\include\Inventor\fields\SoMFEnum.h
del %COINDIR%\include\Inventor\fields\SoMFFloat.h
del %COINDIR%\include\Inventor\fields\SoMFInt32.h
del %COINDIR%\include\Inventor\fields\SoMFLong.h
del %COINDIR%\include\Inventor\fields\SoMFMatrix.h
del %COINDIR%\include\Inventor\fields\SoMFName.h
del %COINDIR%\include\Inventor\fields\SoMFNode.h
del %COINDIR%\include\Inventor\fields\SoMFPath.h
del %COINDIR%\include\Inventor\fields\SoMFPlane.h
del %COINDIR%\include\Inventor\fields\SoMFRotation.h
del %COINDIR%\include\Inventor\fields\SoMFShort.h
del %COINDIR%\include\Inventor\fields\SoMFString.h
del %COINDIR%\include\Inventor\fields\SoMFTime.h
del %COINDIR%\include\Inventor\fields\SoMFUInt32.h
del %COINDIR%\include\Inventor\fields\SoMFULong.h
del %COINDIR%\include\Inventor\fields\SoMFUShort.h
del %COINDIR%\include\Inventor\fields\SoMFVec2b.h
del %COINDIR%\include\Inventor\fields\SoMFVec2s.h
del %COINDIR%\include\Inventor\fields\SoMFVec2i32.h
del %COINDIR%\include\Inventor\fields\SoMFVec2f.h
del %COINDIR%\include\Inventor\fields\SoMFVec2d.h
del %COINDIR%\include\Inventor\fields\SoMFVec3b.h
del %COINDIR%\include\Inventor\fields\SoMFVec3s.h
del %COINDIR%\include\Inventor\fields\SoMFVec3i32.h
del %COINDIR%\include\Inventor\fields\SoMFVec3f.h
del %COINDIR%\include\Inventor\fields\SoMFVec3d.h
del %COINDIR%\include\Inventor\fields\SoMFVec4b.h
del %COINDIR%\include\Inventor\fields\SoMFVec4ub.h
del %COINDIR%\include\Inventor\fields\SoMFVec4s.h
del %COINDIR%\include\Inventor\fields\SoMFVec4us.h
del %COINDIR%\include\Inventor\fields\SoMFVec4i32.h
del %COINDIR%\include\Inventor\fields\SoMFVec4ui32.h
del %COINDIR%\include\Inventor\fields\SoMFVec4f.h
del %COINDIR%\include\Inventor\fields\SoMFVec4d.h
del %COINDIR%\include\Inventor\fields\SoMField.h
del %COINDIR%\include\Inventor\fields\SoSFBitMask.h
del %COINDIR%\include\Inventor\fields\SoSFBool.h
del %COINDIR%\include\Inventor\fields\SoSFBox2s.h
del %COINDIR%\include\Inventor\fields\SoSFBox2i32.h
del %COINDIR%\include\Inventor\fields\SoSFBox2f.h
del %COINDIR%\include\Inventor\fields\SoSFBox2d.h
del %COINDIR%\include\Inventor\fields\SoSFBox3s.h
del %COINDIR%\include\Inventor\fields\SoSFBox3i32.h
del %COINDIR%\include\Inventor\fields\SoSFBox3f.h
del %COINDIR%\include\Inventor\fields\SoSFBox3d.h
del %COINDIR%\include\Inventor\fields\SoSFColor.h
del %COINDIR%\include\Inventor\fields\SoSFColorRGBA.h
del %COINDIR%\include\Inventor\fields\SoSFDouble.h
del %COINDIR%\include\Inventor\fields\SoSFEngine.h
del %COINDIR%\include\Inventor\fields\SoSFEnum.h
del %COINDIR%\include\Inventor\fields\SoSFFloat.h
del %COINDIR%\include\Inventor\fields\SoSFImage.h
del %COINDIR%\include\Inventor\fields\SoSFImage3.h
del %COINDIR%\include\Inventor\fields\SoSFInt32.h
del %COINDIR%\include\Inventor\fields\SoSFLong.h
del %COINDIR%\include\Inventor\fields\SoSFMatrix.h
del %COINDIR%\include\Inventor\fields\SoSFName.h
del %COINDIR%\include\Inventor\fields\SoSFNode.h
del %COINDIR%\include\Inventor\fields\SoSFPath.h
del %COINDIR%\include\Inventor\fields\SoSFPlane.h
del %COINDIR%\include\Inventor\fields\SoSFRotation.h
del %COINDIR%\include\Inventor\fields\SoSFShort.h
del %COINDIR%\include\Inventor\fields\SoSFString.h
del %COINDIR%\include\Inventor\fields\SoSFTime.h
del %COINDIR%\include\Inventor\fields\SoSFTrigger.h
del %COINDIR%\include\Inventor\fields\SoSFUInt32.h
del %COINDIR%\include\Inventor\fields\SoSFULong.h
del %COINDIR%\include\Inventor\fields\SoSFUShort.h
del %COINDIR%\include\Inventor\fields\SoSFVec2b.h
del %COINDIR%\include\Inventor\fields\SoSFVec2s.h
del %COINDIR%\include\Inventor\fields\SoSFVec2i32.h
del %COINDIR%\include\Inventor\fields\SoSFVec2f.h
del %COINDIR%\include\Inventor\fields\SoSFVec2d.h
del %COINDIR%\include\Inventor\fields\SoSFVec3b.h
del %COINDIR%\include\Inventor\fields\SoSFVec3s.h
del %COINDIR%\include\Inventor\fields\SoSFVec3i32.h
del %COINDIR%\include\Inventor\fields\SoSFVec3f.h
del %COINDIR%\include\Inventor\fields\SoSFVec3d.h
del %COINDIR%\include\Inventor\fields\SoSFVec4b.h
del %COINDIR%\include\Inventor\fields\SoSFVec4ub.h
del %COINDIR%\include\Inventor\fields\SoSFVec4s.h
del %COINDIR%\include\Inventor\fields\SoSFVec4us.h
del %COINDIR%\include\Inventor\fields\SoSFVec4i32.h
del %COINDIR%\include\Inventor\fields\SoSFVec4ui32.h
del %COINDIR%\include\Inventor\fields\SoSFVec4f.h
del %COINDIR%\include\Inventor\fields\SoSFVec4d.h
del %COINDIR%\include\Inventor\fields\SoSField.h
del %COINDIR%\include\Inventor\lists\SbList.h
del %COINDIR%\include\Inventor\lists\SbPList.h
del %COINDIR%\include\Inventor\lists\SbIntList.h
del %COINDIR%\include\Inventor\lists\SbVec3fList.h
del %COINDIR%\include\Inventor\lists\SbStringList.h
del %COINDIR%\include\Inventor\lists\SoActionMethodList.h
del %COINDIR%\include\Inventor\lists\SoAuditorList.h
del %COINDIR%\include\Inventor\lists\SoBaseList.h
del %COINDIR%\include\Inventor\lists\SoCallbackList.h
del %COINDIR%\include\Inventor\lists\SoDetailList.h
del %COINDIR%\include\Inventor\lists\SoEnabledElementsList.h
del %COINDIR%\include\Inventor\lists\SoEngineList.h
del %COINDIR%\include\Inventor\lists\SoEngineOutputList.h
del %COINDIR%\include\Inventor\lists\SoFieldList.h
del %COINDIR%\include\Inventor\lists\SoNodeList.h
del %COINDIR%\include\Inventor\lists\SoPathList.h
del %COINDIR%\include\Inventor\lists\SoPickedPointList.h
del %COINDIR%\include\Inventor\lists\SoTypeList.h
del %COINDIR%\include\Inventor\lock\SoLockMgr.h
del %COINDIR%\include\Inventor\manips\SoClipPlaneManip.h
del %COINDIR%\include\Inventor\manips\SoDirectionalLightManip.h
del %COINDIR%\include\Inventor\manips\SoPointLightManip.h
del %COINDIR%\include\Inventor\manips\SoSpotLightManip.h
del %COINDIR%\include\Inventor\manips\SoTransformManip.h
del %COINDIR%\include\Inventor\manips\SoCenterballManip.h
del %COINDIR%\include\Inventor\manips\SoHandleBoxManip.h
del %COINDIR%\include\Inventor\manips\SoJackManip.h
del %COINDIR%\include\Inventor\manips\SoTabBoxManip.h
del %COINDIR%\include\Inventor\manips\SoTrackballManip.h
del %COINDIR%\include\Inventor\manips\SoTransformBoxManip.h
del %COINDIR%\include\Inventor\manips\SoTransformerManip.h
del %COINDIR%\include\Inventor\misc\CoinResources.h
del %COINDIR%\include\Inventor\misc\SoAuditorList.h
del %COINDIR%\include\Inventor\misc\SoBase.h
del %COINDIR%\include\Inventor\misc\SoBasic.h
del %COINDIR%\include\Inventor\misc\SoByteStream.h
del %COINDIR%\include\Inventor\misc\SoCallbackList.h
del %COINDIR%\include\Inventor\misc\SoChildList.h
del %COINDIR%\include\Inventor\misc\SoContextHandler.h
del %COINDIR%\include\Inventor\misc\SoGLImage.h
del %COINDIR%\include\Inventor\misc\SoGLCubeMapImage.h
del %COINDIR%\include\Inventor\misc\SoGLBigImage.h
del %COINDIR%\include\Inventor\misc\SoNormalGenerator.h
del %COINDIR%\include\Inventor\misc\SoNotification.h
del %COINDIR%\include\Inventor\misc\SoNotRec.h
del %COINDIR%\include\Inventor\misc\SoProto.h
del %COINDIR%\include\Inventor\misc\SoProtoInstance.h
del %COINDIR%\include\Inventor\misc\SoTranReceiver.h
del %COINDIR%\include\Inventor\misc\SoState.h
del %COINDIR%\include\Inventor\misc\SoTranscribe.h
del %COINDIR%\include\Inventor\misc\SoTranSender.h
del %COINDIR%\include\Inventor\misc\SoLightPath.h
del %COINDIR%\include\Inventor\misc\SoTempPath.h
del %COINDIR%\include\Inventor\misc\SoGlyph.h
del %COINDIR%\include\Inventor\misc\SoAudioDevice.h
del %COINDIR%\include\Inventor\misc\SoScriptEngine.h
del %COINDIR%\include\Inventor\misc\SoJavaScriptEngine.h
del %COINDIR%\include\Inventor\misc\SoGLDriverDatabase.h
del %COINDIR%\include\Inventor\navigation\SoScXMLNavigation.h
del %COINDIR%\include\Inventor\navigation\SoScXMLNavigationTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLMiscTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLPanTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLRotateTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLSeekTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLSpinTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLZoomTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLDollyTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLFlightControlTarget.h
del %COINDIR%\include\Inventor\navigation\SoScXMLMotionTarget.h
del %COINDIR%\include\Inventor\nodekits\SoSubKit.h
del %COINDIR%\include\Inventor\nodekits\SoNodeKit.h
del %COINDIR%\include\Inventor\nodekits\SoNodeKitListPart.h
del %COINDIR%\include\Inventor\nodekits\SoNodekitCatalog.h
del %COINDIR%\include\Inventor\nodekits\SoBaseKit.h
del %COINDIR%\include\Inventor\nodekits\SoAppearanceKit.h
del %COINDIR%\include\Inventor\nodekits\SoCameraKit.h
del %COINDIR%\include\Inventor\nodekits\SoInteractionKit.h
del %COINDIR%\include\Inventor\nodekits\SoLightKit.h
del %COINDIR%\include\Inventor\nodekits\SoSceneKit.h
del %COINDIR%\include\Inventor\nodekits\SoSeparatorKit.h
del %COINDIR%\include\Inventor\nodekits\SoShapeKit.h
del %COINDIR%\include\Inventor\nodekits\SoWrapperKit.h
del %COINDIR%\include\Inventor\nodes\SoAlphaTest.h
del %COINDIR%\include\Inventor\nodes\SoAnnotation.h
del %COINDIR%\include\Inventor\nodes\SoAntiSquish.h
del %COINDIR%\include\Inventor\nodes\SoArray.h
del %COINDIR%\include\Inventor\nodes\SoAsciiText.h
del %COINDIR%\include\Inventor\nodes\SoBaseColor.h
del %COINDIR%\include\Inventor\nodes\SoBlinker.h
del %COINDIR%\include\Inventor\nodes\SoBumpMap.h
del %COINDIR%\include\Inventor\nodes\SoBumpMapCoordinate.h
del %COINDIR%\include\Inventor\nodes\SoBumpMapTransform.h
del %COINDIR%\include\Inventor\nodes\SoCacheHint.h
del %COINDIR%\include\Inventor\nodes\SoCallback.h
del %COINDIR%\include\Inventor\nodes\SoCamera.h
del %COINDIR%\include\Inventor\nodes\SoClipPlane.h
del %COINDIR%\include\Inventor\nodes\SoColorIndex.h
del %COINDIR%\include\Inventor\nodes\SoComplexity.h
del %COINDIR%\include\Inventor\nodes\SoCone.h
del %COINDIR%\include\Inventor\nodes\SoCoordinate3.h
del %COINDIR%\include\Inventor\nodes\SoCoordinate4.h
del %COINDIR%\include\Inventor\nodes\SoCube.h
del %COINDIR%\include\Inventor\nodes\SoCylinder.h
del %COINDIR%\include\Inventor\nodes\SoDepthBuffer.h
del %COINDIR%\include\Inventor\nodes\SoDirectionalLight.h
del %COINDIR%\include\Inventor\nodes\SoDrawStyle.h
del %COINDIR%\include\Inventor\nodes\SoEnvironment.h
del %COINDIR%\include\Inventor\nodes\SoEventCallback.h
del %COINDIR%\include\Inventor\nodes\SoExtSelection.h
del %COINDIR%\include\Inventor\nodes\SoFaceSet.h
del %COINDIR%\include\Inventor\nodes\SoFile.h
del %COINDIR%\include\Inventor\nodes\SoFont.h
del %COINDIR%\include\Inventor\nodes\SoFontStyle.h
del %COINDIR%\include\Inventor\nodes\SoFrustumCamera.h
del %COINDIR%\include\Inventor\nodes\SoGeoOrigin.h
del %COINDIR%\include\Inventor\nodes\SoGeoLocation.h
del %COINDIR%\include\Inventor\nodes\SoGeoSeparator.h
del %COINDIR%\include\Inventor\nodes\SoGeoCoordinate.h
del %COINDIR%\include\Inventor\nodes\SoGroup.h
del %COINDIR%\include\Inventor\nodes\SoGeometryShader.h
del %COINDIR%\include\Inventor\nodes\SoImage.h
del %COINDIR%\include\Inventor\nodes\SoIndexedFaceSet.h
del %COINDIR%\include\Inventor\nodes\SoIndexedLineSet.h
del %COINDIR%\include\Inventor\nodes\SoIndexedMarkerSet.h
del %COINDIR%\include\Inventor\nodes\SoIndexedNurbsCurve.h
del %COINDIR%\include\Inventor\nodes\SoIndexedNurbsSurface.h
del %COINDIR%\include\Inventor\nodes\SoIndexedPointSet.h
del %COINDIR%\include\Inventor\nodes\SoIndexedShape.h
del %COINDIR%\include\Inventor\nodes\SoIndexedTriangleStripSet.h
del %COINDIR%\include\Inventor\nodes\SoInfo.h
del %COINDIR%\include\Inventor\nodes\SoLOD.h
del %COINDIR%\include\Inventor\nodes\SoLabel.h
del %COINDIR%\include\Inventor\nodes\SoLevelOfDetail.h
del %COINDIR%\include\Inventor\nodes\SoLight.h
del %COINDIR%\include\Inventor\nodes\SoLightModel.h
del %COINDIR%\include\Inventor\nodes\SoLineSet.h
del %COINDIR%\include\Inventor\nodes\SoLinearProfile.h
del %COINDIR%\include\Inventor\nodes\SoListener.h
del %COINDIR%\include\Inventor\nodes\SoLocateHighlight.h
del %COINDIR%\include\Inventor\nodes\SoMarkerSet.h
del %COINDIR%\include\Inventor\nodes\SoMaterial.h
del %COINDIR%\include\Inventor\nodes\SoMaterialBinding.h
del %COINDIR%\include\Inventor\nodes\SoMatrixTransform.h
del %COINDIR%\include\Inventor\nodes\SoMultipleCopy.h
del %COINDIR%\include\Inventor\nodes\SoNode.h
del %COINDIR%\include\Inventor\nodes\SoNodes.h
del %COINDIR%\include\Inventor\nodes\SoNonIndexedShape.h
del %COINDIR%\include\Inventor\nodes\SoNormal.h
del %COINDIR%\include\Inventor\nodes\SoNormalBinding.h
del %COINDIR%\include\Inventor\nodes\SoNurbsCurve.h
del %COINDIR%\include\Inventor\nodes\SoNurbsProfile.h
del %COINDIR%\include\Inventor\nodes\SoNurbsSurface.h
del %COINDIR%\include\Inventor\nodes\SoOrthographicCamera.h
del %COINDIR%\include\Inventor\nodes\SoPackedColor.h
del %COINDIR%\include\Inventor\nodes\SoPathSwitch.h
del %COINDIR%\include\Inventor\nodes\SoPendulum.h
del %COINDIR%\include\Inventor\nodes\SoPerspectiveCamera.h
del %COINDIR%\include\Inventor\nodes\SoPickStyle.h
del %COINDIR%\include\Inventor\nodes\SoPointLight.h
del %COINDIR%\include\Inventor\nodes\SoPointSet.h
del %COINDIR%\include\Inventor\nodes\SoPolygonOffset.h
del %COINDIR%\include\Inventor\nodes\SoProfile.h
del %COINDIR%\include\Inventor\nodes\SoProfileCoordinate2.h
del %COINDIR%\include\Inventor\nodes\SoProfileCoordinate3.h
del %COINDIR%\include\Inventor\nodes\SoQuadMesh.h
del %COINDIR%\include\Inventor\nodes\SoResetTransform.h
del %COINDIR%\include\Inventor\nodes\SoReversePerspectiveCamera.h
del %COINDIR%\include\Inventor\nodes\SoRotation.h
del %COINDIR%\include\Inventor\nodes\SoRotationXYZ.h
del %COINDIR%\include\Inventor\nodes\SoRotor.h
del %COINDIR%\include\Inventor\nodes\SoScale.h
del %COINDIR%\include\Inventor\nodes\SoSceneTexture2.h
del %COINDIR%\include\Inventor\nodes\SoSceneTextureCubeMap.h
del %COINDIR%\include\Inventor\nodes\SoSelection.h
del %COINDIR%\include\Inventor\nodes\SoSeparator.h
del %COINDIR%\include\Inventor\nodes\SoShape.h
del %COINDIR%\include\Inventor\nodes\SoShapeHints.h
del %COINDIR%\include\Inventor\nodes\SoShuttle.h
del %COINDIR%\include\Inventor\nodes\SoSphere.h
del %COINDIR%\include\Inventor\nodes\SoSpotLight.h
del %COINDIR%\include\Inventor\nodes\SoSubNode.h
del %COINDIR%\include\Inventor\nodes\SoSurroundScale.h
del %COINDIR%\include\Inventor\nodes\SoSwitch.h
del %COINDIR%\include\Inventor\nodes\SoText2.h
del %COINDIR%\include\Inventor\nodes\SoText3.h
del %COINDIR%\include\Inventor\nodes\SoTexture.h
del %COINDIR%\include\Inventor\nodes\SoTexture2.h
del %COINDIR%\include\Inventor\nodes\SoTexture2Transform.h
del %COINDIR%\include\Inventor\nodes\SoTexture3.h
del %COINDIR%\include\Inventor\nodes\SoTexture3Transform.h
del %COINDIR%\include\Inventor\nodes\SoTextureCombine.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinate2.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinate3.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateBinding.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateCube.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateCylinder.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateSphere.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateDefault.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateEnvironment.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateFunction.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinatePlane.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateNormalMap.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateReflectionMap.h
del %COINDIR%\include\Inventor\nodes\SoTextureCoordinateObject.h
del %COINDIR%\include\Inventor\nodes\SoTextureCubeMap.h
del %COINDIR%\include\Inventor\nodes\SoTextureMatrixTransform.h
del %COINDIR%\include\Inventor\nodes\SoTextureScalePolicy.h
del %COINDIR%\include\Inventor\nodes\SoTextureUnit.h
del %COINDIR%\include\Inventor\nodes\SoTransform.h
del %COINDIR%\include\Inventor\nodes\SoTransformSeparator.h
del %COINDIR%\include\Inventor\nodes\SoTransformation.h
del %COINDIR%\include\Inventor\nodes\SoTranslation.h
del %COINDIR%\include\Inventor\nodes\SoTransparencyType.h
del %COINDIR%\include\Inventor\nodes\SoTriangleStripSet.h
del %COINDIR%\include\Inventor\nodes\SoUnits.h
del %COINDIR%\include\Inventor\nodes\SoVertexProperty.h
del %COINDIR%\include\Inventor\nodes\SoVertexAttribute.h
del %COINDIR%\include\Inventor\nodes\SoVertexAttributeBinding.h
del %COINDIR%\include\Inventor\nodes\SoVertexShape.h
del %COINDIR%\include\Inventor\nodes\SoWWWAnchor.h
del %COINDIR%\include\Inventor\nodes\SoWWWInline.h
del %COINDIR%\include\Inventor\nodes\SoFragmentShader.h
del %COINDIR%\include\Inventor\nodes\SoShaderObject.h
del %COINDIR%\include\Inventor\nodes\SoShaderParameter.h
del %COINDIR%\include\Inventor\nodes\SoShaderProgram.h
del %COINDIR%\include\Inventor\nodes\SoVertexShader.h
del %COINDIR%\include\Inventor\projectors\SbProjectors.h
del %COINDIR%\include\Inventor\projectors\SbCylinderPlaneProjector.h
del %COINDIR%\include\Inventor\projectors\SbCylinderProjector.h
del %COINDIR%\include\Inventor\projectors\SbCylinderSectionProjector.h
del %COINDIR%\include\Inventor\projectors\SbCylinderSheetProjector.h
del %COINDIR%\include\Inventor\projectors\SbLineProjector.h
del %COINDIR%\include\Inventor\projectors\SbPlaneProjector.h
del %COINDIR%\include\Inventor\projectors\SbProjector.h
del %COINDIR%\include\Inventor\projectors\SbSpherePlaneProjector.h
del %COINDIR%\include\Inventor\projectors\SbSphereProjector.h
del %COINDIR%\include\Inventor\projectors\SbSphereSectionProjector.h
del %COINDIR%\include\Inventor\projectors\SbSphereSheetProjector.h
del %COINDIR%\include\Inventor\sensors\SoSensors.h
del %COINDIR%\include\Inventor\sensors\SoAlarmSensor.h
del %COINDIR%\include\Inventor\sensors\SoDataSensor.h
del %COINDIR%\include\Inventor\sensors\SoDelayQueueSensor.h
del %COINDIR%\include\Inventor\sensors\SoFieldSensor.h
del %COINDIR%\include\Inventor\sensors\SoIdleSensor.h
del %COINDIR%\include\Inventor\sensors\SoNodeSensor.h
del %COINDIR%\include\Inventor\sensors\SoOneShotSensor.h
del %COINDIR%\include\Inventor\sensors\SoPathSensor.h
del %COINDIR%\include\Inventor\sensors\SoSensor.h
del %COINDIR%\include\Inventor\sensors\SoSensorManager.h
del %COINDIR%\include\Inventor\sensors\SoTimerQueueSensor.h
del %COINDIR%\include\Inventor\sensors\SoTimerSensor.h
del %COINDIR%\include\Inventor\system\gl.h
del %COINDIR%\include\Inventor\system\gl-headers.h
del %COINDIR%\include\Inventor\system\inttypes.h
del %COINDIR%\include\Inventor\threads\SbThread.h
del %COINDIR%\include\Inventor\threads\SbMutex.h
del %COINDIR%\include\Inventor\threads\SbThreadMutex.h
del %COINDIR%\include\Inventor\threads\SbRWMutex.h
del %COINDIR%\include\Inventor\threads\SbCondVar.h
del %COINDIR%\include\Inventor\threads\SbStorage.h
del %COINDIR%\include\Inventor\threads\SbTypedStorage.h
del %COINDIR%\include\Inventor\threads\SbFifo.h
del %COINDIR%\include\Inventor\threads\SbBarrier.h
del %COINDIR%\include\Inventor\threads\SbThreadAutoLock.h
del %COINDIR%\include\Inventor\tools\SbPimplPtr.h
del %COINDIR%\include\Inventor\tools\SbPimplPtr.hpp
del %COINDIR%\include\Inventor\tools\SbLazyPimplPtr.h
del %COINDIR%\include\Inventor\tools\SbLazyPimplPtr.hpp
del %COINDIR%\include\Inventor\scxml\ScXML.h
del %COINDIR%\include\Inventor\scxml\ScXMLSubObject.h
del %COINDIR%\include\Inventor\scxml\ScXMLObject.h
del %COINDIR%\include\Inventor\scxml\ScXMLEvent.h
del %COINDIR%\include\Inventor\scxml\ScXMLEventTarget.h
del %COINDIR%\include\Inventor\scxml\ScXMLStateMachine.h
del %COINDIR%\include\Inventor\scxml\ScXMLDocument.h
del %COINDIR%\include\Inventor\scxml\ScXMLElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLAbstractStateElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLExecutableElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLAnchorElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLAssignElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLContentElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLDataElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLDataModelElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLElseElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLElseIfElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLEventElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLFinalElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLFinalizeElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLHistoryElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLIfElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLInitialElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLInvokeElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLLogElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLOnEntryElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLOnExitElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLParallelElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLParamElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLScriptElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLScxmlElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLSendElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLStateElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLTransitionElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLValidateElt.h
del %COINDIR%\include\Inventor\scxml\ScXMLEvaluator.h
del %COINDIR%\include\Inventor\scxml\ScXMLMinimumEvaluator.h
del %COINDIR%\include\Inventor\scxml\ScXMLXPathEvaluator.h
del %COINDIR%\include\Inventor\scxml\ScXMLECMAScriptEvaluator.h
del %COINDIR%\include\Inventor\scxml\ScXMLCoinEvaluator.h
del %COINDIR%\include\Inventor\scxml\SoScXMLEvent.h
del %COINDIR%\include\Inventor\scxml\SoScXMLStateMachine.h
del %COINDIR%\include\Inventor\Sb.h
del %COINDIR%\include\Inventor\SbBSPTree.h
del %COINDIR%\include\Inventor\SbBasic.h
del %COINDIR%\include\Inventor\SbBox.h
del %COINDIR%\include\Inventor\SbBox2s.h
del %COINDIR%\include\Inventor\SbBox2i32.h
del %COINDIR%\include\Inventor\SbBox2f.h
del %COINDIR%\include\Inventor\SbBox2d.h
del %COINDIR%\include\Inventor\SbBox3d.h
del %COINDIR%\include\Inventor\SbBox3f.h
del %COINDIR%\include\Inventor\SbBox3i32.h
del %COINDIR%\include\Inventor\SbBox3s.h
del %COINDIR%\include\Inventor\SbByteBuffer.h
del %COINDIR%\include\Inventor\SbByteBuffer.h
del %COINDIR%\include\Inventor\SbClip.h
del %COINDIR%\include\Inventor\SbColor.h
del %COINDIR%\include\Inventor\SbColor4f.h
del %COINDIR%\include\Inventor\SbColorRGBA.h
del %COINDIR%\include\Inventor\SbCylinder.h
del %COINDIR%\include\Inventor\SbDPLine.h
del %COINDIR%\include\Inventor\SbDPLinear.h
del %COINDIR%\include\Inventor\SbDPMatrix.h
del %COINDIR%\include\Inventor\SbDPPlane.h
del %COINDIR%\include\Inventor\SbDPRotation.h
del %COINDIR%\include\Inventor\SbDPViewVolume.h
del %COINDIR%\include\Inventor\SbDict.h
del %COINDIR%\include\Inventor\SbHeap.h
del %COINDIR%\include\Inventor\SbImage.h
del %COINDIR%\include\Inventor\SbLine.h
del %COINDIR%\include\Inventor\SbLinear.h
del %COINDIR%\include\Inventor\SbMatrix.h
del %COINDIR%\include\Inventor\SbName.h
del %COINDIR%\include\Inventor\SbOctTree.h
del %COINDIR%\include\Inventor\SbPList.h
del %COINDIR%\include\Inventor\SbPlane.h
del %COINDIR%\include\Inventor\SbRotation.h
del %COINDIR%\include\Inventor\SbSphere.h
del %COINDIR%\include\Inventor\SbString.h
del %COINDIR%\include\Inventor\SbTesselator.h
del %COINDIR%\include\Inventor\SbTime.h
del %COINDIR%\include\Inventor\SbTypeInfo.h
del %COINDIR%\include\Inventor\SbVec.h
del %COINDIR%\include\Inventor\SbVec2b.h
del %COINDIR%\include\Inventor\SbVec2ub.h
del %COINDIR%\include\Inventor\SbVec2s.h
del %COINDIR%\include\Inventor\SbVec2us.h
del %COINDIR%\include\Inventor\SbVec2i32.h
del %COINDIR%\include\Inventor\SbVec2ui32.h
del %COINDIR%\include\Inventor\SbVec2f.h
del %COINDIR%\include\Inventor\SbVec2d.h
del %COINDIR%\include\Inventor\SbVec3b.h
del %COINDIR%\include\Inventor\SbVec3ub.h
del %COINDIR%\include\Inventor\SbVec3s.h
del %COINDIR%\include\Inventor\SbVec3us.h
del %COINDIR%\include\Inventor\SbVec3i32.h
del %COINDIR%\include\Inventor\SbVec3ui32.h
del %COINDIR%\include\Inventor\SbVec3f.h
del %COINDIR%\include\Inventor\SbVec3d.h
del %COINDIR%\include\Inventor\SbVec4b.h
del %COINDIR%\include\Inventor\SbVec4ub.h
del %COINDIR%\include\Inventor\SbVec4s.h
del %COINDIR%\include\Inventor\SbVec4us.h
del %COINDIR%\include\Inventor\SbVec4i32.h
del %COINDIR%\include\Inventor\SbVec4ui32.h
del %COINDIR%\include\Inventor\SbVec4f.h
del %COINDIR%\include\Inventor\SbVec4d.h
del %COINDIR%\include\Inventor\SbViewVolume.h
del %COINDIR%\include\Inventor\SbViewportRegion.h
del %COINDIR%\include\Inventor\SbXfBox3f.h
del %COINDIR%\include\Inventor\SbXfBox3d.h
del %COINDIR%\include\Inventor\So.h
del %COINDIR%\include\Inventor\SoDB.h
del %COINDIR%\include\Inventor\SoFullPath.h
del %COINDIR%\include\Inventor\SoInput.h
del %COINDIR%\include\Inventor\SoInteraction.h
del %COINDIR%\include\Inventor\SoLists.h
del %COINDIR%\include\Inventor\SoNodeKitPath.h
del %COINDIR%\include\Inventor\SoOffscreenRenderer.h
del %COINDIR%\include\Inventor\SoOutput.h
del %COINDIR%\include\Inventor\SoPath.h
del %COINDIR%\include\Inventor\SoPickedPoint.h
del %COINDIR%\include\Inventor\SoPrimitiveVertex.h
del %COINDIR%\include\Inventor\SoSceneManager.h
del %COINDIR%\include\Inventor\SoRenderManager.h
del %COINDIR%\include\Inventor\SoEventManager.h
del %COINDIR%\include\Inventor\SoType.h
del %COINDIR%\include\Inventor\non_winsys.h
del %COINDIR%\include\Inventor\oivwin32.h
del %COINDIR%\include\SoWinEnterScope.h
del %COINDIR%\include\SoWinLeaveScope.h
del %COINDIR%\include\SoDebug.h
| berndhahnebach/IfcPlusPlus | external/Coin3D/build/misc/uninstall-headers.bat | bat | mit | 48,405 |
@echo off
SET dir=%~dp0
cd %dir%
if exist extension-gamecircle.zip del /F extension-gamecircle.zip
winrar a -afzip extension-gamecircle.zip extension haxelib.json include.xml dependencies
pause | CristianCosta/extension-gamecircle | build.bat | bat | mit | 193 |
@echo off
echo ***********************
echo * *
echo * TXT_JOIN.BAT *
echo * CODED BY 0x776b7364 *
echo * *
echo ***********************
echo,
echo TXT_JOIN should be used in conjunction with TXT_SPLIT
echo TXT_JOIN file should be placed in the same directory as target folder
echo.
set /p folder=Enter target folder:
if not exist %folder% (
echo Error, folder does not exist.
pause
goto eof)
set /p file=Enter target output file:
if exist %file% (
echo Error, file already exists.
pause
goto eof)
dir /b %folder% >> dir.txt
FOR /F "tokens=*" %%a in (dir.txt) DO call :1 %%a
goto :eof
:1
set string=%*
set nstring=%string:~4%
echo %nstring% >> output.txt
| 0x776b7364/batch-utils | txt_join.bat | bat | mit | 752 |
@echo off
cd Init
call start_hardware_control.bat
call start_mot_master.bat
call start_analysis.bat
call start_console.bat
| jstammers/EDMSuite | NavPython/run.bat | bat | mit | 123 |
@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\PhoneTest.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PhoneTest.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
| tksn/PhoneTest | docs/make.bat | bat | mit | 6,987 |
makeit run debug
| Kochise/makeit | makefiles/debug_run.bat | bat | mit | 18 |
@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\malss.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\malss.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
| canard0328/malss | docs/make.bat | bat | mit | 6,699 |
cmd_drivers/i2c/muxes/built-in.o := rm -f drivers/i2c/muxes/built-in.o; /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD drivers/i2c/muxes/built-in.o
| Envious-Data/shinano-sirius_msm8974abpro | drivers/i2c/muxes/.built-in.o.cmd | bat | gpl-2.0 | 182 |
cmd_drivers/gpu/msm/msm_kgsl_z180.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/gpu/msm/msm_kgsl_z180.o drivers/gpu/msm/kgsl_g12_drawctxt.o drivers/gpu/msm/kgsl_g12_cmdstream.o drivers/gpu/msm/kgsl_g12.o
| dagnarf/sgh-i717-dagkernel | drivers/gpu/msm/.msm_kgsl_z180.o.cmd | bat | gpl-2.0 | 248 |
regsvr32 Release\TextService.dll /u | thetnswe/zawgyi | burglish/desktop/bgl_textservice/unregister.bat | bat | gpl-2.0 | 35 |
cmd_arch/arm/mach-msm/reset_modem.ko := /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -T /media/android_source/qrd-gb-dsds-7225/kernel/scripts/module-common.lds --build-id -o arch/arm/mach-msm/reset_modem.ko arch/arm/mach-msm/reset_modem.o arch/arm/mach-msm/reset_modem.mod.o
| freebsdmax/gsmart1315_kernel | arch/arm/mach-msm/.reset_modem.ko.cmd | bat | gpl-2.0 | 339 |
setlocal
set PATH=C:\MinGW\bin;%PATH%
make -f Makefile.MinGW.gfortran %1 %2
| ckuethe/wsjt | build_gfortran.bat | bat | gpl-2.0 | 79 |
java -jar gpt-keyreceiver-assembly-SNAPSHOT.jar
pause
| GiGurra/gpt | gpt-startupscripts/start_key_receiver.bat | bat | gpl-2.0 | 54 |
cmd_drivers/net/ethernet/qlogic/built-in.o := rm -f drivers/net/ethernet/qlogic/built-in.o; /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar rcsD drivers/net/ethernet/qlogic/built-in.o
| livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel | drivers/net/ethernet/qlogic/.built-in.o.cmd | bat | gpl-2.0 | 269 |
cmd_scripts/selinux/mdp/mdp := gcc -Wp,-MD,scripts/selinux/mdp/.mdp.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -Isecurity/selinux/include -o scripts/selinux/mdp/mdp scripts/selinux/mdp/mdp.c
source_scripts/selinux/mdp/mdp := scripts/selinux/mdp/mdp.c
deps_scripts/selinux/mdp/mdp := \
/usr/include/stdc-predef.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/string.h \
/usr/include/xlocale.h \
/usr/include/x86_64-linux-gnu/bits/string.h \
/usr/include/x86_64-linux-gnu/bits/string2.h \
security/selinux/include/classmap.h \
security/selinux/include/initial_sid_to_string.h \
scripts/selinux/mdp/mdp: $(deps_scripts/selinux/mdp/mdp)
$(deps_scripts/selinux/mdp/mdp):
| jashasweejena/VibeKernel | scripts/selinux/mdp/.mdp.cmd | bat | gpl-2.0 | 2,383 |
cmd_sound/soc/omap/built-in.o := rm -f sound/soc/omap/built-in.o; /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs sound/soc/omap/built-in.o
| dagnarf/sgh-i717-dagkernel | sound/soc/omap/.built-in.o.cmd | bat | gpl-2.0 | 160 |
cmd_kernel/trace/built-in.o := /root/Kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o kernel/trace/built-in.o kernel/trace/trace_selftest_dynamic.o kernel/trace/trace_clock.o kernel/trace/libftrace.o kernel/trace/ring_buffer.o kernel/trace/trace.o kernel/trace/trace_output.o kernel/trace/trace_stat.o kernel/trace/trace_printk.o kernel/trace/trace_sched_switch.o kernel/trace/trace_functions.o kernel/trace/trace_sched_wakeup.o kernel/trace/trace_nop.o kernel/trace/trace_functions_graph.o kernel/trace/blktrace.o kernel/trace/trace_events.o kernel/trace/trace_export.o kernel/trace/trace_event_perf.o kernel/trace/trace_events_filter.o kernel/trace/power-traces.o
| garwynn/D710SPR_GB27_Kernel | kernel/trace/.built-in.o.cmd | bat | gpl-2.0 | 689 |
#!/bin/sh
# $Id: ps2ps2.bat,v 1.2 2005/07/20 06:00:54 igor Exp $
@rem Converting Postscript 3 or PDF into PostScript 2.
if %1/==/ goto usage
if %2/==/ goto usage
call gssetgs.bat
echo -dNOPAUSE -dSAFER -dBATCH >_.at
:cp
if %3/==/ goto doit
echo %1 >>_.at
shift
goto cp
:doit
rem Watcom C deletes = signs, so use # instead.
%GSC% -q -sDEVICE#ps2write -sOutputFile#%2 @_.at %1
goto end
:usage
echo "Usage: ps2ps [options] input.ps output.ps"
echo " e.g. ps2ps -sPAPERSIZE=a4 input.ps output.ps
:end
| brho/plan9 | sys/src/cmd/gs/lib/ps2ps2.bat | bat | gpl-2.0 | 502 |
cmd_kernel/sys.o := arm-linux-gnueabi-gcc -Wp,-MD,kernel/.sys.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(sys)" -D"KBUILD_MODNAME=KBUILD_STR(sys)" -c -o kernel/sys.o kernel/sys.c
deps_kernel/sys.o := \
kernel/sys.c \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/hibernation.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/32v6k.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock_api_up.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/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
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/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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/percpu.h \
$(wildcard include/config/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.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/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/benoit/kernel_android/32/es209ra/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/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/mach/es209ra.h) \
$(wildcard include/config/vmsplit/2g.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/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/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/timex.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/jiffies.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/have/mlocked/page/bit.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/utsname.h \
$(wildcard include/config/uts/ns.h) \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/err.h \
include/linux/mman.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mman.h \
include/asm-generic/mman.h \
include/asm-generic/mman-common.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/reboot.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/emergency-restart.h \
include/asm-generic/emergency-restart.h \
include/linux/prctl.h \
include/linux/highuid.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/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/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 \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/perf_event.h \
$(wildcard include/config/perf/use/vmalloc.h) \
include/linux/pid_namespace.h \
$(wildcard include/config/pid/ns.h) \
include/linux/kexec.h \
$(wildcard include/config/.h) \
$(wildcard include/config/kexec/jump.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) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/times.h \
include/linux/posix-timers.h \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmparam.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/msgbuf.h \
include/linux/xfrm.h \
include/net/flow.h \
include/linux/in6.h \
include/linux/dcookies.h \
$(wildcard include/config/profiling.h) \
include/linux/suspend.h \
$(wildcard include/config/vt.h) \
$(wildcard include/config/vt/console.h) \
$(wildcard include/config/suspend.h) \
$(wildcard include/config/hibernation/nvs.h) \
include/linux/swap.h \
$(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \
include/linux/memcontrol.h \
$(wildcard include/config/cgroup/mem/cont.h) \
include/linux/cgroup.h \
include/linux/cgroupstats.h \
include/linux/taskstats.h \
include/linux/prio_heap.h \
include/linux/idr.h \
include/linux/node.h \
include/linux/sysdev.h \
include/linux/tty.h \
include/linux/major.h \
include/linux/termios.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/termios.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/termbits.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctls.h \
include/linux/tty_driver.h \
$(wildcard include/config/console/poll.h) \
include/linux/cdev.h \
include/linux/tty_ldisc.h \
include/linux/cn_proc.h \
$(wildcard include/config/proc/events.h) \
include/linux/getcpu.h \
include/linux/task_io_accounting_ops.h \
include/linux/cpu.h \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/ptrace.h \
include/linux/fs_struct.h \
include/linux/compat.h \
include/linux/syscalls.h \
$(wildcard include/config/event/profile.h) \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/mips.h) \
$(wildcard include/config/have/syscall/wrappers.h) \
include/linux/unistd.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unistd.h \
$(wildcard include/config/oabi/compat.h) \
include/trace/syscall.h \
include/linux/ftrace_event.h \
include/linux/ring_buffer.h \
$(wildcard include/config/ring/buffer/allow/swap.h) \
include/linux/kmemcheck.h \
include/linux/seq_file.h \
include/linux/trace_seq.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/irq_cpustat.h \
include/linux/kprobes.h \
$(wildcard include/config/kprobes.h) \
$(wildcard include/config/kretprobes.h) \
$(wildcard include/config/kprobes/sanity/test.h) \
include/linux/user_namespace.h \
$(wildcard include/config/user/ns.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
kernel/sys.o: $(deps_kernel/sys.o)
$(deps_kernel/sys.o):
| b8e5n/KTG-kernel_es209ra | kernel/.sys.o.cmd | bat | gpl-2.0 | 28,057 |
cmd_net/unix/garbage.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/unix/.garbage.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(garbage)" -D"KBUILD_MODNAME=KBUILD_STR(unix)" -c -o net/unix/.tmp_garbage.o net/unix/garbage.c
deps_net/unix/garbage.o := \
net/unix/garbage.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/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/socket.h \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/socket.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/un.h \
include/linux/net.h \
$(wildcard include/config/sysctl.h) \
include/linux/stringify.h \
include/linux/random.h \
include/linux/ioctl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/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/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/fcntl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/kmemcheck.h \
$(wildcard include/config/kmemcheck.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/rcutree.h \
include/linux/sysctl.h \
include/linux/ratelimit.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/fs.h \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.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/blk_types.h \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/radix-tree.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/pid.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/percpu_counter.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
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/err.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
$(wildcard include/config/network/phy/timestamping.h) \
include/linux/textsearch.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.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/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/trace/events/kmem.h \
include/trace/events/gfpflags.h \
include/net/checksum.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/async/tx/enable/channel/switch.h) \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
$(wildcard include/config/sysfs/deprecated.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
$(wildcard include/config/need/dma/map/state.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/range.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/io.h \
arch/arm/mach-davinci/include/mach/io.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/vlan/8021q.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/if_packet.h \
include/linux/if_link.h \
include/linux/netlink.h \
include/linux/pm_qos_params.h \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/delay.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/delay.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/linux/u64_stats_sync.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/mroute/multiple/tables.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/mroute/multiple/tables.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/irq/time/accounting.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hardirq.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/proportions.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
include/linux/key.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/trace/events/irq.h \
include/linux/file.h \
include/net/sock.h \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/fsnotify.h \
include/linux/fsnotify_backend.h \
$(wildcard include/config/fanotify/access/permissions.h) \
include/linux/idr.h \
include/linux/audit.h \
$(wildcard include/config/change.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmparam.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/msgbuf.h \
include/linux/filter.h \
include/linux/rculist_nulls.h \
include/linux/poll.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/net/dst.h \
$(wildcard include/config/net/cls/route.h) \
include/linux/rtnetlink.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/net/rtnetlink.h \
include/net/netlink.h \
include/net/af_unix.h \
include/net/scm.h \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/net/tcp_states.h \
net/unix/garbage.o: $(deps_net/unix/garbage.o)
$(deps_net/unix/garbage.o):
| srinugnt2000/linux-2.6.37 | net/unix/.garbage.o.cmd | bat | gpl-2.0 | 30,768 |
rem @echo off
pushd "%~dp0"
if "%SOFTWARE%"=="" (set SOFTWARE=C:\software)
set TARGET=%SOFTWARE%\sysinternals
set PACKAGE=SysinternalsSuite-20190905.zip
if exist "%TARGET%" goto END
echo ==== Installing %~dp0%PACKAGE% to %TARGET%
7z x %PACKAGE% -o%TARGET%
echo ==== Install the sysmon
%TARGET%\sysmon.exe -accepteula -h md5,sha1,sha256,imphash -i -n
echo ==== Update the configuration
%TARGET%\sysmon.exe -c sysmonconfig-rebox.xml
echo ==== Increase log size to 200 MB
wevtutil sl Microsoft-Windows-Sysmon/Operational /ms:209715200
echo ==== The events are written to Application and Services Logs/Microsoft/Windows/Sysmon/Operational log
echo ==== (For earlier -unsupported- versions of Windows, it places those under the Windows System log).
GOTO END
:END
echo ==== Accept EULA for the tools
reg.exe ADD HKCU\Software\Sysinternals /v EulaAccepted /t REG_DWORD /d 1 /f
reg.exe ADD HKU\.DEFAULT\Software\Sysinternals /v EulaAccepted /t REG_DWORD /d 1 /f
popd
| malwarenights/rebox | packages/s/sysinternals/00_install.bat | bat | gpl-2.0 | 1,011 |
cmd_sound/soc/s6000/built-in.o := rm -f sound/soc/s6000/built-in.o; /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ar rcs sound/soc/s6000/built-in.o
| wujiku/superstar-kernel-shooter-2.3.4gb | sound/soc/s6000/.built-in.o.cmd | bat | gpl-2.0 | 161 |
python build.py -d
pause | Himura2la/FestEngine | bin/Build Debug.bat | bat | gpl-3.0 | 24 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=arandomness
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| TheOneHyer/arandomness | docs/make.bat | bat | gpl-3.0 | 813 |
REM
REM this bacth file compiles a TEXI documenation of modules
REM the argument has to be the file to be compiled
REM w/o the texi.jam extension
REM
cd bin\texi
mkdir tmp
cd tmp
copy ..\%1.texi %1.texi
perl ..\..\..\t2h.pl %1.texi %1
mkdir ..\..\..\..\html\texi\
copy %1.texi ..\..\..\..\html\texi\
copy %1.rtf ..\..\..\..\html\texi\
gzip %1.rtf
copy %1.rtf.gz ..\..\..\..\html\texi\
copy %1.html ..\..\..\..\html\texi\
gzip %1.html
copy %1.html.gz ..\..\..\..\html\texi\
hhc %1.hhp
copy %1.chm ..\..\..\..\html\texi\
tar cfz %1.html.tgz *.html
copy %1.html.tgz ..\..\..\..\html\texi\
rm -rf ..\..\..\..\html\texi\%1
mkdir ..\..\..\..\html\texi\%1
copy *.html ..\..\..\..\html\texi\%1\
tex -silent %1.texi
tex -silent %1.texi
dvips %1.dvi
gzip %1.ps
dvipdfm %1.dvi
copy %1.ps.gz ..\..\..\..\html\texi\
copy %1.pdf ..\..\..\..\html\texi\
gzip %1.pdf
copy %1.pdf.gz ..\..\..\..\html\texi\
gzip %1.texi
copy %1.texi.gz ..\..\..\..\html\texi\
cd ..
rm -rf tmp
cd ..\..
| verhas/ScriptBasic | mkthm.cmd | bat | lgpl-2.1 | 975 |
rem Developer Command Prompt for VS2015
C:\php-sdk\bin\phpsdk_setvars.bat
cd C:\php-sdk\php70dev\vc14\x86\php*\
buildconf
cscript /nologo configure.js --disable-all --enable-cli --enable-beanstalk=shared --disable-zts
if %errorlevel% == 1 ( goto error ) else ( goto compile )
:error
echo configure.js error
echo please check the configure.js and recompile
pause
exit
:compile
nmake clean
nmake
nmake install
echo compile success! | qzfzz/php-beanstalk | windows_dll/scripts/x86php70nts.bat | bat | apache-2.0 | 429 |
@echo off
setLocal ENABLEDELAYEDEXPANSION
SET PLAY_HOME=c:\play-2.2.1
IF "%PLAY_HOME%"=="" GOTO USAGE
SET REPO=%PLAY_HOME%
mkdir tmp
if defined CLASSPATH (set CLASSPATH=%CLASSPATH%;.) else (set CLASSPATH=.)
rem FOR /R %REPO% %%G IN (*.jar) DO set CLASSPATH=!CLASSPATH!;%%G
FOR /R %REPO% %%G IN (*.jar) DO xcopy /s/y %%G tmp
SET CLASSPATH=%CLASSPATH%;tmp\*;target\scala-2.10\classes
echo The Classpath definition is %CLASSPATH%
cd target\scala-2.10\classes
java -cp %CLASSPATH% uk.bl.export.ExportMalformedUrls
GOTO END
:USAGE
echo PLAY_HOME is not set
:END
endlocal
| ukwa/w3act | exportBadUrls.bat | bat | apache-2.0 | 582 |
@REM
@REM Copyright 2016 Lucio Benfante <lucio.benfante@gmail.com>
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@REM ----------------------------------------------------------------------------
@REM Maven2 Start Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a JDK home dir
@REM
@REM Optional ENV vars
@REM M2_HOME - location of maven2's installed home dir
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
@REM e.g. to debug Maven itself, use
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
@REM ----------------------------------------------------------------------------
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
@echo off
@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
@REM Execute a user defined script before this one
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
:skipRcPre
@setlocal
set ERROR_CODE=0
@REM To isolate internal variables from possible post scripts, we use another setlocal
@setlocal
@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome
echo.
echo Error: JAVA_HOME not found in your environment. >&2
echo Please set the JAVA_HOME variable in your environment to match the >&2
echo location of your Java installation. >&2
echo.
goto error
:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto init
echo.
echo Error: JAVA_HOME is set to an invalid directory. >&2
echo JAVA_HOME = "%JAVA_HOME%" >&2
echo Please set the JAVA_HOME variable in your environment to match the >&2
echo location of your Java installation. >&2
echo.
goto error
@REM ==== END VALIDATION ====
:init
set MAVEN_CMD_LINE_ARGS=%MAVEN_CONFIG% %*
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
@REM Fallback to current working directory if not found.
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
set EXEC_DIR=%CD%
set WDIR=%EXEC_DIR%
:findBaseDir
IF EXIST "%WDIR%"\.mvn goto baseDirFound
cd ..
IF "%WDIR%"=="%CD%" goto baseDirNotFound
set WDIR=%CD%
goto findBaseDir
:baseDirFound
set MAVEN_PROJECTBASEDIR=%WDIR%
cd "%EXEC_DIR%"
goto endDetectBaseDir
:baseDirNotFound
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
cd "%EXEC_DIR%"
:endDetectBaseDir
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
@setlocal EnableExtensions EnableDelayedExpansion
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
:endReadAdditionalConfig
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
set WRAPPER_JAR=""%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar""
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
# avoid using MAVEN_CMD_LINE_ARGS below since that would loose parameter escaping in %*
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
if ERRORLEVEL 1 goto error
goto end
:error
set ERROR_CODE=1
:end
@endlocal & set ERROR_CODE=%ERROR_CODE%
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
@REM check for post script, once with legacy .bat ending and once with .cmd ending
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
:skipRcPost
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
if "%MAVEN_BATCH_PAUSE%" == "on" pause
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
exit /B %ERROR_CODE%
| benfante/FrontendToolsExample | mvnw.cmd | bat | apache-2.0 | 4,920 |
@echo off
set cwd=%cd%
cd /D %~dp0
set DevCmd="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
set MSBuildOptions=/v:m /p:Configuration=Release
set BuildDir64="build-exe-64"
call %DevCmd%
echo Building 64-bit tev...
mkdir %BuildDir64%
cd %BuildDir64%
cmake -DTEV_DEPLOY=1 -G "Visual Studio 16 2019" ..\..
msbuild %MSBuildOptions% tev.sln
move "Release\tev.exe" "..\..\tev.exe"
cd ..
rmdir /S /Q %BuildDir64%
echo Returning to original directory.
cd /D %cwd%
pause
| Tom94/tev | scripts/create-exe.bat | bat | bsd-3-clause | 516 |
@echo off
cls
:start
echo Starting server...
RustDedicated.exe -batchmode -nographics +server.ip 0.0.0.0 +rcon.ip 0.0.0.0 +server.port 28015 +rcon.port 28016 +rcon.password "changeme" +server.maxplayers 10 +server.hostname "My Oxide Server" +server.identity "my_server_identity" +server.level "Procedural Map" +server.seed 12345 +server.worldsize 4000 +server.saveinterval 300 +server.globalchat true +server.description "Powered by Oxide" +server.headerimage "http://oxidemod.org/styles/oxide/logo.png" +server.url "http://oxidemod.org"
echo.
echo Restarting server...
echo.
goto start
| bawNg/Oxide | Games/Unity/Oxide.Game.Rust/Files/Windows/_start-example.bat | bat | mit | 589 |
@echo off
cd /d "%~dp0"
echo.
echo ----- load config
call config.bat
if exist config.user.bat call config.user.bat
echo.
echo ----- Preprocess install script.
powershell -ExecutionPolicy RemoteSigned -File "lib/preprocess.ps1" "install.sh" "template/install.sh"
echo.
echo ----- Please type below.
type install-message.txt
echo.
echo ----- run server
powershell -ExecutionPolicy RemoteSigned -File "lib/server.ps1" "template/install.sh"
pause
| kunst1080/vm-install-freebsd | server.bat | bat | mit | 450 |
@echo off
setlocal
"%~dp0\runclass.bat" net.shibboleth.idp.cli.DataSealerCLI %*
| kgibm/open-liberty | dev/com.ibm.ws.security.saml.sso_fat.common/shibboleth-idp/4.1.0/bin/sealer.bat | bat | epl-1.0 | 81 |
cmd_arch/arm/lib/memmove.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.memmove.o.d -nostdinc -isystem /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -Iinclude -I/home/gjdlfg/kernel/omap/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/memmove.o arch/arm/lib/memmove.S
deps_arch/arm/lib/memmove.o := \
arch/arm/lib/memmove.S \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/linkage.h \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/hwcap.h \
arch/arm/lib/memmove.o: $(deps_arch/arm/lib/memmove.o)
$(deps_arch/arm/lib/memmove.o):
| jdlfg/Mecha-kernel-jdlfg | arch/arm/lib/.memmove.o.cmd | bat | gpl-2.0 | 1,690 |
FOR /L %%i IN (0,1,10000) DO echo %%i && C:\WORK\mor2\dev\bt\internal\bin\sleep.exe 1
| simeshev/parabuild-ci | test/data/long_running.bat | bat | lgpl-3.0 | 88 |
@REM
@REM Copyright 2017 Goldman Sachs.
@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,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM
@echo off
IF "%JAVA_HOME%" == "" (
ECHO JAVA_HOME variable must be defined to run this script
EXIT /B 1
)
SET OBEVO_HOME=%~dp0\..
REM *** Set OBEVO_CLASSPATH for when we look to read the DB files from the classpath, esp. via the deployWithCp.bat script ***
SET CLASSPATH=%OBEVO_CLASSPATH%;%OBEVO_HOME%\conf;%OBEVO_HOME%\extlib\*;%OBEVO_HOME%\lib\*
REM *** Set OBEVO_LIBRARY_PATH if we need to add any library paths to the execution, e.g. for Sybase IQ client loads ***
SET PATH=%OBEVO_LIBRARY_PATH%;%PATH%
"%JAVA_HOME%\bin\java" %OBEVO_JAVA_OPTS% -cp "%CLASSPATH%" com.gs.obevo.dist.Main %*
| goldmansachs/obevo | obevo-dists/obevo-cli/src/main/bin/deploy.bat | bat | apache-2.0 | 1,261 |
@REM
@REM Copyright 2010-2015 Axel Fontaine
@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
@Echo off
setlocal
@REM Set the current directory to the installation directory
set INSTALLDIR=%~dp0
if exist "%INSTALLDIR%\jre\bin\java.exe" (
set JAVA_CMD="%INSTALLDIR%\jre\bin\java.exe"
) else (
@REM Use JAVA_HOME if it is set
if "%JAVA_HOME%"=="" (
set JAVA_CMD=java
) else (
set JAVA_CMD="%JAVA_HOME%\bin\java.exe"
)
)
%JAVA_CMD% -cp "%INSTALLDIR%\lib\*;%INSTALLDIR%\drivers\*" org.flywaydb.commandline.Main %*
@REM Exit using the same code returned from Java
EXIT /B %ERRORLEVEL%
| chrsoo/flyway | flyway-commandline/src/main/assembly/flyway.cmd | bat | apache-2.0 | 1,136 |
set CP=%CD%\%1;%CP%
| dom4j/visdom | src/cp.bat | bat | bsd-3-clause | 23 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\lib\preflight.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\lib\preflight.js" %*
) | wpengine/hgv | script/preflight.cmd | bat | gpl-2.0 | 168 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\hanul-uglify-js\bin\uglifyjs" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\hanul-uglify-js\bin\uglifyjs" %*
) | Hanul/EXTREME.js | node_modules/.bin/uglifyjs.cmd | bat | mit | 198 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\watchr\bin\watchr" %*
) ELSE (
node "%~dp0\..\watchr\bin\watchr" %*
) | nikolasjansen/nija | node_modules/grunt-docker/node_modules/docker/node_modules/.bin/watchr.cmd | bat | mit | 131 |
cscript a:\post_install_simple.vbs /staticIp:XXXipXXX | vmware/webcommander | bfi/inst_script/batch_install_simple.bat | bat | mit | 53 |
@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
cd %~dp0..\..\node
if exist out rd /s /q out
rem -----------------------------------------------------------------------------
rem -- Generate Node.js Device SDK docs (including transports)
rem -----------------------------------------------------------------------------
call :jsdoc "Microsoft Azure IoT Device SDK for Node.js" "--readme device/core/readme.md --package device/core/package.json -c ../build/docs/jsdoc-device.conf.json"
rem -----------------------------------------------------------------------------
rem -- Generate Node.js Service SDK docs
rem -----------------------------------------------------------------------------
call :jsdoc "Microsoft Azure IoT Service SDK for Node.js" "--readme service/README.md --package service/package.json -c ../build/docs/jsdoc-service.conf.json"
goto :eof
:jsdoc
cmd /c "set "JSDOC_TITLE=%~1" && jsdoc %~2"
goto :eof
| Eclo/azure-iot-sdks | build/docs/gen_jsdocs.cmd | bat | mit | 1,093 |
cmd_arch/arm/mm/built-in.o := arm-eabi-ld -EL -r -o arch/arm/mm/built-in.o arch/arm/mm/dma-mapping.o arch/arm/mm/extable.o arch/arm/mm/fault.o arch/arm/mm/init.o arch/arm/mm/iomap.o arch/arm/mm/fault-armv.o arch/arm/mm/flush.o arch/arm/mm/idmap.o arch/arm/mm/ioremap.o arch/arm/mm/mmap.o arch/arm/mm/pgd.o arch/arm/mm/mmu.o arch/arm/mm/vmregion.o arch/arm/mm/proc-syms.o arch/arm/mm/alignment.o arch/arm/mm/highmem.o arch/arm/mm/abort-ev7.o arch/arm/mm/pabort-v7.o arch/arm/mm/cache-v7.o arch/arm/mm/copypage-v6.o arch/arm/mm/context.o arch/arm/mm/tlb-v7.o arch/arm/mm/proc-v7.o
| R-M-S/RMS_DragunKernel_V.11-MAX-9-3-2012_3.0.42 | arch/arm/mm/.built-in.o.cmd | bat | gpl-2.0 | 584 |
@echo off
rem Double-click this file to (re)build Mercurial for Windows in place.
rem Useful for testing and development.
cd ..\..
del /Q mercurial\*.pyd
del /Q mercurial\*.pyc
rmdir /Q /S mercurial\locale
python setup.py build_py -c -d . build_ext -i build_mo
pause
| iaddict/mercurial.rb | vendor/mercurial/contrib/win32/buildlocal.bat | bat | mit | 267 |
@echo off
setlocal EnableDelayedExpansion
call configuration_cmd
call print_header
call print_dashed_seperator
call get_config.bat version
call get_config.bat author
call get_config.bat copyright
echo Welcome to the automated Installation of the CodeCombat Dev. Environment!
echo v%version% authored by %author% and published by %copyright%.
call print_seperator
call get_language
call get_local_text global_tips global tips
echo !global_tips!
call print_tips
call print_seperator
call sign_license
call download_and_install_applications
start cmd /c "setup_p2.bat"
endlocal | giaba90/codecombat | scripts/windows/coco-dev-setup/batch/scripts/setup.bat | bat | mit | 583 |
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\msbuild.exe Package.build.xml
pause | uMobile/uMobile4Contour | Package.build.cmd | bat | mit | 82 |
@echo off
SETLOCAL
@REM ----------------------------------------------------------------------------
@REM sonarqube-scanner-msbuild.cmd
@REM
@REM author: m4mc3r@gmail.com
@REM
@REM ----------------------------------------------------------------------------
set start_time=%time%
set sonarqube_scanner_folder=C:\root\bin\sonar-scanner-msbuild
set msbuild_folder=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin
set solution_folder=.
set solution_file=UMovies.sln
set project_name=UMovies
set project_version=1.0.0
set project_key=org.aldebaran:umovies
@REM Shorten the command prompt for making the output easier to read
set savedPrompt=%prompt%
set prompt=$$$g$s
@REM Change to the directory where the solution file resides
pushd "%solution_folder%"
"%sonarqube_scanner_folder%\SonarQube.Scanner.MSBuild.exe" begin /k:"%project_key%" /n:"%project_name%" /v:"%project_version%"
@if %errorlevel% NEQ 0 goto :error
"%msbuild_folder%\msbuild.exe" %solution_file% /t:Rebuild
@if %errorlevel% NEQ 0 goto :error
"%sonarqube_scanner_folder%\SonarQube.Scanner.MSBuild.exe" end
@if %errorlevel% NEQ 0 goto :error
@REM Restore the command prompt and exit
@goto :success
:error
echo An error has occured: %errorLevel%
echo start time: %start_time%
echo end time: %time%
goto :finish
:success
echo process successfully finished.
echo start time: %start_time%
echo end time: %Time%
:finish
popd
set prompt=%savedPrompt%
ENDLOCAL
echo on | mamcer/umovies | sonarqube.cmd | bat | mit | 1,477 |
@echo off
pushd bin\Release
UBenchMethod.exe
popd
pause | izenkov/ubench.net | UBenchMethod/bench.cmd | bat | mit | 64 |
SET DIR=%~dp0
:: /Wall /WX is enable all warnings and treat them as errors
:: /wd<num> is disable a warning
:: Disabled Warnings:
:: -------- /wd4710:
:: data_seg.c(6): warning C4710: 'int printf(const char *const ,...)': function not inlined
:: C:\Program Files (x86)\Windows Kits\10\include\10.0.10586.0\ucrt\stdio.h(944): note: see declaration of 'printf'
:: cl /nologo /Wall /WX /wd4710 data_seg.c /c /I%DIR%..\testlib /Fo:data_seg.obj
cl /nologo /wd4710 data_seg.c /c /I%DIR%..\testlib /Fo:data_seg.obj
link data_seg.obj /out:data_seg.exe
| madphage/mpcstl | test/build3.bat | bat | mit | 544 |
sicstus -l load_and_run_open_mic_app_self_contained.pl
pause
| TeamSPoon/logicmoo_workspace | packs_sys/logicmoo_nlu/ext/regulus/Examples/Toy1/scripts/run_open_mic_app_self_contained.bat | bat | mit | 62 |
copy /Y /B *.tgz Q:\AAG\javascript-npm-packages | ybarukh/react-cytoscape | localpublish.bat | bat | mit | 47 |
del *.o
del *.txt
del output.exe | shawwwn/Direct3D8to9 | misc/MPHF/clean.cmd | bat | mit | 32 |
@echo off
cls
REM Reading user input...
SET server=localhost
SET /P server="Server [localhost] ...: "
SET port=5433
SET /P port="Port [5432] ..........: "
SET username=postgres
SET /P username="Username [postgres] ..: "
SET database=postgres
SET /P database="Database [postgres] ..: "
REM Running PSQL to execute install.sql
"C:\Program Files\PostgreSQL\9.5\bin\psql.exe" -h %server% -p %port% -U %username% -d %database% -f install.sql > pub.log 2> errpub.log
pause
| elixneto/postgres-deploy | deploy/runpsqlwin.bat | bat | mit | 474 |
@echo off
set lib_base=call "%~dp0lib_base.cmd"
if "%~1" == "/h" (
%lib_base% help "%~0"
) else if "%1" neq "" (
call :%*
)
exit /b
:help
:::===============================================================================
:::show_subs - shows all sub routines in a .bat/.cmd file with documentation
:::.
:::include:
:::.
::: call "lib_base.cmd"
:::.
:::usage:
:::.
::: %lib_base% show_subs "file"
:::.
:::options:
:::.
::: file <in> full path to file containing lib_routines to display
:::.
:::-------------------------------------------------------------------------------
for /f "tokens=* delims=:" %%a in ('type "%~1" ^| %WINDIR%\System32\findstr /i /r "^:::"') do (
rem echo a="%%a"
if "%%a"=="." (
echo.
) else if /i "%%a" == "usage" (
echo %%a:
) else if /i "%%a" == "options" (
echo %%a:
) else if not "%%a" == "" (
echo %%a
)
)
pause
exit /b
:cmder_shell
:::===============================================================================
:::show_subs - shows all sub routines in a .bat/.cmd file with documentation
:::.
:::include:
:::.
::: call "lib_base.cmd"
:::.
:::usage:
:::.
::: %lib_base% cmder_shell
:::.
:::options:
:::.
::: file <in> full path to file containing lib_routines to display
:::.
:::-------------------------------------------------------------------------------
echo %comspec% | %WINDIR%\System32\find /i "\cmd.exe" > nul && set "CMDER_SHELL=cmd"
echo %comspec% | %WINDIR%\System32\find /i "\tcc.exe" > nul && set "CMDER_SHELL=tcc"
echo %comspec% | %WINDIR%\System32\find /i "\tccle" > nul && set "CMDER_SHELL=tccle"
if not defined CMDER_CLINK (
set CMDER_CLINK=1
if "%CMDER_SHELL%" equ "tcc" set CMDER_CLINK=0
if "%CMDER_SHELL%" equ "tccle" set CMDER_CLINK=0
)
if not defined CMDER_ALIASES (
set CMDER_ALIASES=1
if "%CMDER_SHELL%" equ "tcc" set CMDER_ALIASES=0
if "%CMDER_SHELL%" equ "tccle" set CMDER_ALIASES=0
)
exit /b
:update_legacy_aliases
type "%user_aliases%" | %WINDIR%\System32\findstr /i ";= Add aliases below here" >nul
if "%errorlevel%" == "1" (
echo Creating initial user_aliases store in "%user_aliases%"...
if defined CMDER_USER_CONFIG (
copy "%user_aliases%" "%user_aliases%.old_format"
copy "%CMDER_ROOT%\vendor\user_aliases.cmd.default" "%user_aliases%"
) else (
copy "%user_aliases%" "%user_aliases%.old_format"
copy "%CMDER_ROOT%\vendor\user_aliases.cmd.default" "%user_aliases%"
)
)
exit /b
| cmderdev/cmder | vendor/lib/lib_base.cmd | bat | mit | 2,686 |
cd c:\python2.5\Lib\site-packages\
del /Q build
del /Q dist
c:\python25_SVN\python.exe c:\python25_SVN\Lib\site-packages\pKaTool_setup.py bdist_wininst --install-script install_win_pKaTool.py
| dmnfarrell/peat | pKaTool/distribution_tools/build_pKaTool_win.bat | bat | mit | 192 |
php.exe ../../index.php orm:schema-tool:update --force
TIMEOUT /T 30 | bsa-git/silex-mvc | app/Console/scripts/orm/schema_update.bat | bat | mit | 69 |
@echo off
echo Building CSGO GC base...
..\..\Protogen\protogen -s:..\ -i:"steammessages.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\SteamMsgBase.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
..\..\Protogen\protogen -s:..\ -i:"gcsystemmsgs.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\SteamMsgGCSystem.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
..\..\Protogen\protogen -s:..\ -i:"base_gcmessages.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\SteamMsgGC.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
..\..\Protogen\protogen -s:..\ -i:"gcsdk_gcmessages.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\SteamMsgGCSDK.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
..\..\Protogen\protogen -s:..\ -i:"econ_gcmessages.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\SteamMsgGCEcon.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
..\..\Protogen\protogen -s:..\ -i:"engine_gcmessages.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\SteamMsgGCEngine.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
echo Building CSGO messages...
..\..\Protogen\protogen -s:..\ -i:"cstrike15_gcmessages.proto" -o:"..\..\..\SteamKit2\SteamKit2\Base\Generated\GC\CSGO\MsgGC.cs" -t:csharp -p:lightFramework=true -ns:"SteamKit2.GC.CSGO.Internal" -p:detectMissing
| DoctorMcKay/node-steam-client | steam-resources/protobufs/csgo/generate-base.bat | bat | mit | 1,576 |
@setlocal
@echo off
if not defined APPVEYOR_BUILD_VERSION (
echo Error: Expected the environment variable APPVEYOR_BUILD_VERSION to be set, but it's not!
exit /b -1
)
nuget pack SharpRemote\SharpRemote.nuspec -Version %APPVEYOR_BUILD_VERSION%
endlocal
| Kittyfisto/SharpRemote | pack.cmd | bat | mit | 257 |
REM file: implement.bat
REM
REM (c) Copyright 2008 - 2011 Xilinx, Inc. All rights reserved.
REM
REM This file contains confidential and proprietary information
REM of Xilinx, Inc. and is protected under U.S. and
REM international copyright and other intellectual property
REM laws.
REM
REM DISCLAIMER
REM This disclaimer is not a license and does not grant any
REM rights to the materials distributed herewith. Except as
REM otherwise provided in a valid license issued to you by
REM Xilinx, and to the maximum extent permitted by applicable
REM law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
REM WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
REM AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
REM BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
REM INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
REM (2) Xilinx shall not be liable (whether in contract or tort,
REM including negligence, or under any other theory of
REM liability) for any loss or damage of any kind or nature
REM related to, arising under or in connection with these
REM materials, including for any direct, or any indirect,
REM special, incidental, or consequential loss or damage
REM (including loss of data, profits, goodwill, or any type of
REM loss or damage suffered as a result of any action brought
REM by a third party) even if such damage or loss was
REM reasonably foreseeable or Xilinx had been advised of the
REM possibility of the same.
REM
REM CRITICAL APPLICATIONS
REM Xilinx products are not designed or intended to be fail-
REM safe, or for use in any application requiring fail-safe
REM performance, such as life-support or safety devices or
REM systems, Class III medical devices, nuclear facilities,
REM applications related to the deployment of airbags, or any
REM other applications that could lead to death, personal
REM injury, or severe property or environmental damage
REM (individually and collectively, "Critical
REM Applications"). Customer assumes the sole risk and
REM liability of any use of Xilinx products in Critical
REM Applications, subject only to applicable laws and
REM regulations governing limitations on product liability.
REM
REM THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
REM PART OF THIS FILE AT ALL TIMES.
REM
REM -----------------------------------------------------------------------------
REM Script to synthesize and implement the RTL provided for the clocking wizard
REM -----------------------------------------------------------------------------
REM Clean up the results directory
rmdir /S /Q results
mkdir results
REM Copy unisim_comp.v file to results directory
copy %XILINX%\verilog\src\iSE\unisim_comp.v .\results\
REM Synthesize the Verilog Wrapper Files
echo 'Synthesizing Clocking Wizard design with XST'
xst -ifn xst.scr
move testclk_exdes.ngc results\
REM Copy the constraints files generated by Coregen
echo 'Copying files from constraints directory to results directory'
copy ..\example_design\testclk_exdes.ucf results\
cd results
echo 'Running ngdbuild'
ngdbuild -uc testclk_exdes.ucf testclk_exdes
echo 'Running map'
map -timing -pr b testclk_exdes -o mapped.ncd
echo 'Running par'
par -w mapped.ncd routed mapped.pcf
echo 'Running trce'
trce -e 10 routed -o routed mapped.pcf
echo 'Running design through bitgen'
bitgen -w routed
echo 'Running netgen to create gate level model for the clocking wizard example design'
netgen -ofmt verilog -sim -sdf_anno false -tm testclk_exdes -w routed.ncd routed.v
cd ..
| argonnexraydetector/RoachFirmPy | ANLYellowBlocks/mkid_dacadc_4x/ise/mkiddac/ipcore_dir/testclk/implement/implement.bat | bat | gpl-2.0 | 3,532 |
cmd_lib/lz4/lz4_compress.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o lib/lz4/lz4_compress.ko lib/lz4/lz4_compress.o lib/lz4/lz4_compress.mod.o
| avareldalton85/rpi2-linux-rt | lib/lz4/.lz4_compress.ko.cmd | bat | gpl-2.0 | 251 |
javac MindMeld.java
pause | JDM152/MindMeld | Java/Compile.bat | bat | gpl-2.0 | 25 |
cmd_arch/arm/boot/compressed/head.o := arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/boot/compressed/.head.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -include asm/unified.h -msoft-float -Wa,-march=all -DTEXT_OFFSET=0x00008000 -c -o arch/arm/boot/compressed/head.o arch/arm/boot/compressed/head.S
deps_arch/arm/boot/compressed/head.o := \
arch/arm/boot/compressed/head.S \
$(wildcard include/config/debug/icedcc.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/arch/sa1100.h) \
$(wildcard include/config/debug/ll/ser3.h) \
$(wildcard include/config/arch/s3c2410.h) \
$(wildcard include/config/s3c/lowlevel/uart/port.h) \
$(wildcard include/config/cpu/cp15.h) \
$(wildcard include/config/auto/zreladdr.h) \
$(wildcard include/config/zboot/rom.h) \
$(wildcard include/config/arch/rpc.h) \
$(wildcard include/config/cpu/dcache/writethrough.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/processor/id.h) \
$(wildcard include/config/cpu/feroceon/old/id.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
arch/arm/boot/compressed/head.o: $(deps_arch/arm/boot/compressed/head.o)
$(deps_arch/arm/boot/compressed/head.o):
| srinugnt2000/linux-2.6.37 | arch/arm/boot/compressed/.head.o.cmd | bat | gpl-2.0 | 2,201 |
cmd_drivers/misc/mediatek/mt6622/bt_hwctl.o := arm-linux-gnueabihf-ld -EL -r -o drivers/misc/mediatek/mt6622/bt_hwctl.o drivers/misc/mediatek/mt6622/bt_hwctl_dev.o drivers/misc/mediatek/mt6622/bt_eirq_handler.o drivers/misc/mediatek/mt6622/bt_plat_smdk.o
| Dee-UK/D33_KK_Kernel | drivers/misc/mediatek/mt6622/.bt_hwctl.o.cmd | bat | gpl-2.0 | 259 |
cmd_/home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/rtl818x/rtl8187/rtl8187.o := /home/keithconger/Projects/bbbandroid-bluez/prebuilts/gcc/linux-x86/arm/arm-gnueabihf-4.7/bin/arm-linux-gnueabihf-ld -EL -r -o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/rtl818x/rtl8187/rtl8187.o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/rtl818x/rtl8187/dev.o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/rtl818x/rtl8187/rtl8225.o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/rtl818x/rtl8187/leds.o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/rtl818x/rtl8187/rfkill.o
| kconger/backports-3.18.1-1 | drivers/net/wireless/rtl818x/rtl8187/.rtl8187.o.cmd | bat | gpl-2.0 | 790 |
#skip !0 testenv DPS_TEST_ROOT
#skip !0 testenv DPS_TEST_DIR
#skip !0 testenv DPS_TEST_DBADDR0
#skip !0 testenv DPS_SHARE_DIR
#skip !0 testenv INDEXER
skip !0 exec $(INDEXER) -Echeck $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
fail !0 exec rm -rf $(DPS_TEST_DIR)/var/
fail !0 exec mkdir $(DPS_TEST_DIR)/var
fail !0 exec mkdir $(DPS_TEST_DIR)/var/cache
fail !0 exec mkdir $(DPS_TEST_DIR)/var/splitter
fail !0 exec mkdir $(DPS_TEST_DIR)/var/store
fail !0 exec mkdir $(DPS_TEST_DIR)/var/tree
fail !0 exec mkdir $(DPS_TEST_DIR)/var/url
fail 20 exec $(INDEXER) -Edrop $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
fail !0 exec $(INDEXER) -Ecreate $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
fail !0 exec $(INDEXER) -Eindex -v5 $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
#fail !0 exec $(INDEXER) -Eindex -v5 $(DPS_TEST_DIR)/indexer.conf > $(DPS_TEST_DIR)/indexer.log 2>&1
fail !0 exec $(INDEXER) -TWv4 $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
fail !0 exec $(INDEXER) -Esqlmon $(DPS_TEST_DIR)/indexer.conf < $(DPS_TEST_DIR)/query.tst > $(DPS_TEST_DIR)/query.rej 2>&1
fail !0 exec $(SEARCH) body1 > $(DPS_TEST_DIR)/search.rej 2>&1
fail !0 exec $(SEARCH) Wall > $(DPS_TEST_DIR)/search2.rej 2>&1
fail !0 exec $(SEARCH) "text+file&sp=1" > $(DPS_TEST_DIR)/search3.rej 2>&1
#fail !0 exec $(SEARCH) "Wall+%22Street+Journal%22&sp=1&ps=15&m=near" > $(DPS_TEST_DIR)/search3.rej 2>&1
fail !0 mdiff $(DPS_TEST_DIR)/query.rej $(DPS_TEST_DIR)/query.res
fail !0 exec rm -f $(DPS_TEST_DIR)/query.rej
fail !0 mdiff $(DPS_TEST_DIR)/search.rej $(DPS_TEST_DIR)/search.res
fail !0 exec rm -f $(DPS_TEST_DIR)/search.rej
fail !0 mdiff $(DPS_TEST_DIR)/search2.rej $(DPS_TEST_DIR)/search2.res
fail !0 exec rm -f $(DPS_TEST_DIR)/search2.rej
#pass 0 exec $(INDEXER) -Edrop $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
# indexing from stored test
fail !0 exec $(INDEXER) -Eindex -v5 -qaB $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
fail !0 exec $(INDEXER) -TW $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
fail !0 exec $(INDEXER) -Esqlmon $(DPS_TEST_DIR)/indexer.conf < $(DPS_TEST_DIR)/query.tst > $(DPS_TEST_DIR)/query-2.rej 2>&1
fail !0 exec $(SEARCH) body1 > $(DPS_TEST_DIR)/search-2.rej 2>&1
fail !0 exec $(SEARCH) Wall > $(DPS_TEST_DIR)/search2-2.rej 2>&1
fail !0 mdiff $(DPS_TEST_DIR)/query-2.rej $(DPS_TEST_DIR)/query.res
fail !0 exec rm -f $(DPS_TEST_DIR)/query-2.rej
fail !0 mdiff $(DPS_TEST_DIR)/search-2.rej $(DPS_TEST_DIR)/search.res
fail !0 exec rm -f $(DPS_TEST_DIR)/search-2.rej
fail !0 mdiff $(DPS_TEST_DIR)/search2-2.rej $(DPS_TEST_DIR)/search2.res
fail !0 exec rm -f $(DPS_TEST_DIR)/search2-2.rej
fail !0 exec rm -rf $(DPS_TEST_DIR)/var/
pass 0 exec $(INDEXER) -Edrop $(DPS_TEST_DIR)/indexer.conf >> $(DPS_TEST_LOG) 2>&1
| invokerj/dpsearch-4.53 | test/test-cache/test.cmd | bat | gpl-2.0 | 2,804 |
CD "%userprofile%\Pulpit"
set DATA=20130926
set /P VERSION=<nsbuilder1-%DATA%-src\nsbuilder1\SVN_VERSION_FILE
mkdir nsbuilder1-%DATA%-win-bin
copy nsbuilder-release-files nsbuilder1-%DATA%-win-bin
copy nsbuilder1-%DATA%-src\nsbuilder1\release\nsbuilder.exe nsbuilder1-%DATA%-win-bin
copy nsbuilder1-%DATA%-src\nsbuilder1\nsbuilder_pl.qm nsbuilder1-%DATA%-win-bin
copy nsbuilder1-%DATA%-src\nsbuilder1\index.html nsbuilder1-%DATA%-win-bin
copy nsbuilder1-%DATA%-src\nsbuilder1\scripts\nsbuilder2.iss nsbuilder1-%DATA%-win-bin
cd nsbuilder1-%DATA%-win-bin
"C:\Program Files\Inno Setup 5\ISCC.exe" /dMyAppVersion=%VERSION% "nsbuilder2.iss"
cd ..
copy nsbuilder1-%DATA%-win-bin\Output\setup.exe nsbuilder1-%DATA%-setup.exe
| nsbuilder-hub/nsbuilder | scripts/deploy.bat | bat | gpl-2.0 | 734 |
@echo off
if not exist %buildconfig% mkdir %buildconfig%
cd %buildconfig%
if exist *.txt del *.txt
call:makesolution 8bpp "-D ENABLE_PPA:BOOL=ON"
call:makesolution 16bpp "-D HIGH_BIT_DEPTH:BOOL=ON"
exit /B
:makesolution
set depth=%~1
if not exist %depth% mkdir %depth%
cd %depth%
set name=%generator%-%depth%
:: nuke existing cmake cache
if exist CMakeFiles rd /s /q CMakeFiles
if exist CMakeCache.txt del CMakeCache.txt
if exist cmake_install.cmake del cmake_install.cmake
echo Running cmake for %name%
if "%buildconfig%" == "msys" (
echo cd "%CD%" > buildscript.sh
echo cmake -D ENABLE_TESTS:BOOL=ON %~2 -G "%generator%" ../../../../source >> buildscript.sh
echo make >> buildscript.sh
%msys% -l "%CD%\buildscript.sh"
if exist x265.exe (
rem We cannot test MSYS x265 without running in MSYS environment
cd ..
exit /b 0
) else (
echo %name% could not create an x265.exe >> "%LOG%"
cd ..
exit /b 1
)
) else (
call "%compiler%\..\..\VC\vcvarsall.bat"
cmake -D ENABLE_TESTS:BOOL=ON %~2 -G "%generator%" ..\..\..\..\source >> ..\cmake%depth%.txt
if not exist x265.sln (
echo %name% solution was not created >> "%LOG%"
cd ..
exit /b 1
)
echo Compiling for release...
MSBuild /property:Configuration="Release" x265.sln >> ..\build%depth%_release.txt
if %errorlevel% equ 1 (
echo Release %name% build failed, refer the build log >> "%LOG%"
cd ..
exit /b 1
)
echo Compiling for debug...
MSBuild /property:Configuration="Debug" x265.sln >> ..\build%depth%_debug.txt
if %errorlevel% equ 1 (
echo Debug %name% build failed, refer the build log >> "%LOG%"
cd ..
exit /b 1
)
)
echo Smoke tests...
if exist Release\x265.exe (
Release\x265.exe %video1% -f %testframes% --wpp --hash 1 -o str1.out -r rec1.yuv --no-progress >> ..\encoder_%depth%.txt 2>&1
Release\x265.exe %video2% -f %testframes% --wpp --hash 1 -o str2.out -r rec2.yuv --no-progress >> ..\encoder_%depth%.txt 2>&1
Release\x265.exe %video3% -f %testframes% --wpp --hash 1 -o str3.out -r rec3.yuv --no-progress >> ..\encoder_%depth%.txt 2>&1
%decoder% -b str1.out -o str1.yuv >> ..\decoder_%depth%.txt
%decoder% -b str2.out -o str2.yuv >> ..\decoder_%depth%.txt
%decoder% -b str3.out -o str3.yuv >> ..\decoder_%depth%.txt
FC /b rec1.yuv str1.yuv > NUL || echo Reconstructed frame mismatch for %name% %video1% >> ..\..\DiffBin.txt
FC /b rec2.yuv str2.yuv > NUL || echo Reconstructed frame mismatch for %name% %video2% >> ..\..\DiffBin.txt
FC /b rec3.yuv str3.yuv > NUL || echo Reconstructed frame mismatch for %name% %video3% >> ..\..\DiffBin.txt
)
echo Leak test...
if exist Debug\x265.exe (
:: hopefully you have VLD installed so this will check for leaks
Debug\x265.exe %video1% -f %testframes% --wpp -o str4.out -r rec4.yuv --no-progress >> ..\encoder_%depth%.txt 2>&1
%decoder% -b str4.out -o str4.yuv >> ..\decoder_%depth%.txt
FC /b rec4.yuv str4.yuv > NUL || echo Reconstructed frames mismatch for debug %name% >> ..\..\DiffBin.txt
)
echo Testbench...
if exist test\Release\TestBench.exe (
test\Release\TestBench.exe >> ..\testbench.txt 2>&1 || echo %name% testbench failed >> "%LOG%"
)
if exist test\TestBench.exe (
test\TestBench.exe >> ..\testbench.txt 2>&1 || echo %name% testbench failed >> "%LOG%"
)
cd ..
| ECE408FinalProject/FinalProject | build/regression/01build-and-smoke-test.bat | bat | gpl-2.0 | 3,408 |
cmd_arch/arm/lib/strncpy_from_user.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.strncpy_from_user.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -gdwarf-2 -c -o arch/arm/lib/strncpy_from_user.o arch/arm/lib/strncpy_from_user.S
deps_arch/arm/lib/strncpy_from_user.o := \
arch/arm/lib/strncpy_from_user.S \
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) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
arch/arm/lib/strncpy_from_user.o: $(deps_arch/arm/lib/strncpy_from_user.o)
$(deps_arch/arm/lib/strncpy_from_user.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | arch/arm/lib/.strncpy_from_user.o.cmd | bat | gpl-2.0 | 1,692 |
cmd_drivers/mtd/mtd.o := /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/mtd/mtd.o drivers/mtd/mtdcore.o drivers/mtd/mtdsuper.o drivers/mtd/mtdbdi.o drivers/mtd/mtdpart.o
| sktjdgns1189/android_kernel_iriver_MX100 | drivers/mtd/.mtd.o.cmd | bat | gpl-2.0 | 200 |
cmd_drivers/scsi/ufs/ufs_test.ko := /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ld -EL -r -T /home/livlogik/Git_Hub/Kernel--Evil_Yummy_Gumdrop/scripts/module-common.lds --build-id --fix-cortex-a53-843419 -o drivers/scsi/ufs/ufs_test.ko drivers/scsi/ufs/ufs_test.o drivers/scsi/ufs/ufs_test.mod.o
| livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel | drivers/scsi/ufs/.ufs_test.ko.cmd | bat | gpl-2.0 | 384 |
cmd_drivers/net/ethernet/toshiba/built-in.o := rm -f drivers/net/ethernet/toshiba/built-in.o; mips-openwrt-linux-uclibc-ar rcsD drivers/net/ethernet/toshiba/built-in.o
| shizhai/wprobe | build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/drivers/net/ethernet/toshiba/.built-in.o.cmd | bat | gpl-2.0 | 169 |
@rem cnEq.cmd := (path-to)\cnEq.py %*
@
call cnEq 0.txt 0.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123a.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123b.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123c.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123d.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123e.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123f.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123-cr.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123-crlf.txt
@echo errorlevel=%errorlevel%
call cnEq -1.txt 123-lf.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123-cr.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123-crlf.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123a.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123b.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123c.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123d.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123e.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123f.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt 123-crlf.txtd
@echo errorlevel=%errorlevel%
call cnEq vvv123.txt 123-crlf.txt
@echo errorlevel=%errorlevel%
@rem bad
call cnEq -1.txt 123g.txt
@echo errorlevel=%errorlevel%
call cnEq 123.txt ../bad/123-bad-1.txt
@echo errorlevel=%errorlevel%
call cnEq ../bad/123-bad-1.txt 123.txt
@echo errorlevel=%errorlevel%
| r-pankevicius/sgrouphackathon2014 | data/sandbox/_spin.cmd | bat | gpl-2.0 | 1,501 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.