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 |
|---|---|---|---|---|---|
SET SEGMENTS=32
| kc9jud/ShellCorretta | NuShellX_exercises/O25/SetLanczos.bat | bat | mit | 24 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_WWSP.S03_AlterToDo.MSWWSP_S03_TC03_AlterToDo_IgnoreItem /testcontainer:..\..\MS-WWSP\TestSuite\bin\Debug\MS-WWSP_TestSuite.dll /runconfig:..\..\MS-WWSP\MS-WWSP.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-WWSP/RunMSWWSP_S03_TC03_AlterToDo_IgnoreItem.cmd | bat | mit | 280 |
@echo off
setlocal enableextensions enabledelayedexpansion
for /f "delims=" %%l in ('wmic baseboard get Manufacturer^, serialnumber /format:list') do >nul 2>&1 set "System_%%l"
for /f "delims=" %%l in ('wmic bios get name^, version^, serialnumber /format:list') do >nul 2>&1 set "Bios_%%l"
for /f "delims=" %%l in ('wmic cpu get * /format:list') do >nul 2>&1 set "Cpu_%%l"
for /f "delims=" %%l in ('wmic diskdrive get Name^, Model /format:list') do >nul 2>&1 set "Hdd_%%l"
for /f "delims=" %%l in ('wmic idecontroller get Name^, DeviceID /format:list') do >nul 2>&1 set "Intel_Chipset_%%l"
for /f "delims=" %%l in ('wmic memorychip get SerialNumber /format:list') do >nul 2>&1 set "Memory_%%l"
::Motherboard Manufacturer:
echo "%System_Manufacturer%"
::Motherboard Serial Number:
echo "%System_SerialNumber%"
::Bios Name:
echo "%Bios_Name%"
::Bios Serial Number:
echo "%Bios_SerialNumber%"
::Bios Version:
echo "%Bios_Version%"
::Cpu Name:
echo "%Cpu_Name%"
::Cpu Type:
echo "%PROCESSOR_ARCHITECTURE%"
::Cpu ID:
echo "%PROCESSOR_IDENTIFIER%"
::HDD Name:
echo "%Hdd_Name%"
::HDD Model:
echo "%Hdd_Model%"
::Intel Chipset Name:
echo "%Intel_Chipset_Name%"
::Intel Chipset Device ID:
echo "%Intel_Chipset_DeviceID%"
::Memory Serial Number:
echo "%Memory_SerialNumber%"
::echo .
::echo .
::pause | tlkiong/Java-GettingHardwareInformation | src/resources/getHardwareInformation.bat | bat | mit | 1,312 |
@if not defined _echo @echo off
setlocal EnableDelayedExpansion EnableExtensions
echo Starting Build at %TIME%
set __ThisScriptFull="%~f0"
:: Default to highest Visual Studio version available
::
:: For VS2015 (and prior), only a single instance is allowed to be installed on a box
:: and VS140COMNTOOLS is set as a global environment variable by the installer. This
:: allows users to locate where the instance of VS2015 is installed.
::
:: For VS2017, multiple instances can be installed on the same box SxS and VS150COMNTOOLS
:: is no longer set as a global environment variable and is instead only set if the user
:: has launched the VS2017 Developer Command Prompt.
::
:: Following this logic, we will default to the VS2017 toolset if VS150COMNTOOLS tools is
:: set, as this indicates the user is running from the VS2017 Developer Command Prompt and
:: is already configured to use that toolset. Otherwise, we will fallback to using the VS2015
:: toolset if it is installed. Finally, we will fail the script if no supported VS instance
:: can be found.
if defined VS150COMNTOOLS (
set "__VSToolsRoot=%VS150COMNTOOLS%"
set "__VCToolsRoot=%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build"
set __VSVersion=vs2017
) else (
set "__VSToolsRoot=%VS140COMNTOOLS%"
set "__VCToolsRoot=%VS140COMNTOOLS%\..\..\VC"
set __VSVersion=vs2015
)
:: Note that the msbuild project files (specifically, dir.proj) will use the following variables, if set:
:: __BuildArch -- default: x64
:: __BuildType -- default: Debug
:: __BuildOS -- default: Windows_NT
:: __ProjectDir -- default: directory of the dir.props file
:: __SourceDir -- default: %__ProjectDir%\src\
:: __PackagesDir -- default: %__ProjectDir%\packages\
:: __RootBinDir -- default: %__ProjectDir%\bin\
:: __BinDir -- default: %__RootBinDir%\%__BuildOS%.%__BuildArch.%__BuildType%\
:: __IntermediatesDir
:: __PackagesBinDir -- default: %__BinDir%\.nuget
:: __TestWorkingDir -- default: %__RootBinDir%\tests\%__BuildOS%.%__BuildArch.%__BuildType%\
::
:: Thus, these variables are not simply internal to this script!
:: Set the default arguments for build
set __BuildArch=x64
set __BuildType=Debug
set __BuildOS=Windows_NT
:: Define a prefix for most output progress messages that come from this script. That makes
:: it easier to see where these are coming from. Note that there is a trailing space here.
set "__MsgPrefix=BUILD: "
:: Set the various build properties here so that CMake and MSBuild can pick them up
set "__ProjectDir=%~dp0"
:: remove trailing slash
if %__ProjectDir:~-1%==\ set "__ProjectDir=%__ProjectDir:~0,-1%"
set "__ProjectFilesDir=%__ProjectDir%"
set "__SourceDir=%__ProjectDir%\src"
set "__PackagesDir=%__ProjectDir%\packages"
set "__RootBinDir=%__ProjectDir%\bin"
set "__LogsDir=%__RootBinDir%\Logs"
set "__PgoOptDataVersion="
set "__IbcOptDataVersion="
set __BuildAll=
set __BuildArchX64=0
set __BuildArchX86=0
set __BuildArchArm=0
set __BuildArchArm64=0
set __BuildTypeDebug=0
set __BuildTypeChecked=0
set __BuildTypeRelease=0
set __BuildStandaloneGC="-DFEATURE_STANDALONE_GC=0"
set __BuildStandaloneGCOnly="-DFEATURE_STANDALONE_GC_ONLY=0"
set __PgoInstrument=0
set __PgoOptimize=1
set __EnforcePgo=0
set __IbcTuning=
REM __PassThroughArgs is a set of things that will be passed through to nested calls to build.cmd
REM when using "all".
set __PassThroughArgs=
REM __UnprocessedBuildArgs are args that we pass to msbuild (e.g. /p:__BuildArch=x64)
set "__args= %*"
set processedArgs=
set __UnprocessedBuildArgs=
set __RunArgs=
set __BuildCoreLib=1
set __BuildNative=1
set __BuildTests=1
set __BuildPackages=1
set __BuildNativeCoreLib=1
set __RestoreOptData=1
:Arg_Loop
if "%1" == "" goto ArgsDone
if /i "%1" == "-?" goto Usage
if /i "%1" == "-h" goto Usage
if /i "%1" == "-help" goto Usage
if /i "%1" == "--help" goto Usage
if /i "%1" == "-all" (set __BuildAll=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-x64" (set __BuildArchX64=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-x86" (set __BuildArchX86=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-arm" (set __BuildArchArm=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-arm64" (set __BuildArchArm64=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-debug" (set __BuildTypeDebug=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-checked" (set __BuildTypeChecked=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-release" (set __BuildTypeRelease=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
REM TODO these are deprecated remove them eventually
REM don't add more, use the - syntax instead
if /i "%1" == "all" (set __BuildAll=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "x64" (set __BuildArchX64=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "x86" (set __BuildArchX86=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "arm" (set __BuildArchArm=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "arm64" (set __BuildArchArm64=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "debug" (set __BuildTypeDebug=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "checked" (set __BuildTypeChecked=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "release" (set __BuildTypeRelease=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
REM All arguments after this point will be passed through directly to build.cmd on nested invocations
REM using the "all" argument, and must be added to the __PassThroughArgs variable.
if [!__PassThroughArgs!]==[] (
set __PassThroughArgs=%1
) else (
set __PassThroughArgs=%__PassThroughArgs% %1
)
if /i "%1" == "-freebsdmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=FreeBSD&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-linuxmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=Linux&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-netbsdmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=NetBSD&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-osxmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=OSX&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-windowsmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=Windows_NT&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-nativemscorlib" (set __BuildNativeCoreLib=1&set __BuildCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-configureonly" (set __ConfigureOnly=1&set __BuildNative=1&set __BuildNativeCoreLib=0&set __BuildCoreLib=0&set __BuildTests=0&set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-skipconfigure" (set __SkipConfigure=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-skipmscorlib" (set __BuildCoreLib=0&set __BuildNativeCoreLib=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-skipnative" (set __BuildNative=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-skiptests" (set __BuildTests=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-skipbuildpackages" (set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-skiprestoreoptdata" (set __RestoreOptData=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-usenmakemakefiles" (set __NMakeMakefiles=1&set __ConfigureOnly=1&set __BuildNative=1&set __BuildNativeCoreLib=0&set __BuildCoreLib=0&set __BuildTests=0&set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-pgoinstrument" (set __PgoInstrument=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-enforcepgo" (set __EnforcePgo=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-nopgooptimize" (set __PgoOptimize=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-ibcinstrument" (set __IbcTuning=/Tuning&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "-toolset_dir" (set __ToolsetDir=%2&set __PassThroughArgs=%__PassThroughArgs% %2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
if /i "%1" == "-buildstandalonegc" (
set __BuildStandaloneGC="-DFEATURE_STANDALONE_GC=1"
set __BuildStandaloneGCOnly="-DFEATURE_STANDALONE_GC_ONLY=1"
set processedArgs=!processedArgs! %1
shift&goto Arg_Loop
)
REM TODO these are deprecated remove them eventually
REM don't add more, use the - syntax instead
if /i "%1" == "freebsdmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=FreeBSD&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "linuxmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=Linux&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "netbsdmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=NetBSD&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "osxmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=OSX&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "windowsmscorlib" (set __BuildNativeCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set __BuildOS=Windows_NT&set __SkipNugetPackage=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "nativemscorlib" (set __BuildNativeCoreLib=1&set __BuildCoreLib=0&set __BuildNative=0&set __BuildTests=0&set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "configureonly" (set __ConfigureOnly=1&set __BuildNative=1&set __BuildNativeCoreLib=0&set __BuildCoreLib=0&set __BuildTests=0&set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "skipconfigure" (set __SkipConfigure=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "skipmscorlib" (set __BuildCoreLib=0&set __BuildNativeCoreLib=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "skipnative" (set __BuildNative=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "skiptests" (set __BuildTests=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "skipbuildpackages" (set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "skiprestoreoptdata" (set __RestoreOptData=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "usenmakemakefiles" (set __NMakeMakefiles=1&set __ConfigureOnly=1&set __BuildNative=1&set __BuildNativeCoreLib=0&set __BuildCoreLib=0&set __BuildTests=0&set __BuildPackages=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "pgoinstrument" (set __PgoInstrument=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "nopgooptimize" (set __PgoOptimize=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "enforcepgo" (set __EnforcePgo=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "ibcinstrument" (set __IbcTuning=/Tuning&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "toolset_dir" (set __ToolsetDir=%2&set __PassThroughArgs=%__PassThroughArgs% %2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
if /i "%1" == "buildstandalonegc" (
set __BuildStandaloneGC="-DFEATURE_STANDALONE_GC=1"
set __BuildStandaloneGCOnly="-DFEATURE_STANDALONE_GC_ONLY=1"
set processedArgs=!processedArgs! %1
shift&goto Arg_Loop
)
@REM The following can be deleted once the CI system that passes it is updated to not pass it.
if /i "%1" == "altjitcrossgen" (set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if [!processedArgs!]==[] (
set __UnprocessedBuildArgs=%__args%
) else (
set __UnprocessedBuildArgs=%__args%
for %%t in (!processedArgs!) do (
set __UnprocessedBuildArgs=!__UnprocessedBuildArgs:*%%t=!
)
)
:ArgsDone
if %__PgoOptimize%==0 set __RestoreOptData=0
if defined __BuildAll goto BuildAll
set /A __TotalSpecifiedBuildArch=__BuildArchX64 + __BuildArchX86 + __BuildArchArm + __BuildArchArm64
if %__TotalSpecifiedBuildArch% GTR 1 (
echo Error: more than one build architecture specified, but "all" not specified.
goto Usage
)
if %__BuildArchX64%==1 set __BuildArch=x64
if %__BuildArchX86%==1 set __BuildArch=x86
if %__BuildArchArm%==1 (
set __BuildArch=arm
set __CrossArch=x86
)
if %__BuildArchArm64%==1 (
set __BuildArch=arm64
set __CrossArch=x64
)
set /A __TotalSpecifiedBuildType=__BuildTypeDebug + __BuildTypeChecked + __BuildTypeRelease
if %__TotalSpecifiedBuildType% GTR 1 (
echo Error: more than one build type specified, but "all" not specified.
goto Usage
)
if %__BuildTypeDebug%==1 set __BuildType=Debug
if %__BuildTypeChecked%==1 set __BuildType=Checked
if %__BuildTypeRelease%==1 set __BuildType=Release
set __RunArgs=-BuildOS=%__BuildOS% -BuildType=%__BuildType% -BuildArch=%__BuildArch%
if %__EnforcePgo%==1 (
if %__BuildArchArm%==1 (
echo NOTICE: enforcepgo does nothing on arm architecture
)
if %__BuildArchArm64%==1 (
echo NOTICE: enforcepgo does nothing on arm64 architecture
)
)
:: Set the remaining variables based upon the determined build configuration
set "__BinDir=%__RootBinDir%\Product\%__BuildOS%.%__BuildArch%.%__BuildType%"
set "__IntermediatesDir=%__RootBinDir%\obj\%__BuildOS%.%__BuildArch%.%__BuildType%"
if "%__NMakeMakefiles%"=="1" (set "__IntermediatesDir=%__RootBinDir%\nmakeobj\%__BuildOS%.%__BuildArch%.%__BuildType%")
set "__PackagesBinDir=%__BinDir%\.nuget"
set "__TestRootDir=%__RootBinDir%\tests"
set "__TestBinDir=%__TestRootDir%\%__BuildOS%.%__BuildArch%.%__BuildType%"
set "__TestIntermediatesDir=%__RootBinDir%\tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%"
set "__CrossComponentBinDir=%__BinDir%"
set "__CrossCompIntermediatesDir=%__IntermediatesDir%\crossgen"
if NOT "%__CrossArch%" == "" set __CrossComponentBinDir=%__CrossComponentBinDir%\%__CrossArch%
set "__CrossGenCoreLibLog=%__LogsDir%\CrossgenCoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
set "__CrossgenExe=%__CrossComponentBinDir%\crossgen.exe"
:: Generate path to be set for CMAKE_INSTALL_PREFIX to contain forward slash
set "__CMakeBinDir=%__BinDir%"
set "__CMakeBinDir=%__CMakeBinDir:\=/%"
if not exist "%__BinDir%" md "%__BinDir%"
if not exist "%__IntermediatesDir%" md "%__IntermediatesDir%"
if not exist "%__LogsDir%" md "%__LogsDir%"
REM It is convinient to have your Nuget search path include the location where the build
REM will plass packages. However nuget used during the build will fail if that directory
REM does not exist. Avoid this in at least one case by agressively creating the directory.
if not exist "%__BinDir%\.nuget\pkg" md "%__BinDir%\.nuget\pkg"
echo %__MsgPrefix%Commencing CoreCLR Repo build
:: Set the remaining variables based upon the determined build configuration
echo %__MsgPrefix%Checking prerequisites
:: Eval the output from probe-win1.ps1
for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy ByPass "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
REM =========================================================================================
REM ===
REM === Start the build steps
REM ===
REM =========================================================================================
echo %__MsgPrefix%Using environment: "%__VSToolsRoot%\VsDevCmd.bat"
call "%__VSToolsRoot%\VsDevCmd.bat"
@call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\build.proj -generateHeaderWindows -NativeVersionHeaderFile="%__RootBinDir%\obj\_version.h" %__RunArgs% %__UnprocessedBuildArgs%
REM =========================================================================================
REM ===
REM === Restore optimization profile data
REM ===
REM =========================================================================================
if %__RestoreOptData% EQU 1 if %__BuildTypeRelease% EQU 1 (
echo %__MsgPrefix%Restoring the OptimizationData Package
@call %__ProjectDir%\run.cmd sync -optdata
if not !errorlevel! == 0 (
echo %__MsgPrefix%Error: Failed to restore the optimization data package.
exit /b 1
)
)
REM Parse the optdata package versions out of msbuild so that we can pass them on to CMake
set DotNetCli=%__ProjectDir%\Tools\dotnetcli\dotnet.exe
if not exist "%DotNetCli%" (
echo Assertion failed: dotnet.exe not found at path "%DotNetCli%"
exit /b 1
)
set OptDataProjectFilePath=%__ProjectDir%\src\.nuget\optdata\optdata.csproj
for /f "tokens=*" %%s in ('%DotNetCli% msbuild "%OptDataProjectFilePath%" /t:DumpPgoDataPackageVersion /nologo') do @(
set __PgoOptDataVersion=%%s
)
for /f "tokens=*" %%s in ('%DotNetCli% msbuild "%OptDataProjectFilePath%" /t:DumpIbcDataPackageVersion /nologo') do @(
set __IbcOptDataVersion=%%s
)
REM =========================================================================================
REM ===
REM === Build the CLR VM
REM ===
REM =========================================================================================
if %__BuildNative% EQU 1 (
echo %__MsgPrefix%Commencing build of native components for %__BuildOS%.%__BuildArch%.%__BuildType%
set nativePlatfromArgs=-platform=%__BuildArch%
if /i "%__BuildArch%" == "arm64" ( set nativePlatfromArgs=-useEnv )
set __MsbuildLog=/flp:Verbosity=normal;LogFile="%__LogsDir%\CoreCLR_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
set __MsbuildWrn=/flp1:WarningsOnly;LogFile="%__LogsDir%\CoreCLR_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
set __MsbuildErr=/flp2:ErrorsOnly;LogFile="%__LogsDir%\CoreCLR_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
if /i "%__BuildArch%" == "arm64" (
rem arm64 builds currently use private toolset which has not been released yet
REM TODO, remove once the toolset is open.
call :PrivateToolSet
goto GenVSSolution
)
:: Set the environment for the native build
set __VCBuildArch=x86_amd64
if /i "%__BuildArch%" == "x86" ( set __VCBuildArch=x86 )
if /i "%__BuildArch%" == "arm" (
set __VCBuildArch=x86_arm
REM Make CMake pick the highest installed version in the 10.0.* range
set ___SDKVersion="-DCMAKE_SYSTEM_VERSION=10.0"
)
echo %__MsgPrefix%Using environment: "%__VCToolsRoot%\vcvarsall.bat" !__VCBuildArch!
call "%__VCToolsRoot%\vcvarsall.bat" !__VCBuildArch!
@if defined _echo @echo on
if not defined VSINSTALLDIR (
echo %__MsgPrefix%Error: VSINSTALLDIR variable not defined.
exit /b 1
)
if not exist "!VSINSTALLDIR!DIA SDK" goto NoDIA
:GenVSSolution
if defined __SkipConfigure goto SkipConfigure
echo %__MsgPrefix%Regenerating the Visual Studio solution
pushd "%__IntermediatesDir%"
set __ExtraCmakeArgs=!___SDKVersion! "-DCLR_CMAKE_TARGET_OS=%__BuildOs%" "-DCLR_CMAKE_PACKAGES_DIR=%__PackagesDir%" "-DCLR_CMAKE_PGO_INSTRUMENT=%__PgoInstrument%" "-DCLR_CMAKE_OPTDATA_VERSION=%__PgoOptDataVersion%" "-DCLR_CMAKE_PGO_OPTIMIZE=%__PgoOptimize%"
call "%__SourceDir%\pal\tools\gen-buildsys-win.bat" "%__ProjectDir%" %__VSVersion% %__BuildArch% %__BuildStandaloneGC% %__BuildStandaloneGCOnly% !__ExtraCmakeArgs!
@if defined _echo @echo on
popd
:SkipConfigure
if defined __ConfigureOnly goto SkipNativeBuild
if not exist "%__IntermediatesDir%\install.vcxproj" (
echo %__MsgPrefix%Error: failed to generate native component build project!
exit /b 1
)
@call %__ProjectDir%\run.cmd build -Project=%__IntermediatesDir%\install.vcxproj -MsBuildLog=!__MsbuildLog! -MsBuildWrn=!__MsbuildWrn! -MsBuildErr=!__MsbuildErr! -configuration=%__BuildType% %nativePlatfromArgs% %__RunArgs% %__UnprocessedBuildArgs%
if not !errorlevel! == 0 (
echo %__MsgPrefix%Error: native component build failed. Refer to the build log files for details:
echo "%__LogsDir%\CoreCLR_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
echo "%__LogsDir%\CoreCLR_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
echo "%__LogsDir%\CoreCLR_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
exit /b 1
)
)
:SkipNativeBuild
REM =========================================================================================
REM ===
REM === Build Cross-Architecture Native Components (if applicable)
REM ===
REM =========================================================================================
if /i "%__BuildArch%"=="arm64" (
set __DoCrossArchBuild=1
)
if /i "%__BuildArch%"=="arm" (
set __DoCrossArchBuild=1
)
if /i "%__DoCrossArchBuild%"=="1" (
echo %__MsgPrefix%Commencing build of cross architecture native components for %__BuildOS%.%__BuildArch%.%__BuildType%
:: Set the environment for the native build
set __VCBuildArch=x86_amd64
if /i "%__CrossArch%" == "x86" ( set __VCBuildArch=x86 )
@call "%__VCToolsRoot%\vcvarsall.bat" !__VCBuildArch!
@if defined _echo @echo on
if not exist "%__CrossCompIntermediatesDir%" md "%__CrossCompIntermediatesDir%"
if defined __SkipConfigure goto SkipConfigureCrossBuild
pushd "%__CrossCompIntermediatesDir%"
set __CMakeBinDir=%__CrossComponentBinDir%
set "__CMakeBinDir=!__CMakeBinDir:\=/!"
set __ExtraCmakeArgs="-DCLR_CROSS_COMPONENTS_BUILD=1" "-DCLR_CMAKE_TARGET_ARCH=%__BuildArch%" "-DCLR_CMAKE_TARGET_OS=%__BuildOs%" "-DCLR_CMAKE_PACKAGES_DIR=%__PackagesDir%" "-DCLR_CMAKE_PGO_INSTRUMENT=%__PgoInstrument%" "-DCLR_CMAKE_OPTDATA_VERSION=%__PgoOptDataVersion%" "-DCLR_CMAKE_PGO_OPTIMIZE=%__PgoOptimize%"
call "%__SourceDir%\pal\tools\gen-buildsys-win.bat" "%__ProjectDir%" %__VSVersion% %__CrossArch% !__ExtraCmakeArgs!
@if defined _echo @echo on
popd
:SkipConfigureCrossBuild
if not exist "%__CrossCompIntermediatesDir%\install.vcxproj" (
echo %__MsgPrefix%Error: failed to generate cross-arch components build project!
exit /b 1
)
if defined __ConfigureOnly goto SkipCrossCompBuild
echo %__MsgPrefix%Invoking msbuild
set __MsbuildLog=/flp:Verbosity=normal;LogFile="%__LogsDir%\Cross_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
set __MsbuildWrn=/flp1:WarningsOnly;LogFile="%__LogsDir%\Cross_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
set __MsbuildErr=/flp2:ErrorsOnly;LogFile="%__LogsDir%\Cross_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
@call %__ProjectDir%\run.cmd build -Project=%__CrossCompIntermediatesDir%\install.vcxproj -configuration=%__BuildType% -platform=%__CrossArch% -MsBuildLog=!__MsbuildLog! -MsBuildWrn=!__MsbuildWrn! -MsBuildErr=!__MsbuildErr! %__RunArgs% %__UnprocessedBuildArgs%
if not !errorlevel! == 0 (
echo %__MsgPrefix%Error: cross-arch components build failed. Refer to the build log files for details:
echo "%__LogsDir%\Cross_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
echo "%__LogsDir%\Cross_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
echo "%__LogsDir%\Cross_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
exit /b 1
)
)
:SkipCrossCompBuild
REM =========================================================================================
REM ===
REM === CoreLib and NuGet package build section.
REM ===
REM =========================================================================================
if %__BuildCoreLib% EQU 1 (
echo %__MsgPrefix%Commencing build of System.Private.CoreLib for %__BuildOS%.%__BuildArch%.%__BuildType%
rem Explicitly set Platform causes conflicts in CoreLib project files. Clear it to allow building from VS x64 Native Tools Command Prompt
set Platform=
set __MsbuildLog=/flp:Verbosity=normal;LogFile="%__LogsDir%\System.Private.CoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
set __MsbuildWrn=/flp1:WarningsOnly;LogFile="%__LogsDir%\System.Private.CoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
set __MsbuildErr=/flp2:ErrorsOnly;LogFile="%__LogsDir%\System.Private.CoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
set __ExtraBuildArgs=
if not defined __IbcTuning (
set __ExtraBuildArgs=!__ExtraBuildArgs! -OptimizationDataDir="%__PackagesDir%/optimization.%__BuildOS%-%__BuildArch%.IBC.CoreCLR/%__IbcOptDataVersion%/data/"
set __ExtraBuildArgs=!__ExtraBuildArgs! -EnableProfileGuidedOptimization=true
)
if /i "%__BuildArch%" == "arm64" (
set __nugetBuildArgs=-buildNugetPackage=false
) else if "%__SkipNugetPackage%" == "1" (
set __nugetBuildArgs=-buildNugetPackage=false
) else (
set __nugetBuildArgs=-buildNugetPackage=true
)
@call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\build.proj -MsBuildLog=!__MsbuildLog! -MsBuildWrn=!__MsbuildWrn! -MsBuildErr=!__MsbuildErr! !__nugetBuildArgs! %__RunArgs% !__ExtraBuildArgs! %__UnprocessedBuildArgs%
if not !errorlevel! == 0 (
echo %__MsgPrefix%Error: System.Private.CoreLib build failed. Refer to the build log files for details:
echo "%__LogsDir%\System.Private.CoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
echo "%__LogsDir%\System.Private.CoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
echo "%__LogsDir%\System.Private.CoreLib_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
exit /b 1
)
)
REM Need diasymreader.dll on your path for /CreatePdb
set PATH=%PATH%;%WinDir%\Microsoft.Net\Framework64\V4.0.30319;%WinDir%\Microsoft.Net\Framework\V4.0.30319
if %__BuildNativeCoreLib% EQU 1 (
echo %__MsgPrefix%Generating native image of System.Private.CoreLib for %__BuildOS%.%__BuildArch%.%__BuildType%
echo "%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%"\IL /out "%__BinDir%\System.Private.CoreLib.dll" "%__BinDir%\IL\System.Private.CoreLib.dll"
"%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%"\IL /out "%__BinDir%\System.Private.CoreLib.dll" "%__BinDir%\IL\System.Private.CoreLib.dll" > "%__CrossGenCoreLibLog%" 2>&1
if NOT !errorlevel! == 0 (
echo %__MsgPrefix%Error: CrossGen System.Private.CoreLib build failed. Refer to %__CrossGenCoreLibLog%
:: Put it in the same log, helpful for Jenkins
type %__CrossGenCoreLibLog%
goto CrossgenFailure
)
echo "%__CrossgenExe%" /Platform_Assemblies_Paths "%__BinDir%" /CreatePdb "%__BinDir%\PDB" "%__BinDir%\System.Private.CoreLib.dll"
"%__CrossgenExe%" /Platform_Assemblies_Paths "%__BinDir%" /CreatePdb "%__BinDir%\PDB" "%__BinDir%\System.Private.CoreLib.dll" >> "%__CrossGenCoreLibLog%" 2>&1
if NOT !errorlevel! == 0 (
echo %__MsgPrefix%Error: CrossGen /CreatePdb System.Private.CoreLib build failed. Refer to %__CrossGenCoreLibLog%
:: Put it in the same log, helpful for Jenkins
type %__CrossGenCoreLibLog%
goto CrossgenFailure
)
)
if %__BuildPackages% EQU 1 (
echo %__MsgPrefix%Building Packages for %__BuildOS%.%__BuildArch%.%__BuildType%
set __MsbuildLog=/flp:Verbosity=normal;LogFile="%__LogsDir%\Nuget_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
set __MsbuildWrn=/flp1:WarningsOnly;LogFile="%__LogsDir%\Nuget_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
set __MsbuildErr=/flp2:ErrorsOnly;LogFile="%__LogsDir%\Nuget_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
REM The conditions as to what to build are captured in the builds file.
@call %__ProjectDir%\run.cmd build -Project=%__SourceDir%\.nuget\packages.builds -platform=%__BuildArch% -MsBuildLog=!__MsbuildLog! -MsBuildWrn=!__MsbuildWrn! -MsBuildErr=!__MsbuildErr! %__RunArgs% %__UnprocessedBuildArgs%
if not !errorlevel! == 0 (
echo %__MsgPrefix%Error: Nuget package generation failed build failed. Refer to the build log files for details:
echo "%__LogsDir%\Nuget_%__BuildOS%__%__BuildArch%__%__BuildType%.log"
echo "%__LogsDir%\Nuget_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn"
echo "%__LogsDir%\Nuget_%__BuildOS%__%__BuildArch%__%__BuildType%.err"
exit /b 1
)
)
REM =========================================================================================
REM ===
REM === Test build section
REM ===
REM =========================================================================================
if %__BuildTests% EQU 1 (
echo %__MsgPrefix%Commencing build of tests for %__BuildOS%.%__BuildArch%.%__BuildType%
REM Construct the arguments to pass to the test build script.
rem arm64 builds currently use private toolset which has not been released yet
REM TODO, remove once the toolset is open.
if /i "%__BuildArch%" == "arm64" call :PrivateToolSet
echo "%__ProjectDir%\build-test.cmd %__BuildArch% %__BuildType% %__UnprocessedBuildArgs%"
@call %__ProjectDir%\build-test.cmd %__BuildArch% %__BuildType% %__UnprocessedBuildArgs%
if not !errorlevel! == 0 (
REM buildtest.cmd has already emitted an error message and mentioned the build log file to examine.
exit /b 1
)
)
REM =========================================================================================
REM ===
REM === All builds complete!
REM ===
REM =========================================================================================
echo %__MsgPrefix%Repo successfully built. Finished at %TIME%
echo %__MsgPrefix%Product binaries are available at !__BinDir!
if %__BuildTests% EQU 1 (
echo %__MsgPrefix%Test binaries are available at !__TestBinDir!
)
exit /b 0
REM =========================================================================================
REM ===
REM === Handle the "all" case.
REM ===
REM =========================================================================================
:BuildAll
set __BuildArchList=
set /A __TotalSpecifiedBuildArch=__BuildArchX64 + __BuildArchX86 + __BuildArchArm + __BuildArchArm64
if %__TotalSpecifiedBuildArch% EQU 0 (
REM Nothing specified means we want to build all architectures.
set __BuildArchList=x64 x86 arm arm64
)
REM Otherwise, add all the specified architectures to the list.
if %__BuildArchX64%==1 set __BuildArchList=%__BuildArchList% x64
if %__BuildArchX86%==1 set __BuildArchList=%__BuildArchList% x86
if %__BuildArchArm%==1 set __BuildArchList=%__BuildArchList% arm
if %__BuildArchArm64%==1 set __BuildArchList=%__BuildArchList% arm64
set __BuildTypeList=
set /A __TotalSpecifiedBuildType=__BuildTypeDebug + __BuildTypeChecked + __BuildTypeRelease
if %__TotalSpecifiedBuildType% EQU 0 (
REM Nothing specified means we want to build all build types.
set __BuildTypeList=Debug Checked Release
)
if %__BuildTypeDebug%==1 set __BuildTypeList=%__BuildTypeList% Debug
if %__BuildTypeChecked%==1 set __BuildTypeList=%__BuildTypeList% Checked
if %__BuildTypeRelease%==1 set __BuildTypeList=%__BuildTypeList% Release
REM Create a temporary file to collect build results. We always build all flavors specified, and
REM report a summary of the results at the end.
set __AllBuildSuccess=true
set __BuildResultFile=%TEMP%\build-all-summary-%RANDOM%.txt
if exist %__BuildResultFile% del /f /q %__BuildResultFile%
for %%i in (%__BuildArchList%) do (
for %%j in (%__BuildTypeList%) do (
call :BuildOne %%i %%j
)
)
if %__AllBuildSuccess%==true (
echo %__MsgPrefix%All builds succeeded!
exit /b 0
) else (
echo %__MsgPrefix%Builds failed:
type %__BuildResultFile%
del /f /q %__BuildResultFile%
exit /b 1
)
REM This code is unreachable, but leaving it nonetheless, just in case things change.
exit /b 99
:BuildOne
set __BuildArch=%1
set __BuildType=%2
set __NextCmd=call %__ThisScriptFull% %__BuildArch% %__BuildType% %__PassThroughArgs%
echo %__MsgPrefix%Invoking: %__NextCmd%
%__NextCmd%
if not !errorlevel! == 0 (
echo %__MsgPrefix% %__BuildArch% %__BuildType% %__PassThroughArgs% >> %__BuildResultFile%
set __AllBuildSuccess=false
)
exit /b 0
REM =========================================================================================
REM ===
REM === Helper routines
REM ===
REM =========================================================================================
:CrossgenFailure
exit /b 1
:Usage
echo.
echo Build the CoreCLR repo.
echo.
echo Usage:
echo build.cmd [option1] [option2]
echo or:
echo build.cmd all [option1] [option2] -- ...
echo.
echo All arguments are optional. The options are:
echo.
echo.-? -h -help --help: view this message.
echo -all: Builds all configurations and platforms.
echo Build architecture: one of -x64, -x86, -arm, -arm64 ^(default: -x64^).
echo Build type: one of -Debug, -Checked, -Release ^(default: -Debug^).
echo -- ... : all arguments following this tag will be passed directly to msbuild.
echo mscorlib version: one of -freebsdmscorlib, -linuxmscorlib, -netbsdmscorlib, -osxmscorlib,
echo or -windowsmscorlib. If one of these is passed, only System.Private.CoreLib is built,
echo for the specified platform ^(FreeBSD, Linux, NetBSD, OS X or Windows,
echo respectively^).
echo add nativemscorlib to go further and build the native image for designated mscorlib.
echo -toolset_dir ^<dir^> : set the toolset directory -- Arm64 use only. Required for Arm64 builds.
echo -nopgooptimize: do not use profile guided optimizations.
echo -enforcepgo: verify after the build that PGO was used for key DLLs, and fail the build if not
echo -pgoinstrument: generate instrumented code for profile guided optimization enabled binaries.
echo -ibcinstrument: generate IBC-tuning-enabled native images when invoking crossgen.
echo -configureonly: skip all builds; only run CMake ^(default: CMake and builds are run^)
echo -skipconfigure: skip CMake ^(default: CMake is run^)
echo -skipmscorlib: skip building System.Private.CoreLib ^(default: System.Private.CoreLib is built^).
echo -skipnative: skip building native components ^(default: native components are built^).
echo -skiptests: skip building tests ^(default: tests are built^).
echo -skipbuildpackages: skip building nuget packages ^(default: packages are built^).
echo -skiprestoreoptdata: skip restoring optimization data used by profile-based optimizations.
echo -buildstandalonegc: builds the GC in a standalone mode.
echo -skiprestore: skip restoring packages ^(default: packages are restored during build^).
echo -disableoss: Disable Open Source Signing for System.Private.CoreLib.
echo -priority=^<N^> : specify a set of test that will be built and run, with priority N.
echo -sequential: force a non-parallel build ^(default is to build in parallel
echo using all processors^).
echo -officialbuildid=^<ID^>: specify the official build ID to be used by this build.
echo -Rebuild: passes /t:rebuild to the build projects.
echo portable : build for portable RID.
echo.
echo If "all" is specified, then all build architectures and types are built. If, in addition,
echo one or more build architectures or types is specified, then only those build architectures
echo and types are built.
echo.
echo For example:
echo build -all
echo -- builds all architectures, and all build types per architecture
echo build -all -x86
echo -- builds all build types for x86
echo build -all -x64 -x86 -Checked -Release
echo -- builds x64 and x86 architectures, Checked and Release build types for each
exit /b 1
:NoDIA
echo Error: DIA SDK is missing at "%VSINSTALLDIR%DIA SDK". ^
This is due to a bug in the Visual Studio installer. It does not install DIA SDK at "%VSINSTALLDIR%" but rather ^
at the install location of previous Visual Studio version. The workaround is to copy the DIA SDK folder from the Visual Studio install location ^
of the previous version to "%VSINSTALLDIR%" and then build.
:: DIA SDK not included in Express editions
echo Visual Studio Express does not include the DIA SDK. ^
You need Visual Studio 2015 or 2017 (Community is free).
echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites
exit /b 1
:PrivateToolSet
echo %__MsgPrefix% Setting Up the usage of __ToolsetDir:%__ToolsetDir%
if /i "%__ToolsetDir%" == "" (
echo %__MsgPrefix%Error: A toolset directory is required for the Arm64 Windows build. Use the toolset_dir argument.
exit /b 1
)
if not exist "%__ToolsetDir%"\buildenv_arm64.cmd goto :Not_EWDK
call "%__ToolsetDir%"\buildenv_arm64.cmd
exit /b 0
:Not_EWDK
set PATH=%__ToolsetDir%\VC_sdk\bin;%PATH%
set LIB=%__ToolsetDir%\VC_sdk\lib\arm64;%__ToolsetDir%\sdpublic\sdk\lib\arm64
set INCLUDE=^
%__ToolsetDir%\VC_sdk\inc;^
%__ToolsetDir%\sdpublic\sdk\inc;^
%__ToolsetDir%\sdpublic\shared\inc;^
%__ToolsetDir%\sdpublic\shared\inc\minwin;^
%__ToolsetDir%\sdpublic\sdk\inc\ucrt;^
%__ToolsetDir%\sdpublic\sdk\inc\minwin;^
%__ToolsetDir%\sdpublic\sdk\inc\mincore;^
%__ToolsetDir%\sdpublic\sdk\inc\abi;^
%__ToolsetDir%\sdpublic\sdk\inc\clientcore;^
%__ToolsetDir%\diasdk\include
exit /b 0
| tijoytom/coreclr | build.cmd | bat | mit | 38,664 |
@echo off
msiexec /x Setup.msi /qn /l*v c:\msi.trace
@pause | ZooMMX/Omoikane | 3rd party/RTE/Install/x64/UninstallOnly.bat | bat | gpl-2.0 | 61 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\serialport\bin\serialportTerminal.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\serialport\bin\serialportTerminal.js" %*
) | kooksee/TIOT | test/node_modules/.bin/serialportterm.cmd | bat | gpl-2.0 | 220 |
set SCRIPT=%0
rem determine Elasticsearch home; to do this, we strip from the path until we
rem find bin, and then strip bin (there is an assumption here that there is no
rem nested directory under bin also named bin)
for %%I in (%SCRIPT%) do set ES_HOME=%%~dpI
:es_home_loop
for %%I in ("%ES_HOME:~1,-1%") do set DIRNAME=%%~nxI
if not "%DIRNAME%" == "bin" (
for %%I in ("%ES_HOME%..") do set ES_HOME=%%~dpfI
goto es_home_loop
)
for %%I in ("%ES_HOME%..") do set ES_HOME=%%~dpfI
rem now set the classpath
set ES_CLASSPATH=!ES_HOME!\lib\*
rem now set the path to java
if defined JAVA_HOME (
set JAVA="%JAVA_HOME%\bin\java.exe"
) else (
for %%I in (java.exe) do set JAVA="%%~$PATH:I"
)
if not exist %JAVA% (
echo could not find java; set JAVA_HOME or ensure java is in PATH 1>&2
exit /b 1
)
rem do not let JAVA_TOOL_OPTIONS slip in (as the JVM does by default)
if defined JAVA_TOOL_OPTIONS (
echo warning: ignoring JAVA_TOOL_OPTIONS=%JAVA_TOOL_OPTIONS%
set JAVA_TOOL_OPTIONS=
)
rem JAVA_OPTS is not a built-in JVM mechanism but some people think it is so we
rem warn them that we are not observing the value of %JAVA_OPTS%
if defined JAVA_OPTS (
(echo|set /p=warning: ignoring JAVA_OPTS=%JAVA_OPTS%; )
echo pass JVM parameters via ES_JAVA_OPTS
)
rem check the Java version
%JAVA% -cp "%ES_CLASSPATH%" "org.elasticsearch.tools.java_version_checker.JavaVersionChecker" || exit /b 1
set HOSTNAME=%COMPUTERNAME%
if not defined ES_PATH_CONF (
set ES_PATH_CONF=!ES_HOME!\config
)
rem now make ES_PATH_CONF absolute
for %%I in ("%ES_PATH_CONF%..") do set ES_PATH_CONF=%%~dpfI
set ES_DISTRIBUTION_FLAVOR=${es.distribution.flavor}
set ES_DISTRIBUTION_TYPE=${es.distribution.type}
if not defined ES_TMPDIR (
set ES_TMPDIR=!TMP!\elasticsearch
if not exist "!ES_TMPDIR!" (
mkdir "!ES_TMPDIR!"
)
)
| gfyoung/elasticsearch | distribution/src/bin/elasticsearch-env.bat | bat | apache-2.0 | 1,828 |
:: Licensed to the Apache Software Foundation (ASF) under one
:: or more contributor license agreements. See the NOTICE file
:: distributed with this work for additional information
:: regarding copyright ownership. The ASF licenses this file
:: to you under the Apache License, Version 2.0 (the
:: "License"); you may not use this file except in compliance
:: with the License. You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing,
:: software distributed under the License is distributed on an
:: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
:: KIND, either express or implied. See the License for the
:: specific language governing permissions and limitations
:: under the License.
@ECHO OFF
SET script_path="%~dp0incrementversion"
IF EXIST %script_path% (
node "%script_path%" %*
) ELSE (
ECHO.
ECHO ERROR: Could not find 'incrementversion' script in 'bin' folder, aborting...>&2
EXIT /B 1
) | Icenium/cordova-docs | tools/bin/incrementversion.bat | bat | apache-2.0 | 1,032 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\watchify\bin\cmd.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\watchify\bin\cmd.js" %*
) | marcusfaccion/unnamed_app | vendor/bower/mapbox-directions.js/node_modules/.bin/watchify.cmd | bat | gpl-3.0 | 180 |
@echo off
REM Copyright (c) Microsoft Corporation. All rights reserved.
REM Licensed under the MIT License.
setlocal
for /f "usebackq delims=" %%i in (`where pwsh 2^>nul`) do (
set _cmd=%%i
)
if "%_cmd%"=="" (
echo Error: PowerShell not found. Please visit https://github.com/powershell/powershell for install instructions.
exit /b 2
)
call "%_cmd%" -NoLogo -NoProfile -File "%~dpn0.ps1" %*
| Azure/azure-sdk-for-java | eng/common/TestResources/Update-TestResources.cmd | bat | mit | 408 |
@echo off
..\CloudSyncHelper.exe uninstall --sudo
pause | paulmarsy/CloudSyncHelper | src/CloudSyncHelper/Utility Batch Files/Uninstall.bat | bat | mit | 55 |
java -jar server.jar server_settings.ini | GBT3101/StarcraftGeneticAlgorithm | TournamentManager/server/run_server.bat | bat | mit | 40 |
call .\helgoboss-ni-config
if "%~3" == "" (
set FILE_NAME=%~1
) ELSE (
set FILE_NAME=%~3
)
sfk replace "%VST_PLUGINS_32_DIR%\%FILE_NAME%.dll" "/Software\Native Instruments\/Software\NI %~2\/" -case -firsthit -yes
sfk replace "%VST_PLUGINS_64_DIR%\%FILE_NAME%.dll" "/Software\Native Instruments\/Software\NI %~2\/" -case -firsthit -yes
sfk replace "%NI_PROGRAMS_DIR%\%~1\%FILE_NAME%.exe" "/Software\Native Instruments\/Software\NI %~2\/" -case -firsthit -yes
reg copy "HKEY_LOCAL_MACHINE\SOFTWARE\Native Instruments\%~1" "HKEY_LOCAL_MACHINE\SOFTWARE\NI %~2\%~1" /s /f | helgoboss/native-instruments-fix | helgoboss-ni-fix.bat | bat | mit | 574 |
set CDIR=%~dp0
reg add HKCU\Environment /v HQENGINE_VS2013_X86_LIB_DEB_PATH /t REG_SZ /d %CDIR%\Output\Debug\
reg add HKCU\Environment /v HQENGINE_VS2013_X86_LIB_REL_PATH /t REG_SZ /d %CDIR%\Output\Release\
reg add HKCU\Environment /v HQENGINE_VS2013_X86_LIB_STATIC_CRT_DEB_PATH /t REG_SZ /d "%CDIR%\Output\Debug static CRT\"
reg add HKCU\Environment /v HQENGINE_VS2013_X86_LIB_STATIC_CRT_REL_PATH /t REG_SZ /d "%CDIR%\Output\Release static CRT\" | kakashidinho/HQEngine | HQEngine/VS2013/Desktop/setLibPathEnv.bat | bat | mit | 451 |
@ECHO OFF
REM ********************************************************************************
REM This script is for debugging chocolatey packaging issues. it will uninstall
REM the existing chocolatey package. It can be used before or after (most times
REM both) the install.bat
REM
REM Usage: uninstall.bat
REM ********************************************************************************
cuninst -y {{GITHUB_PROJECT_NAME}}.portable
| MasterDevs/ChocolateyCoolWhip | source/MasterDevs.ChocolateyCoolWhip/MasterDevs.ChocolateyCoolWhip/ChocolateyPackage/content/Chocolatey/uninstall.bat | bat | mit | 445 |
set JAVA_HOME=c:\apps\jdk1.3
set JAVA_HOME=c:\apps\jdk1.4.2_03
set MICA_HOME=c:\projects\mica
set MICAD_HOME=c:\projects\micad
set JAXP_HOME=c:\apps\jaxp-1.1
set SWFM_HOME=c:\projects\util
| justacoder/mica | build/setenv.bat | bat | mit | 197 |
@echo off
java -cp password-manager-${project.version}.jar;bcprov-jdk15on-1.56.jar name.jgn196.passwords.manager.Manager %* | jgn196/keyring | src/scripts/KeyRing.bat | bat | mit | 123 |
set current=%cd%
set parent=%cd%\..
set grandparent=%cd%\..\..
set root=C:\Users\%USERNAME%\
set target=%root%\TaskShark\
# Create proxy batch file
(## Delete unnecessary files
echo rmdir /Q /S .git
echo del .gitignore
echo del setup.bat
## Move files to TaskShark folder in user directory
echo mkdir %target%
echo move LICENSE %target%
echo move HISTORY.md %target%
echo move README.md %target%
echo move MetroFramework.dll %target%
echo move MetroFramework.Design.dll %target%
echo move MetroFramework.Fonts.dll %target%
echo move help.png %target%
echo move shark.ico %target%
echo move TaskShark.exe %target%
echo move uninst.bat %target%
echo move DevGuide.pdf %target%
echo move UserGuide.pdf %target%
## Move launcher to user directory
echo move ts.bat %root%
## Remove holding directory
echo cd %parent%
echo rmdir %current%
echo del \F release-master.zip
echo cd %grandparent%
echo rmdir /Q /S release-master
echo del \F release-master.zip
## Delete proxy batch file
echo cd %root%
echo start cmd
echo explorer .
echo del setup.bat
echo exit) > %root%\setup.bat
# Run proxy batch file
%root%\setup.bat | cs2103aug2015-t13-3c/release | setup.bat | bat | gpl-2.0 | 1,116 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\libpnicorePythonbindings.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\libpnicorePythonbindings.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
| pni-libraries/python-pni | doc/sphinx/make.bat | bat | gpl-2.0 | 5,132 |
cd compiled\Settings\common
call get_geo_ip.bat
cd ..
cd ..
cd ..
| pavel-pimenov/flylinkdc-r5xx | update_geo_ip.bat | bat | gpl-2.0 | 66 |
cmd_libbb/strrstr.o := gcc -Wp,-MD,libbb/.strrstr.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -Os -march=i386 -mpreferred-stack-boundary=2 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(strrstr)" -D"KBUILD_MODNAME=KBUILD_STR(strrstr)" -c -o libbb/strrstr.o libbb/strrstr.c
deps_libbb/strrstr.o := \
libbb/strrstr.c \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/limits.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/i386-linux-gnu/bits/predefs.h \
/usr/include/i386-linux-gnu/sys/cdefs.h \
/usr/include/i386-linux-gnu/bits/wordsize.h \
/usr/include/i386-linux-gnu/gnu/stubs.h \
/usr/include/i386-linux-gnu/gnu/stubs-32.h \
/usr/include/i386-linux-gnu/bits/posix1_lim.h \
/usr/include/i386-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/i386-linux-gnu/bits/posix2_lim.h \
/usr/include/i386-linux-gnu/bits/xopen_lim.h \
/usr/include/i386-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/i386-linux-gnu/bits/byteswap.h \
/usr/include/endian.h \
/usr/include/i386-linux-gnu/bits/endian.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h \
/usr/include/stdint.h \
/usr/include/i386-linux-gnu/bits/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdbool.h \
/usr/include/unistd.h \
/usr/include/i386-linux-gnu/bits/posix_opt.h \
/usr/include/i386-linux-gnu/bits/environments.h \
/usr/include/i386-linux-gnu/bits/types.h \
/usr/include/i386-linux-gnu/bits/typesizes.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h \
/usr/include/i386-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/i386-linux-gnu/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/i386-linux-gnu/bits/dirent.h \
/usr/include/errno.h \
/usr/include/i386-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/i386-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/i386-linux-gnu/bits/fcntl.h \
/usr/include/i386-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/i386-linux-gnu/sys/select.h \
/usr/include/i386-linux-gnu/bits/select.h \
/usr/include/i386-linux-gnu/bits/sigset.h \
/usr/include/i386-linux-gnu/bits/time.h \
/usr/include/i386-linux-gnu/bits/select2.h \
/usr/include/i386-linux-gnu/sys/sysmacros.h \
/usr/include/i386-linux-gnu/bits/pthreadtypes.h \
/usr/include/i386-linux-gnu/bits/uio.h \
/usr/include/i386-linux-gnu/bits/stat.h \
/usr/include/i386-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/i386-linux-gnu/sys/socket.h \
/usr/include/i386-linux-gnu/sys/uio.h \
/usr/include/i386-linux-gnu/bits/socket.h \
/usr/include/i386-linux-gnu/bits/sockaddr.h \
/usr/include/i386-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/i386-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/i386-linux-gnu/bits/socket2.h \
/usr/include/i386-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/i386-linux-gnu/bits/siginfo.h \
/usr/include/i386-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/i386-linux-gnu/bits/setjmp.h \
/usr/include/i386-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/i386-linux-gnu/bits/signum.h \
/usr/include/i386-linux-gnu/bits/sigaction.h \
/usr/include/i386-linux-gnu/bits/sigcontext.h \
/usr/include/i386-linux-gnu/asm/sigcontext.h \
/usr/include/linux/types.h \
/usr/include/i386-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h \
/usr/include/asm-generic/int-ll64.h \
/usr/include/i386-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
$(wildcard include/config/64bit.h) \
/usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/i386-linux-gnu/asm/posix_types.h \
/usr/include/i386-linux-gnu/asm/posix_types_32.h \
/usr/include/i386-linux-gnu/bits/sigstack.h \
/usr/include/i386-linux-gnu/sys/ucontext.h \
/usr/include/i386-linux-gnu/bits/sigthread.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h \
/usr/include/i386-linux-gnu/bits/sys_errlist.h \
/usr/include/i386-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/i386-linux-gnu/bits/waitflags.h \
/usr/include/i386-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/i386-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/i386-linux-gnu/bits/string3.h \
/usr/include/libgen.h \
/usr/include/poll.h \
/usr/include/i386-linux-gnu/sys/poll.h \
/usr/include/i386-linux-gnu/bits/poll.h \
/usr/include/i386-linux-gnu/sys/ioctl.h \
/usr/include/i386-linux-gnu/bits/ioctls.h \
/usr/include/i386-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/i386-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/i386-linux-gnu/bits/ioctl-types.h \
/usr/include/i386-linux-gnu/sys/ttydefaults.h \
/usr/include/i386-linux-gnu/sys/mman.h \
/usr/include/i386-linux-gnu/bits/mman.h \
/usr/include/i386-linux-gnu/sys/stat.h \
/usr/include/i386-linux-gnu/sys/time.h \
/usr/include/i386-linux-gnu/sys/wait.h \
/usr/include/i386-linux-gnu/sys/resource.h \
/usr/include/i386-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/i386-linux-gnu/bits/termios.h \
/usr/include/i386-linux-gnu/bits/timex.h \
/usr/include/i386-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/i386-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/i386-linux-gnu/sys/statfs.h \
/usr/include/i386-linux-gnu/bits/statfs.h \
/usr/include/utmp.h \
/usr/include/i386-linux-gnu/bits/utmp.h \
/usr/include/arpa/inet.h \
include/xatonum.h \
libbb/strrstr.o: $(deps_libbb/strrstr.o)
$(deps_libbb/strrstr.o):
| valentinthirion/android-tracebox-busybox | libbb/.strrstr.o (Valentin-Thirions-MacBook-Airs in Konflikt stehende Kopie 2014-05-21).cmd | bat | gpl-2.0 | 10,114 |
cmd_drivers/video/omap2/built-in.o := /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o drivers/video/omap2/built-in.o drivers/video/omap2/displays/built-in.o
| RittikBhowmik/Project-Crater-Kernel-GT-i9152 | drivers/video/omap2/.built-in.o.cmd | bat | gpl-2.0 | 201 |
cmd_arch/arm/kernel/entry-common.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/kernel/.entry-common.o.d -nostdinc -isystem /home/gabe/arm-2009q3/arm-2009q3/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/kernel/entry-common.o arch/arm/kernel/entry-common.S
deps_arch/arm/kernel/entry-common.o := \
arch/arm/kernel/entry-common.S \
$(wildcard include/config/function/tracer.h) \
$(wildcard include/config/dynamic/ftrace.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/oabi/compat.h) \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/aeabi.h) \
$(wildcard include/config/alignment/trap.h) \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/unistd.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/ftrace.h \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/arm/unwind.h) \
arch/arm/mach-msm/include/mach/entry-macro.S \
$(wildcard include/config/msm/vic.h) \
$(wildcard include/config/arm/gic.h) \
arch/arm/mach-msm/include/mach/entry-macro-qgic.S \
$(wildcard include/config/request/ipi.h) \
arch/arm/mach-msm/include/mach/hardware.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/hardware/gic.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/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/unwind.h \
arch/arm/kernel/entry-header.S \
$(wildcard include/config/cpu/32v6k.h) \
$(wildcard include/config/cpu/v6.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/linkage.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/linkage.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/ptrace.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/hwcap.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/asm-offsets.h \
include/generated/asm-offsets.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
arch/arm/kernel/calls.S \
arch/arm/kernel/entry-common.o: $(deps_arch/arm/kernel/entry-common.o)
$(deps_arch/arm/kernel/entry-common.o):
| dagnarf/sgh-i717-dagkernel | arch/arm/kernel/.entry-common.o.cmd | bat | gpl-2.0 | 3,592 |
@echo off
rem Copies all third-party libraries (DLLs) used by our tools
rem Parameter %1 contains the target path (..\..\Output is default)
if [%1] == [] (
set targetPath=..\..\output\
) else (
set targetPath=%1\
)
if not exist %targetPath%libglib-2.0-0.dll copy ..\..\win-external-libs\lib\glib-2.0\libglib-2.0-0.dll %targetPath%
if not exist %targetPath%libgthread-2.0-0.dll copy ..\..\win-external-libs\lib\glib-2.0\libgthread-2.0-0.dll %targetPath%
if not exist %targetPath%intl.dll copy ..\..\win-external-libs\lib\glib-2.0\intl.dll %targetPath%
if not exist %targetPath%iconv.dll copy ..\..\win-external-libs\lib\libxml\iconv.dll %targetPath%
if not exist %targetPath%libxml2.dll copy ..\..\win-external-libs\lib\libxml\libxml2.dll %targetPath%
if not exist %targetPath%zlib.dll copy ..\..\win-external-libs\lib\libxml\zlib.dll %targetPath%
if not exist %targetPath%libexpat.dll copy ..\..\win-external-libs\lib\expat\libexpat.dll %targetPath%
if not exist %targetPath%libfcgi.dll copy ..\..\win-external-libs\lib\fcgi\libfcgi.dll %targetPath%
if not exist %targetPath%libmySQL.dll copy ..\..\win-external-libs\lib\mysql\opt\libmysql.dll %targetPath%
if not exist %targetPath%libpng12.dll copy ..\..\win-external-libs\lib\libpng\libpng12.dll %targetPath%
if not exist %targetPath%lua50.dll copy ..\..\win-external-libs\lib\lua\lua50.dll %targetPath%
if not exist %targetPath%pcre3.dll copy ..\..\win-external-libs\lib\pcre\pcre3.dll %targetPath%
if not exist %targetPath%python24.dll copy ..\..\win-external-libs\lib\python\python24.dll %targetPath%
if not exist %targetPath%zlib1.dll copy ..\..\win-external-libs\lib\zlib\zlib1.dll %targetPath%
if not exist %targetPath%freetype6.dll copy ..\..\win-external-libs\lib\freetype2\freetype6.dll %targetPath%
if not exist %targetPath%php5ts.dll copy ..\..\win-external-libs\lib\php-5.0.3\php5ts.dll %targetPath%
rem Finally a few system and Borland DLLs.
if not exist %targetPath%cc3270.dll copy ..\..\win-external-libs\lib\windows\cc3270.dll %targetPath%
if not exist %targetPath%cc3270mt.dll copy ..\..\win-external-libs\lib\windows\cc3270mt.dll %targetPath%
if not exist %targetPath%msvcp71.dll copy ..\..\win-external-libs\lib\windows\msvcp71.dll %targetPath%
if not exist %targetPath%msvcr71.dll copy ..\..\win-external-libs\lib\windows\msvcr71.dll %targetPath%
rem Since it does not fit elsewhere copy also the COPYING file here.
if not exist %targetPath%COPYING copy ..\COPYING %targetPath%
| cyberbeat/mysql-gui-tools | common/build/Copy3rdPartyLibraries.cmd | bat | gpl-2.0 | 2,517 |
cmd_arch/arm/mach-tegra/odm_kit/star/adaptations/gpio_ext/built-in.o := arm-linux-gnueabi-ld -EL -r -o arch/arm/mach-tegra/odm_kit/star/adaptations/gpio_ext/built-in.o arch/arm/mach-tegra/odm_kit/star/adaptations/gpio_ext/gpio_ext_hal.o arch/arm/mach-tegra/odm_kit/star/adaptations/gpio_ext/gpio_ext_null.o arch/arm/mach-tegra/odm_kit/star/adaptations/gpio_ext/gpio_pcf50626.o
| spica234/HP-TestBuild-Repo-upwords-Sr3R | arch/arm/mach-tegra/odm_kit/star/adaptations/gpio_ext/.built-in.o.cmd | bat | gpl-2.0 | 382 |
cmd_crypto/async_tx/async_raid6_recov.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o crypto/async_tx/async_raid6_recov.ko crypto/async_tx/async_raid6_recov.o crypto/async_tx/async_raid6_recov.mod.o
| avareldalton85/rpi2-linux-rt | crypto/async_tx/.async_raid6_recov.ko.cmd | bat | gpl-2.0 | 303 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=.build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Asynch.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Asynch.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
| Iowa-Flood-Center/asynch | docs/make.bat | bat | gpl-2.0 | 7,451 |
cmd_fs/sysfs/built-in.o := arm-poky-linux-gnueabi-ld -EL -r -o fs/sysfs/built-in.o fs/sysfs/file.o fs/sysfs/dir.o fs/sysfs/symlink.o fs/sysfs/mount.o fs/sysfs/group.o
| heyoufei2/yocto3.14.38_kernel | fs/sysfs/.built-in.o.cmd | bat | gpl-2.0 | 172 |
cmd_sound/soc/nuc900/built-in.o := rm -f sound/soc/nuc900/built-in.o; /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-ar rcsD sound/soc/nuc900/built-in.o
| evan6200/cirrfy_pos | sound/soc/nuc900/.built-in.o.cmd | bat | gpl-2.0 | 217 |
cmd_arch/arm/lib/memchr.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.memchr.o.d -nostdinc -isystem /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/lithium/kfhd/kernel/android-3.0/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-omap2/include -Iarch/arm/plat-omap/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/memchr.o arch/arm/lib/memchr.S
source_arch/arm/lib/memchr.o := arch/arm/lib/memchr.S
deps_arch/arm/lib/memchr.o := \
/home/lithium/kfhd/kernel/android-3.0/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/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/linkage.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/hwcap.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/lib/memchr.o: $(deps_arch/arm/lib/memchr.o)
$(deps_arch/arm/lib/memchr.o):
| 0xD34D/kernel_amazon_tate | arch/arm/lib/.memchr.o.cmd | bat | gpl-2.0 | 2,046 |
set PATH=D:\pessoal\environment\jdk\jdk-8u77\jre\bin;%PATH%
java -classpath libs/*:plugins/*:terminal-1.0-SNAPSHOT.jar pt.caughtonnet.tracker.terminal.Terminal
| CarlAtComputer/tracker | src/java_version/tracker/terminal/run/run.bat | bat | gpl-2.0 | 162 |
cmd_editors/lib.a := rm -f editors/lib.a; mips-openwrt-linux-uclibc-ar rcs editors/lib.a editors/awk.o editors/cmp.o editors/sed.o editors/vi.o
| shizhai/wprobe | build_dir/target-mips_r2_uClibc-0.9.33.2/busybox-1.19.4/editors/.lib.a.cmd | bat | gpl-2.0 | 145 |
set DRIVER=kumi_98
nasmw -f bin -o %DRIVER%.com %DRIVER%.asm
| rururutan/hoot-patches | pc98/familysoft/majyoko_kumi/src/comp.bat | bat | gpl-3.0 | 61 |
git checkout %%(git rev-list -n 1 HEAD -- "%%1")^ -- "%%1" | Erotemic/local | windows/oldscripts/gg-recover.bat | bat | gpl-3.0 | 62 |
:: Necessary Qt dlls are packaged with every release.
:: These dlls are not included in the SVN.
:: They need to be copied into the dev area from the Qt install.
:: Qt-Framework is simply the Qt runtime dlls built against the MSVC 2008 compiler
:: It can be found at: http://qt.nokia.com/downloads
:: If you build SimC with MSVC 2008, then you need to use dlls from Qt-Framework
:: As of this writing, the default locations from which to gather the dlls are:
:: Qt-Framework: C:\Qt\Qt5.2.1\
:: Update the qt_dir as necessary
set qt_dir=C:\Qt\qt5.2.1\5.2.1\msvc2012
set install=simc-win32-release
set redist="C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\redist\x86\Microsoft.VC110.CRT"
:: IMPORTANT NOTE FOR DEBUGGING
:: This script will ONLY copy the optimized Qt dlls
:: The MSVC 2008 simcqt.vcproj file is setup to use optimized dlls for both Debug/Release builds
:: This script needs to be smarter if you wish to use the interactive debugger in the Qt SDK
:: The debug Qt dlls are named: Qt___d4.dll
:: Delete old folder/files
rd %install% /s /q
:: Copying new dlls
xcopy %qt_dir%\plugins\imageformats %install%\imageformats\
xcopy %redist%\msvcp110.dll %install%\
xcopy %redist%\msvcr110.dll %install%\
xcopy %redist%\vccorlib110.dll %install%\
xcopy %qt_dir%\bin\Qt5Core.dll %install%\
xcopy %qt_dir%\bin\Qt5Positioning.dll %install%\
xcopy %qt_dir%\bin\Qt5OpenGL.dll %install%\
xcopy %qt_dir%\bin\Qt5Quick.dll %install%\
xcopy %qt_dir%\bin\Qt5PrintSupport.dll %install%\
xcopy %qt_dir%\bin\Qt5Qml.dll %install%\
xcopy %qt_dir%\bin\Qt5Sql.dll %install%\
xcopy %qt_dir%\bin\Qt5Gui.dll %install%\
xcopy %qt_dir%\bin\Qt5Widgets.dll %install%\
xcopy %qt_dir%\bin\Qt5Network.dll %install%\
xcopy %qt_dir%\bin\Qt5WebKit.dll %install%\
xcopy %qt_dir%\bin\Qt5WebKitWidgets.dll %install%\
xcopy %qt_dir%\bin\Qt5Multimedia.dll %install%\
xcopy %qt_dir%\bin\Qt5MultimediaWidgets.dll %install%\
xcopy %qt_dir%\bin\Qt5Sensors.dll %install%\
xcopy %qt_dir%\bin\libGLESv2.dll %install%\
xcopy %qt_dir%\bin\icudt51.dll %install%\
xcopy %qt_dir%\bin\icuin51.dll %install%\
xcopy %qt_dir%\bin\icuuc51.dll %install%\
xcopy %qt_dir%\bin\libEGL.dll %install%\
xcopy %qt_dir%\bin\D3DCompiler_46.dll %install%\
xcopy %qt_dir%\plugins\platforms\qminimal.dll %install%\platforms\
xcopy %qt_dir%\plugins\platforms\qwindows.dll %install%\platforms\
:: Copy other relevant files for windows release
xcopy Welcome.html %install%\
xcopy Welcome.png %install%\
xcopy Simulationcraft.exe %install%\
xcopy simc.exe %install%\
xcopy readme.txt %install%\
xcopy Error.html %install%\
xcopy COPYING %install%\
xcopy Profiles %install%\profiles\ /s /e
xcopy C:\OpenSSL-Win32\bin\libeay32.dll %install%\
xcopy C:\OpenSSL-Win32\bin\ssleay32.dll %install%\ | utecht/simcraft_shaman | win32_release_msvc11.bat | bat | gpl-3.0 | 2,739 |
@echo off
TITLE Steadfast - PocketMine-MP for Production Servers!
cd /d %~dp0
if exist bin\php\php.exe (
if exist bin\mintty.exe (
start "" bin\mintty.exe -o Columns=88 -o Rows=32 -o AllowBlinking=0 -o FontQuality=3 -o Font="DejaVu Sans Mono" -o FontHeight=10 -o CursorType=0 -o Cu$
) else (
bin\php\php.exe -d enable_dl=On src/PocketMine-MP.php %*
)
) else (
if exist bin\mintty.exe (
start "" bin\mintty.exe -o Columns=88 -o Rows=32 -o AllowBlinking=0 -o FontQuality=3 -o Font="DejaVu Sans Mono" -o FontHeight=10 -o CursorType=0 -o Cu$
) else (
php -d enable_dl=On src/PocketMine-MP.php %*
)
)
| SteadfastMC/Steadfast | start.cmd | bat | lgpl-3.0 | 708 |
z:\users\jdhughes\documents\development\mf2015\msvs\mf2015\debug\mf6.exe
pause
| jdhughes-usgs/river-eel | examples/mf6/test024_Reilly/mf6_alt/runmodel.bat | bat | lgpl-3.0 | 79 |
ECHO OFF
CLS
ECHO Processing all examples
ECHO.
ECHO [01/25] A simple line chart
php -q %~dp0Example1.php
ECHO [02/25] A cubic curve graph
php -q %~dp0Example2.php
ECHO [03/25] An overlayed bar graph
php -q %~dp0Example3.php
ECHO [04/25] Showing how to draw area
php -q %~dp0Example4.php
ECHO [05/25] A limits graph
php -q %~dp0Example5.php
ECHO [06/25] A simple filled line graph
php -q %~dp0Example6.php
ECHO [07/25] A filled cubic curve graph
php -q %~dp0Example7.php
ECHO [08/25] A radar graph
php -q %~dp0Example8.php
ECHO [09/25] Showing how to use labels
php -q %~dp0Example9.php
ECHO [10/25] A 3D exploded pie graph
php -q %~dp0Example10.php
ECHO [11/25] A true bar graph
php -q %~dp0Example12.php
ECHO [12/25] A 2D exploded pie graph
php -q %~dp0Example13.php
ECHO [13/25] A smooth flat pie graph
php -q %~dp0Example14.php
ECHO [14/25] Playing with line style and pictures inclusion
php -q %~dp0Example15.php
ECHO [15/25] Importing CSV data
php -q %~dp0Example16.php
ECHO [16/25] Playing with axis
php -q %~dp0Example17.php
ECHO [17/25] Missing values
php -q %~dp0Example18.php
ECHO [18/25] Error reporting
php -q %~dp0Example19.php
ECHO [19/25] Stacked bar graph
php -q %~dp0Example20.php
ECHO [20/25] Playing with background
php -q %~dp0Example21.php
ECHO [21/25] Customizing plot charts
php -q %~dp0Example22.php
ECHO [22/25] Playing with background - Bis
php -q %~dp0Example23.php
ECHO [23/25] Naked and easy!
php -q %~dp0Naked.php
ECHO [24/25] Let's go fast, draw small!
php -q %~dp0SmallGraph.php
ECHO [25/25] A Small stacked chart
php -q %~dp0SmallStacked.php
ECHO.
ECHO Rendering complete!
PAUSE
| bjohnmer/SCA | lib/pChart.1.27b/buildAll.cmd | bat | unlicense | 1,720 |
@echo off
REM @author Nils Christian Ehmke
setlocal enabledelayedexpansion
SET JAVAARGS=-Dkieker.common.logging.Log=JDK -Djava.util.logging.config.file=./logging.properties -Xms56m -Xmx1024m
SET MAINCLASSNAME=kieker.tools.resourceMonitor.ResourceMonitor
REM Get the directory of this file and change the working directory to it.
cd %~dp0
REM Set every variable we will need for the execution.
SET BINDIR=%cd%
REM Now start the tool, but don't forget to deliver the parameters.
java %JAVAARGS% -cp "%BINDIR%\..\lib\*";"%BINDIR%\..\lib\sigar\*";"%BINDIR%\..\build\libs\*";"%BINDIR%" %MAINCLASSNAME% %*
REM Don't close the window immediately.
@echo on
PAUSE
| HaStr/kieker | bin/resourceMonitor.bat | bat | apache-2.0 | 663 |
@echo off
setlocal enableextensions
set url=https://svetovid.org/lib/svetovid-lib.jar
set folder=%ProgramFiles%\svetovid-lib
set file=svetovid-lib.jar
set variable=CLASSPATH
rem Check if administrator
net session >nul 2>&1
if errorLevel 1 (
echo Please run as administrator
exit /b
)
if not exist %file% (
echo Please download %file% to this folder from %url%
exit /b
)
rem Create the folder
mkdir "%folder%" >nul 2>&1
rem Copy the library
copy "%~dp0%file%" "%folder%\%file%" >nul 2>&1
rem Set the class path
setx "%variable%" "%folder%\%file%;." /m >nul 2>&1
| ivanpribela/svetovid-lib | installers/install-svetovid-lib.bat | bat | apache-2.0 | 578 |
start hashes.jar D:\TestHashes\FileToBeHashed.txt | viper123/Hashes | bin/hashes.bat | bat | apache-2.0 | 49 |
echo off
echo ɾ³ý³ÌÐò
rem rd /s /q "output/Debug"
echo ¿ªÊ¼±àÒë³ÌÐò
rem path %SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\
rem echo start >output\Build.log
rem %SYSTEMROOT%\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe LeaSearch.sln /t:Rebuild /p:Configuration=Debug /p:TargetFrameworkVersion=v4.5 /p:DisableOutOfProcTaskHost=true
rem %SYSTEMROOT%\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe LeaSearch.sln /t:Build /p:Configuration=Release /p:Platform="Any CPU";TargetFrameworkVersion=v4.5.2
"D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe" /rebuild "Release|AnyCPU" LeaSearch.sln
rem msbuild.exe LeaSearch.sln /t:Rebuild /p:Configuration=Release /p:VisualStudioVersion=14.0 /p:DisableOutOfProcTaskHost=true
rem /l:FileLogger,Microsoft.Build.Engine;logfile=output\Build.log
::msbuild .\src\ElectricManagement.Web\ElectricManagement.Web.csproj /t:ResolveReferences;Compile /t:_WPPCopyWebApplication /p:Configuration=Release /p:VisualStudioVersion=12.0 /p:WebProjectOutputDir=..\..\Release
::/l:FileLogger,Microsoft.Build.Engine;logfile=Build2.log
echo ±àÒë½áÊø
echo ´ò¿ªÄ¿Â¼
REM msbuild.exe Plugins\LeaSearch.Plugin.Baidu\LeaSearch.Plugin.Baidu.csproj /t:Build /p:Configuration=Release /p:DisableOutOfProcTaskHost=true
REM msbuild.exe Plugins\LeaSearch.Plugin.Calculator\LeaSearch.Plugin.Calculator.csproj /t:Build /p:Configuration=Release /p:DisableOutOfProcTaskHost=true
REM msbuild.exe Plugins\LeaSearch.Plugin.HelloWorld\LeaSearch.Plugin.HelloWorld.csproj /t:Build /p:Configuration=Release /p:DisableOutOfProcTaskHost=true
REM msbuild.exe Plugins\LeaSearch.Plugin.OpenUrl\LeaSearch.Plugin.OpenUrl.csproj /t:Build /p:Configuration=Release /p:DisableOutOfProcTaskHost=true
REM msbuild.exe Plugins\LeaSearch.Plugin.Programs\LeaSearch.Plugin.Programs.csproj /t:Build /p:Configuration=Release /p:DisableOutOfProcTaskHost=true
REM msbuild.exe Plugins\LeaSearch.Plugin.SystemControlPanel\LeaSearch.Plugin.SystemControlPanel.csproj /t:Build /p:Configuration=Release /p:DisableOutOfProcTaskHost=true
%windir%\explorer.exe output\Release
pause | leacoleaco/LeaSearch | build.bat | bat | apache-2.0 | 2,110 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\web-push\src\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\web-push\src\cli.js" %*
) | kovarus/vmworld-us-hackathon-2017 | hackathon-notification-lambda/node_modules/.bin/web-push.cmd | bat | apache-2.0 | 180 |
@echo off
"C:\Program Files\SyncToy 2.1\SyncToy.exe" %*
| greenlaw110/winenv | alias/synctoy.bat | bat | bsd-2-clause | 63 |
@echo off
rem------------------change it
rem -------------------------------------------------------------
rem Yii command line bootstrap script for Windows.
rem
rem @author Qiang Xue <qiang.xue@gmail.com>
rem @link http://www.yiiframework.com/
rem @copyright Copyright (c) 2008 Yii Software LLC
rem @license http://www.yiiframework.com/license/
rem -------------------------------------------------------------
@setlocal
set YII_PATH=%~dp0
if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe
"%PHP_COMMAND%" "%YII_PATH%yii" %*
@endlocal
| gurupavel/yii-project | yii.bat | bat | bsd-3-clause | 545 |
@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
set build-root=%1
cd %build-root%
rem -----------------------------------------------------------------------------
rem -- Make sure current git branch is 'develop'. If it isn't check out that
rem -- branch.
rem -----------------------------------------------------------------------------
for /f "delims=" %%i in ('git rev-parse --abbrev-ref HEAD') do set current_git_branch=%%i
if "%current_git_branch%" neq "develop" (
echo Switching git branch to 'develop'
git checkout develop
if %errorlevel% neq 0 exit /b %errorlevel%
)
rem -----------------------------------------------------------------------------
rem -- Call gen_docs.cmd to generate API docs afresh
rem -----------------------------------------------------------------------------
call %build-root%\build\gen_docs.cmd
rem -----------------------------------------------------------------------------
rem -- First, copy all the docs out to a temp folder.
rem -----------------------------------------------------------------------------
set temp_doc_dir=%temp%\azure-iot-sdks
if exist %temp_doc_dir% rd /s /q %temp_doc_dir%
if %errorlevel% neq 0 exit /b %errorlevel%
mkdir %temp_doc_dir%
if %errorlevel% neq 0 exit /b %errorlevel%
rem -----------------------------------------------------------------------------
rem -- Copy C SDK API docs
rem -----------------------------------------------------------------------------
mkdir %temp_doc_dir%\c\api_reference
xcopy /q /e /y c\doc\api_reference\html %temp_doc_dir%\c\api_reference
if %errorlevel% neq 0 exit /b %errorlevel%
rem -----------------------------------------------------------------------------
rem -- Copy Java Device SDK API docs
rem -----------------------------------------------------------------------------
mkdir %temp_doc_dir%\java\api_reference
xcopy /q /e /y java\device\doc\api_reference %temp_doc_dir%\java\api_reference
if %errorlevel% neq 0 exit /b %errorlevel%
rem -----------------------------------------------------------------------------
rem -- Copy Node.js Device & Service SDK API docs
rem -----------------------------------------------------------------------------
mkdir %temp_doc_dir%\node\api_reference
xcopy /q /e /y node\out %temp_doc_dir%\node\api_reference
if %errorlevel% neq 0 exit /b %errorlevel%
rem -----------------------------------------------------------------------------
rem -- Checkout gh-pages branch
rem -----------------------------------------------------------------------------
git checkout gh-pages
if %errorlevel% neq 0 exit /b %errorlevel%
rem -----------------------------------------------------------------------------
rem -- Copy the docs over from temp to current folder
rem -----------------------------------------------------------------------------
rd /s /q %build-root%\c
rd /s /q %build-root%\java
rd /s /q %build-root%\node
xcopy /e /y %temp_doc_dir% %build-root%
if %errorlevel% neq 0 exit /b %errorlevel%
echo Docs have been updated in gh-pages. You're in gh-pages branch now. Review the changes
echo and commit them if everything looks good.
| 5e8a91/Azure_C_Library_new | build/release/real_update_gh_pages.cmd | bat | mit | 3,260 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXORULE.S05_GenerateDAMAndDEM.MSOXORULE_S05_TC02_ServerGenerateSeparateDAM_ForOP_DEFER_ACTION_BelongToSeparateRuleProvider /testcontainer:..\..\MS-OXORULE\TestSuite\bin\Debug\MS-OXORULE_TestSuite.dll /runconfig:..\..\MS-OXORULE\MS-OXORULE.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeMAPI/Source/Scripts/MS-OXORULE/RunMSOXORULE_S05_TC02_ServerGenerateSeparateDAM_ForOP_DEFER_ACTION_BelongToSeparateRuleProvider.cmd | bat | mit | 359 |
@echo off
setlocal
set VD_CLIENT_HOME=%~dp0..
set CMD_LINE_ARGS=%1
if ""%1""=="""" goto doneStart
shift
:setupArgs
if ""%1""=="""" goto doneStart
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto setupArgs
:doneStart
set _JAVACMD=%JAVACMD%
if "%JAVA_HOME%" == "" goto noJavaHome
if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe
goto run
:noJavaHome
if "%_JAVACMD%" == "" set _JAVACMD=java.exe
echo Error: JAVA_HOME is not defined.
goto end
:run
set LOCALLIBPATH=%JAVA_HOME%\lib\ext;%JAVA_HOME%\jre\lib\ext
set LOCALLIBPATH=%LOCALLIBPATH%;%VD_CLIENT_HOME%\lib
set LOCALLIBPATH=%LOCALLIBPATH%;%VD_CLIENT_HOME%\lib\ext
"%_JAVACMD%" %VD_CLIENT_OPTS% -Djava.ext.dirs="%LOCALLIBPATH%" -Djava.library.path="%LOCALLIBPATH%" -Dorg.safehaus.penrose.client.home="%VD_CLIENT_HOME%" org.safehaus.penrose.module.ModuleManagerClient %CMD_LINE_ARGS%
:end
endlocal
| rgorosito/penrose | original-pre-maven/client/bin/module.bat | bat | gpl-3.0 | 965 |
@set COINNAME=gridcoinresearch
@call set_vars.bat
@bash patch_files.sh
@echo Building Gridcoin daemon...
@rem todo: rewrite this with ^ line wrapping
@set PARAMS=BOOST_SUFFIX=%BOOSTSUFFIX%
@set PARAMS=%PARAMS% INCLUDEPATHS="
@rem set PARAMS=%PARAMS%-I'../src'
@set PARAMS=%PARAMS% -I'../%EWBLIBS%/%BOOST%'
@set PARAMS=%PARAMS% -I'../%EWBLIBS%/%OPENSSL%/include'
@set PARAMS=%PARAMS% -I'../%EWBLIBS%/%BERKELEYDB%/build_unix'
@set PARAMS=%PARAMS% -I'../%EWBLIBS%/%LEVELDB%/include'
@set PARAMS=%PARAMS% -I'../%EWBLIBS%/%MINIUPNPC%'
@set PARAMS=%PARAMS% -I'A:\Gridcoin-Research\libs\libzip\lib'
@set PARAMS=%PARAMS% -I'A:\Gridcoin-Research\libs\curl\include'
@set PARAMS=%PARAMS% -I'../%QTPATH%/'
@set PARAMS=%PARAMS%"
@set PARAMS=%PARAMS% LIBPATHS="
@set PARAMS=%PARAMS%-L'../src/leveldb'
@set PARAMS=%PARAMS% -L'../%EWBLIBS%/%BOOST%/stage/lib'
@set PARAMS=%PARAMS% -L'../%EWBLIBS%/%OPENSSL%'
@set PARAMS=%PARAMS% -L'../%EWBLIBS%/%BERKELEYDB%/build_unix'
@set PARAMS=%PARAMS% -L'../%EWBLIBS%/%MINIUPNPC%'
@set PARAMS=%PARAMS% -L'a:\Gridcoin-Research\libs\curl\include'
@set PARAMS=%PARAMS% -L'a:\Gridcoin-Research\libs\libzip\lib'
@set PARAMS=%PARAMS% -L'../%QTPATH%/'
@set PARAMS=%PARAMS%"
@set PARAMS=%PARAMS% ADDITIONALCCFLAGS="%ADDITIONALCCFLAGS%"
@set PARAMS=%PARAMS:\=/%
@echo PARAMS: %PARAMS%
@rem set PARAMS=%PARAMS% USE_UPNP=1
@rem remove "rem " from the next line to deactivate upnp
@set PARAMS=%PARAMS% USE_UPNP=-
@set PARAMS=%PARAMS% USE_DEVDIR=1
@cd %ROOTPATH%\src
@mingw32-make -f makefile_upgrader.mingw %PARAMS%
@if errorlevel 1 goto error
@echo.
@echo.
@strip %COINNAME%d.exe
@if errorlevel 1 goto error
@echo !!!!!!! %COINNAME% daemon DONE: Find %COINNAME%d.exe in ./src :)
@echo.
@echo.
@if not "%RUNALL%"=="1" pause
@goto end
:error
@echo.
@echo.
@echo !!!!!! Error! Build daemon failed.
@pause
:end
@cd ..\%EWBPATH%
| Lederstrumpf/Gridcoin-Research | contrib/easywinbuilder/4c_build_upgrader.bat | bat | mit | 1,842 |
set PackageVersion=2.5.0
set Configuration=Debug
rem build.cmd -debug
build.cmd | MarcDrexler/trackable-entities | build-test.cmd | bat | mit | 79 |
..\..\bin\mcx.exe -A -f benchmark1.json -b 0 %*
| fninaparavecino/mcx | example/benchmark/run_benchmark1.bat | bat | gpl-3.0 | 48 |
rem TODO, this needs to created based on the deployment package, perhaps with tomcat | st609877063/juddi | juddi-parent/bin/md5crypt.bat | bat | apache-2.0 | 84 |
@echo OFF
REM Copyright 2009, Google Inc.
REM 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
REM met:
REM
REM * Redistributions of source code must retain the above copyright
REM notice, this list of conditions and the following disclaimer.
REM * Redistributions in binary form must reproduce the above
REM copyright notice, this list of conditions and the following disclaimer
REM in the documentation and/or other materials provided with the
REM distribution.
REM * Neither the name of Google Inc. nor the names of its
REM contributors may be used to endorse or promote products derived from
REM this software without specific prior written permission.
REM
REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
REM A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
REM OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
REM SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
REM LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
REM DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
REM THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
REM (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
REM OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set PYTHONDIR=%~dp0..\..\third_party\python_24
call %PYTHONDIR%\setup_env.bat
%PYTHONDIR%\python.exe %~dp0\build_docs.py %*
| kuiche/chromium | o3d/documentation/build_docs.bat | bat | bsd-3-clause | 1,752 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=aiodocker
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| paultag/aiodocker | docs/make.bat | bat | mit | 807 |
@echo off
python %~dp0\emmake %* | qq2588258/floweers | libs/external/emscripten/emmake.bat | bat | mit | 32 |
%windir%\microsoft.net\framework\v4.0.30319\msbuild /m ILSpy.sln /t:clean "/p:Platform=Any CPU" /p:Configuration=Debug
@IF %ERRORLEVEL% NEQ 0 PAUSE
%windir%\microsoft.net\framework\v4.0.30319\msbuild /m ILSpy.sln /t:clean "/p:Platform=Any CPU" /p:Configuration=Release
@IF %ERRORLEVEL% NEQ 0 PAUSE | damnya/dnSpy | clean.bat | bat | gpl-3.0 | 297 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\d3-dsv\bin\json2dsv" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\d3-dsv\bin\json2dsv" %*
) | WaylonWalker/pyDataVizDay | src/static/node_modules/.bin/json2tsv.cmd | bat | mit | 180 |
@ECHO OFF
bundle exec ruby ../tvshow_name_normalizer.rb normalize_directory --path=%1 --recursive
PAUSE
| lbeder/tvshow-name-normalizer | scripts/normalize_directory.bat | bat | mit | 106 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\hiv_retention_metrics.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\hiv_retention_metrics.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
| grlurton/hiv_retention_metrics | docs/make.bat | bat | mit | 5,126 |
mkdir build
cd build
if "%PY_VER%"=="2.7" (
echo "Python 2.7 not supported"
exit /b -1
)
set MSVC_VER=15.0
set VS_VERSION="15.0"
set VS_MAJOR="15"
set VS_YEAR="2017"
set CMAKE_GENERATOR="Visual Studio 15 2017 Win64"
set CMAKE_FLAGS=-DCMAKE_INSTALL_PREFIX=%PREFIX%
set CMAKE_FLAGS=%CMAKE_FLAGS% -DCMAKE_BUILD_TYPE=Release
cmake -G %CMAKE_GENERATOR% %CMAKE_FLAGS% .. -Wno-dev
set CMAKE_CONFIG="Release"
cmake --build . --config %CMAKE_CONFIG% --target _pyglslang
xcopy "Release\_pyglslang.pyd" "%SP_DIR%"
xcopy "pyglslang.py" "%SP_DIR%"
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
| VLAM3D/pyvulkan | conda-recipes/pyglslang/bld.bat | bat | mit | 754 |
:: (c) Copyright 2009 - 2010 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.
::--------------------------------------------------------------------------------
cp ..\..\..\dualBRAM.mif .
echo "Compiling Core VHDL UNISIM/Behavioral model"
vhpcomp -work work ..\..\..\dualBRAM.vhd
vhpcomp -work work ..\..\example_design\dualBRAM_exdes.vhd
echo "Compiling Test Bench Files"
vhpcomp -work work ..\bmg_tb_pkg.vhd
vhpcomp -work work ..\random.vhd
vhpcomp -work work ..\data_gen.vhd
vhpcomp -work work ..\addr_gen.vhd
vhpcomp -work work ..\checker.vhd
vhpcomp -work work ..\bmg_stim_gen.vhd
vhpcomp -work work ..\dualBRAM_synth.vhd
vhpcomp -work work ..\dualBRAM_tb.vhd
fuse work.dualBRAM_tb -L unisims -L xilinxcorelib -o dualBRAM_tb.exe
.\dualBRAM_tb.exe -gui -tclbatch simcmds.tcl
| FranciscoKnebel/ufrgs-projects | neander/neanderImplementation/ipcore_dir/dualBRAM/simulation/functional/simulate_isim.bat | bat | mit | 2,955 |
xcopy .\public\* ..\0CCh.github.io\ /s /v /y
xcopy .\uploads ..\0CCh.github.io\uploads /s /v /y
xcopy .\favicon.ico ..\0CCh.github.io\ /v /y | 0cch/0CChBlog | copy.cmd | bat | mit | 142 |
@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\NetCDFContainers.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\NetCDFContainers.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
| marqh/ncContainers | make.bat | bat | cc0-1.0 | 5,125 |
cmd_kernel/irq/handle.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,kernel/irq/.handle.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -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__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(handle)" -D"KBUILD_MODNAME=KBUILD_STR(handle)" -c -o kernel/irq/handle.o kernel/irq/handle.c
deps_kernel/irq/handle.o := \
kernel/irq/handle.c \
$(wildcard include/config/smp.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/linux/irq.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/numa/migrate/irq/desc.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
$(wildcard include/config/debug/preempt.h) \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.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 \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mmu.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/linkage.h \
/data/embedded/acer/acergit/linux/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 \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.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/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) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/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 \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.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/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/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) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/irqreturn.h \
include/linux/irqnr.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \
arch/arm/plat-pnx/include/mach/irqs.h \
$(wildcard include/config/arch/pnx67xx.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
include/linux/percpu.h \
$(wildcard include/config/modules.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/data/embedded/acer/acergit/linux/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) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.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/time.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kref.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hw_irq.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/random.h \
include/linux/ioctl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.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/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/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.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/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.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/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \
include/linux/irq_cpustat.h \
include/linux/kernel_stat.h \
include/linux/rculist.h \
include/linux/hash.h \
kernel/irq/internals.h \
include/linux/kallsyms.h \
kernel/irq/handle.o: $(deps_kernel/irq/handle.o)
$(deps_kernel/irq/handle.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | kernel/irq/.handle.o.cmd | bat | gpl-2.0 | 19,031 |
cmd_sound/synth/built-in.o := rm -f sound/synth/built-in.o; /home/pasquale/android/arm-2009q3/bin/arm-none-eabi-ar rcs sound/synth/built-in.o
| p500-ics-cm9/Franco-ICS-Kernel | sound/synth/.built-in.o.cmd | bat | gpl-2.0 | 143 |
cmd_net/rfkill/built-in.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o net/rfkill/built-in.o net/rfkill/rfkill.o
| yohanes/Acer-BeTouch-E130-Linux-Kernel | net/rfkill/.built-in.o.cmd | bat | gpl-2.0 | 132 |
cmd_arch/arm/lib/ashldi3.o := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.ashldi3.o.d -nostdinc -isystem /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -Iinclude -I/home/erik/supersonic/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/ashldi3.o arch/arm/lib/ashldi3.S
deps_arch/arm/lib/ashldi3.o := \
arch/arm/lib/ashldi3.S \
/home/erik/supersonic/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/erik/supersonic/arch/arm/include/asm/linkage.h \
arch/arm/lib/ashldi3.o: $(deps_arch/arm/lib/ashldi3.o)
$(deps_arch/arm/lib/ashldi3.o):
| kingklick/kk-evo-kernel | arch/arm/lib/.ashldi3.o.cmd | bat | gpl-2.0 | 1,264 |
cmd_arch/arm/mm/abort-ev7.o := /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/mm/.abort-ev7.o.d -nostdinc -isystem /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-eabi/4.4.1/include -Dlinux -Iinclude -I/home/leonardo/mykernel/kernel/arch/arm/include -include include/linux/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 -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/mm/abort-ev7.o arch/arm/mm/abort-ev7.S
deps_arch/arm/mm/abort-ev7.o := \
arch/arm/mm/abort-ev7.S \
/home/leonardo/mykernel/kernel/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/leonardo/mykernel/kernel/arch/arm/include/asm/linkage.h \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/hwcap.h \
arch/arm/mm/abort-ev7.o: $(deps_arch/arm/mm/abort-ev7.o)
$(deps_arch/arm/mm/abort-ev7.o):
| dalinaum/studyak | arch/arm/mm/.abort-ev7.o.cmd | bat | gpl-2.0 | 1,781 |
cmd_sound/pci/asihpi/built-in.o := rm -f sound/pci/asihpi/built-in.o; /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD sound/pci/asihpi/built-in.o
| Envious-Data/shinano-sirius_msm8974abpro | sound/pci/asihpi/.built-in.o.cmd | bat | gpl-2.0 | 179 |
cmd_scripts/kallsyms := gcc -Wp,-MD,scripts/.kallsyms.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/kallsyms scripts/kallsyms.c
deps_scripts/kallsyms := \
scripts/kallsyms.c \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/stdc-predef.h \
/usr/include/i386-linux-gnu/bits/predefs.h \
/usr/include/i386-linux-gnu/sys/cdefs.h \
/usr/include/i386-linux-gnu/bits/wordsize.h \
/usr/include/i386-linux-gnu/gnu/stubs.h \
/usr/include/i386-linux-gnu/gnu/stubs-32.h \
/usr/lib/gcc/i686-linux-gnu/4.7/include/stddef.h \
/usr/include/i386-linux-gnu/bits/types.h \
/usr/include/i386-linux-gnu/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.7/include/stdarg.h \
/usr/include/i386-linux-gnu/bits/stdio_lim.h \
/usr/include/i386-linux-gnu/bits/sys_errlist.h \
/usr/include/i386-linux-gnu/bits/stdio.h \
/usr/include/i386-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/i386-linux-gnu/bits/waitflags.h \
/usr/include/i386-linux-gnu/bits/waitstatus.h \
/usr/include/endian.h \
/usr/include/i386-linux-gnu/bits/endian.h \
/usr/include/i386-linux-gnu/bits/byteswap.h \
/usr/include/i386-linux-gnu/bits/byteswap-16.h \
/usr/include/i386-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/i386-linux-gnu/sys/select.h \
/usr/include/i386-linux-gnu/bits/select.h \
/usr/include/i386-linux-gnu/bits/sigset.h \
/usr/include/i386-linux-gnu/bits/time.h \
/usr/include/i386-linux-gnu/bits/select2.h \
/usr/include/i386-linux-gnu/sys/sysmacros.h \
/usr/include/i386-linux-gnu/bits/pthreadtypes.h \
/usr/include/alloca.h \
/usr/include/i386-linux-gnu/bits/stdlib-float.h \
/usr/include/i386-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/xlocale.h \
/usr/include/i386-linux-gnu/bits/string.h \
/usr/include/i386-linux-gnu/bits/string2.h \
/usr/include/i386-linux-gnu/bits/string3.h \
/usr/include/ctype.h \
scripts/kallsyms: $(deps_scripts/kallsyms)
$(deps_scripts/kallsyms):
| gzdaoke/linux2.6.32_kernel | scripts/.kallsyms.cmd | bat | gpl-2.0 | 2,092 |
cmd_arch/arm/mm/abort-ev7.o := /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/mm/.abort-ev7.o.d -nostdinc -isystem /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/../lib/gcc/arm-fsl-linux-gnueabi/4.4.4/include -I/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-mx6/include -Iarch/arm/plat-mxc/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -Wa,-march=armv7-a -c -o arch/arm/mm/abort-ev7.o arch/arm/mm/abort-ev7.S
source_arch/arm/mm/abort-ev7.o := arch/arm/mm/abort-ev7.S
deps_arch/arm/mm/abort-ev7.o := \
$(wildcard include/config/verify/permission/fault.h) \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/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) \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/linkage.h \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/hwcap.h \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/mm/abort-ev7.o: $(deps_arch/arm/mm/abort-ev7.o)
$(deps_arch/arm/mm/abort-ev7.o):
| evan6200/cirrfy_pos | arch/arm/mm/.abort-ev7.o.cmd | bat | gpl-2.0 | 2,479 |
cmd_drivers/usb/otg/built-in.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o drivers/usb/otg/built-in.o drivers/usb/otg/otg.o drivers/usb/otg/otg_event.o drivers/usb/otg/msm72k_otg.o
| paxchristos/R800x-2.3.3-Kernel | drivers/usb/otg/.built-in.o.cmd | bat | gpl-2.0 | 254 |
cmd_arch/arm/lib/getuser.o := /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.getuser.o.d -nostdinc -isystem /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/../lib/gcc/arm-eabi/4.6.2/include -I/home/rittik/android/kernel/crater/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-capri/include -Iarch/arm/plat-kona/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -mfpu=vfp3 -mfloat-abi=softfp -gdwarf-2 -c -o arch/arm/lib/getuser.o arch/arm/lib/getuser.S
source_arch/arm/lib/getuser.o := arch/arm/lib/getuser.S
deps_arch/arm/lib/getuser.o := \
$(wildcard include/config/thumb2/kernel.h) \
/home/rittik/android/kernel/crater/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/rittik/android/kernel/crater/arch/arm/include/asm/linkage.h \
/home/rittik/android/kernel/crater/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
/home/rittik/android/kernel/crater/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/lib/getuser.o: $(deps_arch/arm/lib/getuser.o)
$(deps_arch/arm/lib/getuser.o):
| RittikBhowmik/Project-Crater-Kernel-GT-i9152 | arch/arm/lib/.getuser.o.cmd | bat | gpl-2.0 | 1,768 |
cmd_drivers/video/tegra/host/t30/nvhost-t30.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/video/tegra/host/t30/nvhost-t30.o drivers/video/tegra/host/t30/t30.o
| JoinTheRealms/TF700-dualboot-stockbased | drivers/video/tegra/host/t30/.nvhost-t30.o.cmd | bat | gpl-2.0 | 236 |
@echo off
rem CaesarJ compiler
if not "%JAVA_HOME%" == "" goto ok1
echo please set JAVA_HOME environment variable
goto end
:ok1
if not "%CAESAR_HOME%" == "" goto ok2
echo please set CAESAR_HOME environment variable
goto end
:ok2
set CAESAR_LIBS=%CAESAR_HOME%\lib\caesar-compiler.jar;%CAESAR_HOME%\lib\aspectjtools.jar
"%JAVA_HOME%\bin\java" -classpath %CAESAR_LIBS% org.caesarj.compiler.Main %*
:end | tud-stg-lang/caesar-compiler | scripts/cjc.cmd | bat | gpl-2.0 | 421 |
c:\prog2\python27\python.exe maggy.py
pause | Averell7/maggy2 | maggy-python2/start-maggy.bat | bat | gpl-3.0 | 43 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo initialLocation 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 initialLocation of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| SmokSmog/smoksmog-android | gradlew.bat | bat | gpl-3.0 | 2,418 |
regsvr32 wiaaut.dll | codeguy007/CameraControl | CameraControl/CameraControl_DevSrc-2013-07-24/CameraControl_Proshots/nikon-camera-control/CameraControl.Application/regwia.bat | bat | gpl-3.0 | 20 |
cmd_/home/gatieme/Work/GitHub/LDD-LinuxDeviceDrivers/books/fengguojin/src/1drivermodel/1-6lseek/simple/simple.ko := ld -r -m elf_x86_64 -T ./scripts/module-common.lds --build-id -o /home/gatieme/Work/GitHub/LDD-LinuxDeviceDrivers/books/fengguojin/src/1drivermodel/1-6lseek/simple/simple.ko /home/gatieme/Work/GitHub/LDD-LinuxDeviceDrivers/books/fengguojin/src/1drivermodel/1-6lseek/simple/simple.o /home/gatieme/Work/GitHub/LDD-LinuxDeviceDrivers/books/fengguojin/src/1drivermodel/1-6lseek/simple/simple.mod.o
| gatieme/LDD-LinuxDeviceDrivers | books/fengguojin/src/1-drivermodel/1-6lseek/simple/.simple.ko.cmd | bat | gpl-3.0 | 511 |
@echo off
set xv_path=C:\\Xilinx\\Vivado\\2016.4\\bin
echo "xvlog -m64 --relax -prj regfil_testbench_vlog.prj"
call %xv_path%/xvlog -m64 --relax -prj regfil_testbench_vlog.prj -log xvlog.log
call type xvlog.log > compile.log
if "%errorlevel%"=="1" goto END
if "%errorlevel%"=="0" goto SUCCESS
:END
exit 1
:SUCCESS
exit 0
| Willster419/ELEC3725_vivado_projects | assignment_3/assignment_3.sim/sim_1/behav/compile.bat | bat | gpl-3.0 | 322 |
@echo off
cd /d c:\Program Files (x86)\Android\android-sdk\platform-tools\
adb shell am start -a android.intent.action.SENDTO -d sms:%1 --es sms_body '%2' --ez exit_on_sent true
timeout 1 > NUL
adb shell input text '%3'
adb shell input keyevent 66
adb shell input text olinails.com
adb shell input keyevent 22
adb shell input keyevent 66
timeout 1 > NUL
echo completed | astmus/OliNails | DatesReminder/sendremind.bat | bat | gpl-3.0 | 368 |
@set inputmode=mode%1
@if %inputmode% == modespell goto spellmaker
@goto basicmaker
:basicmaker
@echo =========================
@echo Basic version compilation
@echo =========================
@set compilemode=basic
@set additionalfiles=com\swabunga\spell\event\SpellCheckListener.class
@goto compilecore
:spellmaker
@echo ==============================
@echo Spellcheck version compilation
@echo ==============================
@set compilemode=spell
@set additionalfiles=com\swabunga\spell\engine\*.class com\swabunga\spell\engine\*.properties com\swabunga\spell\engine\dictionary\* com\swabunga\spell\event\*.class com\swabunga\spell\swing\*.class com\swabunga\spell\swing\*.properties
@goto compilecore
:compilecore
@echo [] compiling core...
@javac -deprecation com\hexidec\ekit\EkitCore.java
@if errorlevel 1 goto failure
@if %inputmode% == modespell goto compilespellcore
@goto compileapp
:compilespellcore
@echo [] compiling spellcheck extended core...
@javac com\hexidec\ekit\EkitCoreSpell.java
@if errorlevel 1 goto failure
@goto compileapp
:compileapp
@echo [] compiling application...
@javac com\hexidec\ekit\EkitApplet.java
@if errorlevel 1 goto failure
@goto makejar
:makejar
@echo [] jarring...
@jar cf ekitapplet.jar com\hexidec\ekit\*.class com\hexidec\ekit\action\*.class com\hexidec\ekit\component\*.class com\hexidec\ekit\icons\*.png com\hexidec\ekit\*.properties com\hexidec\util\Base64Codec.class com\hexidec\util\Translatrix.class com\hexidec\ekit\thirdparty\print\*.class %additionalfiles%
@if errorlevel 1 goto failure
@goto cleanup
:failure
@echo [*] make failed with an error level of %errorlevel%
@goto cleanup
:cleanup
@echo [] cleaning up Ekit classes...
@del com\hexidec\ekit\*.class
@del com\hexidec\ekit\action\*.class
@del com\hexidec\ekit\component\*.class
@del com\hexidec\util\Base64Codec.class
@del com\hexidec\util\Translatrix.class
@if %compilemode% == spell goto spellpurge
@goto finish
:spellpurge
@echo [] cleaning up spellcheck classes...
@del com\swabunga\spell\engine\*.class
@del com\swabunga\spell\event\*.class
@del com\swabunga\spell\swing\*.class
@goto finish
:finish
@set inputmode=
@set compilemode=
@set additionalfiles=
@echo [] finished
| lexml/lexml-swing-editorhtml | doc/build_antigo/MakeEkitApplet.bat | bat | lgpl-2.1 | 2,348 |
cd contents
rmdir /Q /S lib
mkdir lib
cd lib
mkdir netstandard2.0\
robocopy ../../../../../src/Bin/netstandard/Release netstandard2.0 Solid.Practices.Composition.dll Solid.Practices.Composition.xml Solid.Practices.Composition.pdb Solid.Practices.Composition.deps.json /E
robocopy ../../../../../src/Bin/netstandard/Release netstandard2.0 Solid.Practices.Composition.Contracts.* /E
robocopy ../../../../../src/Bin/netstandard/Release netstandard2.0 Solid.Practices.Composition.Container.* /E
cd ../../
nuget pack contents/solid.practices.composition.core.nuspec -OutputDirectory ../../../output | godrose/Solid | devops/pack/solid.practices.composition.core/pack.bat | bat | apache-2.0 | 594 |
java -Xmx512M -cp libs/robocode.jar robocode.Robocode %*
| programus/j-bots | eclipse/base/robocode-src/robocode.content/src/main/resources/robocode.bat | bat | apache-2.0 | 57 |
@echo off
rem
rem Copyright (c) 2014 Luca Garulli @www.orientechnologies.com
rem
rem Guess ORIENTDB_HOME if not defined
set CURRENT_DIR=%cd%
if exist "%JAVA_HOME%\bin\java.exe" goto setJavaHome
set JAVA="java"
goto okJava
:setJavaHome
set JAVA="%JAVA_HOME%\bin\java"
:okJava
if not "%ORIENTDB_HOME%" == "" goto gotHome
set ORIENTDB_HOME=%CURRENT_DIR%
if exist "%ORIENTDB_HOME%\bin\oetl.bat" goto okHome
cd ..
set ORIENTDB_HOME=%cd%
cd %CURRENT_DIR%
:gotHome
if exist "%ORIENTDB_HOME%\bin\oetl.bat" goto okHome
echo The ORIENTDB_HOME environment variable is not defined correctly
echo This environment variable is needed to run this program
goto end
:okHome
rem Get the command line arguments and save them in the
set CMD_LINE_ARGS=%*
if NOT exist "%CONFIG_FILE%" set CONFIG_FILE=%ORIENTDB_HOME%/config/orientdb-etl-config.xml
set KEYSTORE=%ORIENTDB_HOME%\config\cert\orientdb-console.ks
set KEYSTORE_PASS=password
set TRUSTSTORE=%ORIENTDB_HOME%\config\cert\orientdb-console.ts
set TRUSTSTORE_PASS=password
set SSL_OPTS="-Dclient.ssl.enabled=false -Djavax.net.ssl.keyStore=%KEYSTORE% -Djavax.net.ssl.keyStorePassword=%KEYSTORE_PASS% -Djavax.net.ssl.trustStore=%TRUSTSTORE% -Djavax.net.ssl.trustStorePassword=%TRUSTSTORE_PASS%"
set ORIENTDB_SETTINGS=-Xmx512m -Djava.util.logging.config.file="%ORIENTDB_HOME%\config\orientdb-client-log.properties" -Djava.awt.headless=true
call %JAVA% -server %SSL_OPTS% %ORIENTDB_SETTINGS% -Djava.util.logging.config.file="%LOG_FILE%" -Dfile.encoding=utf-8 -Dorientdb.build.number="@BUILD@" -cp "%ORIENTDB_HOME%\lib\*;%ORIENTDB_HOME%\plugins\*" com.orientechnologies.orient.etl.OETLProcessor %CMD_LINE_ARGS%
:end
| orientechnologies/orientdb | etl/script/oetl.bat | bat | apache-2.0 | 1,654 |
@echo off
if %DEVELOPMENT_HOME%=="" (
set "result=error: your environment variable DEVELOPMENT_HOME is not configured, please configure it."
) else (
set "result=okay: your development folder is %DEVELOPMENT_HOME%"
)
set "%~1=%result%" | fernando-romulo-silva/allset-config | allset-config-devhome/src/Development/scripts/windows/internal/check-develpment-folder.bat | bat | apache-2.0 | 242 |
@SET vi1=%~f1
@SET vi2=%~f2
@SET working_dir=%~f3
@SET lv_version=%4
@REM only run diff if both files are VIs or there was a newly added VI
@if "%vi1:~-3%" == ".vi" GOTO :VI2Check
@if "%vi1%" == "\\.\nul" GOTO :VI2Check
@GOTO :END
:VI2Check
@if "%vi2:~-3%" == ".vi" GOTO :DIFF_VI
@GOTO :END
:DIFF_VI
labview-cli --kill --lv-ver %lv_version% L:\lvDiff.vi -- "%vi1%" "%vi2%" "%working_dir%"
:END | LabVIEW-DCAF/buildsystem | steps/labview-diff.bat | bat | apache-2.0 | 401 |
ng build --watch | VahidN/angular-template-driven-forms-lab | _1-ng-build-dev.bat | bat | apache-2.0 | 16 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pinliner.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pinliner.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
| Akrog/pinliner | docs/make.bat | bat | apache-2.0 | 6,463 |
setlocal
set JAVA_HOME=C:\Programme\Java\jdk1.6.0_03
call mvn clean install
endlocal | highsource/hyperjaxb3 | misc/dynamic/build-1.6.bat | bat | bsd-2-clause | 84 |
@SET config=Release
dotnet restore -v q
dotnet build -c %config% -v q
dotnet test .\src\Vertica.Utilities.Tests\Vertica.Utilities.Tests.csproj -c %config% -v q
dotnet pack .\src\Vertica.Utilities\Vertica.Utilities.csproj -c %config% --no-build -v m
@ECHO.
@ECHO -----------------------------------------------------------------------------
@ECHO ^| SUPER-GREEN. Package available in .\src\Vertica.Utilities\bin\%config%\ ^|
@ECHO -----------------------------------------------------------------------------
@ECHO.
| vertica-as/Vertica.Utilities | dotnet-build-local.cmd | bat | bsd-3-clause | 523 |
@ECHO OFF
echo.
echo Hello %USERNAME%!
echo.
echo "This setup will guide you through the process of installing mobilot on your machine."
echo.
SET /p answer= ^> Have you created a MySQL database named "mobilot"? (Y/n)
IF NOT "%answer%"=="n" (
echo.
echo ^> Creating storage folders "app/storage/" ...
mkdir app\storage\logs
mkdir app\storage\cache
mkdir app\storage\meta
mkdir app\storage\sessions
mkdir app\storage\views
echo.
echo ^> Creating uploads folder "public/" ...
mkdir public\upload
echo.
echo ^> composer install
echo One moment please ...
call composer install
echo.
goto CopyDatabasePHP
)
IF "%answer%"=="n" (
echo ^> Create a database named "mobilot" and than run this script again.
exit /b
)
:CopyDatabasePHP
SET /p answer2= ^> What kind of environment are you using? (H)omestead/(X)AMPP:
SET location = ""
IF "%answer2%"=="H" (
SET location=app\config\local
goto CopiedDatabasePHP
)
IF "%answer2%"=="X" (
SET location=app\config
goto CopiedDatabasePHP
)
:CopiedDatabasePHP
echo.
echo ^> Copying "setup\database.php" to "%location%"
@xcopy /s /I setup %location%
echo.
SET /p answer3= ^> IMPORTANT: Configure %location% before continuing (press ENTER). Note that for some local environments (such as MAMP) you might need to specify a unix_socket.
echo.
echo ^> php artisan migrate
echo One moment please ...
call php artisan migrate
echo.
SET /p answer5= ^> Finally let us take a deep breath ... ... and install npm and bower modules! (press ENTER)
cd public
echo ^> npm install
npm install
echo ^> bower install
echo "When asked, always choose the later module versions required by Mobilot."
bower install
echo "> Running development build gulp task."
gulp
echo.
echo ^> Mobilot setup completed!
echo.
echo Hints:
echo ^> To manually serve Mobilot run: php artisan serve
echo ^> If something went wrong on the way like mistyping or misconfiguring the "database.php", you can confidently try repeating the process.
echo.
echo Further help – https://github.com/fhstp-mfg/mobilot/wiki/Setup
echo Report issues – https://github.com/fhstp-mfg/mobilot/issues
echo.
SET /p answer4= ^> Would you like to serve Mobilot locally? (Y/n)
IF NOT "%answer4%"=="n" (
echo ^> php artisan serve
php artisan serve
)
IF "%answer4%"=="n" (
echo ^> INFO: To serve Mobilot run: "php artisan serve"
)
echo ^> Good bye then :)
exit /b 0
| fhstp-mfg/mobilot | setup.bat | bat | bsd-3-clause | 2,408 |
:: Keyword extraction
::jara -jar bugc.jar --format=defect:aje_train.out --bugpattern=.\pat\bugpattern_aje2.xml --issues .\input\issues\softco --index=train:.\ml\train
::java -jar bugc.jar --format=defect:aje_test.out --bugpattern=.\pat\bugpattern_aje2.xml --issues .\input\issues\softco --index=test:.\ml\test
::cd .\kea-5.0_full
::runTestKea2
::cd ..
::java -jar bugc.jar --format=defect:aje_collect.out --bugpattern=.\pat\bugpattern_aje2.xml --issues .\input\issues\softco --index=collect:.\ml\test
:: Defect analysis and prediction
:: AJE
::java -jar bugc.jar --format=defect:aje.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje
:: subtypes
::java -jar bugc.jar --format=defect:aje_subtype.out --bugpattern=.\pat\bugpattern_aje3.xml --issues .\input\issues\softco
:: cache size
java -jar bugc.jar --format=defect:aje_cache_20_12.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje --simcache=20:12
java -jar bugc.jar --format=defect:aje_cache_50_12.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje --simcache=50:12
java -jar bugc.jar --format=defect:aje_cache_100_12.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje --simcache=100:12
:: slope
java -jar bugc.jar --format=defect:aje_cache_20_5.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje --simcache=20:5
java -jar bugc.jar --format=defect:aje_cache_20_12.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje --simcache=20:12
java -jar bugc.jar --format=defect:aje_cache_20_20.out --bugpattern=.\pat\bugpattern_aje.xml --issues .\input\issues\softco --commits .\input\commits\softco\aje --simcache=20:20
:: GIC
::java -jar bugc.jar --format=defect:gic.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic
:: cache size
java -jar bugc.jar --format=defect:gic_cache_20_12.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic --simcache=20:12
java -jar bugc.jar --format=defect:gic_cache_50_12.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic --simcache=50:12
java -jar bugc.jar --format=defect:gic_cache_100_12.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic --simcache=100:12
:: slope
java -jar bugc.jar --format=defect:gic_cache_20_5.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic --simcache=20:5
java -jar bugc.jar --format=defect:gic_cache_20_12.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic --simcache=50:12
java -jar bugc.jar --format=defect:gic_cache_20_20.out --bugpattern=.\pat\bugpattern_gic.xml --issues .\input\issues\ecc\gic --commits .\input\commits\ecc\gic --simcache=100:20
| taolee/XmlDataAnalysisToolsets | DataAnalysis_SoftwareEngineering/bugc/run.bat | bat | bsd-3-clause | 3,161 |
@REM
@REM Retrieve and validate command line arguments
@REM
@set EVENT_LOC=%1
@set PTHREAD_LOC=%2
@set BLD_TYPE="%3"
@if "%EVENT_LOC%" == "" (
@echo "Usage: build.bat <pathname for libevent> <pathname for pthread> DEBUG|RELEASE"
@goto end
)
@if "%PTHREAD_LOC%" == "" (
@echo "Usage: build.bat <pathname for libevent> <pathname for pthread> DEBUG|RELEASE"
@goto end
)
@if /i %BLD_TYPE% NEQ "DEBUG" (
@if /i %BLD_TYPE% NEQ "RELEASE" (
@echo "Usage: build.bat <pathname for libevent> <pathname for pthread> DEBUG|RELEASE"
@goto end
)
)
@mingw32-make -version
@if errorlevel 1 (
@echo "ERROR: mingw32-make not in PATH. Is MingW installed? Exiting..."
@goto end
)
@cd %BLD_TYPE%
@if not exist t mkdir t
@cd t
@erase *.t *.save
@if not exist lib mkdir lib
@copy /Y ..\..\..\..\t\win32\lib\MemcachedTest.pm .\lib
@copy /Y ..\..\..\..\t\*.t .
@copy /Y ..\..\..\..\t\win32\*.t .
@rename unixsocket.t unixsocket.save
@rename daemonize.t daemonize.save
@REM
@REM Perform the chosen build and run tests
@REM
@set PATH=%PTHREAD_LOC%;%PATH%
@cd ..\
@mingw32-make clean
@mingw32-make EVENT=%EVENT_LOC% PTHREAD=%PTHREAD_LOC% memcached.exe
@if errorlevel 1 goto error_no_BUILD_FAILED
@mingw32-make test
@if errorlevel 1 goto error_no_TEST_FAILED
@cd ..\
@goto end
:error_no_BUILD_FAILED
@echo ERROR: Make with memcached.exe target failed
@goto end
@:error_no_TEST_FAILED
@echo ERROR: Make with test target failed
:end
| saumitra/memcached | win32/build/build.bat | bat | bsd-3-clause | 1,484 |
@echo off
set path=%path%;%systemroot%\SysWOW64
start java -cp bin;NullpoMino.jar;lib\log4j-1.2.15.jar mu.nu.nullpo.game.net.NetServer %1
| Phazyck/nullpominai | netserver.bat | bat | mit | 138 |
cd jni
call ndk-build
if %ERRORLEVEL% EQU 0 (
cd..
mkdir "assets\shaders\base"
xcopy "..\..\data\shaders\base\*.spv" "assets\shaders\base" /Y
mkdir "assets\shaders\terraintessellation"
xcopy "..\..\data\shaders\terraintessellation\*.*" "assets\shaders\terraintessellation" /Y
mkdir "assets\textures"
xcopy "..\..\data\textures\terrain_heightmap_r16.ktx" "assets\textures" /Y
xcopy "..\..\data\textures\terrain_texturearray_bc3.ktx" "assets\textures" /Y
xcopy "..\..\data\textures\skysphere_bc3.ktx" "assets\textures" /Y
mkdir "assets\models"
xcopy "..\..\data\models\geosphere.obj" "assets\models" /Y
mkdir "res\drawable"
xcopy "..\..\android\images\icon.png" "res\drawable" /Y
call ant debug -Dout.final.file=vulkanTerraintessellation.apk
) ELSE (
echo error : ndk-build failed with errors!
cd..
)
| dreadwords/Vulkan | android/terraintessellation/build.bat | bat | mit | 823 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASCMD.S19_Sync.MSASCMD_S19_TC02_Sync_MoreAvailable /testcontainer:..\..\MS-ASCMD\TestSuite\bin\Debug\MS-ASCMD_TestSuite.dll /runconfig:..\..\MS-ASCMD\MS-ASCMD.testsettings /unique
pause | OfficeDev/Interop-TestSuites | ExchangeActiveSync/Source/Scripts/MS-ASCMD/RunMSASCMD_S19_TC02_Sync_MoreAvailable.cmd | bat | mit | 279 |
mkdir output
del output\*.* /q
for %%i in (*.proto) do ProtoGen.exe -i:%%i -o:output\%%~ni.cs -ns:Proto_JavaNet
COPY CoreOnly\ios\protobuf-net.dll output\
C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe /out:output\ProtoModel.dll /r:output\protobuf-net.dll /t:library output\*.cs
Precompile\precompile.exe output\ProtoModel.dll -o:output\ProtoSerializer.dll -t:ProtoSerializer
COPY output\*.dll ..\client\Assets\Protobuf\
COPY output\*.dll ..\tools\ActionTool\Proto\
pause
| supertms/WolongYin | project/proto/ProtoGen_new.bat | bat | mit | 484 |
grunt
PAUSE | Silvenga/Slight.Theme | src/compile.bat | bat | mit | 11 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\node_modules\coffee-script\bin\cake" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\node_modules\coffee-script\bin\cake" %*
) | ganyuling/nvm | npm/cake.cmd | bat | mit | 206 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.