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
echo.
echo Accord.NET Framework executable installer builder
echo =========================================================
echo.
echo This Windows batch file uses InnoSetup to automatically
echo build the executable installer version of the framework.
echo.
call ..\version.cmd
set inno="C:\Program Files (x86)\Inno Setup 5\Compil32.exe"
rem set rar="C:\Program Files\WinRAR\rar"
rem set opts=a -m0 -s
timeout /T 5
%inno% /cc Accord.iss
rem %rar% %opts% ..\bin\Accord.NET-%version%-installer.rar ..\bin\Accord.NET-%version%-installer.exe | OperatorOverload/framework | Setup/Installer/Build.cmd | bat | lgpl-2.1 | 556 |
@echo off
setlocal EnableDelayedExpansion
echo %*|>nul findstr /rx \-.*
if ERRORLEVEL 1 (
for /f %%i in ('python %~dp0\autojump %*') do set new_path=%%i
if exist !new_path!\nul (
start !new_path!
) else (
echo autojump: directory %* not found
echo try `autojump --help` for more information
)
) else (
python %~dp0\autojump %*
) | nvdnkpr/autojump | bin/jo.bat | bat | gpl-3.0 | 352 |
setenv bootargs console=ttyS0,115200 earlyprintk root=/dev/mmcblk0p2 rootwait
fatload mmc 0 $kernel_addr_r Image
fatload mmc 0 $fdt_addr_r sun50i-h5-orangepi-pc2.dtb
booti $kernel_addr_r - $fdt_addr_r
| masahir0y/buildroot-yamada | board/orangepi/orangepi-pc2/boot.cmd | bat | gpl-2.0 | 203 |
REM recserver -package %REGULUS%\Examples\Toy1\Generated\recogniser
REM recserver -package H:\Prive\Regulus\Examples\Toy1Course\GeneratedFiles\recogniser.grammar
REM pause
REM recserver -package eng_specialised_recogniser &
cd $Regulus/Examples/Toy1Course/GeneratedFiles
recserver -package recogniser &
| TeamSPoon/logicmoo_workspace | packs_sys/logicmoo_nlu/ext/regulus/Examples/Toy1Course/scripts/run_recserver.bat | bat | mit | 307 |
@(echo '> nul ) &::' ) | out-null; @'
@:: ## emacs -*- tab-width: 4; coding: dos; mode: batch; indent-tabs-mode: nil; basic-offset: 2; -*- ## (jedit) :tabsize=4:mode=perl: ## (notepad++) vim: syntax=powershell : tabstop=4 : shiftwidth=2 : expandtab : smarttab : softtabstop=2 ## modeline ( see http://archive.is/djTUD @@ http://webcitation.org/66W3EhCAP )
@:: Copyright (c) 2015 Roy Ivy III (MIT license)
@setlocal
@echo off
set "__ME=%~n0"
set "__DEBUG_KEY=%__ME%"
::set "__DEBUG_KEY=%__DEBUG%"
set "__DEBUGGING="
if DEFINED __DEBUG (if /I "%__DEBUG%" == "%__DEBUG_KEY%" ( set "__DEBUGGING=1" ))
if DEFINED __DEBUGGING (
echo %__ME%: DEBUG: [ %~nx0 ]
)
:: require PowerShell (to self-execute)
call :$path_in_pathlist _POWERSHELL_exe powershell.exe "%PATH%;%SystemRoot%\System32\WindowsPowerShell\v1.0"
if NOT DEFINED _POWERSHELL_exe (
echo %__ME%: ERROR: script requires PowerShell [see http://support.microsoft.com/kb/968929 {to download Windows Management Framework Core [includes PowerShell 2.0]}] 1>&2
exit /b 1
)
:: require temporary files (for sourcing in-process environment variables)
call :$tempfile __source "%__ME%.source" ".bat"
if DEFINED __source ( goto :TEMPFILE_FOUND )
echo %__ME%: ERROR: unable to open needed temporary file [make sure to set TEMP or TMP to an available writable temporary directory {try 'set TEMP=%%LOCALAPPDATA%%\Temp'}] 1>&2
exit /b -1
:TEMPFILE_FOUND
echo @:: TEMPORARY source/exec file [owner: "%~nx0"] > "%__source%"
:: execute self as PowerShell script [using an endlocal block to pass a clean environment]
( endlocal
setlocal
:: send the least interpreted/cleanest possible ARGS to PowerShell via the environment
set __ARGS=%*
if NOT "%__DEBUGGING%"=="" (
echo %__ME%: DEBUG: __ARGS=%__ARGS%
)
::call "%_POWERSHELL_exe%" -NoProfile -ExecutionPolicy unrestricted -Command "${__0}='%~f0'; ${__ME}='%__ME%'; ${__DEBUGGING}=[bool]('%__DEBUGGING%'); ${__SOURCE}='%__source%'; ${__INPUT} = @($input); ${__ARGS}=$env:__ARGS; Invoke-Expression $( '$input=${__INPUT};if (${__ARGS}){$args=@(Invoke-Expression $(\"echo -- \"+$(${__ARGS} -replace \"\$\",\"``$\" -replace \"``\",\"````\")))};'+[String]::Join([environment]::newline,$(Get-Content ${__0} | foreach { $_ })) )"
call "%_POWERSHELL_exe%" -NoProfile -ExecutionPolicy unrestricted -Command "${__0}='%~f0'; ${__ME}='%__ME%'; ${__DEBUGGING}=[bool]('%__DEBUGGING%'); ${__SOURCE}='%__source%'; ${__INPUT} = @($input); ${__ARGS}=$env:__ARGS -replace \"``\", \"````\" -replace \"\$\",\"``$\"; Invoke-Expression $( '$input=${__INPUT};if (${__ARGS}){$args=@(Invoke-Expression $(\"echo -- \"+${__ARGS}))};'+[String]::Join([environment]::newline,$(Get-Content ${__0} | foreach { $_ })) )"
:: restore needed ENV vars
set "__ME=%__ME%"
set "__DEBUGGING=%__DEBUGGING%"
set "__source=%__source%"
)
set "__exit_code=%ERRORLEVEL%"
( endlocal
call "%__source%"
(if NOT "%__DEBUGGING%"=="" (
call echo %__ME%: DEBUG: "%__source%" exec [::START]
call type "%__source%"
call echo %__ME%: DEBUG: "%__source%" [::END]
call echo %__ME%: DEBUG: [ %~nx0 ] :: end
)
)
( if "%__DEBUGGING%"=="" (
call erase /q "%__source%" >NUL 2>NUL
)
)
exit /b %__exit_code%
)
goto :EOF
::####
::
:$path_in_pathlist ( ref_RETURN FILENAME PATHLIST )
:: NOTE: FILENAME should be a simple filename, not a directory or filename with leading diretory prefix. CMD will match these more complex paths, but TCC will not
setlocal
set "pathlist=%~3"
set "PATH=%pathlist%"
set "_RETval=%~$PATH:2"
:$path_in_pathlist_RETURN
endlocal & set %~1^=%_RETval%
goto :EOF
::
::
:$tempfile ( ref_RETURN [PREFIX [EXTENSION]])
:: open a unique temporary file
:: RETURN == full pathname of temporary file (with given PREFIX and EXTENSION) [NOTE: has NO surrounding quotes]
:: PREFIX == optional filename prefix for temporary file
:: EXTENSION == optional extension (including leading '.') for temporary file [default == '.bat']
setlocal
set "_RETval="
set "_RETvar=%~1"
set "prefix=%~2"
set "extension=%~3"
if NOT DEFINED extension ( set "extension=.bat")
:: attempt to find a temp directory
if NOT EXIST "%temp%" ( set "temp=%tmp%" )
if NOT EXIST "%temp%" ( set "temp=%LocalAppData%\Temp" )
if NOT EXIST "%temp%" ( set "temp=NOT_FOUND" )
if NOT EXIST "%temp%" ( goto :$tempfile_RETURN ) &:: undefined TEMP, RETURN (with NULL result)
:$tempfile_find_unique_temp
set "_RETval=%temp%\%prefix%.%RANDOM%.%RANDOM%%extension%"
if EXIST "%_RETval%" ( goto :$tempfile_find_unique_temp )
:: instantiate tempfile [NOTE: this is an unavoidable race condition]
set /p OUTPUT=<nul >"%_RETval%"
:$tempfile_find_unique_temp_DONE
:$tempfile_RETURN
endlocal & set %_RETvar%^=%_RETval%
goto :EOF
::
goto :EOF
'@ | Out-Null
####
#"__0 = ${__0}" ## script full path
#"__ME = ${__ME}" ## name
#"__SOURCE = ${__SOURCE}" ## source filename
#"input = '"+($input -join ';')+"'" ## STDIN
#"args = '"+($args -join ';')+"'" ## ARGS
#"env:PATH = '"+$env:PATH+"'"
####
## set Environment variables
## NOTE: Review security issues @ [Running with Special Privileges] http://msdn.microsoft.com/en-us/library/windows/desktop/ms717802(v=vs.85).aspx @@ https://archive.is/FgTCX
## URLref: [Using PowerShell to determine your elevation status] http://theessentialexchange.com/blogs/michael/archive/2010/08/17/using-powershell-to-determine-your-elevation-status-uac.aspx @@ http://www.webcitation.org/66Slwinby @@ http://theessentialexchange.com/blogs/michael/archive/2010/08/17/using-powershell-to-determine-your-elevation-status-uac.aspx
#$__DEBUGGING=1
#### SUBs
Function dosify {
# dosify( @ )
# 'dosify' special characters ## double %'s for TCC
if ($args -ne $null) {
$args | ForEach-Object {
$val = $_
$val = $($val -replace '\(','^(')
$val = $($val -replace '\)','^)')
$val = $($val -replace '<','^<')
$val = $($val -replace '>','^>')
$val = $($val -replace '\|','^|')
$val = $($val -replace '&','^&')
$val = $($val -replace '"','^"')
$val = $($val -replace '%','%%')
$val
}
}
}
#### SUBs.end
##"stdin = '"+($stdin -join ';')+"'";
##"input = '"+($input -join ';')+"'";
if (${__DEBUGGING}) {
${__ME}+": DEBUG: "+[Environment]::CommandLine
}
# some minimal command line parsing for options
## -- :: remove and no following options
## -m | --machine :: the persistent Machine environment (for all users, @ HKLM\System\CurrentControlSet\Control\Session Manager\Environment)
## -u | --user :: the persistent User environment (@ HKCU\Environment)
## -p | --process :: the CMD shell environment
## -i | --invoke :: execute/invoke VALUE, use the result as new VALUE
## -x | --exec :: execute/invoke VALUE, use the result as new VALUE
if (${__DEBUGGING}) {
${__ME}+": DEBUG: [ Initial ARGS ]"
${__ME}+": DEBUG: env:__ARGS=""${env:__ARGS}"" "
${__ME}+": DEBUG: __ARGS_=""${__ARGS_}"" "
$x = ${env:__ARGS} -replace "\$","``$"
${__ME}+": DEBUG: env:__ARGS =>""${x}"" "
${__ME}+": DEBUG: iex( env:__ARGS =>""${x}"" ) => "
$args | foreach { ${__ME}+": DEBUG: args_N=""$_""" }
}
$out = ${__SOURCE}
#if ($out -eq $null) { $out = $stdout }
$optAndArgs = $args
$args_only = @()
for ( $i=0; $i -lt $args.Count; $i++ ) {
if ($args[$i] -eq '--') {
"args.Count=$($args.Count)"
if ($i -eq 0) { $optAndArgs = @() }
if ($i -gt 0) { $optAndArgs = $args[0..($i-1)] }
$args_only = $args[($i+1)..($args.Count)];
break
}
if (${__DEBUGGING}) {
${__ME}+": DEBUG: args[$i]`:"+$args[$i]+":is(--)="+$($args[$i] -eq '--')
}
}
if (${__DEBUGGING}) {
${__ME}+": DEBUG: [ Prelim ARGS Parse ]"
$optAndArgs | foreach { ${__ME}+": DEBUG: optAndArgs_N=""$_""" }
$args_only | foreach { ${__ME}+": DEBUG: args_only_N=""$_""" }
}
$optAndArgs_orig = $optAndArgs;
$setInMachine = ( $optAndArgs -contains "-m" ) -or ( $optAndArgs -contains "--machine" ); $optAndArgs = $optAndArgs -ne "-m"; $optAndArgs = $optAndArgs -ne "--machine";
$setInProcess = ( $optAndArgs -contains "-p" ) -or ( $optAndArgs -contains "--process" ); $optAndArgs = $optAndArgs -ne "-p"; $optAndArgs = $optAndArgs -ne "--process";
$setInUser = ( $optAndArgs -contains "-u" ) -or ( $optAndArgs -contains "--user" ); $optAndArgs = $optAndArgs -ne "-u"; $optAndArgs = $optAndArgs -ne "--user";
$displayENV = (( $optAndArgs.Count -eq 0 ) -and ( $args_only.Count -eq 0 ));
$evalVALUE = ( $optAndArgs -contains "-i" ) -or ( $optAndArgs -contains "--invoke" ) -or ( $optAndArgs -contains "-x" ) -or ( $optAndArgs -contains "--exec" );
$optAndArgs = $optAndArgs -ne "-i"; $optAndArgs = $optAndArgs -ne "--invoke";
$optAndArgs = $optAndArgs -ne "-x"; $optAndArgs = $optAndArgs -ne "--exec";
if ((-not $setInMachine) -and (-not $setInUser)) { $setInProcess = $true }
if (${__DEBUGGING}) {
${__ME}+": DEBUG: setInMachine= $setInMachine";
${__ME}+": DEBUG: setInUser= $setInUser";
${__ME}+": DEBUG: setInProcess= $setInProcess";
${__ME}+": DEBUG: displayENV= $displayENV";
${__ME}+": DEBUG: evalVALUE= $evalVALUE";
}
$args = $optAndArgs + $args_only;
if (${__DEBUGGING}) {
${__ME}+": DEBUG: [ Resultant ARGS ]";
$args | foreach { ${__ME}+": DEBUG: arg_N=""$_""" }
}
if ( $displayENV ) {
## Display ENVs (print to output file, in the order of flags defined on the command line, seperated by empty lines; each ENV is only displayed once)
if (${__DEBUGGING}) {
${__ME}+": DEBUG: [ Display ENV ]";
${__ME}+": DEBUG: optAndArgs_orig = $optAndArgs_orig"
}
## URLref: [Reading Registry Values] http://powershell.com/cs/blogs/tips/archive/2009/11/25/reading-registry-values.aspx @@ http://www.webcitation.org/66T2HB5ca
## URLref: [Mastering PowerShell - The Registry] http://powershell.com/cs/blogs/ebook/archive/2009/03/30/chapter-16-the-registry.aspx @@ http://www.webcitation.org/66T2eNwjW
## URLref: [Powershell - Working with Registry Keys] http://technet.microsoft.com/en-us/library/dd315270.aspx @@ http://www.webcitation.org/66T15A6jC
## URLref: [Powershell - Working Registry Entries] http://technet.microsoft.com/en-us/library/dd315394.aspx @@ http://www.webcitation.org/66T1EFWRT
##
## URLref: [PowerShell - Wide Tables] http://poshoholic.com/2010/11/11/powershell-quick-tip-creating-wide-tables-with-powershell
##
## URLref: [PowerShell.com - The PowerShell Pipeline] http://powershell.com/cs/blogs/ebook/archive/2008/11/23/chapter-5-the-powershell-pipeline.aspx
## %ENV: has been changed with the addition of PowerShell changes ... need to do this in the calling BAT
## - likely two alternate solutions: (1) stash the environment and send it to the script (?via temporary file), (2) send instructions back to the script to print it ("set" in the source file, plus echo's for the rest [to keep them in order])
## 1) seems heavy-handed and inefficient for the occasional use to just display the usual environment
## * but might be needed to preserve the environment for EVALs (or need to inform the user that PowerShell make "dirty" the environment; they can avoid this by putting variables within the EVAL directly, using %VAR%)
## 2) tricky, need to echo any displayed environments to the source_bat return file with adequate protection from shell interpretation of special characters (especially quotes, redirection/piping, command seperators, etc)
$haveDisplayedPrior = $false;
foreach ($token in $optAndArgs_orig) {
if (${__DEBUGGING}) {
${__ME}+": DEBUG: token = $token"
}
$output = @();
if ( $setInProcess -and (( $token -eq "-p" ) -or ( $token -eq "--process" )) ) {
# Process Environment
if ( $haveDisplayedPrior ) {
$output += "echo."
}
$output += "set"
$setInProcess = $false;
$haveDisplayedPrior = $true;
}
elseif ( $setInUser -and (( $token -eq "-u" ) -or ( $token -eq "--user" )) ) {
# User Environment
if ( $haveDisplayedPrior ) {
$output += "echo."
}
# User level VARs in "hkcu:\Environment"
foreach ($var in ( get-item "hkcu:\Environment").GetValueNames() | sort-object ) {
$val = (get-item "hkcu:\Environment").GetValue($var)
$val = dosify( $val )
$output += (
"@setlocal",
"@echo off",
"( endlocal",
$("echo {0}={1}`n" -f $var, $val),
")"
)
}
$setInUser = $false;
$haveDisplayedPrior = $true;
}
elseif ( $setInMachine -and (( $token -eq "-m" ) -or ( $token -eq "--machine" )) ) {
# Machine Environment
if ( $haveDisplayedPrior ) {
$output += "echo."
}
# Machine level VARs in "hklm:\System\CurrentControlSet\Control\Session Manager\Environment"
foreach ($var in ( get-item "hklm:\System\CurrentControlSet\Control\Session Manager\Environment").GetValueNames() | sort-object ) {
$val = (get-item "hklm:\System\CurrentControlSet\Control\Session Manager\Environment").GetValue($var)
$val = dosify( $val )
$output += (
"@setlocal",
"@echo off",
"( endlocal",
$("echo {0}={1}`n" -f $var, $val),
")"
)
}
$setInMachine = $false;
$haveDisplayedPrior = $true;
}
if ($out -ne $null) { $output -join "`n" | out-file -filepath $out -encoding Default -append }
else { $output -join "`n" }
}
# if ( $setInProcess ) {
# $output = ( "set" )
# $output -join "`n" | out-file -filepath $out -encoding Default -append
# }
# ## user & machine level seem to have some pollution as well => extra properties seems like standard properties; probably a way around it to get just "regular" properties
# # EXAMPLE (at the top of both...)
# ## PSPath : Microsoft.PowerShell.Core\Registry::HKEY_CURRENT_USER\Environme
# ## nt
# ## PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_CURRENT_USER
# ## PSChildName : Environment
# ## PSDrive : HKCU
# ## PSProvider : Microsoft.PowerShell.Core\Registry
# if ( $setInUser ) {
# ##get-itemproperty hkcu:\Environment
# foreach ($var in ( get-item "hkcu:\Environment").GetValueNames() | sort-object ) {
# $val = (get-item "hkcu:\Environment").GetValue($var)
# $val = dosify( $val )
# $output = (
# "@setlocal",
# "@echo off",
# "( endlocal",
# $("echo {0}={1}`n" -f $var, $val),
# ")"
# )
# $output -join "`n" | out-file -filepath $out -encoding Default -append
# }
# }
# if ( $setInMachine ) {
# ##get-itemproperty "hklm:\System\CurrentControlSet\Control\Session Manager\Environment"
# foreach ($var in (get-item "hklm:\System\CurrentControlSet\Control\Session Manager\Environment").GetValueNames() | sort-object ) {
# $val = (get-item "hklm:\System\CurrentControlSet\Control\Session Manager\Environment").GetValue($var)
# $val = dosify( $val )
# $output = (
# "@setlocal",
# "@echo off",
# "( endlocal",
# $("echo {0}={1}`n" -f $var, $val),
# ")"
# )
# $output -join "`n" | out-file -filepath $out -encoding Default -append
# }
# }
exit 0
}
if (($args.Count -lt 1) -or ($args.Count -gt 2)) {
"USAGE: "+${__ME}+" [-p|--process|-u|--user|-m|--machine|-i|--invoke|-x|--exec] VAR [VALUE]"
exit 1
}
$var = $args[0]
$val = $args[1]
if ($args.Count -eq 1) { $val = iex $('$'+"env:$var") }
if ($evalVALUE) {
$val = @(iex $val)[-1];
}
if (${__DEBUGGING}) {
${__ME}+": DEBUG: val=""$val""";
}
$identity = [System.Security.Principal.WindowsIdentity]::GetCurrent();
$principal = New-Object System.Security.Principal.WindowsPrincipal( $identity );
$is_elevated = $principal.IsInRole( [System.Security.Principal.WindowsBuiltInRole]::Administrator );
if ($setInMachine) {
if (-not $is_elevated) {
${__ME}+": ERROR: Inadequate privileges to set (or read) Machine level environment variables (run as Administrator)"
exit 1
}
[Environment]::SetEnvironmentVariable($var, $val, [EnvironmentVariableTarget]::Machine)
}
if ($setInUser) {
[Environment]::SetEnvironmentVariable($var, $val, [EnvironmentVariableTarget]::User)
}
if ($setInProcess) {
$val = dosify( $val )
if (${__DEBUGGING}) {
${__ME}+": DEBUG: [ PROCESS ] val=""$val""";
}
$output = (
"setlocal",
"( endlocal",
$("set {0}={1}`n" -f $var, $val),
")"
)
$output -join "`n" | out-file -filepath $out -encoding Default -append
}
| rivy/setxx | setxx.bat | bat | mit | 16,595 |
@echo off
rem Public domain
rem http://unlicense.org/
rem Created by Grigore Stefan <[email protected]>
set BUILD_PROJECT=dll-inject
| g-stefan/dll-inject | build/msvc.config.cmd | bat | mit | 141 |
@echo off
rem Author: Andrey Dibrov (andry at inbox dot ru)
rem Description:
rem Script returns error level passed as first argument. If first argument is
rem empty, then returns previous error level.
rem Examples:
rem 1. call errlvl.bat 10
rem echo ERRORLEVEL=%ERRORLEVEL%
if "%~1" == "" exit /b
exit /b %~1
| andry81/contools | Scripts/Tools/errlvl.bat | bat | mit | 336 |
TruncateFile.exe -i
| itsuart/windows-truncate-file | InstallExplorerExtension.cmd | bat | mit | 20 |
copy bin\debug\undoextension.dll "c:\program files (x86)\inrule\irauthor\extensions\undoextension.dll"
copy bin\debug\undoextension.pdb "c:\program files (x86)\inrule\irauthor\extensions\undoextension.pdb"
c:\program files (x86)\inrule\irauthor\irauthor.exe | InRule/irAuthor-Extensions | UndoExtension/UndoExtension/deployAfterBuild.cmd | bat | mit | 257 |
cd path\to\backend
espeak.lnk --ipa -a 200 -s 175 -p 50 -b 2 -v en -w "path\to\wave\file.wav" "message to speak"
"path\to\ffmpeg" -y -i "path\to\wave\file.wav" -b:a 128k -ar 48000 "path\to\output\file.mp3"
cd path\to\backend
echo %CD% | WhatAboutGaming/Twitch-Plays-Stuff | backend/runtts.bat | bat | mit | 234 |
@echo off
setlocal
set PathAPK=%1
set FileAPK=%2
set Timestamp=%3
set Documentacion=%4
set Documentacion=%Documentacion:"=%
set Documentacion="%Documentacion%\apk_install - %Timestamp%.txt"
@title=[ADB]
rem date /T > %Documentacion%
rem time /T >> %Documentacion%
echo Kill-server
"%~dp0adb\windows\adb.exe" kill-server
rem >> %Documentacion%
echo Start-server
"%~dp0adb\windows\adb.exe" start-server
rem >> %Documentacion%
echo Installing...
"%~dp0adb\windows\adb.exe" install %PathAPK%
rem >> %Documentacion%
echo Done
rem notepad %Documentacion%
pause
| simplevulnerabilitymanager/svm | apk_install_local.bat | bat | gpl-2.0 | 563 |
cmd_drivers/video/omap2/dss/built-in.o := rm -f drivers/video/omap2/dss/built-in.o; /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/video/omap2/dss/built-in.o
| doadin/samsung-kernel-msm7x30-Doadin | drivers/video/omap2/dss/.built-in.o.cmd | bat | gpl-2.0 | 194 |
cmd_lib/zlib_inflate/built-in.o := /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ld -EL -r -o lib/zlib_inflate/built-in.o lib/zlib_inflate/zlib_inflate.o
| domintech/PandaBoard-LinuxKernel | lib/zlib_inflate/.built-in.o.cmd | bat | gpl-2.0 | 234 |
del output.*
del test.h.idlbin
C++2HareIDL.exe -find-class=TestClass -serialize -o test.h.idlbin test.h -- -fno-ms-compatibility -I..\..\..\..\src -xc++
hare-idl --templatePath=../../../../src/targets/cpp/codegen/protobuf/ --template=main.txt --template=mapping.txt --template=encoding.txt --template=proto.txt --template=dbg_helpers.txt --inputBinary=test.h.idlbin
sed --in-place s/"\/\/include-here"/"#include \"test.h\""/g output.cpp
sed --in-place s/"\/\/include-here"/"#include \"test.h\""/g output.h
del sed*
| O-Log-N/Hare-IDL | test/targets/protobuf/packed-sequence/generate.bat | bat | gpl-2.0 | 519 |
cmd_drivers/media/pci/ttpci/built-in.o := rm -f drivers/media/pci/ttpci/built-in.o; mips-openwrt-linux-uclibc-ar rcsD drivers/media/pci/ttpci/built-in.o
| shizhai/wprobe | build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/drivers/media/pci/ttpci/.built-in.o.cmd | bat | gpl-2.0 | 154 |
cpprsf2tsmell.sh FileAccessTestCommand.rsf -DMYSTERY_GUEST -DMYSTERY_GUEST_BLACKLIST=$TSMELLS/src/dump/rml/provideMysteryBlacklistCppFile.rml
| carvalhomb/tsmells | tests/Pieces/MysteryGuest/cpp/FileAccessTestCommand/FileAccessTestCommand.cmd | bat | gpl-2.0 | 142 |
ocamlopt -I .. -c graphics.cmx ../graphics_utils.ml
ocamlopt -I .. -c ../parser.ml
ocamlopt -I .. -c cmq.ml
ocamlopt -I .. graphics.cmxa str.cmxa graphics_utils.cmx parser.cmx cmq.cmx cmq_app.ml -o cmq_app.exe
rem ocamlc -I .. -i cmq_app.ml > cmq_app.mli
rem ocamlc -I .. -c graphics.cma ../graphics_utils.ml
rem ocamlc -I .. graphics.cma graphics_utils.cmo cmq.ml -o cmq.exe
pause
| iLikeSource/Puleo | tools/cmq/run_x.bat | bat | gpl-2.0 | 382 |
@ECHO OFF
REM ----------------------------------------------------------------------
REM PHP version 5
REM ----------------------------------------------------------------------
REM Copyright (c) 1997-2004 The PHP Group
REM ----------------------------------------------------------------------
REM This source file is subject to version 3.0 of the PHP license,
REM that is bundled with this package in the file LICENSE, and is
REM available at through the world-wide-web at
REM http://www.php.net/license/3_0.txt.
REM If you did not receive a copy of the PHP license and are unable to
REM obtain it through the world-wide-web, please send a note to
REM [email protected] so we can mail you a copy immediately.
REM ----------------------------------------------------------------------
REM Authors: Alexander Merz ([email protected])
REM ----------------------------------------------------------------------
REM
REM Last updated 02/08/2004 ($Id$ is not replaced if the file is binary)
REM change this lines to match the paths of your system
REM -------------------
REM Test to see if this is a raw pear.bat (uninstalled version)
SET TMPTMPTMPTMPT=@includ
SET PMTPMTPMT=%TMPTMPTMPTMPT%e_path@
FOR %%x IN ("\xampp\php\pear") DO (if %%x=="%PMTPMTPMT%" GOTO :NOTINSTALLED)
REM Check PEAR global ENV, set them if they do not exist
IF "%PHP_PEAR_INSTALL_DIR%"=="" SET "PHP_PEAR_INSTALL_DIR=\xampp\php\pear"
IF "%PHP_PEAR_BIN_DIR%"=="" SET "PHP_PEAR_BIN_DIR=\xampp\php"
IF "%PHP_PEAR_PHP_BIN%"=="" SET "PHP_PEAR_PHP_BIN=\xampp\php\.\php.exe"
GOTO :INSTALLED
:NOTINSTALLED
ECHO WARNING: This is a raw, uninstalled pear.bat
REM Check to see if we can grab the directory of this file (Windows NT+)
IF %~n0 == pear (
FOR %%x IN (cli\php.exe php.exe) DO (if "%%~$PATH:x" NEQ "" (
SET "PHP_PEAR_PHP_BIN=%%~$PATH:x"
echo Using PHP Executable "%PHP_PEAR_PHP_BIN%"
"%PHP_PEAR_PHP_BIN%" -v
GOTO :NEXTTEST
))
GOTO :FAILAUTODETECT
:NEXTTEST
IF "%PHP_PEAR_PHP_BIN%" NEQ "" (
REM We can use this PHP to run a temporary php file to get the dirname of pear
echo ^<?php $s=getcwd^(^);chdir^($a=dirname^(__FILE__^).'\\'^);if^(stristr^($a,'\\scripts'^)^)$a=dirname^(dirname^($a^)^).'\\';$f=fopen^($s.'\\~a.a','wb'^);echo$s.'\\~a.a';fwrite^($f,$a^);fclose^($f^);chdir^($s^);?^> > ~~getloc.php
"%PHP_PEAR_PHP_BIN%" ~~getloc.php
set /p PHP_PEAR_BIN_DIR=fakeprompt < ~a.a
DEL ~a.a
DEL ~~getloc.php
set "PHP_PEAR_INSTALL_DIR=%PHP_PEAR_BIN_DIR%pear"
REM Make sure there is a pearcmd.php at our disposal
IF NOT EXIST %PHP_PEAR_INSTALL_DIR%\pearcmd.php (
IF EXIST %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php COPY %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php
IF EXIST pearcmd.php COPY pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php
IF EXIST %~dp0\scripts\pearcmd.php COPY %~dp0\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php
)
)
GOTO :INSTALLED
) ELSE (
REM Windows Me/98 cannot succeed, so allow the batch to fail
)
:FAILAUTODETECT
echo WARNING: failed to auto-detect pear information
:INSTALLED
REM Check Folders and files
IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%" GOTO PEAR_INSTALL_ERROR
IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" GOTO PEAR_INSTALL_ERROR2
IF NOT EXIST "%PHP_PEAR_BIN_DIR%" GOTO PEAR_BIN_ERROR
IF NOT EXIST "%PHP_PEAR_PHP_BIN%" GOTO PEAR_PHPBIN_ERROR
REM launch pearcmd
GOTO RUN
:PEAR_INSTALL_ERROR
ECHO PHP_PEAR_INSTALL_DIR is not set correctly.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_INSTALL_DIR%
GOTO END
:PEAR_INSTALL_ERROR2
ECHO PHP_PEAR_INSTALL_DIR is not set correctly.
ECHO pearcmd.php could not be found there.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_INSTALL_DIR%
GOTO END
:PEAR_BIN_ERROR
ECHO PHP_PEAR_BIN_DIR is not set correctly.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_BIN_DIR%
GOTO END
:PEAR_PHPBIN_ERROR
ECHO PHP_PEAR_PHP_BIN is not set correctly.
ECHO Please fix it using your environment variable or modify
ECHO the default value in pear.bat
ECHO The current value is:
ECHO %PHP_PEAR_PHP_BIN%
GOTO END
:RUN
"%PHP_PEAR_PHP_BIN%" -C -n -d output_buffering=1 -d safe_mode=0 -d include_path="%PHP_PEAR_INSTALL_DIR%" -d register_argc_argv="On" -d variables_order=EGPCS -f "%PHP_PEAR_INSTALL_DIR%\peclcmd.php" -- %1 %2 %3 %4 %5 %6 %7 %8 %9
:END
@ECHO ON
| Esleelkartea/kz-adeada-talleres-electricos- | kzadeadatallereselectricos_v1.0.0_win32_installer/windows/xampp/php/pecl.bat | bat | gpl-2.0 | 4,627 |
cmd_mm/page-writeback.o := gcc -Wp,-MD,mm/.page-writeback.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(page_writeback)" -D"KBUILD_MODNAME=KBUILD_STR(page_writeback)" -c -o mm/page-writeback.o mm/page-writeback.c
deps_mm/page-writeback.o := \
mm/page-writeback.c \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/block.h) \
include/linux/kernel.h \
$(wildcard include/config/lbd.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.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/asm/posix_types.h \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
$(wildcard include/config/x86/cmov.h) \
include/asm/alternative.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/paravirt.h) \
include/asm/asm.h \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.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) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/compat/vdso.h) \
include/asm/user.h \
include/asm/user_32.h \
include/asm/auxvec.h \
include/asm/vdso.h \
include/asm/desc.h \
include/asm/ldt.h \
include/asm/mmu.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/asm-x86/mach-default/mach_apicdef.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slabinfo.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/asm/module.h \
$(wildcard include/config/m486.h) \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip2.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/auditsyscall.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/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.h \
include/linux/namei.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/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/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/auxvec.h \
include/linux/completion.h \
include/asm/pgtable.h \
include/asm/pgtable_32.h \
$(wildcard include/config/highpte.h) \
include/asm/paravirt.h \
include/asm/pgtable-2level-defs.h \
include/asm/pgtable-2level.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/swap.h \
include/linux/memcontrol.h \
$(wildcard include/config/cgroup/mem/cont.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/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/preempt/rcu.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/timex.h \
include/asm/timex.h \
$(wildcard include/config/x86/rdc321x.h) \
include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/jiffies.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.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/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/asm/seccomp.h \
include/asm/seccomp_32.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/asm/unistd_32.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/pagemap.h \
include/linux/highmem.h \
include/linux/uaccess.h \
include/asm/uaccess.h \
include/asm/uaccess_32.h \
$(wildcard include/config/x86/intel/usercopy.h) \
$(wildcard include/config/x86/wp/works/ok.h) \
include/asm/cacheflush.h \
$(wildcard include/config/debug/rodata.h) \
$(wildcard include/config/debug/rodata/test.h) \
include/asm/highmem.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/asm/hardirq.h \
include/asm/hardirq_32.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
include/asm/irq_32.h \
include/asm-x86/mach-default/irq_vectors.h \
include/asm-x86/mach-default/irq_vectors_limits.h \
include/asm/irq_regs.h \
include/asm/irq_regs_32.h \
include/asm/hw_irq.h \
include/asm/hw_irq_32.h \
include/linux/profile.h \
include/asm/sections.h \
include/asm-generic/sections.h \
include/linux/irq_cpustat.h \
include/asm/tlbflush.h \
include/linux/writeback.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/task_io_accounting_ops.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/asm/device.h \
$(wildcard include/config/dmar.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
include/asm/io.h \
include/asm/io_32.h \
include/asm-generic/iomap.h \
include/linux/vmalloc.h \
include/linux/bsg.h \
include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/linux/elevator.h \
include/linux/mpage.h \
include/linux/rmap.h \
include/linux/sysctl.h \
include/linux/cpu.h \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/sysdev.h \
include/linux/node.h \
include/linux/syscalls.h \
$(wildcard include/config/v850.h) \
include/linux/key.h \
include/linux/buffer_head.h \
include/linux/pagevec.h \
mm/page-writeback.o: $(deps_mm/page-writeback.o)
$(deps_mm/page-writeback.o):
| namgk/kernel-tut | mm/.page-writeback.o.cmd | bat | gpl-2.0 | 21,898 |
setenv bootargs root=/dev/mmcblk0p1 rootfstype=ext4 rootwait console=ttymxc1,115200 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24,bpp=32 rd.dm=0 rd.luks=0 rd.lvm=0 raid=noautodetect pci=nomsi ahci_imx.hotplug=1 quiet
ext2load mmc 0 ${fdt_addr} /boot/dtb/imx6q-udoo.dtb
ext2load mmc 0 ${loadaddr} /boot/zImage
bootz ${loadaddr} - ${fdt_addr}
| buddhike/lib | config/boot-udoo.cmd | bat | gpl-2.0 | 342 |
cmd_security/keys/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-ld -EL -r -o security/keys/built-in.o security/keys/gc.o security/keys/key.o security/keys/keyring.o security/keys/keyctl.o security/keys/permission.o security/keys/process_keys.o security/keys/request_key.o security/keys/request_key_auth.o security/keys/user_defined.o security/keys/proc.o security/keys/sysctl.o
| chase2534/gtab47.freekern | security/keys/.built-in.o.cmd | bat | gpl-2.0 | 492 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=Scirius
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
| StamusNetworks/scirius | doc/make.bat | bat | gpl-3.0 | 811 |
::set path=c:\4dos;c:\tsejr;c:\4dos\command;c:\batch;c:\windows;c:\windows\command;c:\4dos\qemm;f:\djgpp\bin;c:\ultrasnd;c:\sb16;c:\windows\mouse
| pip/Octology | dox/Jobz/7Studios/CygPip/bin/MkPath.bat | bat | gpl-3.0 | 147 |
@echo off
set db=%1
set table_name=%2
set user=%3
set password=%4
net start mysqld
echo create table %db%.%table_name% (test varchar(255)) ; | "C:\Program Files\MySQL\bin\mysql.exe" -u%user% -p%password%
| pmanwatkar/puppetModules | actions/files/Database_mysql_windows/create_table_mysql.bat | bat | gpl-3.0 | 208 |
docker run -it --rm -v %CD%\src\test\scala:/home/sbtuser/src/test/scala scalawebtest/sbt:3.0.1
| unic/ScalaWebTest | examples/docker/build_container.bat | bat | apache-2.0 | 95 |
@rem Copyright 2019 Google LLC. All rights reserved.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem python version should be set as an argument, if not, default to python 3.9
set PYTHON_VERSION=%1
if "%PYTHON_VERSION%"=="" (
echo "Python version was not provided, using Python 3.9"
set PYTHON_VERSION=3.9
)
if "%PYTHON_VERSION%"=="3.10-dev" (
set PYTHON_VERSION=3.10
)
@rem update python deps and build wheels (requires CRC32C_INSTALL_PREFIX is set)
@rem FOR %%V IN (3.5-64,3.5-32,3.6-64,3.6-32,3.7-64,3.7-32) DO (
@REM FOR %%V IN (3.9-64,3.9-32) DO (
FOR %%V IN (%PYTHON_VERSION%-32, %PYTHON_VERSION%-64) DO (
py -%%V -m pip install --no-index --find-links=wheels google-crc32c --force-reinstall
py -%%V ./scripts/check_crc32c_extension.py
py -%%V -m pip install pytest
py -%%V -m pytest tests
)
| googleapis/python-crc32c | scripts/windows/test.bat | bat | apache-2.0 | 1,365 |
set classpath=.;d:\jdk1.4\lib\tools.jar;d:\weblogic7\weblogic700\server\lib\weblogic.jar;d:\weblogic7\weblogic700\samples\server\stage\examples\clientclasses;d:\weblogic7\weblogic700\samples\server\stage\examples\clientclasses\hello_client.jar
path=d:\weblogic7\weblogic700\server\bin;d:\jdk1.4\bin;c:\windows\system32
| waiwong/Eclipse_Workspace | MyWebproj/WebContent/order/setclientenv.bat | bat | apache-2.0 | 321 |
@ECHO OFF
%~dp0..\..\startvs.cmd %~dp0Antiforgery.slnf
| aspnet/AspNetCore | src/Antiforgery/startvs.cmd | bat | apache-2.0 | 56 |
@echo off
REM Build and run script for the BrowserRimPushDemo
del *.class
javac BrowserRimPushDemo.java
pushd ..\..\..\..\..\..
java -cp . com.rim.samples.server.browserpushdemo.rimpush.BrowserRimPushDemo
popd
| blackberry/JDE-Samples | com/rim/samples/server/browserpushdemo/rimpush/run.bat | bat | apache-2.0 | 221 |
@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\bopy_doc.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\bopy_doc.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
| hypergravity/bopy | doc/make.bat | bat | bsd-3-clause | 7,253 |
mkdir include
xcopy /s/e/y src\include\* include\
xcopy /s/e/y src\gtest\include\* include\
| apkbox/nano-rpc | third_party/googlemock/extract_includes.cmd | bat | bsd-3-clause | 95 |
REM create the Dependencies.7z file, placing it in the Downloads folder
REM it's meant to be called from a cea-aware conda environment
REM Make sure we have access to the executables needed for this
SET PATH=C:\Program Files\7-Zip;%PATH%
PUSHD %USERPROFILE%\Downloads
REM %~dp0
CALL conda env remove -n cea
CALL conda env create -n cea -f "%~dp0..\environment.yml"
CALL conda activate cea
WHERE python
CALL python -m pip install "%~dp0.."
CALL python -m pip install "%~dp0..\..\cea-workflow-utils"
CALL python -m pip install pandana urbanaccess
CALL python -m pip install jupyter ipython
CALL python -m pip install sphinx
CALL conda deactivate
DEL /F/Q cea.zip
DEL /F/Q Dependencies.7z
CALL conda-pack -n cea -j -1 --format zip
DEL /F/Q/S "%USERPROFILE%\Downloads\Dependencies" > NUL
RMDIR /Q/S "%USERPROFILE%\Downloads\Dependencies
CALL 7z x cea.zip -oDependencies\Python -y
CALL 7z a Dependencies.7z Dependencies\ -mx9 -sdel
| architecture-building-systems/CEAforArcGIS | setup/build-dependencies.bat | bat | mit | 928 |
setlocal enabledelayedexpansion
@if exist "%HXCPP_MSVC%\..\..\VC\" (
@if not exist "%HXCPP_MSVC%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" (
@echo Error: the specified MSVC version does not have vcvarsx86_amd64.bat setup script
) else (
@echo "%HXCPP_MSVC%"
@call "%HXCPP_MSVC%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
@echo HXCPP_VARS
@set
)
) else if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" (
for /f "usebackq tokens=*" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do (
@set InstallDir=%%i
)
@if exist "!InstallDir!\Common7\Tools\VsDevCmd.bat" (
@call "!InstallDir!\Common7\Tools\VsDevCmd.bat" -arch=amd64 -app_platform=Desktop -no_logo
@echo HXCPP_VARS
@set
) else (
echo Warning: Could not find Visual Studio 2017 VsDevCmd
)
) else if exist "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" (
@call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" -arch=amd64 -app_platform=Desktop -no_logo
@echo HXCPP_VARS
@set
) else if exist "%VS140COMNTOOLS%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" (
@echo "%VS140COMNTOOLS%"
@call "%VS140COMNTOOLS%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
@echo HXCPP_VARS
@set
@echo HXCPP_HACK_PDBSRV=1
) else if exist "%VS120COMNTOOLS%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" (
@echo "%VS120COMNTOOLS%"
@call "%VS120COMNTOOLS%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
@echo HXCPP_VARS
@set
) else if exist "%VS110COMNTOOLS%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" (
@echo "%VS110COMNTOOLS%"
@call "%VS110COMNTOOLS%\..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
@echo HXCPP_VARS
@set
) else (
echo Error: 64bit is not automatically supported for this version of VC. Set HXCPP_MSVC_CUSTOM and manually configure the executable, library and include paths
)
| KTXSoftware/KodeStudio-win32 | resources/app/kodeExtensions/kha/Kha/Backends/Kore/khacpp/toolchain/msvc64-setup.bat | bat | mit | 2,051 |
cmd_drivers/staging/tty/built-in.o := rm -f drivers/staging/tty/built-in.o; arm-linux-gnueabihf-ar rcsD drivers/staging/tty/built-in.o
| tyeo098/MK908-Kernel-NAND | drivers/staging/tty/.built-in.o.cmd | bat | gpl-2.0 | 136 |
cmd_drivers/usb/core/message.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,drivers/usb/core/.message.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -DMODULE -mlong-calls -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(message)" -D"KBUILD_MODNAME=KBUILD_STR(usbcore)" -c -o drivers/usb/core/message.o drivers/usb/core/message.c
deps_drivers/usb/core/message.o := \
drivers/usb/core/message.c \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/iommu.h) \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/usb/devicefs.h) \
$(wildcard include/config/intf/strings.h) \
include/linux/pci.h \
$(wildcard include/config/pci/msi.h) \
$(wildcard include/config/pci.h) \
$(wildcard include/config/ht/irq.h) \
$(wildcard include/config/pci/domains.h) \
include/linux/pci_regs.h \
include/linux/mod_devicetable.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/sgidefs.h \
include/asm/types.h \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/ioport.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/hotplug/cpu.h) \
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) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.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 \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mips64/r2.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm/cpu-features.h \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.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-generic/bitops/ext2-atomic.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/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.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/page/size/8kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.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/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/linux/kref.h \
include/linux/wait.h \
include/asm/current.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/module.h \
$(wildcard include/config/modules.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/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.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/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.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/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 \
include/asm-mips/mach-generic/topology.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/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-mips/mach-generic/timex.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/asm/module.h \
$(wildcard include/config/cpu/mips32/r2.h) \
$(wildcard include/config/cpu/mips64/r1.h) \
$(wildcard include/config/cpu/r6000.h) \
include/asm/uaccess.h \
include/asm-generic/uaccess.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/semaphore.h \
include/asm/device.h \
include/asm-generic/device.h \
include/linux/pci_ids.h \
include/linux/dmapool.h \
include/asm/scatterlist.h \
include/asm/pci.h \
$(wildcard include/config/dma/need/pci/map/state.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/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/pid.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 \
include/linux/err.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm/pgtable-32.h \
include/asm/fixmap.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.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/asm-generic/pci-dma-compat.h \
include/linux/dma-mapping.h \
include/asm/dma-mapping.h \
include/linux/usb.h \
$(wildcard include/config/usb/mon.h) \
$(wildcard include/config/usb/device/class.h) \
$(wildcard include/config/usb/suspend.h) \
include/linux/usb/ch9.h \
$(wildcard include/config/size.h) \
$(wildcard include/config/att/one.h) \
$(wildcard include/config/att/selfpower.h) \
$(wildcard include/config/att/wakeup.h) \
$(wildcard include/config/att/battery.h) \
include/linux/delay.h \
include/asm/delay.h \
include/linux/param.h \
include/asm/compiler.h \
include/linux/interrupt.h \
$(wildcard include/config/high/res/timers.h) \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/asm/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
$(wildcard include/config/i8259.h) \
include/asm/mipsmtregs.h \
include/asm-mips/mach-generic/irq.h \
$(wildcard include/config/irq/cpu/rm7k.h) \
$(wildcard include/config/irq/cpu/rm9k.h) \
include/asm/ptrace.h \
$(wildcard include/config/cpu/has/smartmips.h) \
include/asm/isadep.h \
include/asm/irq_regs.h \
include/asm/hw_irq.h \
include/linux/profile.h \
include/linux/irq_cpustat.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/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/compat.h) \
$(wildcard include/config/fault/injection.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 \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/securebits.h \
include/linux/fs_struct.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/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.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/ctype.h \
include/linux/nls.h \
include/linux/scatterlist.h \
include/linux/usb/quirks.h \
drivers/usb/core/hcd.h \
drivers/usb/core/hub.h \
drivers/usb/core/usb.h \
drivers/usb/core/message.o: $(deps_drivers/usb/core/message.o)
$(deps_drivers/usb/core/message.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/drivers/usb/core/.message.o.cmd | bat | gpl-2.0 | 18,708 |
java -jar jterminal.jar localhost 46000 ssl
| mrev11/ccc3 | jt/jterminal/s_ssl.bat | bat | lgpl-2.1 | 46 |
appcfg.py update .
pause
| Tokyodays/aroma-massage | update.bat | bat | apache-2.0 | 27 |
@echo off
setlocal
rem Copyright (c) 1999, 2010 Tanuki Software, Ltd.
rem http://www.tanukisoftware.com
rem All rights reserved.
rem
rem This software is the proprietary information of Tanuki Software.
rem You shall use it only in accordance with the terms of the
rem license agreement you entered into with Tanuki Software.
rem http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html
rem
rem Java Service Wrapper general startup script.
rem -----------------------------------------------------------------------------
rem These settings can be modified to fit the needs of your application
rem Optimized for use with version 3.5.4 of the Wrapper.
rem The base name for the Wrapper binary.
set _WRAPPER_BASE=wrapper
rem -----------------------------------------------------------------------------
rem Beginning Lily-specific section
if not "%JAVA_HOME%"=="" goto gotJavaHome
echo JAVA_HOME not set!
goto :eof
:gotJavaHome
if not "%LILY_HOME%"=="" goto gotLilyHome
rem %~dp0 is expanded pathname of the current script under NT
set LILY_HOME=%~dp0..
:gotLilyHome
rem
rem Also modified for Lily : _REALPATH further on in this file
rem
rem End of Lily-specific section
rem -----------------------------------------------------------------------------
rem The name and location of the Wrapper configuration file. This will be used
rem if the user does not specify a configuration file as the first argument to
rem this script.
set _WRAPPER_CONF_DEFAULT=%LILY_HOME%\service\wrapper.conf
rem Do not modify anything beyond this point
rem -----------------------------------------------------------------------------
rem
rem Resolve the real path of the wrapper.exe
rem For non NT systems, the _REALPATH and _WRAPPER_CONF values
rem can be hard-coded below and the following test removed.
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem
rem Find the application home.
rem
rem %~dp0 is location of current script under NT
set _REALPATH=%LILY_HOME%\service\wrapper-3.5.4\bin\
rem
rem Decide on the specific Wrapper binary to use (See delta-pack)
rem
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="IA64" goto ia64
set _WRAPPER_L_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
goto search
:amd64
set _WRAPPER_L_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
goto search
:ia64
set _WRAPPER_L_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-ia-64.exe
goto search
:search
set _WRAPPER_EXE=%_WRAPPER_L_EXE%
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%.exe
if exist "%_WRAPPER_EXE%" goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_WRAPPER_L_EXE%
echo %_WRAPPER_EXE%
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
set _WRAPPER_CONF="%~f1"
if not %_WRAPPER_CONF%=="" goto startup
set _WRAPPER_CONF="%_WRAPPER_CONF_DEFAULT%"
rem
rem Start the Wrapper
rem
:startup
"%_WRAPPER_EXE%" -i %_WRAPPER_CONF%
if not errorlevel 1 goto :eof
pause
| NGDATA/lilyproject | dist/src/main/resources/service/install-lily-service.bat | bat | apache-2.0 | 3,039 |
cmd_drivers/i2c/algos/built-in.o := arm-eabi-ld -EL -r -o drivers/i2c/algos/built-in.o drivers/i2c/algos/i2c-algo-bit.o
| MrHyde03/android_kernel_samsung_espressovzw | drivers/i2c/algos/.built-in.o.cmd | bat | gpl-2.0 | 125 |
@REM author: Peter Carlo Colapietro
@REM #see: http://wynnnetherland.com/linked/2013012801/bootstrapping-consistency/
@REM #see: https://github.com/bdemers/maven-wrapper
@echo off
pushd script
call callmavenwrapper.bat install
popd
| paulhurleyuk/Makelangelo | script/bootstrap.bat | bat | gpl-2.0 | 232 |
@echo off
set _arch=%1
set _arch=%_arch:Win32=x86%
copy %2"\Redist\D3D\"%_arch%"\d3dcompiler_47.dll" %3 > NUL
:: This is equivalent to `touch', see:
:: https://technet.microsoft.com/en-us/library/bb490886.aspx
:: This avoids rerunning because this batch file is also copied to the gen dir,
:: so it's timestamp would otherwise be newer than the dll.
copy /b %3\d3dcompiler_47.dll+,, %3\d3dcompiler_47.dll > NUL
| CTSRD-SOAAP/chromium-42.0.2311.135 | third_party/angle/src/copy_compiler_dll.bat | bat | bsd-3-clause | 411 |
@echo off
REM Setup for compiling with Watcom C/C++ 10.6 in 32 bit mode
if .%CHECKED%==.1 goto checked_build
SET LIB=%SCITECH_LIB%\LIB\RELEASE\WIN32\WC10;%WC10_PATH%\LIB386;%WC10_PATH%\LIB386\NT;.
echo Release build enabled.
goto setvars
:checked_build
SET LIB=%SCITECH_LIB%\LIB\DEBUG\WIN32\WC10;%WC10_PATH%\LIB386;%WC10_PATH%\LIB386\NT;.
echo Checked debug build enabled.
goto setvars
:setvars
SET EDPATH=%WC10_PATH%\EDDAT
SET INCLUDE=INCLUDE;%SCITECH%\INCLUDE;%PRIVATE%\INCLUDE;%WC10_PATH%\H;%WC10_PATH%\H\NT;
SET WATCOM=%WC10_PATH%
SET MAKESTARTUP=%SCITECH%\MAKEDEFS\WC32.MK
SET USE_TNT=
SET USE_X32=
SET USE_X32VM=
SET USE_WIN16=
SET USE_WIN32=1
SET USE_WIN386=
SET WIN32_GUI=1
SET USE_OS216=
SET USE_OS232=
SET USE_OS2GUI=
SET USE_SNAP=
SET USE_QNX4=
SET WC_LIBBASE=WC10
PATH %SCITECH_BIN%;%WC10_PATH%\BINNT;%WC10_PATH%\BINW;%DEFPATH%%WC_CD_PATH%
echo Watcom C/C++ 10.6 Win32 GUI compilation environment set up
| daydaygit/flrelse | uboot1.1.6/board/MAI/bios_emulator/scitech/bin/wc10-w32.bat | bat | gpl-3.0 | 920 |
@echo off
del *.nupkg
nuget pack FleetComplete.Geocoder.nuspec
nuget pack FleetComplete.Geocoder.NGeoNames.nuspec
nuget pack FleetComplete.Geocoder.CanadaGeoNameBase.nuspec
pause | fleetcomplete/pclreversegeocoder | nuspec/pack.cmd | bat | mit | 178 |
-intstyle "ise" -incremental -lib "secureip" -o "C:/Users/nledwith/Desktop/Exp9_30th/Wrap_test_isim_beh.exe" -prj "C:/Users/nledwith/Desktop/Exp9_30th/Wrap_test_beh.prj" "work.Wrap_test"
| NicoLedwith/Dr.AluOpysel | RAT_MCU/fuseRelaunch.cmd | bat | mit | 189 |
@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\warp.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\warp.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
| SaturDJang/warp | docs/make.bat | bat | mit | 5,092 |
::
:: Copyright (c) 2012-2014 André Bargull
:: Alle Rechte vorbehalten / All Rights Reserved. Use is subject to license terms.
::
:: <https://github.com/anba/es6draft>
::
::
:: Description:
:: Helper script to start the simple REPL
::
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
:: Base directory and class information
set REL_PATH=%~dp0
set BUILD_DIR=%REL_PATH%\..\target
set CLASSPATH=%BUILD_DIR%\es6draft.jar
set MAINCLASS=com.github.anba.es6draft.repl.Repl
:: Determine Java start command
if not defined JAVA_HOME (
set JAVA_CMD=java
) else (
set JAVA_CMD=%JAVA_HOME%\bin\java
)
:: Set default Java options
set JAVA_OPTS=%JAVA_OPTS% -ea -server -XX:+TieredCompilation
:: Adjust classpath based on current Java version
for /f delims^=-^"^ tokens^=2 %%j in ('java -fullversion 2^>^&1') do (
set JAVA_VERSION=%%j
)
if %JAVA_VERSION% LSS 1.7.0_45 (
set JAVA_OPTS=%JAVA_OPTS% -esa
set JAVA_CLASSPATH=-Xbootclasspath/a:%CLASSPATH%
) else (
set JAVA_CLASSPATH=-cp %CLASSPATH%
)
:: Configure JLine terminal settings
if %JAVA_VERSION% LSS 1.7.0_45 (
set JLINE_TERMINAL=none
) else (
set JLINE_TERMINAL=windows
)
set JAVA_OPTS=%JAVA_OPTS% -Djline.terminal=%JLINE_TERMINAL%
:: Start application
%JAVA_CMD% %JAVA_OPTS% %JAVA_CLASSPATH% %MAINCLASS% %*
| rwaldron/es6draft | bin/es6draft.bat | bat | mit | 1,285 |
luajit.exe r3e-open-championship.lua -addrace ./results/%~n0.lua %1 -makehtml ./results/%~n0.lua ./results/%~n0.html
start "" ./results/%~n0.html
pause | pixeljetstream/r3e-open-championship | myleague.bat | bat | mit | 151 |
@echo off
REM my own libs
rd /Q /S ext\higan_coroutines
git clone https://github.com/jgavert/redesigned-giggle.git ext/higan_coroutines
REM tests tests tests, not sure if maintained in the long run
rd /Q /S ext\Catch2
git clone https://github.com/catchorg/Catch2.git ext/Catch2
REM commandline options, something for it
rd /Q /S ext\cxxopts
git clone https://github.com/jarro2783/cxxopts.git ext/cxxopts
REM For gsl::span
rd /Q /S ext\GSL
git clone https://github.com/microsoft/GSL.git ext/GSL
REM for easy image loading headers
rd /s /Q ext\stb
git clone https://github.com/nothings/stb.git ext/stb
REM Not going to even explain
rd /s /Q ext\imgui
git clone https://github.com/ocornut/imgui.git ext/imgui
REM switch to docking branch for some sexy docking time
cd ext\imgui
git fetch
git checkout docking
cd ..\..
REM For all json needs, api looks clean and usable
rd /s /Q ext\nlohmann_json
git clone https://github.com/nlohmann/json.git ext/nlohmann_json
REM cgltf parser
rd /s /Q ext\cgltf
git clone https://github.com/jkuhlmann/cgltf.git ext/cgltf
REM https://www.nuget.org/api/v2/package/WinPixEventRuntime
rd /s /Q ext\winpixeventruntime
powershell -Command "Invoke-WebRequest https://www.nuget.org/api/v2/package/WinPixEventRuntime -OutFile ext\wper.zip"
powershell -Command "Expand-Archive ext\wper.zip -DestinationPath ext\winpixeventruntime"
del /Q ext\wper.zip
REM shader compiler for DX12&vulkan dxil&spirv
rd /s /Q ext\DirectXShaderCompiler
git clone https://github.com/microsoft/DirectXShaderCompiler ext/DirectXShaderCompiler
mkdir ext\DirectXShaderCompiler\dxc-bin
REM now just build
cd ext/DirectXShaderCompiler
git submodule update --init
REM Set up environment
call .\utils\hct\hctstart.cmd . dxc-bin
REM Run the following if Windows Driver Kit is not installed
call python .\utils\hct\hctgettaef.py
REM # Configure and build
call .\utils\hct\hctbuild.cmd -rel -vs2019 -spirv
cd ..
cd ..
rmdir /S /Q ext\dxc-bin
mkdir ext\dxc-bin\lib
mkdir ext\dxc-bin\bin
mkdir ext\dxc-bin\include
robocopy ext\DirectXShaderCompiler\dxc-bin\Release\bin ext\dxc-bin\bin dxcompiler.dll
robocopy ext\DirectXShaderCompiler\dxc-bin\Release\lib ext\dxc-bin\lib dxcompiler.lib
robocopy /s ext\DirectXShaderCompiler\dxc-bin\include ext\dxc-bin\include
robocopy /s ext\DirectXShaderCompiler\include ext\dxc-bin\include
echo You can now remove "ext\DirectXShaderCompiler" if you want to reduce amount of bloat :) "ext\dxc-bin" has all the relevant data now
rem remember to download Bazel from https://github.com/bazelbuild/bazel/releases
rem too hard to programmatically get it from there for you :)
pause | jgavert/Faze | fetchExternalsAndBuildDXC.bat | bat | mit | 2,622 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\InplusTrader.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\InplusTrader.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
if "%1" == "dummy" (
%SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy
if errorlevel 1 exit /b 1
echo.
echo.Build finished. Dummy builder generates no files.
goto end
)
:end
| zhengwsh/InplusTrader_Linux | docs/make.bat | bat | mit | 7,472 |
rem this doesn't have real arg parsing
rem the args must be like this
rem none at all
rem --cert pathtocert
rem --insecure
rem only supports python 2.6+
set $UNSAFE=
set $caDirectory=
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /F %%a in (%PYWE_HOME%\lib\currentVersion.txt) do (
SET $CURRENT_PY=%%a
)
SET $EZSURL=https://bootstrap.pypa.io/ez_setup.py
IF "%1"=="nocheckcertificate" (
goto setUnsafe
) ELSE (
IF "%1"=="cacertificate" (
GOTO setCACERT
) ELSE (
GOTO flagsSet
)
)
rem annoying section to deal with variable expansion in if blocks
:setUnsafe
echo UNSAFE SET
set $UNSAFE=1
SHIFT
goto flagsSet
:setCACERT
echo CACERT SETTING
SHIFT
set $caDirectory=%1
set $caDirectory=%1
SHIFT
echo %1
goto flagsSet
:flagsSet
if ""=="%$UNSAFE%" (
if ""=="%$caDirectory%" (
goto ezInstallSecure
) else (
goto ezInstallSecureWithCert
)
) else (
goto ezInstallInsecure
)
:checkPipOptions
if ""=="%$UNSAFE%" (
if ""=="%$caDirectory%" (
rem no cert flag
goto pip
) else (
rem cert flag
goto pipWithCert
)
) else (
rem insecure pip
goto pipInsecure
)
:checkVirtualEnvOptions
rem this step does not use wget and so the insecure flag is not relevant
if ""=="%$caDirectory%" (
rem no cert flag
goto virtualEnv
) else (
rem cert flag
goto virtualEnvWithCert
)
:ezInstallSecure
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\easy_install.exe" (
rem change download location
echo easy install not found, installing easy install
%PYWE_HOME%\lib\wget -N --output-document="%PYWE_HOME%\lib\downloads\get_ez_setup.py" %$EZSURL%
"%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get_ez_setup.py"
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\easy_install.exe" (
echo easy install install failed
endlocal & exit /b 1
) ELSE (
echo easy install installed
goto checkPipOptions
)
)
goto checkPipOptions
:ezInstallSecureWithCert
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\easy_install.exe" (
rem change download location
echo easy install not found, installing easy install
echo %PYWE_HOME%\lib\wget --ca-certificate=%$caDirectory% -N --output-document="%PYWE_HOME%\lib\downloads\get_ez_setup.py" %$EZSURL%
%PYWE_HOME%\lib\wget --ca-certificate=%$caDirectory% -N --output-document="%PYWE_HOME%\lib\downloads\get_ez_setup.py" %$EZSURL%
"%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get_ez_setup.py"
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\easy_install.exe" (
echo easy install install failed
endlocal & exit /b 1
) ELSE (
echo easy install installed
goto checkPipOptions
)
)
goto checkPipOptions
:ezInstallInsecure
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\easy_install.exe" (
rem change download location
echo easy install not found, installing easy install
%PYWE_HOME%\lib\wget --no-check-certificate -N --output-document="%PYWE_HOME%\lib\downloads\get_ez_setup.py" %$EZSURL%
"%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get_ez_setup.py" --insecure
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\easy_install.exe" (
echo easy install install failed
endlocal & exit /b 1
) ELSE (
echo easy install installed
goto checkPipOptions
)
)
goto checkPipOptions
:pipWithCert
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\pip.exe" (
echo pip not found, installing pip
%PYWE_HOME%\lib\wget --ca-certificate=%$caDirectory% -N --output-document="%PYWE_HOME%\lib\downloads\get-pip.py" https://bootstrap.pypa.io/get-pip.py
rem use the cert flag
echo "%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get-pip.py" --cert %$caDirectory%
"%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get-pip.py" --cert %$caDirectory%
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\pip.exe" (
echo pip install failed
endlocal & exit /b 1
) ELSE (
echo pip installed
goto checkVirtualEnvOptions
)
)
goto checkVirtualEnvOptions
:pip
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\pip.exe" (
echo pip not found, installing pip
%PYWE_HOME%\lib\wget -N --output-document="%PYWE_HOME%\lib\downloads\get-pip.py" https://bootstrap.pypa.io/get-pip.py
rem no flags at all, this is the default and should work for most people
"%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get-pip.py"
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\pip.exe" (
echo pip install failed
endlocal & exit /b 1
) ELSE (
echo pip installed
goto checkVirtualEnvOptions
)
)
goto checkVirtualEnvOptions
:pipInsecure
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\pip.exe" (
echo pip not found, installing pip
%PYWE_HOME%\lib\wget --no-check-certificate -N --output-document="%PYWE_HOME%\lib\downloads\get-pip.py" https://bootstrap.pypa.io/get-pip.py
rem no flags at all, this is the default and should work for most people
"%PYWE_HOME%\versions\%$CURRENT_PY%\python.exe" "%PYWE_HOME%\lib\downloads\get-pip.py"
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\pip.exe" (
echo pip install failed
endlocal & exit /b 1
) ELSE (
echo pip installed
goto checkVirtualEnvOptions
)
)
goto checkVirtualEnvOptions
:virtualEnv
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\virtualenv.exe" (
echo virtualenv not installed, installing virtualenv
pip install virtualenv
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\virtualenv.exe" (
echo virtualenv install failed
endlocal & exit /b 1
) ELSE (
echo virtualenv installed
)
)
goto End
:virtualEnvWithCert
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\virtualenv.exe" (
echo virtualenv not installed, installing virtualenv
pip install virtualenv --cert %$caDirectory%
IF NOT EXIST "%PYWE_HOME%\versions\%$CURRENT_PY%\Scripts\virtualenv.exe" (
echo virtualenv install failed
endlocal & exit /b 1
) ELSE (
echo virtualenv installed
)
)
goto End
:End
ENDLOCAL
| monknomo/pywe | lib/get-venv-prereqs.bat | bat | mit | 6,488 |
@ECHO OFF
cls
ECHO -
copy Bin\Lusbapi.dll %SystemRoot%\system32\Lusbapi.dll
ECHO -
ECHO -
ECHO #####################################################################
ECHO S U C C E S S ! ! !
ECHO #####################################################################
ECHO -
| ifelsedeveloper/LCardAPINet | DLL/CopyLusbapi.bat | bat | mit | 297 |
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe "C:\Users\diphap\Source\Repos\jsnet\Diphap.JsNetBridge.Mvc\Diphap.JsNetBridge.Mvc.csproj" /t:Rebuild /p:Configuration=Release
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe "C:\Users\diphap\Source\Repos\jsnet\Diphap.JsNetBridge.Generator\Diphap.JsNetBridge.Generator.csproj" /t:Rebuild /p:Configuration=Release
xcopy "C:\Users\diphap\Source\Repos\jsnet\Diphap.JsNetBridge\Common\JS\Scripts\*.js" "C:\Users\diphap\Source\Repos\jsnet\NuGet.Packager\content\Scripts\Diphap.JsNetBridge" /Y | ceanota/jsnetbridge | NuGet.Packager/build.bat | bat | mit | 561 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=SandPaper
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| stephen-bunn/sandpaper | docs/make.bat | bat | mit | 811 |
@REM CREATE AND RUN THE DOCKER IMAGE SAMPLE
docker build . -f sample.dockerfile -t sample.merchant
docker run sample.merchant | mstama/Merchant | Merchant/sample.docker.bat | bat | mit | 125 |
@echo off
setlocal
SET SCRIPT_DIR="%~dp0"
pushd "%~dp0"
set XMS=-Xms64m
set XMX=-Xmx256m
call bin\classpath.cmd
set JAVA_ARGS=%XMX% %XMS% -cp %CP%
set ARGS=
:arg-loop
if "%1" == "" goto continue
set ARGS=%ARGS% %1
shift
goto arg-loop
:continue
popd
java -client %JAVA_ARGS% clojure.main --main zipcodedistance.core %ARGS%
:end
endlocal
| ekroon/zipcodedistance | dist/zipcodedistance.cmd | bat | epl-1.0 | 344 |
cmd_sound/pci/mixart/built-in.o := rm -f sound/pci/mixart/built-in.o; /home/pasquale/android/arm-2009q3/bin/arm-none-eabi-ar rcs sound/pci/mixart/built-in.o
| p500-ics-cm9/Franco-ICS-Kernel | sound/pci/mixart/.built-in.o.cmd | bat | gpl-2.0 | 158 |
>>> cur.execute('SELECT Region FROM PopByRegion')
<sqlite3.Cursor object at 0x102e3e490>
>>> cur.fetchall()
[('Central Africa',), ('Southeastern Africa',), ('Northern Africa',),
('Southern Asia',), ('Asia Pacific',), ('Middle East',), ('Eastern
Asia',), ('South America',), ('Eastern Europe',), ('North America',),
('Western Europe',), ('Japan',)]
>>> cur.execute('SELECT * FROM PopByRegion')
<sqlite3.Cursor object at 0x102e3e490>
>>> cur.fetchall()
[('Central Africa', 330993), ('Southeastern Africa', 743112),
('Northern Africa', 1037463), ('Southern Asia', 2051941), ('Asia
Pacific', 785468), ('Middle East', 687630), ('Eastern Asia', 1362955),
('South America', 593121), ('Eastern Europe', 223427), ('North America',
661157), ('Western Europe', 387933), ('Japan', 100562)]
| simontakite/sysadmin | pythonscripts/practicalprogramming/db/db_more_queries.cmd | bat | gpl-2.0 | 786 |
cmd_drivers/net/wireless/brcm80211/brcmfmac/brcmfmac.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/net/wireless/brcm80211/brcmfmac/brcmfmac.ko drivers/net/wireless/brcm80211/brcmfmac/brcmfmac.o drivers/net/wireless/brcm80211/brcmfmac/brcmfmac.mod.o
| avareldalton85/rpi2-linux-rt | drivers/net/wireless/brcm80211/brcmfmac/.brcmfmac.ko.cmd | bat | gpl-2.0 | 363 |
::
:: default Main class is the GUI
java -jar C:\Users\Chuck\java\sificoja\sifacoja-1.0.2-RELEASE.jar
| chuckrunge/sificoja | sificojaGUI.cmd | bat | gpl-2.0 | 102 |
:user_configuration
:: About AIR application packaging
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959
:: http://livedocs.adobe.com/flex/3/html/distributing_apps_4.html#1037515
:: NOTICE: all paths are relative to project root
:: Your certificate information
set CERT_NAME="MyoControllerDemo"
set CERT_PASS=fd
set CERT_FILE="bat\MyoControllerDemo.p12"
set SIGNING_OPTIONS=-storetype pkcs12 -keystore %CERT_FILE% -storepass %CERT_PASS%
:: Application descriptor
set APP_XML=application.xml
:: Files to package
set APP_DIR=bin
set FILE_OR_DIR=-C %APP_DIR% .
:: Your application ID (must match <id> of Application descriptor)
set APP_ID=MyoControllerDemo
:: Output
set AIR_PATH=air
set AIR_NAME=MyoControllerDemo
:validation
%SystemRoot%\System32\find /C "<id>%APP_ID%</id>" "%APP_XML%" > NUL
if errorlevel 1 goto badid
goto end
:badid
echo.
echo ERROR:
echo Application ID in 'bat\SetupApplication.bat' (APP_ID)
echo does NOT match Application descriptor '%APP_XML%' (id)
echo.
if %PAUSE_ERRORS%==1 pause
exit
:end | benkuper/Myo-AIR-AS3-Extension | as3_demo/bat/SetupApplication.bat | bat | gpl-2.0 | 1,072 |
@echo off
setlocal EnableDelayedExpansion
cd world
for /D %%d in (*) do (
if exist %DATE:~6,4%_%DATE:~3,2%_%DATE:~0,2%_%%d.sql del %DATE:~6,4%_%DATE:~3,2%_%DATE:~0,2%_%%d.sql
for %%a in (%%d\*.sql) do (
echo -- %%a >>%DATE:~6,4%_%DATE:~3,2%_%DATE:~0,2%_%%d.sql
copy/b %DATE:~6,4%_%DATE:~3,2%_%DATE:~0,2%_%%d.sql+"%%a" %DATE:~6,4%_%DATE:~3,2%_%DATE:~0,2%_%%d.sql
)
)
| Hlkz/Acore | sql/update/combine_tables.bat | bat | gpl-2.0 | 375 |
@echo off
if "%OW_HOME%" == "" set OW_HOME=%~dp0..
set BIN_DIR=%OW_HOME%\bin
set LIB_DIR=%OW_HOME%\lib
set TARGET_DIR=%OW_HOME%\target
set BUILD_DIR=%OW_HOME%\build
set CLASSPATH=%BUILD_DIR%;%TARGET_DIR%\overlayweaver.jar;%LIB_DIR%\commons-cli-1.2.jar;%LIB_DIR%\clink200.jar
set LOGGING_CONFIG="%BIN_DIR%\logging.properties"
java -Djava.util.logging.config.file=%LOGGING_CONFIG% ow.tool.mcastshell.Main %*
| ioniATX/DHT_oblivion | Blocs/IV_DHT_Block/Code/Overlay Weaver/overlayweaver/bin/owmcastshell.bat | bat | gpl-2.0 | 409 |
cmd_drivers/net/phy/libphy.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/net/phy/libphy.ko drivers/net/phy/libphy.o drivers/net/phy/libphy.mod.o
| avareldalton85/rpi2-linux-rt | drivers/net/phy/.libphy.ko.cmd | bat | gpl-2.0 | 259 |
ngrok -config ngrok.cfg -subdomain dreaminsun 8088 | DreamInSun/Horoshu | tools/natapp/run.bat | bat | gpl-2.0 | 51 |
cmd_drivers/mtd/devices/built-in.o := arm-eabi-ld -EL -r -o drivers/mtd/devices/built-in.o drivers/mtd/devices/m25p80.o
| Jason-Choi/EastSea-Kernel | drivers/mtd/devices/.built-in.o.cmd | bat | gpl-2.0 | 125 |
cmd_sound/drivers/vx/built-in.o := rm -f sound/drivers/vx/built-in.o; /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ar rcsD sound/drivers/vx/built-in.o
| friedrich420/Note-3-Kernel | sound/drivers/vx/.built-in.o.cmd | bat | gpl-2.0 | 163 |
cmd_modutils/modinfo.o := gcc -Wp,-MD,modutils/.modinfo.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.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -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 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(modinfo)" -D"KBUILD_MODNAME=KBUILD_STR(modinfo)" -c -o modutils/modinfo.o modutils/modinfo.c
deps_modutils/modinfo.o := \
modutils/modinfo.c \
$(wildcard include/config/modinfo.h) \
$(wildcard include/config/default/modules/dir.h) \
$(wildcard include/config/default/depmod/file.h) \
$(wildcard include/config/feature/clean/up.h) \
/usr/include/fnmatch.h \
/usr/include/x86_64-linux-gnu/sys/utsname.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/bits/predefs.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/utsname.h \
include/libbb.h \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/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/utmp.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/busybox/exec/path.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/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/feature/mtab/support.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/4.6.1/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \
/usr/include/limits.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/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \
/usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.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/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/uio.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/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/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/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.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.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/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/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/x86_64-linux-gnu/sys/resource.h \
/usr/include/x86_64-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
modutils/modutils.h \
$(wildcard include/config/feature/2/4/modules.h) \
$(wildcard include/config/feature/insmod/load/map.h) \
$(wildcard include/config/feature/insmod/try/mmap.h) \
modutils/modinfo.o: $(deps_modutils/modinfo.o)
$(deps_modutils/modinfo.o):
| muthumani2/Muthu-busybox | modutils/.modinfo.o.cmd | bat | gpl-2.0 | 9,906 |
gnatprove -P test.gpr
| ptroja/spark2014 | testsuite/gnatprove/tests/O630-003__initialize_scalars/test.cmd | bat | gpl-3.0 | 22 |
@echo off
title SisCfg Create
::==============================::
:: CONFIGURATION SETTINGS
::==============================::
set repositorylocale=E:\Programs\Supplimental\Git\Repositories\SisCfg
set compilerlocale=%repositorylocale%\Compile.exe
set sourcefilelocale=%repositorylocale%\Code\Linker.sp
set includeslocale=%repositorylocale%\Code\Includes
::==============================::
:: LOCATION CHECKING
::==============================::
if exist C:\Windows (goto CHECK_REPOSITORYLOCALE) else goto ERROR0
:CHECK_REPOSITORYLOCALE
if exist %repositorylocale% (goto CHECK_COMPILERLOCALE) else goto ERROR1
:CHECK_COMPILERLOCALE
if exist %compilerlocale% (goto CHECK_SOURCEFILELOCALE) else goto ERROR2
:CHECK_SOURCEFILELOCALE
if exist %sourcefilelocale% (goto CHECK_INCLUDESLOCALE) else goto ERROR3
:CHECK_INCLUDESLOCALE
if exist %includeslocale% (goto COMPILE) else goto ERROR4
::==============================::
:: FINAL COMPILE
::==============================::
:COMPILE
%compilerlocale% %sourcefilelocale% -i%includeslocale% -o%repositorylocale%\SisCfg.smx -E -;+
echo -----------------------------------------------------------
echo NOTE: Check the repository location for the compiled result.
echo -----------------------------------------------------------
pause
exit
::==============================::
:: POSSIBLE ERRORS
::==============================::
:ERROR0
echo This makefile is only useful for Windows users.
pause
exit
:ERROR1
echo The repository location is invalid.
pause
exit
:ERROR2
echo The compiler location is invalid.
pause
exit
:ERROR3
echo The source file location is invalid.
pause
exit
:ERROR3
echo The includes location is invalid.
pause
exit
| teigrgwyn/SisCfg | Makefile.bat | bat | gpl-3.0 | 1,694 |
@echo "install rimraf"
call npm install rimraf -g
@echo "Delete Node_Modules"
call rimraf node_modules
@echo "Delete typings"
call rimraf typings
@echo "install typings"
call tsd install
@echo "install gulp global scripts"
call npm install -g gulp
@echo "install tsd package manager"
call npm install tsd -g
@echo "compile everything"
call npm install
| tailangp/SportsMart | SportsMart.Web/Content/setup.cmd | bat | gpl-3.0 | 359 |
dd_single.py -f frequencies.dat -d data.dat -n 20^
-o results^
--tausel data_ext^
--nr_cores=1^
--norm 10^
--lambda 50
pause
| m-weigand/ccd_tools | Examples/ccd_single/06_no_plot/run_dd.bat | bat | gpl-3.0 | 151 |
ECHO OFF
REM DOWNLOAD WEKA FROM: http://www.cs.waikato.ac.nz/ml/weka/snapshots/developer-branch.zip
REM DOWNLOAD WEKA PACKAGES FROM: http://sourceforge.net/projects/weka/files/weka-packages/
%cd:~0,3%\dev\tools\ikvm\bin\ikvmc -debug -target:library^
-classloader:ikvm.runtime.ClassPathAssemblyClassLoader^
lib\weka\weka.jar lib\weka\packages\*.jar -out:lib\weka.dll
| PicNet/PicNetML | build_weka_dlls.bat | bat | gpl-3.0 | 378 |
@ECHO OFF
php "count" %* | zeusintuivo/laravel-intuivo-cli | count.bat | bat | mpl-2.0 | 25 |
if exist ..\..\win\dll\%1.dll goto ok
echo dll %1 does not exist
goto bad
:ok
copy ..\..\win\dll\anet2d.dll
copy ..\..\win\dll\anet2.dll
copy ..\..\win\dll\dkupddll.dll
copy ..\..\win\dll\dkupddlld.dll
dir ..\..\win\bin
copy ..\..\win\bin\anetdrop.exe
copy ..\..\win\bin\anetdropd.exe
mkdir anet
copy ..\..\win\dll\%1.dll anet
if %1==winets2 goto winets
if %1==winets2d goto winetsd
anetdrop -n:anet\%1.dll -h -x
goto end
:winets
anetdrop -n:anet\%1.dll -h -g:California6.activision.com
goto end
:winetsd
anetdropd -n:anet\%1.dll -h -x -g:California6.activision.com
goto end
:bad
:end | BygoneWorlds/anet | demo/chat/host2d.bat | bat | lgpl-2.1 | 590 |
@echo off
set BATCHDIR=%~dp0
if "%1"=="" (
echo t@CðwèµÄ¾³¢
pause
exit 0
)
set SCRIPT=%BATCHDIR%01.command_line.rb
ruby "%SCRIPT%" %*
pause
| bugoodby/bugoodbylib | script/rb/01.command_line.bat | bat | unlicense | 174 |
@echo off
..\node_modules\.bin\r.js.cmd -o build_minified.js baseUrl=..\src\ | kaveri2/MagicasterJS | scripts/minified.cmd | bat | apache-2.0 | 76 |
@echo off
echo 'Will decrease Major parts of version numbers in pom.xml files by 1'
::
:: get current_version in parent pom
::
:: set the working directory of a command in windows batch file
pushd ..\c2s-ui-api
:: get current version of the top level pom
:: call mvn help:evaluate -Dexpression=project.version
:: for /f %%i in ('"mvn help:evaluate -Dexpression=project.version | grep -v '\[.*'"') do set current_version=%%i
:: run the following line first to have downloading done before next line
call mvn help:evaluate -Dexpression=project.version
:: The following link couldn't excluding Downloading: line
for /f %%i in ('"mvn help:evaluate -Dexpression=project.version | grep -v '\[.*'"') do set current_version=%%i
echo current_version is %current_version%
::
:: split the maven version into major, minor and build number with qualifier
::
echo.-- split the maven version into major, minor and build number with qualifier, using dot as delimiter
for /f "tokens=1,2,3 delims=." %%a in ("%current_version%") do set major=%%a&set minor=%%b&set bq=%%c
echo.Major: %major%
echo.Minor: %minor%
echo.BuildNumberAndQualifier: %bq%
::
:: decrease the major version to get the new version
::
echo.-- decrease the major version to get the new version
set /a sum1=%major%-1
set new_major=%sum1%
echo new_major is %new_major%
set new_version=%new_major%.%minor%.%bq%
echo new_version is %new_version%
:: Sets the current projects version, updating the details of any child modules as necessary.
call mvn versions:set -DgenerateBackupPoms=false -DnewVersion=%new_version%
git commit -a -m "Decrease major parts of version numbers in pom.xml files by 1"
:: reset the working directory
popd
:end | bhits-dev/c2s-ui-api-test | tool-scripts/decreaseMajorVersionAndCommit.bat | bat | apache-2.0 | 1,700 |
main\core\startCluster0.bat %~1 | myshzzx/mlib | cluster/dist/startCluster.bat | bat | apache-2.0 | 31 |
java -jar moco-runner-0.9.2-standalone.jar start -p 9000 -c config.json
| qinyu/gdgcd-demo | moco/moco.bat | bat | apache-2.0 | 72 |
java -server -Xms1G -Xmx1G -cp ../lib/hazelcast-3.3.3.jar com.hazelcast.core.server.StartServer | SoCe/SoCe | Server/thirdparty/hazelcast/hazelcast-3.3.3/bin/customserver.bat | bat | apache-2.0 | 95 |
REM This is a Windows batch file for running coverage and generating a report
REM on the core OpenSauce code
coverage run --branch --source=opensauce --omit=opensauce\textgrid.py -m unittest test
coverage report -m
coverage html
| voicesauce/opensauce-python | run_coverage.bat | bat | apache-2.0 | 229 |
:: Copyright 2012 The Go Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style
:: license that can be found in the LICENSE file.
@echo off
:: Keep environment variables within this script
:: unless invoked with --no-local.
if x%1==x--no-local goto nolocal
if x%2==x--no-local goto nolocal
setlocal
:nolocal
set GOBUILDFAIL=0
:: we disallow local import for non-local packages, if %GOROOT% happens
:: to be under %GOPATH%, then some tests below will fail
set GOPATH=
rem TODO avoid rebuild if possible
if x%1==x--no-rebuild goto norebuild
echo # Building packages and commands.
go install -a -v std
if errorlevel 1 goto fail
echo.
:norebuild
:: we must unset GOROOT_FINAL before tests, because runtime/debug requires
:: correct access to source code, so if we have GOROOT_FINAL in effect,
:: at least runtime/debug test will fail.
set GOROOT_FINAL=
echo # Testing packages.
go test std -short -timeout=120s
if errorlevel 1 goto fail
echo.
echo # runtime -cpu=1,2,4
go test runtime -short -timeout=120s -cpu=1,2,4
if errorlevel 1 goto fail
echo.
echo # sync -cpu=10
go test sync -short -timeout=120s -cpu=10
if errorlevel 1 goto fail
echo.
echo # ..\misc\dashboard\builder ..\misc\goplay
go build ..\misc\dashboard\builder ..\misc\goplay
if errorlevel 1 goto fail
echo.
:: TODO(brainman): disabled, because it fails with: mkdir C:\Users\ADMINI~1\AppData\Local\Temp\2.....\test\bench\: The filename or extension is too long.
::echo # ..\test\bench\go1
::go test ..\test\bench\go1
::if errorlevel 1 goto fail
::echo.
:: TODO: The other tests in run.bash.
echo # test
cd ..\test
set FAIL=0
go run run.go
if errorlevel 1 set FAIL=1
cd ..\src
echo.
if %FAIL%==1 goto fail
echo # Checking API compatibility.
go tool api -c ..\api\go1.txt
if errorlevel 1 goto fail
echo.
echo ALL TESTS PASSED
goto end
:fail
set GOBUILDFAIL=1
:end
| oopos/go | src/run.bat | bat | bsd-3-clause | 1,869 |
@echo off
Echo This file will install HAPI
%0\..\hapint.exe -i -k C-C-T-K -p "hapint.exe" -q
| vmwaresamples/AirWatch-samples | Windows-Samples/Tools & Utilities/In-Place Upgrade Windows 7 to 10 for Dell Devices/Win10upgrade/DellCommandConfigure/X86/HAPI/HAPIInstall.bat | bat | bsd-3-clause | 93 |
@ECHO off
TITLE Buildbox Agent
REM If the token file already exists, we can skip the setup
IF EXIST token.txt (
GOTO :Start
)
:Setup
REM Ask the user to enter their agent token
ECHO Please enter your Buildbox agent registration token:
SET AGENT_TOKEN=
SET /p AGENT_TOKEN=
REM Validate that they've entered the token
IF "%AGENT_TOKEN%" == "" (
REM Lol, GOTO
GOTO :Prompt
)
REM Save the token to disk
ECHO.%AGENT_TOKEN%> token.txt
ECHO.
ECHO We've saved your agent token to the `token.txt` file in this folder, so next
ECHO time you start the agent, you won't need to enter it again.
ECHO.
ECHO If you'd like to change the token, you can just edit the `token.txt` file.
ECHO.
PAUSE
ECHO.
:Start
REM Read in the agent token
SET /p AGENT_TOKEN=<token.txt
REM Start the buildbox-agent
CALL buildbox-agent start --token "%AGENT_TOKEN%" --bootstrap-script bootstrap.bat --meta-data windows --debug
PAUSE
| joelmoss/agent | templates/start.bat | bat | mit | 909 |
cmd_arch/mips/pci/pci-dac.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,arch/mips/pci/.pci-dac.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(pci_dac)" -D"KBUILD_MODNAME=KBUILD_STR(pci_dac)" -c -o arch/mips/pci/pci-dac.o arch/mips/pci/pci-dac.c
deps_arch/mips/pci/pci-dac.o := \
arch/mips/pci/pci-dac.c \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/sgidefs.h \
include/asm/types.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/dma-mapping.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/numa.h) \
include/linux/ioport.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.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 \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mips64/r2.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm/cpu-features.h \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.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-generic/bitops/ext2-atomic.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/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/asm/atomic.h \
include/asm-generic/atomic.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/page/size/8kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.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/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/linux/kref.h \
include/linux/wait.h \
include/asm/current.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/module.h \
$(wildcard include/config/modules.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/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.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/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.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/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 \
include/asm-mips/mach-generic/topology.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/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-mips/mach-generic/timex.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/asm/module.h \
$(wildcard include/config/cpu/mips32/r2.h) \
$(wildcard include/config/cpu/mips64/r1.h) \
$(wildcard include/config/cpu/r6000.h) \
include/asm/uaccess.h \
include/asm-generic/uaccess.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/semaphore.h \
include/asm/device.h \
include/asm-generic/device.h \
include/linux/err.h \
include/asm/dma-mapping.h \
include/asm/scatterlist.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/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/pid.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 \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm/pgtable-32.h \
include/asm/fixmap.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.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/asm-mips/mach-generic/dma-coherence.h \
include/linux/pci.h \
$(wildcard include/config/pci/msi.h) \
$(wildcard include/config/pci.h) \
$(wildcard include/config/ht/irq.h) \
$(wildcard include/config/pci/domains.h) \
include/linux/pci_regs.h \
include/linux/mod_devicetable.h \
include/linux/pci_ids.h \
include/linux/dmapool.h \
include/asm/pci.h \
$(wildcard include/config/dma/need/pci/map/state.h) \
include/asm-generic/pci-dma-compat.h \
arch/mips/pci/pci-dac.o: $(deps_arch/mips/pci/pci-dac.o)
$(deps_arch/mips/pci/pci-dac.o):
| matteocrippa/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/arch/mips/pci/.pci-dac.o.cmd | bat | gpl-2.0 | 14,806 |
:: This file is part of HortonMachine (http://www.hortonmachine.org)
:: (C) HydroloGIS - www.hydrologis.com
::
:: HortonMachine is free software: you can redistribute it and/or modify
:: it under the terms of the GNU General Public License as published by
:: the Free Software Foundation, either version 3 of the License, or
:: (at your option) any later version.
::
:: This program is distributed in the hope that it will be useful,
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
:: GNU General Public License for more details.
::
:: You should have received a copy of the GNU General Public License
:: along with this program. If not, see <http://www.gnu.org/licenses/>.
setlocal
IF EXIST "%~dp0\jre\bin\java.exe" (
set JAVAEXE="%~dp0\jre\bin\java.exe"
) ELSE (
set JAVAEXE="java"
)
set MEM="-Xmx2g"
set PATH=%~dp0\natives\;%PATH%
"%JAVAEXE%" -splash:%~dp0\imgs\splash_sld.png %MEM% -Djava.util.logging.config.file=.\quiet-logging.properties -Djava.library.path=%~dp0\natives\ -cp ".\libs\*" org.hortonmachine.style.MainController %1
endlocal
| moovida/jgrasstools | extras/deploy/hm-sld.bat | bat | gpl-3.0 | 1,139 |
@echo off
echo deleting tempfiles
del *.obj
del *.il*
del *.~*
del *.tds
del version.res
del /y intermediate\*.*
echo ok.
| damianbrunold/dbweave | deltmp.bat | bat | gpl-3.0 | 131 |
set CLASSPATH=..\lib\derbytools-10.1.2.1.jar;..\..\lib\derby-10.1.2.1.jar
set URL=jdbc:derby:../../s2-dao/src/test/resources/data-derby;create=true;user=seasar
set CONNECTION=-Dij.connection.s2dao=%URL%
| azusa/hatunatu | derby/bin/setEmbeddedCP.bat | bat | apache-2.0 | 206 |
@ECHO OFF
:: This script converts SVG files to PNG. Run as admin
:: For Inkscape help, see http://inkscape.org/doc/inkscape-man.html
:: For an alternative to Inkscape that works just as well, see http://code.google.com/p/svg2emf/
:: :: --> TODO: Correct paths below (to your local configuration/setup)
SET converter=C:\{Install Location}\Inkscape\inkscape.com
SET source_folder=C:\{Github}\solutions-symbology-data\data\incident-symbols\svgs
SET destination_folder=C:\{Github}\solutions-symbology-data\data\incident-symbols\pngs
:: Use this option if you want to convert a folder and all subfolders (recursion) ...
for /r "%source_folder%" %%i in (*.svg) do "%converter%" "%%i" --export-width=64 --export-height=64 --export-png="%destination_folder%\%%~ni.png" | Esri/solutions-symbology-data | tools/SVGtoPNG.bat | bat | apache-2.0 | 765 |
@echo off
rem
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to you under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem
rem Ask the JMeter client to perform a ThreadDump
rem P1 = command port for JMeter instance (defaults to 4445)
java -cp %~dp0ApacheJMeter.jar org.apache.jmeter.util.ShutdownClient ThreadDump %*
pause
| benbenw/jmeter | bin/threaddump.cmd | bat | apache-2.0 | 1,030 |
for %%f in (*.png) DO ( convert "%%f" -strip -resize 32x32! "%%f" )
| GBT3101/StarcraftGeneticAlgorithm | ualbertabot/SparCraft/asset/images/command_icons/fix.bat | bat | mit | 68 |
@ECHO OFF
REM setting info box
@ECHO ############################################################################
@ECHO ## ##
@ECHO ## please install MS Visual Studio Express 2015 for Windows Desktop ##
@ECHO ## http://www.microsoft.com/en-us/download/... ##
@ECHO ## ##
@ECHO ############################################################################
@ECHO.
REM setting PHP version
SET PHPVERSION=7.0.17
SET PHPMAJOR=%PHPVERSION:~0,3%
REM setting full path of current directory to %DIR&
SET DIR=%~dp0
SET DIR=%Dir:~0,-1%
REM check for .\downloads directory
IF NOT EXIST "%DIR%\downloads" (
@ECHO.
@ECHO creating .\downloads directory
MD %DIR%\downloads
)
REM adding current directory and ./downloads to path
SET PATH=%PATH%;%DIR%;%DIR%\downloads;%DIR%\bin;
REM -----------------------------------------------------------
REM --- CHECK EXTENSIONS TO BUILD
REM -----------------------------------------------------------
@ECHO.
SET /P BUILDEXT_EXCEL=Do you want to build the excel extension? [y/n]
@ECHO.
SET /P BUILDEXT_LZ4=Do you want to build the lz4 extension? [y/n]
REM @ECHO.
REM SET /P BUILDEXT_TWIG=Do you want to build the twig extension? [y/n]
REM -----------------------------------------------------------
REM --- TOOLS CHECK
REM -----------------------------------------------------------
REM check for wget availability
wget >nul 2>&1
IF %ERRORLEVEL%==9009 (
REM since wget is not available look if PHP is available and try to download wget from web with PHP
php -v >nul 2>&1
IF NOT %ERRORLEVEL%==9009 (
REM download wget with php
@ECHO.
@ECHO loading wget...
php -r "file_put_contents('%DIR%\downloads\wget.exe',file_get_contents('https://eternallybored.org/misc/wget/current/wget.exe'));"
)
REM if wget download with PHP failed try to download with bitsadmin.exe
IF NOT EXIST "%DIR%\downloads\wget.exe" (
REM checking for bitsadmin.exe to download wget.exe from web source
IF NOT EXIST "%SYSTEMROOT%\System32\bitsadmin.exe" (
@ECHO.
@ECHO wget.exe not available
@ECHO failed to download wget.exe automatically
@ECHO please download wget from https://eternallybored.org/misc/wget/current/wget.exe
@ECHO manually and put the wget.exe file in .\downloads folder
@ECHO it is also available from the php-sdk-binary-tools zip archive
PAUSE
EXIT
)
REM bitsadmin.exe is available but wget.exe is not - so download it from web
@ECHO.
@ECHO loading wget for Windows from...
@ECHO https://eternallybored.org/misc/wget/current/wget.exe
bitsadmin.exe /transfer "WgetDownload" "https://eternallybored.org/misc/wget/current/wget.exe" "%DIR%\downloads\wget.exe"
)
REM if download of wget failed stop script
IF NOT EXIST "%DIR%\downloads\wget.exe" (
@ECHO.
@ECHO loading wget failed. Please re-run script or
@ECHO install .\downloads\wget.exe manually
PAUSE
EXIT
)
)
REM check for 7-zip cli tool
7za >nul 2>&1
IF %ERRORLEVEL%==9009 (
@ECHO.
@ECHO loading 7-zip cli tool from web...
wget http://downloads.sourceforge.net/sevenzip/7za920.zip -O %DIR%\downloads\7za920.zip -N
REM if wget download of 7za failed stop script
IF NOT EXIST "%DIR%\downloads\7za920.zip" (
@ECHO.
@ECHO failed to download 7za920.zip - please re-run this script
PAUSE
EXIT
)
REM if php is available try unpacking 7za with php
php -v >nul 2>&1
IF NOT %ERRORLEVEL%==9009 (
@ECHO.
@ECHO unpacking 7za.exe...
php -r "file_put_contents('%DIR%\downloads\7za.exe',file_get_contents('zip://%DIR%/downloads/7za920.zip#7za.exe'));"
)
REM if unpacking 7za with PHP failed try to unpacking with unzip
IF NOT EXIST "%DIR%\downloads\7za.exe" (
REM check if unzip.exe is available to unpack 7-zip
unzip >nul 2>&1
IF %ERRORLEVEL%==9009 (
REM check for unzip tool in Git\bin
IF EXIST "%PROGRAMFILES(X86)%\Git\bin\unzip.exe" (
@ECHO.
@ECHO copying unzip.exe from Git...
COPY "%PROGRAMFILES(X86)%\Git\bin\unzip.exe" "%DIR%\downloads\"
)
IF NOT EXIST "%DIR%\downloads\unzip.exe" (
@ECHO.
@ECHO please unpack .\downloads\7za920.zip manually and re-run this file
PAUSE
EXIT
)
)
REM unpacking 7za920.zip
@ECHO.
@ECHO unpacking 7-zip cli tool...
CD %DIR%\downloads
unzip -C 7za920.zip 7za.exe
CD %DIR%
)
)
7za >nul 2>&1
IF %ERRORLEVEL%==9009 (
@ECHO.
@ECHO 7za.exe not found - please re-run this script
PAUSE
EXIT
)
REM -----------------------------------------------------------
REM --- PHP SDK PREPARATION
REM -----------------------------------------------------------
IF NOT EXIST "%DIR%\downloads\php-sdk-binary-tools-20110915.zip" (
@ECHO.
@ECHO loading php-sdk-binary tools...
wget http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip -O %DIR%\downloads\php-sdk-binary-tools-20110915.zip -N
)
IF NOT EXIST "%DIR%\downloads\php-sdk-binary-tools-20110915.zip" (
@ECHO.
@ECHO php-sdk-binary tools zip file not found in .\downloads please re-run this script
PAUSE
EXIT
)
@ECHO.
@ECHO unpacking php-sdk-binary tools...
7za x %DIR%\downloads\php-sdk-binary-tools-20110915.zip -o%DIR% -y
@ECHO.
@ECHO building directory structure...
MD phpdev
CD phpdev
MD vc14
CD vc14
MD x86
CD x86
MD obj_7.0.17
IF NOT EXIST "%DIR%\downloads\deps-7.0-vc14-x86.7z" (
@ECHO.
@ECHO loading php dependencies...
wget http://windows.php.net/downloads/php-sdk/deps-7.0-vc14-x86.7z -O %DIR%\downloads\deps-7.0-vc14-x86.7z -N
)
IF NOT EXIST "%DIR%\downloads\deps-7.0-vc14-x86.7z" (
@ECHO.
@ECHO php dependencies not found in .\downloads please re-run this script
PAUSE
EXIT
)
@ECHO.
@ECHO unpacking php dependencies...
7za x %DIR%\downloads\deps-7.0-vc14-x86.7z -o%DIR%\phpdev\vc14\x86 -y
IF NOT EXIST "%SystemRoot%\System32\vcruntime140.dll" (
@ECHO.
@ECHO MS visual c redistributable dll not found in system path
@ECHO possible problem for compiling
@ECHO grab an up-2-date version of vcruntime140.dll from MS
@ECHO http://www.microsoft.com/en-us/download/details.aspx?id=30679
PAUSE
)
IF EXIST "%SystemRoot%\System32\vcruntime140.dll" (
@ECHO.
@ECHO copying ms visual c redistributable dll from system path...
COPY "%SystemRoot%\System32\vcruntime140.dll" "%DIR%\phpdev\vc14\x86\deps\bin\"
)
IF NOT EXIST "%SystemRoot%\System32\vcruntime140d.dll" (
@ECHO.
@ECHO MS visual c redistributable dll not found in system path
@ECHO possible problem for compiling
@ECHO grab an up-2-date version of vcruntime140d.dll from MS
@ECHO http://www.microsoft.com/en-us/download/details.aspx?id=30679
PAUSE
)
IF EXIST "%SystemRoot%\System32\vcruntime140d.dll" (
@ECHO.
@ECHO copying ms visual c redistributable dll from system path...
COPY "%SystemRoot%\System32\vcruntime140d.dll" "%DIR%\phpdev\vc14\x86\deps\bin\"
)
IF NOT EXIST "%DIR%\downloads\php-7.0.17.tar.bz2" (
@ECHO.
@ECHO loading php source code...
REM wget http://de1.php.net/get/php-7.0.17.tar.bz2/from/this/mirror -O %DIR%\downloads\php-7.0.17.tar.bz2 -N
REM wget https://downloads.php.net/~ab/php-7.0.17.tar.bz2 -O %DIR%\downloads\php-7.0.17.tar.bz2 -N --no-check-certificate
wget http://de1.php.net/get/php-7.0.17.tar.bz2/from/this/mirror -O %DIR%\downloads\php-7.0.17.tar.bz2 -N --no-check-certificate
)
IF NOT EXIST "%DIR%\downloads\php-7.0.17.tar.bz2" (
@ECHO.
@ECHO php source code not found in .\downloads please re-run this script
PAUSE
EXIT
)
IF NOT EXIST "%DIR%\downloads\php-7.0.17.tar" (
7za x %DIR%\downloads\php-7.0.17.tar.bz2 -o%DIR%\downloads -y
)
IF NOT EXIST "%DIR%\downloads\php-7.0.17.tar" (
@ECHO.
@ECHO php source code not found in .\downloads please re-run this script
PAUSE
EXIT
)
@ECHO.
@ECHO unpacking php source code...
7za x %DIR%\downloads\php-7.0.17.tar -o%DIR%\phpdev\vc14\x86 -y
@REM rename 7.0.17 to 7.0.17
@REM MOVE %DIR%\phpdev\vc14\x86\php-7.0.17 %DIR%\phpdev\vc14\x86\php-7.0.17
REM @ECHO cloning php-src repository from github...
REM CD %DIR%\phpdev\vc14\x86
REM git clone --branch=master --depth=1 https://github.com/php/php-src.git php-7.0.17
CD %DIR%
REM SET CFLAGS=--disable-all --enable-cli --enable-snapshot-build --enable-debug --enable-object-out-dir=../obj_7.0.17/ --disable-isapi --disable-nsapi
SET CFLAGS=--disable-all --enable-cli --enable-snapshot-build --enable-object-out-dir=../obj_7.0.17/
REM -----------------------------------------------------------
REM --- PHP_EXCEL / LIBXL EXTENSION
REM -----------------------------------------------------------
IF /I %BUILDEXT_EXCEL%==Y (
call %DIR%\ext\php_excel_7.0.x_x86.bat
REM SET CFLAGS=%CFLAGS% --with-excel=shared --with-xml --with-libxml --with-iconv
SET CFLAGS=%CFLAGS% --with-excel=shared
)
REM -----------------------------------------------------------
REM --- LZ4 EXTENSION
REM -----------------------------------------------------------
IF /I %BUILDEXT_LZ4%==Y (
call %DIR%\ext\php_lz4_7.0.x_x86.bat
SET CFLAGS=%CFLAGS% --enable-lz4=shared
)
REM -----------------------------------------------------------
REM --- TWIG EXTENSION
REM -----------------------------------------------------------
REM IF /I %BUILDEXT_TWIG%==Y (
REM call %DIR%\ext\php_twig_7.0.x_x86.bat
REM SET CFLAGS=%CFLAGS% --enable-twig=shared
REM )
REM -----------------------------------------------------------
REM --- BUILDING COMPILE.BAT files
REM -----------------------------------------------------------
CD %DIR%
@ECHO @ECHO OFF> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO ####################################################>> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO ## Attention ##>> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO ## please call this batch file with ##>> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO ## Visual Studio 2015 Native Tools Command Prompt ##>> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO ## the standard Windows CLI will not work ##>> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO ####################################################>> compile-php-7.0.17-nts-x32.bat
@ECHO.>>compile-php-7.0.17-nts-x32.bat
@ECHO PAUSE>> compile-php-7.0.17-nts-x32.bat
@ECHO call .\bin\phpsdk_setvars.bat>> compile-php-7.0.17-nts-x32.bat
@ECHO CD .\phpdev\vc14\x86\php-7.0.17>> compile-php-7.0.17-nts-x32.bat
@ECHO nmake clean>> compile-php-7.0.17-nts-x32.bat
@ECHO call buildconf.bat --force>> compile-php-7.0.17-nts-x32.bat
@ECHO call configure %CFLAGS% --disable-zts>> compile-php-7.0.17-nts-x32.bat
@ECHO nmake snap /I>> compile-php-7.0.17-nts-x32.bat
@ECHO CD .\..\..\..\..\>> compile-php-7.0.17-nts-x32.bat
@ECHO PAUSE>> compile-php-7.0.17-nts-x32.bat
@ECHO @ECHO OFF> compile-php-7.0.17-ts-x32.bat
@ECHO @ECHO ####################################################>> compile-php-7.0.17-ts-x32.bat
@ECHO @ECHO ## Attention ##>> compile-php-7.0.17-ts-x32.bat
@ECHO @ECHO ## please call this batch file with ##>> compile-php-7.0.17-ts-x32.bat
@ECHO @ECHO ## Visual Studio 2015 Native Tools Command Prompt ##>> compile-php-7.0.17-ts-x32.bat
@ECHO @ECHO ## the standard Windows CLI will not work ##>> compile-php-7.0.17-ts-x32.bat
@ECHO @ECHO ####################################################>> compile-php-7.0.17-ts-x32.bat
@ECHO.>>compile-php-7.0.17-ts-x32.bat
@ECHO PAUSE>> compile-php-7.0.17-ts-x32.bat
@ECHO call .\bin\phpsdk_setvars.bat>> compile-php-7.0.17-ts-x32.bat
@ECHO CD .\phpdev\vc14\x86\php-7.0.17>> compile-php-7.0.17-ts-x32.bat
@ECHO nmake clean>> compile-php-7.0.17-ts-x32.bat
@ECHO call buildconf.bat --force>> compile-php-7.0.17-ts-x32.bat
@ECHO call configure %CFLAGS%>> compile-php-7.0.17-ts-x32.bat
@ECHO nmake snap /I>> compile-php-7.0.17-ts-x32.bat
@ECHO CD .\..\..\..\..\>> compile-php-7.0.17-ts-x32.bat
@ECHO PAUSE>> compile-php-7.0.17-ts-x32.bat
PAUSE | johmue/win-php-sdk-builder | build-php-7.0.x-win32-sdk.bat | bat | mit | 12,492 |
rem == Enter SteamCMD ===
c:
cd \steamcmd
rem == Update Server ===
steamcmd +runscript scripts\hl2dm_ds.txt
rem == Run Server ===
C:\steamcmd\hl2dm_ds\srcds -console -fork -usercon -game hl2mp +map dm_overwatch +maxplayers 24 +sv_lan 1 +rcon_password qj123 | beforan/quakejon-dedicated-servers | legacy batch files/HL2DM.bat | bat | mit | 259 |
@REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
@setlocal EnableExtensions EnableDelayedExpansion
@setlocal
@echo off
set current-path=%~dp0
rem // remove trailing slash
set current-path=%current-path:~0,-1%
set build-root=%current-path%\..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM check that we have java handy
call :checkExists java
if not !ERRORLEVEL!==0 exit /b !ERRORLEVEL!
REM check that jenkins-cli.jar is in the repository's tools folder
if not exist %build-root%\tools\jenkins-cli.jar (
echo jenkins-cli does not exist
echo Downloading from repository:
echo http://azure-iot-sdks-ci.westus.cloudapp.azure.com:8080/jnlpJars/jenkins-cli.jar
powershell -Command "Invoke-WebRequest http://azure-iot-sdks-ci.westus.cloudapp.azure.com:8080/jnlpJars/jenkins-cli.jar -OutFile %build-root%\tools\jenkins-cli.jar"
if not !ERRORLEVEL!==0 (
echo Failed downloading jenkins-cli.jar
echo Use the following link to manually download it into the tools folder of your repository:
echo http://azure-iot-sdks-ci.westus.cloudapp.azure.com:8080/jnlpJars/jenkins-cli.jar
exit /b 1
)
)
REM find current branch
for /f "usebackq tokens=*" %%i in (`git symbolic-ref -q HEAD`) do set "current_branch_ref=%%i"
if defined current_branch_ref set "current_branch=%current_branch_ref:refs/heads/=%"
REM handle detached HEAD
if not defined current_branch (
echo You're not on any branch! Aborting...
goto :eof
)
REM Must be on a topic branch when running this script
if "%current_branch%"=="master" (
echo You cannot call this script from 'master'. Change to a topic branch first. Aborting...
goto :eof
)
REM find tracking branch
for /f "usebackq tokens=*" %%i in (`git rev-parse --symbolic-full-name --abbrev-ref @{u}`) do set "tracking_branch=%%i"
if not defined tracking_branch (
echo Branch ^'%current_branch%^' is not tracking a remote branch! First try ^'git branch -u ^<remote^>/^<branch^>^' to set tracking info. Aborting...
goto :eof
)
for /f "usebackq tokens=*" %%i in (`git config branch.%current_branch%.remote`) do set "remote=%%i"
if not defined remote (
REM should never happen...
echo Cannot isolate remote name for tracking branch ^'%tracking_branch%^'! Aborting...
goto :eof
)
REM get the tracking branch name only e.g., origin/topic -> topic
for /f "usebackq tokens=*" %%i in (`call echo %%tracking_branch:%remote%/^=%%`) do set "tracking_name=%%i"
REM find repo url
for /f "usebackq tokens=*" %%i in (`git ls-remote --heads --get-url %remote%`) do set "repo_url=%%i"
if not defined repo_url (
echo Cannot find the remote repository URL! Aborting...
goto :eof
)
echo ****************************************************************
echo commit_id: %current_branch%
echo repo_url: %repo_url%
echo remote: %remote%
echo trackingN: %tracking_name%
echo ****************************************************************
REM kick off the build!
java -jar "%build-root%"\tools\jenkins-cli.jar -s http://azure-iot-sdks-ci.westus.cloudapp.azure.com:8080/ build _integrate-into-develop -p COMMIT_ID=%tracking_name% -p AZURE_REPO=%repo_url% -p BRANCH_TO_MERGE_TO=master -s -v
rem -----------------------------------------------------------------------------
rem -- done
rem -----------------------------------------------------------------------------
goto :eof
rem -----------------------------------------------------------------------------
rem -- helper subroutines
rem -----------------------------------------------------------------------------
:checkExists
where %~1 >nul 2>nul
if not !ERRORLEVEL!==0 (
echo "%~1" not found. Please make sure that "%~1" is installed and available in the path.
exit /b !ERRORLEVEL!
)
goto :eof
| tkopacz/2017IotHubGatewaySDK | Demo_SRC/tools/kick_jenkins.cmd | bat | mit | 3,922 |
@echo off
echo call mvn mvngen:directories
call mvn mvngen:directories
pause
| Remigius2011/webapp-hello-java | generate-directories.bat | bat | mit | 79 |
@echo off
set zipcmd=%~dp0\tools\7z\7z.exe
pushd %~dp0\..\..
%zipcmd% a -r -x!scripts -xr!.* -x!__pycache__ blenderseed-x.x.x-yyyy.zip blenderseed
popd
move ..\..\blenderseed-x.x.x-yyyy.zip .
pause
| jasperges/blenderseed | scripts/make-package.bat | bat | mit | 202 |
ArmyOfCreatures.exe < test.000.002.in.txt > test.000.out.Yavor.txt
p4merge test.000.002.out.txt test.000.out.Yavor.txt | ykomitov/Homeworks-TA | 03.OOP/99.OOP_Exam/2. Army of Creatures_Description/test.bat | bat | mit | 119 |
SET MAKEMKV_TITLE=1
CALL "%~dp0.\makemkv.extract-title.cmd" %* | jakegough/AVScripts | makemkv/makemkv.extract-title-1.cmd | bat | mit | 63 |
for /r %%g in (*.hdr) do gdal_translate -ot Float32 -of PCRaster -mo PCRASTER_VALUESCALE=VS_SCALAR "%%g" "%%~dpng.map"
rem You can use the -projwin argument to clip the result to the area in question. For Colorado, -projwin -110 41 -102 37
| thurs/alptruth-geo | scripts/convert_snodas_data.bat | bat | mit | 241 |
@echo off
setlocal
if ""%1""=="""" goto es
set GRM=%1
goto run
:es
set GRM=es4.g
:run
lpg.exe -include-directory=. %GRM%
rem if errorlevel 1 goto error
rem copy /Y es4*.h ..\src\
rem copy /Y es4*.cpp ..\src\
:done
endlocal
| spket/esc | grammars/lpg.cmd | bat | mit | 229 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.