code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
SET cmd=%1 SET app_name=%2 SET build_dir=%~f3 SET build_type=%4 SET webstudio_url=%5 SET bin_dir=%~dp0 IF "%app_name%" EQU "" ( CALL %bin_dir%\echoc.exe 4 please specify app_name GOTO error ) IF NOT EXIST "%bin_dir%\publish.%app_name%.cmd" ( CALL %bin_dir%\echoc.exe 4 please create '%bin_dir%\publish.%app_name%.cmd' before publish GOTO error ) IF NOT EXIST "%build_dir%" ( CALL %bin_dir%\echoc.exe 4 build dir '%build_dir%' is not specified or does not exist GOTO error ) SET bt_valid=0 IF "%build_type%" EQU "Debug" SET bt_valid=1 IF "%build_type%" EQU "debug" SET bt_valid=1 IF "%build_type%" EQU "Release" SET bt_valid=1 IF "%build_type%" EQU "release" SET bt_valid=1 IF "%build_type%" EQU "RelWithDebInfo" SET bt_valid=1 IF "%build_type%" EQU "relwithdebinfo" SET bt_valid=1 IF "%build_type%" EQU "MinSizeRel" SET bt_valid=1 IF "%build_type%" EQU "minsizerel" SET bt_valid=1 IF "%bt_valid%" EQU "0" ( CALL %bin_dir%\echoc.exe 4 invalid build_type '%build_type%' GOTO error ) COPY /Y %build_dir%\bin\%build_type%\dsn.core.pdb .\skv\%app% CALL %bin_dir%\publish.%app_name%.cmd %cmd% %build_dir% %build_type% %webstudio_url% GOTO exit :error CALL %bin_dir%\echoc.exe 4 "Usage: run.cmd publish|republish app_name build_dir build_type(Debug|Release|RelWithDebInfo|MinSizeRel) [webstudio_package_url]" :exit
glglwty/rDSN
scripts/windows/publish.cmd
bat
mit
1,363
@ECHO OFF GOTO START ****************************************************************************** * * File: MakeMovie.bat * * Parameters: 4 (3 optional) * %1: Movie file to be converted * %2: Size * %3: Quality * %4: Framerate * * Requirement: The free available tool FFmpeg is required for the conversion * operation. FFmpeg is available under the following link: * * http://www.ffmpeg.org/ * * Please note that Prep.bat needs to be adapted before using * MakeMovie.bat. * * This file (MakeMovie.bat) normally do not need to be modified. * * Purpose: This batch file converts a video file to an (E)mWin (M)ovie (F)ile. * It first uses FFmpeg for converting the given movie into single * JPEG files. After that the emWin tool JPEG2Movie is used to * convert these images into an emWin movie file. * * For details about all supported file types and the parameters * resolution, quality and frame rate please refer to the FFmpeg * documentation. * * Output: A copy of the converted file will be copied into the folder of * the source file. The file name will be the same as the source file * with a size postfix and the extension '.emf' (emWin movie file). * ****************************************************************************** :START CALL %~dp0PREP.BAT IF "%2" == "" GOTO CONT2 SET SIZE=%2 GOTO NEXT2 :CONT2 SET SIZE=%DEFAULT_SIZE% :NEXT2 IF "%3" == "" GOTO CONT3 SET QUALITY=%3 GOTO NEXT3 :CONT3 SET QUALITY=%DEFAULT_QUALITY% :NEXT3 IF "%4" == "" GOTO CONT4 SET FRAMERATE=%4 GOTO NEXT4 :CONT4 SET FRAMERATE=%DEFAULT_FRAMERATE% :NEXT4 DEL /Q "%OUTPUT%*.*" "%FFMPEG%" -y -i %1 -r %FRAMERATE% -q %QUALITY% -s %SIZE% -f image2 -pix_fmt yuvj420p "%OUTPUT%img-%%05d.jpeg" "%JPEG2MOVIE%" "%OUTPUT%" IF ERRORLEVEL 1 GOTO ERROR GOTO NOERROR :ERROR ECHO Error using JPEG2Movie! PAUSE :NOERROR COPY /B %OUTPUT%*.emf %~dp1%~n1_%SIZE%.emf SET SIZE= SET QUALITY= SET FRAMERATE= SET FOLDER= SET FFMPEG= SET JPEG2MOVIE=
JiabinDainel/Master-design
emWin Simulator/Sample/JPEG2Movie/MakeMovie.bat
bat
gpl-3.0
2,164
setlocal set NATIVE_PROPERTIES_PATH=%1 set FIRST_ARG=%2 set SECOND_ARG=%3 set PURE_FIRST_ARG=%2 :: for compatibility if "%FIRST_ARG%"=="""" ( set FIRST_ARG= ) if "%SECOND_ARG%"=="""" ( set SECOND_ARG= ) if "%PURE_FIRST_ARG%"=="""" ( set PURE_FIRST_ARG= ) if "%FIRST_ARG%"=="0" ( set FIRST_ARG=replace-schema ) else if "%FIRST_ARG%"=="1" ( set FIRST_ARG=renewal ) else if "%FIRST_ARG%"=="2" ( set FIRST_ARG=regenerate ) else if "%FIRST_ARG%"=="4" ( set FIRST_ARG=load-data-reverse ) else if "%FIRST_ARG%"=="5" ( set FIRST_ARG=schema-sync-check ) else if "%FIRST_ARG%"=="7" ( set FIRST_ARG=save-previous ) else if "%FIRST_ARG%"=="8" ( set FIRST_ARG=alter-check ) else if "%FIRST_ARG%"=="11" ( set FIRST_ARG=refresh ) else if "%FIRST_ARG%"=="12" ( set FIRST_ARG=freegen ) else if "%FIRST_ARG%"=="13" ( set FIRST_ARG=take-assert ) else if "%FIRST_ARG%"=="21" ( set FIRST_ARG=jdbc ) else if "%FIRST_ARG%"=="22" ( set FIRST_ARG=doc ) else if "%FIRST_ARG%"=="23" ( set FIRST_ARG=generate ) else if "%FIRST_ARG%"=="24" ( set FIRST_ARG=sql2entity ) else if "%FIRST_ARG%"=="25" ( set FIRST_ARG=outside-sql-test ) else if "%FIRST_ARG%"=="31" ( set FIRST_ARG=sai ) else if "%FIRST_ARG%"=="88" ( set FIRST_ARG=intro ) else if "%FIRST_ARG%"=="94" ( set FIRST_ARG=upgrade ) else if "%FIRST_ARG%"=="97" ( set FIRST_ARG=help ) if "%FIRST_ARG%"=="replace-schema" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the ReplaceSchema task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-replace-schema.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="renewal" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the Renewal task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-renewal.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="regenerate" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the Regenerate task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-regenerate.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="load-data-reverse" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the LoadDataReverse task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-doc.cmd %NATIVE_PROPERTIES_PATH% load-data-reverse %SECOND_ARG% ) else if "%FIRST_ARG%"=="schema-sync-check" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the SchemaSyncCheck task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-doc.cmd %NATIVE_PROPERTIES_PATH% schema-sync-check %SECOND_ARG% ) else if "%FIRST_ARG%"=="alter-check" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the AlterCheck task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-replace-schema.cmd %NATIVE_PROPERTIES_PATH% alter-check %SECOND_ARG% ) else if "%FIRST_ARG%"=="save-previous" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the SavePrevious task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-replace-schema.cmd %NATIVE_PROPERTIES_PATH% save-previous %SECOND_ARG% ) else if "%FIRST_ARG%"=="refresh" ( if "%PURE_FIRST_ARG%"=="" echo (input on your console^) if "%PURE_FIRST_ARG%"=="" echo What is refresh project? (name^): if "%PURE_FIRST_ARG%"=="" set /p SECOND_ARG= echo /nnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the Refresh task echo nnnnnnnnnn/ setlocal enabledelayedexpansion call %DBFLUTE_HOME%\etc\cmd\_df-refresh.cmd %NATIVE_PROPERTIES_PATH% !SECOND_ARG! endlocal ) else if "%FIRST_ARG%"=="freegen" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the FreeGen task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-freegen.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="take-assert" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the TakeAssert task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-take-assert.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="jdbc" ( echo /nnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the JDBC task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-jdbc.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="doc" ( echo /nnnnnnnnnnnnnnnnnnnnnn echo ...Calling the Doc task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-doc.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="generate" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the Generate task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-generate.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="sql2entity" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the Sql2Entity task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-sql2entity.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="outside-sql-test" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the OutsideSqlTest task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-outside-sql-test.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="sai" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the sai Download task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-sai-download.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="intro" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the DBFluteIntro task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-intro.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="upgrade" ( echo /nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn echo ...Calling the DBFlute Upgrade task echo nnnnnnnnnn/ call %DBFLUTE_HOME%\etc\cmd\_df-upgrade.cmd %NATIVE_PROPERTIES_PATH% %SECOND_ARG% ) else if "%FIRST_ARG%"=="help" ( echo [DB Task] =^> after changing database, with replacing your database echo 0 : replace-schema =^> drop tables and re-create schema (needs settings^) echo 1 : renewal =^> replace-schema and generate all (call 0-^>21-^>22-^>23-^>25-^>24^) echo 4 : load-data-reverse =^> reverse data to excel for e.g. ReplaceSchema echo 5 : schema-sync-check =^> check difference between two schemas echo 7 : save-previous =^> save previous DDLs for AlterCheck echo 8 : alter-check =^> check alter DDLs with previous and next DDLs echo 13 : take-assert =^> execute assertion SQL of TakeFinally echo: echo [Generate Task] =^> generate class files and documents by schema meta data echo 2 : regenerate =^> generate all (call 21-^>22-^>23-^>24-^>25^) echo 21 : jdbc =^> get meta data from schema (before doc and generate^) echo 22 : doc =^> generate documents e.g. SchemaHTML, HistoryHTML echo 23 : generate =^> generate class files for tables echo 24 : sql2entity =^> generate class files for OutsideSql echo 25 : outside-sql-test =^> check OutsideSql (execute SQLs, expect no error^) echo: echo [Utility Task] echo 12 : freegen =^> generate something by free template echo 88 : intro =^> boot DBFluteIntro that provides GUI control echo: echo [Environment Task] echo 11 : refresh =^> request refresh (F5^) to IDE e.g. Eclipse echo 31 : sai =^> download sai libraries to extlib for JavaScript echo 94 : upgrade =^> upgrade DBFlute module to new version (except runtime^) echo 97 : help =^> show description of tasks )
lastaflute/lastaflute-example-waterfront
mydbflute/dbflute-1.x/etc/cmd/_df-managedo.cmd
bat
apache-2.0
7,533
%SystemDrive%\cygwin\bin\which.exe bash if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% cmd /c set GeneratorDirectory=%CONFIGURATIONBUILDDIR%/obj32/WebKitExportGenerator echo Generating export definitions del /F /Q "%GeneratorDirectory%/DerivedSources/WebKitExportGenerator.cpp" bash -c "./make-export-file-generator ./WebKitExports.def.in '%GeneratorDirectory%/DerivedSources/WebKitExportGenerator.cpp'"
CodeDJ/qt5-hidpi
qt/qtwebkit/Source/WebKit/WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorBuildCmd.cmd
bat
lgpl-2.1
416
@echo // Copyright (C) 1996-2014 Markus F.X.J. Oberhumer @echo // @echo // DOS 32-bit @echo // Watcom C/C++ (using DOS/4G extender) @echo // @call b\prepare.bat @if "%BECHO%"=="n" echo off set CC=wcl386 -zq -mf -5r -bt#dos -l#dos4g set CF=-ox -zc %CFI% %CFASM% set LF=%BLIB% %CC% %CF% -c src\*.c @if errorlevel 1 goto error wlib -q -b -n -t %BLIB% @b\win32\wc.rsp @if errorlevel 1 goto error %CC% %CF% examples\dict.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\lzopack.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\precomp.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\precomp2.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\simple.c %LF% @if errorlevel 1 goto error %CC% %CF% lzotest\lzotest.c %LF% @if errorlevel 1 goto error @call b\done.bat @goto end :error @echo ERROR during build! :end @call b\unset.bat
unix1986/universe
thirdparty/lzo-2.08/B/dos32/wc.bat
bat
bsd-2-clause
893
@echo off SETLOCAL enabledelayedexpansion IF DEFINED JAVA_HOME ( set JAVA=%JAVA_HOME%\bin\java.exe ) ELSE ( FOR %%I IN (java.exe) DO set JAVA=%%~$PATH:I ) IF NOT EXIST "%JAVA%" ( ECHO Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME 1>&2 EXIT /B 1 ) set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI TITLE Elasticsearch Plugin Manager ${project.version} SET properties= SET args= :loop SET "current=%~1" SHIFT IF "x!current!" == "x" GOTO breakloop IF "!current:~0,2%!" == "-D" ( ECHO "!current!" | FINDSTR /C:"=">nul && ( :: current matches -D*=* IF "x!properties!" NEQ "x" ( SET properties=!properties! "!current!" ) ELSE ( SET properties="!current!" ) ) || ( :: current matches -D* IF "x!properties!" NEQ "x" ( SET properties=!properties! "!current!=%~1" ) ELSE ( SET properties="!current!=%~1" ) SHIFT ) ) ELSE ( :: current matches * IF "x!args!" NEQ "x" ( SET args=!args! "!current!" ) ELSE ( SET args="!current!" ) ) GOTO loop :breakloop SET HOSTNAME=%COMPUTERNAME% "%JAVA%" %ES_JAVA_OPTS% -Des.path.home="%ES_HOME%" !properties! -cp "%ES_HOME%/lib/*;" "org.elasticsearch.index.translog.TranslogToolCli" !args! ENDLOCAL
strahanjen/strahanjen.github.io
elasticsearch-master/distribution/src/main/resources/bin/elasticsearch-translog.bat
bat
bsd-3-clause
1,387
@ECHO OFF SET WORLD=World ECHO Hello, %WORLD%!
testdouble/scripty
test/fixtures/built-in-scripts-win/hello/world.cmd
bat
mit
49
@setlocal enableextensions enabledelayedexpansion & set "PATH0=%~f0" & PowerShell.exe -Command "& (Invoke-Expression -Command ('{#' + ((Get-Content '!PATH0:'=''!') -join \"`n\") + '}'))" %* & exit /b !errorlevel! # # - Name # ssh.bat # # - Contents # Simplify SSH Connect by Tera Term. # <kbd>Windows</kbd> + <kbd>R</kbd> => ssh root@192.168.1.100 # # - Install # powershell.exe -Command "Invoke-RestMethod -Uri "https://initsh.github.io/ps1/ssh.bat" -OutFile "$env:USERPROFILE\ssh.bat"" # # - Reference # PowerShell on *.bat - http://pf-j.sakura.ne.jp/program/tips/ps1bat2.htm # # - Revision # 2016-12-28 created. # 2017-04-14 modified. # 2017-05-22 modified. # yyyy-MM-dd modified. # ################ # constant ################ #[System.String] $base_dir = "$env:Userprofile" [System.String] $base_dir = "$env:Userprofile\GoogleDrive" [System.String] $ssh_dir = "$base_dir\ssh" [System.String] $log_dir = "$ssh_dir\log" [System.String] $key_dir = "$ssh_dir\key" [System.String] $csv_file = "$ssh_dir\hosts.csv" [System.String] $tt_install_uri = "https://ja.osdn.net/frs/redir.php?m=ymu&f=%2Fttssh2%2F67179%2Fteraterm-4.94.exe" [System.String] $tt_install_exe = "$env:USERPROFILE\Downloads\teraterm-4.94.exe" ################ # variable ################ [System.String] $date = Get-Date -Format yyyyMMdd [System.String] $time = Get-Date -Format HHmmss ################ # main ################ ### Create directorys. if ((Get-Item $ssh_dir).Mode | Select-String -NotMatch '^d') { mkdir $ssh_dir; } if ((Get-Item $log_dir).Mode | Select-String -NotMatch '^d') { mkdir $log_dir; } if ((Get-Item $key_dir).Mode | Select-String -NotMatch '^d') { mkdir $ssh_dir; } if (-Not (Test-Path $csv_file)) { Write-Output @' Hostname,Port,Username,AuthType,Value,Alias # In the first line, Header information is written. Please do not edit! # Please refer to the following and set it like the description example. # Hostname,PortNumber,Username,AuthenticationType[password|publickey],Value[Passphrase|NameOfSecretKey],Set an alias character string as an argument of ssh command. UPN notation is recommended. # description example: www.example.com,22,admin,publickey,id_rsa,admin@www.example.com 192.168.1.100,22,root,password,P@ssw0rd,root@192.168.1.100 '@ > $csv_file Write-Output "$(Get-Date -Format yyyy-MM-ddTHH:mm:sszzz) [NOTICE]: Check the file( $csv_file ) and set it as shown in the description example." Write-Output "$(Get-Date -Format yyyy-MM-ddTHH:mm:sszzz) [NOTICE]: Edit the file( $csv_file ) and try again." notepad $csv_file [Console]::ReadKey() | Out-Null exit 1 } ### Search for ttermpro.exe from the directory where teraterm was installed and get the full path of ttermpro.exe. [System.String] $ssh_client = Get-ChildItem -recurse "C:\Program Files*\teraterm" | Where-Object { $_.Name -match "ttermpro" } | ForEach-Object { $_.FullName } ### If ttermpro.exe does not exist, if (-Not ($ssh_client)) { Invoke-WebRequest -Uri $tt_install_uri -OutFile $tt_install_exe Start-Process -FilePath $tt_install_exe -PassThru -Wait [System.String] $ssh_client = Get-ChildItem -recurse "C:\Program Files*\teraterm" | Where-Object { $_.Name -match "ttermpro" } | ForEach-Object { $_.FullName } if (-Not ($ssh_client)) { Write-Output "$(Get-Date -Format yyyy-MM-ddTHH:mm:sszzz) [ERROR]: ttermpro.exe not found in `"C:\Program Files*`"." [Console]::ReadKey() | Out-Null exit 1 } } if ($args[0]) { ### $args[0] = Alias. UPN notation is recommended. [System.String] $ssh_alias = $args[0] [System.Array] $ssh_args = $args[0] -split "@" [System.String] $ssh_log = "$log_dir\" + $ssh_args[1] + "_" + $ssh_args[0] + "_" + $date + "_" + $time + ".log" ### Get a match with the value of $args[0] and the value of Alias in CSV. [System.Array] $csv_data = Import-Csv $csv_file | Where-Object { $_.Alias -eq $ssh_alias } ### If there is a match between the value of $args[0] and the value of Alias in CSV, if ($csv_data) { ### Create arguments to pass to ttermpro.exe. [System.String] $opt_host = "ssh2://" + $csv_data[0].Hostname + ":" + $csv_data[0].Port [System.String] $opt_user = "/user=" + $csv_data[0].Username [System.String] $opt_auth = "/auth=" + $csv_data[0].AuthType if ($csv_data[0].AuthType -eq "password") { [System.String] $opt_value = "/passwd=" + $csv_data[0].Value } elseif ($csv_data[0].AuthType -eq "publickey") { [System.String] $opt_value = "/keyfile=$key_dir\" + $csv_data[0].Value } [System.String] $opt_dir = "/FD=$ssh_dir" [System.String] $opt_log = "/L=$ssh_log" [System.Array] $opt_array = @($opt_host,$opt_user,$opt_auth,$opt_value,$opt_dir,$opt_log,"/ssh-v","/LA=J") } ### If there is no matching match between the value of $args[0] and the value of Alias in CSV, else { ### Show contents of CSV. Get-Item $csv_file Import-Csv $csv_file | Where-Object { ($_.Alias) } | Select-Object Username,Hostname,Alias | Format-Table -AutoSize [Console]::ReadKey() | Out-Null exit 0 } } else { [System.String] $ssh_log = "$log_dir\undefined_undefined_" + $date + "_" + $time + ".log" [System.String] $opt_dir = "/FD=" + $ssh_dir [System.String] $opt_log = "/L=$ssh_log" [System.Array] $opt_array = @($opt_dir,$opt_log,"/ssh-v","/LA=J") } ### Run teraterm. $ssh_process = Start-Process -FilePath $ssh_client -ArgumentList $opt_array -PassThru -Wait ### Change attribute of teraterm log file to read only. Set-ItemProperty -Path $ssh_log -Name Attributes -Value Readonly ### Display the contents of teraterm log file (personal preference...). Get-Content -Path $ssh_log ### Output contents of teraterm log file to screen. Write-Output "$(Get-Date -Format yyyy-MM-ddThh:mm:sszzz) [INFO]: Log file: $ssh_log" ### TeraTerm abnormal termination: A case where an already established ssh session is forcibly terminated due to network disconnection or the like. if ($ssh_process.ExitCode -ne 0) { Write-Output "$(Get-Date -Format yyyy-MM-ddThh:mm:sszzz) [ERROR]: ttermpro.exe exit code NOT equal 0." } [Console]::ReadKey() | Out-Null exit 0
initsh/initsh.github.io
ps1/ssh.bat
bat
mit
6,308
cd "../bin" TGE_debug.exe -script "consoledemo/main"
eigenl/tge
examples/CONSOLEDEMO.bat
bat
mit
52
@echo off rem -- 用户手动配置 rem ------------------------------- rem -- ANDROID rem ------------------------------- set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_40 set ECLIPSE_HOME=E:\adt-bundle-windows-x86\eclipse set ANDROID_SDK_HOME=E:\adt-bundle-windows-x86\sdk set ANDROID_NDK_HOME=E:\android-ndk-r10e set ANTBIN=%ECLIPSE_HOME%\plugins\org.apache.ant_1.9.2.v201404171502\bin set DXM_CMAKE_V3=true rem ------------------------------- rem -- Tools rem ------------------------------- set TEXTURE_PACKER_PATH=E:\TexturePacker\bin rem ------------------------------- rem -- DXM 变量 rem ------------------------------- set DXM_PROJECT_PATH=%~dp0 set DXM_PATH=%DXM_PROJECT_PATH%\dxm rem -- 系统自动配置 rem ------------------------------- rem -- ANDROID rem ------------------------------- set ANDROID_TOOLS=%ANDROID_SDK_HOME%\tools set ANDROID_SDK_PLATFORM_TOOLS=%ANDROID_SDK_HOME%;%ANDROID_SDK_HOME%\platform-tools set ANDROID_SDK_TOOLS=%ANDROID_SDK_HOME%\tools set NDK_MODULE_PATH=%~dp0;%ANDROID_NDK_HOME%\sources\; set NDK_MODULE_PATH=%NDK_MODULE_PATH:\=/% set PATH=%PATH%;%JAVA_HOME%\bin;%ANTBIN%;%ANDROID_NDK_HOME%;%ANDROID_SDK_PLATFORM_TOOLS%;%ANDROID_SDK_TOOLS%;%DXM_PATH%\build\tools\win set CLASSPATH=.;%JAVA_HOME%\lib set ANDROID_HOME=%ANDROID_SDK_HOME% set ANDROID_NDK=%ANDROID_NDK_HOME% rem ------------------------------- rem -- DXM 变量 rem ------------------------------- set DXM_INSTALL=%DXM_PROJECT_PATH%\install set DXM_TOOLS=%DXM_PATH%\build\tools\win set DXM_CMAKE=%DXM_PATH%\build\cmake rem ------------------------------- rem -- DXM Compiler rem ------------------------------- if defined VS140COMNTOOLS ( SET DXM_COMPILER_TOOLS="%VS140COMNTOOLS%" SET DXM_COMPILER=vc14 if !DXM_CMAKE_V3!==true ( SET DXM_GENERATOR_X86="Visual Studio 14 2015" SET DXM_GENERATOR_X64="Visual Studio 14 2015 Win64" ) else ( SET DXM_GENERATOR_X86="Visual Studio 14" SET DXM_GENERATOR_X64="Visual Studio 14 Win64" ) ) else if defined VS120COMNTOOLS ( SET DXM_COMPILER_TOOLS="%VS120COMNTOOLS%" SET DXM_COMPILER=vc12 if !DXM_CMAKE_V3!==true ( SET DXM_GENERATOR_X86="Visual Studio 12 2013" SET DXM_GENERATOR_X64="Visual Studio 12 2013 Win64" ) else ( SET DXM_GENERATOR_X86="Visual Studio 12" SET DXM_GENERATOR_X64="Visual Studio 12 Win64" ) ) else if defined VS110COMNTOOLS ( SET DXM_COMPILER_TOOLS="%VS110COMNTOOLS%" SET DXM_COMPILER=vc11 if !DXM_CMAKE_V3!==true ( SET DXM_GENERATOR_X86="Visual Studio 11 2012" SET DXM_GENERATOR_X64="Visual Studio 11 2012 Win64" ) else ( SET DXM_GENERATOR_X86="Visual Studio 11" SET DXM_GENERATOR_X64="Visual Studio 11 Win64" ) ) else if defined VS100COMNTOOLS ( SET DXM_COMPILER_TOOLS="%VS100COMNTOOLS%" SET DXM_COMPILER=vc10 if !DXM_CMAKE_V3!==true ( SET DXM_GENERATOR_X86="Visual Studio 10 2010" SET DXM_GENERATOR_X64="Visual Studio 10 2010 Win64" ) else ( SET DXM_GENERATOR_X86="Visual Studio 10" SET DXM_GENERATOR_X64="Visual Studio 10 Win64" ) ) call %DXM_COMPILER_TOOLS%vsvars32.bat
dxmgame/dxm
templates_project/config.bat
bat
mit
3,100
@echo off REM REM SetEnv.cmd - Sets up the enlistment environment REM 2010-12-22 - [thomasde] created REM echo ------------ echo SETENV.CMD echo ------------ REM REM ensure %ROOT% is defined (we DON'T run if ROOT is not defined) REM if not defined root ( echo %%ROOT%% environment variable is not defined. echo EXITING... pause exit ) REM REM Start - call VS Environment variables environment setting REM REM Dev11? set vcvarsall="C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\VsDevCmd.bat" if not exist %vcvarsall% ( set vcvarsall="C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat" if not exist %vcvarsall% ( REM Dev11? set vcvarsall="C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\VsDevCmd.bat" if not exist %vcvarsall% ( REM Dev10? set vcvarsall="%programfiles%\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" REM Dev10 on Wow? if not exist %vcvarsall% ( REM Maybe we're on an x64 machine with DevEnv 2010 in WoW32 set vcvarsall="%programfiles(x86)%\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" ) ) ) ) REM Either call vsvarsall or warn if exist %vcvarsall% ( call %vcvarsall% %PROCESSOR_ARCHITECTURE% echo vcvarsall set up ) else ( echo WARNING: environment setup script [vcvarsall or vsdevcmd] was not found... echo .........The environment may not behave as expected. ) REM REM Set Environment variables REM if not defined configuration ( set configuration=Debug ) REM REM Check for the existence of the %platform% environment variable REM -For some reason, this variable is set to BNB on HP machines REM if "%platform%"=="BNB" ( set platform= ) REM REM Set title if defined REM if defined title ( echo Setting title to [%TITLE% - %CONFIGURATION%] title [%TITLE% - %CONFIGURATION%] ) REM REM Define the environment variables REM if not defined outputbase ( set outputbase=%root%\bins ) set private=%root%\private set devdir=%private%\developer\%username% set product=%root%\eXtensibleFramework set sln=%root%\eXtensibleFramework\solutions set tests=%private%\tests set tools=%private%\tools set binaries=%private%\binaries REM set referencedAssemblies=%root%\externaldlls set VisualStudioVersion=14.0 REM REM Output the Environment information REM echo %%CONFIGURATION%% = %configuration% echo %%ROOT%% = %root% echo %%PRIVATE%% = %private% echo %%PRODUCT%% = %product% echo %%TESTS%% = %tests% echo %%TOOLS%% = %tools% echo %%DEVDIR%% = %devdir% echo %%BINARIES%% = %binaries% echo %%BUILDTOOLS%% = %buildtools% echo %%OUTPUTBASE%% = %outputbase% REM echo %%REFERENCEDASSEMBLIES%% = %referencedAssemblies% echo %%SSSISXMLFILENAME%% = %ssisxmlfilename% echo %%VisualStudioVersion%% = %VisualStudioVersion% REM REM Register the Binaries REM set PATH=%path%;%binaries% if exist "%binaries%\RegisterBinaries.cmd" ( echo Running "%binaries%\RegisterBinaries.cmd" call "%binaries%\RegisterBinaries.cmd" ) REM REM Register build tools REM set PATH=%path%;%buildtools% if exist "%buildtools%\RegisterBuildTools.cmd" ( echo Running "%buildtools%\RegisterBuildTools.cmd" call "%buildtools%\RegisterBuildTools.cmd" ) REM REM Load the aliases REM doskey /macrofile=aliases.pub REM REM Remind the user to create a developer directory REM if not exist %devdir% ( echo Developer directory [%devdir%] was not found ) REM REM Load the user's aliases if they exist REM set devAliases=%devdir%\environment\aliases.pub if exist %devAliases% ( echo Loading aliases for [%username%] doskey /macrofile="%devAliases%" ) else ( echo The aliases file for %username% was not found. echo Create a file %devAliases% with aliases to use in this enlistment ) REM REM Invoke the user defined setenv.cmd if it exists REM set usersetenv=%devdir%\environment\setenv.cmd if exist %usersetenv% ( echo Customizing environment for [%username%] call "%usersetenv%" ) else ( echo The environment file for %username% was not found. echo Create a file %userSetEnv% with instructions on how to customize your environment ) REM REM Display aliases REM echo The following aliases are available: doskey /macros REM echo Done...
eXtensoft/xf-2.0
setenv.cmd
bat
mit
4,384
set CDIR=%~dp0 reg add HKCU\Environment /v HQENGINE_VS2008_X86_LIB_DEB_PATH /t REG_SZ /d %CDIR%\Output\Debug\ reg add HKCU\Environment /v HQENGINE_VS2008_X86_LIB_REL_PATH /t REG_SZ /d %CDIR%\Output\Release\ reg add HKCU\Environment /v HQENGINE_VS2008_X86_LIB_STATIC_CRT_DEB_PATH /t REG_SZ /d "%CDIR%\Output\Debug static CRT\" reg add HKCU\Environment /v HQENGINE_VS2008_X86_LIB_STATIC_CRT_REL_PATH /t REG_SZ /d "%CDIR%\Output\Release static CRT\"
kakashidinho/HQEngine
HQEngine/VS2008/setLibPathEnv.bat
bat
mit
451
@ECHO OFF SETLOCAL CALL "%VS140COMNTOOLS%VsMSBuildCmd.bat" ECHO Building solution... msbuild .\ShaderEditor.sln /property:Configuration=Debug /verbosity:minimal /nologo ECHO Running tests... .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\SRPTests\bin\Debug\SRPTests.dll
simontaylor81/Syrup
RunTests.bat
bat
mit
290
cmd_networking/libiproute/utils.o := arm-linux-musleabihf-gcc -Wp,-MD,networking/libiproute/.utils.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(utils)" -D"KBUILD_MODNAME=KBUILD_STR(utils)" -c -o networking/libiproute/utils.o networking/libiproute/utils.c deps_networking/libiproute/utils.o := \ networking/libiproute/utils.c \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ networking/libiproute/utils.h \ networking/libiproute/libnetlink.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/int-ll64.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/bitsperlong.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/bitsperlong.h \ $(wildcard include/config/64bit.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/posix_types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/posix_types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/posix_types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/netlink.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/kernel.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/sysinfo.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/rtnetlink.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/if_link.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/if_addr.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/neighbour.h \ networking/libiproute/ll_map.h \ networking/libiproute/rtm_map.h \ include/inet_common.h \ networking/libiproute/utils.o: $(deps_networking/libiproute/utils.o) $(deps_networking/libiproute/utils.o):
ThinkIntegrate/busybox
networking/libiproute/.utils.o.cmd
bat
gpl-2.0
13,725
cmd_arch/arm/lib/built-in.o := rm -f arch/arm/lib/built-in.o; /home/utkanos/android/ginger/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs arch/arm/lib/built-in.o
utkanos/android_htc_mecha_kernel_5slot
arch/arm/lib/.built-in.o.cmd
bat
gpl-2.0
180
cmd_drivers/net/wireless/built-in.o := arm-linux-gnueabi-ld -EL -r -o drivers/net/wireless/built-in.o drivers/net/wireless/wifi_sys/rkwifi_sys_iface.o drivers/net/wireless/bcm4329/built-in.o
jpsminix/minix5
drivers/net/wireless/.built-in.o.cmd
bat
gpl-2.0
196
cmd_drivers/acpi/sleep/proc.o := gcc -Wp,-MD,drivers/acpi/sleep/.proc.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 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(proc)" -D"KBUILD_MODNAME=KBUILD_STR(proc)" -c -o drivers/acpi/sleep/proc.o drivers/acpi/sleep/proc.c deps_drivers/acpi/sleep/proc.o := \ drivers/acpi/sleep/proc.c \ $(wildcard include/config/x86.h) \ $(wildcard include/config/acpi/procfs.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/rtc/drv/cmos.h) \ include/linux/proc_fs.h \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ $(wildcard include/config/mmu.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/numa.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) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ $(wildcard include/config/x86/cmov.h) \ include/asm/alternative.h \ $(wildcard include/config/paravirt.h) \ include/asm/asm.h \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/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/sparsemem/vmemmap.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.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/modules.h) \ $(wildcard include/config/hotplug.h) \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/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/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/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/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/asm/irqflags.h \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(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/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/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/wait.h \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/seqlock.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/mutex.h \ $(wildcard include/config/debug/mutexes.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/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/mmu.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/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/sysfs.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/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/percpu.h \ include/linux/rcuclassic.h \ include/linux/namei.h \ include/linux/path.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.h \ include/linux/math64.h \ include/asm/div64.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.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/magic.h \ include/linux/seq_file.h \ include/linux/suspend.h \ $(wildcard include/config/frv.h) \ $(wildcard include/config/ppc32.h) \ $(wildcard include/config/ppc64.h) \ $(wildcard include/config/vt.h) \ $(wildcard include/config/vt/console.h) \ $(wildcard include/config/suspend.h) \ include/asm/suspend.h \ include/asm/suspend_32.h \ include/asm/desc.h \ include/asm/ldt.h \ include/asm/i387.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/split/ptlock/cpus.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/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) \ $(wildcard include/config/mm/owner.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/asm/timex.h \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/linux/completion.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/kernel_stat.h \ include/asm/irq.h \ include/asm/irq_32.h \ $(wildcard include/config/irqbalance.h) \ include/asm-x86/mach-default/irq_vectors.h \ include/asm-x86/mach-default/irq_vectors_limits.h \ include/linux/regset.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/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/s390.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/auto/irq/affinity.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ include/linux/irqreturn.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/user.h \ include/asm/user_32.h \ include/linux/swap.h \ $(wildcard include/config/swap.h) \ include/linux/memcontrol.h \ $(wildcard include/config/cgroup/mem/cont.h) \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/debug/pagealloc.h) \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.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) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/bcd.h \ include/acpi/acpi_bus.h \ $(wildcard include/config/acpi/proc/event.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.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/vdso.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ include/linux/marker.h \ include/asm/local.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/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/asm/device.h \ $(wildcard include/config/dmar.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/acpi/acpi.h \ include/acpi/acnames.h \ include/acpi/acconfig.h \ $(wildcard include/config/h.h) \ include/acpi/platform/acenv.h \ include/acpi/platform/aclinux.h \ include/linux/ctype.h \ include/acpi/platform/acgcc.h \ include/acpi/actypes.h \ include/acpi/actypes.h \ include/acpi/acexcep.h \ include/acpi/acmacros.h \ $(wildcard include/config/acpi/debug/func/trace.h) \ include/acpi/actbl.h \ include/acpi/actbl1.h \ include/acpi/aclocal.h \ include/acpi/acoutput.h \ include/acpi/acpiosxf.h \ include/acpi/acpixf.h \ include/acpi/acobject.h \ include/acpi/acstruct.h \ include/acpi/acglobal.h \ include/acpi/achware.h \ include/acpi/acutils.h \ include/acpi/acpi_drivers.h \ $(wildcard include/config/acpi/power.h) \ $(wildcard include/config/acpi/ec.h) \ $(wildcard include/config/acpi/dock.h) \ include/linux/acpi.h \ $(wildcard include/config/have/arch/parse/srat.h) \ $(wildcard include/config/acpi/hotplug/cpu.h) \ $(wildcard include/config/acpi/wmi.h) \ $(wildcard include/config/dmi.h) \ include/linux/mod_devicetable.h \ include/acpi/acpi_numa.h \ include/linux/dmi.h \ include/linux/mc146818rtc.h \ include/asm/io.h \ include/asm/io_32.h \ include/asm-generic/iomap.h \ include/linux/vmalloc.h \ include/linux/rtc.h \ $(wildcard include/config/rtc/intf/dev/uie/emul.h) \ include/linux/interrupt.h \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/cdev.h \ include/linux/poll.h \ include/asm/poll.h \ include/asm-generic/poll.h \ include/asm/mc146818rtc.h \ drivers/acpi/sleep/sleep.h \ drivers/acpi/sleep/proc.o: $(deps_drivers/acpi/sleep/proc.o) $(deps_drivers/acpi/sleep/proc.o):
namgk/kernel-tut
drivers/acpi/sleep/.proc.o.cmd
bat
gpl-2.0
22,731
cmd_net/netfilter/nf_conntrack.o := /home/robin/toolchain/bin/arm-none-eabi-ld -EL -r -o net/netfilter/nf_conntrack.o net/netfilter/nf_conntrack_core.o net/netfilter/nf_conntrack_standalone.o net/netfilter/nf_conntrack_expect.o net/netfilter/nf_conntrack_helper.o net/netfilter/nf_conntrack_proto.o net/netfilter/nf_conntrack_l3proto_generic.o net/netfilter/nf_conntrack_proto_generic.o net/netfilter/nf_conntrack_proto_tcp.o net/netfilter/nf_conntrack_proto_udp.o net/netfilter/nf_conntrack_extend.o net/netfilter/nf_conntrack_acct.o
spacecaker/CM7_Space_Kernel_Cooper
net/netfilter/.nf_conntrack.o.cmd
bat
gpl-2.0
540
cmd_arch/arm/kernel/entry-armv.o := /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/kernel/.entry-armv.o.d -nostdinc -isystem /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-exynos/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/kernel/entry-armv.o arch/arm/kernel/entry-armv.S source_arch/arm/kernel/entry-armv.o := arch/arm/kernel/entry-armv.S deps_arch/arm/kernel/entry-armv.o := \ $(wildcard include/config/multi/irq/handler.h) \ $(wildcard include/config/kprobes.h) \ $(wildcard include/config/aeabi.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/needs/syscall/for/cmpxchg.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/neon.h) \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/iwmmxt.h) \ $(wildcard include/config/crunch.h) \ $(wildcard include/config/vfp.h) \ $(wildcard include/config/cpu/use/domains.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/arm/thumb.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/const.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ arch/arm/mach-exynos/include/mach/memory.h \ $(wildcard include/config/mach/smdkv310.h) \ $(wildcard include/config/mach/smdk5250.h) \ $(wildcard include/config/exynos/mark/page/holes.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/glue-df.h \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/glue.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/glue-pf.h \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/vfpmacros.h \ $(wildcard include/config/vfpv3.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/hwcap.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/vfp.h \ arch/arm/mach-exynos/include/mach/entry-macro.S \ $(wildcard include/config/arch/exynos4.h) \ $(wildcard include/config/arm/trustzone.h) \ arch/arm/mach-exynos/include/mach/hardware.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/hardware/gic.h \ arch/arm/mach-exynos/include/mach/map.h \ $(wildcard include/config/arch/exynos5.h) \ arch/arm/plat-samsung/include/plat/map-base.h \ $(wildcard include/config/s3c/base/addr.h) \ $(wildcard include/config/s3c/addr/base.h) \ arch/arm/plat-s5p/include/plat/map-s5p.h \ arch/arm/mach-exynos/include/mach/map-exynos4.h \ $(wildcard include/config/cpu/exynos4210.h) \ $(wildcard include/config/cpu/exynos4412.h) \ $(wildcard include/config/mach/u1/na/spr.h) \ $(wildcard include/config/mach/u1/na/uscc.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/thread_notify.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/unwind.h \ $(wildcard include/config/arm/unwind.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/unistd.h \ $(wildcard include/config/oabi/compat.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/tls.h \ $(wildcard include/config/tls/reg/emul.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/32v6k.h) \ arch/arm/kernel/entry-header.S \ $(wildcard include/config/frame/pointer.h) \ $(wildcard include/config/alignment/trap.h) \ $(wildcard include/config/have/hw/breakpoint.h) \ include/linux/init.h \ $(wildcard include/config/fast/resume.h) \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/linkage.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/linkage.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/ptrace.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/fpstate.h \ /home/adam/Android/Kernel/GalaTab3_Kernel/arch/arm/include/asm/entry-macro-multi.S \ $(wildcard include/config/local/timers.h) \ arch/arm/kernel/entry-armv.o: $(deps_arch/arm/kernel/entry-armv.o) $(deps_arch/arm/kernel/entry-armv.o):
arshull/GalaTab3_Kernel
arch/arm/kernel/.entry-armv.o.cmd
bat
gpl-2.0
7,464
cmd_scripts/basic/fixdep := gcc -Wp,-MD,scripts/basic/.fixdep.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/basic/fixdep scripts/basic/fixdep.c source_scripts/basic/fixdep := scripts/basic/fixdep.c deps_scripts/basic/fixdep := \ $(wildcard include/config/his/driver.h) \ $(wildcard include/config/my/option.h) \ $(wildcard include/config/.h) \ $(wildcard include/config/foo.h) \ $(wildcard include/config/boom.h) \ /usr/include/x86_64-linux-gnu/sys/types.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/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stddef.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/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/sys/stat.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.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/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /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/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/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/ctype.h \ /usr/include/arpa/inet.h \ /usr/include/netinet/in.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.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/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/in.h \ scripts/basic/fixdep: $(deps_scripts/basic/fixdep) $(deps_scripts/basic/fixdep):
jyh0082007/sigTaint
scripts/basic/.fixdep.cmd
bat
gpl-2.0
3,549
set "VSCMD_START_DIR=%CD%" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86 echo Set environ cd ldmicro PATH=d:\bin\msys64\usr\bin;%PATH% call make.bat
LDmicro/LDmicro
makeld.bat
bat
gpl-3.0
223
java -server -Xmx512M -Xmx512M -classpath ../target/libpcap-latency-meter-0.1.RC1.jar;../lib/jnetpcap.jar org.tinyfix.latency.LiveCaptureProcessor %*
andymalakov/libpcap-latency-meter
bin/live-traffic.cmd
bat
gpl-3.0
150
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=python -msphinx ) set SOURCEDIR=source set BUILDDIR=build set SPHINXPROJ=pineal 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
edne/pineal
docs/make.bat
bat
agpl-3.0
808
@echo on call make_verf.bat 2 pushd jt\jtlib & call m.bat & popd pushd tools\dbaseiii & call m.bat & popd pushd tools\dbfview & call m.bat & popd pushd tools\ddict2 & call m.bat & popd pushd tools\list & call m.bat & popd pushd tools\pcre & call m.bat & popd pushd tools\savex & call m.bat & popd pushd tools\sql2 & call m.bat & popd pushd tools\tdccmp & call m.bat & popd pushd tools\zgrep & call m.bat & popd pushd tutor\dtree & call m.bat & popd pushd tutor\fpath & call m.bat & popd pushd tutor\rename & call m.bat & popd javac -version 2>NUL if %errorlevel% == 0 ( pushd jt\jterminal & call m.bat & popd )
mrev11/ccc2c
make_extn.bat
bat
lgpl-2.1
773
@echo off setlocal enableextensions set VERSION=6.1 set PRODUCT=ReSharper set BASEDIR=JetBrains\%PRODUCT%\v%VERSION% set PLUGIN=NuGetSupport set INSTALL_SOURCEDIR=%~dp0\%PLUGIN%.%VERSION% set PER_USER_PLUGINDIR=%LOCALAPPDATA%\%BASEDIR%\plugins\%PLUGIN% if exist "%PER_USER_PLUGINDIR%" goto do_clean mkdir "%PER_USER_PLUGINDIR%" :do_clean del /q %PER_USER_PLUGINDIR%\*.* 2> NUL :do_copy echo Copying files... copy /y "%INSTALL_SOURCEDIR%\*.dll" "%PER_USER_PLUGINDIR%" copy /y "%INSTALL_SOURCEDIR%\*.pdb" "%PER_USER_PLUGINDIR%" 2> NUL echo. REM See https://github.com/citizenmatt/UnblockZoneIdentifier echo Unblocking downloaded files... pushd "%PER_USER_PLUGINDIR%" for /r %%i in (*) do "%~dp0\UnblockZoneIdentifier" "%%i" popd :end pause
JetBrains/resharper-nuget
install/Install-NuGetSupport.6.1.bat
bat
apache-2.0
747
set VLMA_CLASSPATH=%VLMA_CLASSPATH%;%1
ajwtech/VideoOnDemand
vlma-0.2.0/bin/cp_append.cmd
bat
apache-2.0
39
brcc32 TestUnit.rc pause
milanqiu/moon
files/Strings/TestUnit/MakeRes.bat
bat
apache-2.0
24
@echo off color0a echo 5 Wait ping localhost -n 1> nul cls echo 4 Wait ping localhost -n 1> nul cls echo 3 Wait ping localhost -n 1> nul cls echo 2 WAit ping localhost -n 1> nul cls echo 1 DOOOOOOne ping localhost -n 2> nul cls Color 0c color 0d Color 0a Color 0b cls echo Wait Pls) LOADING APP.... ping localhost -n 10 >nul cls echo Wait Pls) Wait In Progress......... ping localhost -n 10 >nul cls echo Wait Pls) server In Progress...... ping localhost -n 10 >nul cls echo Wait Pls) Done! ping localhost -n 1 >nul cls color0a echo Fixing... ping localhost -n 2> nul cls echo Loading... ping localhost -n 2> nul cls echo Erase Bugs... ping localhost -n 2> nul cls echo Wait... ping localhost -n 2> nul cls echo DONE! ping localhost -n 1> nul cls echo 5) Exit echo 4) Home set /p number= if %number% == 1 goto Application if %number% == 2 goto Settings if %number% == 3 goto Play A game THE QUIZ Minecraft if %number% == 4 goto Home if %number% == 5 goto exit :Home echo 1) Application Open echo 2) Settings echo 3) Play a Game QUIZ MINECRAFT if not defined number ( cls goto loop ) :Application echo You need My website : tinoyplays.weebly.com Echo2 You Can now pro! Echo3 Welcome gitcommand We Are Start We Promise Board CASTER NOT FIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIINNNNNNNNNNNNNNNNNNNNIIIIISH THANKS!!!!!!!!!!!!!!!!! echo says) welcome back! echo You need My website : tinoyplays.weebly.com set /p name= Pause :Settings echo whats is your name? set /p name= echo 2) hi %name% good see ya %name% SO You Clould OWN oR aDMIN sERVER %NAME%? :Play A game THE QUIZ MINECRAFT color 0a echo What is The Blaze has Died Has Drop A item? echo A. Blaze Eggs echo B. Blaze Rods echo C. Blaze Powders set /p != if %!% == A goto Correct if %!% == B goto Wrrong if %!% == C goto Wrrong :Correct echo Wow Correct! Lvl 1 Completed you now A Pro! echo go home?? (y/n) set /p ha= if %ha% == y goto Home if %ha% == n goto exit :exit Pause :Wrrong echo Sorry yOU nOW eCHO YOU ARE A NNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOB! Echo LOOOOOL!!!!!!!!!!!!!!!!!!!!!! Pause
timothyfrancis/GitCommands-For-Win-7-8-and-10
Tinoy's Application.bat
bat
apache-2.0
2,146
@ECHO OFF SETLOCAL CLS ECHO. ECHO. Initializing Acrobat Reader download. bitsadmin.exe /transfer "Acrobat Reader Installer" https://admdownload.adobe.com/bin/live/readerdc_en_xa_install.exe %USERPROFILE%\Downloads\readerdc_en_xa_install.exe ECHO. The Acrobat Reader Installer is opening in another window... START %USERPROFILE%\Downloads\readerdc_en_xa_install.exe -install ECHO. The Acrobat Reader installation is complete. ECHO. Deleting temporary Acrobat Reader installation files... DEL %USERPROFILE%\Downloads\readerdc_en_xa_install.exe GOTO:EOF
JustinMuniz/Computer-Shop-Utilities
Windows/Batch/Build-Scripts/Install-Acrobat-Reader.bat
bat
bsd-2-clause
553
#start cmd.exe @cmd /k "grunt serve" cd .. start cmd.exe @cmd /k "grunt shell:webdriver" start cmd.exe @cmd /k "grunt shell:browserstack" start cmd.exe @cmd /k
qld-gov-au/emergency-services
cmd/testing.cmd
bat
bsd-2-clause
159
@echo // Copyright (C) 1996-2005 Markus F.X.J. Oberhumer @echo // @echo // Windows 64-bit (Itanium) @echo // Intel C/C++ (DLL) @echo // @call b\prepare.bat @if "%BECHO%"=="n" echo off set CC=icl -nologo -MD set CF=-O2 -GF -W3 %CFI% set LF=%BLIB% %CC% %CF% -D__LZO_EXPORT1#__declspec(dllexport) -c @b\src.rsp @if errorlevel 1 goto error %CC% -LD -Fe%BDLL% @b\win64\vc.rsp /link /map /def:b\win64\vc_dll.def @if errorlevel 1 goto error %CC% %CF% examples\dict.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\lzopack.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\precomp.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\precomp2.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\simple.c %LF% @if errorlevel 1 goto error %CC% %CF% lzotest\lzotest.c %LF% @if errorlevel 1 goto error %CC% %CF% -Iinclude\lzo minilzo\testmini.c minilzo\minilzo.c @if errorlevel 1 goto error @call b\done.bat @goto end :error @echo ERROR during build! :end @call b\unset.bat
ZHAW-INES/rioxo-uClinux-dist
lib/lzo/lzo-2.02/B/win64/ic_dll.bat
bat
gpl-2.0
986
cmd_sound/pci/built-in.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o sound/pci/built-in.o sound/pci/ac97/built-in.o sound/pci/ali5451/built-in.o sound/pci/au88x0/built-in.o sound/pci/aw2/built-in.o sound/pci/ctxfi/built-in.o sound/pci/ca0106/built-in.o sound/pci/cs46xx/built-in.o sound/pci/cs5535audio/built-in.o sound/pci/lx6464es/built-in.o sound/pci/echoaudio/built-in.o sound/pci/emu10k1/built-in.o sound/pci/hda/built-in.o sound/pci/ice1712/built-in.o sound/pci/korg1212/built-in.o sound/pci/mixart/built-in.o sound/pci/nm256/built-in.o sound/pci/oxygen/built-in.o sound/pci/pcxhr/built-in.o sound/pci/riptide/built-in.o sound/pci/rme9652/built-in.o sound/pci/trident/built-in.o sound/pci/ymfpci/built-in.o sound/pci/vx222/built-in.o
jdlfg/Mecha-kernel
sound/pci/.built-in.o.cmd
bat
gpl-2.0
794
@echo off rem --------------------------------------------------------------------------- setlocal enabledelayedexpansion set ocp=%CLASSPATH% set cp=. set cp=%cp%;.\conf;..\conf set cp=%cp%;classes for %%x in (..\lib\*.jar lib\*.jar) do ( set cp=!cp!;%%x ) set cp=%cp%;..\build\web\WEB-INF\classes set CLASSPATH=%cp% set java=%JAVA_HOME%\bin\java set javaArgs=-Xms256m -Xmx512m set class=gov.nih.nci.evs.reportwriter.test.lexevs.DataUtilsTest set class=gov.nih.nci.evs.reportwriter.test.lexevs.RemoteServerUtilTest set class=gov.nih.nci.evs.reportwriter.test.lexevs.DistributedValueSetTest set class=gov.nih.nci.evs.reportwriter.test.lexevs.ResolveValueSetTest2 set args=-propertyFile C:/apps/evs/ncireportwriter-webapp/conf/ncireportwriter.properties rem --------------------------------------------------------------------------- @echo on "%java%" %javaArgs% %class% %args% @echo off rem --------------------------------------------------------------------------- set CLASSPATH=%ocp% @echo on
NCIP/nci-report-writer
software/ncireportwriter/test/run.bat
bat
bsd-3-clause
1,033
@echo off Rem Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line Rem format, or else stock DOS/Windows shells will refuse to run it. Rem Rem This batch file unpacks the GDB distribution while simultaneously Rem renaming some of the files whose names are invalid on DOS or conflict Rem with other file names after truncation to DOS 8+3 namespace. Rem Rem Invoke like this: Rem Rem djunpack gdb-XYZ.tar Rem Rem where XYZ is the version number. If the argument includes leading Rem directories, it MUST use backslashes, not forward slashes. Rem Rem The following 2 lines need to be changed with each new GDB release, to Rem be identical to the name of the top-level directory where the GDB Rem distribution unpacks itself. set GDBVER=gdb-7.0.1 if "%GDBVER%"=="gdb-7.0.1" GoTo EnvOk Rem If their environment space is too small, re-exec with a larger one command.com /e:4096 /c %0 %1 GoTo End :EnvOk if not exist %1 GoTo NoArchive djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp Rem The following uses a feature of COPY whereby it does not copy Rem empty files. We need that because the previous line will create Rem an empty fnchange.tmp even if the command failed for some reason. copy fnchange.tmp junk.tmp > nul if not exist junk.tmp GoTo NoDjTar del junk.tmp sed -e "s,@V@,%GDBVER%,g" < fnchange.tmp > fnchange.lst Rem See the comment above about the reason for using COPY. copy fnchange.lst junk.tmp > nul if not exist junk.tmp GoTo NoSed del junk.tmp djtar -x -n fnchange.lst %1 GoTo End :NoSed echo FAIL: Sed is not available. GoTo End :NoDjTar echo FAIL: DJTAR is not available or no fnchange.lst file in %1. GoTo End :NoArchive echo FAIL: the file %1 does not seem to exist. echo Remember that %1 cannot use forward slashes, only backslashes. GoTo End :End set GDBVER=
argp/macgdb
djunpack.bat
bat
gpl-2.0
1,879
MD latest\NServiceKit MD latest\NServiceKit.OrmLite MD latest\NServiceKit.Redis COPY ..\NuGet\NServiceKit\lib\net35\* latest\NServiceKit COPY ..\NuGet\NServiceKit\lib\net40\* latest\NServiceKit COPY ..\NuGet\NServiceKit.Common\lib\net35\* latest\NServiceKit COPY ..\NuGet\NServiceKit.Mvc\lib\net40\* latest\NServiceKit COPY ..\NuGet\NServiceKit.Authentication.OpenId\lib\net35\* latest\NServiceKit COPY ..\NuGet\NServiceKit.Plugins.ProtoBuf\lib\net35\* latest\NServiceKit COPY ..\NuGet\NServiceKit.Plugins.MsgPack\lib\net40\* latest\NServiceKit COPY ..\NuGet\NServiceKit.Razor2\lib\net40\* latest\NServiceKit COPY ..\..\NServiceKit.Text\NuGet\lib\net35\* latest\NServiceKit COPY ..\..\NServiceKit.Redis\NuGet\lib\net35\* latest\NServiceKit COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.SqlServer\lib\* latest\NServiceKit MD latest\NServiceKit.OrmLite\Firebird MD latest\NServiceKit.OrmLite\MySql MD latest\NServiceKit.OrmLite\PostgreSQL MD latest\NServiceKit.OrmLite\Sqlite32 MD latest\NServiceKit.OrmLite\Sqlite64 MD latest\NServiceKit.OrmLite\SqlServer MD latest\NServiceKit.OrmLite\Sqlite32.Mono COPY ..\..\NServiceKit.Text\NuGet\lib\net35\* latest\NServiceKit.OrmLite COPY ..\NuGet\NServiceKit.Common\lib\net35\* latest\NServiceKit.OrmLite COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.Firebird\lib\* latest\NServiceKit.OrmLite\Firebird COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.MySql\lib\* latest\NServiceKit.OrmLite\MySql COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.PostgreSQL\lib\* latest\NServiceKit.OrmLite\PostgreSQL COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.Sqlite32\lib\* latest\NServiceKit.OrmLite\Sqlite32 COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.Sqlite64\lib\* latest\NServiceKit.OrmLite\Sqlite64 COPY ..\..\NServiceKit.OrmLite\NuGet\NServiceKit.OrmLite.SqlServer\lib\* latest\NServiceKit.OrmLite\SqlServer COPY ..\..\NServiceKit.OrmLite\src\NServiceKit.OrmLite.Sqlite\bin\Release\NServiceKit.OrmLite.* latest\NServiceKit.OrmLite\Sqlite32.Mono
nataren/NServiceKit
release/copy.bat
bat
bsd-3-clause
2,100
@echo off TITLE Adding task to start KA Lite at system start setlocal for /f "tokens=4-6 delims=[.XP " %%i in ('ver') do set WIN_VERSION="%%i.%%j" rem 5.1 and 5.2 are XP and Server 2003/64-bit XP if %WIN_VERSION% LEQ "5.2" ( echo This feature is unavailable on this version of Windows. pause ) else ( schtasks /create /tn "KALite" /tr "\"%KALITE_SCRIPT_DIR%\kalite.bat\" start" /sc onstart /ru %USERNAME% /rp /f )
ruimalheiro/installers
windows/scripts/add_systemstart_task.bat
bat
mit
439
universe = scheduler executable = x_sleep.pl log = job_core_perrelease-true_sched.log output = job_core_perrelease-true_sched.out error = job_core_perrelease-true_sched.err hold = True periodic_release = (time() - QDate) > 3 Notification = NEVER arguments = 6 queue
zhangzhehust/htcondor
src/condor_tests/job_core_perrelease-true_sched.cmd
bat
apache-2.0
270
@ECHO OFF REM REM Copyright 2013 The ANGLE Project Authors. All rights reserved. REM Use of this source code is governed by a BSD-style license that can be REM found in the LICENSE file. REM PATH %ProgramFiles(x86)%\Windows Kits\8.1\bin\x86;%DXSDK_DIR%\Utilities\bin\x86;%PATH% setlocal set errorCount=0 set successCount=0 set debug=0 if "%1" == "debug" ( set debug=1 ) if "%1" == "release" ( set debug=0 ) :: Shaders for OpenGL ES 2.0 and OpenGL ES 3.0+ :: | Input file | Entry point | Type | Output file | Debug | call:BuildShader Passthrough2D11.hlsl VS_Passthrough2D vs_4_0_level_9_3 compiled\passthrough2d11vs.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGBA2D ps_4_0_level_9_3 compiled\passthroughrgba2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughA2D ps_4_0_level_9_3 compiled\passthrougha2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGBA2DMS ps_4_1 compiled\passthroughrgba2dms11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGB2D ps_4_0_level_9_3 compiled\passthroughrgb2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRG2D ps_4_0_level_9_3 compiled\passthroughrg2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughR2D ps_4_0_level_9_3 compiled\passthroughr2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughLum2D ps_4_0_level_9_3 compiled\passthroughlum2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughLumAlpha2D ps_4_0_level_9_3 compiled\passthroughlumalpha2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGBA2D_4444 ps_4_0_level_9_3 compiled\passthroughrgba2d_4444_11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGB2D_565 ps_4_0_level_9_3 compiled\passthroughrgb2d_565_11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGBA2D_5551 ps_4_0_level_9_3 compiled\passthroughrgba2d_5551_11ps.h %debug% call:BuildShader ResolveColor.hlsl PS_ResolveColor2D ps_4_1 compiled\resolvecolor2dps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_2D ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_2D ps_4_0 compiled\multiplyalpha_ftof_um_rgba_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGB_2D ps_4_0 compiled\multiplyalpha_ftof_pm_rgb_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGB_2D ps_4_0 compiled\multiplyalpha_ftof_um_rgb_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PT_RGBA_2D ps_4_0 compiled\multiplyalpha_ftou_pt_rgba_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PM_RGBA_2D ps_4_0 compiled\multiplyalpha_ftou_pm_rgba_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_UM_RGBA_2D ps_4_0 compiled\multiplyalpha_ftou_um_rgba_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PT_RGB_2D ps_4_0 compiled\multiplyalpha_ftou_pt_rgb_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PM_RGB_2D ps_4_0 compiled\multiplyalpha_ftou_pm_rgb_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_UM_RGB_2D ps_4_0 compiled\multiplyalpha_ftou_um_rgb_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_LUMA_2D ps_4_0 compiled\multiplyalpha_ftof_pm_luma_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_LUMA_2D ps_4_0 compiled\multiplyalpha_ftof_um_luma_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_LUMAALPHA_2D ps_4_0 compiled\multiplyalpha_ftof_pm_lumaalpha_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_LUMAALPHA_2D ps_4_0 compiled\multiplyalpha_ftof_um_lumaalpha_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_4444_2D ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_4444_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_4444_2D ps_4_0 compiled\multiplyalpha_ftof_um_rgba_4444_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGB_565_2D ps_4_0 compiled\multiplyalpha_ftof_pm_rgb_565_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGB_565_2D ps_4_0 compiled\multiplyalpha_ftof_um_rgb_565_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_5551_2D ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_5551_2d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_5551_2D ps_4_0 compiled\multiplyalpha_ftof_um_rgba_5551_2d_ps.h %debug% call:BuildShader Clear11.hlsl VS_Clear_FL9 vs_4_0_level_9_3 compiled\clear11_fl9vs.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat_FL9 ps_4_0_level_9_3 compiled\clearfloat11_fl9ps.h %debug% call:BuildShader Clear11.hlsl VS_Clear vs_4_0 compiled\clear11vs.h %debug% call:BuildShader Clear11.hlsl VS_Multiview_Clear vs_4_0 compiled\clear11multiviewvs.h %debug% call:BuildShader Clear11.hlsl GS_Multiview_Clear gs_4_0 compiled\clear11multiviewgs.h %debug% call:BuildShader Clear11.hlsl PS_ClearDepth ps_4_0 compiled\cleardepth11ps.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat1 ps_4_0 compiled\clearfloat11ps1.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat2 ps_4_0 compiled\clearfloat11ps2.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat3 ps_4_0 compiled\clearfloat11ps3.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat4 ps_4_0 compiled\clearfloat11ps4.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat5 ps_4_0 compiled\clearfloat11ps5.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat6 ps_4_0 compiled\clearfloat11ps6.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat7 ps_4_0 compiled\clearfloat11ps7.h %debug% call:BuildShader Clear11.hlsl PS_ClearFloat8 ps_4_0 compiled\clearfloat11ps8.h %debug% :: Shaders for OpenGL ES 3.0+ only :: | Input file | Entry point | Type | Output file | Debug | call:BuildShader Passthrough2D11.hlsl PS_PassthroughDepth2D ps_4_0 compiled\passthroughdepth2d11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGBA2DUI ps_4_0 compiled\passthroughrgba2dui11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGBA2DI ps_4_0 compiled\passthroughrgba2di11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGB2DUI ps_4_0 compiled\passthroughrgb2dui11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRGB2DI ps_4_0 compiled\passthroughrgb2di11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRG2DUI ps_4_0 compiled\passthroughrg2dui11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughRG2DI ps_4_0 compiled\passthroughrg2di11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughR2DUI ps_4_0 compiled\passthroughr2dui11ps.h %debug% call:BuildShader Passthrough2D11.hlsl PS_PassthroughR2DI ps_4_0 compiled\passthroughr2di11ps.h %debug% call:BuildShader Passthrough3D11.hlsl VS_Passthrough3D vs_4_0 compiled\passthrough3d11vs.h %debug% call:BuildShader Passthrough3D11.hlsl GS_Passthrough3D gs_4_0 compiled\passthrough3d11gs.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGBA3D ps_4_0 compiled\passthroughrgba3d11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGBA3DUI ps_4_0 compiled\passthroughrgba3dui11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGBA3DI ps_4_0 compiled\passthroughrgba3di11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGB3D ps_4_0 compiled\passthroughrgb3d11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGB3DUI ps_4_0 compiled\passthroughrgb3dui11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGB3DI ps_4_0 compiled\passthroughrgb3di11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRG3D ps_4_0 compiled\passthroughrg3d11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRG3DUI ps_4_0 compiled\passthroughrg3dui11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRG3DI ps_4_0 compiled\passthroughrg3di11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughR3D ps_4_0 compiled\passthroughr3d11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughR3DUI ps_4_0 compiled\passthroughr3dui11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughR3DI ps_4_0 compiled\passthroughr3di11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughLum3D ps_4_0 compiled\passthroughlum3d11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughLumAlpha3D ps_4_0 compiled\passthroughlumalpha3d11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGBA3D_4444 ps_4_0 compiled\passthroughrgba3d_4444_11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGB3D_565 ps_4_0 compiled\passthroughrgb3d_565_11ps.h %debug% call:BuildShader Passthrough3D11.hlsl PS_PassthroughRGBA3D_5551 ps_4_0 compiled\passthroughrgba3d_5551_11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGBA2DArray ps_4_0 compiled\passthroughrgba2darray11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGBA2DArrayUI ps_4_0 compiled\passthroughrgba2darrayui11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGBA2DArrayI ps_4_0 compiled\passthroughrgba2darrayi11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGB2DArray ps_4_0 compiled\passthroughrgb2darray11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGB2DArrayUI ps_4_0 compiled\passthroughrgb2darrayui11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGB2DArrayI ps_4_0 compiled\passthroughrgb2darrayi11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRG2DArray ps_4_0 compiled\passthroughrg2darray11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRG2DArrayUI ps_4_0 compiled\passthroughrg2darrayui11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRG2DArrayI ps_4_0 compiled\passthroughrg2darrayi11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughR2DArray ps_4_0 compiled\passthroughr2darray11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughR2DArrayUI ps_4_0 compiled\passthroughr2darrayui11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughR2DArrayI ps_4_0 compiled\passthroughr2darrayi11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughLum2DArray ps_4_0 compiled\passthroughlum2darray11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughLumAlpha2DArray ps_4_0 compiled\passthroughlumalpha2darray11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGBA2DArray_4444 ps_4_0 compiled\passthroughrgba2darray_4444_11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGB2DArray_565 ps_4_0 compiled\passthroughrgb2darray_565_11ps.h %debug% call:BuildShader Passthrough2DArray11.hlsl PS_PassthroughRGBA2DArray_5551 ps_4_0 compiled\passthroughrgba2darray_5551_11ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_3D ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_3D ps_4_0 compiled\multiplyalpha_ftof_um_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGB_3D ps_4_0 compiled\multiplyalpha_ftof_pm_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGB_3D ps_4_0 compiled\multiplyalpha_ftof_um_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PT_RGBA_3D ps_4_0 compiled\multiplyalpha_ftou_pt_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PM_RGBA_3D ps_4_0 compiled\multiplyalpha_ftou_pm_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_UM_RGBA_3D ps_4_0 compiled\multiplyalpha_ftou_um_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PT_RGB_3D ps_4_0 compiled\multiplyalpha_ftou_pt_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PM_RGB_3D ps_4_0 compiled\multiplyalpha_ftou_pm_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_UM_RGB_3D ps_4_0 compiled\multiplyalpha_ftou_um_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PT_RGBA_3D ps_4_0 compiled\multiplyalpha_ftoi_pt_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PM_RGBA_3D ps_4_0 compiled\multiplyalpha_ftoi_pm_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_UM_RGBA_3D ps_4_0 compiled\multiplyalpha_ftoi_um_rgba_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PT_RGB_3D ps_4_0 compiled\multiplyalpha_ftoi_pt_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PM_RGB_3D ps_4_0 compiled\multiplyalpha_ftoi_pm_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_UM_RGB_3D ps_4_0 compiled\multiplyalpha_ftoi_um_rgb_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_LUMA_3D ps_4_0 compiled\multiplyalpha_ftof_pm_luma_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_LUMA_3D ps_4_0 compiled\multiplyalpha_ftof_um_luma_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_LUMAALPHA_3D ps_4_0 compiled\multiplyalpha_ftof_pm_lumaalpha_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_LUMAALPHA_3D ps_4_0 compiled\multiplyalpha_ftof_um_lumaalpha_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_4444_3D ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_4444_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_4444_3D ps_4_0 compiled\multiplyalpha_ftof_um_rgba_4444_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGB_565_3D ps_4_0 compiled\multiplyalpha_ftof_pm_rgb_565_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGB_565_3D ps_4_0 compiled\multiplyalpha_ftof_um_rgb_565_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_5551_3D ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_5551_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_5551_3D ps_4_0 compiled\multiplyalpha_ftof_um_rgba_5551_3d_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PT_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftou_pt_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PM_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftou_pm_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_UM_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftou_um_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PT_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftou_pt_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_PM_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftou_pm_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoU_UM_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftou_um_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PT_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftoi_pt_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PM_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftoi_pm_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_UM_RGBA_2DArray ps_4_0 compiled\multiplyalpha_ftoi_um_rgba_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PT_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftoi_pt_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_PM_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftoi_pm_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoI_UM_RGB_2DArray ps_4_0 compiled\multiplyalpha_ftoi_um_rgb_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_LUMA_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_luma_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_LUMA_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_luma_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_LUMAALPHA_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_lumaalpha_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_LUMAALPHA_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_lumaalpha_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_4444_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_4444_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_4444_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_rgba_4444_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGB_565_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_rgb_565_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGB_565_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_rgb_565_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_PM_RGBA_5551_2DArray ps_4_0 compiled\multiplyalpha_ftof_pm_rgba_5551_2darray_ps.h %debug% call:BuildShader MultiplyAlpha.hlsl PS_FtoF_UM_RGBA_5551_2DArray ps_4_0 compiled\multiplyalpha_ftof_um_rgba_5551_2darray_ps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleF2D ps_4_0 compiled\swizzlef2dps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleI2D ps_4_0 compiled\swizzlei2dps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleUI2D ps_4_0 compiled\swizzleui2dps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleF3D ps_4_0 compiled\swizzlef3dps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleI3D ps_4_0 compiled\swizzlei3dps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleUI3D ps_4_0 compiled\swizzleui3dps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleF2DArray ps_4_0 compiled\swizzlef2darrayps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleI2DArray ps_4_0 compiled\swizzlei2darrayps.h %debug% call:BuildShader Swizzle11.hlsl PS_SwizzleUI2DArray ps_4_0 compiled\swizzleui2darrayps.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint1 ps_4_0 compiled\clearuint11ps1.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint2 ps_4_0 compiled\clearuint11ps2.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint3 ps_4_0 compiled\clearuint11ps3.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint4 ps_4_0 compiled\clearuint11ps4.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint5 ps_4_0 compiled\clearuint11ps5.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint6 ps_4_0 compiled\clearuint11ps6.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint7 ps_4_0 compiled\clearuint11ps7.h %debug% call:BuildShader Clear11.hlsl PS_ClearUint8 ps_4_0 compiled\clearuint11ps8.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint1 ps_4_0 compiled\clearsint11ps1.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint2 ps_4_0 compiled\clearsint11ps2.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint3 ps_4_0 compiled\clearsint11ps3.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint4 ps_4_0 compiled\clearsint11ps4.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint5 ps_4_0 compiled\clearsint11ps5.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint6 ps_4_0 compiled\clearsint11ps6.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint7 ps_4_0 compiled\clearsint11ps7.h %debug% call:BuildShader Clear11.hlsl PS_ClearSint8 ps_4_0 compiled\clearsint11ps8.h %debug% call:BuildShader BufferToTexture11.hlsl VS_BufferToTexture vs_4_0 compiled/buffertotexture11_vs.h %debug% call:BuildShader BufferToTexture11.hlsl GS_BufferToTexture gs_4_0 compiled/buffertotexture11_gs.h %debug% call:BuildShader BufferToTexture11.hlsl PS_BufferToTexture_4F ps_4_0 compiled/buffertotexture11_ps_4f.h %debug% call:BuildShader BufferToTexture11.hlsl PS_BufferToTexture_4I ps_4_0 compiled/buffertotexture11_ps_4i.h %debug% call:BuildShader BufferToTexture11.hlsl PS_BufferToTexture_4UI ps_4_0 compiled/buffertotexture11_ps_4ui.h %debug% call:BuildShader ResolveDepthStencil.hlsl VS_ResolveDepthStencil vs_4_1 compiled/resolvedepthstencil11_vs.h %debug% call:BuildShader ResolveDepthStencil.hlsl PS_ResolveDepth ps_4_1 compiled/resolvedepth11_ps.h %debug% call:BuildShader ResolveDepthStencil.hlsl PS_ResolveDepthStencil ps_4_1 compiled/resolvedepthstencil11_ps.h %debug% call:BuildShader ResolveDepthStencil.hlsl PS_ResolveStencil ps_4_1 compiled/resolvestencil11_ps.h %debug% echo. if %successCount% GTR 0 ( echo %successCount% shaders compiled successfully. ) if %errorCount% GTR 0 ( echo There were %errorCount% shader compilation errors. ) endlocal exit /b :BuildShader set input=%~1 set entry=%~2 set type=%~3 set output=%~4 set debug=%~5 if %debug% == 0 ( set "buildCMD=fxc /nologo /E %entry% /T %type% /Fh %output% %input%" ) else ( set "buildCMD=fxc /nologo /Zi /Od /E %entry% /T %type% /Fh %output% %input%" ) set error=0 %buildCMD% || set error=1 if %error% == 0 ( set /a successCount=%successCount%+1 ) else ( set /a errorCount=%errorCount%+1 ) exit /b
endlessm/chromium-browser
third_party/angle/src/libANGLE/renderer/d3d/d3d11/shaders/generate_shaders.bat
bat
bsd-3-clause
23,509
golint ./... go vet ./...
Originate/morula
bin/lint.cmd
bat
isc
26
copy ..\style\base.css . saxon math.xml ../style/module.xsl cd functions cd min copy ..\..\..\style\base.css . saxon math.min.xml ../../../style/function.xsl wzzip -P -o math.min.zip @math.min.package.txt wzzip -P -o math.min.use-cases.zip @math.min.use-cases.txt cd .. cd .. cd functions cd max copy ..\..\..\style\base.css . saxon math.max.xml ../../../style/function.xsl wzzip -P -o math.max.zip @math.max.package.txt wzzip -P -o math.max.use-cases.zip @math.max.use-cases.txt cd .. cd .. cd functions cd highest copy ..\..\..\style\base.css . saxon math.highest.xml ../../../style/function.xsl wzzip -P -o math.highest.zip @math.highest.package.txt wzzip -P -o math.highest.use-cases.zip @math.highest.use-cases.txt cd .. cd .. cd functions cd lowest copy ..\..\..\style\base.css . saxon math.lowest.xml ../../../style/function.xsl wzzip -P -o math.lowest.zip @math.lowest.package.txt wzzip -P -o math.lowest.use-cases.zip @math.lowest.use-cases.txt cd .. cd .. cd functions cd abs copy ..\..\..\style\base.css . saxon math.abs.xml ../../../style/function.xsl wzzip -P -o math.abs.zip @math.abs.package.txt wzzip -P -o math.abs.use-cases.zip @math.abs.use-cases.txt cd .. cd .. cd functions cd sqrt copy ..\..\..\style\base.css . saxon math.sqrt.xml ../../../style/function.xsl wzzip -P -o math.sqrt.zip @math.sqrt.package.txt wzzip -P -o math.sqrt.use-cases.zip @math.sqrt.use-cases.txt cd .. cd .. cd functions cd power copy ..\..\..\style\base.css . saxon math.power.xml ../../../style/function.xsl wzzip -P -o math.power.zip @math.power.package.txt wzzip -P -o math.power.use-cases.zip @math.power.use-cases.txt cd .. cd .. cd functions cd constant copy ..\..\..\style\base.css . saxon math.constant.xml ../../../style/function.xsl wzzip -P -o math.constant.zip @math.constant.package.txt wzzip -P -o math.constant.use-cases.zip @math.constant.use-cases.txt cd .. cd .. cd functions cd log copy ..\..\..\style\base.css . saxon math.log.xml ../../../style/function.xsl wzzip -P -o math.log.zip @math.log.package.txt wzzip -P -o math.log.use-cases.zip @math.log.use-cases.txt cd .. cd .. cd functions cd random copy ..\..\..\style\base.css . saxon math.random.xml ../../../style/function.xsl wzzip -P -o math.random.zip @math.random.package.txt wzzip -P -o math.random.use-cases.zip @math.random.use-cases.txt cd .. cd .. cd functions cd sin copy ..\..\..\style\base.css . saxon math.sin.xml ../../../style/function.xsl wzzip -P -o math.sin.zip @math.sin.package.txt wzzip -P -o math.sin.use-cases.zip @math.sin.use-cases.txt cd .. cd .. cd functions cd cos copy ..\..\..\style\base.css . saxon math.cos.xml ../../../style/function.xsl wzzip -P -o math.cos.zip @math.cos.package.txt wzzip -P -o math.cos.use-cases.zip @math.cos.use-cases.txt cd .. cd .. cd functions cd tan copy ..\..\..\style\base.css . saxon math.tan.xml ../../../style/function.xsl wzzip -P -o math.tan.zip @math.tan.package.txt wzzip -P -o math.tan.use-cases.zip @math.tan.use-cases.txt cd .. cd .. cd functions cd asin copy ..\..\..\style\base.css . saxon math.asin.xml ../../../style/function.xsl wzzip -P -o math.asin.zip @math.asin.package.txt wzzip -P -o math.asin.use-cases.zip @math.asin.use-cases.txt cd .. cd .. cd functions cd acos copy ..\..\..\style\base.css . saxon math.acos.xml ../../../style/function.xsl wzzip -P -o math.acos.zip @math.acos.package.txt wzzip -P -o math.acos.use-cases.zip @math.acos.use-cases.txt cd .. cd .. cd functions cd atan copy ..\..\..\style\base.css . saxon math.atan.xml ../../../style/function.xsl wzzip -P -o math.atan.zip @math.atan.package.txt wzzip -P -o math.atan.use-cases.zip @math.atan.use-cases.txt cd .. cd .. cd functions cd atan2 copy ..\..\..\style\base.css . saxon math.atan2.xml ../../../style/function.xsl wzzip -P -o math.atan2.zip @math.atan2.package.txt wzzip -P -o math.atan2.use-cases.zip @math.atan2.use-cases.txt cd .. cd .. cd functions cd exp copy ..\..\..\style\base.css . saxon math.exp.xml ../../../style/function.xsl wzzip -P -o math.exp.zip @math.exp.package.txt wzzip -P -o math.exp.use-cases.zip @math.exp.use-cases.txt cd .. cd .. wzzip -P -o math.zip @math.package.txt cd .. saxon modules.xml style/home.xsl saxon modules.xml style/package.xsl wzzip -P -o all-exslt.zip @package.txt saxon modules.xml style/xml-package.xsl wzzip -P -o exslt.zip @xml-package.txt cd math
exslt/exslt.github.io
math/update.bat
bat
mit
4,326
cd .. vagrant reload
sergeydt/grunt-mocha-test
vagrant-scripts/vagrant-reload.bat
bat
mit
23
@echo off setlocal set MANUAL=KSP Reference Manual(6.0.2).txt python ExtractCallbackFromManual.py "%MANUAL%" > extract_callback.txt python ExtractCommandFromManual.py "%MANUAL%" > extract_command.txt python ExtractVariableFromManual.py "%MANUAL%" > extract_variables.txt endlocal
r-koubou/vscode-syntax-for-ksp
data/extract.bat
bat
mit
295
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\AnsibleSymphony.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\AnsibleSymphony.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
istresearch/ansible-symphony
docs/make.bat
bat
mit
7,262
nodemon bot.js
hazulu/DiscordRPGBot
run.bat
bat
mit
14
C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe BrowseMonkey.build.xml /t:Build /p:BuildConfig=Release;VisualStudioVersion=12.0;DebugType=full;PreBuildEvent=;PostBuildEvent=;OutputPath=..\..\_build;DeployOnBuild=true;DeployTarget=Package
shukriadams/browsemonkey
build/build.bat
bat
mit
248
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Invenio-REST.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Invenio-REST.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
inveniosoftware/invenio-rest
docs/make.bat
bat
mit
6,993
SET mypath=%~dp0 SET path_to_index=%mypath:~0,-1%\..\index.html "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" %path_to_index% --args -allow-file-access-from-files
waldobronchart/ShortcutMapper
utils/launch_chrome.bat
bat
mit
179
cls SETLOCAL ENABLEEXTENSIONS @pushd "%~dp0" @set location=%~dp0 @echo %DATE% %TIME% @set EXIT_CODE=0 @call reset @cmd.exe /C a.cmd @if ERRORLEVEL 1 call :ERROR "a failed" @cmd.exe /C b @if ERRORLEVEL 1 call :ERROR "b failed" @cmd.exe /C c @if ERRORLEVEL 1 call :ERROR "c failed" @call SynchronizeEnvironment @call report @goto :SUCCESS :ERROR set EXIT_CODE=1 @call log %~n0: exited with error %1 echo %name%: %EXIT_CODE% :SUCCESS @popd @echo %DATE% %TIME% %~n0 @exit /b %EXIT_CODE%
mvw684/Experiments
BatchFile/UseInvoke.cmd
bat
mit
490
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: :: Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). :: All rights reserved. :: Contact: Nokia Corporation (qt-info@nokia.com) :: :: This file is part of the tools applications of the Qt Toolkit. :: :: $QT_BEGIN_LICENSE:LGPL$ :: Commercial Usage :: Licensees holding valid Qt Commercial licenses may use this file in :: accordance with the Qt Commercial License Agreement provided with the :: Software or, alternatively, in accordance with the terms contained in :: a written agreement between you and Nokia. :: :: GNU Lesser General Public License Usage :: Alternatively, this file may be used under the terms of the GNU Lesser :: General Public License version 2.1 as published by the Free Software :: Foundation and appearing in the file LICENSE.LGPL included in the :: packaging of this file. Please review the following information to :: ensure the GNU Lesser General Public License version 2.1 requirements :: will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. :: :: In addition, as a special exception, Nokia gives you certain additional :: rights. These rights are described in the Nokia Qt LGPL Exception :: version 1.1, included in the file LGPL_EXCEPTION.txt in this package. :: :: GNU General Public License Usage :: Alternatively, this file may be used under the terms of the GNU :: General Public License version 3.0 as published by the Free Software :: Foundation and appearing in the file LICENSE.GPL included in the :: packaging of this file. Please review the following information to :: ensure the GNU General Public License version 3.0 requirements will be :: met: http://www.gnu.org/copyleft/gpl.html. :: :: If you have questions regarding the use of this file, please contact :: Nokia at qt-info@nokia.com. :: $QT_END_LICENSE$ :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: set IWMAKE_RESULT=%1 if [%IWMAKE_RESULT%]==[] goto :eof set IWMAKE_RESULT=%IWMAKE_RESULT:a=A% set IWMAKE_RESULT=%IWMAKE_RESULT:b=B% set IWMAKE_RESULT=%IWMAKE_RESULT:c=C% set IWMAKE_RESULT=%IWMAKE_RESULT:d=D% set IWMAKE_RESULT=%IWMAKE_RESULT:e=E% set IWMAKE_RESULT=%IWMAKE_RESULT:f=F% set IWMAKE_RESULT=%IWMAKE_RESULT:g=G% set IWMAKE_RESULT=%IWMAKE_RESULT:h=H% set IWMAKE_RESULT=%IWMAKE_RESULT:i=I% set IWMAKE_RESULT=%IWMAKE_RESULT:j=J% set IWMAKE_RESULT=%IWMAKE_RESULT:k=K% set IWMAKE_RESULT=%IWMAKE_RESULT:l=L% set IWMAKE_RESULT=%IWMAKE_RESULT:m=M% set IWMAKE_RESULT=%IWMAKE_RESULT:n=N% set IWMAKE_RESULT=%IWMAKE_RESULT:o=O% set IWMAKE_RESULT=%IWMAKE_RESULT:p=P% set IWMAKE_RESULT=%IWMAKE_RESULT:q=Q% set IWMAKE_RESULT=%IWMAKE_RESULT:r=R% set IWMAKE_RESULT=%IWMAKE_RESULT:s=S% set IWMAKE_RESULT=%IWMAKE_RESULT:t=T% set IWMAKE_RESULT=%IWMAKE_RESULT:u=U% set IWMAKE_RESULT=%IWMAKE_RESULT:v=V% set IWMAKE_RESULT=%IWMAKE_RESULT:w=W% set IWMAKE_RESULT=%IWMAKE_RESULT:x=X% set IWMAKE_RESULT=%IWMAKE_RESULT:y=Y% set IWMAKE_RESULT=%IWMAKE_RESULT:z=Z%
librelab/qtmoko-test
qtopiacore/qt/tools/installer/batch/toupper.bat
bat
gpl-2.0
2,993
cmd_arch/arm/lib/putuser.o := /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/scripts/gcc-wrapper.py /home/lupohirp/Scrivania/android-toolchain-eabi/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.putuser.o.d -nostdinc -isystem /home/lupohirp/Scrivania/android-toolchain-eabi/bin/../lib/gcc/arm-eabi/4.7.3/include -I/home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/putuser.o arch/arm/lib/putuser.S source_arch/arm/lib/putuser.o := arch/arm/lib/putuser.S deps_arch/arm/lib/putuser.o := \ $(wildcard include/config/thumb2/kernel.h) \ /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include/asm/linkage.h \ /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ arch/arm/lib/putuser.o: $(deps_arch/arm/lib/putuser.o) $(deps_arch/arm/lib/putuser.o):
lupohirp/Acer_Liquid_Glow_Kernel
arch/arm/lib/.putuser.o.cmd
bat
gpl-2.0
1,946
@echo off rem rem buildwin.cmd rem rem command-line build script for MS Visual Studio rem rem Usage: rem ------ rem buildwin VS_VERSION LINKMODE CONFIGURATION SAMPLES rem buildwin {71|80|90} [static|shared|both] [release|debug|both] [yes|no] rem rem VS_VERSION is required argument. Default is build all. rem Change OPENSSL_DIR to match your setup set OPENSSL_DIR=c:\OpenSSL set OPENSSL_INCLUDE=%OPENSSL_DIR%\include set OPENSSL_LIB=%OPENSSL_DIR%\lib\VC set INCLUDE=%INCLUDE%;%OPENSSL_INCLUDE% set LIB=%LIB%;%OPENSSL_LIB% set POCOBASE=%CD% rem VS version {71|80|90} if "%1"=="" goto usage set VS_VERSION=vs%1 rem Action [build|rebuild|clean] set ACTION=%2 if not "%ACTION%"=="build" ( if not "%ACTION%"=="rebuild" ( if not "%ACTION%"=="clean" goto usage)) rem Link mode [static|shared|both] set LINK_MODE=%3 if not "%LINK_MODE%"=="static" ( if not "%LINK_MODE%"=="shared" ( if not "%LINK_MODE%"=="" ( if not "%LINK_MODE%"=="both" goto usage))) rem Configuration [release|debug|both] set CONFIGURATION=%4 if not "%CONFIGURATION%"=="release" ( if not "%CONFIGURATION%"=="debug" ( if not "%CONFIGURATION%"=="" ( if not "%CONFIGURATION%"=="both" goto usage))) rem Samples [yes|no] set SAMPLES=%5 if "%SAMPLES%"=="" (set SAMPLES=yes) set RELEASE_SHARED=0 set DEBUG_SHARED=0 set DEBUG_STATIC=0 set RELEASE_STATIC=0 if "%LINK_MODE%"=="shared" ( if "%CONFIGURATION%"=="release" (set RELEASE_SHARED=1) else ( if "%CONFIGURATION%"=="both" (set RELEASE_SHARED=1) else ( if "%CONFIGURATION%"=="" (set RELEASE_SHARED=1)))) if "%LINK_MODE%"=="shared" ( if "%CONFIGURATION%"=="debug" (set DEBUG_SHARED=1) else ( if "%CONFIGURATION%"=="both" (set DEBUG_SHARED=1) else ( if "%CONFIGURATION%"=="" (set DEBUG_SHARED=1)))) if "%LINK_MODE%"=="static" ( if "%CONFIGURATION%"=="release" (set RELEASE_STATIC=1) else ( if "%CONFIGURATION%"=="both" (set RELEASE_STATIC=1) else ( if "%CONFIGURATION%"=="" (set RELEASE_STATIC=1)))) if "%LINK_MODE%"=="static" ( if "%CONFIGURATION%"=="debug" (set DEBUG_STATIC=1) else ( if "%CONFIGURATION%"=="both" (set DEBUG_STATIC=1) else ( if "%CONFIGURATION%"=="" (set DEBUG_STATIC=1)))) if "%LINK_MODE%"=="both" ( if "%CONFIGURATION%"=="debug" ( set DEBUG_STATIC=1 set DEBUG_SHARED=1) else ( if "%CONFIGURATION%"=="release" ( set RELEASE_STATIC=1 set RELEASE_SHARED=1) else ( if "%CONFIGURATION%"=="both" ( set DEBUG_STATIC=1 set DEBUG_SHARED=1 set RELEASE_STATIC=1 set RELEASE_SHARED=1) else ( if "%CONFIGURATION%"=="" ( set DEBUG_STATIC=1 set DEBUG_SHARED=1 set RELEASE_STATIC=1 set RELEASE_SHARED=1))))) if "%LINK_MODE%"=="" ( if "%CONFIGURATION%"=="debug" ( set DEBUG_STATIC=1 set DEBUG_SHARED=1) else ( if "%CONFIGURATION%"=="release" ( set RELEASE_STATIC=1 set RELEASE_SHARED=1) else ( if "%CONFIGURATION%"=="both" ( set DEBUG_STATIC=1 set DEBUG_SHARED=1 set RELEASE_STATIC=1 set RELEASE_SHARED=1) else ( if "%CONFIGURATION%"=="" ( set DEBUG_STATIC=1 set DEBUG_SHARED=1 set RELEASE_STATIC=1 set RELEASE_SHARED=1))))) cd CppUnit if %DEBUG_SHARED%==1 (devenv /useenv /%ACTION% debug_shared CppUnit_%VS_VERSION%.sln) if %RELEASE_SHARED%==1 (devenv /useenv /%ACTION% release_shared CppUnit_%VS_VERSION%.sln) if %DEBUG_STATIC%==1 (devenv /useenv /%ACTION% debug_static CppUnit_%VS_VERSION%.sln) if %RELEASE_STATIC%==1 (devenv /useenv /%ACTION% release_static CppUnit_%VS_VERSION%.sln) cd %POCOBASE% cd Foundation if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared Foundation_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared Foundation_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static Foundation_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static Foundation_%VS_VERSION%.sln cd %POCOBASE% cd XML if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared XML_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared XML_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static XML_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static XML_%VS_VERSION%.sln cd %POCOBASE% cd Util if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared Util_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared Util_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static Util_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static Util_%VS_VERSION%.sln cd %POCOBASE% cd Net if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared Net_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared Net_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static Net_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static Net_%VS_VERSION%.sln cd %POCOBASE% cd NetSSL_OpenSSL if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared NetSSL_OpenSSL_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared NetSSL_OpenSSL_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static NetSSL_OpenSSL_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static NetSSL_OpenSSL_%VS_VERSION%.sln cd %POCOBASE% cd Data if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared Data_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared Data_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static Data_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static Data_%VS_VERSION%.sln cd %POCOBASE% cd Data/SQLite if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared SQLite_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared SQLite_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static SQLite_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static SQLite_%VS_VERSION%.sln cd %POCOBASE% cd Data/ODBC if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared ODBC_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared ODBC_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static ODBC_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static ODBC_%VS_VERSION%.sln cd %POCOBASE% if "%SAMPLES%"=="no" goto :EOF cd Foundation/samples if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared samples_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared samples_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static samples_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static samples_%VS_VERSION%.sln cd %POCOBASE% cd XML/samples if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared samples_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared samples_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static samples_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static samples_%VS_VERSION%.sln cd %POCOBASE% cd Util/samples if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared samples_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared samples_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static samples_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static samples_%VS_VERSION%.sln cd %POCOBASE% cd Net/samples if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared samples_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared samples_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static samples_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static samples_%VS_VERSION%.sln cd %POCOBASE% cd NetSSL_OpenSSL/samples if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared samples_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared samples_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static samples_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static samples_%VS_VERSION%.sln cd %POCOBASE% cd Data/samples if %DEBUG_SHARED%==1 devenv /useenv /%ACTION% debug_shared samples_%VS_VERSION%.sln if %RELEASE_SHARED%==1 devenv /useenv /%ACTION% release_shared samples_%VS_VERSION%.sln if %DEBUG_STATIC%==1 devenv /useenv /%ACTION% debug_static samples_%VS_VERSION%.sln if %RELEASE_STATIC%==1 devenv /useenv /%ACTION% release_static samples_%VS_VERSION%.sln cd %POCOBASE% goto :EOF :usage echo Usage: echo ------ echo buildwin VS_VERSION ACTION [LINKMODE] [CONFIGURATION] [SAMPLES] echo "buildwin {71|80|90} [build|rebuild|clean] [static|shared|both] [release|debug|both] [yes|no]"
carvalhomb/tsmells
sample/poco/poco/buildwin.cmd
bat
gpl-2.0
9,107
@echo off set GRASS_VERSION=6.4.2 set BUILDDIR=%CD%\build REM set BUILDDIR=%TEMP%\qgis_unstable set LOG=%BUILDDIR%\build.log if not exist "%BUILDDIR%" mkdir %BUILDDIR% if not exist "%BUILDDIR%" goto error set VERSION=%1 set PACKAGE=%2 set PACKAGENAME=%3 if "%VERSION%"=="" goto error if "%PACKAGE%"=="" goto error if "%PACKAGENAME%"=="" set PACKAGENAME=qgis-dev path %SYSTEMROOT%\system32;%SYSTEMROOT%;%SYSTEMROOT%\System32\Wbem;%PROGRAMFILES%\CMake 2.8\bin set PYTHONPATH= set VS90COMNTOOLS=%PROGRAMFILES%\Microsoft Visual Studio 9.0\Common7\Tools\ call "%PROGRAMFILES%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" x86 if "%OSGEO4W_ROOT%"=="" set OSGEO4W_ROOT=%PROGRAMFILES%\OSGeo4W if not exist "%OSGEO4W_ROOT%\bin\o4w_env.bat" goto error call "%OSGEO4W_ROOT%\bin\o4w_env.bat" set O4W_ROOT=%OSGEO4W_ROOT:\=/% set LIB_DIR=%O4W_ROOT% set DEVENV= if exist "%DevEnvDir%\vcexpress.exe" set DEVENV=vcexpress if exist "%DevEnvDir%\devenv.exe" set DEVENV=devenv if "%DEVENV%"=="" goto error PROMPT qgis%VERSION%$g set BUILDCONF=RelWithDebInfo REM set BUILDCONF=Release cd ..\.. set SRCDIR=%CD% if "%BUILDDIR:~1,1%"==":" %BUILDDIR:~0,2% cd %BUILDDIR% if not exist build.log goto build REM REM try renaming the logfile to see if it's locked REM if exist build.tmp del build.tmp if exist build.tmp goto error ren build.log build.tmp if exist build.log goto locked if not exist build.tmp goto locked ren build.tmp build.log if exist build.tmp goto locked if not exist build.log goto locked goto build :locked echo Logfile locked if exist build.tmp del build.tmp goto error :build echo Logging to %LOG% echo BEGIN: %DATE% %TIME%>>%LOG% 2>&1 if errorlevel 1 goto error set >buildenv.log if exist CMakeCache.txt goto skipcmake echo CMAKE: %DATE% %TIME%>>%LOG% 2>&1 if errorlevel 1 goto error set LIB=%LIB%;%OSGEO4W_ROOT%\lib set INCLUDE=%INCLUDE%;%OSGEO4W_ROOT%\include cmake -G "Visual Studio 9 2008" ^ -D PEDANTIC=TRUE ^ -D WITH_SPATIALITE=TRUE ^ -D WITH_MAPSERVER=TRUE ^ -D WITH_GLOBE=TRUE ^ -D CMAKE_BUILD_TYPE=%BUILDCONF% ^ -D CMAKE_CONFIGURATION_TYPES=%BUILDCONF% ^ -D GEOS_LIBRARY=%OSGEO4W_ROOT%/lib/geos_c_i.lib ^ -D SQLITE3_LIBRARY=%OSGEO4W_ROOT%/lib/sqlite3_i.lib ^ -D SPATIALITE_LIBRARY=%OSGEO4W_ROOT%/lib/spatialite_i.lib ^ -D PYTHON_EXECUTABLE=%O4W_ROOT%/bin/python.exe ^ -D PYTHON_INCLUDE_PATH=%O4W_ROOT%/apps/Python27/include ^ -D PYTHON_LIBRARY=%O4W_ROOT%/apps/Python27/libs/python27.lib ^ -D SIP_BINARY_PATH=%O4W_ROOT%/apps/Python27/sip.exe ^ -D GRASS_PREFIX=%O4W_ROOT%/apps/grass/grass-%GRASS_VERSION% ^ -D QT_BINARY_DIR=%O4W_ROOT%/bin ^ -D QT_LIBRARY_DIR=%O4W_ROOT%/lib ^ -D QT_HEADERS_DIR=%O4W_ROOT%/include/qt4 ^ -D QT_ZLIB_LIBRARY=%O4W_ROOT%/lib/zlib.lib ^ -D QT_PNG_LIBRARY=%O4W_ROOT%/lib/libpng13.lib ^ -D QWT_INCLUDE_DIR=%O4W_ROOT%/include/qwt ^ -D QWT_LIBRARY=%O4W_ROOT%/lib/qwt5.lib ^ -D ZLIB_INCLUDE_DIR=%O4W_ROOT%/include ^ -D ZLIB_LIBRARY=%O4W_ROOT%/lib/zlib.lib ^ -D CMAKE_INSTALL_PREFIX=%O4W_ROOT%/apps/%PACKAGENAME% ^ -D CMAKE_CXX_FLAGS_RELWITHDEBINFO="/MD /ZI /Od /D NDEBUG" ^ -D FCGI_INCLUDE_DIR=%O4W_ROOT%/include ^ -D FCGI_LIBRARY=%O4W_ROOT%/lib/libfcgi.lib ^ %SRCDIR%>>%LOG% 2>&1 if errorlevel 1 goto error REM bail out if python or grass was not found grep -Eq "^(Python not being built|Could not find GRASS)" %LOG% if not errorlevel 1 goto error :skipcmake echo ZERO_CHECK: %DATE% %TIME%>>%LOG% 2>&1 %DEVENV% qgis%VERSION%.sln /Project ZERO_CHECK /Build %BUILDCONF% /Out %LOG%>>%LOG% 2>&1 if errorlevel 1 goto error echo ALL_BUILD: %DATE% %TIME%>>%LOG% 2>&1 %DEVENV% qgis%VERSION%.sln /Project ALL_BUILD /Build %BUILDCONF% /Out %LOG%>>%LOG% 2>&1 if errorlevel 1 goto error echo INSTALL: %DATE% %TIME%>>%LOG% 2>&1 %DEVENV% qgis%VERSION%.sln /Project INSTALL /Build %BUILDCONF% /Out %LOG%>>%LOG% 2>&1 if errorlevel 1 goto error echo PACKAGE: %DATE% %TIME%>>%LOG% 2>&1 cd .. sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' postinstall.bat >%OSGEO4W_ROOT%\etc\postinstall\%PACKAGENAME%.bat sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' preremove.bat >%OSGEO4W_ROOT%\etc\preremove\%PACKAGENAME%.bat sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' qgis.bat.tmpl >%OSGEO4W_ROOT%\bin\%PACKAGENAME%.bat.tmpl sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' browser.bat.tmpl >%OSGEO4W_ROOT%\bin\%PACKAGENAME%-browser.bat.tmpl sed -e 's/@package@/%PACKAGENAME%/g' -e 's/@version@/%VERSION%/g' -e 's/@grassversion@/%GRASS_VERSION%/g' qgis.reg.tmpl >%OSGEO4W_ROOT%\apps\%PACKAGENAME%\bin\qgis.reg.tmpl REM sed -e 's/%OSGEO4W_ROOT:\=\\\\\\\\%/@osgeo4w@/' %OSGEO4W_ROOT%\apps\%PACKAGENAME%\python\qgis\qgisconfig.py >%OSGEO4W_ROOT%\apps\%PACKAGENAME%\python\qgis\qgisconfig.py.tmpl REM if errorlevel 1 goto error REM del %OSGEO4W_ROOT%\apps\%PACKAGENAME%\python\qgis\qgisconfig.py touch exclude tar -C %OSGEO4W_ROOT% -cjf %PACKAGENAME%-%VERSION%-%PACKAGE%.tar.bz2 ^ --exclude-from exclude ^ --exclude "*.pyc" ^ --exclude "apps/%PACKAGENAME%/themes/classic/grass" ^ --exclude "apps/%PACKAGENAME%/themes/default/grass" ^ --exclude "apps/%PACKAGENAME%/themes/gis/grass" ^ --exclude "apps/%PACKAGENAME%/grass" ^ --exclude "apps/%PACKAGENAME%/bin/qgisgrass.dll" ^ --exclude "apps/%PACKAGENAME%/plugins/grassrasterprovider.dll" ^ --exclude "apps/%PACKAGENAME%/plugins/grassplugin.dll" ^ --exclude "apps/%PACKAGENAME%/plugins/grassprovider.dll" ^ --exclude "apps/%PACKAGENAME%/plugins/globeplugin.dll" ^ apps/%PACKAGENAME% ^ bin/%PACKAGENAME%.bat.tmpl ^ bin/%PACKAGENAME%-browser.bat.tmpl ^ etc/postinstall/%PACKAGENAME%.bat ^ etc/preremove/%PACKAGENAME%.bat ^ >>%LOG% 2>&1 if errorlevel 1 goto error tar -C %OSGEO4W_ROOT% -cjf %PACKAGENAME%-grass-plugin-%VERSION%-%PACKAGE%.tar.bz2 ^ --exclude-from exclude ^ --exclude "*.pyc" ^ "apps/%PACKAGENAME%/themes/classic/grass" ^ "apps/%PACKAGENAME%/themes/default/grass" ^ "apps/%PACKAGENAME%/themes/gis/grass" ^ "apps/%PACKAGENAME%/grass" ^ "apps/%PACKAGENAME%/bin/qgisgrass.dll" ^ "apps/%PACKAGENAME%/plugins/grassrasterprovider.dll" ^ "apps/%PACKAGENAME%/plugins/grassplugin.dll" ^ "apps/%PACKAGENAME%/plugins/grassprovider.dll" ^ >>%LOG% 2>&1 if errorlevel 1 goto error tar -C %OSGEO4W_ROOT% -cjf %PACKAGENAME%-globe-plugin-%VERSION%-%PACKAGE%.tar.bz2 ^ "apps/%PACKAGENAME%/globe" ^ "apps/%PACKAGENAME%/plugins/globeplugin.dll" ^ >>%LOG% 2>&1 if errorlevel 1 goto error goto end :error echo BUILD ERROR %ERRORLEVEL%: %DATE% %TIME% echo BUILD ERROR %ERRORLEVEL%: %DATE% %TIME%>>%LOG% 2>&1 if exist %PACKAGENAME%-%VERSION%-%PACKAGE%.tar.bz2 del %PACKAGENAME%-%VERSION%-%PACKAGE%.tar.bz2 if exist %PACKAGENAME%-grass-plugin-%VERSION%-%PACKAGE%.tar.bz2 del %PACKAGENAME%-grass-plugin-%VERSION%-%PACKAGE%.tar.bz2 :end echo FINISHED: %DATE% %TIME% >>%LOG% 2>&1
imincik/pkg-qgis-1.8
ms-windows/osgeo4w/package.cmd
bat
gpl-2.0
7,150
cmd_kernel/user.o := arm-eabi-gcc -Wp,-MD,kernel/.user.o.d -nostdinc -isystem /home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -I/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(user)" -D"KBUILD_MODNAME=KBUILD_STR(user)" -c -o kernel/user.o kernel/user.c deps_kernel/user.o := \ kernel/user.c \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/prove/rcu.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/preempt/notifiers.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/compat.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/security/sealimemodule.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/cgroup/sched.h) \ $(wildcard include/config/mm/owner.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/capability.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/posix_types.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include/stdarg.h \ include/linux/linkage.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/linkage.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitops.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/irqflags.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hwcap.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ arch/arm/mach-tegra/include/mach/barriers.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/div64.h \ include/linux/timex.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ include/linux/thread_info.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/processor.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ include/linux/rwlock_types.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/param.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/timex.h \ arch/arm/mach-tegra/include/mach/timex.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/cpumask.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/string.h \ include/linux/errno.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/nodemask.h \ $(wildcard include/config/highmem.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/completion.h \ include/linux/wait.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/current.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/sparsemem.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/zone/dma.h) \ include/linux/const.h \ arch/arm/mach-tegra/include/mach/memory.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/smp.h \ arch/arm/mach-tegra/include/mach/smp.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hardware/gic.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ipcbuf.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/rcutree.h \ include/linux/signal.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sigcontext.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/no/bootmem.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) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/mutex.h \ include/linux/srcu.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/gfp.h \ $(wildcard include/config/debug/vm.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/slab_def.h \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/events/gfpflags.h \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/kmalloc_sizes.h \ include/linux/interrupt.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/irqnr.h \ include/linux/hardirq.h \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hardirq.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/irq.h \ arch/arm/mach-tegra/include/mach/irqs.h \ $(wildcard include/config/arch/tegra/2x/soc.h) \ include/linux/irq_cpustat.h \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ include/linux/stat.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/stat.h \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/elf.h \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/linux/user_namespace.h \ $(wildcard include/config/user/ns.h) \ include/linux/nsproxy.h \ $(wildcard include/config/cgroup/ns.h) \ include/linux/err.h \ kernel/user.o: $(deps_kernel/user.o) $(deps_kernel/user.o):
timmytim/honeybutter_kernel
kernel/.user.o.cmd
bat
gpl-2.0
24,236
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/not.o := ld -m elf_i386 -r -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/not.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/objects/hal/components/not.o
CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver
src/.not.o.cmd
bat
gpl-2.0
216
@echo off echo Size: %~z1 bytes
chriva/T8Legion
MAIN/printsize.bat
bat
gpl-2.0
31
cmd_drivers/base/built-in.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/base/built-in.o drivers/base/component.o drivers/base/core.o drivers/base/bus.o drivers/base/dd.o drivers/base/syscore.o drivers/base/driver.o drivers/base/class.o drivers/base/platform.o drivers/base/cpu.o drivers/base/firmware.o drivers/base/init.o drivers/base/map.o drivers/base/devres.o drivers/base/attribute_container.o drivers/base/transport_class.o drivers/base/topology.o drivers/base/container.o drivers/base/devtmpfs.o drivers/base/dma-contiguous.o drivers/base/power/built-in.o drivers/base/dma-mapping.o drivers/base/dma-coherent.o drivers/base/dma-buf.o drivers/base/reservation.o drivers/base/firmware_class.o drivers/base/module.o drivers/base/regmap/built-in.o drivers/base/soc.o drivers/base/pinctrl.o
heyoufei2/yocto3.14.38_kernel
drivers/base/.built-in.o.cmd
bat
gpl-2.0
801
>>> help(0) Help on int object: class int(object) | int(x[, base]) -> integer | | Convert a string or number to an integer, if possible. A floating | point argument will be truncated towards zero (this does not include a | string representation of a floating point number!) When converting a | string, use the optional base. It is an error to supply a base when | converting a non-string. | | Methods defined here: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y ...
simontakite/sysadmin
pythonscripts/practicalprogramming/modules/int_help.cmd
bat
gpl-2.0
550
cmd_net/built-in.o := arm-linux-gnueabi-ld -EL -r -o net/built-in.o net/socket.o net/core/built-in.o net/llc/built-in.o net/ethernet/built-in.o net/802/built-in.o net/sched/built-in.o net/netlink/built-in.o net/netfilter/built-in.o net/ipv4/built-in.o net/xfrm/built-in.o net/unix/built-in.o net/ipv6/built-in.o net/packet/built-in.o net/key/built-in.o net/bridge/built-in.o net/phonet/built-in.o net/8021q/built-in.o net/wireless/built-in.o net/mac80211/built-in.o net/rfkill/built-in.o net/sysctl_net.o net/activity_stats.o
jpsminix/minix5
net/.built-in.o.cmd
bat
gpl-2.0
531
cmd_net/unix/unix.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-ld -EL -r -o net/unix/unix.o net/unix/af_unix.o net/unix/garbage.o net/unix/sysctl_net_unix.o
mjmccall/Kernel
net/unix/.unix.o.cmd
bat
gpl-2.0
172
cmd_sound/pcmcia/vx/built-in.o := rm -f sound/pcmcia/vx/built-in.o; /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/pcmcia/vx/built-in.o
PrestigeMod/SHW-M440S
sound/pcmcia/vx/.built-in.o.cmd
bat
gpl-2.0
187
:user_configuration :: Path to Flex SDK set FLEX_SDK=A:\Aldy\AIRSDK_Compiler set AUTO_INSTALL_IOS=yes :: Path to Android SDK set ANDROID_SDK=C:\Program Files (x86)\FlashDevelop\Tools\android :validation if not exist "%FLEX_SDK%\bin" goto flexsdk if not exist "%ANDROID_SDK%\platform-tools" goto androidsdk goto succeed :flexsdk echo. echo ERROR: incorrect path to Flex SDK in 'bat\SetupSDK.bat' echo. echo Looking for: %FLEX_SDK%\bin echo. if %PAUSE_ERRORS%==1 pause exit :androidsdk echo. echo ERROR: incorrect path to Android SDK in 'bat\SetupSDK.bat' echo. echo Looking for: %ANDROID_SDK%\platform-tools echo. if %PAUSE_ERRORS%==1 pause exit :succeed set PATH=%FLEX_SDK%\bin;%PATH% set PATH=%PATH%;%ANDROID_SDK%\platform-tools
AldyAhsn/PixelConflict
src/bat/SetupSDK.bat
bat
gpl-3.0
737
start node httpwsd.js start python mt\main.py start chrome.exe http://localhost:8124/atompm
hergin/DelTa
run.bat
bat
gpl-3.0
91
@echo off pyinstaller --noconfirm artisan-win.spec rem # rem # Don't make assumptions as to where the 'makensis.exe' is - look in the obvious places rem # if exist "C:\Program Files (x86)\NSIS\makensis.exe" set NSIS_EXE="C:\Program Files (x86)\NSIS\makensis.exe" if exist "C:\Program Files\NSIS\makensis.exe" set NSIS_EXE="C:\Program Files\NSIS\makensis.exe" if exist "%ProgramFiles%\NSIS\makensis.exe" set NSIS_EXE="%ProgramFiles%\NSIS\makensis.exe" if exist "%ProgramFiles(x86)%\NSIS\makensis.exe" set NSIS_EXE="%ProgramFiles(x86)%\NSIS\makensis.exe" rem # rem # rem # %NSIS_EXE% setup-install3-pi.nsi
MAKOMO/artisan
src/build-win3-pi.bat
bat
gpl-3.0
640
Date:Sun Apr 22 07:10:14 PM EDT 2012 Input command file generated by LEDA #VERILOGCompiler /package/eda/synopsys/leda-E-2010.12/amd64/bin/ve -M +no_lvs_env -c -z -p2 -i -k95e -log /home/ecegrid/a/mg56/ece337/project_new/leda-logs/compiler.log -full_log -snote +max_case+8 +max_casexz+8 -config_file /home/ecegrid/a/ece337/Class0.5u/.leda_config.tcl #VHDLCompiler /package/eda/synopsys/leda-E-2010.12/amd64/bin/v -M +no_lvs_env -c -z -i -k93e -log /home/ecegrid/a/mg56/ece337/project_new/leda-logs/compiler.log -full_log -snote -config_file /home/ecegrid/a/ece337/Class0.5u/.leda_config.tcl #HOMELESS LEDA_WORK #Makefile-Name LEDA_Makefile #Makelibs-Name LEDA_Makelibs #Project-Name /home/ecegrid/a/mg56/ece337/project_new/leda.pro #VHDLSuffixes #End #VHDLSuffixes #End #VERILOGSuffixes #End #Mappings #End #Files LEDA_WORK #End #VERILOGSuffixes #End #VHDLSuffixes vhd - vhdl - #End #Mappings #End #Files LEDA_WORK /home/ecegrid/a/mg56/ece337/project_new/source/FifoRam.vhd /home/ecegrid/a/mg56/ece337/project_new/source/FifoRead.vhd /home/ecegrid/a/mg56/ece337/project_new/source/FifoTop.vhd /home/ecegrid/a/mg56/ece337/project_new/source/FifoWrite.vhd /home/ecegrid/a/mg56/ece337/project_new/source/NRZIdecode.vhd /home/ecegrid/a/mg56/ece337/project_new/source/SEE_det.vhd /home/ecegrid/a/mg56/ece337/project_new/source/SpiClkDivide.vhd /home/ecegrid/a/mg56/ece337/project_new/source/SpiXmitSR.vhd /home/ecegrid/a/mg56/ece337/project_new/source/computerInterceptor.vhd /home/ecegrid/a/mg56/ece337/project_new/source/controller.vhd /home/ecegrid/a/mg56/ece337/project_new/source/decoder.vhd /home/ecegrid/a/mg56/ece337/project_new/source/interceptor.vhd /home/ecegrid/a/mg56/ece337/project_new/source/lockingDetector.vhd /home/ecegrid/a/mg56/ece337/project_new/source/sd_control.vhd /home/ecegrid/a/mg56/ece337/project_new/source/shift_greg.vhd /home/ecegrid/a/mg56/ece337/project_new/source/sniffer_top.vhd /home/ecegrid/a/mg56/ece337/project_new/source/timer.vhd /home/ecegrid/a/mg56/ece337/project_new/source/tristate.vhd /home/ecegrid/a/mg56/ece337/project_new/source/usbInterceptor.vhd #End #Resources IEEE $LEDA_PATH/amd64/resources/resource_93/IEEE SNPS_EXT $LEDA_PATH/amd64/resources/resource_93/SNPS_EXT STD $LEDA_PATH/amd64/resources/resource_93/STD SYNOPSYS $LEDA_PATH/amd64/resources/resource_93/SYNOPSYS #End
kuruoujou/ECE-337-USB-Data-Sniffer
leda.cmd
bat
gpl-3.0
2,403
vagrant up @echo off echo In Chrome, open http://localhost:3000 pause
cgreenhalgh/musiccodes
bootstrap/musiccodes.bat
bat
agpl-3.0
71
mvn exec:java
KennethHuang/xScript
xScript.all/xScript_mvn.bat
bat
lgpl-3.0
13
avrdude -v -V -p m1284p -c stk500v2 -P COM3 -b 115200 -U flash:w:"..\Release\IronAHRS.hex" pause
j1elo/IronAHRS
etc/program avrdude release COM3.cmd
bat
apache-2.0
97
java -Djava.net.preferIPv4Stack=true -jar ../lib/hazelcast-client-${project.version}.jar
health-and-care-developer-network/health-and-care-developer-network
library/hazelcast/2.5/hazelcast-2.5-source/hazelcast-client/src/main/resources/client.bat
bat
apache-2.0
88
cmd_networking/dnsd.o := gcc -Wp,-MD,networking/.dnsd.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-builtin-printf -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dnsd)" -D"KBUILD_MODNAME=KBUILD_STR(dnsd)" -c -o networking/dnsd.o networking/dnsd.c deps_networking/dnsd.o := \ networking/dnsd.c \ /usr/include/stdc-predef.h \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/verbose.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdbool.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ /usr/include/x86_64-linux-gnu/bits/uio.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/inttypes.h \ /usr/include/netdb.h \ /usr/include/netinet/in.h \ /usr/include/x86_64-linux-gnu/sys/socket.h \ /usr/include/x86_64-linux-gnu/sys/uio.h \ /usr/include/x86_64-linux-gnu/bits/socket.h \ /usr/include/x86_64-linux-gnu/bits/socket_type.h \ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ /usr/include/x86_64-linux-gnu/asm/socket.h \ /usr/include/asm-generic/socket.h \ /usr/include/x86_64-linux-gnu/asm/sockios.h \ /usr/include/asm-generic/sockios.h \ /usr/include/x86_64-linux-gnu/bits/socket2.h \ /usr/include/x86_64-linux-gnu/bits/in.h \ /usr/include/rpc/netdb.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/netdb.h \ /usr/include/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp2.h \ /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/paths.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/libgen.h \ /usr/include/poll.h \ /usr/include/x86_64-linux-gnu/sys/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll2.h \ /usr/include/x86_64-linux-gnu/sys/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctls.h \ /usr/include/x86_64-linux-gnu/asm/ioctls.h \ /usr/include/asm-generic/ioctls.h \ /usr/include/linux/ioctl.h \ /usr/include/x86_64-linux-gnu/asm/ioctl.h \ /usr/include/asm-generic/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.h \ /usr/include/x86_64-linux-gnu/bits/timex.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/x86_64-linux-gnu/bits/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/mntent.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/utmp.h \ /usr/include/x86_64-linux-gnu/bits/utmp.h \ /usr/include/utmpx.h \ /usr/include/x86_64-linux-gnu/bits/utmpx.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ /usr/include/syslog.h \ /usr/include/x86_64-linux-gnu/sys/syslog.h \ /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ /usr/include/x86_64-linux-gnu/bits/syslog.h \ networking/dnsd.o: $(deps_networking/dnsd.o) $(deps_networking/dnsd.o):
rennman/copfvtci
build/busybox-1.25.1/networking/.dnsd.o.cmd
bat
apache-2.0
10,357
!vs-tools.exe !build * -release pause
Lifemotion/Bwl.VsTools
!build.cmd
bat
apache-2.0
37
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\node_modules\gulp-cli\bin\gulp.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\node_modules\gulp-cli\bin\gulp.js" %* )
chtoucas/narvalo.org
build/gulp.cmd
bat
bsd-2-clause
202
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\elasticsearch_backup.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\elasticsearch_backup.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
Aplopio/elasticsearch_backup
docs/make.bat
bat
bsd-3-clause
6,486
@echo off ( if not exist Htpc.py ( for %%X in (git.exe) do (set FOUND=%%~$PATH:X) if defined FOUND ( DEL "%~f0" git clone https://github.com/styxit/HTPC-Manager.git . ) else ( echo "Git not installed. Install from: http://msysgit.github.io/" pause exit ) ) start cmd /c python Htpc.py exit )
iAmMrinal0/HTPC-Manager
HTPC-Manager.bat
bat
mit
348
@ECHO OFF .\other\Prebuild\Prebuild.exe /target sharpdev2 /file prebuild.xml /pause
mono/tao
sharpdev2.bat
bat
mit
86
%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe %~dp0\build.proj /t:Deploy
jorbor/Kekiri
deploy.bat
bat
mit
86
cmd_drivers/media/common/tuners/tda18271.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/media/common/tuners/tda18271.o drivers/media/common/tuners/tda18271-maps.o drivers/media/common/tuners/tda18271-common.o drivers/media/common/tuners/tda18271-fe.o
friedrich420/Note-3-AEL-Kernel
drivers/media/common/tuners/.tda18271.o.cmd
bat
gpl-2.0
296
/* * Copyright (c) 2015-2016, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * ======== CC1310_LAUNCHXL.cmd ======== */ --stack_size=1024 /* C stack is also used for ISR stack */ HEAPSIZE = 0x1000; /* Size of heap buffer used by HeapMem */ /* Override default entry point. */ --entry_point ResetISR /* Allow main() to take args */ --args 0x8 /* Suppress warnings and errors: */ /* - 10063: Warning about entry point not being _c_int00 */ /* - 16011, 16012: 8-byte alignment errors. Observed when linking in object */ /* files compiled using Keil (ARM compiler) */ --diag_suppress=10063,16011,16012 /* The starting address of the application. Normally the interrupt vectors */ /* must be located at the beginning of the application. */ #define FLASH_BASE 0x0 #define FLASH_SIZE 0x20000 #define RAM_BASE 0x20000000 #define RAM_SIZE 0x5000 /* System memory map */ MEMORY { /* Application stored in and executes from internal flash */ FLASH (RX) : origin = FLASH_BASE, length = FLASH_SIZE /* Application uses internal RAM for data */ SRAM (RWX) : origin = RAM_BASE, length = RAM_SIZE } /* Section allocation in memory */ SECTIONS { .text : >> FLASH .TI.ramfunc : {} load=FLASH, run=SRAM, table(BINIT) .const : >> FLASH .constdata : >> FLASH .rodata : >> FLASH .cinit : > FLASH .pinit : > FLASH .init_array : > FLASH .emb_text : >> FLASH .ccfg : > FLASH (HIGH) .data : > SRAM .bss : > SRAM .sysmem : > SRAM .nonretenvar : > SRAM /* Heap buffer used by HeapMem */ .priheap : { __primary_heap_start__ = .; . += HEAPSIZE; __primary_heap_end__ = .; } > SRAM align 8 .stack : > SRAM (HIGH) }
jakapoor/AMRUPT
Software/Angle of Arrival/Transmitter Testing Protocol Code/rfCarrierWave_CC1310_LAUNCHXL_tirtos_ccs/CC1310_LAUNCHXL_TIRTOS.cmd
bat
gpl-3.0
3,671
@echo // Copyright (C) 1996-2004 Markus F.X.J. Oberhumer @echo // @echo // Windows 16-bit @echo // Microsoft Visual C/C++ (using QuickWin) @echo // @call b\prepare.bat @if "%BECHO%"=="n" echo off set CC=cl -nologo -AL -G2 -Mq set CF=-O -Gf -Gs -Gy -W3 %CFI% set LF=%BLIB% -Fm /link /seg:256 %CC% %CF% -c @b\src.rsp @if errorlevel 1 goto error lib /nologo %BLIB% @b\dos16\bc.rsp; @if errorlevel 1 goto error %CC% %CF% examples\simple.c %LF% @if errorlevel 1 goto error %CC% %CF% examples\uclpack.c %LF% @if errorlevel 1 goto error @call b\done.bat @goto end :error @echo ERROR during build! :end @call b\unset.bat
null--/graviton
code/external/ucl/B/win16/vc.bat
bat
gpl-3.0
653
@echo off SETLOCAL EnableExtensions EnableDelayedExpansion if [%1] EQU [MSIONLY] goto BUILD_MSI del *.log for %%x in (Win7, Win8, Win8.1, XP) do ( for %%y in (Debug, Release) do ( for %%z in (win32, x64) do ( call tools\vs_run.bat UsbDk.sln /Rebuild "%%x %%y|%%z" /Out build%%y_%%x_%%z.log if !ERRORLEVEL! NEQ 0 exit /B 1 ) ) ) if [%1] EQU [NOMSI] goto NOMSI :BUILD_MSI pushd Tools\Installer SET UsbDkVersion="%USBDK_MAJOR_VERSION%.%USBDK_MINOR_VERSION%.%USBDK_BUILD_NUMBER%" buildmsi.bat popd :NOMSI ENDLOCAL
SPICE/win32-usbdk
buildAll.bat
bat
apache-2.0
545
@echo off setlocal rem Simple script to fetch source for external libraries if not exist "%~dp0..\externals" mkdir "%~dp0..\externals" pushd "%~dp0..\externals" if "%SVNROOT%"=="" set SVNROOT=http://svn.python.org/projects/external/ if "%MSSVNROOT%"=="" set MSSVNROOT=https://github.com/Microsoft/openssl/branches/OpenSSL_1_0_2_WinRT-stable/ rem Optionally clean up first. Be warned that this can be very destructive! if not "%1"=="" ( for %%c in (-c --clean --clean-only) do ( if "%1"=="%%c" goto clean ) goto usage ) goto fetch :clean echo.Cleaning up external libraries. for /D %%d in ( bzip2-* db-* nasm-* openssl-* tcl-* tcltk* tk-* tix-* sqlite-* xz-* ) do ( echo.Removing %%d rmdir /s /q %%d ) if "%1"=="--clean-only" ( goto end ) :fetch rem Fetch current versions svn --version > nul 2>&1 if ERRORLEVEL 9009 ( echo.svn.exe must be on your PATH. echo.Try TortoiseSVN (http://tortoisesvn.net/^) and be sure to check the echo.command line tools option. popd exit /b 1 ) echo.Fetching external libraries... for %%e in ( bzip2-1.0.6 nasm-2.11.06 openssl-1.0.2a tcl-core-8.6.4.1 tk-8.6.4.1 tix-8.4.3.4 sqlite-3.8.3.1 xz-5.0.5 ) do ( if exist %%e ( echo.%%e already exists, skipping. ) else ( echo.Fetching %%e... svn export %SVNROOT%%%e ) ) echo.Fetching %MSSVNROOT%... svn export %MSSVNROOT% openssl-uwp goto end :usage echo.invalid argument: %1 echo.usage: %~n0 [[ -c ^| --clean ] ^| --clean-only ] echo. echo.Pull all sources necessary for compiling optional extension modules echo.that rely on external libraries. Requires svn.exe to be on your PATH echo.and pulls sources from %SVNROOT%. echo. echo.Use the -c or --clean option to clean up all external library sources echo.before pulling in the current versions. echo. echo.Use the --clean-only option to do the same cleaning, without pulling in echo.anything new. echo. echo.Only the first argument is checked, all others are ignored. echo. echo.**WARNING**: the cleaning options unconditionally remove any directory echo.that is a child of echo. %CD% echo.and matches wildcard patterns beginning with bzip2-, db-, nasm-, openssl-, echo.tcl-, tcltk, tk-, tix-, sqlite-, or xz-, and as such has the potential echo.to be very destructive if you are not aware of what it is doing. Use with echo.caution! popd exit /b -1 :end echo Finished. popd
munyirik/python
cpython/PCbuild/get_externals.bat
bat
bsd-3-clause
2,680
appcfg.py --insecure update ./
catsky/rebang
1/BBS/saespot-v0.2/saespot/update-in.bat
bat
mit
30
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:RDPEGFX_SurfaceToSurface_Negative_InterSurfaceCopy_DestOutOfBoundary /Logger:trx pause
dongruiqing/WindowsProtocolTestSuites
TestSuites/RDP/src/Batch/RDPEGFX/RDPEGFX_SurfaceToSurface_Negative_InterSurfaceCopy_DestOutOfBoundary.cmd
bat
mit
257
@echo off set BALANA_CLASSPATH=.\conf FOR %%C in ("\lib\*.jar") DO set BALANA_CLASSPATH=!BALANA_CLASSPATH!;".\lib\%%~nC%%~xC" FOR %%D in ("\..\..\balana-core\target\*.jar") DO set BALANA_CLASSPATH=!BALANA_CLASSPATH!;".\..\..\balana-core\target\%%~nD%%~xD" FOR %%E in ("\target\*.jar") DO set BALANA_CLASSPATH=!BALANA_CLASSPATH!;".\target\%%~nE%%~xE" set _RUNJAVA="%JAVA_HOME%\bin\java" %_RUNJAVA% -cp "%BALANA_CLASSPATH%" org.wso2.balana.samples.kmarket.trading.KMarketAccessControl %*
TU-Berlin-SNET/tresor-pdp-caching
modules/balana/modules/balana-samples/kmarket-trading-sample/run.bat
bat
apache-2.0
488
@echo off REM # REM # $RCSfile$ REM # $Revision: 1102 $ REM # $Date: 2005-03-07 22:36:48 -0300 (Mon, 07 Mar 2005) $ REM # if "%JAVA_HOME%" == "" goto javaerror if not exist "%JAVA_HOME%\bin\java.exe" goto javaerror goto run :javaerror echo. echo Error: JAVA_HOME environment variable not set, Openfire not started. echo. goto end :run if "%1" == "-debug" goto debug start "Openfire" "%JAVA_HOME%\bin\java" -server -jar ..\lib\startup.jar goto end :debug start "Openfire" "%JAVA_HOME%\bin\java" -Xdebug -Xint -server -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000 -jar ..\lib\startup.jar goto end :end
DaraghOKeeffe/openfire
target/openfire/bin/openfire.bat
bat
gpl-2.0
662
@echo off echo. echo Automatic creation of the MSVC project files echo. if "%~1"=="/stable" goto stable if "%~1"=="/STABLE" goto stable if "%~1"=="/all" goto all if "%~1"=="/ALL" goto all if "%~1"=="/tools" goto tools if "%~1"=="/TOOLS" goto tools if "%~1"=="/tests" goto tests if "%~1"=="/TESTS" goto tests if "%~1"=="/clean" goto clean_check if "%~1"=="/CLEAN" goto clean_check if "%~1"=="/help" goto command_help if "%~1"=="/HELP" goto command_help if "%~1"=="/?" goto command_help if "%~1"=="" goto check_tool echo Invalid command parameter: %~1 echo. :command_help echo Valid command parameters are: echo stable Generated stable engines project files echo all Generate all engines project files echo tools Generate project files for the devtools echo clean Clean generated project files echo help Show help message goto done :check_tool if not exist create_project.exe goto no_tool :question echo. set batchanswer=S set /p batchanswer="Enable stable engines only, or all engines? (S/a)" if "%batchanswer%"=="s" goto stable if "%batchanswer%"=="S" goto stable if "%batchanswer%"=="a" goto all if "%batchanswer%"=="A" goto all goto question :no_tool echo create_project.exe not found in the current folder. echo You need to build it first and copy it in this echo folder goto done :all echo. echo Creating project files with all engines enabled (stable and unstable) echo. create_project ..\.. --enable-all-engines --use-canonical-lib-names --msvc goto done :stable echo. echo Creating normal project files, with only the stable engines enabled echo. create_project ..\.. --use-canonical-lib-names --msvc goto done :tools echo. echo Creating tools project files echo. create_project ..\.. --tools --use-canonical-lib-names --msvc goto done :tests echo. echo Creating tests project files echo. create_project ..\.. --tests --use-canonical-lib-names --msvc goto done :clean_check echo. set cleananswer=N set /p cleananswer="This will remove all project files. Are you sure you want to continue? (N/y)" if "%cleananswer%"=="n" goto done if "%cleananswer%"=="N" goto done if "%cleananswer%"=="y" goto clean if "%cleananswer%"=="Y" goto clean goto clean_check :clean echo. echo Removing all project files del /Q *.vcproj* > NUL 2>&1 del /Q *.vsprops > NUL 2>&1 del /Q *.vcxproj* > NUL 2>&1 del /Q *.props > NUL 2>&1 del /Q *.sln* > NUL 2>&1 del /Q scummvm* > NUL 2>&1 del /Q devtools* > NUL 2>&1 del /Q test_runner.cpp > NUL 2>&1 goto done :done echo. pause
vanfanel/scummvm
dists/msvc/create_msvc.bat
bat
gpl-2.0
2,526
@echo off rem start this file to install datasources with mysql provider if "%STAFF_HOME%" == "" ( echo Error: STAFF_HOME is not set goto errexit ) set outdir=%STAFF_HOME%\components\staff.das\datasources\staff.das.samples\ if not exist %outdir% mkdir %outdir% xcopy /Y /S datasources\*.* %outdir% set wsdldir=%STAFF_HOME%\components\staff.das.samples if not exist %wsdldir% mkdir %wsdldir% staff_codegen -twsdl -pdasdatasource -idatasources Groups.datasources Users.datasources -o%wsdldir% :errexit
gale320/staff
das/samples/Users/datasources/sqlite/install.cmd
bat
apache-2.0
529
del *.txt del *.m del *.tex del *.eps del *.log
gholker/MastersThesis
ThesisResults/4.0.2_Retina/delete_results.bat
bat
apache-2.0
47
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %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\GeoNode.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\GeoNode.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" == "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
state-hiu/geonode
docs/make.bat
bat
gpl-3.0
4,513
:: :: Licensed to the Apache Software Foundation (ASF) under one or more :: contributor license agreements. See the NOTICE file distributed with :: this work for additional information regarding copyright ownership. :: The ASF licenses this file to You under the Apache License, Version 2.0 :: (the "License"); you may not use this file except in compliance with :: the License. You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. :: @echo OFF echo Kill all grid nodes. FOR /f "tokens=1,2" %%G IN ('%JAVA_HOME%/bin/jps') DO IF (%%H) EQU (GridCommandLineStartup) taskkill /PID %%G /T /F echo Kill all grid nodes. FOR /f "tokens=1,2" %%G IN ('%JAVA_HOME%/bin/jps') DO IF (%%H) EQU (GridRouterCommandLineStartup) taskkill /PID %%G /T /F echo Wait 1 seconds while nodes stopped. ping -n 1 127.0.0.1 > NUL echo Kill all cmd processes. taskkill /IM cmd.exe /T /F > NUL echo ON
agoncharuk/ignite
modules/clients/src/test/bin/stop-nodes.cmd
bat
apache-2.0
1,245
python labeler.py < labeler_sample.in > labeler_out.out python labeler_check.py labeler_sample.ans labeler_out.out
rahulsrma26/code-gems
ML/labeler.bat
bat
mit
114
@echo off set DB=ruian_test set PATH=C:\Program Files (x86)\PostgreSQL\9.3\bin;%PATH% IF "%1"=="ogr" ( set PGM=%1 set OPT=--format SQLite --dsn=%DB%.db del "%DB%.db" ) ELSE ( set PGM=pg set OPT=--dbname %DB% --user %USER% set USER=postgres set CONN=--username %USER% psql -d %DB% -f cleandb.sql %CONN% 2>nul ) echo "Using vfr2%PGM%..." echo "1st PASS (empty DB...)" call vfr2%PGM% --file seznam.txt %OPT% echo "2nd PASS (already exists...)" call vfr2%PGM% --file seznam.txt %OPT% echo "3drd PASS (overwrite...)" call vfr2%PGM% --file seznam.txt %OPT% --o echo "4th PASS (append...)" call vfr2%PGM% --type OB_554979_UKSH %OPT% --a echo "5th PASS (geom_name...)" call vfr2%PGM% --file seznam.txt %OPT% --o --geom OriginalniHranice if %PGM%==pg ( echo "6th PASS (schema per file...)" call vfr2%PGM% --file seznam.txt %OPT% -s --o )
ctu-osgeorel/gdal-vfr
test_suite/test-multi.bat
bat
mit
871
NuOp o_200 s o_200 i NuBasis o_200b NuProj o_200b NuOper o_200b s o_200 i NuMatrix o_200b s NuOrth o_200b s NuOpm o_200b o_200b a+a- b NuOpd o_200b o_200b o b o_200 NuBasis o_200a NuProj o_200a NuOper o_200a s o_200 i NuMatrix o_200a s NuOrth o_200a s NuOpm o_200a o_200a a+a- a NuOpd o_200a o_200a o a o_200 NuLnz o_2000 o_200a o_200b s o_200 NuVec o_2000 o_200a o_200b o_200s NuLnz o_2001 o_200a o_200b s o_200 NuVec o_2001 o_200a o_200b o_200s NuLnz o_2002 o_200a o_200b s o_200 NuVec o_2002 o_200a o_200b o_200s NuLnz o_2003 o_200a o_200b s o_200 NuVec o_2003 o_200a o_200b o_200s NuLnz o_2004 o_200a o_200b s o_200 NuVec o_2004 o_200a o_200b o_200s NuLnz o_2005 o_200a o_200b s o_200 NuVec o_2005 o_200a o_200b o_200s NuLnz o_2006 o_200a o_200b s o_200 NuVec o_2006 o_200a o_200b o_200s
kc9jud/ShellCorretta
NuShellX_exercises/O20/shellx1.bat
bat
mit
852
:: http://blogs.visigo.com/chriscoulson/encode-h-264-and-webm-videos-for-mediaelement-js-using-ffmpeg/ REM mp4 (H.264 / ACC) "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -vcodec libx264 -profile:v baseline -level 3.0 -pix_fmt yuv420p -vprofile high -preset fast -b:v 200k -minrate 200k -maxrate 300k -bufsize 1000k -vf scale=trunc(oh*a/2)*2:360 -r 30 -threads 0 -acodec libvo_aacenc -ab 128000 -ar 44100 -ac 2 "%~d1%~p1%~n1.mpeg4.mp4" :: http://notboring.org/devblog/2009/07/qt-faststartexe-binary-for-windows/ :: http://ffmpeg.zeranoe.com/blog/?p=59 :: http://www.stoimen.com/blog/2010/11/12/how-to-make-mp4-progressive-with-qt-faststart/ ::"c:\program files\ffmpeg\bin\qt-faststart.exe" %1 "%~d1%~p1%~n1.qtfaststart%~x1" "c:\program files\ffmpeg\bin\qt-faststart.exe" "%~d1%~p1%~n1.mpeg4.mp4" "%~d1%~p1%~n1.mpeg4_qtp.mp4" move "%~d1%~p1%~n1.mpeg4_qtp.mp4" "%~d1%~p1%~n1.mpeg4.mp4" REM jpeg (screenshot at 10 seconds, but just in case of a short video - take a screenshot earlier and overwrite) "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -ss 0 -vframes 1 -r 1 -vf scale=trunc(oh*a/2)*2:360 -f image2 "%~d1%~p1%~n1.0.jpg" "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -ss 1 -vframes 1 -r 1 -vf scale=trunc(oh*a/2)*2:360 -f image2 "%~d1%~p1%~n1.1.jpg" "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -ss 2 -vframes 1 -r 1 -vf scale=trunc(oh*a/2)*2:360 -f image2 "%~d1%~p1%~n1.2.jpg" "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -ss 3 -vframes 1 -r 1 -vf scale=trunc(oh*a/2)*2:360 -f image2 "%~d1%~p1%~n1.3.jpg" "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -ss 5 -vframes 1 -r 1 -vf scale=trunc(oh*a/2)*2:360 -f image2 "%~d1%~p1%~n1.5.jpg" "c:\program files\ffmpeg\bin\ffmpeg.exe" -y -i %1 -ss 10 -vframes 1 -r 1 -vf scale=trunc(oh*a/2)*2:360 -f image2 "%~d1%~p1%~n1.10.jpg"
logsdon/redlove
video/ffmpeg/create_thumbnails.bat
bat
mit
1,807
cd /d %~dp0 ActiveReport.exe -d "true", -f "true"
crs2007/ActiveReport
ActiveReport/Run in debug mode.bat
bat
mit
52
@echo off SET ROOT=%~dp0.. SET CoreNugetSpecFile=%ROOT%\Build\PortableLog.Core.nuspec SET NLogNugetSpecFile=%ROOT%\Build\PortableLog.NLog.nuspec SET NuGetExe=%ROOT%\Tools\NuGet.exe SET NuGetOutDir=%ROOT%\Artifacts\NuGet mkdir "%NuGetOutDir%" %NuGetExe% pack %CoreNugetSpecFile% -Verbosity detailed -OutputDirectory "%NuGetOutDir%" -BasePath "%ROOT%" -Symbols %NuGetExe% pack %NLogNugetSpecFile% -Verbosity detailed -OutputDirectory "%NuGetOutDir%" -BasePath "%ROOT%" -Symbols
anjdreas/PortableLog
Build/pack-nuget.bat
bat
mit
477
@rem Copyright (C) 2013-2015 MetaMorph Software, Inc @rem Permission is hereby granted, free of charge, to any person obtaining a @rem copy of this data, including any software or models in source or binary @rem form, as well as any drawings, specifications, and documentation @rem (collectively "the Data"), to deal in the Data without restriction, @rem including without limitation the rights to use, copy, modify, merge, @rem publish, distribute, sublicense, and/or sell copies of the Data, and to @rem permit persons to whom the Data is furnished to do so, subject to the @rem following conditions: @rem The above copyright notice and this permission notice shall be included @rem in all copies or substantial portions of the Data. @rem THE DATA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR @rem IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @rem FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL @rem THE AUTHORS, SPONSORS, DEVELOPERS, CONTRIBUTORS, OR COPYRIGHT HOLDERS BE @rem LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION @rem OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION @rem WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA. @rem ======================= @rem This version of the META tools is a fork of an original version produced @rem by Vanderbilt University's Institute for Software Integrated Systems (ISIS). @rem Their license statement: @rem Copyright (C) 2011-2014 Vanderbilt University @rem Developed with the sponsorship of the Defense Advanced Research Projects @rem Agency (DARPA) and delivered to the U.S. Government with Unlimited Rights @rem as defined in DFARS 252.227-7013. @rem Permission is hereby granted, free of charge, to any person obtaining a @rem copy of this data, including any software or models in source or binary @rem form, as well as any drawings, specifications, and documentation @rem (collectively "the Data"), to deal in the Data without restriction, @rem including without limitation the rights to use, copy, modify, merge, @rem publish, distribute, sublicense, and/or sell copies of the Data, and to @rem permit persons to whom the Data is furnished to do so, subject to the @rem following conditions: @rem The above copyright notice and this permission notice shall be included @rem in all copies or substantial portions of the Data. @rem THE DATA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR @rem IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @rem FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL @rem THE AUTHORS, SPONSORS, DEVELOPERS, CONTRIBUTORS, OR COPYRIGHT HOLDERS BE @rem LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION @rem OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION @rem WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA. REM ***** REM These should be edited for users' environment. REM cmc.py is a script from PRISMATIC. REM ***** set CMC_BIN=c:\Program Files (x86)\META\bin\cmc.py REM ***** REM These should be edited for the particular model REM ***** set MODEL_DIR="E:\rccar-tags\Release_12.8.14\CyPhy\Whole_RC_Car" set MODEL_NAME=CyPhy_RC set META_NAME=CyPhyML REM ***** REM These should not need editing. REM ***** set PRISMATIC_BIN=c:\Program Files (x86)\META\bin\prismatic.py cd %MODEL_DIR% UdmCopy %MODEL_NAME%.mga %MODEL_NAME%.xml c:\Program Files (x86)\META\meta\CyPhyML.xml c:\Program Files (x86)\META\meta\CyPhyML.xsd if %errorlevel% neq 0 exit /b %errorlevel% python %CMC_BIN% %MODEL_NAME%.xml if %errorlevel% neq 0 exit /b %errorlevel% python %PRISMATIC_BIN% if %errorlevel% neq 0 exit /b %errorlevel% REM more prismatic-results.json REM if %errorlevel% neq 0 exit /b %errorlevel%
pombredanne/metamorphosys-desktop
metamorphosys/META/src/Run_PRISMATIC_toolchain/run_prismatic.bat
bat
mit
3,900
@ECHO OFF &SETLOCAL SET BIN_DIR_PATH=%~dp0 %BIN_DIR_PATH%blurry.bat -r %* pause
giusilvano/blurry
run-scripts/win/blurry-restore.bat
bat
mit
81
echo off cd source ..\build\Poc /B Buildfile cd .. echo on
congdm/AyaCompiler
selfbuild.bat
bat
cc0-1.0
62
@echo off call c:\python27\markdown\md.py %1 -o %temp%\temp.html start %temp%\temp.html
gialloporpora/yellowpy
batch/mdv.bat
bat
gpl-2.0
95
@ECHO OFF REM :importCertRoot verify >nul certutil.exe -store authroot | findstr "040000000001154b5ac394" IF '%ERRORLEVEL%'=='0' goto importCertRoot2 verify >nul certutil -addstore -f "authroot" "C:\Temp\global.cer" :importCertRoot2 verify >nul certutil -store authroot | findstr "9b7e0649a33e62b9d5ee90487129ef57" IF '%ERRORLEVEL%'=='0' goto exit verify >nul certutil -addstore -f "authroot" "C:\Temp\verisign-root.cer" :exit ping -n 5 >nul
gouldcwilliam/HelpDeskTools
HelpDeskTools/Libraries/HDSharedServices/Resources/Batch/Certs.bat
bat
gpl-2.0
454