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 SET MSBUILD="C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" ECHO %DATE% %TIME:~0,8% %1 build started... ECHO. CALL %MSBUILD% PaymentsSdk.Moneris.NuGetPackage.csproj /v:n /m /p:Configuration=Release CALL ..\.nuget\Nuget.exe pack PaymentsSdk.Moneris.nuspec ECHO. ECHO %DATE% %TIME:~0,8% %1 build finished.
afedyanin/payments-sdk-moneris
PaymentsSdk.Moneris.NuGetPackage/BuildPackage.cmd
bat
mit
334
cd scripts\xlrd-1.0.0 python setup.py install
Jack301/toolkit
handleExcel/exportor/install_xlrd.bat
bat
mit
45
@echo Off pushd %~dp0 setlocal enabledelayedexpansion set PROGRAMSROOT=%PROGRAMFILES% if defined PROGRAMFILES(X86) set PROGRAMSROOT=%PROGRAMFILES(X86)% set CACHED_NUGET=%LOCALAPPDATA%\NuGet\NuGet.exe if exist "%CACHED_NUGET%" goto CopyNuGet echo Downloading latest version of NuGet.exe... if not exist "%LOCALAPPDATA%\NuGet" @md "%LOCALAPPDATA%\NuGet" @powershell -NoProfile -ExecutionPolicy Unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" :CopyNuGet echo Copying NuGet... if exist .nuget\nuget.exe goto :Build if not exist .nuget @md .nuget @copy "%CACHED_NUGET%" .nuget\nuget.exe > nul :Build echo. echo *** STARTING BUILD *** echo. dotnet build src/core/core.csproj --configuration Release if %ERRORLEVEL% neq 0 goto :BuildFail echo. echo *** BUILD SUCCEEDED *** echo. echo. echo *** STARTING TESTS *** echo. dotnet test tests/core.tests/core.tests.csproj --configuration Release if %ERRORLEVEL% neq 0 goto :TestFail echo. echo *** TESTS SUCCEEDED *** echo. echo. echo *** STARTING PACK *** echo. dotnet pack src/core/core.csproj --configuration Release --no-build --output ../../artifacts if %ERRORLEVEL% neq 0 goto :PackFail echo. echo *** PACK SUCCEEDED *** echo. goto End :BuildFail echo. echo *** BUILD FAILED *** goto End :TestFail echo. echo *** TEST FAILED *** goto End :PackFail echo. echo *** PACK FAILED *** goto End :End echo. popd exit /B %ERRORLEVEL%
ritterim/automation-sql
build.cmd
bat
mit
1,481
copy out\fotorama.js C:\JlsNext.dev\main\Jls.Web.Public\Scripts\fotorama-4.6.4
johnlscott/fotorama
mv.cmd
bat
mit
78
echo off for /f "tokens=1,* delims= " %%a in ("%*") do set ALL_BUT_FIRST=%%b call java -Dlog4j.configurationFile=%1 -Xms1024m -cp "../../systematic-trading-data-api-quandl/configuration/";"../../systematic-trading-data-api-alpha-vantage/configuration/";"../../systematic-trading-backtest-output-file/configuration/";"../../systematic-trading-backtest-output-elastic/configuration/";"../../systematic-trading-analysis/target/systematic-trading-analysis-0.0.1-SNAPSHOT-jar-with-dependencies.jar" com.systematic.trading.analysis.EntryOrderAnalysis %ALL_BUT_FIRST%
CjHare/systematic-trading
scripts/analysis/analysis.bat
bat
mit
564
cd .. E:\soft\R-3.2.2\bin\x64\Rscript bacgwas.R --input D:\work\bio\workdir\raw\dataset_1 --output D:\work\bio\tmp\moss --plugin moss cd bin pause
ikavalio/MDRTB-pipe
bin/test_moss.bat
bat
mit
146
:: Install 7zip if not exist "C:\Windows\Temp\7z920-x64.msi" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.7-zip.org/a/7z920-x64.msi', 'C:\Windows\Temp\7z920-x64.msi')" <NUL ) msiexec /qb /i C:\Windows\Temp\7z920-x64.msi :: There needs to be Oracle CA (Certificate Authority) certificates installed in order :: to prevent user intervention popups which will undermine a silent installation. cmd /c certutil -addstore -f "TrustedPublisher" A:\oracle-cert.cer if exist "C:\Users\vagrant\VBoxGuestAdditions.iso" ( move /Y C:\Users\vagrant\VBoxGuestAdditions.iso C:\Windows\Temp ) if not exist "C:\Windows\Temp\VBoxGuestAdditions.iso" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://download.virtualbox.org/virtualbox/5.2.16/VBoxGuestAdditions_5.2.16.iso', 'C:\Windows\Temp\VBoxGuestAdditions.iso')" <NUL ) cmd /c ""C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\VBoxGuestAdditions.iso -oC:\Windows\Temp\virtualbox" certutil -addstore -f "TrustedPublisher" C:\Windows\Temp\virtualbox\cert\vbox-sha256-r3.cer certutil -addstore -f "TrustedPublisher" C:\Windows\Temp\virtualbox\cert\vbox-sha256.cer certutil -addstore -f "TrustedPublisher" C:\Windows\Temp\virtualbox\cert\vbox-sha1.cer cmd /c C:\Windows\Temp\virtualbox\VBoxWindowsAdditions.exe /S rd /S /Q "C:\Windows\Temp\virtualbox" msiexec /qb /x C:\Windows\Temp\7z920-x64.msi
jonashackt/ansible-windows-docker-springboot
step0-packer-windows-vagrantbox/scripts/vm-guest-tools.bat
bat
mit
1,411
REM Generates self contained builds (Side by side - SxS) for the various supported .NET Core platforms. REM For additional RIDs (Runtime Identifiers) you can generate see https://docs.microsoft.com/en-us/dotnet/articles/core/rid-catalog REM Those would get added into the runtimes{} element in the project.json cd ./src/Jabbr-Core pwd ECHO win7-x64 dotnet publish --configuration Release --framework netcoreapp1.0 --runtime win7-x64 --output bin/Release/Publish/win7-x64 ECHO Creating ubuntu.14.04-x64 dotnet publish --configuration Release --framework netcoreapp1.0 --runtime ubuntu.14.04-x64 --output bin/Release/Publish/ubuntu.14.04-x64 ECHO Creating osx.10.12-x64 dotnet publish --configuration Release --framework netcoreapp1.0 --runtime osx.10.12-x64 --output bin/Release/Publish/osx.10.12-x64 ECHO Creating rhel.7.2-x64 dotnet publish --configuration Release --framework netcoreapp1.0 --runtime rhel.7.2-x64 --output bin/Release/Publish/rhel.7.2-x64 ECHO Creating debian.8-x64 dotnet publish --configuration Release --framework netcoreapp1.0 --runtime debian.8-x64 --output bin/Release/Publish/debian.8-x64
MachUpskillingFY17/JabbR-Core
CreateBuilds.bat
bat
mit
1,131
@echo off pushd src\Sinch.ServerSdk dotnet restore dotnet build set BUILD_STATUS=%ERRORLEVEL% if %BUILD_STATUS%==0 dotnet pack if not %BUILD_STATUS%==0 echo Build failed. NuGet package not created. popd
sinch/nuget-serversdk
BuildSignAndPack.cmd
bat
mit
204
@echo off cd %APPVEYOR_BUILD_FOLDER% :: ========================================================= :: Set some defaults. Infer some variables. :: :: These are set globally if "%LUA_VER%" NEQ "" ( set LUA=lua set LUA_SHORTV=%LUA_VER:~0,3% ) else ( set LUA=luajit set LJ_SHORTV=%LJ_VER:~0,3% set LUA_SHORTV=5.1 ) :: defines LUA_DIR so Cmake can find this Lua install if "%LUA%"=="luajit" ( set LUA_DIR=c:\lua\%platform%\lj%LJ_SHORTV% ) else ( set LUA_DIR=c:\lua\%platform%\%LUA_VER% ) :: Now we declare a scope Setlocal EnableDelayedExpansion EnableExtensions if not defined LUAROCKS_URL set LUAROCKS_URL=https://keplerproject.github.io/luarocks/releases if not defined LUAROCKS_REPO set LUAROCKS_REPO=https://luarocks.org if not defined LUA_URL set LUA_URL=http://www.lua.org/ftp if defined NOCOMPAT ( set COMPATFLAG=--nocompat ) else ( set COMPATFLAG= ) if not defined LUAJIT_GIT_REPO set LUAJIT_GIT_REPO=https://github.com/LuaJIT/LuaJIT.git if not defined LUAJIT_URL set LUAJIT_URL=https://github.com/LuaJIT/LuaJIT/archive if not defined LR_EXTERNAL set LR_EXTERNAL=c:\external if not defined LUAROCKS_INSTALL set LUAROCKS_INSTALL=%LUA_DIR%\LuaRocks :: LuaRocks <= 2.2.2 used a versioned directory :: HEAD and newer versions do not, so act accordingly. if defined LR_ROOT goto :skiplrver if "%LUAROCKS_VER%" EQU "HEAD" ( set LR_ROOT=%LUAROCKS_INSTALL% goto :skiplrver ) set LR_ROOT=%LUAROCKS_INSTALL% if %LUAROCKS_VER:~0,1% LEQ 2 ( if %LUAROCKS_VER:~2,1% LEQ 2 ( if %LUAROCKS_VER:~4,1% LEQ 3 ( set LR_ROOT=%LUAROCKS_INSTALL%\!LUAROCKS_VER:~0,3! ) ) ) :skiplrver if not defined LR_SYSTREE set LR_SYSTREE=%LUAROCKS_INSTALL%\systree if not defined SEVENZIP set SEVENZIP=7z :: :: ========================================================= :: first create some necessary directories: mkdir downloads 2>NUL :: Download and compile Lua (or LuaJIT) if "%LUA%"=="luajit" ( if not exist %LUA_DIR% ( if "%LJ_SHORTV%"=="2.1" ( :: Clone repository and checkout 2.1 branch set lj_source_folder=%APPVEYOR_BUILD_FOLDER%\downloads\luajit-%LJ_VER% if not exist !lj_source_folder! ( echo Cloning git repo %LUAJIT_GIT_REPO% !lj_source_folder! git clone --depth 1 --branch=v2.1 %LUAJIT_GIT_REPO% !lj_source_folder! || call :die "Failed to clone repository" ) else ( cd !lj_source_folder! git pull || call :die "Failed to update repository" git checkout v2.1 || call :die ) cd !lj_source_folder!\src ) else ( set lj_source_folder=%APPVEYOR_BUILD_FOLDER%\downloads\luajit-%LJ_VER% if not exist !lj_source_folder! ( echo Downloading... %LUAJIT_URL%/v%LJ_VER%.tar.gz curl --location --silent --fail --max-time 120 --connect-timeout 30 %LUAJIT_URL%/v%LJ_VER%.tar.gz | %SEVENZIP% x -si -so -tgzip | %SEVENZIP% x -si -ttar -aoa -odownloads ) cd !lj_source_folder!\src ) :: Compiles LuaJIT if "%Configuration%"=="MinGW" ( call mingw32-make ) else ( call msvcbuild.bat ) mkdir %LUA_DIR% 2> NUL for %%a in (bin bin\lua bin\lua\jit include lib) do ( mkdir "%LUA_DIR%\%%a" ) for %%a in (luajit.exe lua51.dll) do ( move "!lj_source_folder!\src\%%a" "%LUA_DIR%\bin" ) copy "%LUA_DIR%\bin\luajit.exe" "%LUA_DIR%\bin\lua.exe" move "!lj_source_folder!\src\lua51.lib" "%LUA_DIR%\lib" for %%a in (lauxlib.h lua.h lua.hpp luaconf.h lualib.h luajit.h) do ( copy "!lj_source_folder!\src\%%a" "%LUA_DIR%\include" ) copy "!lj_source_folder!\src\jit\*.lua" "%LUA_DIR%\bin\lua\jit" ) else ( echo LuaJIT %LJ_VER% already installed at %LUA_DIR% ) ) else ( if not exist %LUA_DIR% ( :: Download and compile Lua if not exist downloads\lua-%LUA_VER% ( curl --silent --fail --max-time 120 --connect-timeout 30 %LUA_URL%/lua-%LUA_VER%.tar.gz | %SEVENZIP% x -si -so -tgzip | %SEVENZIP% x -si -ttar -aoa -odownloads ) mkdir downloads\lua-%LUA_VER%\etc 2> NUL copy %~dp0\winmake.bat downloads\lua-%LUA_VER%\etc\winmake.bat cd downloads\lua-%LUA_VER% call etc\winmake %COMPATFLAG% call etc\winmake install %LUA_DIR% ) else ( echo Lua %LUA_VER% already installed at %LUA_DIR% ) ) if not exist %LUA_DIR%\bin\%LUA%.exe call :die "Missing Lua interpreter at %LUA_DIR%\bin\%LUA%.exe" set PATH=%LUA_DIR%\bin;%PATH% call !LUA! -v :: ========================================================== :: LuaRocks :: ========================================================== if not exist "%LR_ROOT%" ( :: Downloads and installs LuaRocks cd %APPVEYOR_BUILD_FOLDER% if %LUAROCKS_VER%==HEAD ( set lr_source_folder=%APPVEYOR_BUILD_FOLDER%\downloads\luarocks-%LUAROCKS_VER%-win32 if not exist !lr_source_folder! ( git clone https://github.com/keplerproject/luarocks.git --single-branch --depth 1 !lr_source_folder! || call :die "Failed to clone LuaRocks repository" ) else ( cd !lr_source_folder! git pull || call :die "Failed to update LuaRocks repository" ) ) else ( if not exist downloads\luarocks-%LUAROCKS_VER%-win32.zip ( echo Downloading LuaRocks... curl --silent --fail --max-time 120 --connect-timeout 30 --output downloads\luarocks-%LUAROCKS_VER%-win32.zip %LUAROCKS_URL%/luarocks-%LUAROCKS_VER%-win32.zip %SEVENZIP% x -aoa -odownloads downloads\luarocks-%LUAROCKS_VER%-win32.zip ) ) cd downloads\luarocks-%LUAROCKS_VER%-win32 if "%Configuration%"=="MinGW" ( call install.bat /LUA %LUA_DIR% /Q /LV %LUA_SHORTV% /P "%LUAROCKS_INSTALL%" /TREE "%LR_SYSTREE%" /MW ) else ( call install.bat /LUA %LUA_DIR% /Q /LV %LUA_SHORTV% /P "%LUAROCKS_INSTALL%" /TREE "%LR_SYSTREE%" ) :: Configures LuaRocks to instruct CMake the correct generator to use. Else, CMake will pick the highest :: Visual Studio version installed if "%Configuration%"=="MinGW" ( echo cmake_generator = "MinGW Makefiles" >> %LUAROCKS_INSTALL%\config-%LUA_SHORTV%.lua ) else ( set MSVS_GENERATORS[2008]=Visual Studio 9 2008 set MSVS_GENERATORS[2010]=Visual Studio 10 2010 set MSVS_GENERATORS[2012]=Visual Studio 11 2012 set MSVS_GENERATORS[2013]=Visual Studio 12 2013 set MSVS_GENERATORS[2015]=Visual Studio 14 2015 set CMAKE_GENERATOR=!MSVS_GENERATORS[%Configuration%]! if "%platform%" EQU "x64" (set CMAKE_GENERATOR=!CMAKE_GENERATOR! Win64) echo cmake_generator = "!CMAKE_GENERATOR!" >> %LUAROCKS_INSTALL%\config-%LUA_SHORTV%.lua ) ) if not exist "%LR_ROOT%" call :die "LuaRocks not found at %LR_ROOT%" set PATH=%LR_ROOT%;%LR_SYSTREE%\bin;%PATH% :: Lua will use just the system rocks set LUA_PATH=%LR_ROOT%\lua\?.lua;%LR_ROOT%\lua\?\init.lua set LUA_PATH=%LUA_PATH%;%LR_SYSTREE%\share\lua\%LUA_SHORTV%\?.lua set LUA_PATH=%LUA_PATH%;%LR_SYSTREE%\share\lua\%LUA_SHORTV%\?\init.lua set LUA_PATH=%LUA_PATH%;.\?.lua;.\?\init.lua set LUA_CPATH=%LR_SYSTREE%\lib\lua\%LUA_SHORTV%\?.dll;.\?.dll call luarocks --version || call :die "Error with LuaRocks installation" call luarocks list if not exist "%LR_EXTERNAL%" ( mkdir "%LR_EXTERNAL%" mkdir "%LR_EXTERNAL%\lib" mkdir "%LR_EXTERNAL%\include" ) set PATH=%LR_EXTERNAL%;%PATH% :: Exports the following variables: :: (beware of whitespace between & and ^ below) endlocal & set PATH=%PATH%&^ set LR_SYSTREE=%LR_SYSTREE%&^ set LUA_PATH=%LUA_PATH%&^ set LUA_CPATH=%LUA_CPATH%&^ set LR_EXTERNAL=%LR_EXTERNAL% echo. echo ====================================================== if "%LUA%"=="luajit" ( echo Installation of LuaJIT %LJ_VER% and LuaRocks %LUAROCKS_VER% done. ) else ( echo Installation of Lua %LUA_VER% and LuaRocks %LUAROCKS_VER% done. if defined NOCOMPAT echo Lua was built with compatibility flags disabled. ) echo Platform - %platform% echo LUA - %LUA% echo LUA_SHORTV - %LUA_SHORTV% echo LJ_SHORTV - %LJ_SHORTV% echo LUA_PATH - %LUA_PATH% echo LUA_CPATH - %LUA_CPATH% echo. echo LR_EXTERNAL - %LR_EXTERNAL% echo ====================================================== echo. goto :eof :: This blank space is intentional. If you see errors like "The system cannot find the batch label specified 'foo'" :: then try adding or removing blank lines lines above. :: Yes, really. :: http://stackoverflow.com/questions/232651/why-the-system-cannot-find-the-batch-label-specified-is-thrown-even-if-label-e :: helper functions: :: for bailing out when an error occurred :die %1 echo %1 exit /B 1 goto :eof
ignacio/lua-appveyor-example
.appveyor/install.bat
bat
mit
8,269
php bin/console > console.txt php bin/console config:dump-reference > dump-reference.txt php bin/console config:dump-reference doctrine > doctrine.txt rem php bin/console config:dump-reference doctrine_cache > doctrine_cache.txt php bin/console config:dump-reference twig > twig.txt php bin/console config:dump-reference framework > framework.txt php bin/console debug:container > container.txt php bin/console config:dump-reference stof_doctrine_extensions > stof_doctrine_extensions.txt
athos99/symfony-ex2
help.bat
bat
mit
496
/*Owner & Copyrights: Vance King Saxbe. A.*/%~dp0php.exe %~dp0pharcommand.phar %* /*email to provide support at vancekingsaxbe@powerdominionenterprise.com, businessaffairs@powerdominionenterprise.com, For donations please write to fundraising@powerdominionenterprise.com*///////
VanceKingSaxbeA/ASX-Engine
App/vdrive/.sys/php/phar.phar.bat
bat
mit
278
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Taz.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Taz.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
mkli90/Taz
doc/make.bat
bat
gpl-2.0
6,984
cmd_mm/mprotect.o := arm-linux-androideabi-gcc -Wp,-MD,mm/.mprotect.o.d -nostdinc -isystem /usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include -I/usr/src/dell/lhbalanced/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -mfpu=neon -march=armv7-a -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=3072 -fno-stack-protector -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mprotect)" -D"KBUILD_MODNAME=KBUILD_STR(mprotect)" -c -o mm/mprotect.o mm/mprotect.c deps_mm/mprotect.o := \ mm/mprotect.c \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/errno.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/posix_types.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/bitops.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/linkage.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/irqflags.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/hwcap.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ arch/arm/mach-msm/include/mach/barriers.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/processor.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /usr/src/dell/lhbalanced/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) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/wait.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/current.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/seqlock.h \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /usr/src/dell/lhbalanced/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) \ /usr/src/dell/lhbalanced/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) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ $(wildcard include/config/arch/msm/scorpionmp.h) \ $(wildcard include/config/arch/msm7x27.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ 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 \ /usr/src/dell/lhbalanced/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) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/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 \ /usr/src/dell/lhbalanced/arch/arm/include/asm/auxvec.h \ include/linux/completion.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /usr/src/dell/lhbalanced/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) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-msm/include/mach/vmalloc.h \ $(wildcard include/config/vmsplit/2g.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/pgtable-hwdef.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ $(wildcard include/config/arm/errata/720789.h) \ include/linux/sched.h \ $(wildcard include/config/sched/bfs.h) \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/irq/time/accounting.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/capability.h \ include/linux/timex.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/param.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/jiffies.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/ipcbuf.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ include/linux/rcutiny.h \ include/linux/signal.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/sigcontext.h \ /usr/src/dell/lhbalanced/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 \ /usr/src/dell/lhbalanced/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kref.h \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/hugetlb.h \ $(wildcard include/config/hugetlbfs.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 \ /usr/src/dell/lhbalanced/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/stat.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/stat.h \ include/linux/radix-tree.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/shm.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/shmparam.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/shmbuf.h \ include/linux/mman.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/mman.h \ include/asm-generic/mman.h \ include/asm-generic/mman-common.h \ $(wildcard include/config/mmap/allow/uninitialized.h) \ include/linux/highmem.h \ $(wildcard include/config/debug/highmem.h) \ include/linux/uaccess.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/uaccess.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ $(wildcard include/config/arm/errata/411920.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/kmap_types.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/msg.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/msgbuf.h \ include/linux/xfrm.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/kmalloc_sizes.h \ include/net/flow.h \ include/linux/in6.h \ include/linux/mempolicy.h \ $(wildcard include/config/tmpfs.h) \ include/linux/pagemap.h \ include/linux/hardirq.h \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/hardirq.h \ /usr/src/dell/lhbalanced/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/personality.h \ include/linux/syscalls.h \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/ppc64.h) \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/mips.h) \ $(wildcard include/config/have/syscall/wrappers.h) \ include/linux/unistd.h \ /usr/src/dell/lhbalanced/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/perf_event.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/perf/use/vmalloc.h) \ /usr/src/dell/lhbalanced/arch/arm/include/asm/perf_event.h \ include/linux/pid_namespace.h \ $(wildcard include/config/pid/ns.h) \ include/linux/nsproxy.h \ $(wildcard include/config/cgroup/ns.h) \ include/linux/ftrace.h \ $(wildcard include/config/function/tracer.h) \ $(wildcard include/config/stack/tracer.h) \ $(wildcard include/config/dynamic/ftrace.h) \ $(wildcard include/config/frame/pointer.h) \ include/linux/trace_clock.h \ include/linux/kallsyms.h \ $(wildcard include/config/kallsyms.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/module/unload.h) \ $(wildcard include/config/constructors.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/elf.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/ftrace.h \ include/linux/cpu.h \ $(wildcard include/config/arch/cpu/probe/release.h) \ $(wildcard include/config/pm/sleep/smp.h) \ include/linux/sysdev.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ $(wildcard include/config/pm/ops.h) \ include/linux/node.h \ /usr/src/dell/lhbalanced/arch/arm/include/asm/local.h \ include/asm-generic/local.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/cgroup_subsys.h \ $(wildcard include/config/cgroup/debug.h) \ $(wildcard include/config/cgroup/cpuacct.h) \ $(wildcard include/config/cgroup/device.h) \ $(wildcard include/config/cgroup/freezer.h) \ $(wildcard include/config/net/cls/cgroup.h) \ $(wildcard include/config/blk/cgroup.h) \ include/linux/swapops.h \ include/linux/mmu_notifier.h \ include/linux/migrate.h \ mm/mprotect.o: $(deps_mm/mprotect.o) $(deps_mm/mprotect.o):
tenorntex/lhbalanced
mm/.mprotect.o.cmd
bat
gpl-2.0
28,382
cmd_arch/arm/kernel/head.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/kernel/.head.o.d -nostdinc -isystem /opt/toolchains/arm-2009q3/bin/../lib/gcc/arm-none-eabi/4.4.1/include -I/home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s5pv210/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -include asm/unified.h -msoft-float -gdwarf-2 -DTEXT_OFFSET=0x00008000 -c -o arch/arm/kernel/head.o arch/arm/kernel/head.S deps_arch/arm/kernel/head.o := \ arch/arm/kernel/head.S \ $(wildcard include/config/xip/kernel.h) \ $(wildcard include/config/xip/phys/addr.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/alignment/trap.h) \ $(wildcard include/config/cpu/dcache/disable.h) \ $(wildcard include/config/cpu/bpredict/disable.h) \ $(wildcard include/config/cpu/icache/disable.h) \ $(wildcard include/config/debug/ll.h) \ $(wildcard include/config/arch/netwinder.h) \ $(wildcard include/config/arch/cats.h) \ $(wildcard include/config/arch/rpc.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/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/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/linkage.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/hwcap.h \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/mmu.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ include/linux/const.h \ arch/arm/mach-s5pv210/include/mach/memory.h \ $(wildcard include/config/mach/smdkv210.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/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) \ arch/arm/kernel/head-common.S \ arch/arm/kernel/head.o: $(deps_arch/arm/kernel/head.o) $(deps_arch/arm/kernel/head.o):
dizgustipated/BOCA-2.6.35.14
arch/arm/kernel/.head.o.cmd
bat
gpl-2.0
4,340
cmd_drivers/gpu/drm/i2c/built-in.o := rm -f drivers/gpu/drm/i2c/built-in.o; /home/algesat/arm-eabi-4.7/bin/arm-eabi-ar rcsD drivers/gpu/drm/i2c/built-in.o
Algesat/BladeApex2
drivers/gpu/drm/i2c/.built-in.o.cmd
bat
gpl-2.0
156
cmd_block/built-in.o := arm-linux-ld -EL -r -o block/built-in.o block/elevator.o block/blk-core.o block/blk-tag.o block/blk-sysfs.o block/blk-barrier.o block/blk-settings.o block/blk-ioc.o block/blk-map.o block/blk-exec.o block/blk-merge.o block/blk-softirq.o block/blk-timeout.o block/blk-iopoll.o block/ioctl.o block/genhd.o block/scsi_ioctl.o block/noop-iosched.o
heyoufei/mini2440_kernel
block/.built-in.o.cmd
bat
gpl-2.0
372
cmd_mm/shmem.o := arm-eabi-gcc -Wp,-MD,mm/.shmem.o.d -nostdinc -isystem /home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -I/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(shmem)" -D"KBUILD_MODNAME=KBUILD_STR(shmem)" -c -o mm/shmem.o mm/shmem.c deps_mm/shmem.o := \ mm/shmem.c \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/tmpfs.h) \ $(wildcard include/config/tmpfs/posix/acl.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/mmu.h) \ include/linux/fs.h \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/posix_types.h \ include/linux/linkage.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/processor.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hwcap.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/irqflags.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ arch/arm/mach-tegra/include/mach/barriers.h \ include/asm-generic/cmpxchg-local.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ include/linux/path.h \ include/linux/stat.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/kobject.h \ $(wildcard include/config/hotplug.h) \ include/linux/sysfs.h \ include/linux/errno.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/percpu_counter.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/smp.h \ arch/arm/mach-tegra/include/mach/smp.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hardware/gic.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ 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/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/vfs.h \ include/linux/statfs.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/statfs.h \ include/asm-generic/statfs.h \ include/linux/mount.h \ include/linux/nodemask.h \ $(wildcard include/config/highmem.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/memory/failure.h) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ include/linux/const.h \ arch/arm/mach-tegra/include/mach/memory.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/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/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-tegra/include/mach/vmalloc.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/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/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ $(wildcard include/config/debug/highmem.h) \ include/linux/uaccess.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/uaccess.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ $(wildcard include/config/arm/errata/411920.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/shmparam.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/kmap_types.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/highmem.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/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/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/security/sealimemodule.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/linux/param.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/timex.h \ arch/arm/mach-tegra/include/mach/timex.h \ include/linux/jiffies.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ipcbuf.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sigcontext.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/proportions.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/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/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hardirq.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/irq.h \ arch/arm/mach-tegra/include/mach/irqs.h \ $(wildcard include/config/arch/tegra/2x/soc.h) \ include/linux/irq_cpustat.h \ include/linux/hugetlb_inline.h \ include/linux/file.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/elf.h \ include/linux/elf-em.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/elf.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/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/cgroup_subsys.h \ $(wildcard include/config/cgroup/debug.h) \ $(wildcard include/config/cgroup/ns.h) \ $(wildcard include/config/cgroup/cpuacct.h) \ $(wildcard include/config/cgroup/device.h) \ $(wildcard include/config/cgroup/freezer.h) \ $(wildcard include/config/net/cls/cgroup.h) \ $(wildcard include/config/blk/cgroup.h) \ include/linux/node.h \ $(wildcard include/config/memory/hotplug/sparse.h) \ $(wildcard include/config/hugetlbfs.h) \ include/linux/sysdev.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ $(wildcard include/config/pm/ops.h) \ include/linux/xattr.h \ include/linux/exportfs.h \ include/linux/posix_acl.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/slab_def.h \ include/trace/events/kmem.h \ include/trace/events/gfpflags.h \ include/linux/kmalloc_sizes.h \ include/linux/generic_acl.h \ include/linux/mman.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/mman.h \ include/asm-generic/mman.h \ include/asm-generic/mman-common.h \ $(wildcard include/config/mmap/allow/uninitialized.h) \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/writeback.h \ include/linux/shmem_fs.h \ include/linux/mempolicy.h \ include/linux/blkdev.h \ $(wildcard include/config/blk/dev/bsg.h) \ $(wildcard include/config/bounce.h) \ include/linux/major.h \ include/linux/genhd.h \ $(wildcard include/config/fail/make/request.h) \ $(wildcard include/config/solaris/x86/partition.h) \ $(wildcard include/config/bsd/disklabel.h) \ $(wildcard include/config/unixware/disklabel.h) \ $(wildcard include/config/minix/subpartition.h) \ include/linux/device.h \ $(wildcard include/config/of.h) \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/devtmpfs.h) \ include/linux/ioport.h \ include/linux/klist.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/mempool.h \ include/linux/bio.h \ include/linux/ioprio.h \ include/linux/iocontext.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/io.h \ arch/arm/mach-tegra/include/mach/io.h \ $(wildcard include/config/resetlog.h) \ include/linux/bsg.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/scatterlist.h \ include/asm-generic/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ $(wildcard include/config/need/sg/dma/length.h) \ include/linux/elevator.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.h) \ $(wildcard include/config/fanotify/access/permissions.h) \ include/linux/audit.h \ $(wildcard include/config/change.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/msgbuf.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/in6.h \ include/linux/swapops.h \ include/linux/namei.h \ include/linux/ctype.h \ include/linux/migrate.h \ include/linux/seq_file.h \ include/linux/magic.h \ mm/shmem.o: $(deps_mm/shmem.o) $(deps_mm/shmem.o):
timmytim/honeybutter_kernel
mm/.shmem.o.cmd
bat
gpl-2.0
32,830
cmd_drivers/usb/core/usbcore.o := /home/flint/android/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-ld -EL -r -o drivers/usb/core/usbcore.o drivers/usb/core/usb.o drivers/usb/core/hub.o drivers/usb/core/hcd.o drivers/usb/core/urb.o drivers/usb/core/message.o drivers/usb/core/driver.o drivers/usb/core/config.o drivers/usb/core/file.o drivers/usb/core/buffer.o drivers/usb/core/sysfs.o drivers/usb/core/endpoint.o drivers/usb/core/devio.o drivers/usb/core/notify.o drivers/usb/core/generic.o drivers/usb/core/quirks.o drivers/usb/core/devices.o drivers/usb/core/hcd-pci.o drivers/usb/core/inode.o ; scripts/mod/modpost drivers/usb/core/usbcore.o
lindsaytheflint/stone
drivers/usb/core/.usbcore.o.cmd
bat
gpl-2.0
683
cmd_drivers/usb/storage/usb-storage.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o drivers/usb/storage/usb-storage.o drivers/usb/storage/scsiglue.o drivers/usb/storage/protocol.o drivers/usb/storage/transport.o drivers/usb/storage/usb.o drivers/usb/storage/initializers.o drivers/usb/storage/sierra_ms.o drivers/usb/storage/option_ms.o drivers/usb/storage/usual-tables.o
avareldalton85/rpi2-linux-rt
drivers/usb/storage/.usb-storage.o.cmd
bat
gpl-2.0
435
cmd_drivers/input/keyboard/built-in.o := arm-arago-linux-gnueabi-ld -EL -r -o drivers/input/keyboard/built-in.o drivers/input/keyboard/gpio_keys.o drivers/input/keyboard/gpio_keys_polled.o
calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1
drivers/input/keyboard/.built-in.o.cmd
bat
gpl-2.0
194
cmd_arch/arm/lib/memzero.o := /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.memzero.o.d -nostdinc -isystem /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s5pv210/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/memzero.o arch/arm/lib/memzero.S source_arch/arm/lib/memzero.o := arch/arm/lib/memzero.S deps_arch/arm/lib/memzero.o := \ /home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include/asm/linkage.h \ /home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include/asm/hwcap.h \ /home/ar/android/kernel/ICS/crespo/eugene/Nexus_S_ICS/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/lib/memzero.o: $(deps_arch/arm/lib/memzero.o) $(deps_arch/arm/lib/memzero.o):
kannu1994/crespo_kernel
arch/arm/lib/.memzero.o.cmd
bat
gpl-2.0
2,214
echo off css /cd ExternalAsm css /e host.cs copy %CSSCRIPT_DIR%\Lib\CSScriptLibrary.dll CSScriptLibrary.dll copy %CSSCRIPT_DIR%\Lib\CSSCodeProvider.dll CSSCodeProvider.dll copy %CSSCRIPT_DIR%\Lib\CSScriptLibrary.dll "VS2008 project\CSScriptLibrary.dll" copy %CSSCRIPT_DIR%\Lib\CSSCodeProvider.dll "VS2008 project\CSSCodeProvider.dll" host.exe pause
Martijn-vd-H/ChallengeManager
ChallengeManager/cs-script/samples/Hosting/Legacy Samples/CodeDOM/Referencing/runAsApp.cmd
bat
gpl-3.0
350
pushd %~dp0 "D:\Dropbox\RED\Python\Python36-32\python.exe" launcher.py --start pause
vjmac15/Lyilis
start_red.bat
bat
gpl-3.0
84
vendor\bin\phpdoc.bat -d GSB_Appli -t Doc PAUSE
Talim/GSB-GestionFrais
Ressources/generateDoc.bat
bat
gpl-3.0
47
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\HTMLWriter.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\HTMLWriter.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
codenamekt/HTMLWriter
Docs/make.bat
bat
gpl-3.0
6,718
@echo off set execpath=%~0 cd /D "%execpath%/.." echo In folder %CD%. echo Script file is %execpath%. echo Pulling chanages from Git ... cmd /C git pull echo. echo Ready to build: if not "%1"=="q" if not "%1"=="Q" pause if not "%VS150ENTCOMNTOOLS%"=="" set VSTools=%VS150ENTCOMNTOOLS%& set VSVer=2017& goto build if not "%VS150COMNTOOLS%"=="" set VSTools=%VS150COMNTOOLS%& set VSVer=2017& goto build echo Error: Visual Studio version not detected; could not build the project. Please build manually. goto :end :build call "%VSTools%VsDevCmd.bat" echo Visual Studio developer prompt environment was setup successfully! echo. cd /D "%execpath%/.." cmd /C msbuild CoreXT.sln /p:Configuration=Debug /clp:ErrorsOnly echo. echo Build process completed. :end if not "%1"=="q" if not "%1"=="Q" pause
rjamesnw/CoreXT
update.cmd
bat
lgpl-3.0
797
@if "%DEBUG%" == "" @echo off @rem ########################################################################## @rem @rem pokebot startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME%.. @rem Add default JVM options here. You can also use JAVA_OPTS and POKEBOT_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS= @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if "%ERRORLEVEL%" == "0" goto init echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto init echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :init @rem Get command-line arguments, handling Windows variants if not "%OS%" == "Windows_NT" goto win9xME_args :win9xME_args @rem Slurp the command line arguments. set CMD_LINE_ARGS= set _SKIP=2 :win9xME_args_slurp if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\lib\pokebot-0.0.1-SNAPSHOT.jar;%APP_HOME%\lib\rxjava-2.0.5.jar;%APP_HOME%\lib\PokeGOAPI-library-0.4.1.jar;%APP_HOME%\lib\reactive-streams-1.0.0.jar;%APP_HOME%\lib\gpsoauth-0.3.jar;%APP_HOME%\lib\okio-1.9.0.jar;%APP_HOME%\lib\moshi-1.2.0.jar;%APP_HOME%\lib\stream-1.1.1.jar;%APP_HOME%\lib\okhttp-3.4.1.jar;%APP_HOME%\lib\protobuf-java-3.0.0-beta-3.jar;%APP_HOME%\lib\rxjava-1.1.8.jar;%APP_HOME%\lib\lz4-1.3.0.jar;%APP_HOME%\lib\base64-2.3.9.jar @rem Execute pokebot "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %POKEBOT_OPTS% -classpath "%CLASSPATH%" com.github.pokegeeks.Main %CMD_LINE_ARGS% :end @rem End local scope for the variables with windows NT shell if "%ERRORLEVEL%"=="0" goto mainEnd :fail rem Set variable POKEBOT_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! if not "" == "%POKEBOT_EXIT_CONSOLE%" exit 1 exit /b 1 :mainEnd if "%OS%"=="Windows_NT" endlocal :omega
PokeGeeks/pokebot
build/scripts/pokebot.bat
bat
apache-2.0
2,629
@echo ±àÒëlog4net.Wrap @cd log4net.Wrap %SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe log4net.Wrap.sln /t:Rebuild /property:Configuration=Debug /l:FileLogger,Microsoft.Build.Engine;logfile=log4net.Wrap.log @echo Close notepad to continue... @if errorlevel 1 @notepad log4net.Wrap.log @cd ..\
qjdev/CS_Lib
Src/Library/Log/Log_Build_Debug.bat
bat
apache-2.0
306
@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 NT Service Install/Uninstall script rem rem Options rem install Install the service using Tomcat7 as service name. rem Service is installed using default settings. rem remove Remove the service from the System. rem rem name (optional) If the second argument is present it is considered rem to be new service name rem --------------------------------------------------------------------------- setlocal set "SELF=%~dp0%service.bat" rem Guess CATALINA_HOME if not defined set "CURRENT_DIR=%cd%" if not "%CATALINA_HOME%" == "" goto gotHome set "CATALINA_HOME=%cd%" if exist "%CATALINA_HOME%\bin\tomcat7.exe" goto okHome rem CD to the upper dir cd .. set "CATALINA_HOME=%cd%" :gotHome if exist "%CATALINA_HOME%\bin\tomcat7.exe" goto okHome echo The tomcat7.exe was not found... echo The CATALINA_HOME environment variable is not defined correctly. echo This environment variable is needed to run this program goto end :okHome rem Make sure prerequisite environment variables are set if not "%JAVA_HOME%" == "" goto gotJdkHome if not "%JRE_HOME%" == "" goto gotJreHome echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined echo Service will try to guess them from the registry. goto okJavaHome :gotJreHome if not exist "%JRE_HOME%\bin\java.exe" goto noJavaHome if not exist "%JRE_HOME%\bin\javaw.exe" goto noJavaHome goto okJavaHome :gotJdkHome if not exist "%JAVA_HOME%\jre\bin\java.exe" goto noJavaHome if not exist "%JAVA_HOME%\jre\bin\javaw.exe" goto noJavaHome if not exist "%JAVA_HOME%\bin\javac.exe" goto noJavaHome if not "%JRE_HOME%" == "" goto okJavaHome set "JRE_HOME=%JAVA_HOME%\jre" goto okJavaHome :noJavaHome echo The JAVA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program echo NB: JAVA_HOME should point to a JDK not a JRE goto end :okJavaHome if not "%CATALINA_BASE%" == "" goto gotBase set "CATALINA_BASE=%CATALINA_HOME%" :gotBase set "EXECUTABLE=%CATALINA_HOME%\bin\tomcat7.exe" rem Set default Service name set SERVICE_NAME=tomcat9090 set DISPLAYNAME=Apache Tomcat %SERVICE_NAME% if "x%1x" == "xx" goto displayUsage set SERVICE_CMD=%1 shift if "x%1x" == "xx" goto checkServiceCmd :checkUser if "x%1x" == "x/userx" goto runAsUser if "x%1x" == "x--userx" goto runAsUser set SERVICE_NAME=%1 set DISPLAYNAME=Apache %1 shift if "x%1x" == "xx" goto checkServiceCmd goto checkUser :runAsUser shift if "x%1x" == "xx" goto displayUsage set SERVICE_USER=%1 shift runas /env /savecred /user:%SERVICE_USER% "%COMSPEC% /K \"%SELF%\" %SERVICE_CMD% %SERVICE_NAME%" goto end :checkServiceCmd if /i %SERVICE_CMD% == install goto doInstall if /i %SERVICE_CMD% == remove goto doRemove if /i %SERVICE_CMD% == uninstall goto doRemove echo Unknown parameter "%SERVICE_CMD%" :displayUsage echo. echo Usage: service.bat install/remove [service_name] [/user username] goto end :doRemove rem Remove the service echo Removing the service '%SERVICE_NAME%' ... echo Using CATALINA_BASE: "%CATALINA_BASE%" "%EXECUTABLE%" //DS//%SERVICE_NAME% ^ --LogPath "%CATALINA_BASE%\logs" if not errorlevel 1 goto removed echo Failed removing '%SERVICE_NAME%' service goto end :removed echo The service '%SERVICE_NAME%' has been removed goto end :doInstall rem Install the service echo Installing the service '%SERVICE_NAME%' ... echo Using CATALINA_HOME: "%CATALINA_HOME%" echo Using CATALINA_BASE: "%CATALINA_BASE%" echo Using JAVA_HOME: "%JAVA_HOME%" echo Using JRE_HOME: "%JRE_HOME%" rem Try to use the server jvm set "JVM=%JRE_HOME%\bin\server\jvm.dll" if exist "%JVM%" goto foundJvm rem Try to use the client jvm set "JVM=%JRE_HOME%\bin\client\jvm.dll" if exist "%JVM%" goto foundJvm echo Warning: Neither 'server' nor 'client' jvm.dll was found at JRE_HOME. set JVM=auto :foundJvm echo Using JVM: "%JVM%" set "CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar;%CATALINA_BASE%\bin\tomcat-juli.jar" if not "%CATALINA_HOME%" == "%CATALINA_BASE%" set "CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\tomcat-juli.jar" "%EXECUTABLE%" //IS//%SERVICE_NAME% ^ --Description "Apache Tomcat Server" ^ --DisplayName "%DISPLAYNAME%" ^ --Install "%EXECUTABLE%" ^ --LogPath "%CATALINA_BASE%\logs" ^ --StdOutput auto ^ --StdError auto ^ --Classpath "%CLASSPATH%" ^ --Jvm "%JVM%" ^ --Startup auto ^ --StartMode jvm ^ --StopMode jvm ^ --StartPath "%CATALINA_HOME%" ^ --StopPath "%CATALINA_HOME%" ^ --StartClass org.apache.catalina.startup.Bootstrap ^ --StopClass org.apache.catalina.startup.Bootstrap ^ --StartParams start ^ --StopParams stop ^ --JvmOptions "-DdeploymentSystemName=xz;-Dcatalina.home=%CATALINA_HOME%;-Dcatalina.base=%CATALINA_BASE%;-Djava.endorsed.dirs=%CATALINA_HOME%\endorsed;-Djava.io.tmpdir=%CATALINA_BASE%\temp;-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager;-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties" ^ --JvmMs 512 ^ --JvmMx 1024 ^ ++JvmOptions "-XX:MaxPermSize=256M" if not errorlevel 1 goto installed echo Failed installing '%SERVICE_NAME%' service goto end :installed echo The service '%SERVICE_NAME%' has been installed. :end cd "%CURRENT_DIR%"
jior/cluster
tomcat2/bin/service.bat
bat
apache-2.0
6,179
@rem --------------------------------------------------------------------------------- @rem Copyright 2008 Microsoft Corporation. All rights reserved. @rem This is provided as sample to deploy the package using msdeploy.exe @rem For information about IIS Web Deploy technology, @rem please visit http://go.microsoft.com/?linkid=9278654 @rem Note: This batch file assumes the package and setparametsrs.xml are in the same folder with this file @rem --------------------------------------------------------------------------------- @if %_echo%!==! echo off setlocal @rem --------------------------------------------------------------------------------- @rem Please Make sure you have Web Deploy install in your machine. @rem Alternatively, you can explicit set the MsDeployPath to the location it is on your machine @rem set MSDeployPath="C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\" @rem --------------------------------------------------------------------------------- @rem --------------------------------------------------------------------------------- @rem if user does not set MsDeployPath environment variable, we will try to retrieve it from registry. @rem --------------------------------------------------------------------------------- if "%MSDeployPath%" == "" ( for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IIS Extensions\MSDeploy" /s ^| findstr -i "InstallPath"`) do ( if /I "%%h" == "InstallPath" ( if /I "%%i" == "REG_SZ" ( if not "%%j" == "" ( if "%%~dpj" == "%%j" ( set MSDeployPath=%%j )))))) @rem ------------------------------------------ @rem ------------------------------------------ if not exist "%MSDeployPath%msdeploy.exe" ( echo. msdeploy.exe is not found on this machine. Please install Web Deploy before execute the script. echo. Please visit http://go.microsoft.com/?linkid=9278654 goto :usage ) set RootPath=%~dp0 if /I "%_DeploySetParametersFile%" == "" ( set _DeploySetParametersFile=%RootPath%JQueryContactsChallenge.SetParameters.xml ) @rem ------------------------------------------ @rem ------------------------------------------ set _ArgTestDeploy= set _ArgDestinationType=auto set _ArgComputerNameWithQuote="" set _ArgUserNameWithQuote="" set _ArgPasswordWithQuote="" set _ArgEncryptPasswordWithQuote="" set _ArgIncludeAclsWithQuote="False" set _ArgAuthTypeWithQuote="" set _ArgtempAgentWithQuote="" set _ArgLocalIIS= set _ArgLocalIISVersion= set _HaveArgMSDeployAdditonalFlags= @rem --------------------------------------------------------------------------------- @rem Simple Parse the arguments @rem --------------------------------------------------------------------------------- :NextArgument set _ArgCurrent=%~1 set _ArgFlagFirst=%_ArgCurrent:~0,1% set _ArgFlag=%_ArgCurrent:~0,3% set _ArgValue=%_ArgCurrent:~3% if /I "%_ArgFlag%" == "" goto :GetStarted if /I "%_ArgFlag%" == "~0,3" goto :GetStarted if /I "%_ArgFlag%" == "/T" set _ArgTestDeploy=true&goto :ArgumentOK if /I "%_ArgFlag%" == "/Y" set _ArgTestDeploy=false&goto :ArgumentOK if /I "%_ArgFlag%" == "/L" set _ArgLocalIIS=true&goto :ArgumentOK if /I "%_ArgFlag%" == "/M:" set _ArgComputerNameWithQuote="%_ArgValue%"&goto :ArgumentOK if /I "%_ArgFlag%" == "/U:" set _ArgUserNameWithQuote="%_ArgValue%"&goto :ArgumentOK if /I "%_ArgFlag%" == "/P:" set _ArgPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK if /I "%_ArgFlag%" == "/E:" set _ArgEncryptPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK if /I "%_ArgFlag%" == "/I:" set _ArgIncludeAclsWithQuote="%_ArgValue%"&goto :ArgumentOK if /I "%_ArgFlag%" == "/A:" set _ArgAuthTypeWithQuote="%_ArgValue%"&goto :ArgumentOK if /I "%_ArgFlag%" == "/G:" set _ArgtempAgentWithQuote="%_ArgValue%"&goto :ArgumentOK @rem Any addition flags, pass through to the msdeploy if "%_HaveArgMSDeployAdditonalFlags%" == "" ( goto :Assign_ArgMsDeployAdditionalFlags ) set _ArgMsDeployAdditionalFlags=%_ArgMsDeployAdditionalFlags:&=^&% %_ArgCurrent:&=^&% set _HaveArgMSDeployAdditonalFlags=1 goto :ArgumentOK :Assign_ArgMsDeployAdditionalFlags set _ArgMsDeployAdditionalFlags=%_ArgCurrent:&=^&% set _HaveArgMSDeployAdditonalFlags=1 goto :ArgumentOK :ArgumentOK shift goto :NextArgument :GetStarted @rem ------------------------------------------ @rem ------------------------------------------ if /I "%_ArgTestDeploy%" == "" goto :usage if /I "%_ArgDestinationType%" == "" goto :usage set _Destination=%_ArgDestinationType% if not %_ArgComputerNameWithQuote% == "" set _Destination=%_Destination%,computerName=%_ArgComputerNameWithQuote% if not %_ArgUserNameWithQuote% == "" set _Destination=%_Destination%,userName=%_ArgUserNameWithQuote% if not %_ArgPasswordWithQuote% == "" set _Destination=%_Destination%,password=%_ArgPasswordWithQuote% if not %_ArgAuthTypeWithQuote% == "" set _Destination=%_Destination%,authtype=%_ArgAuthTypeWithQuote% if not %_ArgEncryptPasswordWithQuote% == "" set _Destination=%_Destination%,encryptPassword=%_ArgEncryptPasswordWithQuote% if not %_ArgIncludeAclsWithQuote% == "" set _Destination=%_Destination%,includeAcls=%_ArgIncludeAclsWithQuote% if not %_ArgtempAgentWithQuote% == "" set _Destination=%_Destination%,tempAgent=%_ArgtempAgentWithQuote% @rem ------------------------------------------ @rem ------------------------------------------ @rem --------------------------------------------------------------------------------- @rem add -whatif when -T is specified @rem --------------------------------------------------------------------------------- if /I "%_ArgTestDeploy%" NEQ "false" ( set _MsDeployAdditionalFlags=-whatif %_MsDeployAdditionalFlags% ) @rem ------------------------------------------ @rem ------------------------------------------ @rem --------------------------------------------------------------------------------- @rem add flags for IISExpress when -L is specified @rem --------------------------------------------------------------------------------- if /I "%_ArgLocalIIS%" == "true" ( call :SetIISExpressArguments ) if /I "%_ArgLocalIIS%" == "true" ( if not exist "%IISExpressPath%%IISExpressManifest%" ( echo. IISExpress is not found on this machine. Please install through Web Platform Installer before execute the script. echo. or remove /L flag echo. Please visit http://go.microsoft.com/?linkid=9278654 goto :usage ) if not exist "%IISExpressUserProfileDirectory%" ( echo. %IISExpressUserProfileDirectory% is not exists echo. IISExpress is found on the machine. But the user have run IISExpress at least once. echo. Please visit http://go.microsoft.com/?linkid=9278654 for detail goto :usage ) set _MsDeployAdditionalFlags=%_MsDeployAdditionalFlags% -appHostConfigDir:%IISExpressUserProfileDirectory% -WebServerDir:"%IISExpressPath%" -webServerManifest:"%IISExpressManifest%" ) @rem --------------------------------------------------------------------------------- @rem check the existence of the package file @rem --------------------------------------------------------------------------------- if not exist "%RootPath%JQueryContactsChallenge.zip" ( echo "%RootPath%JQueryContactsChallenge.zip" does not exist. echo This batch file relies on this deploy source file^(s^) in the same folder. goto :usage ) @rem --------------------------------------------- @rem --------------------------------------------- @rem --------------------------------------------------------------------------------- @rem Execute msdeploy.exe command line @rem --------------------------------------------------------------------------------- call :CheckParameterFile echo. Start executing msdeploy.exe echo ------------------------------------------------------- if not exist "%_DeploySetParametersFile%" ( set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%JQueryContactsChallenge.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension ) else ( set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%JQueryContactsChallenge.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -setParamFile:"%_DeploySetParametersFile%" ) if "%_HaveArgMSDeployAdditonalFlags%" == "" ( goto :MSDeployWithOutArgMsDeployAdditionalFlag ) goto :MSDeployWithArgMsDeployAdditionalFlag goto :eof @rem --------------------------------------------------------------------------------- @rem MSDeployWithArgMsDeployAdditionalFlag @rem --------------------------------------------------------------------------------- :MSDeployWithArgMsDeployAdditionalFlag echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&% %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&% goto :eof @rem --------------------------------------------------------------------------------- @rem MSDeployWithOutArgMsDeployAdditionalFlag @rem --------------------------------------------------------------------------------- :MSDeployWithOutArgMsDeployAdditionalFlag echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_MSDeployCommandline% %_MsDeployAdditionalFlags% goto :eof @rem --------------------------------------------------------------------------------- @rem Find and set IISExpress argument. @rem --------------------------------------------------------------------------------- :SetIISExpressArguments if "%IISExpressPath%" == "" ( for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do ( if /I "%%h" == "InstallPath" ( if /I "%%i" == "REG_SZ" ( if not "%%j" == "" ( if "%%~dpj" == "%%j" ( set IISExpressPath=%%j )))))) if "%IISExpressPath%" == "" ( for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do ( if /I "%%h" == "InstallPath" ( if /I "%%i" == "REG_SZ" ( if not "%%j" == "" ( if "%%~dpj" == "%%j" ( set IISExpressPath=%%j )))))) if "%PersonalDocumentFolder%" == "" ( for /F "usebackq tokens=2*" %%i in (`reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal`) do ( set PersonalDocumentFolder=%%j )) if "%IISExpressManifest%" == "" ( for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do ( if /I "%%h" == "Manifest" ( if /I "%%i" == "REG_SZ" ( if not "%%j" == "" ( set IISExpressManifest=%%j ))))) if "%IISExpressManifest%" == "" ( for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do ( if /I "%%h" == "Manifest" ( if /I "%%i" == "REG_SZ" ( if not "%%j" == "" ( set IISExpressManifest=%%j ))))) set IISExpressUserProfileDirectory="%PersonalDocumentFolder%\IISExpress\config" @rem --------------------------------------------- @rem --------------------------------------------- goto :eof @rem --------------------------------------------------------------------------------- @rem CheckParameterFile -- check if the package's setparamters.xml exists or not @rem --------------------------------------------------------------------------------- :CheckParameterFile if exist "%_DeploySetParametersFile%" ( echo SetParameters from: echo "%_DeploySetParametersFile%" echo You can change IIS Application Name, Physical path, connectionString echo or other deploy parameters in the above file. ) else ( echo SetParamterFiles does not exist in package location. echo Use package embedded defaultValue to deploy. ) echo ------------------------------------------------------- goto :eof @rem --------------------------------------------------------------------------------- @rem Usage @rem --------------------------------------------------------------------------------- :usage echo ========================================================= if not exist "%RootPath%JQueryContactsChallenge.deploy-readme.txt" ( echo Usage:%~nx0 [/T^|/Y] [/M:ComputerName] [/U:userName] [/P:password] [/G:tempAgent] [additional msdeploy flags ...] echo Required flags: echo /T Calls msdeploy.exe with the "-whatif" flag, which simulates deployment. echo /Y Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or destination server echo Optional flags: echo. By Default, this script deploy to the current machine where this script is invoked which will use current user credential without tempAgent. echo. Only pass these arguments when in advance scenario. echo /M: Msdeploy destination name of remote computer or proxy-URL. Default is local. echo /U: Msdeploy destination user name. echo /P: Msdeploy destination password. echo /G: Msdeploy destination tempAgent. True or False. Default is false. echo /A: specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic otherwise, the default authentication type is NTLM. echo /L: Deploy to Local IISExpress User Instance. echo.[additional msdeploy flags]: note: " is required for passing = through command line. echo "-skip:objectName=setAcl" "-skip:objectName=dbFullSql" echo.Alternative environment variable _MsDeployAdditionalFlags is also honored. echo. echo. Please make sure MSDeploy is installed in the box http://go.microsoft.com/?linkid=9278654 echo. echo In addition, you can change IIS Application Name, Physical path, echo connectionString and other deploy parameters in the following file: echo "%_DeploySetParametersFile%" echo. echo For more information about this batch file, visit http://go.microsoft.com/fwlink/?LinkID=183544 ) else ( start notepad "%RootPath%JQueryContactsChallenge.deploy-readme.txt" ) echo ========================================================= goto :eof
lerwine/JQueryContactsChallenge
Deployment/Web/JQueryContactsChallenge.deploy.cmd
bat
apache-2.0
14,477
@ECHO OFF REM REM Minimal script to compile the native resources REM REM Requirements REM -------------- REM o Java 1.8 JDK installed, needs JAVA_HOME set REM o cmake 3.0 + installed and available via PATH REM o nmake installed (comes e.g. with Visual Studio), call "vcvarsall.bat x64" before to activate 64bit tools REM :ENSURE_WORKING_DIRECTORY cd "%~dp0" :PREPARE_FOLDERS if not exist "%~dp0target" mkdir "%~dp0target" if not exist "%~dp0target\classes" mkdir "%~dp0target\classes" if not exist "%~dp0target\classes\lib" mkdir "%~dp0target\classes\lib" SET TARGET_CLASSES_PATH=%~dp0target\classes\lib\win32-x86-amd64 if not exist "%TARGET_CLASSES_PATH%" mkdir "%TARGET_CLASSES_PATH%" :PREPARE_MAKEFILES cd "%~dp0target" cmake -DCMAKE_BUILD_TYPE=RELEASE -G "NMake Makefiles" ..\..\..\ || goto ERROR :MAKE_ALL cd "%~dp0target" nmake || goto ERROR :COPY_DLL_FOR_MAVEN_PACKAGING copy /Y "%~dp0target\brotli.dll" "%TARGET_CLASSES_PATH%" || goto ERROR :ENSURE_WORKING_DIRECTORY cd %~dp0 goto :EOF :ERROR cd %~dp0 echo "*** An error occured. Please check log messages. ***" exit /b -1
MeteoGroup/jbrotli
jbrotli-native/win32-x86-amd64/build.bat
bat
apache-2.0
1,094
@setlocal @echo Creating a package of files for easy use of ETW/WPT. set UIforETW=%~dp0 set destdir=%~dp0etwpackage rmdir %destdir% /s/q @if exist %destdir%\bin\UIforETW.exe goto pleasecloseUIforETW @if exist %destdir%\bin\ETWProviders.dll goto pleasecloseSomething mkdir %destdir%\bin mkdir %destdir%\include mkdir %destdir%\lib mkdir %destdir%\third_party @rem Add VS tools to the path @call "%vs120comntools%vsvars32.bat" cd /d %UIforETW% cd UIforETW @rem Modify the UIforETW project to be statically linked and build that version @rem so that it will run without any extra install requirements. sed "s/UseOfMfc>Dynamic/UseOfMfc>Static/" <UIforETW.vcxproj >UIforETWStatic.vcxproj sed "s/UIforETW.vcxproj/UIforETWStatic.vcxproj/" <UIforETW.sln >UIforETWStatic.sln rmdir Release /s/q rmdir x64\Release /s/q devenv /rebuild "release|Win32" UIforETWStatic.sln devenv /rebuild "release|x64" UIforETWStatic.sln @rem Clean up after building the static version. rmdir Release /s/q rmdir x64\Release /s/q del UIforETWStatic.vcxproj del UIforETWStatic.sln xcopy %UIforETW%\bin %destdir%\bin /s del %destdir%\bin\*.lastcodeanalysissucceeded del %destdir%\bin\*.pdb xcopy %UIforETW%\include %destdir%\include /s xcopy %UIforETW%\lib %destdir%\lib /s xcopy %UIforETW%\third_party %destdir%\third_party /s del %destdir%\bin\.gitignore del %destdir%\bin\UIforETW*_dev*.* @rem Get the destinations to exist so that the xcopy proceeds without a question. echo >%destdir%\bin\UIforETW.exe echo >%destdir%\bin\UIforETW32.exe xcopy %UIforETW%\bin\UIforETWStatic_devrel32.exe %destdir%\bin\UIforETW32.exe /y xcopy %UIforETW%\bin\UIforETWStatic_devrel.exe %destdir%\bin\UIforETW.exe /y xcopy %destdir%\bin\UIforETW*.exe %~dp0bin /y python %UIforETW%make_zip_file.py %UIforETW%etwpackage.zip %destdir% @echo Now upload the new etwpackage.zip @exit /b :pleasecloseUIforETW @echo UIforETW is running. Please close it and try again. @exit /b :pleasecloseSomething @echo Something is running with ETWProviders.dll loaded. Please close it and try again. @exit /b
OSVR/UIforETW
package_etw.bat
bat
apache-2.0
2,109
@echo off echo Making ImagesTests jar... jar cvmf mainClass.txt ImagesTests.jar *.class Images echo. echo Indexing jar... jar i ImagesTests.jar echo done
Kukanani/G-Force
resources/Chapter 4 Code/makeJar.bat
bat
apache-2.0
156
@echo off rem ------------------------------------------------------------- rem Yii command line script for Windows. rem This is the bootstrap script for running yiic on Windows. rem ------------------------------------------------------------- @setlocal set BIN_PATH=%~dp0 if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe "%PHP_COMMAND%" "%BIN_PATH%yiic.php" %* @endlocal
jessesiu/gigadb
protected/yiic.bat
bat
bsd-2-clause
397
rem ************************************************************************ rem * %QTDIR%ders.bat - generated by gendsp.pl rem * set msvc=%1 copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\LegendKit.h %COINDIR%\include\SmallChange\nodekits\LegendKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SoFEMKit.h %COINDIR%\include\SmallChange\nodekits\SoFEMKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmTooltipKit.h %COINDIR%\include\SmallChange\nodekits\SmTooltipKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmWellLogKit.h %COINDIR%\include\SmallChange\nodekits\SmWellLogKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmCameraControlKit.h %COINDIR%\include\SmallChange\nodekits\SmCameraControlKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmGeoMarkerKit.h %COINDIR%\include\SmallChange\nodekits\SmGeoMarkerKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmNormalsKit.h %COINDIR%\include\SmallChange\nodekits\SmNormalsKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmAxisDisplayKit.h %COINDIR%\include\SmallChange\nodekits\SmAxisDisplayKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmAxisKit.h %COINDIR%\include\SmallChange\nodekits\SmAxisKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmAnnotationWall.h %COINDIR%\include\SmallChange\nodekits\SmAnnotationWall.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmAnnotationAxis.h %COINDIR%\include\SmallChange\nodekits\SmAnnotationAxis.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmPieChart.h %COINDIR%\include\SmallChange\nodekits\SmPieChart.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmPopupMenuKit.h %COINDIR%\include\SmallChange\nodekits\SmPopupMenuKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmDynamicObjectKit.h %COINDIR%\include\SmallChange\nodekits\SmDynamicObjectKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodekits\SmTrackPointKit.h %COINDIR%\include\SmallChange\nodekits\SmTrackPointKit.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\AutoFile.h %COINDIR%\include\SmallChange\nodes\AutoFile.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\ViewportRegion.h %COINDIR%\include\SmallChange\nodes\ViewportRegion.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmDepthBuffer.h %COINDIR%\include\SmallChange\nodes\SmDepthBuffer.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\Coinboard.h %COINDIR%\include\SmallChange\nodes\Coinboard.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmSwitchboard.h %COINDIR%\include\SmallChange\nodes\SmSwitchboard.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmSwitchboardOperator.h %COINDIR%\include\SmallChange\nodes\SmSwitchboardOperator.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\PickSwitch.h %COINDIR%\include\SmallChange\nodes\PickSwitch.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\PickCallback.h %COINDIR%\include\SmallChange\nodes\PickCallback.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SkyDome.h %COINDIR%\include\SmallChange\nodes\SkyDome.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\CoinEnvironment.h %COINDIR%\include\SmallChange\nodes\CoinEnvironment.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\ShapeScale.h %COINDIR%\include\SmallChange\nodes\ShapeScale.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SoText2Set.h %COINDIR%\include\SmallChange\nodes\SoText2Set.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SoTCBCurve.h %COINDIR%\include\SmallChange\nodes\SoTCBCurve.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SoPointCloud.h %COINDIR%\include\SmallChange\nodes\SoPointCloud.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SoLODExtrusion.h %COINDIR%\include\SmallChange\nodes\SoLODExtrusion.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\UTMCamera.h %COINDIR%\include\SmallChange\nodes\UTMCamera.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\UTMPosition.h %COINDIR%\include\SmallChange\nodes\UTMPosition.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\UTMCoordinate.h %COINDIR%\include\SmallChange\nodes\UTMCoordinate.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmTooltip.h %COINDIR%\include\SmallChange\nodes\SmTooltip.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmHQSphere.h %COINDIR%\include\SmallChange\nodes\SmHQSphere.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmBillboardClipPlane.h %COINDIR%\include\SmallChange\nodes\SmBillboardClipPlane.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmHeadlight.h %COINDIR%\include\SmallChange\nodes\SmHeadlight.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmVertexArrayShape.h %COINDIR%\include\SmallChange\nodes\SmVertexArrayShape.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmCoordinateSystem.h %COINDIR%\include\SmallChange\nodes\SmCoordinateSystem.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmMarkerSet.h %COINDIR%\include\SmallChange\nodes\SmMarkerSet.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmViewpointWrapper.h %COINDIR%\include\SmallChange\nodes\SmViewpointWrapper.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmShadowText2.h %COINDIR%\include\SmallChange\nodes\SmShadowText2.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmTrack.h %COINDIR%\include\SmallChange\nodes\SmTrack.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmLazyFile.h %COINDIR%\include\SmallChange\nodes\SmLazyFile.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmTextureText2.h %COINDIR%\include\SmallChange\nodes\SmTextureText2.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmTextureText2Collector.h %COINDIR%\include\SmallChange\nodes\SmTextureText2Collector.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\nodes\SmTextureFont.h %COINDIR%\include\SmallChange\nodes\SmTextureFont.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\elements\UTMElement.h %COINDIR%\include\SmallChange\elements\UTMElement.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\elements\GLDepthBufferElement.h %COINDIR%\include\SmallChange\elements\GLDepthBufferElement.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\engines\Rot2Heading.h %COINDIR%\include\SmallChange\engines\Rot2Heading.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\engines\CubicSplineEngine.h %COINDIR%\include\SmallChange\engines\CubicSplineEngine.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\engines\SmInverseRotation.h %COINDIR%\include\SmallChange\engines\SmInverseRotation.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\actions\SoGenerateSceneGraphAction.h %COINDIR%\include\SmallChange\actions\SoGenerateSceneGraphAction.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\actions\SoTweakAction.h %COINDIR%\include\SmallChange\actions\SoTweakAction.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\actions\SmToVertexArrayShapeAction.h %COINDIR%\include\SmallChange\actions\SmToVertexArrayShapeAction.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\misc\Init.h %COINDIR%\include\SmallChange\misc\Init.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\misc\SbCubicSpline.h %COINDIR%\include\SmallChange\misc\SbCubicSpline.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\misc\SmSceneManager.h %COINDIR%\include\SmallChange\misc\SmSceneManager.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\misc\SmEnvelope.h %COINDIR%\include\SmallChange\misc\SmEnvelope.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\draggers\SmRangeTranslate1Dragger.h %COINDIR%\include\SmallChange\draggers\SmRangeTranslate1Dragger.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\eventhandlers\SmEventHandler.h %COINDIR%\include\SmallChange\eventhandlers\SmEventHandler.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\eventhandlers\SmExaminerEventHandler.h %COINDIR%\include\SmallChange\eventhandlers\SmExaminerEventHandler.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\eventhandlers\SmHelicopterEventHandler.h %COINDIR%\include\SmallChange\eventhandlers\SmHelicopterEventHandler.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\eventhandlers\SmSphereEventHandler.h %COINDIR%\include\SmallChange\eventhandlers\SmSphereEventHandler.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\eventhandlers\SmPanEventHandler.h %COINDIR%\include\SmallChange\eventhandlers\SmPanEventHandler.h >nul: copy /Y ..\%msvc%\lib\SmallChange\basic.h %COINDIR%\include\SmallChange\basic.h >nul: copy /Y ..\%msvc%\..\..\lib\SmallChange\SmallChange.h %COINDIR%\include\SmallChange\SmallChange.h >nul:
Alexpux/SmallChange
build/misc/install-headers.bat
bat
bsd-3-clause
8,531
@echo off if not exist build mkdir build cd build if not exist "Visual Studio 12 2013 Win64" mkdir "Visual Studio 12 2013 Win64" cd "Visual Studio 12 2013 Win64" call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64 cmake-gui.exe ..\.. if exist docgl.sln start /MAX Devenv docgl.sln cd ../..
Qlex42/docgl
Build Visual Studio 12 2013 Win64.bat
bat
bsd-3-clause
327
@java -mx256m -jar flow-cytometry.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
uw-loci/flow-cytometry
dist/mpfc.bat
bat
bsd-3-clause
65
@echo off REM *************************************************************************** REM package-nightly.cmd REM --------------------- REM begin : January 2011 REM copyright : (C) 2011 by Juergen E. Fischer REM email : jef at norbit dot de REM *************************************************************************** REM * * REM * This program is free software; you can redistribute it and/or modify * REM * it under the terms of the GNU General Public License as published by * REM * the Free Software Foundation; either version 2 of the License, or * REM * (at your option) any later version. * REM * * REM *************************************************************************** set VERSION=%1 set PACKAGE=%2 set PACKAGENAME=%3 set ARCH=%4 if "%VERSION%"=="" goto usage if "%PACKAGE%"=="" goto usage if "%PACKAGENAME%"=="" goto usage if "%ARCH%"=="" goto usage set BUILDDIR=%CD%\build-nightly-%ARCH% if "%OSGEO4W_ROOT%"=="" ( if "%ARCH%"=="x86" ( set OSGEO4W_ROOT=C:\OSGeo4W ) else ( set OSGEO4W_ROOT=C:\OSGeo4W64 ) ) if not exist "%BUILDDIR%" mkdir %BUILDDIR% if not exist "%BUILDDIR%" (echo could not create build directory %BUILDDIR% & goto error) if not exist "%OSGEO4W_ROOT%\bin\o4w_env.bat" (echo o4w_env.bat not found & goto error) call "%OSGEO4W_ROOT%\bin\o4w_env.bat" set O4W_ROOT=%OSGEO4W_ROOT:\=/% set LIB_DIR=%O4W_ROOT% if not "%PROGRAMFILES(X86)%"=="" set PF86=%PROGRAMFILES(X86)% if "%PF86%"=="" set PF86=%PROGRAMFILES% if "%PF86%"=="" (echo PROGRAMFILES not set & goto error) if "%ARCH%"=="x86" goto devenv_x86 goto devenv_x86_64 :devenv_x86 set GRASS_VERSION=6.4.4 call "%PF86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 if exist "c:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" call "c:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" /x86 /Release path %path%;%PF86%\Microsoft Visual Studio 10.0\VC\bin set CMAKE_OPT=^ -G "Visual Studio 10" ^ -D SIP_BINARY_PATH=%O4W_ROOT%/apps/Python27/sip.exe ^ -D QWT_LIBRARY=%O4W_ROOT%/lib/qwt.lib ^ -D CMAKE_CXX_FLAGS_RELWITHDEBINFO="/MD /ZI /MP /Od /D NDEBUG /D QGISDEBUG" ^ -D CMAKE_PDB_OUTPUT_DIRECTORY_RELWITHDEBINFO=%BUILDDIR%\apps\%PACKAGENAME%\pdb goto devenv :devenv_x86_64 set GRASS_VERSION=6.4.3 call "%PF86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" amd64 if exist "c:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" call "c:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" /x64 /Release path %path%;%PF86%\Microsoft Visual Studio 10.0\VC\bin set SETUPAPI_LIBRARY=%PF86%\Microsoft SDKs\Windows\v7.0A\Lib\x64\SetupAPI.Lib if not exist "%SETUPAPI_LIBRARY%" set SETUPAPI_LIBRARY=%PROGRAMFILES%\Microsoft SDKs\Windows\v7.1\Lib\x64\SetupAPI.lib if not exist "%SETUPAPI_LIBRARY%" (echo SETUPAPI_LIBRARY not found & goto error) set CMAKE_OPT=^ -G "Visual Studio 10 Win64" ^ -D SPATIALINDEX_LIBRARY=%O4W_ROOT%/lib/spatialindex-64.lib ^ -D SIP_BINARY_PATH=%O4W_ROOT%/bin/sip.exe ^ -D QWT_LIBRARY=%O4W_ROOT%/lib/qwt5.lib ^ -D CMAKE_CXX_FLAGS_RELWITHDEBINFO="/MD /Zi /MP /Od /D NDEBUG /D QGISDEBUG" ^ -D CMAKE_PDB_OUTPUT_DIRECTORY_RELWITHDEBINFO=%BUILDDIR%\apps\%PACKAGENAME%\pdb ^ -D SETUPAPI_LIBRARY="%SETUPAPI_LIBRARY%" ^ -D CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS=TRUE :devenv set PYTHONPATH= path %PF86%\CMake\bin;%PF86%\CMake 2.8\bin;%PATH%;c:\cygwin\bin PROMPT qgis%VERSION%$g set BUILDCONF=RelWithDebInfo cd ..\.. set SRCDIR=%CD% if "%BUILDDIR:~1,1%"==":" %BUILDDIR:~0,2% cd %BUILDDIR% if exist repackage goto package if not exist build.log goto build REM REM try renaming the logfile to see if it's locked REM if exist build.tmp del build.tmp if exist build.tmp (echo could not remove build.tmp & goto error) ren build.log build.tmp if exist build.log goto locked if not exist build.tmp goto locked ren build.tmp build.log if exist build.tmp goto locked if not exist build.log goto locked goto build :locked echo Logfile locked if exist build.tmp del build.tmp goto error :build echo BEGIN: %DATE% %TIME% set >buildenv.log if exist qgsversion.h del qgsversion.h if exist CMakeCache.txt goto skipcmake echo CMAKE: %DATE% %TIME% if errorlevel 1 goto error set LIB=%LIB%;%OSGEO4W_ROOT%\lib set INCLUDE=%INCLUDE%;%OSGEO4W_ROOT%\include set GRASS_PREFIX=%O4W_ROOT%/apps/grass/grass-%GRASS_VERSION% cmake %CMAKE_OPT% ^ -D SITE="qgis.org" ^ -D BUILDNAME="%PACKAGENAME%-%VERSION%-Nightly-VC10-%ARCH%" ^ -D PEDANTIC=TRUE ^ -D WITH_QSPATIALITE=TRUE ^ -D WITH_SERVER=TRUE ^ -D SERVER_SKIP_ECW=TRUE ^ -D WITH_ASTYLE=TRUE ^ -D WITH_GLOBE=TRUE ^ -D WITH_TOUCH=TRUE ^ -D WITH_ORACLE=TRUE ^ -D WITH_GRASS=TRUE ^ -D WITH_CUSTOM_WIDGETS=TRUE ^ -D CMAKE_BUILD_TYPE=%BUILDCONF% ^ -D CMAKE_CONFIGURATION_TYPES=%BUILDCONF% ^ -D GEOS_LIBRARY=%O4W_ROOT%/lib/geos_c.lib ^ -D SQLITE3_LIBRARY=%O4W_ROOT%/lib/sqlite3_i.lib ^ -D SPATIALITE_LIBRARY=%O4W_ROOT%/lib/spatialite_i.lib ^ -D PYTHON_EXECUTABLE=%O4W_ROOT%/bin/python.exe ^ -D PYTHON_INCLUDE_PATH=%O4W_ROOT%/apps/Python27/include ^ -D PYTHON_LIBRARY=%O4W_ROOT%/apps/Python27/libs/python27.lib ^ -D QT_BINARY_DIR=%O4W_ROOT%/bin ^ -D QT_LIBRARY_DIR=%O4W_ROOT%/lib ^ -D QT_HEADERS_DIR=%O4W_ROOT%/include/qt4 ^ -D QWT_INCLUDE_DIR=%O4W_ROOT%/include/qwt ^ -D CMAKE_INSTALL_PREFIX=%O4W_ROOT%/apps/%PACKAGENAME% ^ -D FCGI_INCLUDE_DIR=%O4W_ROOT%/include ^ -D FCGI_LIBRARY=%O4W_ROOT%/lib/libfcgi.lib ^ -D WITH_INTERNAL_JINJA2=FALSE ^ -D WITH_INTERNAL_MARKUPSAFE=FALSE ^ -D WITH_INTERNAL_PYGMENTS=FALSE ^ -D WITH_INTERNAL_DATEUTIL=FALSE ^ -D WITH_INTERNAL_PYTZ=FALSE ^ -D WITH_INTERNAL_SIX=FALSE ^ %SRCDIR% if errorlevel 1 (echo cmake failed & goto error) :skipcmake if exist noclean (echo skip clean & goto skipclean) echo CLEAN: %DATE% %TIME% cmake --build %BUILDDIR% --target clean --config %BUILDCONF% if errorlevel 1 (echo clean failed & goto error) :skipclean echo ALL_BUILD: %DATE% %TIME% cmake --build %BUILDDIR% --config %BUILDCONF% if errorlevel 1 cmake --build %BUILDDIR% --config %BUILDCONF% if errorlevel 1 (echo build failed twice & goto error) if not exist ..\skiptests ( echo RUN_TESTS: %DATE% %TIME% cmake --build %BUILDDIR% --target Nightly --config %BUILDCONF% if errorlevel 1 echo TESTS WERE NOT SUCCESSFUL. ) set PKGDIR=%OSGEO4W_ROOT%\apps\%PACKAGENAME% if exist %PKGDIR% ( echo REMOVE: %DATE% %TIME% rmdir /s /q %PKGDIR% ) echo INSTALL: %DATE% %TIME% cmake --build %BUILDDIR% --target INSTALL --config %BUILDCONF% if errorlevel 1 (echo INSTALL failed & goto error) :package echo PACKAGE: %DATE% %TIME% cd .. sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' postinstall-dev.bat >%OSGEO4W_ROOT%\etc\postinstall\%PACKAGENAME%.bat if errorlevel 1 (echo creation of desktop postinstall failed & goto error) sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' preremove-dev.bat >%OSGEO4W_ROOT%\etc\preremove\%PACKAGENAME%.bat if errorlevel 1 (echo creation of desktop preremove failed & goto error) sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' qgis.bat.tmpl >%OSGEO4W_ROOT%\bin\%PACKAGENAME%.bat.tmpl if errorlevel 1 (echo creation of desktop template failed & goto error) sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' designer-qgis.bat.tmpl >%OSGEO4W_ROOT%\bin\designer-%PACKAGENAME%.bat.tmpl if errorlevel 1 (echo creation of designer template failed & goto error) sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' browser.bat.tmpl >%OSGEO4W_ROOT%\bin\%PACKAGENAME%-browser.bat.tmpl if errorlevel 1 (echo creation of browser template & goto error) sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' qgis.reg.tmpl >%PKGDIR%\bin\qgis.reg.tmpl if errorlevel 1 (echo creation of registry template & goto error) REM sed -e 's/%OSGEO4W_ROOT:\=\\\\\\\\%/@osgeo4w@/' %PKGDIR%\python\qgis\qgisconfig.py >%PKGDIR%\python\qgis\qgisconfig.py.tmpl REM if errorlevel 1 (echo creation of qgisconfig.py.tmpl failed & goto error) REM del %PKGDIR%\python\qgis\qgisconfig.py touch exclude move %PKGDIR%\bin\qgis.exe %OSGEO4W_ROOT%\bin\%PACKAGENAME%-bin.exe if errorlevel 1 (echo move of desktop executable failed & goto error) move %PKGDIR%\bin\qbrowser.exe %OSGEO4W_ROOT%\bin\%PACKAGENAME%-browser-bin.exe if errorlevel 1 (echo move of browser executable failed & goto error) if not exist %PKGDIR%\qtplugins\sqldrivers mkdir %PKGDIR%\qtplugins\sqldrivers move %OSGEO4W_ROOT%\apps\qt4\plugins\sqldrivers\qsqlocispatial.dll %PKGDIR%\qtplugins\sqldrivers if errorlevel 1 (echo move of oci sqldriver failed & goto error) move %OSGEO4W_ROOT%\apps\qt4\plugins\sqldrivers\qsqlspatialite.dll %PKGDIR%\qtplugins\sqldrivers if errorlevel 1 (echo move of spatialite sqldriver failed & goto error) if not exist %PKGDIR%\qtplugins\designer mkdir %PKGDIR%\qtplugins\designer move %OSGEO4W_ROOT%\apps\qt4\plugins\designer\qgis_customwidgets.dll %PKGDIR%\qtplugins\designer if errorlevel 1 (echo move of customwidgets failed & goto error) if not exist %PKGDIR%\python\PyQt4\uic\widget-plugins mkdir %PKGDIR%\python\PyQt4\uic\widget-plugins move %OSGEO4W_ROOT%\apps\Python27\Lib\site-packages\PyQt4\uic\widget-plugins\qgis_customwidgets.py %PKGDIR%\python\PyQt4\uic\widget-plugins if errorlevel 1 (echo move of customwidgets binding failed & goto error) if not exist %ARCH%\release\qgis\%PACKAGENAME% mkdir %ARCH%\release\qgis\%PACKAGENAME% tar -C %OSGEO4W_ROOT% -cjf %ARCH%/release/qgis/%PACKAGENAME%/%PACKAGENAME%-%VERSION%-%PACKAGE%.tar.bz2 ^ --exclude-from exclude ^ --exclude "*.pyc" ^ apps/%PACKAGENAME% ^ bin/%PACKAGENAME%-bin.exe ^ bin/%PACKAGENAME%-browser-bin.exe ^ bin/%PACKAGENAME%.bat.tmpl ^ bin/%PACKAGENAME%-browser.bat.tmpl ^ bin/designer-%PACKAGENAME%.bat.tmpl ^ etc/postinstall/%PACKAGENAME%.bat ^ etc/preremove/%PACKAGENAME%.bat if errorlevel 1 (echo tar failed & goto error) if not exist %ARCH%\release\qgis\%PACKAGENAME%-pdb mkdir %ARCH%\release\qgis\%PACKAGENAME%-pdb tar -C %BUILDDIR% -cjf %ARCH%/release/qgis/%PACKAGENAME%-pdb/%PACKAGENAME%-pdb-%VERSION%-%PACKAGE%.tar.bz2 ^ apps/%PACKAGENAME%/pdb if errorlevel 1 (echo tar failed & goto error) goto end :usage echo usage: %0 version package packagename arch echo sample: %0 2.1.0 38 qgis-dev x86_64 exit :error echo BUILD ERROR %ERRORLEVEL%: %DATE% %TIME% echo BUILD ERROR %ERRORLEVEL%: %DATE% %TIME% if exist %PACKAGENAME%-%VERSION%-%PACKAGE%.tar.bz2 del %PACKAGENAME%-%VERSION%-%PACKAGE%.tar.bz2 :end echo FINISHED: %DATE% %TIME%
herow/planning_qgis
ms-windows/osgeo4w/package-nightly.cmd
bat
gpl-2.0
11,146
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\browser-sync\dist\bin.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\browser-sync\dist\bin.js" %* )
janewilson90/auchtermuchty
node_modules/.bin/browser-sync.cmd
bat
gpl-2.0
190
cmd_networking/udhcp/lib.a := rm -f networking/udhcp/lib.a; ar rcs networking/udhcp/lib.a networking/udhcp/arpping.o networking/udhcp/common.o networking/udhcp/dhcpc.o networking/udhcp/dhcpd.o networking/udhcp/dhcprelay.o networking/udhcp/domain_codec.o networking/udhcp/dumpleases.o networking/udhcp/files.o networking/udhcp/leases.o networking/udhcp/packet.o networking/udhcp/signalpipe.o networking/udhcp/socket.o networking/udhcp/static_leases.o
muthumani2/Muthu-busybox
networking/udhcp/.lib.a.cmd
bat
gpl-2.0
451
@echo off echo [CMMI] Production Facade stage Interface API documentation. echo [Author] lingang.chen@gmail.com set MVN=mvn set MAVEN_OPTS=%MAVEN_OPTS% -XX:MaxPermSize=128m echo [Step 1] Into Facade stage path. cd .. cd modules\common\service call %MVN% clean site:site -Prefresh-synopsis goto end :end pause
chenlg/jmms
tools/apidoc.bat
bat
apache-2.0
317
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Eta.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Eta.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
alexander-at-github/eta
docs/make.bat
bat
bsd-3-clause
7,735
@echo off SET TMP=C:\Temp SET TEMP=C:\Temp SET UVEXE=C:\Keil\UV4\UV4.EXE echo. echo Building DSP Library for Cortex-M0 Little Endian %UVEXE% -rb arm_cortexM0x_math.uvproj -t"DSP_Lib CM0 LE" -o"DSP_Lib CM0 LE.txt" -j0 echo. echo Building DSP Library for Cortex-M3 Little Endian %UVEXE% -rb arm_cortexM3x_math.uvproj -t"DSP_Lib CM3 LE" -o"DSP_Lib CM3 LE.txt" -j0 echo. echo Building DSP Library for Cortex-M4 Little Endian %UVEXE% -rb arm_cortexM4x_math.uvproj -t"DSP_Lib CM4 LE" -o"DSP_Lib CM4 LE.txt" -j0 echo. echo Building DSP Library for Cortex-M4 with FPU Little Endian %UVEXE% -rb arm_cortexM4x_math.uvproj -t"DSP_Lib CM4 LE FPU" -o"DSP_Lib CM4 LE FPU.txt" -j0
jmwilkosz/LAKITU_EvvGC
Libraries/CMSIS/DSP_Lib/Source/GCC/arm_cortexMx_math_Build.bat
bat
gpl-2.0
680
@echo off SETLOCAL SET ARGC=0 FOR %%x IN (%*) DO SET /A ARGC+=1 IF %ARGC% NEQ 2 ( echo Usage: %0 BindingIdInCamelCase BindingIdInLowerCase exit /B 1 ) call mvn -s ../archetype-settings.xml archetype:generate -N -DarchetypeGroupId=org.eclipse.smarthome.archetype -DarchetypeArtifactId=org.eclipse.smarthome.archetype.binding -DarchetypeVersion=0.10.0-SNAPSHOT -DgroupId=org.openhab.binding -DartifactId=org.openhab.binding.%2 -Dpackage=org.openhab.binding.%2 -Dversion=2.3.0-SNAPSHOT -DbindingId=%2 -DbindingIdCamelCase=%1 -DvendorName=openHAB -Dnamespace=org.openhab COPY ..\..\src\etc\about.html org.openhab.binding.%2%\ ENDLOCAL
Jamstah/openhab2-addons
addons/binding/create_openhab_binding_skeleton.cmd
bat
epl-1.0
658
@echo off REM 1. Run doxygen doxygen.exe doxygen.cfg REM 2. Do some modificatios of the output perl fix.pl
svn2github/MagicSetEditor
tools/doc/doxygen.bat
bat
gpl-2.0
118
@echo off :: Variable SET ARCH=%1 SET TYPE=%2 :: Default IF [%1] == [] SET ARCH=64 IF [%2] == [] SET TYPE=static :: Variable IF "%TYPE%" == "static" ( SET QMAKE=C:\Qt\%QT_VERSION%\msvc2017_%ARCH%_static\bin\qmake ) ELSE IF "%TYPE%" == "ltcg" ( SET QMAKE=C:\Qt\%QT_VERSION%\msvc2017_%ARCH%_ltcg\bin\qmake ) ELSE ( IF "%ARCH%" == "32" ( SET QMAKE=C:\Qt\%QT_VERSION%\msvc2017\bin\qmake ) ELSE ( SET QMAKE=C:\Qt\%QT_VERSION%\msvc2017_%ARCH%\bin\qmake ) ) :start echo %QMAKE% call %QMAKE%
demonsaw/Code
ds4/code/4_router_cli/win.bat
bat
mit
500
@echo off rem ib.cmd - Invoke-Build helper for cmd.exe rem ib.cmd must be in the same directory as Invoke-Build.ps1 if "%1"=="?" goto list if "%1"=="/?" goto help PowerShell.exe -NoProfile -ExecutionPolicy Bypass "& '%~dp0Invoke-Build.ps1' %*" exit /B %errorlevel% :list PowerShell.exe -NoProfile -ExecutionPolicy Bypass "& '%~dp0Invoke-Build.ps1' %* | Format-Table -AutoSize" exit :help PowerShell.exe -NoProfile -ExecutionPolicy Bypass "help -Full '%~dp0Invoke-Build.ps1'" exit
agileharbor/networkSolutionsAccess
tools/Invoke-Build/ib.cmd
bat
bsd-3-clause
485
@echo off REM $Id$ REM -- -------------------------------------------------------------- REM -- If you are having problems running "NMAKE", you probably REM -- haven't configured the proper paths. Uncomment the following REM -- line to help configure this properly. You will need to update REM -- the line to reflect whichever drive/path you specified when REM -- installing Visual C++ 6.0. REM -- -------------------------------------------------------------- REM call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\vcvars32.bat" DEL snort___Win32_MySQL_Release\snort.exe DEL snort___Win32_SQLServer_Release\snort.exe DEL snort___Win32_Oracle_Release\snort.exe NMAKE /f "snort.mak" CFG="snort - Win32 MySQL Release" NMAKE /f "snort.mak" CFG="snort - Win32 SQLServer Release" NMAKE /f "snort.mak" CFG="snort - Win32 Oracle Release"
rhuitl/uClinux
user/snort/src/win32/WIN32-Prj/build_releases.bat
bat
gpl-2.0
870
@echo off REM src/tools/msvc/pgbison.bat REM all the logic for this now belongs in pgbison.pl. This file really REM only exists so you don't have to type "perl src/tools/msvc/pgbison.pl" REM Resist any temptation to add any logic here. @perl src/tools/msvc/pgbison.pl %*
ovr/postgres-xl
src/tools/msvc/pgbison.bat
bat
mpl-2.0
272
ng build --prod alaska-ui && ng serve
simosabba/alaska
src/angular/alaska-ui/build-run.bat
bat
mit
38
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Geogotchi.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Geogotchi.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
NarrativeTeam/geogotchi
docs/make.bat
bat
mit
5,111
nuget pack Kassandra.Core\Kassandra.Core.csproj -Prop Configuration=Release nuget pack Kassandra.Connector.Sql\Kassandra.Connector.Sql.csproj -Prop Configuration=Release -IncludeReferencedProjects
Zwedze/Kassandra
Kassandra/nuget_pack.bat
bat
mit
196
for /f "delims=;" %%a in ('type CON') do %*
mattman00000/forclip
forclip.bat
bat
mit
44
powershell -Command "Invoke-WebRequest http://www.dependencywalker.com/depends22_x64.zip -OutFile depends.zip" powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('depends.zip', 'DependencyWalker\x64'); }" del depends.zip powershell -Command "Invoke-WebRequest http://www.dependencywalker.com/depends22_x86.zip -OutFile depends.zip" powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('depends.zip', 'DependencyWalker\x86'); }" del depends.zip
Seikilos/AutoDependencyDetector
Externals/GetDependencyWalker.bat
bat
mit
624
::!/bin/csh -f ::***************************************************************************** :: (c) Copyright 2012 Xilinx, Inc. All rights reserved. :: :: This file contains confidential and proprietary information :: of Xilinx, Inc. and is protected under U.S. and :: international copyright and other intellectual property :: laws. :: :: DISCLAIMER :: This disclaimer is not a license and does not grant any :: rights to the materials distributed herewith. Except as :: otherwise provided in a valid license issued to you by :: Xilinx, and to the maximum extent permitted by applicable :: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND :: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES :: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING :: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- :: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and :: (2) Xilinx shall not be liable (whether in contract or tort, :: including negligence, or under any other theory of :: liability) for any loss or damage of any kind or nature :: related to, arising under or in connection with these :: materials, including for any direct, or any indirect, :: special, incidental, or consequential loss or damage :: (including loss of data, profits, goodwill, or any type of :: loss or damage suffered as a result of any action brought :: by a third party) even if such damage or loss was :: reasonably foreseeable or Xilinx had been advised of the :: possibility of the same. :: :: CRITICAL APPLICATIONS :: Xilinx products are not designed or intended to be fail- :: safe, or for use in any application requiring fail-safe :: performance, such as life-support or safety devices or :: systems, Class III medical devices, nuclear facilities, :: applications related to the deployment of airbags, or any :: other applications that could lead to death, personal :: injury, or severe property or environmental damage :: (individually and collectively, "Critical :: Applications"). Customer assumes the sole risk and :: liability of any use of Xilinx products in Critical :: Applications, subject only to applicable laws and :: regulations governing limitations on product liability. :: :: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS :: PART OF THIS FILE AT ALL TIMES. :: :: **************************************************************************** :: ____ ____ :: / /\/ / :: /___/ \ / Vendor : Xilinx :: \ \ \/ Version : 1.9 :: \ \ Application : MIG :: / / Filename : xsim_run.bat :: /___/ /\ Date Last Modified : $Date: 2011/06/02 08:31:16 $ :: \ \ / \ Date Created : Tue Jun 05 2012 :: \___\/\___\ :: :: Device : 7 Series :: Design Name : DDR2 SDRAM :: Purpose : Batch file to run Simulation through Vivado Simulator :: Reference : :: Revision History : :: **************************************************************************** echo Simulation Tool: Viavdo Simulator call xelab work.sim_tb_top work.glbl -prj xsim_files.prj -L unisims_ver -L secureip -s xsim_test -debug typical xsim -g -t xsim_options.tcl -wdb xsim_database.wdb xsim_test echo done
SLongofono/Senior_Design_Capstone
hdl/Ram2Ddr_RefComp/Source/Ram2DdrXadc_RefComp/ipcore_dir/ddr/example_design/sim/xsim_run.bat
bat
mit
3,325
@echo off cd ..\ karma start test\karma.conf.js pause
rayzru/event-parser
test/test.cmd
bat
mit
53
mvn verify
bink81/development-tools
windows/v.bat
bat
mit
10
cmd_drivers/platform/built-in.o := rm -f drivers/platform/built-in.o; /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD drivers/platform/built-in.o
RittikBhowmik/Project-Crater-Kernel-GT-i9152
drivers/platform/.built-in.o.cmd
bat
gpl-2.0
181
@echo off :0 set num= set /p num=ÇëÊäÈëÄãÒªÕûÀíµÄ´ÅÅÌÅÌ·û,±ÈÈçC,²»ÐèÒª´øÃ°ºÅ,ҪȫÅÌÕûÀíÇëÊäÈëÊý×Ö0: if "%num%"=="" goto 0 set num=%num:~0,1% if "%num%"=="0" goto 1 @echo.ÃüÁîÕýÔÚÔËÐÐ,ÇëÄÍÐĵȴý. defrag %num%: -f @start Chdiskclean.exe @shutdown -s -t 10 :1 @echo.ÃüÁîÕýÔÚÔËÐÐ,ÇëÄÍÐĵȴý. for %%1 in (c: d: e: f: G: h: i: j: k: l: M: N: O: P: Q: R: S: T: U: V: W: X: Y: Z:) do (if exist %%1 defrag %%1 -f) @start Chdiskclean.exe @shutdown -s -t 10
PureMoonStudio/Tools
External program/Diskclean.cmd
bat
gpl-2.0
461
cmd_fs/fat/file.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-gcc -Wp,-MD,fs/fat/.file.o.d -nostdinc -isystem /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include -Iinclude -I/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-goldfish/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(file)" -D"KBUILD_MODNAME=KBUILD_STR(fat)" -c -o fs/fat/file.o fs/fat/file.c deps_fs/fat/file.o := \ fs/fat/file.c \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/posix_types.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.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/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hwcap.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ include/linux/linkage.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/linux/stat.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/math64.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/wait.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-goldfish/include/mach/memory.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/elf.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/module.h \ include/linux/mount.h \ include/linux/buffer_head.h \ $(wildcard include/config/block.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/auxvec.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-goldfish/include/mach/vmalloc.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ include/linux/uaccess.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/uaccess.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ $(wildcard include/config/outer/cache.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/shmparam.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/kmap_types.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/no/hz.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/dynamic/ftrace.h) \ $(wildcard include/config/function/graph/tracer.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hardirq.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irq.h \ arch/arm/mach-goldfish/include/mach/irqs.h \ include/linux/irq_cpustat.h \ include/linux/writeback.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/linux/timex.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/timex.h \ arch/arm/mach-goldfish/include/mach/timex.h \ include/linux/jiffies.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ipcbuf.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sigcontext.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/blkdev.h \ $(wildcard include/config/blk/dev/bsg.h) \ $(wildcard include/config/bounce.h) \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/major.h \ include/linux/genhd.h \ $(wildcard include/config/fail/make/request.h) \ $(wildcard include/config/solaris/x86/partition.h) \ $(wildcard include/config/bsd/disklabel.h) \ $(wildcard include/config/unixware/disklabel.h) \ $(wildcard include/config/minix/subpartition.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/mempool.h \ include/linux/bio.h \ include/linux/ioprio.h \ include/linux/iocontext.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/io.h \ arch/arm/mach-goldfish/include/mach/io.h \ include/linux/bsg.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ include/linux/elevator.h \ include/linux/fsnotify.h \ include/linux/dnotify.h \ include/linux/inotify.h \ include/linux/audit.h \ $(wildcard include/config/change.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 \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/msgbuf.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/in6.h \ fs/fat/fat.h \ include/linux/nls.h \ include/linux/msdos_fs.h \ include/linux/magic.h \ fs/fat/file.o: $(deps_fs/fat/file.o) $(deps_fs/fat/file.o):
mjmccall/Kernel
fs/fat/.file.o.cmd
bat
gpl-2.0
25,410
cmd_drivers/mtd/tests/built-in.o := rm -f drivers/mtd/tests/built-in.o; /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ar rcsD drivers/mtd/tests/built-in.o
FEDEVEL/tmp-imx6-tiny-rex-linux
drivers/mtd/tests/.built-in.o.cmd
bat
gpl-2.0
228
cmd_sound/mips/built-in.o := rm -f sound/mips/built-in.o; /opt/arm-2009q3/bin/arm-none-eabi-ar rcs sound/mips/built-in.o
sembre/kernel_totoro_update3
common/sound/mips/.built-in.o.cmd
bat
gpl-2.0
122
cmd_scripts/kconfig/kxgettext.o := gcc -Wp,-MD,scripts/kconfig/.kxgettext.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/kxgettext.o scripts/kconfig/kxgettext.c deps_scripts/kconfig/kxgettext.o := \ scripts/kconfig/kxgettext.c \ /usr/include/stdlib.h \ /usr/include/features.h \ /usr/include/bits/predefs.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \ /usr/include/sys/types.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/time.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/bits/locale.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/kxgettext.o: $(deps_scripts/kconfig/kxgettext.o) $(deps_scripts/kconfig/kxgettext.o):
SeoDongMin/Gace_kernel
scripts/kconfig/.kxgettext.o.cmd
bat
gpl-2.0
1,761
cmd_fs/generic_acl.o := gcc -Wp,-MD,fs/.generic_acl.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(generic_acl)" -D"KBUILD_MODNAME=KBUILD_STR(generic_acl)" -c -o fs/generic_acl.o fs/generic_acl.c deps_fs/generic_acl.o := \ fs/generic_acl.c \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/sysfs.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/preempt/notifiers.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/compat.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/capability.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ $(wildcard include/config/x86/cmov.h) \ include/asm/alternative.h \ $(wildcard include/config/paravirt.h) \ include/asm/asm.h \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ include/linux/timex.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ $(wildcard include/config/x86/vsmp.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ include/linux/thread_info.h \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/processor.h \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ include/linux/bitmap.h \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/math64.h \ include/asm/div64.h \ include/asm/timex.h \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/nodemask.h \ $(wildcard include/config/highmem.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/proc/fs.h) \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/completion.h \ include/linux/wait.h \ include/asm/mmu.h \ include/linux/mutex.h \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ include/asm-x86/mach-default/mach_apicdef.h \ include/linux/sem.h \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/linux/kref.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/linux/rcuclassic.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/asm/seccomp.h \ include/asm/seccomp_32.h \ include/linux/unistd.h \ include/asm/unistd.h \ include/asm/unistd_32.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/latencytop.h \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/namei.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/radix-tree.h \ include/linux/semaphore.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/err.h \ include/linux/generic_acl.h \ include/linux/posix_acl.h \ include/linux/posix_acl_xattr.h \ fs/generic_acl.o: $(deps_fs/generic_acl.o) $(deps_fs/generic_acl.o):
namgk/kernel-tut
fs/.generic_acl.o.cmd
bat
gpl-2.0
16,166
cmd_sound/soc/msm/qdsp6/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o sound/soc/msm/qdsp6/built-in.o sound/soc/msm/qdsp6/q6asm.o sound/soc/msm/qdsp6/q6adm.o sound/soc/msm/qdsp6/q6afe.o sound/soc/msm/qdsp6/q6voice.o
friedrich420/S4-GPE-AEL-Kernel-4.4.3
sound/soc/msm/qdsp6/.built-in.o.cmd
bat
gpl-2.0
263
cmd_sound/pci/au88x0/built-in.o := rm -f sound/pci/au88x0/built-in.o; arm-linux-androideabi-ar rcsD sound/pci/au88x0/built-in.o
hch-im/nexus4_kernel
sound/pci/au88x0/.built-in.o.cmd
bat
gpl-2.0
129
cmd_net/wireless/built-in.o := /home/ashishtanwer/goldfish3.10/../x86_64-linux-android-4.7/bin/x86_64-linux-android-ld -m elf_i386 -r -o net/wireless/built-in.o net/wireless/cfg80211.o
ashishtanwer/NFTable-porting-on-Android-Goldfish
net/wireless/.built-in.o.cmd
bat
gpl-2.0
189
cmd_drivers/gpu/ion/built-in.o := /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ld -EL -r -o drivers/gpu/ion/built-in.o drivers/gpu/ion/ion.o drivers/gpu/ion/ion_heap.o drivers/gpu/ion/ion_page_pool.o drivers/gpu/ion/ion_system_heap.o drivers/gpu/ion/ion_carveout_heap.o drivers/gpu/ion/ion_chunk_heap.o drivers/gpu/ion/ion_cma_heap.o drivers/gpu/ion/ion_cma_secure_heap.o drivers/gpu/ion/ion_cp_heap.o drivers/gpu/ion/ion_removed_heap.o drivers/gpu/ion/msm/built-in.o
friedrich420/Note-3-Kernel
drivers/gpu/ion/.built-in.o.cmd
bat
gpl-2.0
484
ffmpeg.exe -s 1920x1080 -r 25 -y -i "gather/frame-%%05d.png" -threads 0 -b 9000k -bt 9000k -vpre libx264-slow -vcodec libx264 "output/Hurtigruten_timelapse_compressed.mp4" pause
Islandstone/HurtigruteTimelapseGenerator
create_compressed.bat
bat
gpl-3.0
177
mkdir bin copy /Y "..\..\..\pteidlib\Java\unsigned\pteid35libJava.jar" bin copy /Y "..\..\..\pteidlib\Java\unsigned\pteid35libJava_Wrapper.dll" bin echo rem Laucher for java sample > bin\run.bat echo @IF EXIST get_exception.class goto RUN >> bin\run.bat echo rem >> bin\run.bat echo @echo First compile the java file >> bin\run.bat echo @pause >> bin\run.bat echo goto END >> bin\run.bat echo rem >> bin\run.bat echo :RUN >> bin\run.bat echo java -classpath .;pteid35libJava.jar get_exception >> bin\run.bat echo @pause >> bin\run.bat echo rem >> bin\run.bat echo :END >> bin\run.bat echo exit 0 >> bin\run.bat exit 0
12019/svn.gov.pt
_src/eidmw/sdk/samples/exception/Java/copy_binaries.bat
bat
gpl-3.0
695
@echo off REM Command Switches: -list (list only view); -d (debug logging); -m (memory usage logging); java -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Xms1g -Xmx3g -jar .\MFM.jar REM Next entry is for 32 bit Java if 64 bit is not possible REM java -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Xms1280m -Xmx1280m -jar .\MFM.jar REM Next entry is for full debug REM java -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Xloggc:./Logs/MFM_GC_log.txt -Xms1g -Xmx3g -jar .\MFM.jar -d -s -m
phweda/MFM
MFM.bat
bat
gpl-3.0
468
/****************************************************************************** * * softuart_echo_ccs.cmd - CCS linker configuration file for softuart_echo. * * Copyright (c) 2012-2013 Texas Instruments Incorporated. All rights reserved. * Software License Agreement * * Texas Instruments (TI) is supplying this software for use solely and * exclusively on TI's microcontroller products. The software is owned by * TI and/or its suppliers, and is protected under applicable copyright * laws. You may not combine this software with "viral" open-source * software in order to form a larger program. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS. * NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT * NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY * CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL * DAMAGES, FOR ANY REASON WHATSOEVER. * * This is part of revision 2.0.1.11577 of the DK-TM4C123G Firmware Package. * *****************************************************************************/ --retain=g_pfnVectors /* The following command line options are set as part of the CCS project. */ /* If you are building using the command line, or for some reason want to */ /* define them here, you can uncomment and modify these lines as needed. */ /* If you are using CCS for building, it is probably better to make any such */ /* modifications in your CCS project and leave this file alone. */ /* */ /* --heap_size=0 */ /* --stack_size=256 */ /* --library=rtsv7M3_T_le_eabi.lib */ /* The starting address of the application. Normally the interrupt vectors */ /* must be located at the beginning of the application. */ #define APP_BASE 0x00000000 #define RAM_BASE 0x20000000 /* System memory map */ MEMORY { /* Application stored in and executes from internal flash */ FLASH (RX) : origin = APP_BASE, length = 0x00040000 /* Application uses internal RAM for data */ SRAM (RWX) : origin = 0x20000000, length = 0x00008000 } /* Section allocation in memory */ SECTIONS { .intvecs: > APP_BASE .text : > FLASH .const : > FLASH .cinit : > FLASH .pinit : > FLASH .init_array : > FLASH .vtable : > RAM_BASE .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM } __STACK_TOP = __stack + 512;
trfiladelfo/unesp_mdt
boards/SW-TM4C-2.0.1.11577/examples/boards/dk-tm4c123g/softuart_echo/softuart_echo_ccs.cmd
bat
mpl-2.0
2,807
@set NDK_ROOT=%DEV_ROOT%\android\ndk @set PATH=%NDK_ROOT%\prebuilt\windows-x86_64\bin;%NDK_ROOT%\toolchains\%1-%2\prebuilt\windows-x86_64\bin;%PATH% @echo NDK_INC=%NDK_ROOT%\platforms\android-%3\arch-%4\usr\include > conf.inc @echo PLATFORM_VER=%3 >> conf.inc
prefetchnta/crhack
bat/gcc_android_ndk.bat
bat
lgpl-2.1
264
oscript .\onescript\run-behavior-check-session.os .\JSON\Main.json
silverbulleters/vanessa-behavoir
tools/2 CheckBehavior.cmd
bat
apache-2.0
68
RD /S /Q .\dist\babylon.js MD .\dist\babylon.js XCOPY .\BabylonJsDemo\BabylonJsDemo\dist\* .\dist\babylon.js /S /I RD /S /Q .\dist\chart.js MD .\dist\chart.js XCOPY .\ChartJsDemo\ChartJsDemo\dist\* .\dist\chart.js /S /I RD /S /Q .\dist\dragula MD .\dist\dragula XCOPY .\DragulaDemo\DragulaDemo\dist\* .\dist\dragula /S /I RD /S /Q .\dist\knockout MD .\dist\knockout XCOPY .\KnockoutDemo\KnockoutDemo\dist\* .\dist\knockout /S /I RD /S /Q .\dist\phaser MD .\dist\phaser XCOPY .\PhaserDemo\PhaserDemo\dist\* .\dist\phaser /S /I RD /S /Q .\dist\pixi.js MD .\dist\pixi.js XCOPY .\PixiJsDemo\PixiJsDemo\dist\* .\dist\pixi.js /S /I RD /S /Q .\dist\react MD .\dist\react XCOPY .\ReactDemo\ReactDemo\dist\* .\dist\react /S /I RD /S /Q .\dist\svg.js MD .\dist\svg.js XCOPY .\SvgJsDemo\SvgJsDemo\dist\* .\dist\svg.js /S /I RD /S /Q .\dist\sweetalert MD .\dist\sweetalert XCOPY .\SweetAlertDemo\SweetAlertDemo\dist\* .\dist\sweetalert /S /I RD /S /Q .\dist\syncfusion MD .\dist\syncfusion XCOPY .\SyncfusionDemo\SyncfusionDemo\dist\* .\dist\syncfusion /S /I RD /S /Q .\dist\vue MD .\dist\vue XCOPY .\VueDemo\VueDemo\dist\* .\dist\vue /S /I RD /S /Q .\dist\three.js MD .\dist\three.js XCOPY .\ThreeJsDemo\ThreeJsDemo\dist\* .\dist\three.js /S /I RD /S /Q .\dist\mobx MD .\dist\mobx XCOPY .\MobX\MobX\dist\* .\dist\mobx /S /I RD /S /Q .\dist\vis.js MD .\dist\vis.js XCOPY .\VisJsDemo\VisJsDemo\dist\* .\dist\vis.js /S /I RD /S /Q .\dist\howler.js MD .\dist\howler.js XCOPY .\HowlerJsDemo\HowlerJsDemo\dist\* .\dist\howler.js /S /I PAUSE
Retyped/Demos
publish.bat
bat
apache-2.0
1,538
set CP=%JAVA_HOME%\jre\lib\rt.jar;..\..\lib\gloze.jar set CP=%CP%;%JENA_HOME%\lib\xercesImpl.jar;%JENA_HOME%\lib\jena.jar;%JENA_HOME%\lib\commons-logging-1.1.1.jar;%JENA_HOME%\lib\icu4j_3_4.jar;%JENA_HOME%\lib\log4j-1.2.12.jar;%JENA_HOME%\lib\iri.jar java -cp %CP% com.hp.gloze.GlozeURL http://www.agencexml.com/xsltforms/address.xml http://www.w3.org/2002/xforms http://www.w3.org/MarkUp/Forms/2007/XForms-11-Schema.xsd
stevebattle/Gloze
samples/GlozeURL/lift.bat
bat
apache-2.0
424
@echo off REM Update source for glslang, spirv-tools, and shaderc REM REM Copyright 2016 The Android Open Source Project REM Copyright (C) 2015 Valve Corporation REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. REM setlocal EnableDelayedExpansion set errorCode=0 set ANDROID_BUILD_DIR=%~dp0 set BUILD_DIR=%ANDROID_BUILD_DIR%.. set BASE_DIR=%BUILD_DIR%\.. set GLSLANG_DIR=%BASE_DIR%\glslang set SPIRV_TOOLS_DIR=%BASE_DIR%\spirv-tools set SHADERC_DIR=%BASE_DIR%\shaderc for %%X in (where.exe) do (set FOUND=%%~$PATH:X) if not defined FOUND ( echo Dependency check failed: echo where.exe not found echo This script requires Windows Vista or later, which includes where.exe. set errorCode=1 ) where /q git.exe if %ERRORLEVEL% equ 1 ( echo Dependency check failed: echo git.exe not found echo Git for Windows can be downloaded here: https://git-scm.com/download/win echo Install and ensure git.exe makes it into your PATH set errorCode=1 ) where /q ndk-build.cmd if %ERRORLEVEL% equ 1 ( echo Dependency check failed: echo ndk-build.cmd not found echo Android NDK can be downloaded here: http://developer.android.com/ndk/guides/setup.html echo Install and ensure ndk-build.cmd makes it into your PATH set errorCode=1 ) REM ensure where is working with below false test REM where /q foo REM if %ERRORLEVEL% equ 1 ( REM echo foo REM ) :main if %errorCode% neq 0 (goto:error) REM Read the target versions from external file, which is shared with Linux script if not exist %ANDROID_BUILD_DIR%\glslang_revision_android ( echo. echo Missing glslang_revision_android file. Place it in %ANDROID_BUILD_DIR% goto:error ) if not exist %ANDROID_BUILD_DIR%\spirv-tools_revision_android ( echo. echo Missing spirv-tools_revision_android file. Place it in %ANDROID_BUILD_DIR% set errorCode=1 goto:error ) if not exist %ANDROID_BUILD_DIR%\shaderc_revision_android ( echo. echo Missing shaderc_revision_android file. Place it in %ANDROID_BUILD_DIR% set errorCode=1 goto:error ) set /p GLSLANG_REVISION= < glslang_revision_android set /p SPIRV_TOOLS_REVISION= < spirv-tools_revision_android set /p SHADERC_REVISION= < shaderc_revision_android echo GLSLANG_REVISION=%GLSLANG_REVISION% echo SPIRV_TOOLS_REVISION=%SPIRV_TOOLS_REVISION% echo SHADERC_REVISION=%SHADERC_REVISION% echo Creating and/or updating glslang, spirv-tools, shaderc in %BASE_DIR% set sync-glslang=1 set sync-spirv-tools=1 set sync-shaderc=1 set build-shaderc=1 if %sync-glslang% equ 1 ( if exist %GLSLANG_DIR% ( rd /S /Q %GLSLANG_DIR% ) if not exist %GLSLANG_DIR% ( call:create_glslang ) if %errorCode% neq 0 (goto:error) call:update_glslang if %errorCode% neq 0 (goto:error) ) if %sync-spirv-tools% equ 1 ( if exist %SPIRV_TOOLS_DIR% ( rd /S /Q %SPIRV_TOOLS_DIR% ) if %ERRORLEVEL% neq 0 (goto:error) if not exist %SPIRV_TOOLS_DIR% ( call:create_spirv-tools ) if %errorCode% neq 0 (goto:error) call:update_spirv-tools if %errorCode% neq 0 (goto:error) ) if %sync-shaderc% equ 1 ( if exist %SHADERC_DIR% ( rd /S /Q %SHADERC_DIR% ) if not exist %SHADERC_DIR% ( call:create_shaderc ) if %errorCode% neq 0 (goto:error) call:update_shaderc if %errorCode% neq 0 (goto:error) ) if %build-shaderc% equ 1 ( call:build_shaderc if %errorCode% neq 0 (goto:error) ) echo. echo Exiting goto:finish :error echo. echo Halting due to error goto:finish :finish if not "%cd%\" == "%BUILD_DIR%" ( cd %BUILD_DIR% ) endlocal goto:eof REM // ======== Functions ======== // :create_glslang echo. echo Creating local glslang repository %GLSLANG_DIR% mkdir %GLSLANG_DIR% cd %GLSLANG_DIR% git clone https://github.com/KhronosGroup/glslang.git . git checkout %GLSLANG_REVISION% if not exist %GLSLANG_DIR%\SPIRV ( echo glslang source download failed! set errorCode=1 ) goto:eof :update_glslang echo. echo Updating %GLSLANG_DIR% cd %GLSLANG_DIR% git fetch --all git checkout %GLSLANG_REVISION% if not exist %GLSLANG_DIR%\SPIRV ( echo glslang source update failed! set errorCode=1 ) goto:eof :create_spirv-tools echo. echo Creating local spirv-tools repository %SPIRV_TOOLS_DIR% mkdir %SPIRV_TOOLS_DIR% cd %SPIRV_TOOLS_DIR% git clone https://github.com/KhronosGroup/SPIRV-Tools.git . git checkout %SPIRV_TOOLS_REVISION% if not exist %SPIRV_TOOLS_DIR%\source ( echo spirv-tools source download failed! set errorCode=1 ) goto:eof :update_spirv-tools echo. echo Updating %SPIRV_TOOLS_DIR% cd %SPIRV_TOOLS_DIR% git fetch --all git checkout %SPIRV_TOOLS_REVISION% if not exist %SPIRV_TOOLS_DIR%\source ( echo spirv-tools source update failed! set errorCode=1 ) goto:eof :create_shaderc echo. echo Creating local shaderc repository %SHADERC_DIR%) mkdir %SHADERC_DIR% cd %SHADERC_DIR% git clone git@github.com:google/shaderc.git . git checkout %SHADERC_REVISION% if not exist %SHADERC_DIR%\libshaderc ( echo shaderc source download failed! set errorCode=1 ) goto:eof :update_shaderc echo. echo Updating %SHADERC_DIR% cd %SHADERC_DIR% git fetch --all git checkout %SHADERC_REVISION% if not exist %SHADERC_DIR%\libshaderc ( echo shaderc source update failed! set errorCode=1 ) goto:eof :build_shaderc echo. echo Building %SHADERC_DIR% cd %SHADERC_DIR%\android_test echo Building shaderc with Android NDK call ndk-build THIRD_PARTY_PATH=../.. -j 4 REM Check for existence of one lib, even though we should check for all results if not exist %SHADERC_DIR%\android_test\obj\local\x86\libshaderc.a ( echo. echo shaderc build failed! set errorCode=1 ) goto:eof
sashinde/VulkanTools
build-android/update_external_sources_android.bat
bat
apache-2.0
6,365
@REM Copyright (c) Microsoft. All rights reserved. @REM Licensed under the MIT license. See LICENSE file in the project root for full license information. @setlocal EnableExtensions EnableDelayedExpansion @echo off rem ----------------------------------------------------------------------------- rem -- setup path information rem ----------------------------------------------------------------------------- set current-path=%~dp0 rem // remove trailing slash set current-path=%current-path:~0,-1% echo Current Path: %current-path% set build-root=%current-path%\..\..\.. rem // resolve to fully qualified path for %%i in ("%build-root%") do set build-root=%%~fi set client-root=%current-path%\..\..\.. for %%i in ("%client-root%") do set client-root=%%~fi rem ----------------------------------------------------------------------------- rem -- check prerequisites and clean directories rem ----------------------------------------------------------------------------- where /q nuget.exe if not !errorlevel! == 0 ( @Echo Azure Mqtt needs to download nuget.exe from https://www.nuget.org/nuget.exe @Echo https://www.nuget.org choice /C yn /M "Do you want to download and run nuget.exe?" if not !errorlevel!==1 goto :eof rem if nuget.exe is not found, then ask user Powershell.exe wget -outf nuget.exe https://nuget.org/nuget.exe if not exist .\nuget.exe ( echo nuget does not exist exit /b 1 ) ) set build-path=%build-root%\cmake echo Build root is %build-root% echo Build path is %build-path% echo Client root is %client-root% if exist %build-path%\azure_mqtt_output ( rmdir /s/q %build-path%\azure_mqtt_output rem no error checking ) rem ----------------------------------------------------------------------------- rem -- build with CMAKE rem ----------------------------------------------------------------------------- REM mkdir %build-path%\azure_mqtt_output rem no error checking call %build-root%\build_all\windows\build.cmd --make_nuget yes rem ----------------------------------------------------------------------------- rem -- Copy Win32 binaries rem ----------------------------------------------------------------------------- rem -- Copy all Win32 files from cmake build directory to the repo directory echo copying %build-path%\umqtt_win32\win32\debug xcopy /q /y /R %build-path%\umqtt_win32\Debug\*.* %build-path%\azure_mqtt_output\win32\debug\*.* if !ERRORLEVEL! neq 0 exit /b !ERRORLEVEL! rem -- Copy all Win32 Release files from cmake build directory to the repo directory xcopy /q /y /R %build-path%\umqtt_win32\Release\*.* %build-path%\azure_mqtt_output\win32\Release\*.* if !ERRORLEVEL! neq 0 exit /b !ERRORLEVEL! rem ----------------------------------------------------------------------------- rem -- build with CMAKE x64 rem ----------------------------------------------------------------------------- rem -- Copy all x64 files from cmake build directory to the repo directory xcopy /q /y /R %build-path%\umqtt_x64\Debug\*.* %build-path%\azure_mqtt_output\x64\debug\*.* if !ERRORLEVEL! neq 0 exit /b !ERRORLEVEL! rem -- Copy all x64 Release files from cmake build directory to the repo directory xcopy /q /y /R %build-path%\umqtt_x64\Release\*.* %build-path%\azure_mqtt_output\x64\Release\*.* if !ERRORLEVEL! neq 0 exit /b !ERRORLEVEL! rem ----------------------------------------------------------------------------- rem -- build with CMAKE ARM rem ----------------------------------------------------------------------------- rem -- Copy all ARM files from cmake build directory to the repo directory xcopy /q /y /R %build-path%\umqtt_arm\Debug\*.* %build-path%\azure_mqtt_output\arm\debug\*.* if !ERRORLEVEL! neq 0 exit /b !ERRORLEVEL! rem -- Copy all x64 Release files from cmake build directory to the repo directory xcopy /q /y /R %build-path%\umqtt_arm\Release\*.* %build-path%\azure_mqtt_output\arm\Release\*.* if !ERRORLEVEL! neq 0 exit /b !ERRORLEVEL! if exist *.nupkg ( del *.nupkg ) rem -- Package Nuget nuget pack %build-root%\build_all\packaging\windows\Microsoft.Azure.umqtt.nuspec -OutputDirectory %build-root%\build_all\packaging\windows rmdir /s/q %build-path%\azure_mqtt_output goto :eof echo done
tkopacz/2017IotHubGatewaySDK
Demo_SRC/deps/umqtt/build_all/packaging/windows/rebuild_nugets.cmd
bat
mit
4,184
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXWSFOLD.S07_FolderPermission.MSOXWSFOLD_S07_TC07_FolderPermissionAuthorLevel /testcontainer:..\..\MS-OXWSFOLD\TestSuite\bin\Debug\MS-OXWSFOLD_TestSuite.dll /runconfig:..\..\MS-OXWSFOLD\MS-OXWSFOLD.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeWebServices/Source/Scripts/MS-OXWSFOLD/RunMSOXWSFOLD_S07_TC07_FolderPermissionAuthorLevel.cmd
bat
mit
318
@echo off cls svn.exe update pause
cqwang/mathnet-iridium
Update_Source.bat
bat
lgpl-2.1
41
@ECHO OFF REM sphinx-apidoc --full --force -o . -H "Orange - Conformal Prediction" -A "Biolab" -V "1.0" ../cp REM sphinx-apidoc --force --separate -o . ../cp ../cp/tests.py call make.bat html
tojojames/MVCP-Orange3
doc/apidoc.bat
bat
lgpl-3.0
198
mkdir build cd build cmake .. cd .. pause
myd7349/Ongoing-Study
cpp/CMake/vcpkg/vcpkg_check_features_test/build.bat
bat
lgpl-3.0
42
@echo off REM REM @(#)memory.bat 1.3 10/04/05 REM REM Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. REM REM Redistribution and use in source and binary forms, with or without REM modification, are permitted provided that the following conditions are met: REM REM -Redistribution of source code must retain the above copyright notice, this REM list of conditions and the following disclaimer. REM REM -Redistribution in binary form must reproduce the above copyright notice, REM this list of conditions and the following disclaimer in the documentation REM and/or other materials provided with the distribution. REM REM Neither the name of Oracle or the names of contributors may REM be used to endorse or promote products derived from this software without REM specific prior written permission. REM REM This software is provided "AS IS," without a warranty of any kind. ALL REM EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING REM ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE REM OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") REM AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE REM AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS REM DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REM REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, REM INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY REM OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, REM EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. REM REM You acknowledge that this software is not designed, licensed or intended REM for use in the design, construction, operation or maintenance of any REM nuclear facility. jrunscript -J-Dcom.sun.management.jmxremote.port=1090 -J-Dcom.sun.management.jmxremote.ssl=false -J-Dcom.sun.management.jmxremote.authenticate=false memory.js
XClouded/t4f-core
javascript/java/src/main/tmp/scriptpad/src/scripts/memory.bat
bat
apache-2.0
2,010
@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.https://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\DjangoRESTFrameworkJSONAPI.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\DjangoRESTFrameworkJSONAPI.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
django-json-api/rest_framework_ember
docs/make.bat
bat
bsd-2-clause
7,285
@REM %1 = <Debug|Release> @IF "%~1" == "" GOTO help @ECHO Performing unit-test: TestCPU6502 .\%1\TestCPU6502.exe @IF errorlevel 1 GOTO failed @ECHO Performing unit-test: TestDebugger .\%1\TestDebugger.exe @if errorlevel 1 GOTO failed @GOTO end :failed @ECHO Unit-test failed EXIT /B 1 :help @ECHO %0 "<Debug|Release>" :end
kiyolee/applewin
test/UnitTests.bat
bat
gpl-2.0
328
if not exist .git exit 1 git config core.fileMode false if errorlevel 1 exit 1 git describe --tags --dirty if errorlevel 1 exit 1 for /f "delims=" %%i in ('git describe') do set gitdesc=%%i if errorlevel 1 exit 1 echo "%gitdesc%" if not "%gitdesc%"=="1.8.1" exit 1 git status if errorlevel 1 exit 1 git diff if errorlevel 1 exit 1 set PYTHONPATH=. python -c "import conda_build; assert conda_build.__version__ == '1.8.1', conda_build.__version__" if errorlevel 1 exit 1
sandhujasmine/conda-build
tests/test-recipes/metadata/source_git/bld.bat
bat
bsd-3-clause
470
@echo off Reflector --reflects /sql ./geolite2.sql /namespace MaxMind.geolite2 /split --language visualbasic Reflector /MySQL.Markdown /sql ./geolite2.sql > "./geolite2-dev-docs.md"
SMRUCC/GCModeller
src/runtime/httpd/WebCloud/SMRUCC.WebCloud.GIS/MaxMind/MySQL/build.bat
bat
gpl-3.0
183
cl -c -Zm200 -O2 -DNDEBUG -MT -EHsc -GR -W4 -wd4710 -I"." -I"..\..\include" main.cpp link /NOLOGO /SUBSYSTEM:CONSOLE /incremental:no /OUT:"main-msvc.exe" ..\..\lib\loki.lib main.obj del *.obj
lokicui/loki
test/Pimpl/make.msvc.bat
bat
apache-2.0
197
php ./merge.php pause
marlonruo/wfc2015final
www/qr/tools/merge.bat
bat
apache-2.0
21
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( REM set SPHINXBUILD=sphinx-build.exe set SPHINXBUILD=C:\Python35\Scripts\sphinx-build.exe ) set BUILDDIR=build set DOXYGENDIR=doxygen 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. doxygen to generate Doxygen XML files. echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%DOXYGENDIR%\xml\*) do rmdir /q /s %%i rmdir /q /s %DOXYGENDIR%\xml for /d %%i in (%DOXYGENDIR%\html\*) do rmdir /q /s %%i rmdir /q /s %DOXYGENDIR%\html for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python REM set SPHINXBUILD=python -m sphinx.__init__ 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" == "doxygen" ( pushd .. doxygen docs/%DOXYGENDIR%/doxygen.conf if errorlevel 1 exit /b 1 popd echo. echo.Build finished. The Doxygen pages are in docs/doxygen/xml and docs/doxygen/html. goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\nanodbc.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\nanodbc.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
nanodbc/nanodbc
doc/make.bat
bat
mit
8,016
cd .. cd .. git clone https://github.com/yeerkkiller1/Interfaces git clone https://github.com/yeerkkiller1/Extensions git clone https://github.com/yeerkkiller1/MemoryManagement chdir
yeerkkiller1/MVVM
updatebuild.bat
bat
mit
184
gulp serve pause
2khc/LoL-Mathcraft
Client/gulp serve.bat
bat
mit
16
set GOOS=linux set GOARCH=amd64 go build
gzook/obnodeman
build-linux.bat
bat
mit
40
@echo off pushd %~dp0..\YakaC\javacc call javacc Yaka.jj cd .. call javac *.java javacc\*.java Event\*.java Exception\*.java Parser\*.java Target\*.java popd
nhurman/yaka-compiler
bin/build.bat
bat
mit
164
@ECHO OFF PUSHD %~dp0 DEL /F /Q Assets.7z.* .\Tools\7zip\7za.exe a -v500m Assets.7z Assets/models/* POPD PAUSE
jpvanoosten/VolumeTiledForwardShading
CompressAssets.bat
bat
mit
113
@echo off setlocal call "%%SVNCMD_TOOLS_ROOT%%/make_url_canonical.bat" "%%URL%%" set ERRORLEVEL_RETURNED=%ERRORLEVEL% set "URL_RETURNED=%RETURN_VALUE%" if %TESTLIB__OVERALL_TESTS% GTR %TESTLIB__CURRENT_TESTS% ( set "TEST_REPORT_PREFIX_STR=%TESTLIB__OVERALL_TESTS%`%TESTLIB__CURRENT_TESTS%" ) else set "TEST_REPORT_PREFIX_STR=%TESTLIB__CURRENT_TESTS%" if %ERRORLEVEL_RETURNED% NEQ 0 ( "%CONTOOLS_UTILITIES_ROOT%/bin/envvarcmp.exe" URL_RETURNED STRING_REFERENCE "" ^ "FAILED: %TEST_REPORT_PREFIX_STR%: (%ERRORLEVEL_RETURNED%) RESULT=`{0}` REFERENCE=`{1}` URL=`${URL}`" ^ "FAILED: %TEST_REPORT_PREFIX_STR%: (%ERRORLEVEL_RETURNED%) RESULT=`{0}` REFERENCE=`{1}` URL=`${URL}` (`{0hs}` != `{1hs}`)" echo. exit /b 1 ) "%CONTOOLS_UTILITIES_ROOT%/bin/envvarcmp.exe" URL_RETURNED STRING_REFERENCE "" ^ "PASSED: %TEST_REPORT_PREFIX_STR%: REFERENCE=`{1}` URL=`${URL}`" ^ "FAILED: %TEST_REPORT_PREFIX_STR%: RESULT=`{0}` REFERENCE=`{1}` URL=`${URL}` (`{0hs}` != `{1hs}`)" if %ERRORLEVEL% NEQ 0 ( echo. exit /b 2 ) exit /b 0
andry81/svncmd
Tests/batscripts/.test_make_url_canonical/impl.bat
bat
mit
1,068
wevtutil im %*
jorj1988/InstrumentationManifestTools
tools/Install.bat
bat
mit
15
call loadConfig "config.ini" GENERAL call loadConfig "config.ini" SIT SET PUTTY_FILE_SCRIPT=_deployment.txt echo %JAVA_PATH%/bin/java -cp %WEBLOGIC_JAR% weblogic.Deployer -url %WEBLOGIC_ADMIN_URL% -user %WEBLOGIC_USER% -password %WEBLOGIC_PASSWORD% -deploy -name %DEPLOY_REST_NAME% -targets %DEPLOY_SERVER% -source %WAR_UPLOAD_PATH%/%REST_FILENAME%> %PUTTY_FILE_SCRIPT% %PUTTY_PATH%\plink.exe -m "%PUTTY_FILE_SCRIPT%" -pw %SSH_PASSWORD% %SSH_USER%@%SSH_SERVER% pause
tommylsh/test20170719
Desktop/maxim/UAT/deployment/SITdeployRest.bat
bat
epl-1.0
479
mvn archetype:generate -B -DarchetypeGroupId=org.openhab.archetype -DarchetypeArtifactId=org.openhab.archetype.binding -DarchetypeVersion=1.6.0-SNAPSHOT -Dauthor=g8kmh -Dversion=1.6.0-SNAPSHOT -DartifactId=org.openhab.binding.plclogo -Dpackage=org.openhab.binding.plclogo -Dbinding-name=PLCLogo
g8kmh/openhab
bundles/binding/newbinding.bat
bat
epl-1.0
295