code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
@echo off cd /d "%~dp0" setlocal :: setlocal ensures implicit endlocal call howevert batch exits. :: so we can goto :EOF or ctrl-c an at point and env variables :: and directory will be reset if NOT %OS% == Windows_NT ( @echo This script will only work on NT systems call :error exit /b 1 ) if NOT EXIST ..\..\ufo2map.exe ( @echo Missing ufo2map @echo compile UFOAI first call :error exit /b 1 ) :: defaults set curpath=maps set searchpath=base/maps set usecores=%NUMBER_OF_PROCESSORS% set starttime=%TIME% set onlynewer=-onlynewer set param= set extrasamples=-soft set shutdownonfinish=false set quant= set md5=false :: shall we analyze arguments or not IF "%1"=="" ( call :choice || exit /b 1 ) IF NOT "%1"=="" ( @echo work trought ufo2map_args IF "%1"=="/?" ( call :ufo2map_args /help || ( exit /b 1 ) ) IF NOT "%1"=="/?" ( call :ufo2map_args %1 %2 %3 %4 %5 %6 %7 %8 %9 || ( pause exit /b 1 ) ) ) echo found %NUMBER_OF_PROCESSORS% processors echo using %usecores% processors echo compiling maps in %curpath% set ufo2mapparameters=%extrasamples% %param% %onlynewer% -t %usecores% %quant% if "%md5%" == "true" ( if "%onlynewer%" == "-onlynewer" ( call :md5 /check ) ) pushd ..\.. for /D %%i in (%searchpath%\*) DO ( call :compilemap %%i || exit /b 1 ) call :compilemap %searchpath% || exit /b 1 popd if "%md5%" == "true" ( call :md5 /create ) color 20 @echo. @echo finished @echo started at %starttime% @echo finished at %TIME% if "%shutdownonfinish%" == "true" ( reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce" /v UFOAI /t REG_SZ /d "%comspec% /k @echo UFOAI make_win32 was successful" /f shutdown -s -f -t 5 ) @echo  endlocal pause exit /b 0 :choice @echo are you shure to run the build without a parameter? @echo use /? for help @echo press y to run the script with basic parameters set /P coice= if /I NOT "%coice%" == "y" ( exit /b 1 ) exit /b 0 goto :EOF :compilemap echo ...found dir "%1" for %%j in (%1\*.map) DO ( if not "%~n1" == "maps" ( echo ufo2map.exe -v 4 %ufo2mapparameters% %curpath%\%~n1\%%~nxj ufo2map.exe -v 4 %ufo2mapparameters% %curpath%\%~n1\%%~nxj || ( echo. echo interrupt or ufo2map returned nonzero, deleting .bsp Del "%%~dpnj.bsp" call :error exit /b 1 ) ) if "%~n1" == "maps" ( echo ufo2map.exe -v 4 %ufo2mapparameters% %curpath%\%%~nxj ufo2map.exe -v 4 %ufo2mapparameters% %curpath%\%%~nxj || ( echo. echo interrupt or ufo2map returned nonzero, deleting .bsp Del "%%~dpnj.bsp" call :error exit /b 1 ) ) ) echo ...dir "%1" finished exit /b 0 goto :EOF :ufo2map_args if EXIST base\maps\%1 ( set curpath=maps set searchpath=base/maps/%1 ) else if "%1"=="/-t" ( set usecores=1 ) else if "%1"=="/help" ( rem echo======max line length is========================================================= echo compile_maps ^<options^> echo /-t always use -t 1 in call to ufo2map, do not use extra processors rem parentheses need to be escaped with caret echo /help print ^(this^) help and exit echo /clean recompile all maps. default is to only compile echo if .map is newer than.bsp echo /fast only do one pass on light samples. default is five. echo Also downscale the lightmap. echo /shutdown shutdown computer when compilation complete echo /md5 Determine map changes based on a hash sum echo also determine ufo2map.exe changes based on the re-version number echo Prevent unnecessary recompile of maps echo but recompile all maps the very first time echo path relative to base\maps. echo eg foo processes *.map in base\maps\foo exit /b 1 ) else if "%1"=="/clean" ( set onlynewer= ) else if "%1"=="/check" ( set param=-check ) else if "%1"=="/fix" ( set param=-fix ) else if "%1"=="/fast" ( set extrasamples= set quant=-quant 6 ) else if "%1"=="/shutdown" ( set shutdownonfinish=true ) else if "%1"=="/md5" ( ..\..\ufo2map.exe -h | findstr /I /C:"-V --version" || ( echo ufo2map lack the -V parameter echo I'm unable to use /md5 echo Update your source and recompile ufo2map exit /b 1 ) for /f %%a in ("md5sum.exe") do if Not Exist "%%~$PATH:a" ( echo cant find md5sum.exe in your %%path%% echo I'm unable to use /md5 exit /b 1 ) set md5=true ) else ( echo path "base\maps\%1" not found, %1 argument not understood, try /help exit /b 1 ) SHIFT if NOT "%1" == "" ( GOTO ufo2map_args ) exit /b 0 goto :EOF :md5 @echo Set FSO = CreateObject^("Scripting.FileSystemObject"^) >"%tmp%\ufo2map_md5.vbs" @echo Set WshShell = WScript.CreateObject ^("WScript.Shell"^) >>"%tmp%\ufo2map_md5.vbs" @echo Set args = WScript.Arguments >>"%tmp%\ufo2map_md5.vbs" @echo If args.count ^<^> 1 Then >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( Wscript.ScriptName ^& " </create|/check>" ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( Wscript.ScriptName ^& " /create" ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( " After compiling all maps; this will create map_last_build.md5" ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( Wscript.ScriptName ^& " /check" ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( " Before compiling all maps; this will check if a map has changed" ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Quit^(1^) >>"%tmp%\ufo2map_md5.vbs" @echo End if >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo Dim ufoai_source, script_source, map_source, map_path, map_hash, map_hash_string_token, map_last_build, map_last_build_array, map_last_build_write, ufo2map_build >>"%tmp%\ufo2map_md5.vbs" @echo ufoai_source = FSO.GetAbsolutePathName^("..\.."^) >>"%tmp%\ufo2map_md5.vbs" @echo map_source = ufoai_source ^& "\base\maps" >>"%tmp%\ufo2map_md5.vbs" @echo script_source = FSO.GetAbsolutePathName^("."^) >>"%tmp%\ufo2map_md5.vbs" @echo 'WScript.Echo^( ufoai_source ^) >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo If args.Item^(0^) = "/check" Then >>"%tmp%\ufo2map_md5.vbs" @echo If ^( FSO.FileExists^( script_source ^& "\map_last_build.md5" ^) ^) Then >>"%tmp%\ufo2map_md5.vbs" @echo Set map_last_build = FSO.OpenTextFile^( script_source ^& "\map_last_build.md5", 1, 0 ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build_array = Split^( map_last_build.ReadAll, vbNewline ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build.Close >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo Set oExec = WshShell.Exec^( """" ^& ufoai_source ^& "\ufo2map.exe"" -V" ^) >>"%tmp%\ufo2map_md5.vbs" @echo Do While oExec.Status = 0 >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Sleep 100 >>"%tmp%\ufo2map_md5.vbs" @echo Loop >>"%tmp%\ufo2map_md5.vbs" @echo ufo2map_build = oExec.StdOut.ReadAll^(^) >>"%tmp%\ufo2map_md5.vbs" @echo ufo2map_build = Replace^( ufo2map_build, vbNewline, "", 1, -1, 1 ^) >>"%tmp%\ufo2map_md5.vbs" @echo If Not ufo2map_build = map_last_build_array^(0^) Then >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( ufo2map_build ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( "ufo2map build has changed, rebuild all maps" ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' delete all map files >>"%tmp%\ufo2map_md5.vbs" @echo Return = WshShell.Run^( "cmd /c del /F /Q /S """ ^& map_source ^& "\*.bsp""", 0, true ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Quit^(0^) >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo Else >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( "unable to find map_last_build.md5, delete all maps" ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' delete all map files >>"%tmp%\ufo2map_md5.vbs" @echo Return = WshShell.Run^( "cmd /c del /F /Q /S """ ^& map_source ^& "\*.bsp""", 0, true ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Quit^(0^) >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo strDir = map_source >>"%tmp%\ufo2map_md5.vbs" @echo Set objDir = FSO.GetFolder^(strDir^) >>"%tmp%\ufo2map_md5.vbs" @echo getInfo^(objDir^) >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Quit^(0^) >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo Sub getInfo^(pCurrentDir^) >>"%tmp%\ufo2map_md5.vbs" @echo For Each aItem In pCurrentDir.Files >>"%tmp%\ufo2map_md5.vbs" @echo 'wscript.Echo aItem.Name >>"%tmp%\ufo2map_md5.vbs" @echo If LCase^(Right^(Cstr^(aItem.Name^), 3^)^) = "map" Then >>"%tmp%\ufo2map_md5.vbs" @echo map_path = Replace^( aItem, map_source ^& "\", "", 1, -1, 1 ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' WScript.Echo^( map_path ^) >>"%tmp%\ufo2map_md5.vbs" @echo Set oExec = WshShell.Exec^("md5sum -b """ ^& aItem ^& """"^) >>"%tmp%\ufo2map_md5.vbs" @echo Do While oExec.Status = 0 >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Sleep 100 >>"%tmp%\ufo2map_md5.vbs" @echo Loop >>"%tmp%\ufo2map_md5.vbs" @echo map_hash = oExec.StdOut.ReadAll^(^) >>"%tmp%\ufo2map_md5.vbs" @echo If InStr^( 1, map_hash, "\", 1 ^) = 1 Then >>"%tmp%\ufo2map_md5.vbs" @echo map_hash = Right^( map_hash, Len^( map_hash ^)-1 ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' WScript.Echo^( map_hash ^) >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo map_hash_string_token = InStr^( 1, map_hash, " ", 1 ^)-1 >>"%tmp%\ufo2map_md5.vbs" @echo If map_hash_string_token ^> 0 Then >>"%tmp%\ufo2map_md5.vbs" @echo map_hash = Left^( map_hash, map_hash_string_token ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( map_hash ^& " " ^& map_path ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build_write = map_last_build_write ^& vbNewline ^& map_hash ^& " " ^& map_path >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo If args.Item^(0^) = "/check" Then >>"%tmp%\ufo2map_md5.vbs" @echo For counter = 1 To UBound^( map_last_build_array ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build_array_string_split = InStr^( 1, map_last_build_array^(counter^), " ", 1 ^)-1 >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build_array_string_hash = Left^( map_last_build_array^(counter^), map_last_build_array_string_split ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build_array_string_path = Right^( map_last_build_array^(counter^), Len^( map_last_build_array^(counter^) ^)-map_last_build_array_string_split-1 ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' WScript.Echo^( map_last_build_array^(counter^) ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' WScript.Echo^( map_last_build_array_string_hash ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' WScript.Echo^( map_last_build_array_string_path ^) >>"%tmp%\ufo2map_md5.vbs" @echo If map_hash = map_last_build_array_string_hash And map_path = map_last_build_array_string_path Then >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( "unchanged" ^) >>"%tmp%\ufo2map_md5.vbs" @echo Exit For >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo If counter = UBound^( map_last_build_array ^) Then >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( "changed" ^) >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Echo^( "delte: " ^& map_source ^& "\" ^& Left^( map_path, Len^( map_path^)-3 ^) ^& "bsp" ^) >>"%tmp%\ufo2map_md5.vbs" @echo ' delete bsp >>"%tmp%\ufo2map_md5.vbs" @echo If FSO.FileExists^( map_source ^& "\" ^& Left^( map_path, Len^( map_path^)-3 ^) ^& "bsp" ^) Then >>"%tmp%\ufo2map_md5.vbs" @echo Set file_delete = FSO.GetFile^( map_source ^& "\" ^& Left^( map_path, Len^( map_path^)-3 ^) ^& "bsp" ^) >>"%tmp%\ufo2map_md5.vbs" @echo file_delete.Delete >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo Next >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo Next >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo For Each aItem In pCurrentDir.SubFolders >>"%tmp%\ufo2map_md5.vbs" @echo 'wscript.Echo aItem.Name ^& " passing recursively" >>"%tmp%\ufo2map_md5.vbs" @echo getInfo^(aItem^) >>"%tmp%\ufo2map_md5.vbs" @echo Next >>"%tmp%\ufo2map_md5.vbs" @echo If args.Item^(0^) = "/create" Then >>"%tmp%\ufo2map_md5.vbs" @echo Set oExec = WshShell.Exec^( """" ^& ufoai_source ^& "\ufo2map.exe"" -V" ^) >>"%tmp%\ufo2map_md5.vbs" @echo Do While oExec.Status = 0 >>"%tmp%\ufo2map_md5.vbs" @echo WScript.Sleep 100 >>"%tmp%\ufo2map_md5.vbs" @echo Loop >>"%tmp%\ufo2map_md5.vbs" @echo ufo2map_build = oExec.StdOut.ReadAll^(^) >>"%tmp%\ufo2map_md5.vbs" @echo ufo2map_build = Replace^( ufo2map_build, vbNewline, "", 1, -1, 1 ^) >>"%tmp%\ufo2map_md5.vbs" @echo. >>"%tmp%\ufo2map_md5.vbs" @echo Set map_last_build = FSO.CreateTextFile^( script_source ^& "\map_last_build.md5", true, false ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build.Write^( ufo2map_build ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build.Write^( map_last_build_write ^) >>"%tmp%\ufo2map_md5.vbs" @echo map_last_build.Close >>"%tmp%\ufo2map_md5.vbs" @echo End If >>"%tmp%\ufo2map_md5.vbs" @echo End Sub >>"%tmp%\ufo2map_md5.vbs" cscript "%tmp%\ufo2map_md5.vbs" %1 del /F /Q "%tmp%\ufo2map_md5.vbs" exit /b 0 goto :EOF :error color 40 @echo started at %starttime% @echo finished at %TIME% if "%shutdownonfinish%" == "true" ( reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce" /v UFOAI /t REG_SZ /d "%comspec% /k @echo UFOAI make_win32 was NOT successful" /f shutdown /s /f /t 0 ) @echo  endlocal pause goto :EOF
DarkRainX/ufoai
contrib/scripts/compile_maps.bat
bat
gpl-2.0
14,115
@echo off sc query PPWCode.Kit.Tasks.API_I >nul if errorlevel 0 sc start PPWCode.Kit.Tasks.API_I
jandockx/ppwcode-recovered-from-google-code
dotnet/Kit/Tasks/I/1.n/1.3/solution/Tools/StartService.bat
bat
apache-2.0
102
java -mx500m -cp "/C:/Users/Compaq 6910p/Documents/R/win-library/3.4/dismo/java/maxent.jar;C:/Users/Compaq 6910p/Documents/R/win-library/3.4/rJava/java/boot;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\dismo.jar;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\maxent.jar" density.Explain -l E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\8780145180\species.lambdas -c E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\8780145180\species.asc E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\8780145180\absence @if errorlevel 1 pause
mauriciovancine/enm_r
data/temp/raster/maxent/8780145180/species_explain.bat
bat
mit
644
for /f "tokens=*" %%i in ('powercfg -q ^| find "Power Scheme GUID"') do set pwrSchm=%%i set pwrSchm=%pwrSchm:~19,36% for /f "tokens=*" %%i in ('powercfg -q ^| find "(Display)"') do set dsply=%%i set dsply=%dsply:~15,36% for /f "tokens=*" %%i in ('powercfg -q ^| find "(Display brightness)"') do set brtnss=%%i set brtnss=%brtnss:~20,36% set /P brightness=Enter % brightness: %=% powercfg -SetDcValueIndex %pwrSchm% %dsply% %brtnss% %brightness% powercfg -S %pwrSchm%
shiriskumar/Scripts
change_brightness.bat
bat
mit
472
@echo off if exist node_modules\.bin\gulp goto :run_gulp echo Building npm modules: call npm rebuild :run_gulp call node_modules\.bin\gulp %*
kemalcany/client-megatrends
gulp.cmd
bat
mit
145
@echo off echo curl %*
pine613/p5-HTTP-Command-Wrapper
t/data/bin/curl.bat
bat
mit
23
:: Copied from Command Prompt Wrapper echo -----COLOR----- echo Changes the background and text color. echo List of colors: echo. echo 0 Black echo 1 Blue echo 2 Green echo 3 Cyan echo 4 Red echo 5 Magenta echo 6 Yellow echo 7 White echo 8 Gray/Grey echo 9 Light Blue echo A Light Green echo B Light Cyan echo C Light Red echo D Light Magenta echo E Light Yellow echo F Light White echo. echo The first color is the background, the second is the text. echo The default color code is 07. echo If no color code is given, then it will reset to the standard colors
Text-OS/Text-OS
Data/Commands/helpcolor.bat
bat
mit
577
@setlocal EnableDelayedExpansion EnableExtensions @for %%i in (a:\_packer_config*.cmd) do @call "%%~i" @if defined PACKER_DEBUG (@echo on) else (@echo off) title Installing Chef Client. Please wait... :: Download chef client if not exist "C:\Windows\Temp\chef.msi" ( echo ==^> Downloading Chef Client powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://www.chef.io/chef/install.msi', 'C:\Windows\Temp\chef.msi')" > nul @if errorlevel 1 echo ==^> WARNING: Error %ERRORLEVEL% was returned by: powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://www.chef.io/chef/install.msi', 'C:\Windows\Temp\chef.msi')" ) :: Install chef client reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\1945256682812F8459C51AA05AD1CF7D" > nul 2>&1 if errorlevel 1 ( echo ==^> Installing Chef Client msiexec /qb /i C:\Windows\Temp\chef.msi @if errorlevel 1 echo ==^> WARNING: Error %ERRORLEVEL% was returned by: msiexec /qb /i C:\Windows\Temp\chef.msi ) :: Sleep powershell -Command "Start-Sleep 1" >nul
audio4ears/packer-windows
scripts/chef.bat
bat
mit
1,089
@echo off call setup_vs_project_variables.bat > nul start msvc\aimp_control_plugin.sln
a0ivanov/aimp-control-plugin
vs_launch.bat
bat
mit
90
copy ..\..\..\style\base.css . saxon date.hour-in-day.xml ../../../style/function.xsl wzzip -P -o date.hour-in-day.zip @date.hour-in-day.package.txt wzzip -P -o date.hour-in-day.use-cases.zip @date.hour-in-day.use-cases.txt cd .. cd .. saxon date.xml ../style/module.xsl wzzip -P -o date.zip @date.package.txt cd .. saxon modules.xml style/package.xsl wzzip -P -o all-exslt.zip @package.txt saxon modules.xml style/xml-package.xsl wzzip -P -o exslt.zip @xml-package.txt cd date cd functions cd hour-in-day
exslt/exslt.github.io
date/functions/hour-in-day/update.bat
bat
mit
506
node r.js -o app.build.js
coderitual/jtop
build/build.bat
bat
mit
26
java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar CLEAN java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar PROPERTY CA false DP true java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar PROJECT 613018243116 user1 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user1 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user2 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user3 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user4 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user5 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user6 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user7 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user8 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user9 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user10 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user11 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user12 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user13 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user14 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user15 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user16 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user17 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user18 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user19 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user20 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user21 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user22 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user23 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user24 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user25 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user26 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user27 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user28 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user29 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user30 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user31 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user32 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user33 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user34 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user35 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user36 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user37 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user38 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user39 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user40 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user41 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user42 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user43 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user44 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user45 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user46 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user47 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user48 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user49 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user50 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user51 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user52 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user53 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user54 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user55 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user56 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user57 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE LOW user58 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE MEDIUM user59 start java -jar ../target/mgr_client-1.0-SNAPSHOT-jar-with-dependencies.jar COMPUTE HIGH user60
JakubSloniec/mgr_client
scripts/run_60_RP.bat
bat
mit
6,040
git submodule update --init --recursive npm install nuget update -self node scripts\nuget_restore.js
hozuki/MilliSim
init.cmd
bat
mit
101
@if not defined _echo @echo off setlocal set INIT_TOOLS_LOG=%~dp0init-tools.log if [%TOOLRUNTIME_DIR%]==[] set TOOLRUNTIME_DIR=%~dp0Tools set DOTNET_PATH=%TOOLRUNTIME_DIR%\dotnetcli\ if [%DOTNET_CMD%]==[] set DOTNET_CMD=%DOTNET_PATH%dotnet.exe set BUILD_TOOLS_SEMAPHORE=%TOOLRUNTIME_DIR%\init-tools.completed :: if force option is specified then clean the tool runtime and build tools package directory to force it to get recreated if [%1]==[force] ( if exist "%TOOLRUNTIME_DIR%" rmdir /S /Q "%TOOLRUNTIME_DIR%" ) :: If sempahore exists do nothing if exist "%BUILD_TOOLS_SEMAPHORE%" ( echo Tools are already initialized. goto :EOF ) if exist "%TOOLRUNTIME_DIR%" rmdir /S /Q "%TOOLRUNTIME_DIR%" echo Running %0 > "%INIT_TOOLS_LOG%" set /p DOTNET_VERSION=< "%~dp0DotnetCLIVersion.txt" if exist "%DOTNET_CMD%" goto :afterdotnetrestore echo Installing dotnet cli... if NOT exist "%DOTNET_PATH%" mkdir "%DOTNET_PATH%" set DOTNET_ZIP_NAME=dotnet-dev-win-x64.%DOTNET_VERSION%.zip set DOTNET_REMOTE_PATH=https://dotnetcli.azureedge.net/dotnet/Sdk/%DOTNET_VERSION%/%DOTNET_ZIP_NAME% set DOTNET_LOCAL_PATH=%DOTNET_PATH%%DOTNET_ZIP_NAME% echo Installing '%DOTNET_REMOTE_PATH%' to '%DOTNET_LOCAL_PATH%' >> "%INIT_TOOLS_LOG%" powershell -NoProfile -ExecutionPolicy unrestricted -Command "$retryCount = 0; $success = $false; do { try { (New-Object Net.WebClient).DownloadFile('%DOTNET_REMOTE_PATH%', '%DOTNET_LOCAL_PATH%'); $success = $true; } catch { if ($retryCount -ge 6) { throw; } else { $retryCount++; Start-Sleep -Seconds (5 * $retryCount); } } } while ($success -eq $false); Add-Type -Assembly 'System.IO.Compression.FileSystem' -ErrorVariable AddTypeErrors; if ($AddTypeErrors.Count -eq 0) { [System.IO.Compression.ZipFile]::ExtractToDirectory('%DOTNET_LOCAL_PATH%', '%DOTNET_PATH%') } else { (New-Object -com shell.application).namespace('%DOTNET_PATH%').CopyHere((new-object -com shell.application).namespace('%DOTNET_LOCAL_PATH%').Items(),16) }" >> "%INIT_TOOLS_LOG%" if NOT exist "%DOTNET_LOCAL_PATH%" ( echo ERROR: Could not install dotnet cli correctly. See '%INIT_TOOLS_LOG%' for more details. 1>&2 exit /b 1 ) :afterdotnetrestore :: Create sempahore file echo Done initializing tools. echo Init-Tools.cmd completed. > "%BUILD_TOOLS_SEMAPHORE%" exit /b 0
shlomiw/orleans
init-tools.cmd
bat
mit
2,276
start javaw -Djava.library.path=../lib;./Jogl-JSR231 -classpath ./;NativeFmodEx-Examples.jar;../lib/NativeFmodEx.jar;./Jogl-JSR231/jogl.jar;./Jogl-JSR231/gluegen-rt.jar org.jouvieje.FmodEx.Examples.Geometry_
unktomi/form-follows-function
f3_fmod/NativeFmodEx/Examples/Geometry_.bat
bat
gpl-2.0
207
cmd_net/sched/cls_flow.ko := mips-openwrt-linux-uclibc-ld -r -m elf32btsmip -T ./scripts/module-common.lds -s --build-id -o net/sched/cls_flow.ko net/sched/cls_flow.o net/sched/cls_flow.mod.o
Parkdaeyoung/OPENWRT-LEAKY-BUCKET
build_dir/target-mips_34kc_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.18.44/net/sched/.cls_flow.ko.cmd
bat
gpl-2.0
194
@echo // Copyright (C) 1996-2005 Markus F.X.J. Oberhumer @echo // @echo // Windows 32-bit @echo // Portland Group PGI C/C++ @echo // @call b\prepare.bat @if "%BECHO%"=="n" echo off pgcc -fast %CFI% -o %BEXE% src\*.c -L. -llzo2 @if errorlevel 1 goto error @call b\done.bat @goto end :error @echo ERROR during build! :end @call b\unset.bat
ystk/debian-lzop
B/win32/pgi.bat
bat
gpl-2.0
365
cmd_drivers/media/video/gspca/gspca_main.ko := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -T /home/friedrich420/kernel/s4/S4GEKernel/scripts/module-common.lds --build-id -o drivers/media/video/gspca/gspca_main.ko drivers/media/video/gspca/gspca_main.o drivers/media/video/gspca/gspca_main.mod.o
friedrich420/S4-GPE-AEL-Kernel-4.4.3
drivers/media/video/gspca/.gspca_main.ko.cmd
bat
gpl-2.0
326
@echo Create Bootstrap_rtl.vhd from Intel Bootloader file A86.com +L1 +P0 +W0 +T0 +G2 +S ldintel.asm ldintel.bin ..\..\bin\bin2case.exe ldintel.bin Bootstrap_intel_rtl.vhd 8
nsauzede/cpu86
Software/bootloader/ldintel.bat
bat
gpl-2.0
180
cmd_sound/isa/opti9xx/built-in.o := rm -f sound/isa/opti9xx/built-in.o; /home/utkanos/android/ginger/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs sound/isa/opti9xx/built-in.o
utkanos/android_htc_mecha_kernel_5slot
sound/isa/opti9xx/.built-in.o.cmd
bat
gpl-2.0
195
cmd_sound/parisc/built-in.o := rm -f sound/parisc/built-in.o; /usr/local/arm/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/parisc/built-in.o
miamo/miamOv
sound/parisc/.built-in.o.cmd
bat
gpl-2.0
137
cmd_fs/nls/nls_utf8.o := arm-none-linux-gnueabi-gcc -Wp,-MD,fs/nls/.nls_utf8.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -DMODULE -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(nls_utf8)" -D"KBUILD_MODNAME=KBUILD_STR(nls_utf8)" -c -o fs/nls/.tmp_nls_utf8.o fs/nls/nls_utf8.c deps_fs/nls/nls_utf8.o := \ fs/nls/nls_utf8.c \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/stat.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/linkage.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/last/bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/zone/dma.h) \ include/linux/const.h \ arch/arm/mach-davinci/include/mach/memory.h \ $(wildcard include/config/arch/davinci/da8xx.h) \ $(wildcard include/config/arch/davinci/dmx.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/sparsemem.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ include/asm-generic/getorder.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/dynamic_debug.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/errno.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \ arch/arm/mach-davinci/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/completion.h \ include/linux/rcutree.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/nls.h \ fs/nls/nls_utf8.o: $(deps_fs/nls/nls_utf8.o) $(deps_fs/nls/nls_utf8.o):
srinugnt2000/linux-2.6.37
fs/nls/.nls_utf8.o.cmd
bat
gpl-2.0
15,458
cmd_drivers/misc/mic/built-in.o := rm -f drivers/misc/mic/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/misc/mic/built-in.o
avareldalton85/rpi2-linux-rt
drivers/misc/mic/.built-in.o.cmd
bat
gpl-2.0
196
cmd_drivers/net/ethernet/natsemi/built-in.o := rm -f drivers/net/ethernet/natsemi/built-in.o; /mnt/640/ubu/gtabkernelsrc/android_prebuilt_toolchains-master/arm-cortex_a15-linux-gnueabihf-linaro_4.9.1/bin/arm-cortex_a15-linux-gnueabihf-ar rcsD drivers/net/ethernet/natsemi/built-in.o
chase2534/gtab47.freekern
drivers/net/ethernet/natsemi/.built-in.o.cmd
bat
gpl-2.0
284
cmd_sound/pci/lola/built-in.o := rm -f sound/pci/lola/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/pci/lola/built-in.o
selva-simple/Galaxy-R-Kernel
sound/pci/lola/.built-in.o.cmd
bat
gpl-2.0
174
cmd_drivers/gpu/drm/built-in.o := /home/jashaswee/vibex2/X2_ROW_L_OpenSource/arm-linux-androideabi-4.9/bin/arm-linux-androideabi-ld -EL -r -o drivers/gpu/drm/built-in.o drivers/gpu/drm/i2c/built-in.o
jashasweejena/VibeKernel
drivers/gpu/drm/.built-in.o.cmd
bat
gpl-2.0
205
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 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\Anubis.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Anubis.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
cmspsgp31/anubis
docs/make.bat
bat
gpl-3.0
7,249
cmunit -backend=llvm -config=debug tests.cms cmunit -backend=llvm -config=release tests.cms cmunit -backend=c -config=debug tests.cms cmunit -backend=c -config=release tests.cms
slaakko/cmajor
test/run.bat
bat
gpl-3.0
182
@ECHO OFF REM ### CONFIG BINAIRES - CHEMINS ABSOLUS REM GLOSGEOPATH - Chemin du dossier d'installation de QGIS / OSGeo4w (OSGeo4W.bat doit y etre present) SET GLOSGEOPATH=C:\Program Files\QGIS Wien REM SET GLOSGEOPATH=C:\OSGeo4W REM GLQGIS - Chemin vers qgis.bat SET GLQGIS=%GLOSGEOPATH%\bin\qgis.bat REM GLOGRINIT - Initialisation des variables d'environnement pour executer GDAL/OGR SET GLOSGEO4W=%GLOSGEOPATH%\OSGeo4W.bat REM GLOGR2OGR - Chemin vers ogr2ogr.exe SET GLOGR2OGR=%GLOSGEOPATH%\bin\ogr2ogr.exe SET GLOGRINFO=%GLOSGEOPATH%\bin\ogrinfo.exe SET GLNOTEPAD=notepad REM ### CONFIG BINAIRES - CHEMINS RELATIFS SET GLSPLEX=spatialite.exe --silent SET GLSPLTOOL=spatialite_tool.exe SET GLSPLGUI=spatialite_gui.exe SET GLSHP_DOCTOR=shp_doctor.exe SET GLSFK=sfk174.exe SET GL7Z=7z.exe REM ### CONFIG DBINTEG SPATIALITE SET GLDBINTEG=.\dbinteg\gracelite_integ.sqlite SET GLDBINTEGSCHEMA=.\sql_spatialite REM ### CONFIG DBPROD SPATIALITE SET GLDBPROD=.\dbprod\gracelite_prod.sqlite SET GLDBPRODSCHEMA=.\sql_spatialite REM ### CONFIG SHPCSV-IN SET GLSHPINPATH=.\shpcsv-in REM # CONFIG SPATIALITE_TOOL SET GLSHPINSRID=2154 SET GLSHPINCODE=CP1252 SET GLCSVINCODE=UTF-8 SET GLCSVINQUOTE=NONE SET GLCSVINDELIM=; REM ### CONFIG SHPCSV-OUT SET GLSHPOUTPATH=.\shpcsv-out REM # CONFIG SPATIALITE_TOOL SET GLSHPOUTSRID=2154 SET GLSHPOUTCODE=CP1252 SET GLCSVOUTCODE=UTF-8 SET GLCSVOUTQUOTE=NONE SET GLCSVOUTDELIM=; REM ### CONFIG DBPROD POSTGIS REM # CONFIG VARIABLES POSTGRESQL REM Configurer pgpassword et user. SET PGPASSWORD=MYPASSWORD REM VARIABLE POSTGRESQL POUR FIXER L'ENCODAGE DES SORTIES (PGSQL2SHP). NON TESTE. SET pgclientencoding=WIN1252 REM # CONFIG BATCH SET PGHOSTNAME=localhost SET PGPORT=5432 SET PGDB=gracethd20 SET PGSCHEMA=gracethd SET PGUSER=postgres REM SET PGSRC=D:\postgres_files\shpcsv-out SET PGSHPINPATH=D:\postgres_files\shpcsv-in SET PGSHPOUTPATH=D:\postgres_files\shpcsv-out SET PGSRID=2154 SET PGCODE=cp1252 SET PGCSVCONF= WITH DELIMITER ';' CSV HEADER ENCODING 'UTF8'
CADaGEO/Gracelite
config.bat
bat
gpl-3.0
2,003
#!/bin/sh rem (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. rem rem This file contains confidential and proprietary information rem of Xilinx, Inc. and is protected under U.S. and rem international copyright and other intellectual property rem laws. rem rem DISCLAIMER rem This disclaimer is not a license and does not grant any rem rights to the materials distributed herewith. Except as rem otherwise provided in a valid license issued to you by rem Xilinx, and to the maximum extent permitted by applicable rem law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND rem WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES rem AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING rem BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- rem INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and rem (2) Xilinx shall not be liable (whether in contract or tort, rem including negligence, or under any other theory of rem liability) for any loss or damage of any kind or nature rem related to, arising under or in connection with these rem materials, including for any direct, or any indirect, rem special, incidental, or consequential loss or damage rem (including loss of data, profits, goodwill, or any type of rem loss or damage suffered as a result of any action brought rem by a third party) even if such damage or loss was rem reasonably foreseeable or Xilinx had been advised of the rem possibility of the same. rem rem CRITICAL APPLICATIONS rem Xilinx products are not designed or intended to be fail- rem safe, or for use in any application requiring fail-safe rem performance, such as life-support or safety devices or rem systems, Class III medical devices, nuclear facilities, rem applications related to the deployment of airbags, or any rem other applications that could lead to death, personal rem injury, or severe property or environmental damage rem (individually and collectively, "Critical rem Applications"). Customer assumes the sole risk and rem liability of any use of Xilinx products in Critical rem Applications, subject only to applicable laws and rem regulations governing limitations on product liability. rem rem THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS rem PART OF THIS FILE AT ALL TIMES. rem ----------------------------------------------------------------------------- rem Script to synthesize and implement the Coregen FIFO Generator rem ----------------------------------------------------------------------------- rmdir /S /Q results mkdir results cd results copy ..\..\..\tmp\afifo_64i_16o_v6.edf . planAhead -mode batch -source ..\planAhead_rdn.tcl
CprE488/Final
repository/ProcessorIPLib/pcores/fmc_imageon_vita_receiver_v1_13_a/netlist/afifo_64i_16o_v6_ste/implement/planAhead_rdn.bat
bat
gpl-3.0
2,697
@ECHO ON CD /d %~dp0 FOR /D %%G in (*) do ( echo ***************************************************** echo * %%G echo ***************************************************** REM Goto directory CD %%G REM Update packages CALL npm update REM Build for production CALL build p REM Commit changes git add . git commit -m "New production build" REM Update code on PGB REM https://blog.phonegap.com/new-phonegap-build-nodejs-module-pgb-api-97d77ac56a31 )
Memba/Kidoju-Mobile
builds/buildall.cmd
bat
gpl-3.0
494
@echo off echo Installing dependencies.. echo: pip install -r %~dp0\requirements.txt echo: echo Installing display style.. start growl:display*https://raw.githubusercontent.com/senuido/stash-scanner/master/files/growl_display/compactdarkminimal.xml echo: pause
senuido/stash-scanner
files/install.bat
bat
gpl-3.0
261
@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\PyProSAIL.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyProSAIL.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
robintw/PyProSAIL
doc/make.bat
bat
lgpl-3.0
5,102
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( echo. echo Running Command echo %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/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\ODPSlides.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ODPSlides.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
sonofeft/ODPSlides
docs/make.bat
bat
lgpl-3.0
7,090
SET PATH=%path%;..\TOOLS\
Patosc/VelvetStudio
Code/setpath.bat
bat
unlicense
26
@set SERVER_IP=%1 @set RECIPE_URL=%2 @set RECIPE_TYPE=%3 @set INSTALL_NAME=%4 cd /d %CLOUDIFY_HOME% tools\cli\cloudify.bat "connect http://%SERVER_IP%:8100;%RECIPE_TYPE% %RECIPE_URL% " rem tools\cli\cloudify.bat "connect http://%SERVER_IP%:8100;%RECIPE_TYPE% -name %INSTALL_NAME% %RECIPE_URL% "
CloudifySource/cloudify-widget
bin/deployer.bat
bat
apache-2.0
301
@echo off set EDITLINE4JAVA_VERSION=0.1 set CLASSPATH=.\lib\commons-io-2.2.jar set CLASSPATH=%CLASSPATH%;.\lib\hamcrest-core-1.3.jar set CLASSPATH=%CLASSPATH%;.\lib\jna-3.5.2.jar set CLASSPATH=%CLASSPATH%;.\lib\junit-4.11.jar set CLASSPATH=%CLASSPATH%;.\lib\slf4j-api-1.7.7.jar set CLASSPATH=%CLASSPATH%;.\lib\slf4j-simple-1.7.7.jar set CLASSPATH=%CLASSPATH%;.\lib\TCC4Java-0.3.jar set CLASSPATH=%CLASSPATH%;.\dist\%EDITLINE4JAVA_VERSION%\EditLine4Java-%EDITLINE4JAVA_VERSION%.jar set CLASSPATH=%CLASSPATH%;.\dist\%EDITLINE4JAVA_VERSION%\EditLine4Java-%EDITLINE4JAVA_VERSION%-lib.jar set CLASSPATH=%CLASSPATH%;.\dist\%EDITLINE4JAVA_VERSION%\EditLine4Java-%EDITLINE4JAVA_VERSION%-test.jar set TESTS=AllTests IF NOT "%1"=="" ( set TESTS="%1" ) java -cp %CLASSPATH% -Dfile.encoding=UTF-8 -DEditLineImpl=cn.com.editline.EditLineImpl org.junit.runner.JUnitCore cn.com.editline.%TESTS% java -cp %CLASSPATH% -Dfile.encoding=UTF-8 -DEditLineImpl=cn.com.editline.EditLineImpl2 org.junit.runner.JUnitCore cn.com.editline.%TESTS% pause
wangzhengbo/EditLine4Java
runTest.bat
bat
apache-2.0
1,051
javac -classpath ..\..\..\lib\;. HtmlQuickView.java
datazuul/com.datazuul.apps--datazuul-explorer
src/main/java/views/htmlquickview/compHtml.bat
bat
apache-2.0
53
@echo off REM This can be run from MDT/SCCM like this (given you stored it in \Scripts\BiosSledgehammer): REM --- REM cmd.exe /c "%SCRIPTROOT%\BiosSledgehammer\RunVisible.bat" REM --- SET PS_PART_PATH=WindowsPowerShell\v1.0\powershell.exe SET PS_EXE=C:\Windows\System32\%PS_PART_PATH% SET PS_EXE_SYSNATIVE=c:\windows\sysnative\%PS_PART_PATH% REM We need to make sure to start the 64-bit PowerShell on a 64-bit machine. REM If we are running in WoW, C:\windows\sysnative is active, in any other case it is not IF EXIST "%PS_EXE_SYSNATIVE%" SET PS_EXE=%PS_EXE_SYSNATIVE% start "BIOS Sledgehammer" /wait %PS_EXE% -ExecutionPolicy Bypass -File "%~dp0BiosSledgehammer.ps1" -WaitAtEnd
texhex/BiosSledgehammer
RunVisible.bat
bat
apache-2.0
696
zip -r "c:\temp\backup\chrome-%date:/=-% %time::=-%.zip" ..\chrome\* rm -rf ..\chrome\common ..\chrome\images cp -r data\common data\images ..\chrome zip -r "c:\temp\backup\firefox-%date:/=-% %time::=-%.zip" ..\firefox\* rm -rf ..\firefox\data\common ..\firefox\data\images cp -r data\common data\images ..\firefox\data
andrew-tpfc/pgid
firefox_mobile/update.bat
bat
bsd-2-clause
321
@echo off setlocal set gccinps=imginf.c ggetopt.c jpginf.c exif.c pnginf.c set gccopts=-Wall -mconsole -O2 set gccdefs=-DWINVER=0x0500 -D_WIN32_WINNT=0x500 set gcclibs= set gccexec=imginf.exe echo Compiling %gccexec% @echo on gcc %gccdefs% %gccopts% -o %gccexec% %gccinps% %gcclibs%
conoror/misc
imginf/make.bat
bat
bsd-2-clause
299
@echo off :: Copyright (c) 2013 The Chromium Authors. All rights reserved. :: Use of this source code is governed by a BSD-style license that can be :: found in the LICENSE file. setlocal :: Synchronize the root directory before deferring control back to gclient.py. call "%~dp0\update_depot_tools.bat" :: Ensure that "depot_tools" is somewhere in PATH so this tool can be used :: standalone, but allow other PATH manipulations to take priority. set PATH=%PATH%;%~dp0 :: Defer control. IF "%GCLIENT_PY3%" == "1" ( :: Explicitly run on Python 3 call vpython3 "%~dp0\fetch.py" %* ) ELSE IF "%GCLIENT_PY3%" == "0" ( :: Explicitly run on Python 2 call vpython "%~dp0\fetch.py" %* ) ELSE ( :: Run on Python 3, allows default to be flipped. call vpython3 "%~dp0\fetch.py" %* )
endlessm/chromium-browser
third_party/depot_tools/fetch.bat
bat
bsd-3-clause
810
@echo off cd /d "%~dp0" call config.bat if exist config.user.bat call config.user.bat echo start VM:"%VM_VMX%" %VMRUN_EXE% start "%VM_VMX%" nogui
kunst1080/vm-provision-freebsd-shellgei
vmstart-nogui.bat
bat
mit
150
@echo off setlocal enableDelayedExpansion set hostpath=%1 if "%hostpath%"=="" set hostpath=localhost if exist delete_test_results.txt (del delete_test_results.txt) echo {^"deleteResults^":[ > delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/account.php?bad[some]=stuff >> delete_test_results.txt echo , >> delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/study.php?bad[some]=stuff >> delete_test_results.txt echo , >> delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/account.php?user[some]=stuff >> delete_test_results.txt echo , >> delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/study.php?config[some]=stuff >> delete_test_results.txt echo , >> delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/study.php?task[some]=stuff >> delete_test_results.txt echo , >> delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/study.php?schedule[some]=stuff >> delete_test_results.txt echo , >> delete_test_results.txt curl -X DELETE --header "Content-Length:0" -g http://%hostpath%/wlux/data/study.php?variable[some]=stuff >> delete_test_results.txt echo ]} >> delete_test_results.txt
rbwatson/wlux_web_service
test/delete_test.bat
bat
mit
1,364
@ECHO OFF :Loop IF "%1"=="" GOTO Continue "%~dp0\multimarkdown" -b -t opml %1 SHIFT GOTO Loop :Continue
fletcher/MultiMarkdown-5
scripts/mmd2opml.bat
bat
mit
116
node bot.js PAUSE
Jushiii/Tropics-Bot
start_bot.bat
bat
mit
18
@ECHO OFF set MSBuildExe="%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" IF NOT EXIST %MSBuildExe% GOTO MSBuildNotFound :: Prompt for product version :: -------------------------------------------------- set /p Configuration=Configuration: %=% set /p MajorVersion=Major Version: %=% set /p MinorVersion=Minor Version: %=% set /p RevisionNumber=Revision Number: %=% :: Run MSBuild :: -------------------------------------------------- cd src %SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\msbuild build.proj /target:Package /property:Configuration=%Configuration% /property:MajorVersion=%MajorVersion% /property:MinorVersion=%MinorVersion% /property:RevisionNumber=%RevisionNumber% /property:Commit=%Commit% if errorlevel 1 pause cd.. GOTO Exit :MSBuildNotFound ECHO MSBuild Not Found: %MSBuildExe% PAUSE GOTO Exit :GitNotFound ECHO GIT Not Found: %GitExe% PAUSE GOTO Exit :Exit
jeoffman/Harvester
package.cmd
bat
mit
901
cd jni call ndk-build if %ERRORLEVEL% EQU 0 ( echo ndk-build has failed, build cancelled cd.. mkdir "assets\shaders\base" xcopy "..\..\data\shaders\base\*.spv" "assets\shaders\base" /Y mkdir "assets\shaders\shadowmapping" xcopy "..\..\data\shaders\shadowmapping\*.spv" "assets\shaders\shadowmapping" /Y mkdir "assets\models" xcopy "..\..\data\models\vulkanscene_shadow.dae" "assets\models" /Y mkdir "res\drawable" xcopy "..\..\android\images\icon.png" "res\drawable" /Y call ant debug -Dout.final.file=vulkanShadowmapping.apk ) ELSE ( echo error : ndk-build failed with errors! cd.. )
martty/Vulkan
android/shadowmapping/build.bat
bat
mit
607
cmd_arch/arm/mm/pabort-v7.o := /home/rms/exp/scripts/gcc-wrapper.py arm-eabi-gcc -Wp,-MD,arch/arm/mm/.pabort-v7.o.d -nostdinc -isystem /home/rms/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/rms/exp/arch/arm/include -Iarch/arm/include/generated -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/mm/pabort-v7.o arch/arm/mm/pabort-v7.S source_arch/arm/mm/pabort-v7.o := arch/arm/mm/pabort-v7.S deps_arch/arm/mm/pabort-v7.o := \ /home/rms/exp/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/rms/exp/arch/arm/include/asm/linkage.h \ /home/rms/exp/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/rms/exp/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/rms/exp/arch/arm/include/asm/hwcap.h \ /home/rms/exp/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ arch/arm/mm/pabort-v7.o: $(deps_arch/arm/mm/pabort-v7.o) $(deps_arch/arm/mm/pabort-v7.o):
R-M-S/RMS_EXPERIMENTAL_Kernel
arch/arm/mm/.pabort-v7.o.cmd
bat
gpl-2.0
1,976
echo on start cmd /k "py -2.7 -m SimpleHTTPServer 8000" ::start python static server
danalexandru/Algo
code-js/workers/startPyServer.bat
bat
gpl-2.0
86
m-minerd.exe -o stratum+tcp://pool_url:pool_port -u pool_user.worker -p password -t thread_numbers -e cpu_efficiency
magi-project/m-cpuminer-v2
m-minerd.bat
bat
gpl-2.0
116
@echo Full distr and tests @echo add MSBuild 12 to your path MSBuild.exe ./BuildAll.csproj MSBuild.exe ./BuildAll.csproj /t:CreateZipForUpdateDll MSBuild.exe ./BuildAll.csproj /t:xUnitTest
artbear/OneScript
dist.cmd
bat
mpl-2.0
189
java -cp "jars/tigase-server.jar;libs/*" -Djdbc.drivers=com.mysql.jdbc.Driver tigase.server.XMPPServer --property-file etc/init.properties
zooldk/tigase-server
win-stuff/scripts/Run.bat
bat
agpl-3.0
139
:: :: windows script to create a single header with OpenCL :: kernels defined as variables :: @author Daniel Ayres :: @author Aaron Darling :: cd ..\..\..\libhmsbeagle\GPU\kernels echo #define STATE_COUNT 4 > kernels4.cl type ..\GPUImplDefs.h >> kernels4.cl type kernelsAll.cu >> kernels4.cl type kernels4.cu >> kernels4.cl FOR %%G IN (16 32 48 64 80 128 192) DO ( echo #define STATE_COUNT %%G> kernels%%G.cl type ..\GPUImplDefs.h >> kernels%%G.cl type kernelsAll.cu >> kernels%%G.cl type kernelsX.cu >> kernels%%G.cl ) echo #define STATE_COUNT 4 > kernels_dp_4.cl echo #define DOUBLE_PRECISION>> kernels_dp_4.cl type ..\GPUImplDefs.h >> kernels_dp_4.cl type kernelsAll.cu >> kernels_dp_4.cl type kernels4.cu >> kernels_dp_4.cl FOR %%G IN (16 32 48 64 80 128 192) DO ( echo #define STATE_COUNT %%G> kernels_dp_%%G.cl echo #define DOUBLE_PRECISION>> kernels_dp_%%G.cl type ..\GPUImplDefs.h >> kernels_dp_%%G.cl type kernelsAll.cu >> kernels_dp_%%G.cl type kernelsX.cu >> kernels_dp_%%G.cl ) set OUTFILE="BeagleOpenCL_kernels.h" echo // auto-generated header file with OpenCL kernels code > %OUTFILE% echo #ifndef __BeagleOpenCL_kernels__ >> %OUTFILE% echo #define __BeagleOpenCL_kernels__ >> %OUTFILE% FOR %%G IN (4 16 32 48 64 80 128 192) DO ( ..\..\..\project\beagle-vs-2017\cuda-kernels\bin2c.exe -p 0 -st -n KERNELS_STRING_SP_%%G kernels%%G.cl >> %OUTFILE% ..\..\..\project\beagle-vs-2017\cuda-kernels\bin2c.exe -p 0 -st -n KERNELS_STRING_DP_%%G kernels_dp_%%G.cl >> %OUTFILE% del kernels%%G.cl del kernels_dp_%%G.cl ) echo #endif // __BeagleOpenCL_kernels__ >> %OUTFILE%
swofford/beagle-lib
project/beagle-vs-2017/libhmsbeagle-opencl/createOpenCLHeader.bat
bat
lgpl-3.0
1,649
@echo off REM ***************************************************************************** REM REM Pentaho Data Integration REM REM Copyright (C) 2006-2019 by Hitachi Vantara : http://www.hitachivantara.com REM REM ***************************************************************************** REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with REM the License. You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. REM REM ***************************************************************************** setlocal cd /D %~dp0 call "%~dp0set-pentaho-env.bat" "%_PENTAHO_JAVA%" -Xmx2048m -XX:MaxPermSize=256m -classpath "%~dp0plugins\pdi-pur-plugin\*;%~dp0lib\*" com.pentaho.di.purge.RepositoryCleanupUtil %*
lgrill-pentaho/pentaho-kettle
assemblies/static/src/main/resources/purge-utility.bat
bat
apache-2.0
1,154
@REM -------------------------------------------------------------------------- @REM This is for Lucene search integration. @REM @REM Allows you to add an indexed branch specification to the repository config @REM for all matching repositories in the specified folder. @REM @REM All repositories are included unless excluded using a --skip parameter. @REM --skip supports simple wildcard fuzzy matching however only 1 asterisk is @REM allowed per parameter. @REM @REM Always use forward-slashes for the path separator in your parameters!! @REM @REM Set FOLDER to the server's git.repositoriesFolder @REM Set BRANCH ("default" or fully qualified ref - i.e. refs/heads/master) @REM Set EXCLUSIONS for any repositories that you do not want to change @REM -------------------------------------------------------------------------- @SET FOLDER=c:/gitblit/git @SET EXCLUSIONS=--skip test.git --skip group/test* @SET BRANCH=default @java -cp gitblit.jar;"%CD%\ext\*" com.gitblit.AddIndexedBranch --repositoriesFolder %FOLDER% --branch %BRANCH% %EXCLUSIONS%
saper/gitblit
distrib/add-indexed-branch.cmd
bat
apache-2.0
1,070
java -cp ../java-taxii-clients-all.jar org.mitre.taxii.client.example.FeedInformationClient10 %*
anl-cyberscience/java-taxii-clients
scripts/feedInfo.bat
bat
bsd-3-clause
97
@ECHO off set MAVEN_OPTS_BACKUP=%MAVEN_OPTS% set MAVEN_OPTS= del /F /Q work\plugins call mvn -Dmaven.test.skip=true -DskipTests=true clean hpi:run <nul set MAVEN_OPTS=%MAVEN_OPTS_BACKUP%
jenkinsci/ec2-deployment-dashboard
run-fast.bat
bat
mit
189
@call ..\tools\build.bat balloon.sln "WXp Wnet Wlh Win7 Win8 Win10" %*
ladipro/kvm-guest-drivers-windows
Balloon/buildAll.bat
bat
bsd-2-clause
71
set MAJOR_PREVIOUS=1 set MINOR_PREVIOUS=5 set PATCH_PREVIOUS=24 set PRERELEASE_PREVIOUS=-beta set MAJOR=1 set MINOR=5 set PATCH=25 set PRERELEASE=
Rolstenhouse/sarif-sdk
SetCurrentVersion.cmd
bat
mit
148
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\node_modules\jsonlint-lines\lib\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\node_modules\jsonlint-lines\lib\cli.js" %* )
johnson1994/Feed
jsonlint.cmd
bat
mit
212
@ SETLOCAL @ set lib=libgame.so @ set arg=%1 @ IF "%~1" == "debug" set lib=libgame-debug.so && set arg= @ IF "%~1" == "release" set arg= cd platforms\android-arm7\bin @ IF errorlevel 1 call :error-cd "failed to change current directory" & exit /B 1 echo F | xcopy /y out\%lib% libs\armeabi-v7a\libapplication.so @ IF errorlevel 1 call :error-cd "failed to copy application shared object" & exit /B 1 @IF NOT EXIST gen GOTO no-gen rmdir /s /q gen @ IF errorlevel 1 call :error-cd "failed to delete directory with auto-generated files" & exit /B 1 :no-gen ant %arg% %2 %3 %4 %5 %6 %7 %8 %9 -Dsdk.dir=%ANDROID_HOME% @ IF errorlevel 1 call :error-cd "failed to build application package" & exit /B 1 @ GOTO success :error-cd cd .. :error @ echo Error: %~1. 1>&2 @ GOTO :eof :success cd .. @ ENDLOCAL
Amadren/hx-gameplay
haxelib/templates/platforms/run-android-arm7.bat
bat
mit
806
@echo off python -c "from combinator import sysenv; sysenv.export()" > div_env.bat call div_env.bat title Divmod Command Shell cd ..\..\.. cmd
habnabit/Combinator
divcmd.bat
bat
mit
153
/* ============================================================================ */ /* Copyright (c) 2014, Texas Instruments Incorporated */ /* All rights reserved. */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* * Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* * Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in the */ /* documentation and/or other materials provided with the distribution. */ /* */ /* * Neither the name of Texas Instruments Incorporated nor the names of */ /* its contributors may be used to endorse or promote products derived */ /* from this software without specific prior written permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" */ /* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, */ /* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */ /* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR */ /* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, */ /* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; */ /* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, */ /* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR */ /* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */ /* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* ============================================================================ */ /******************************************************************************/ /* lnk_msp430g2231.cmd - LINKER COMMAND FILE FOR LINKING MSP430G2231 PROGRAMS */ /* */ /* Usage: lnk430 <obj files...> -o <out file> -m <map file> lnk.cmd */ /* cl430 <src files...> -z -o <out file> -m <map file> lnk.cmd */ /* */ /*----------------------------------------------------------------------------*/ /* These linker options are for command line linking only. For IDE linking, */ /* you should set your linker options in Project Properties */ /* -c LINK USING C CONVENTIONS */ /* -stack 0x0100 SOFTWARE STACK SIZE */ /* -heap 0x0100 HEAP AREA SIZE */ /* */ /*----------------------------------------------------------------------------*/ /* Version: 1.139 */ /*----------------------------------------------------------------------------*/ /****************************************************************************/ /* SPECIFY THE SYSTEM MEMORY MAP */ /****************************************************************************/ MEMORY { SFR : origin = 0x0000, length = 0x0010 PERIPHERALS_8BIT : origin = 0x0010, length = 0x00F0 PERIPHERALS_16BIT : origin = 0x0100, length = 0x0100 RAM : origin = 0x0200, length = 0x0080 INFOA : origin = 0x10C0, length = 0x0040 INFOB : origin = 0x1080, length = 0x0040 INFOC : origin = 0x1040, length = 0x0040 INFOD : origin = 0x1000, length = 0x0040 FLASH : origin = 0xF800, length = 0x07E0 INT00 : origin = 0xFFE0, length = 0x0002 INT01 : origin = 0xFFE2, length = 0x0002 INT02 : origin = 0xFFE4, length = 0x0002 INT03 : origin = 0xFFE6, length = 0x0002 INT04 : origin = 0xFFE8, length = 0x0002 INT05 : origin = 0xFFEA, length = 0x0002 INT06 : origin = 0xFFEC, length = 0x0002 INT07 : origin = 0xFFEE, length = 0x0002 INT08 : origin = 0xFFF0, length = 0x0002 INT09 : origin = 0xFFF2, length = 0x0002 INT10 : origin = 0xFFF4, length = 0x0002 INT11 : origin = 0xFFF6, length = 0x0002 INT12 : origin = 0xFFF8, length = 0x0002 INT13 : origin = 0xFFFA, length = 0x0002 INT14 : origin = 0xFFFC, length = 0x0002 RESET : origin = 0xFFFE, length = 0x0002 } /****************************************************************************/ /* SPECIFY THE SECTIONS ALLOCATION INTO MEMORY */ /****************************************************************************/ SECTIONS { .bss : {} > RAM /* GLOBAL & STATIC VARS */ .data : {} > RAM /* GLOBAL & STATIC VARS */ .sysmem : {} > RAM /* DYNAMIC MEMORY ALLOCATION AREA */ .stack : {} > RAM (HIGH) /* SOFTWARE SYSTEM STACK */ .text : {} > FLASH /* CODE */ .cinit : {} > FLASH /* INITIALIZATION TABLES */ .const : {} > FLASH /* CONSTANT DATA */ .cio : {} > RAM /* C I/O BUFFER */ .pinit : {} > FLASH /* C++ CONSTRUCTOR TABLES */ .init_array : {} > FLASH /* C++ CONSTRUCTOR TABLES */ .mspabi.exidx : {} > FLASH /* C++ CONSTRUCTOR TABLES */ .mspabi.extab : {} > FLASH /* C++ CONSTRUCTOR TABLES */ .infoA : {} > INFOA /* MSP430 INFO FLASH MEMORY SEGMENTS */ .infoB : {} > INFOB .infoC : {} > INFOC .infoD : {} > INFOD /* MSP430 INTERRUPT VECTORS */ .int00 : {} > INT00 .int01 : {} > INT01 PORT1 : { * ( .int02 ) } > INT02 type = VECT_INIT PORT2 : { * ( .int03 ) } > INT03 type = VECT_INIT USI : { * ( .int04 ) } > INT04 type = VECT_INIT ADC10 : { * ( .int05 ) } > INT05 type = VECT_INIT .int06 : {} > INT06 .int07 : {} > INT07 TIMERA1 : { * ( .int08 ) } > INT08 type = VECT_INIT TIMERA0 : { * ( .int09 ) } > INT09 type = VECT_INIT WDT : { * ( .int10 ) } > INT10 type = VECT_INIT .int11 : {} > INT11 .int12 : {} > INT12 .int13 : {} > INT13 NMI : { * ( .int14 ) } > INT14 type = VECT_INIT .reset : {} > RESET /* MSP430 RESET VECTOR */ } /****************************************************************************/ /* INCLUDE PERIPHERALS MEMORY MAP */ /****************************************************************************/ -l msp430g2231.cmd
mbochynski/SmartHome
msp430/lnk_msp430g2231.cmd
bat
mit
8,307
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set SPHINXOPTS=-W 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\EasyTensorflow.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\EasyTensorflow.qhc 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
calvinschmdt/EasyTensorflow
docs/make.bat
bat
mit
5,139
@echo off set RELEASENOTES="None specified." if not %1=="" set RELEASENOTES=%1 pushd %~dp0\Ziks.WebServer nuget pack Ziks.WebServer.csproj -OutputDirectory "..\packages" -Properties Configuration=Release;releaseNotes=%RELEASENOTES% popd
Metapyziks/Ziks.WebServer
nuget-pack.bat
bat
mit
241
..\fb.13\fbc -ex -t 20000 -mt ftp-rix.bas pause
runemoennike/Freebasic-HTTP-Server
ftp-rix/make.bat
bat
mit
47
@echo off copy ..\x64\release\obs.exe .\ copy ..\obsapi\x64\release\obsapi.dll .\ copy ..\dshowplugin\x64\release\dshowplugin.dll .\plugins copy ..\graphicscapture\x64\release\graphicscapture.dll .\plugins copy ..\graphicscapture\graphicscapturehook\x64\release\graphicscapturehook.dll .\plugins\graphicscapture copy ..\x264\libs\64bit\libx264-129.dll .\
SeargeDP/OBS
rundir/copyrelease64.bat
bat
gpl-2.0
355
cmd_fs/ext2/ext2.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o fs/ext2/ext2.o fs/ext2/balloc.o fs/ext2/dir.o fs/ext2/file.o fs/ext2/ialloc.o fs/ext2/inode.o fs/ext2/ioctl.o fs/ext2/namei.o fs/ext2/super.o fs/ext2/symlink.o fs/ext2/xattr.o fs/ext2/xattr_user.o fs/ext2/xattr_trusted.o
emwno/android_kernel_U8500
fs/ext2/.ext2.o.cmd
bat
gpl-2.0
311
cmd_drivers/md/dm-mod.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/md/dm-mod.o drivers/md/dm-uevent.o drivers/md/dm.o drivers/md/dm-table.o drivers/md/dm-target.o drivers/md/dm-linear.o drivers/md/dm-stripe.o drivers/md/dm-ioctl.o drivers/md/dm-io.o drivers/md/dm-kcopyd.o drivers/md/dm-sysfs.o
0xD34D/kernel_amazon_tate
drivers/md/.dm-mod.o.cmd
bat
gpl-2.0
352
cmd_crypto/hmac.o := arm-linux-gnueabi-gcc -Wp,-MD,crypto/.hmac.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(hmac)" -D"KBUILD_MODNAME=KBUILD_STR(hmac)" -c -o crypto/hmac.o crypto/hmac.c deps_crypto/hmac.o := \ crypto/hmac.c \ include/crypto/internal/hash.h \ include/crypto/algapi.h \ include/linux/crypto.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \ $(wildcard include/config/smp.h) \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/msm.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/linkage.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/atomic-long.h \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/stat.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_debug.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/memory/hotplug/sparse.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ include/linux/completion.h \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ include/linux/percpu.h \ $(wildcard include/config/have/legacy/per/cpu/area.h) \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/debug/kmemleak.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slob_def.h \ include/linux/pfn.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/uaccess.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/crypto/hash.h \ include/crypto/scatterwalk.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/stack/usage.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/timex.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \ arch/arm/mach-msm/include/mach/irqs.h \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm8x60.h) \ arch/arm/mach-msm/include/mach/irqs-8x50.h \ arch/arm/mach-msm/include/mach/sirc.h \ $(wildcard include/config/msm/soc/rev/a.h) \ arch/arm/mach-msm/include/mach/msm_iomap.h \ arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \ $(wildcard include/config/mach/es209ra.h) \ $(wildcard include/config/msm/debug/uart.h) \ include/linux/irq_cpustat.h \ include/linux/highmem.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/radix-tree.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/mm.h \ $(wildcard include/config/swap.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-msm/include/mach/vmalloc.h \ $(wildcard include/config/vmsplit/2g.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/have/mlocked/page/bit.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ $(wildcard include/config/outer/cache.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ $(wildcard include/config/arm/errata/411920.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmparam.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/scatterlist.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/io.h \ arch/arm/mach-msm/include/mach/io.h \ crypto/hmac.o: $(deps_crypto/hmac.o) $(deps_crypto/hmac.o):
b8e5n/KTG-kernel_es209ra
crypto/.hmac.o.cmd
bat
gpl-2.0
24,930
cmd_drivers/media/radio/built-in.o := rm -f drivers/media/radio/built-in.o; ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/media/radio/built-in.o
tcp209/kernel_samsung_epic4gtouch
build/epic4gtouch/drivers/media/radio/.built-in.o.cmd
bat
gpl-2.0
199
cmd_scripts/kconfig/kxgettext.o := gcc -Wp,-MD,scripts/kconfig/.kxgettext.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/kxgettext.o scripts/kconfig/kxgettext.c deps_scripts/kconfig/kxgettext.o := \ scripts/kconfig/kxgettext.c \ /usr/include/stdc-predef.h \ /usr/include/stdlib.h \ /usr/include/features.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/include/stddef.h \ /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/bits/byteswap-16.h \ /usr/include/sys/types.h \ /usr/include/time.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/bits/stdlib-bsearch.h \ /usr/include/bits/stdlib-float.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/bits/locale.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/kxgettext.o: $(deps_scripts/kconfig/kxgettext.o) $(deps_scripts/kconfig/kxgettext.o):
gionata/sistemi-operativi
scripts/kconfig/.kxgettext.o.cmd
bat
gpl-2.0
1,944
cmd_fs/autofs4/inode.o := gcc -Wp,-MD,fs/autofs4/.inode.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.6/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -fno-optimize-sibling-calls -mtune=generic -m64 -mno-red-zone -mcmodel=kernel -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -maccumulate-outgoing-args -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -DMODULE -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(inode)" -D"KBUILD_MODNAME=KBUILD_STR(autofs4)" -c -o fs/autofs4/inode.o fs/autofs4/inode.c deps_fs/autofs4/inode.o := \ fs/autofs4/inode.c \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ include/linux/compiler-gcc4.h \ $(wildcard include/config/forced/inlining.h) \ include/linux/compiler-gcc.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/asm/posix_types.h \ include/asm/types.h \ include/linux/bitops.h \ include/asm/bitops.h \ include/asm/alternative.h \ $(wildcard include/config/smp.h) \ $(wildcard include/config/paravirt.h) \ include/asm/cpufeature.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/slab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ include/linux/thread_info.h \ include/asm/thread_info.h \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ $(wildcard include/config/physical/start.h) \ include/linux/const.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/pda.h \ $(wildcard include/config/cc/stackprotector.h) \ include/linux/cache.h \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ $(wildcard include/config/x86/vsmp.h) \ include/asm/mmsegment.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/asm/system.h \ $(wildcard include/config/unordered/io.h) \ include/asm/segment.h \ include/asm/cmpxchg.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ include/asm/processor-flags.h \ include/asm-i386/processor-flags.h \ include/linux/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/asm/processor.h \ include/asm/sigcontext.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm-i386/msr-index.h \ include/linux/errno.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/asm/current.h \ include/asm/percpu.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/string.h \ include/asm/string.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/stacktrace.h \ $(wildcard include/config/stacktrace.h) \ include/linux/spinlock_types_up.h \ include/linux/spinlock_up.h \ include/linux/spinlock_api_smp.h \ include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/wait.h \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/acpi/hotplug/memory.h) \ include/linux/seqlock.h \ include/linux/nodemask.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/mutex-debug.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/smp.h \ include/asm/topology.h \ $(wildcard include/config/acpi/numa.h) \ include/asm-generic/topology.h \ include/linux/slub_def.h \ include/linux/workqueue.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/time.h \ include/linux/jiffies.h \ include/linux/calc64.h \ include/asm/div64.h \ include/asm-generic/div64.h \ include/linux/timex.h \ $(wildcard include/config/time/interpolation.h) \ $(wildcard include/config/no/hz.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/asm/timex.h \ include/asm/8253pit.h \ include/asm/vsyscall.h \ $(wildcard include/config/generic/time.h) \ include/asm/hpet.h \ $(wildcard include/config/hpet/emulate/rtc.h) \ include/asm/tsc.h \ include/asm-i386/tsc.h \ $(wildcard include/config/x86/tsc.h) \ $(wildcard include/config/x86/generic.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kref.h \ include/linux/file.h \ include/linux/rcupdate.h \ include/linux/percpu.h \ include/linux/seq_file.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ include/linux/capability.h \ include/linux/rbtree.h \ include/linux/prio_tree.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/namei.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/radix-tree.h \ include/linux/pid.h \ include/asm/semaphore.h \ include/asm/rwlock.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/err.h \ include/linux/backing-dev.h \ include/linux/mm_types.h \ include/asm/pgtable.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/s390.h) \ $(wildcard include/config/swap.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ include/linux/uaccess.h \ include/asm/uaccess.h \ include/asm/cacheflush.h \ $(wildcard include/config/debug/rodata.h) \ include/asm/kmap_types.h \ include/linux/parser.h \ include/linux/magic.h \ fs/autofs4/autofs_i.h \ include/linux/auto_fs4.h \ include/linux/auto_fs.h \ include/linux/sched.h \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/compat.h) \ $(wildcard include/config/fault/injection.h) \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/mmu.h \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ $(wildcard include/config/ipc/ns.h) \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/securebits.h \ include/linux/fs_struct.h \ include/linux/completion.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/futex.h \ $(wildcard include/config/futex.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/mount.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ include/linux/elf.h \ include/linux/elf-em.h \ include/asm/elf.h \ include/asm/user.h \ include/linux/moduleparam.h \ include/asm/local.h \ include/asm/module.h \ fs/autofs4/inode.o: $(deps_fs/autofs4/inode.o) $(deps_fs/autofs4/inode.o):
dnh34/proj1
fs/autofs4/.inode.o.cmd
bat
gpl-2.0
13,075
cmd_crypto/crypto_blkcipher.o := ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ld -EL -r -o crypto/crypto_blkcipher.o crypto/ablkcipher.o crypto/blkcipher.o
chrnueve/udooImaxdi
kernel_oficial_source/crypto/.crypto_blkcipher.o.cmd
bat
gpl-2.0
166
cmd_sound/soundcore.o := ld -m elf_x86_64 -r -o sound/soundcore.o sound/sound_core.o
Existed/kernel-2.6.35.14
sound/.soundcore.o.cmd
bat
gpl-2.0
88
cmd_net/ipv4/tcp_cong.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/ipv4/.tcp_cong.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(tcp_cong)" -D"KBUILD_MODNAME=KBUILD_STR(tcp_cong)" -c -o net/ipv4/.tmp_tcp_cong.o net/ipv4/tcp_cong.c deps_net/ipv4/tcp_cong.o := \ net/ipv4/tcp_cong.c \ $(wildcard include/config/modules.h) \ $(wildcard include/config/default/tcp/cong.h) \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/stat.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/linkage.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/last/bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/zone/dma.h) \ include/linux/const.h \ arch/arm/mach-davinci/include/mach/memory.h \ $(wildcard include/config/arch/davinci/da8xx.h) \ $(wildcard include/config/arch/davinci/dmx.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/sparsemem.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ include/asm-generic/getorder.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/dynamic_debug.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/errno.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \ arch/arm/mach-davinci/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/completion.h \ include/linux/rcutree.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/memory/failure.h) \ include/linux/rbtree.h \ include/linux/prio_tree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-davinci/include/mach/vmalloc.h \ arch/arm/mach-davinci/include/mach/hardware.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/net/tcp.h \ $(wildcard include/config/ipv6.h) \ $(wildcard include/config/net/dma.h) \ $(wildcard include/config/tcp/md5sig.h) \ include/linux/tcp.h \ include/linux/socket.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/socket.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sockios.h \ include/linux/sockios.h \ include/linux/uio.h \ include/linux/skbuff.h \ $(wildcard include/config/nf/conntrack.h) \ $(wildcard include/config/bridge/netfilter.h) \ $(wildcard include/config/xfrm.h) \ $(wildcard include/config/net/sched.h) \ $(wildcard include/config/net/cls/act.h) \ $(wildcard include/config/ipv6/ndisc/nodetype.h) \ $(wildcard include/config/network/secmark.h) \ $(wildcard include/config/network/phy/timestamping.h) \ include/linux/kmemcheck.h \ include/linux/net.h \ include/linux/random.h \ include/linux/ioctl.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/irqnr.h \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/fcntl.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/sysctl.h \ include/linux/ratelimit.h \ include/linux/textsearch.h \ include/linux/err.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/trace/events/kmem.h \ include/trace/events/gfpflags.h \ include/net/checksum.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/uaccess.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/checksum.h \ include/linux/in6.h \ include/linux/dmaengine.h \ $(wildcard include/config/async/tx/enable/channel/switch.h) \ $(wildcard include/config/dma/engine.h) \ $(wildcard include/config/async/tx/dma.h) \ include/linux/device.h \ $(wildcard include/config/of.h) \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/devtmpfs.h) \ $(wildcard include/config/sysfs/deprecated.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ $(wildcard include/config/pm/ops.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ include/linux/dma-mapping.h \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/have/dma/attrs.h) \ $(wildcard include/config/need/dma/map/state.h) \ include/linux/dma-attrs.h \ include/linux/bug.h \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/scatterlist.h \ include/asm-generic/scatterlist.h \ $(wildcard include/config/need/sg/dma/length.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/io.h \ arch/arm/mach-davinci/include/mach/io.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/dma-mapping.h \ include/asm-generic/dma-coherent.h \ $(wildcard include/config/have/generic/dma/coherent.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/net/sock.h \ $(wildcard include/config/net/ns.h) \ $(wildcard include/config/rps.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/cgroups.h) \ include/linux/list_nulls.h \ include/linux/netdevice.h \ $(wildcard include/config/dcb.h) \ $(wildcard include/config/wlan.h) \ $(wildcard include/config/ax25.h) \ $(wildcard include/config/mac80211/mesh.h) \ $(wildcard include/config/tr.h) \ $(wildcard include/config/net/ipip.h) \ $(wildcard include/config/net/ipgre.h) \ $(wildcard include/config/ipv6/sit.h) \ $(wildcard include/config/ipv6/tunnel.h) \ $(wildcard include/config/netpoll.h) \ $(wildcard include/config/net/poll/controller.h) \ $(wildcard include/config/fcoe.h) \ $(wildcard include/config/wireless/ext.h) \ $(wildcard include/config/vlan/8021q.h) \ $(wildcard include/config/net/dsa.h) \ $(wildcard include/config/net/dsa/tag/dsa.h) \ $(wildcard include/config/net/dsa/tag/trailer.h) \ $(wildcard include/config/netpoll/trap.h) \ include/linux/if.h \ include/linux/hdlc/ioctl.h \ include/linux/if_ether.h \ include/linux/if_packet.h \ include/linux/if_link.h \ include/linux/netlink.h \ include/linux/capability.h \ include/linux/pm_qos_params.h \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/miscdevice.h \ include/linux/major.h \ include/linux/delay.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/delay.h \ include/linux/rculist.h \ include/linux/ethtool.h \ include/net/net_namespace.h \ $(wildcard include/config/ip/dccp.h) \ $(wildcard include/config/netfilter.h) \ $(wildcard include/config/wext/core.h) \ $(wildcard include/config/net.h) \ include/net/netns/core.h \ include/net/netns/mib.h \ $(wildcard include/config/xfrm/statistics.h) \ include/net/snmp.h \ include/linux/snmp.h \ include/linux/u64_stats_sync.h \ include/net/netns/unix.h \ include/net/netns/packet.h \ include/net/netns/ipv4.h \ $(wildcard include/config/ip/multiple/tables.h) \ $(wildcard include/config/ip/mroute.h) \ $(wildcard include/config/ip/mroute/multiple/tables.h) \ include/net/inet_frag.h \ include/net/netns/ipv6.h \ $(wildcard include/config/ipv6/multiple/tables.h) \ $(wildcard include/config/ipv6/mroute.h) \ $(wildcard include/config/ipv6/mroute/multiple/tables.h) \ include/net/dst_ops.h \ include/linux/percpu_counter.h \ include/net/netns/dccp.h \ include/net/netns/x_tables.h \ $(wildcard include/config/bridge/nf/ebtables.h) \ include/linux/netfilter.h \ $(wildcard include/config/netfilter/debug.h) \ $(wildcard include/config/nf/nat/needed.h) \ include/linux/in.h \ include/net/flow.h \ include/linux/proc_fs.h \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/fs.h \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/pid.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/magic.h \ include/net/netns/conntrack.h \ include/net/netns/xfrm.h \ include/linux/xfrm.h \ include/linux/seq_file_net.h \ include/linux/seq_file.h \ include/net/dsa.h \ include/linux/interrupt.h \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/bkl.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/irq/time/accounting.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hardirq.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irq.h \ arch/arm/mach-davinci/include/mach/irqs.h \ include/linux/irq_cpustat.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/fanotify.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/proportions.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/resource.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ include/linux/key.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/trace/events/irq.h \ include/linux/security.h \ $(wildcard include/config/security/path.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/securityfs.h) \ include/linux/fsnotify.h \ include/linux/fsnotify_backend.h \ $(wildcard include/config/fanotify/access/permissions.h) \ include/linux/idr.h \ include/linux/audit.h \ $(wildcard include/config/change.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmparam.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/msgbuf.h \ include/linux/filter.h \ include/linux/rculist_nulls.h \ include/linux/poll.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/poll.h \ include/asm-generic/poll.h \ include/net/dst.h \ $(wildcard include/config/net/cls/route.h) \ include/linux/rtnetlink.h \ include/linux/if_addr.h \ include/linux/neighbour.h \ include/net/neighbour.h \ include/net/rtnetlink.h \ include/net/netlink.h \ include/net/inet_connection_sock.h \ include/net/inet_sock.h \ include/linux/jhash.h \ include/net/request_sock.h \ include/net/netns/hash.h \ include/net/inet_timewait_sock.h \ include/net/tcp_states.h \ include/net/timewait_sock.h \ include/linux/crypto.h \ include/linux/uaccess.h \ include/linux/cryptohash.h \ include/net/inet_hashtables.h \ include/linux/ip.h \ include/linux/ipv6.h \ $(wildcard include/config/ipv6/privacy.h) \ $(wildcard include/config/ipv6/router/pref.h) \ $(wildcard include/config/ipv6/route/info.h) \ $(wildcard include/config/ipv6/optimistic/dad.h) \ $(wildcard include/config/ipv6/mip6.h) \ $(wildcard include/config/ipv6/subtrees.h) \ include/linux/icmpv6.h \ include/linux/udp.h \ include/linux/vmalloc.h \ include/net/route.h \ include/net/inetpeer.h \ include/linux/in_route.h \ include/linux/route.h \ include/net/ip.h \ $(wildcard include/config/inet.h) \ include/net/inet_ecn.h \ include/net/dsfield.h \ net/ipv4/tcp_cong.o: $(deps_net/ipv4/tcp_cong.o) $(deps_net/ipv4/tcp_cong.o):
srinugnt2000/linux-2.6.37
net/ipv4/.tcp_cong.o.cmd
bat
gpl-2.0
31,746
>>> "Alan Turing" + '' 'Alan Turing' >>> "" + 'Grace Hopper' 'Grace Hopper'
simontakite/sysadmin
pythonscripts/practicalprogramming/strings/empty_string_addition.cmd
bat
gpl-2.0
76
cmd_drivers/md/built-in.o := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o drivers/md/built-in.o drivers/md/dm-mod.o drivers/md/dm-crypt.o
Envious-Data/shinano-sirius_msm8974abpro
drivers/md/.built-in.o.cmd
bat
gpl-2.0
183
@echo off cd .. setlocal ENABLEDELAYEDEXPANSION cmdwiz setfont 1 & cls & mode 180,80 & cmdwiz showcursor 0 set FNT=1& rem 1 or a if "%FNT%"=="a" mode 30,10s for /F "Tokens=1 delims==" %%v in ('set') do if not %%v==FNT set "%%v=" set /a XC=0, YC=0, XCP=10, YCP=11, MODE=0 set /a BXA=15, BYA=9 & set /a BY=-!BYA! set BALLS="" cmdwiz setbuffersize 360 80 for /L %%a in (1,1,7) do set /a BY+=!BYA!,BX=180 & for /L %%b in (1,1,10) do set /a S=4 & (if %%a == 4 set S=_s) & (if %%b == 3 set S=_s) & set BALLS="!BALLS:~1,-1! & box f 0 db !BX!,!BY!,14,!BYA!"& set /a BX+=!BXA! cmdgfx "fbox 1 0 04 180,0,180,80 & %BALLS:~1,-1%" cmdwiz saveblock img\btemp 180 0 136 55 cmdwiz setbuffersize 180 80 set BALLS= if "%FNT%"=="a" cmdwiz setbuffersize 30 10 set /a FCNT=0, NOF_STARS=200, SDIST=3000 set /a XMID=90/2&set /a YMID=80/2 set /A TX=0,TX2=-2600,RX=0,RY=0,RZ=0,TZ=0,TZ2=0 set BGCOL=0 set COLS=f %BGCOL% 04 f %BGCOL% . f %BGCOL% . f %BGCOL% . f %BGCOL% . f %BGCOL% . f %BGCOL% . f %BGCOL% . f %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 7 %BGCOL% . 8 %BGCOL% . 8 %BGCOL% . 8 %BGCOL% . 8 %BGCOL% . 8 %BGCOL% . 8 %BGCOL% . 8 %BGCOL% . 8 set I0=myface.txt&set I1=evild.txt&set I2=ugly0.pcx&set I3=mario1.gxy&set I4=emma.txt&set I5=glass.txt&set I6=fract.txt&set I7=checkers.gxy&set I8=mm.txt&set I9=wall.pcx&set I10=btemp.gxy set /a IC=4, CC=15 :REP for /L %%1 in (1,1,300) do if not defined STOP for %%i in (!IC!) do for %%c in (!CC!) do ( set /a TX+=7&if !TX! gtr 2600 set TX=-2600 set /a TX2+=7&if !TX2! gtr 2600 set TX2=-2600 if !MODE!==0 start /B /HIGH cmdgfx_gdi "fbox 0 0 04 180,0,180,80 & fbox 1 %BGCOL% 20 0,0,180,80 & 3d objects/starfield200_0.ply 1,1 0,0,0 !TX!,0,0 10,10,10,0,0,0 0,0,2000,10 %XMID%,%YMID%,%SDIST%,0.3 %COLS% & 3d objects/starfield200_0.ply 1,1 0,0,0 !TX2!,0,0 10,10,10,0,0,0 0,0,2000,10 %XMID%,%YMID%,%SDIST%,0.3 %COLS% & image img\!I%%i! %%c 0 0 e 180,0 0 0 140,60& block 0 0,0,330,80 0,0 -1 0 0 ? ? s0+(eq(s2,46)+eq(s2,4)+eq(s2,32)+eq(s2,0))*1000+store(char(s0,s1),2)+store(-9+y+cos(!YC!/100+((x)/!BXA!)*0.4+(y/!BYA!)*0.4)*12,1)+store(-17+x+180+sin(!XC!/100+((x)/!BXA!)*0.4+(y/!BYA!)*0.4)*10,0) s1 from 0,0,180,80 & text 9 0 0 Space_c_\g11\g10\g1e\g1f_Enter 1,78" f%FNT%:0,0,330,80,180,80 if !MODE!==1 start /B /HIGH cmdgfx_gdi "fbox 0 0 04 180,0,180,80 & fbox 1 %BGCOL% 20 0,0,180,80 & 3d objects/starfield200_0.ply 1,1 0,0,0 !TX!,0,0 10,10,10,0,0,0 0,0,2000,10 %XMID%,%YMID%,%SDIST%,0.5 %COLS% & 3d objects/starfield200_0.ply 1,1 0,0,0 !TX2!,0,0 10,10,10,0,0,0 0,0,2000,10 %XMID%,%YMID%,%SDIST%,0.5 %COLS% & image img\!I%%i! %%c 0 0 e 180,0 0 0 180,80& block 0 0,0,360,80 0,0 -1 0 0 ? ? s0+(eq(s2,46)+eq(s2,4)+eq(s2,32)+eq(s2,0))*1000+store(char(s0,s1),2)+store(0+y+cos(!YC!/100+((x)/!BXA!)*0.4+(y/!BYA!)*0.4)*12,1)+store(0+x+180+sin(!XC!/100+((x)/!BXA!)*0.4+(y/!BYA!)*0.4)*10,0) s1 from 0,0,180,80 & text 9 0 0 Space_c_\g11\g10\g1e\g1f_Enter 1,78" f%FNT%:0,0,360,80,180,80 cmdgfx.exe "" knW14 set KEY=!errorlevel! if !KEY! == 331 set /a XCP-=1 & if !XCP! lss 0 set /a XCP=0 if !KEY! == 333 set /a XCP+=1 if !KEY! == 336 set /a YCP-=1 & if !YCP! lss 0 set /a YCP=0 if !KEY! == 328 set /a YCP+=1 if !KEY! == 112 cmdwiz getch if !KEY! == 32 set /a IC+=1&if !IC! gtr 10 set /a IC=0 if !KEY! == 99 set /a CC+=1&if !CC! gtr 15 set /a CC=1 if !KEY! == 27 set STOP=1 if !KEY! == 13 set /a MODE=1-!MODE! set /a XC+=!XCP!, YC+=!YCP! ) if not defined STOP goto REP endlocal cmdwiz delay 100 & mode 80,50 & cls cmdwiz setfont 6 & cmdwiz showcursor 1 del /Q img\btemp.gxy >nul 2>nul
misol1/cmdgfx
legacy/wave-face2.bat
bat
gpl-2.0
3,619
cd %~dp0\.. bin\glib-compile-schemas.exe share\glib-2.0\schemas bin\gdk-pixbuf-query-loaders.exe > lib\gdk-pixbuf-2.0\2.10.0\loaders.cache bin\gtk4-update-icon-cache.exe share\icons\Adwaita
freeciv/freeciv
windows/installer_cross/helpers/installer-helper-gtk4.cmd
bat
gpl-2.0
196
cmd_arch/arm/mach-omap2/omap-headsmp.o := arm-eabi-gcc -Wp,-MD,arch/arm/mach-omap2/.omap-headsmp.o.d -nostdinc -isystem /home/jason/toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/media/Jason_HDD_ext4/Android/WORKING/Source/Kernel/maguro/omap/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 -Wa,-march=armv7-a -c -o arch/arm/mach-omap2/omap-headsmp.o arch/arm/mach-omap2/omap-headsmp.S source_arch/arm/mach-omap2/omap-headsmp.o := arch/arm/mach-omap2/omap-headsmp.S deps_arch/arm/mach-omap2/omap-headsmp.o := \ /media/Jason_HDD_ext4/Android/WORKING/Source/Kernel/maguro/omap/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/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) \ /media/Jason_HDD_ext4/Android/WORKING/Source/Kernel/maguro/omap/arch/arm/include/asm/linkage.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ arch/arm/mach-omap2/omap-headsmp.o: $(deps_arch/arm/mach-omap2/omap-headsmp.o) $(deps_arch/arm/mach-omap2/omap-headsmp.o):
Jason-Choi/EastSea-Kernel
arch/arm/mach-omap2/.omap-headsmp.o.cmd
bat
gpl-2.0
1,712
SET VERSION="%1" ECHO "Building release of version: %VERSION%" SET RELEASE_DIR=".\dist" SET "PATH=%PATH%;C:\Program Files (x86)\NSIS" SET "PATH=%PATH%;C:\Program Files (x86)\Common Files\Microsoft\Visual C++ for Python\9.0\WinSDK\Bin" signtool sign /fd SHA256 /t http://timestamp.verisign.com/scripts/timstamp.dll "%RELEASE_DIR%\YubiKey PIV Manager"\pivman.exe makensis -D"VERSION=%VERSION%" resources\win-installer.nsi signtool sign /fd SHA256 /t http://timestamp.verisign.com/scripts/timstamp.dll "%RELEASE_DIR%\yubikey-piv-manager-%VERSION%-win.exe" gpg --detach-sign "yubikey-piv-manager-%VERSION%-win.exe"
Yubico/yubikey-piv-manager
release-windows.bat
bat
gpl-3.0
615
@echo off cls color 0e title Encrypted tunnel prompt $_ del "%~dp0\..\defaults\preferences\hushtunnel.js" ren "%~dp0\..\defaults\preferences\hushtunnel.new" hushtunnel.js echo y | "%~dp0\plink.exe" -ssh -pw %1 -C -A -N -L %2 %3 > NUL 2>&1 | echo.
githubber/HushTunnel
components/tunnel.bat
bat
gpl-3.0
255
@ECHO off REM This simple batch file can be used to run Closure Compiler on REM WebGL Earth source files to produce single, optimized .js file. set PROJECT_ROOT=%CD% set LIB_ROOT=%PROJECT_ROOT%/closure-library/closure set LEVEL=ADVANCED_OPTIMIZATIONS set DEFINE_FLAGS1=--define=goog.DEBUG=false set DEFINE_FLAGS2=--define=we.CALC_FPS=true set DEFINE_FLAGS3=--define=weapp.BING_KEY="\"AsLurrtJotbxkJmnsefUYbatUuBkeBTzTL930TvcOekeG8SaQPY9Z5LDKtiuzAOu\"" set DEFINE_FLAGS4=--define=we.scene.MIN_ZOOM=3 set EXTERNS=--compiler_flags="--externs=externs/google_maps_api_v3_5.js" set WARNING_FLAGS=--compiler_flags="--summary_detail_level=3" --compiler_flags="--warning_level=VERBOSE" --compiler_flags="--jscomp_warning=deprecated" --compiler_flags="--jscomp_warning=visibility" --compiler_flags="--jscomp_warning=accessControls" --compiler_flags="--jscomp_warning=strictModuleDepCheck" --compiler_flags="--jscomp_warning=missingProperties" REM --define=goog.DEBUG=true @ECHO on set HERE="%CD%" cd "%PROJECT_ROOT%/we/" build_shaderbank.py cd %HERE% %LIB_ROOT%/bin/build/depswriter.py --root_with_prefix="%PROJECT_ROOT%/we/ ../../../we" --root_with_prefix="%PROJECT_ROOT%/weapp/ ../../../weapp" --output_file="%PROJECT_ROOT%/weapp/deps.js" %LIB_ROOT%/bin/build/closurebuilder.py --root="%LIB_ROOT%/goog/" --root="%PROJECT_ROOT%/we/" --root="%PROJECT_ROOT%/weapp/" --root="%PROJECT_ROOT%/closure-library/third_party/closure/" --namespace="weapp" --output_mode=compiled --compiler_jar="%PROJECT_ROOT%/compiler.jar" --compiler_flags="--compilation_level=%LEVEL%" --compiler_flags="%DEFINE_FLAGS1%" --compiler_flags="%DEFINE_FLAGS2%" --compiler_flags="%DEFINE_FLAGS3%" --compiler_flags="%DEFINE_FLAGS4%" %EXTERNS% %WARNING_FLAGS% --output_file="%PROJECT_ROOT%/weapp/index.js" @ECHO off REM --compiler_flags="--formatting=PRETTY_PRINT" --compiler_flags="--debug" PAUSE
AsherBond/MondocosmOS
webglearth/build_weapp.bat
bat
agpl-3.0
1,870
template -segment -mutex_slots=2048 rename -segment DEFAULT ABCD show -segment show -template show -commands -file=chtemplate.com
nars1/YottaDBtest
gde/inref/chtemplate.cmd
bat
agpl-3.0
130
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Serendi.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Serendi.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
serendi-app/serendi-server
docs/make.bat
bat
agpl-3.0
7,246
cd C:\app\upelis\upe\lang\by_BY\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\en_US\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\lt_LT\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\ru_RU\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\de_DE\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\it_IT\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\lv_LV\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\ua_UA\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\pl_PL\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po cd C:\app\upelis\upe\lang\de_DE\LC_MESSAGES python C:\Python27\Tools\i18n\msgfmt.py upelis.po pause
saknis/upelis
lang/Copy of make.bat
bat
lgpl-2.1
967
if "%1" == "h" goto begin mshta vbscript:createobject("wscript.shell").run("%~nx0 h %1",0)(window.close)&&exit :begin "C:\Program Files\Mozilla Firefox\firefox.exe" %2
sansna/windows.bat
ff.bat
bat
lgpl-3.0
169
echo .\pro\demoApp\build\bin\demoApp.exe --c5ll "Flood" --c5fn "fiveCat.txt" .\pro\demoApp\build\bin\demoApp.exe --c5ll "Flood" --c5fn "fiveCat.txt" echo " " echo "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _" echo " " echo .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Critical" .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Critical" echo " " echo "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _" echo " " echo .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Warning" .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Warning" echo " " echo "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _" echo " " echo .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Info" .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Info" echo " " echo "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _" echo echo .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Debug" .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Debug" echo " " echo "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _" echo echo .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Trace" .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Trace" echo " " echo "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _" echo " " echo .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Flood" .\pro\demoApp\build\bin\demoApp.exe --line "Hi everybody" --c5ll "Flood"
beardog-ukr/five-cats-logger
runDemoApp.bat
bat
unlicense
1,537
path C:\Python27 cd [Directory you installed the bot too] python bot.py
GreenWolf13/GordonLite
botrun.bat
bat
unlicense
71
sleep 2s netsh int ip set address "local area connection" dhcp netsh int ip set dns "local area connection" dhcp ipconfig /flushdns
guerreroderrick/batch-utils
OnNetwork.bat
bat
unlicense
136
@echo off cd %~dp0 if /i "%1"=="help" goto help if /i "%1"=="--help" goto help if /i "%1"=="-help" goto help if /i "%1"=="/help" goto help if /i "%1"=="?" goto help if /i "%1"=="-?" goto help if /i "%1"=="--?" goto help if /i "%1"=="/?" goto help @rem Process arguments. set config=Release set msiplatform=x86 set target=Build set target_arch=ia32 set debug_arg= set nosnapshot_arg= set noprojgen= set nobuild= set nosign= set nosnapshot= set test= set test_args= set msi= set licensertf= set upload= set jslint= set buildnodeweak= set noetw= set noetw_arg= set noetw_msi_arg= :next-arg if "%1"=="" goto args-done if /i "%1"=="debug" set config=Debug&goto arg-ok if /i "%1"=="release" set config=Release&goto arg-ok if /i "%1"=="clean" set target=Clean&goto arg-ok if /i "%1"=="ia32" set target_arch=ia32&goto arg-ok if /i "%1"=="x86" set target_arch=ia32&goto arg-ok if /i "%1"=="x64" set target_arch=x64&goto arg-ok if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok if /i "%1"=="nobuild" set nobuild=1&goto arg-ok if /i "%1"=="nosign" set nosign=1&goto arg-ok if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok if /i "%1"=="noetw" set noetw=1&goto arg-ok if /i "%1"=="licensertf" set licensertf=1&goto arg-ok if /i "%1"=="test-uv" set test=test-uv&goto arg-ok if /i "%1"=="test-internet" set test=test-internet&goto arg-ok if /i "%1"=="test-pummel" set test=test-pummel&goto arg-ok if /i "%1"=="test-simple" set test=test-simple&goto arg-ok if /i "%1"=="test-message" set test=test-message&goto arg-ok if /i "%1"=="test-gc" set test=test-gc&set buildnodeweak=1&goto arg-ok if /i "%1"=="test-all" set test=test-all&set buildnodeweak=1&goto arg-ok if /i "%1"=="test" set test=test&goto arg-ok if /i "%1"=="msi" set msi=1&set licensertf=1&goto arg-ok if /i "%1"=="upload" set upload=1&goto arg-ok if /i "%1"=="jslint" set jslint=1&goto arg-ok echo Warning: ignoring invalid command line option `%1`. :arg-ok :arg-ok shift goto next-arg :args-done if defined upload goto upload if defined jslint goto jslint if "%config%"=="Debug" set debug_arg=--debug if "%target_arch%"=="x64" set msiplatform=x64 if defined nosnapshot set nosnapshot_arg=--without-snapshot if defined noetw set noetw_arg=--without-etw& set noetw_msi_arg=/p:NoETW=1 :project-gen @rem Skip project generation if requested. if defined noprojgen goto msbuild @rem Generate the VS project. python configure %debug_arg% %nosnapshot_arg% %noetw_arg% --dest-cpu=%target_arch% if errorlevel 1 goto create-msvs-files-failed if not exist node.sln goto create-msvs-files-failed echo Project files generated. :msbuild @rem Skip project generation if requested. if defined nobuild goto sign @rem Bail out early if not running in VS build env. if defined VCINSTALLDIR goto msbuild-found if not defined VS100COMNTOOLS goto msbuild-not-found if not exist "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" if not defined VCINSTALLDIR goto msbuild-not-found goto msbuild-found :msbuild-not-found echo Build skipped. To build, this file needs to run from VS cmd prompt. goto run :msbuild-found @rem Build the sln with msbuild. msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo if errorlevel 1 goto exit :sign @rem Skip signing if the `nosign` option was specified. if defined nosign goto licensertf signtool sign /a Release\node.exe :licensertf @rem Skip license.rtf generation if not requested. if not defined licensertf goto msi %config%\node tools\license2rtf.js < LICENSE > %config%\license.rtf if errorlevel 1 echo Failed to generate license.rtf&goto exit :msi @rem Skip msi generation if not requested if not defined msi goto run python "%~dp0tools\getnodeversion.py" > "%temp%\node_version.txt" if not errorlevel 0 echo Cannot determine current version of node.js & goto exit for /F "tokens=*" %%i in (%temp%\node_version.txt) do set NODE_VERSION=%%i msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:Configuration=%config% /p:Platform=%msiplatform% /p:NodeVersion=%NODE_VERSION% %noetw_msi_arg% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo if errorlevel 1 goto exit if defined nosign goto run signtool sign /a Release\node-v%NODE_VERSION%-%msiplatform%.msi :run @rem Run tests if requested. if "%test%"=="" goto exit if "%config%"=="Debug" set test_args=--mode=debug if "%config%"=="Release" set test_args=--mode=release if "%test%"=="test" set test_args=%test_args% simple message if "%test%"=="test-internet" set test_args=%test_args% internet if "%test%"=="test-pummel" set test_args=%test_args% pummel if "%test%"=="test-simple" set test_args=%test_args% simple if "%test%"=="test-message" set test_args=%test_args% message if "%test%"=="test-gc" set test_args=%test_args% gc if "%test%"=="test-all" set test_args=%test_args% :build-node-weak @rem Build node-weak if required if "%buildnodeweak%"=="" goto run-tests "%config%\node" deps\npm\node_modules\node-gyp\bin\node-gyp rebuild --directory="%~dp0test\gc\node_modules\weak" --nodedir="%~dp0." if errorlevel 1 goto build-node-weak-failed goto run-tests :build-node-weak-failed echo Failed to build node-weak. goto exit :run-tests echo running 'python tools/test.py %test_args%' python tools/test.py %test_args% if "%test%"=="test" goto jslint goto exit :create-msvs-files-failed echo Failed to create vc project files. goto exit :upload echo uploading .exe .msi .pdb to nodejs.org python "%~dp0tools\getnodeversion.py" > "%temp%\node_version.txt" if not errorlevel 0 echo Cannot determine current version of node.js & goto exit for /F "tokens=*" %%i in (%temp%\node_version.txt) do set NODE_VERSION=%%i @echo on ssh [email protected] mkdir -p web/nodejs.org/dist/v%NODE_VERSION% scp Release\node.msi [email protected]:~/web/nodejs.org/dist/v%NODE_VERSION%/node-v%NODE_VERSION%.msi scp Release\node.exe [email protected]:~/web/nodejs.org/dist/v%NODE_VERSION%/node.exe scp Release\node.pdb [email protected]:~/web/nodejs.org/dist/v%NODE_VERSION%/node.pdb @echo off goto exit :jslint echo running jslint set PYTHONPATH=tools/closure_linter/ python tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ --exclude_files lib/punycode.js goto exit :help echo vcbuild.bat [debug/release] [msi] [test-all/test-uv/test-internet/test-pummel/test-simple/test-message] [clean] [noprojgen] [nobuild] [nosign] [x86/x64] echo Examples: echo vcbuild.bat : builds release build echo vcbuild.bat debug : builds debug build echo vcbuild.bat release msi : builds release build and MSI installer package echo vcbuild.bat test : builds debug build and runs tests goto exit :exit
mosaic-cloud/mosaic-distribution-dependencies
dependencies/nodejs/0.8.22/vcbuild.bat
bat
apache-2.0
6,893
java -cp ../target/tools-1.0.0.jar com.bgu.tools.file.FileSearcher logo "C:\temp\aa" "c:\temp\FileSearcher.log" true
burniegu/tools
bat/FileSearcher.bat
bat
apache-2.0
117
cmd_coreutils/seq.o := gcc -Wp,-MD,coreutils/.seq.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-builtin-printf -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(seq)" -D"KBUILD_MODNAME=KBUILD_STR(seq)" -c -o coreutils/seq.o coreutils/seq.c deps_coreutils/seq.o := \ coreutils/seq.c \ $(wildcard include/config/locale/support.h) \ /usr/include/stdc-predef.h \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/verbose.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/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/x86_64-linux-gnu/5/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdbool.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ /usr/include/x86_64-linux-gnu/bits/uio.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/inttypes.h \ /usr/include/netdb.h \ /usr/include/netinet/in.h \ /usr/include/x86_64-linux-gnu/sys/socket.h \ /usr/include/x86_64-linux-gnu/sys/uio.h \ /usr/include/x86_64-linux-gnu/bits/socket.h \ /usr/include/x86_64-linux-gnu/bits/socket_type.h \ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ /usr/include/x86_64-linux-gnu/asm/socket.h \ /usr/include/asm-generic/socket.h \ /usr/include/x86_64-linux-gnu/asm/sockios.h \ /usr/include/asm-generic/sockios.h \ /usr/include/x86_64-linux-gnu/bits/socket2.h \ /usr/include/x86_64-linux-gnu/bits/in.h \ /usr/include/rpc/netdb.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/netdb.h \ /usr/include/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp2.h \ /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/paths.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/libgen.h \ /usr/include/poll.h \ /usr/include/x86_64-linux-gnu/sys/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll2.h \ /usr/include/x86_64-linux-gnu/sys/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctls.h \ /usr/include/x86_64-linux-gnu/asm/ioctls.h \ /usr/include/asm-generic/ioctls.h \ /usr/include/linux/ioctl.h \ /usr/include/x86_64-linux-gnu/asm/ioctl.h \ /usr/include/asm-generic/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.h \ /usr/include/x86_64-linux-gnu/bits/timex.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/x86_64-linux-gnu/bits/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/mntent.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/utmp.h \ /usr/include/x86_64-linux-gnu/bits/utmp.h \ /usr/include/utmpx.h \ /usr/include/x86_64-linux-gnu/bits/utmpx.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ coreutils/seq.o: $(deps_coreutils/seq.o) $(deps_coreutils/seq.o):
rennman/copfvtci
build/busybox-1.25.1/coreutils/.seq.o.cmd
bat
apache-2.0
10,163
@echo off :: :: (c) The Batchography book by Elias Bachaalany :: setlocal enabledelayedexpansion :main if "%1"=="" goto Usage if "%2"=="" goto Usage :: Copy the watch interval set /A WatchInterval=%~2 :: Set default interval to 5 seconds if an invalid value was passed if WatchInterval==0 set WatchInterval=5 :: Set the recursive switch if /i "%3"=="/S" set Watch-Recursive=" /S " :: Generate temp files set BASEFILE=%TEMP%\B%RANDOM%_%RANDOM%.txt set CURFILE=%TEMP%\C%RANDOM%_%RANDOM%.txt set /p "=Watching the directory %1 every %2 second(s) " <nul if DEFINED Watch-Recursive echo ^(recursively^) echo. echo Press 'Q' to quit at any time. call :Watch-Loop "%~1" %~2 :: Cleanup del %BASEFILE% /q >nul 2>&1 del %CURFILE% /q >nul 2>&1 goto :eof :Watch-Loop <1=WatchDir> call :Get-State "%~1" "%BASEFILE%" %Watch-Recursive% :: Make a choice that times out. choice /t %WatchInterval% /c:qc /d c >nul if !errorlevel!==1 goto :eof call :Get-State "%~1" "%CURFILE%" %Watch-Recursive% :: Compare fc "%BASEFILE%" "%CURFILE%" >nul if "%errorlevel%"=="1" ( echo Changes detected on %DATE% %TIME% if exist "%~dp1trigger.bat" call "%~dp1trigger.bat" ) :: Set baseline to be the current state move "%CURFILE%" "%BASEFILE%" >nul goto Watch-Loop :Get-State <1=WatchPath> <2=OutStatFileName> <3=ExtraSwitches> setlocal set P=%~dp1 set P=%P:~0,-1% forfiles /p "%P%" /m *.* %~3 /c "cmd /c echo @relpath @ftime @fdate @fsize @isdir" >%~2 endlocal goto :eof :Usage echo ----- echo Usage echo ------ echo %~n0 DirectoryToWatch Poll Interval in seconds [/R] echo. echo Specify the directory to watch. echo Optionally pass the /R switch to watch recursively echo. echo Place a file called 'trigger.bat' in the watch directory to call it on change goto :end :end
PassingTheKnowledge/Batchography
watch-dir.bat
bat
apache-2.0
1,921
log rangecmpb ontime 1 log rawephemb onnew log ionutcb onnew log rawwaasframeb onnew log gloephemerisb onnew @ unlog rangecmpb unlog rawephemb unlog ionutcb unlog rawwaasframeb unlog gloephemerisb
illarionov/RtkGps
assets/commands/oem4_raw_1hz.cmd
bat
bsd-2-clause
214
@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\rip.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\rip.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
Aplopio/rip
docs/make.bat
bat
mit
6,453
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=cftime if "%1" == "" goto help %SPHINXBUILD% >NUL 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 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
jswhit/pygrib
docs/make.bat
bat
mit
810
git add ../data/gui/core_lang* git commit -m "Sync translations." :: eh this should work but whatever ::git push origin master "C:\Program Files\TortoiseGit\bin\TortoiseGitProc.exe" /command:push /path:"c:\sr" ::pause
stuntrally/stuntrally
locale/tx_2git.bat
bat
gpl-3.0
221