code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
@ECHO OFF Tools\nant\bin\nant.exe %*
TomPallister/TestRunner
nant.bat
bat
apache-2.0
36
@echo off if "%1"=="" goto Usage if "%1" == "start" goto doStart if "%1" == "restart" goto doRestart if "%1" == "stop" goto doStop :Usage echo """"""""""""""""""""""""""""""""""""""""""""""""""""" echo " DataTunnel Console " echo """"""""""""""""""""""""""""""""""""""""""""""""""""" echo "Usage: spider <Commands> " echo "Commands: start start the datatunnel " echo " restart restart the datatunnel " echo " stop stop the datatunnel " echo """"""""""""""""""""""""""""""""""""""""""""""""""""" goto end :doStart shift set ACTION=start goto run :doRestart shift set ACTION=start goto run :doStop shift set ACTION=stop goto run :end exit /b 0 :exit exit /b 1 :noJreHome rem Needed at least a JRE echo The JRE_HOME environment variable is not defined correctly echo This environment variable is needed to run this program goto exit :ADDLiB SET CLASSPATH=%1;%CLASSPATH% goto :EOF :run set "JRE_HOME=%JAVA_HOME%" if not exist "%JRE_HOME%\bin\java.exe" goto noJreHome set RUNJAVA="%JRE_HOME%\bin\java.exe" set "DATATUNNEL_BIN_DIR=%cd%" cd .. set "DATATUNNEL_HOME=%cd%" SetLocal EnableDelayedExpansion set "CLASSPATH=.;%DATATUNNEL_HOME%\conf" for /R %DATATUNNEL_HOME%\lib\ %%i in (*.jar) do ( call :ADDLiB %%i ) set MAINCLASS=com.bytegriffin.datatunnel.DataTunnel set JAVA_OPTS=-server -Xms512m -Xmx512m -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -Djcore.parser=SAX -Djcore.logger=org.apache.log4j %RUNJAVA% -classpath "%CLASSPATH%" %JAVA_OPTS% %MAINCLASS% EndLocal goto end
ganqiang1983/DataTunnel
bin/datatunnel.bat
bat
apache-2.0
1,626
@echo off if "%OS%" == "Windows_NT" setlocal rem --------------------------------------------------------------------------- rem Start/Stop Script for the CATALINA Server rem rem Environment Variable Prequisites rem rem CATALINA_HOME May point at your Catalina "build" directory. rem rem CATALINA_BASE (Optional) Base directory for resolving dynamic portions rem of a Catalina installation. If not present, resolves to rem the same directory that CATALINA_HOME points to. rem rem CATALINA_OPTS (Optional) Java runtime options used when the "start", rem "stop", or "run" command is executed. rem rem CATALINA_TMPDIR (Optional) Directory path location of temporary directory rem the JVM should use (java.io.tmpdir). Defaults to rem %CATALINA_BASE%\temp. rem rem JAVA_HOME Must point at your Java Development Kit installation. rem rem JAVA_OPTS (Optional) Java runtime options used when the "start", rem "stop", or "run" command is executed. rem rem JSSE_HOME (Optional) May point at your Java Secure Sockets Extension rem (JSSE) installation, whose JAR files will be added to the rem system class path used to start Tomcat. rem rem JPDA_TRANSPORT (Optional) JPDA transport used when the "jpda start" rem command is executed. The default is "dt_shmem". rem rem JPDA_ADDRESS (Optional) Java runtime options used when the "jpda start" rem command is executed. The default is "jdbconn". rem rem $Id: catalina.bat,v 1.29 2002/04/01 19:51:31 patrickl Exp $ rem --------------------------------------------------------------------------- rem Guess CATALINA_HOME if not defined if not "%CATALINA_HOME%" == "" goto gotHome set CATALINA_HOME=. if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome set CATALINA_HOME=.. :gotHome if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome echo The CATALINA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program goto end :okHome rem Get standard environment variables if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat" rem Get standard Java environment variables if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath echo Cannot find %CATALINA_HOME%\bin\setclasspath.bat echo This file is needed to run this program goto end :okSetclasspath set BASEDIR=%CATALINA_HOME% call "%CATALINA_HOME%\bin\setclasspath.bat" rem Add on extra jar files to CLASSPATH if "%JSSE_HOME%" == "" goto noJsse set CLASSPATH=%CLASSPATH%;%JSSE_HOME%\lib\jcert.jar;%JSSE_HOME%\lib\jnet.jar;%JSSE_HOME%\lib\jsse.jar :noJsse set CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\bootstrap.jar if not "%CATALINA_BASE%" == "" goto gotBase set CATALINA_BASE=%CATALINA_HOME% :gotBase if not "%CATALINA_TMPDIR%" == "" goto gotTmpdir set CATALINA_TMPDIR=%CATALINA_BASE%\temp :gotTmpdir rem ----- Execute The Requested Command --------------------------------------- echo Using CATALINA_BASE: %CATALINA_BASE% echo Using CATALINA_HOME: %CATALINA_HOME% echo Using CATALINA_TMPDIR: %CATALINA_TMPDIR% echo Using JAVA_HOME: %JAVA_HOME% set _EXECJAVA=%_RUNJAVA% set MAINCLASS=org.apache.catalina.startup.Bootstrap set ACTION=start set SECURITY_POLICY_FILE= set DEBUG_OPTS= set JPDA= if not ""%1"" == ""jpda"" goto noJpda set JPDA=jpda if not "%JPDA_TRANSPORT%" == "" goto gotJpdaTransport set JPDA_TRANSPORT=dt_shmem :gotJpdaTransport if not "%JPDA_ADDRESS%" == "" goto gotJpdaAddress set JPDA_ADDRESS=jdbconn :gotJpdaAddress shift :noJpda if ""%1"" == ""debug"" goto doDebug if ""%1"" == ""embedded"" goto doEmbedded if ""%1"" == ""run"" goto doRun if ""%1"" == ""start"" goto doStart if ""%1"" == ""stop"" goto doStop echo Usage: catalina ( commands ... ) echo commands: echo debug Start Catalina in a debugger echo debug -security Debug Catalina with a security manager echo embedded Start Catalina in embedded mode echo jpda start Start Catalina under JPDA debugger echo run Start Catalina in the current window echo run -security Start in the current window with security manager echo start Start Catalina in a separate window echo start -security Start in a separate window with security manager echo stop Stop Catalina goto end :doDebug shift set _EXECJAVA=%_RUNJDB% set DEBUG_OPTS=-sourcepath "%CATALINA_HOME%\..\..\jakarta-tomcat-4.0\catalina\src\share" if not ""%1"" == ""-security"" goto execCmd shift echo Using Security Manager set SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy goto execCmd :doEmbedded shift set MAINCLASS=org.apache.catalina.startup.Embedded goto execCmd :doRun shift if not ""%1"" == ""-security"" goto execCmd shift echo Using Security Manager set SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy goto execCmd :doStart shift if not "%OS%" == "Windows_NT" goto noTitle set _EXECJAVA=start "Tomcat" %_RUNJAVA% goto gotTitle :noTitle set _EXECJAVA=start %_RUNJAVA% :gotTitle if not ""%1"" == ""-security"" goto execCmd shift echo Using Security Manager set SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy goto execCmd :doStop shift set ACTION=stop goto execCmd :execCmd rem Get remaining unshifted command line arguments and save them in the set CMD_LINE_ARGS= :setArgs if ""%1""=="""" goto doneSetArgs set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 shift goto setArgs :doneSetArgs rem Execute Java with the applicable properties if not "%JPDA%" == "" goto doJpda if not "%SECURITY_POLICY_FILE%" == "" goto doSecurity %_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :doSecurity %_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :doJpda if not "%SECURITY_POLICY_FILE%" == "" goto doSecurityJpda %_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% -Xdebug -Xrunjdwp:transport=%JPDA_TRANSPORT%,address=%JPDA_ADDRESS%,server=y,suspend=n %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :doSecurityJpda %_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% -Xrunjdwp:transport=%JPDA_TRANSPORT%,address=%JPDA_ADDRESS%,server=y,suspend=n %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% goto end :end
devjin24/howtomcatworks
bookrefer/jakarta-tomcat-4.1.12-src/catalina/src/bin/catalina.bat
bat
apache-2.0
7,211
@ECHO OFF IF "%1" == "" GOTO BUILD_RUN IF "%1" == "-b" GOTO BUILD IF "%1" == "-r" GOTO RUN GOTO END :BUILD call mvn -Dmaven.test.skip=true package GOTO END :RUN mvn jetty:run GOTO END :BUILD_RUN call mvn -Dmaven.test.skip=true package jetty:run REM call mvn jetty:run-war :END
AuScope/CMAR-Portal
run_jetty.bat
bat
gpl-3.0
300
@ECHO OFF REM REM Licensed to the Apache Software Foundation (ASF) under one or more REM contributor license agreements. See the NOTICE file distributed with REM this work for additional information regarding copyright ownership. REM The ASF licenses this file to You under the Apache License, Version 2.0 REM (the "License"); you may not use this file except in compliance with REM the License. You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. @ping -n 60 localhost> nul
sgoeschl/commons-exec
src/test/scripts/sleep.bat
bat
apache-2.0
872
@rem Copyright 2016 gRPC authors. @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem set path to python set PATH=C:\%1;C:\%1\scripts;%PATH% if "%1" == "Python27" goto :install_mingw64_with_msvcr90 if "%1" == "Python27_32bit" goto :install_mingw64_with_msvcr90 @rem set path to the existed mingw compiler set PATH=C:\msys64\mingw%2\bin;C:\tools\msys64\mingw%2\bin;%PATH% :end_mingw64_installation python -m pip install --upgrade six @rem some artifacts are broken for setuptools 38.5.0. See https://github.com/grpc/grpc/issues/14317 python -m pip install --upgrade setuptools==44.1.1 python -m pip install --upgrade cython python -m pip install -rrequirements.txt --user @rem set GRPC_PYTHON_OVERRIDE_CYGWIN_DETECTION_FOR_27=1 set GRPC_PYTHON_BUILD_WITH_CYTHON=1 @rem Allow build_ext to build C/C++ files in parallel @rem by enabling a monkeypatch. It speeds up the build a lot. @rem Use externally provided GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS value if set. if "%GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS%"=="" ( set GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS=4 ) mkdir -p %ARTIFACTS_OUT% set ARTIFACT_DIR=%cd%\%ARTIFACTS_OUT% @rem Set up gRPC Python tools python tools\distrib\python\make_grpcio_tools.py @rem Build gRPC Python extensions python setup.py build_ext -c %EXT_COMPILER% || goto :error pushd tools\distrib\python\grpcio_tools python setup.py build_ext -c %EXT_COMPILER% || goto :error popd @rem Build gRPC Python distributions python setup.py bdist_wheel || goto :error pushd tools\distrib\python\grpcio_tools python setup.py bdist_wheel || goto :error popd @rem Ensure the generate artifacts are valid. python -m pip install twine==3.8.0 python -m twine check dist\* tools\distrib\python\grpcio_tools\dist\* || goto :error xcopy /Y /I /S dist\* %ARTIFACT_DIR% || goto :error xcopy /Y /I /S tools\distrib\python\grpcio_tools\dist\* %ARTIFACT_DIR% || goto :error goto :EOF :error popd exit /b 1 :install_mingw64_with_msvcr90 set MSYS64_DOWNLOAD_URL=https://storage.googleapis.com/grpc-build-helper/msys64.zip set MSYS64_PATH=C:\tools\msys64_win7 set PATH=%MSYS64_PATH%\mingw%2\bin;%PATH% @rem Skip the installation if the directory exists if exist "%MSYS64_PATH%" goto :end_mingw64_installation python -m pip install requests || goto :error python tools\run_tests\python_utils\download_and_unzip.py "%MSYS64_DOWNLOAD_URL%" "%MSYS64_PATH%" || goto :error goto :end_mingw64_installation
grpc/grpc
tools/run_tests/artifacts/build_artifact_python.bat
bat
apache-2.0
2,937
call "%~dp0env.bat" %1 %2 %3 if ["%CASDEB%"] == [""] ( call "%~dp0..\..\..\msvc.bat" %VCVER% win%ARCH% "" "%~dp0IESample-%VCVER%.sln" ) else ( call "%~dp0..\..\..\msvc.bat" %VCVER% win%ARCH% %CASDEB% "%~dp0IESample-%VCVER%.sln" )
Tridify/oce
samples/qt/IESample/msvc.bat
bat
lgpl-2.1
240
@echo off set SolutionDir=%~dp0 set SolutionName=TaskParallelLibrary set Project=TaskParallel REM Cleanup output directory rmdir /s/q "%SolutionDir%Output" 2> nul mkdir "%SolutionDir%Output" CALL %SolutionDir%tools\build-wince.bat %SolutionDir% %SolutionName% %Project% || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net35-client || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net40 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net45 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net451 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net452 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net46 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net461 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% net462 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% netstandard1.0 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% netstandard1.3 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% profile259 || EXIT /B 1 CALL %SolutionDir%tools\build-dotnet.bat %SolutionDir% %Project% profile328 || EXIT /B 1 echo build complete. echo. EXIT /B %ERRORLEVEL%
skarllot/TaskParallelLibraryCE
build.bat
bat
mit
1,382
cd buildscript ..\contrib\phantom\Phantom\Phantom.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
ToJans/Aubergine
build.cmd
bat
mit
81
@echo off setlocal wheel install-scripts hoplite c:\Python27\Scripts\hoplite-server endlocal
ni/hoplite
hoplite/hoplite.bat
bat
mit
94
A: @echo off set /p D:\jdk1.7.0_11\bin\javac IoMethods.java D:\jdk1.7.0_11\bin\java IoMethods 1 pause goto A
karan1276/JWT--code-dump
3 Third prac/abc2.bat
bat
mit
109
".nuget/NuGet.exe" restore OasX.sln
lurongkai/OasX
restore-packages.bat
bat
mit
35
set artifacts=%~dp0artifacts if exist %artifacts% rd /q /s %artifacts% set /p ver=<VERSION dotnet restore src/Es.Logging dotnet restore src/Es.Logging.Console dotnet restore src/Es.Logging.Log4 dotnet restore src/Es.Logging.NLog dotnet restore src/Es.Microsoft.Log dotnet pack -c release -p:Ver=%ver% src/Es.Logging -o %artifacts% dotnet pack -c release -p:Ver=%ver% src/Es.Logging.Console -o %artifacts% dotnet pack -c release -p:Ver=%ver% src/Es.Logging.Log4 -o %artifacts% dotnet pack -c release -p:Ver=%ver% src/Es.Logging.NLog -o %artifacts% dotnet pack -c release -p:Ver=%ver% src/Es.Logging.Serilog -o %artifacts% dotnet pack -c release -p:Ver=%ver% src/Es.Microsoft.Log -o %artifacts% pause
EsWork/Es.Logging
build.cmd
bat
mit
710
git config --bool core.bare true
zaqwes8811/micro-apps
buffer/gi/hided/gittobare.bat
bat
mit
32
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\GTT.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\GTT.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
314ish/StudbookToolkit
docs/make.bat
bat
mit
7,243
SETLOCAL set less=node D:\OpenServer\modules\node_modules\less\bin\lessc rem set css=java -jar d:\OpenServer\domains\cms\build\compress-javascript\com.jar --type css set css=node D:\OpenServer\modules\node_modules\clean-css\bin\cleancss set lesspath=d:\OpenServer\domains\cms\utils\less\ set themepath=d:\OpenServer\domains\cms\themes\default\css\ cd %themepath% del %lesspath%bootstrap\variables.less copy %lesspath%bootstrap\variables.less.original %lesspath%bootstrap\variables.less %less% %lesspath%default.less %themepath%default.css %css% default.css -o default.min.css pause exit del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\cerulean\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%cerulean.less %themepath%cerulean.css %css% cerulean.css -o cerulean.min.css pause exit del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\cosmo\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%cosmo.less %themepath%cosmo.css %css% cosmo.css -o cosmo.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\cyborg\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%cyborg.less %themepath%cyborg.css %css% cyborg.css -o cyborg.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\darkly\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%darkly.less %themepath%darkly.css %css% darkly.css -o darkly.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\flatly\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%flatly.less %themepath%flatly.css %css% flatly.css -o flatly.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\journal\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%journal.less %themepath%journal.css %css% journal.css -o journal.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\lumen\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%lumen.less %themepath%lumen.css %css% lumen.css -o lumen.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\paper\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%paper.less %themepath%paper.css %css% paper.css -o paper.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\readable\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%readable.less %themepath%readable.css %css% readable.css -o readable.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\sandstone\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%sandstone.less %themepath%sandstone.css %css% sandstone.css -o sandstone.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\simplex\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%simplex.less %themepath%simplex.css %css% simplex.css -o simplex.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\slate\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%slate.less %themepath%slate.css %css% slate.css -o slate.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\spacelab\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%spacelab.less %themepath%spacelab.css %css% spacelab.css -o spacelab.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\superhero\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%superhero.less %themepath%superhero.css %css% superhero.css -o superhero.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\united\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%united.less %themepath%united.css %css% united.css -o united.min.css del %lesspath%bootstrap\variables.less copy %lesspath%bootswatch\yeti\variables.less %lesspath%bootstrap\variables.less %less% %lesspath%yeti.less %themepath%yeti.css %css% yeti.css -o yeti.min.css cd %lesspath% ENDLOCAL
litepubl/cms
utils/less/ztyle.bat
bat
mit
3,994
"C:\Users\pete\AppData\Local\Google\Chrome SxS\Application\chrome.exe" --enable-logging --v=1 --redirect-code-traces --no-sandbox --js-flags="--trace-deopt --code-comments --trace-bailout" "http://localhost/nes/out/index_app.html"
peteward44/WebNES
tools/chrome_profile_canary_nolog.cmd
bat
mit
232
@echo off erl -pa %~dp0/../ebin -pa %~dp0/ebin -run udg_tests_a run -noshell -run erlang halt
elblake/udg
test/udg_tests_a.cmd
bat
mit
94
@echo off rem Author: Andrey Dibrov (andry at inbox dot ru) rem Description: rem Script to clear existing variables set created by *_list*.bat scripts. rem Command arguments: rem %1 - Variable name for the list. rem Examples: rem 1. call clear_list.bat MyList set "__VAR_NAME=%~1" if not defined __VAR_NAME exit /b -1 call set "__LIST_SIZE=%%%__VAR_NAME%.SIZE%%" if not defined __LIST_SIZE exit /b -2 set __INDEX_EXT=0 :LOOP if %__INDEX_EXT% GEQ %__LIST_SIZE% goto LOOP_END set "%__VAR_NAME%[%__INDEX_EXT%]=" set /A __INDEX_EXT+=1 goto LOOP :LOOP_END set "%__VAR_NAME%.SIZE=" rem drop temporary variables ( set "__VAR_NAME=" set "__INDEX_EXT=" set "__LIST_SIZE=" exit /b %__LIST_SIZE% )
andry81/contools
Scripts/Tools/std/clear_list.bat
bat
mit
754
cmd_drivers/video/logo/built-in.o := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ld.bfd -EL -r -o drivers/video/logo/built-in.o drivers/video/logo/logo.o drivers/video/logo/logo_linux_newsmy_1024x600_clut224.o
Zaphod-Beeblebrox/kernel_rockchip_rk3188
drivers/video/logo/.built-in.o.cmd
bat
gpl-2.0
228
cmd_drivers/usb/serial/usbserial.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/usb/serial/usbserial.o drivers/usb/serial/usb-serial.o drivers/usb/serial/generic.o drivers/usb/serial/bus.o
JoinTheRealms/TF700-dualboot-stockbased
drivers/usb/serial/.usbserial.o.cmd
bat
gpl-2.0
265
cmd_src/arm/dra72-evm.dtb = cpp -Wp,-MD,src/arm/.dra72-evm.dtb.d.pre.tmp -nostdinc -Iinclude -Isrc/arm -Itestcase-data -undef -D__DTS__ -x assembler-with-cpp -o src/arm/.dra72-evm.dtb.dts.tmp src/arm/dra72-evm.dts ; dtc -O dtb -o src/arm/dra72-evm.dtb -b 0 -i src/arm -d src/arm/.dra72-evm.dtb.d.dtc.tmp src/arm/.dra72-evm.dtb.dts.tmp ; cat src/arm/.dra72-evm.dtb.d.pre.tmp src/arm/.dra72-evm.dtb.d.dtc.tmp > src/arm/.dra72-evm.dtb.d dra72-evm.o: src/arm/dra72-evm.dts src/arm/dra72x.dtsi src/arm/dra7.dtsi \ include/dt-bindings/interrupt-controller/arm-gic.h \ include/dt-bindings/interrupt-controller/irq.h \ include/dt-bindings/pinctrl/dra.h src/arm/skeleton.dtsi src/arm/dra72-evm.dtb: src/arm/.dra72-evm.dtb.dts.tmp src/arm/dra7xx-clocks.dtsi
marklendering/dtb-rebuilder-modified
src/arm/.dra72-evm.dtb.cmd
bat
gpl-2.0
751
cmd_arch/arm/lib/copy_from_user.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/.copy_from_user.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/copy_from_user.o arch/arm/lib/copy_from_user.S source_arch/arm/lib/copy_from_user.o := arch/arm/lib/copy_from_user.S deps_arch/arm/lib/copy_from_user.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/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/lupohirp/Scrivania/Acer_Liquid_Glow_Kernel/arch/arm/include/asm/hwcap.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/copy_template.S \ arch/arm/lib/copy_from_user.o: $(deps_arch/arm/lib/copy_from_user.o) $(deps_arch/arm/lib/copy_from_user.o):
lupohirp/Acer_Liquid_Glow_Kernel
arch/arm/lib/.copy_from_user.o.cmd
bat
gpl-2.0
2,381
cmd_drivers/w1/built-in.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o drivers/w1/built-in.o drivers/w1/masters/built-in.o drivers/w1/slaves/built-in.o
avareldalton85/rpi2-linux-rt
drivers/w1/.built-in.o.cmd
bat
gpl-2.0
217
acftools.exe -e -acf "parts\%1.acf"
creaktive/ACFTools
contrib/acf_txt.bat
bat
gpl-2.0
35
@set include= del /q vm mkdir vm cd vm set cc=sof2lcc -A -DQ3_VM -DQAGAME -DMISSIONPACK -D_WeaponTime -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui %1 %cc% ../g_main.c @if errorlevel 1 goto quit %cc% ../g_syscalls.c @if errorlevel 1 goto quit %cc% ../bg_misc.c @if errorlevel 1 goto quit %cc% ../bg_lib.c @if errorlevel 1 goto quit %cc% ../bg_pmove.c @if errorlevel 1 goto quit %cc% ../bg_slidemove.c @if errorlevel 1 goto quit %cc% ../bg_player.c @if errorlevel 1 goto quit %cc% ../bg_weapons.c @if errorlevel 1 goto quit %cc% ../bg_gametype.c @if errorlevel 1 goto quit %cc% ../q_math.c @if errorlevel 1 goto quit %cc% ../q_shared.c @if errorlevel 1 goto quit %cc% ../bots/ai_main.c @if errorlevel 1 goto quit %cc% ../bots/ai_wpnav.c @if errorlevel 1 goto quit %cc% ../ai_util.c @if errorlevel 1 goto quit %cc% ../g_active.c @if errorlevel 1 goto quit %cc% ../g_antilag.c @if errorlevel 1 goto quit %cc% ../g_bot.c @if errorlevel 1 goto quit %cc% ../g_client.c @if errorlevel 1 goto quit %cc% ../g_cmds.c @if errorlevel 1 goto quit %cc% ../g_combat.c @if errorlevel 1 goto quit %cc% ../g_gametype.c @if errorlevel 1 goto quit %cc% ../g_items.c @if errorlevel 1 goto quit %cc% ../g_misc.c @if errorlevel 1 goto quit %cc% ../g_missile.c @if errorlevel 1 goto quit %cc% ../g_mover.c @if errorlevel 1 goto quit %cc% ../g_session.c @if errorlevel 1 goto quit %cc% ../g_spawn.c @if errorlevel 1 goto quit %cc% ../g_svcmds.c @if errorlevel 1 goto quit %cc% ../g_target.c @if errorlevel 1 goto quit %cc% ../g_team.c @if errorlevel 1 goto quit %cc% ../g_trigger.c @if errorlevel 1 goto quit %cc% ../g_utils.c @if errorlevel 1 goto quit %cc% ../g_weapon.c @if errorlevel 1 goto quit %cc% ../rpm_main.c @if errorlevel 1 goto quit %cc% ../rpm_combat.c @if errorlevel 1 goto quit %cc% ../rpm_cmds.c @if errorlevel 1 goto quit %cc% ../rpm_utils.c @if errorlevel 1 goto quit %cc% ../rpm_svcmds.c @if errorlevel 1 goto quit %cc% ../rpm_admincmds.c @if errorlevel 1 goto quit %cc% ../rpm_actions.c @if errorlevel 1 goto quit %cc% ../rpm_tcmds.c @if errorlevel 1 goto quit %cc% ../rpm_refcmds.c @if errorlevel 1 goto quit %cc% ../zg_bboxadj.c @if errorlevel 1 goto quit %cc% ../g_bug.c @if errorlevel 1 goto quit %cc% ../nv/nv_loadEnts.c @if errorlevel 1 goto quit %cc% ../nv/nv_customGametypes.c @if errorlevel 1 goto quit %cc% ../nv/nv_ip2Country.c @if errorlevel 1 goto quit %cc% ../nv/nv_utils.c @if errorlevel 1 goto quit %cc% ../nv/nv_adm.c @if errorlevel 1 goto quitf %cc% ../nv/nv_editEnts.c @if errorlevel 1 goto quit %cc% ../nv/nv_saveEnts.c @if errorlevel 1 goto quit %cc% ../nv/nv_addEnts.c @if errorlevel 1 goto quit %cc% ../zg_mover.c @if errorlevel 1 goto quit %cc% ../crs/zai_main.c @if errorlevel 1 goto quit %cc% ../crs/zg_waypoint.c @if errorlevel 1 goto quit %cc% ../crs/zai_team.c @if errorlevel 1 goto quit %cc% ../crs/zg_cmds.c @if errorlevel 1 goto quit sof2asm -f ../game @if errorlevel 1 goto quit copy *.map "..\..\..\SOF2\RPM\vm" copy *.qvm "..\..\..\SOF2\RPM\vm" :quit cd .. PAUSE
godordevil/RPM-0.75.x
Source Code - RPM 0.75.x/game/game.bat
bat
gpl-2.0
3,091
cmd_drivers/bluetooth/hci_uart.o := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/bluetooth/hci_uart.o drivers/bluetooth/hci_ldisc.o drivers/bluetooth/hci_h4.o drivers/bluetooth/hci_ll.o
kingklick/kk-evo-kernel
drivers/bluetooth/.hci_uart.o.cmd
bat
gpl-2.0
240
cmd_net/bluetooth/rfcomm/rfcomm.o := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ld.bfd -EL -r -o net/bluetooth/rfcomm/rfcomm.o net/bluetooth/rfcomm/core.o net/bluetooth/rfcomm/sock.o net/bluetooth/rfcomm/tty.o
Zaphod-Beeblebrox/kernel_rockchip_rk3188
net/bluetooth/rfcomm/.rfcomm.o.cmd
bat
gpl-2.0
228
>>> compound = input('Enter the compound: ') Enter the compound: CH4 >>> if compound == "H2O": ... print("Water") ... elif compound == "NH3": ... print("Ammonia") ... elif compound == "CH4": ... print("Methane") ... Methane >>>
simontakite/sysadmin
pythonscripts/practicalprogramming/cond/elif_longer.cmd
bat
gpl-2.0
240
cmd_scripts/kconfig/conf.o := gcc -Wp,-MD,scripts/kconfig/.conf.o.d -Wall -W -Wmissing-prototypes -Wstrict-prototypes -Wno-unused-parameter -Wno-sign-compare -O2 -fomit-frame-pointer -fno-delete-null-pointer-checks -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/conf.o scripts/kconfig/conf.c source_scripts/kconfig/conf.o := scripts/kconfig/conf.c deps_scripts/kconfig/conf.o := \ $(wildcard include/config/.h) \ $(wildcard include/config/allconfig.h) \ $(wildcard include/config/nosilentupdate.h) \ /usr/include/locale.h \ /usr/include/features.h \ /usr/include/stdc-predef.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/lib/gcc/x86_64-linux-gnu/4.7/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/locale.h \ /usr/include/xlocale.h \ /usr/include/ctype.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/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/bits/byteswap-16.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/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/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/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/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/include/assert.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stdbool.h \ /usr/include/libintl.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/conf.o: $(deps_scripts/kconfig/conf.o) $(deps_scripts/kconfig/conf.o):
LTEAdvanced/DasKernelBoots-LU6200-STOCKJB-
scripts/kconfig/.conf.o.cmd
bat
gpl-2.0
3,198
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\plugemin.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\plugemin.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
iLoveTux/plugemin
docs/make.bat
bat
gpl-3.0
7,745
set PGCLIENTENCODING=UTF8; "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 030_clean.sql fkg "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 040_metadata.sql fkg "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 050_coredata.sql fkg "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 060_fkg_utilities.sql fkg "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 070_fkg_utilities_view_definition.sql fkg "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 080_fkg_utilities_trigger_function_definition.sql fkg "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 085_fkg_utilities_index_definition.sql fkg REM "C:\Program Files\PostgreSQL\10\bin\psql" --quiet -h localhost -p 5432 -U postgres -f 120_create_l_fotoforbindelse.sql cf2
OpenFKG/fkg-postgresql
src/redo_db.cmd
bat
gpl-3.0
981
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\tomahawk.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\tomahawk.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
oinume/tomahawk
docs/en/make.bat
bat
lgpl-2.1
5,100
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Nobackendid.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Nobackendid.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
mrizalp28/930193
make.bat
bat
apache-2.0
7,742
@echo off cd C:\projects\spectre\src\Spectre.AngularClient IF EXIST "C:\projects\spectre\karma-tests.xml" ( powershell C:\projects\spectre\scripts\Upload-TestResult.ps1 -fileName C:\projects\spectre\src\Spectre.AngularClient\karma-tests.xml ) IF EXIST "C:\projects\spectre\protractor-tests.xml" ( powershell C:\projects\spectre\scripts\Upload-TestResult.ps1 -fileName C:\projects\spectre\src\Spectre.AngularClient\protractor-tests.xml )
mg6/spectre
scripts/upload-frontend-test-results.bat
bat
apache-2.0
445
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\exercise_agregator.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\exercise_agregator.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
PythonicNinja/ExerciseAgregator
docs/make.bat
bat
bsd-3-clause
5,120
@echo off goto menu :menu echo Build Project Generator: echo. echo [0] Clean echo [1] Visual C++ 2012 echo [2] Visual C++ 2013 echo [3] Visual C++ 2015 echo [4] GNU Make echo. :choice set /P C="Choice: " if "%C%"=="4" goto gmake if "%C%"=="3" goto vs2015 if "%C%"=="2" goto vs2013 if "%C%"=="1" goto vs2012 if "%C%"=="0" goto clean :clean "premake5" --file=premake4.lua clean goto quit :vs2012 "premake5" --file=premake4.lua vs2012 goto quit :vs2013 "premake5" --file=premake4.lua vs2013 goto quit :vs2015 "premake5" --file=premake4.lua vs2015 goto quit :gmake "premake5" --file=premake4.lua gmake goto quit :quit pause :end
SonyaSa/CppSharp
build/GenerateProjects.bat
bat
mit
675
#!/bin/sh rem (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. rem rem This file contains confidential and proprietary information rem of Xilinx, Inc. and is protected under U.S. and rem international copyright and other intellectual property rem laws. rem rem DISCLAIMER rem This disclaimer is not a license and does not grant any rem rights to the materials distributed herewith. Except as rem otherwise provided in a valid license issued to you by rem Xilinx, and to the maximum extent permitted by applicable rem law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND rem WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES rem AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING rem BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- rem INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and rem (2) Xilinx shall not be liable (whether in contract or tort, rem including negligence, or under any other theory of rem liability) for any loss or damage of any kind or nature rem related to, arising under or in connection with these rem materials, including for any direct, or any indirect, rem special, incidental, or consequential loss or damage rem (including loss of data, profits, goodwill, or any type of rem loss or damage suffered as a result of any action brought rem by a third party) even if such damage or loss was rem reasonably foreseeable or Xilinx had been advised of the rem possibility of the same. rem rem CRITICAL APPLICATIONS rem Xilinx products are not designed or intended to be fail- rem safe, or for use in any application requiring fail-safe rem performance, such as life-support or safety devices or rem systems, Class III medical devices, nuclear facilities, rem applications related to the deployment of airbags, or any rem other applications that could lead to death, personal rem injury, or severe property or environmental damage rem (individually and collectively, "Critical rem Applications"). Customer assumes the sole risk and rem liability of any use of Xilinx products in Critical rem Applications, subject only to applicable laws and rem regulations governing limitations on product liability. rem rem THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS rem PART OF THIS FILE AT ALL TIMES. rem ----------------------------------------------------------------------------- rem Script to synthesize and implement the Coregen FIFO Generator rem ----------------------------------------------------------------------------- rmdir /S /Q results mkdir results cd results copy ..\..\..\char_mem.ngc . planAhead -mode batch -source ..\planAhead_ise.tcl
fupolarbear/THU-Class-CO-makecomputer
src/VGA/ipcore_dir/char_mem/implement/planAhead_ise.bat
bat
mit
2,630
scriptcs build.csx -- target:deploy configuration:defaultConfig versionNumber:1.1.0 pause
stevenlauwers22/Glimpse.NHibernate
.build/buildDeploy.bat
bat
mit
89
@fasm -m 16384 setup.asm setup @kpack setup @pause
devlato/kolibrios-llvm
programs/system/setup/trunk/build.bat
bat
mit
50
@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\arza.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\arza.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
gloryofrobots/obin
doc/make.bat
bat
gpl-2.0
6,697
/* Create default XWorkplace configuration folder Dutch version (031) (C) 1998-2007 Ulrich M”ller. */ /* This file is executed both by INSTLxxx.CMD and by XWorkplace directly if the config folder is to be (re)created. */ /* Here come the titles of the objects to be created. Translate these to your language. The "~" character determines the character for objects in the XWorkplace Configuration Folder which will then be underlined in the respective menu items. */ XWorkplace = "XWorkplace"; OS2 = "OS/2" /* Config Folder title */ ConfigFolder = XWorkplace||" Configuratie Map"; /* here come the objects in the config folder */ CommandLines = "~Opdracht aanwijzingen"; OS2Win = "~"||OS2||" venster"; OS2Fullscreen = OS2||" ~volledig scherm"; DosWin = "~DOS venster"; DOSFullscreen = "DOS volledig scherm"; CreateAnother = "Toevoege~n"; Folder = "Map"; /* the following three were added with V0.9.16 */ URLFolder = "URL Map"; DataFile = "Gegevens Bestand"; ProgramObject = "Programma object"; QuickSettings = "~Snelle Instellingen"; DefaultView = "Stan~daard beeld voor deze map"; IconView = "Pictogrammen"; TreeView = "Boomstructuur"; DetailsView = "Details"; SmallIcons = "Kleine pictogrammen voor Pictogrammen en Boomstructuur beeld"; NormalIcons = "Normale pictogrammen voor Pictogrammen en Boomstructuur beeld"; ShowAllInTreeView = "Toon alle objecten in Boomstructuur"; WorkplaceShell = "Workplace Shell"; XWPSetup = XWorkplace||" Instellingen"; OS2Kernel = OS2||" Kernel"; Screen = "Beeld"; Mouse = "Muis"; Keyboard = "Toetsenbord"; /* the following one is new with V0.9.19 */ OnlineReference = XWorkplace||" Gebruikers Handleiding"; Treesize = "Boomstructuur Groote"; PackTree = "Deze boomstructuur in pakken"; /* where to create the config folder: */ TargetLocation = "<XWP_MAINFLDR>" /********************************************* * * NLS-independent portion * * Note: All of this was rewritten with V0.9.19, * but the NLS part above is unchanged. Just copy * the entire chunk below from crobj001.cmd to your * translated file, and it should still work. * ********************************************/ call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs' call SysLoadFuncs parse source dir; parse var dir x1 x2 dir; dir = filespec("D", dir)||filespec("P", dir); pdir = left(dir, length(dir)-8); idir = dir; dir = pdir||"bin\"; /* main config folder */ class = "WPFolder"; title = ConfigFolder; setup = "ICONVIEW=NONFLOWED,MINI;DEFAULTVIEW=ICON;SHOWALLINTREEVIEW=YES;ALWAYSSORT=NO;"; id = "<XWP_CONFIG>" target = TargetLocation; call CreateObject; /* command prompts subfolder */ class = "WPFolder"; title = CommandLines; setup = "DEFAULTVIEW=ICON;ICONVIEW=NONFLOWED,MINI;SHOWALLINTREEVIEW=YES;ALWAYSSORT=NO;"; id = "<XWP_CFG1>" target = "<XWP_CONFIG>"; call CreateObject; class = "WPProgram"; if (SysSearchPath("PATH", "CMDSHL.CMD") \= "") then do title = OS2Win||" (CmdShl)"; target = "<XWP_CFG1>"; setup = "EXENAME=cmdshl.cmd;PARAMETERS=%;PROGTYPE=WINDOWABLEVIO;CCVIEW=YES;"; id = "<XWP_CMDSHL>"; call CreateObject; end if (SysSearchPath("PATH", "BASH.EXE") \= "") then do title = OS2Win||" (bash)"; target = "<XWP_CFG1>"; setup = "EXENAME=bash.exe;PARAMETERS=%;PROGTYPE=WINDOWABLEVIO;CCVIEW=YES;"; id = "<XWP_BASH>"; call CreateObject; end if (SysSearchPath("PATH", "KSH.EXE") \= "") then do title = OS2Win||" (ksh)"; target = "<XWP_CFG1>"; setup = "EXENAME=ksh.exe;PARAMETERS=%;PROGTYPE=WINDOWABLEVIO;CCVIEW=YES;"; id = "<XWP_KSH>"; call CreateObject; end title = OS2Win; target = "<XWP_CFG1>"; setup = "EXENAME=*;PARAMETERS=%;PROGTYPE=WINDOWABLEVIO;CCVIEW=YES;"; id = "<XWP_OS2WIN>"; call CreateObject; title = OS2Fullscreen; setup = "EXENAME=*;PARAMETERS=%;PROGTYPE=FULLSCREEN;CCVIEW=YES;"; id = "<XWP_OS2FULL>"; call CreateObject; title = DosWin; setup = "EXENAME=*;PARAMETERS=%;PROGTYPE=WINDOWEDVDM;CCVIEW=YES;"; id = "<XWP_DOSWIN>"; call CreateObject; title = DosFullscreen; setup = "EXENAME=*;PARAMETERS=%;PROGTYPE=VDM;CCVIEW=YES;"; id = "<XWP_DOSFULL>"; call CreateObject; /* "create new" folder */ class = "WPFolder"; title = CreateAnother; target = "<XWP_CONFIG>"; setup = "DEFAULTVIEW=ICON;ICONVIEW=NONFLOWED,MINI;SHOWALLINTREEVIEW=YES;ALWAYSSORT=NO;"; id = "<XWP_CFG2>"; call CreateObject; class = "WPFolder"; title = Folder; target = "<XWP_CFG2>"; setup = "TEMPLATE=YES;"; id = "<XWP_FOLDERTEMPLATE>"; call CreateObject; class = "WPUrlFolder"; title = URLFolder; id = "<XWP_URLFOLDERTEMPLATE>"; call CreateObject; class = "WPDataFile"; title = DataFile; id = "<XWP_DATAFILETEMPLATE>"; call CreateObject; class = "WPProgram"; title = ProgramObject; id = "<XWP_PROGRAMTEMPLATE>"; call CreateObject; /* XWorkplace subfolder */ class = "WPFolder"; title = "~"||XWorkplace; target = "<XWP_CONFIG>"; setup = "DEFAULTVIEW=ICON;ICONVIEW=NONFLOWED,MINI;SHOWALLINTREEVIEW=YES;ALWAYSSORT=NO;"; id = "<XWP_CFG4>"; call CreateObject; class = "WPShadow"; title = XWPSetup; target = "<XWP_CFG4>"; setup = "SHADOWID=<XWORKPLACE_SETUP>;"; id = "<XWORKPLACE_SETUPCFGSHADOW>"; call CreateObject; title = WorkplaceShell; setup = "SHADOWID=<XWP_WPS>;"; id = "<XWP_WPSCFGSHADOW>"; call CreateObject; title = Mouse; setup = "SHADOWID=<WP_MOUSE>;"; id = "<XWP_WPMOUSECFGSHADOW>"; call CreateObject; setup = "SHADOWID=<WPSTK_MOUSE>;"; id = "<XWP_WPMOUSECFGSHADOW>"; call CreateObject; title = Keyboard; setup = "SHADOWID=<WP_KEYB>;"; id = "<XWP_WPKEYBCFGSHADOW>"; call CreateObject; title = Screen; setup = "SHADOWID=<XWP_SCREEN>;"; id = "<XWP_SCREENCFGSHADOW>"; call CreateObject; title = OS2Kernel; setup = "SHADOWID=<XWP_KERNEL>;"; id = "<XWP_KERNELCFGSHADOW>"; call CreateObject; class = "WPProgram"; title = "---"; setup = ""; id = "<XWP_SEP41>"; call CreateObject; class = "WPShadow"; title = OnlineReference; setup = "SHADOWID=<XWP_REF>;"; id = "<XWP_REFCFGSHADOW>"; call CreateObject; class = "WPProgram"; title = "--- "; setup = ""; id = "<XWP_SEP42>"; call CreateObject; class = "WPShadow"; title = ConfigFolder; setup = "SHADOWID=<XWP_CONFIG>;"; id = "<XWP_CONFIGCFGSHADOW>"; call CreateObject; /* more items in main cfg folder */ class = "WPProgram"; title = "---"; target = "<XWP_CONFIG>"; setup = ""; id = "<XWP_SEP1>"; call CreateObject; if (SysSearchPath("PATH", "NETSCAPE.EXE") \= "") then do title = "Netscape (DDE)"; setup = "EXENAME="dir"netscdde.exe;"; id = "<XWP_NETSCAPE>"; call CreateObject; end title = Treesize; setup = "EXENAME="dir"treesize.exe;CCVIEW=YES;"; id = "<XWP_TREESIZE>"; call CreateObject; if (SysSearchPath("PATH", "ZIP.EXE") \= "") then do title = PackTree; setup = "EXENAME="dir"packtree.cmd;CCVIEW=YES;"; id = "<XWP_PACKTREE>"; call CreateObject; end exit; CreateObject: len = length(id); if (len == 0) then do Say 'Error with object "'title'": object ID not given.'; exit; end if (left(id, 1) \= '<') then do Say 'Error with object "'title'": object ID does not start with "<".'; exit; end if (right(id, 1) \= '>') then do Say 'Error with object "'title'": object ID does not end with ">".'; exit; end len = length(setup); if ((len > 0) & (right(setup, 1) \= ';')) then do Say 'Error with object "'title'": Setup string "'setup'" does not end in semicolon.'; exit; end call charout , 'Creating "'title'" of class "'class'", setup "'setup'"... ' rc = SysCreateObject(class, title, target, setup"TITLE="title";OBJECTID="id";", "U"); if (\rc) then do rc = SysCreateObject(class, title, "<WP_DESKTOP>", setup"TITLE="title";OBJECTID="id";", "U"); end; if (\rc) then do Say 'Warning: object "'title'" of class "'class'" could not be created.' end else do Say "OK" end id = ""; return; CreateObjectWithShadow: idOld = id; call CreateObject; class = "WPShadow"; setup = "SHADOWID="idOld";" id = idOfShadow; target = "<XWP_MAINFLDR>"; call CreateObject; return;
rousseaux/netlabs.xworkplace
031/misc/crobj031.cmd
bat
gpl-2.0
8,698
cmd_sound/pci/echoaudio/built-in.o := rm -f sound/pci/echoaudio/built-in.o; arm-linux-gnueabihf-ar rcsD sound/pci/echoaudio/built-in.o
Dee-UK/D33_KK_Kernel
sound/pci/echoaudio/.built-in.o.cmd
bat
gpl-2.0
136
cmd_sound/sparc/built-in.o := rm -f sound/sparc/built-in.o; /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-ar rcsD sound/sparc/built-in.o
EPDCenter/android_kernel_archos_97_titan
sound/sparc/.built-in.o.cmd
bat
gpl-2.0
221
echo off cls if not "%CORUS_HOME%"=="" goto okCorusHome CORUS_HOME environment variable not set. Set this variable to point to your CORUS installation directory. goto end :okCorusHome if not "%JAVA_HOME%"=="" goto okJavaHome JAVA_HOME environment variable not set. Set this variable to point to your Java installation directory. goto end :okJavaHome SET LOCALCLASSPATH= if "%LOCALCLASSPATH_DEFINED%"=="true" goto okLcp for %%i in (%CORUS_HOME%\server\lib\*.jar) do call %CORUS_HOME%\bin\lcp.bat %%i set LOCALCLASSPATH_DEFINED=true :okLcp rem echo %LOCALCLASSPATH% set CLASSPATH=%CLASSPATH%;%LOCALCLASSPATH% "%JAVA_HOME%/bin/java" -Dcorus.home="%CORUS_HOME%" org.sapia.corus.examples.EchoClient %1 %2 %3 %4 :end
sapia-oss/corus
modules/server/bin/echoClient.bat
bat
gpl-3.0
727
@echo on :: Copyright 2014 The Chromium Authors. All rights reserved. :: Use of this source code is governed by a BSD-style license that can be :: found in the LICENSE file. REG ADD "HKLM\Software\Google\Chrome\NativeMessagingHosts\ofmeet.remote.control" /ve /t REG_SZ /d "%~dp0ofmeet.remote.control.win.32.json" /f
igniterealtime/community-plugins
ofmeet/src/remotecontrol/install_host_32.bat
bat
apache-2.0
317
CALL "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" /p:Confuration=Release "C:\Builds\GeoportalServer\10.2_CSWClients\Sources\CswClient\branches\10.2\InstallSupport\CSWClientsHelp.shfbproj"
Esri/geoportal-server
components/desktop/CswClient/branches/10.2/InstallSupport/PrePackageEvents.bat
bat
apache-2.0
203
python.exe -m cython %*
JulienMcJay/eclock
windows/tools/cython.bat
bat
gpl-2.0
24
java org.apache.tools.ant.launch.Launcher -f %BLACKTIE_HOME%/bin/generate-executables.xml -quiet -Dconfiguration.type=debug -Dbasedir=. client %*
nmcl/scratch
graalvm/transactions/fork/narayana/blacktie/codeGeneration/src/main/scripts/generate_client.bat
bat
apache-2.0
146
@rem Copyright 2017 gRPC authors. @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem enter repo root cd /d %~dp0\..\..\.. If Not "%RUN_TESTS_FLAGS%"=="%RUN_TESTS_FLAGS:python=%" ( set PREPARE_BUILD_INSTALL_DEPS_PYTHON=true ) call tools/internal_ci/helper_scripts/prepare_build_windows.bat || exit /b 1 python tools/run_tests/run_tests_matrix.py %RUN_TESTS_FLAGS% set RUNTESTS_EXITCODE=%errorlevel% bash tools/internal_ci/helper_scripts/delete_nonartifacts.sh exit /b %RUNTESTS_EXITCODE%
nicolasnoble/grpc
tools/internal_ci/windows/grpc_run_tests_matrix.bat
bat
apache-2.0
1,032
start .\RecastDemo\Build\VC9\Recast.sln
WCell/WCell
WCell-Terrain/Recast/Recast.sln.bat
bat
gpl-2.0
39
"..\node_modules\.bin\nswag" run
aspnetboilerplate/eventcloud
aspnet-core-angular/angular/nswag/refresh.bat
bat
mit
32
build vs2017
thennequin/ImWindow
scripts/build 2017.bat
bat
mit
12
SET ASSETSRCDIR=projects/android/assets SET DATASRCDIR=data robocopy %DATASRCDIR% %ASSETSRCDIR%/data /s
kjmac123/metabuilder
metabuilder/examples/mobileapp3d/msvctadp_android_copyassets.bat
bat
mit
106
REM modify the line below to point to the folder where the OC Data Importer Python Script is stored "C:\path_to_where_the_Importer_Script_is_stored\OC Data Importer 1.0.py"
mochisoft/OC_Offline
import.cmd
bat
mit
173
@echo off ECHO ---- RDP fuzzing example attack version ---- ECHO Note: Make sure to edit this batch file to point to the right server ip address hosting the RDP server. rm .\logfiles\*.log .\..\Meddle\bin\Release\Meddle.exe example_mstsc\controller.py -server 192.168.110.136
glmcdona/meddle
examples/Rdp example attack.bat
bat
mit
276
"f:\Programs\doxygen\bin\doxygen.exe" doxygen.html.cfg pause
nzchris/crcalc
gendoc.bat
bat
mit
63
@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\llist.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\llist.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
ajakubek/python-llist
docs/make.bat
bat
mit
4,509
@echo off echo BUILD SET dirApp=%~dp0 del /Q "%dirApp%"\Domoticasite.json curl https://www.meteorkitchen.com/api/getapp/json/N526wRpB3xekvDM5M -o %dirApp%\Domoticasite.json rmdir bundle /S /Q mkdir emptyfolder robocopy emptyfolder bundle /purge rmdir emptyfolder rmdir bundle rmdir Domoticasite /S /Q mkdir Domoticasite meteor-kitchen %dirApp%\Domoticasite.json %dirApp%\Domoticasite --meteor-release 1.5.4 cd ./Domoticasite meteor build --architecture=os.linux.x86_64 --directory %dirApp% & cd %dirApp%
mttstt/Domoticasite
build.bat
bat
mit
505
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\.2.4.1@webpack-dev-server\bin\webpack-dev-server.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\.2.4.1@webpack-dev-server\bin\webpack-dev-server.js" %* )
MacroLin/practice
webpack+gulp+less/node_modules/.bin/webpack-dev-server.cmd
bat
mit
244
nulev o_18a
kc9jud/ShellCorretta
NuShellX_exercises/O18/nulevall.bat
bat
mit
17
@echo off set /p cusnum= "What number (1 to ???)? " if %cusnum% lss 1 goto warning set /a count=0 :a set /a num=%random% %% %cusnum% +1 if %num%==%cusnum% goto end set /a count=%count%+1 echo #%count% - %num% goto a :end set /a count=%count%+1 if %count%==1 goto onealt echo #%count% - %cusnum% echo It took %count% tries to get the number %cusnum%. pause exit :onealt echo #%count% - %cusnum% echo It took %count% try to get the number %cusnum%. pause exit :warning echo You have to enter a POSITIVE number! RESTART! pause exit
Mysterypancake1/Source-Fun
batch/randomnumber.bat
bat
mit
553
@set @env=0 /* @echo off set @env= cscript //nologo //e:jscript "%~dpnx0" exit /b 'intBig = 100 'intLow = 1 ' 'For i = 1 To 5 ' Randomize ' intRes = Int((intBig - intLow + 1) * Rnd + intLow) ' WScript.Echo intRes 'Next */ with (new ActiveXObject('Scripting.FileSystemObject')) { with (new ActiveXObject('MSScriptControl.ScriptControl')) { var f, s, code = ""; f = OpenTextFile(WScript.ScriptFullName, 1); while (!f.AtEndOfStream) { s = f.ReadLine(); if (s.match(/^\'(\w+|\s+|\=*.)+$/g)) code += s; } f.Close(); language = 'VBScript'; addobject('WScript', WScript, true); addcode(code.split(/'/).join('\n')); } }
ActiveState/code
recipes/Batch/578329_Executing_VBScript_without/recipe-578329.bat
bat
mit
681
echo hello world pause
SharpToolsTeam/SharpTools.Admin
build.cmd
bat
mit
22
@echo off : Param1 - Win8 | Win7 | Wlh : Param2 - x86|x64 : Param3 - sys name if "%2"=="x64" set %%2=amd64 if /i "%1"=="Win8" goto :checkarch if /i "%1"=="Win7" goto :checkarch if /i "%1"=="Wlh" goto :checkarch goto :printerr :checkarch if /i "%2"=="x86" goto :makeinstall if /i "%2"=="x64" goto :makeinstall :printerr echo wrong parameters (1)%1 (2)%2 (3)%3 pause goto :eof :makeinstall if "%DDKVER%"=="" set DDKVER=7600.16385.1 set BUILDROOT=C:\WINDDK\%DDKVER% set INST_OS=%1 set INST_ARC=%2 set SYS_NAME=%3 rem set INST_EXT=INST_ARC if /i "%INST_ARC%"=="x64" goto :set_x64 set INST_EXT=i386 goto :startcopy :set_x64 set INST_ARC=amd64 set INST_EXT=amd64 :startcopy set SYS_PATH_AND_NAME=objfre_%INST_OS%_%INST_ARC%\%INST_EXT%\%SYS_NAME%.sys set PDB_PATH_AND_NAME=objfre_%INST_OS%_%INST_ARC%\%INST_EXT%\%SYS_NAME%.pdb set INF_PATH_AND_NAME=objfre_%INST_OS%_%INST_ARC%\%INST_EXT%\%SYS_NAME%.inf set DVL_PATH_AND_NAME=%SYS_NAME%.DVL.xml rem echo makeinstall %1 %2 %3 mkdir .\Install\%INST_OS%\%INST_ARC% del /Q .\Install\%INST_OS%\%INST_ARC%\%FILE_NAME%.* copy /Y %SYS_PATH_AND_NAME% .\Install\%INST_OS%\%INST_ARC% copy /Y %PDB_PATH_AND_NAME% .\Install\%INST_OS%\%INST_ARC% copy /Y %INF_PATH_AND_NAME% .\Install\%INST_OS%\%INST_ARC%\%SYS_NAME%.inf :create_cat echo "Setting OS mask for:" %1 %2 if /i "%1"=="win8" goto create_win8 if /i "%1"=="wlh" goto create_vista if /i "%1"=="win7" goto create_vista goto error_inf2cat :create_vista setlocal if /i "%2"=="x86" set _OSMASK_=Vista_X86,Server2008_X86,7_X86 if /i "%2"=="x64" set _OSMASK_=Vista_X64,Server2008_X64,7_X64,Server2008R2_X64 goto run_inf2cat :create_win8 setlocal if not exist %DVL_PATH_AND_NAME% goto do_the_job if /i "%2"=="x64" copy /Y %DVL_PATH_AND_NAME% .\Install\%INST_OS%\%INST_ARC%\ goto after_inf2cat :do_the_job if /i "%2"=="x86" set _OSMASK_=8_X86 if /i "%2"=="x64" set _OSMASK_=8_X64,Server8_X64 call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %INST_ARC% goto run_inf2cat :error_inf2cat echo "Error setting OS mask for inf2cat" goto after_inf2cat :run_inf2cat inf2cat /driver:Install\%INST_OS%\%INST_ARC% /os:%_OSMASK_% :after_inf2cat set INST_OS= set INST_ARC= set SYS_NAME= set SYS_PATH_AND_NAME= set PDB_PATH_AND_NAME= set INF_PATH_AND_NAME= set DVL_PATH_AND_NAME= set DDKVER= set BUILDROOT=
softvision-ionutganju/test
vioscsi/packOne.bat
bat
gpl-2.0
2,315
@echo off set RAR="C:\Program Files\WinRAR\WinRAR.exe" set PORTABLEZIP="D:\dremote\site\dl\dRemote_portable.zip" set PORTABLESFX="D:\dremote\site\dl\dRemote_sfx.exe" set buildpath="D:\dRemote-develop\mRemoteV1\bin\Debug Portable\*.*" IF EXIST "D:\dRemote-develop\mRemoteV1\bin\Debug Portable\putty.exe" del /F "D:\dRemote-develop\mRemoteV1\bin\Debug Portable\putty.exe" COPY "D:\dRemote-develop\mRemoteV1\References\putty.exe" "D:\dRemote-develop\mRemoteV1\bin\Debug Portable\putty.exe" IF EXIST %PORTABLEZIP% del /F %PORTABLEZIP% IF EXIST %PORTABLESFX% del /F %PORTABLESFX% %RAR% a -m5 -r -ep1 -afzip -inul %PORTABLEZIP% %buildpath% %RAR% a -m5 -r -ep1 -sfx -inul %PORTABLESFX% %buildpath%
bkbartk/dRemote-develop
postformbuild.bat
bat
gpl-2.0
690
cmd_sound/isa/msnd/built-in.o := rm -f sound/isa/msnd/built-in.o; arm-arago-linux-gnueabi-ar rcs sound/isa/msnd/built-in.o
calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1
sound/isa/msnd/.built-in.o.cmd
bat
gpl-2.0
124
cmd_arch/arm/lib/csumipv6.o := arm-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.csumipv6.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/csumipv6.o arch/arm/lib/csumipv6.S deps_arch/arm/lib/csumipv6.o := \ arch/arm/lib/csumipv6.S \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \ arch/arm/lib/csumipv6.o: $(deps_arch/arm/lib/csumipv6.o) $(deps_arch/arm/lib/csumipv6.o):
b8e5n/KTG-kernel_es209ra
arch/arm/lib/.csumipv6.o.cmd
bat
gpl-2.0
1,671
cmd_fs/cifs/cifsfs.o := arm-linux-gnueabi-gcc -Wp,-MD,fs/cifs/.cifsfs.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.6/include -I/root/linux-jps/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/plat-rk/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 -Wno-unused-but-set-variable -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(cifsfs)" -D"KBUILD_MODNAME=KBUILD_STR(cifs)" -c -o fs/cifs/cifsfs.o fs/cifs/cifsfs.c source_fs/cifs/cifsfs.o := fs/cifs/cifsfs.c deps_fs/cifs/cifsfs.o := \ $(wildcard include/config/cifs/stats2.h) \ $(wildcard include/config/cifs/xattr.h) \ $(wildcard include/config/cifs/posix.h) \ $(wildcard include/config/cifs/dnotify/experimental.h) \ $(wildcard include/config/cifs/upcall.h) \ $(wildcard include/config/cifs/acl.h) \ $(wildcard include/config/cifs/dfs/upcall.h) \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/debug/set/module/ronx.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /root/linux-jps/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /root/linux-jps/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/linux-jps/arch/arm/include/asm/posix_types.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/const.h \ include/linux/stat.h \ /root/linux-jps/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/compaction.h) \ /usr/lib/gcc/arm-linux-gnueabi/4.6/include/stdarg.h \ include/linux/linkage.h \ /root/linux-jps/arch/arm/include/asm/linkage.h \ include/linux/bitops.h \ /root/linux-jps/arch/arm/include/asm/bitops.h \ /root/linux-jps/arch/arm/include/asm/system.h \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cpu/32v6k.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/v6.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /root/linux-jps/arch/arm/include/asm/irqflags.h \ /root/linux-jps/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/linux-jps/arch/arm/include/asm/hwcap.h \ /root/linux-jps/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.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/asm-generic/bitops/le.h \ /root/linux-jps/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/linux-jps/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/dynamic_debug.h \ /root/linux-jps/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/linux-jps/arch/arm/include/asm/div64.h \ /root/linux-jps/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/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /root/linux-jps/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/linux-jps/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/linux-jps/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /root/linux-jps/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ /root/linux-jps/arch/arm/include/asm/spinlock.h \ $(wildcard include/config/thumb2/kernel.h) \ /root/linux-jps/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/errata/754327.h) \ /root/linux-jps/arch/arm/include/asm/hw_breakpoint.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) \ /root/linux-jps/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/have/arch/pfn/valid.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /root/linux-jps/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/linux-jps/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /root/linux-jps/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) \ /root/linux-jps/arch/arm/include/asm/glue.h \ /root/linux-jps/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ arch/arm/mach-rk30/include/mach/memory.h \ include/linux/version.h \ arch/arm/mach-rk30/include/mach/io.h \ $(wildcard include/config/rk/debug/uart.h) \ /root/linux-jps/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/errno.h \ /root/linux-jps/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/have/arch/mutex/cpu/relax.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /root/linux-jps/arch/arm/include/asm/smp.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/linux-jps/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /root/linux-jps/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /root/linux-jps/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /root/linux-jps/arch/arm/include/asm/timex.h \ arch/arm/mach-rk30/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/sysctl.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/completion.h \ include/linux/rcutree.h \ include/linux/elf.h \ include/linux/elf-em.h \ /root/linux-jps/arch/arm/include/asm/elf.h \ /root/linux-jps/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ /root/linux-jps/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/fs.h \ $(wildcard include/config/security.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /root/linux-jps/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rculist_bl.h \ include/linux/list_bl.h \ include/linux/bit_spinlock.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/percpu_counter.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /root/linux-jps/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/mount.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/linux/seq_file.h \ include/linux/vfs.h \ include/linux/statfs.h \ /root/linux-jps/arch/arm/include/asm/statfs.h \ include/asm-generic/statfs.h \ include/linux/mempool.h \ include/linux/delay.h \ /root/linux-jps/arch/arm/include/asm/delay.h \ include/linux/kthread.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/sched/autogroup.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/cgroups.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/fanotify.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/rcu/boost.h) \ $(wildcard include/config/compat/brk.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/irq/time/accounting.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mmu/notifier.h) \ $(wildcard include/config/transparent/hugepage.h) \ include/linux/auxvec.h \ /root/linux-jps/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /root/linux-jps/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /root/linux-jps/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /root/linux-jps/arch/arm/include/asm/ipcbuf.h \ /root/linux-jps/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /root/linux-jps/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /root/linux-jps/arch/arm/include/asm/sigcontext.h \ /root/linux-jps/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/proportions.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /root/linux-jps/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/timerfd.h) \ include/linux/timerqueue.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/user/ns.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/freezer.h \ $(wildcard include/config/cgroup/freezer.h) \ include/linux/namei.h \ include/net/ipv6.h \ include/linux/ipv6.h \ $(wildcard include/config/ipv6/privacy.h) \ $(wildcard include/config/ipv6/router/pref.h) \ $(wildcard include/config/ipv6/route/info.h) \ $(wildcard include/config/ipv6/optimistic/dad.h) \ $(wildcard include/config/ipv6/mroute.h) \ $(wildcard include/config/ipv6/mip6.h) \ $(wildcard include/config/ipv6/subtrees.h) \ $(wildcard include/config/ipv6.h) \ include/linux/in6.h \ include/linux/icmpv6.h \ include/linux/skbuff.h \ $(wildcard include/config/nf/conntrack.h) \ $(wildcard include/config/bridge/netfilter.h) \ $(wildcard include/config/nf/defrag/ipv4.h) \ $(wildcard include/config/nf/defrag/ipv6.h) \ $(wildcard include/config/xfrm.h) \ $(wildcard include/config/net/sched.h) \ $(wildcard include/config/net/cls/act.h) \ $(wildcard include/config/ipv6/ndisc/nodetype.h) \ $(wildcard include/config/net/dma.h) \ $(wildcard include/config/network/secmark.h) \ $(wildcard include/config/network/phy/timestamping.h) \ include/linux/kmemcheck.h \ include/linux/net.h \ include/linux/socket.h \ /root/linux-jps/arch/arm/include/asm/socket.h \ /root/linux-jps/arch/arm/include/asm/sockios.h \ include/linux/sockios.h \ include/linux/random.h \ include/linux/irqnr.h \ include/linux/textsearch.h \ include/net/checksum.h \ /root/linux-jps/arch/arm/include/asm/uaccess.h \ /root/linux-jps/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /root/linux-jps/arch/arm/include/asm/checksum.h \ include/linux/dmaengine.h \ $(wildcard include/config/async/tx/enable/channel/switch.h) \ $(wildcard include/config/dma/engine.h) \ $(wildcard include/config/async/tx/dma.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/devtmpfs.h) \ $(wildcard include/config/sysfs/deprecated.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ /root/linux-jps/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ include/linux/dma-mapping.h \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/have/dma/attrs.h) \ $(wildcard include/config/need/dma/map/state.h) \ include/linux/dma-attrs.h \ include/linux/bug.h \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ /root/linux-jps/arch/arm/include/asm/scatterlist.h \ include/asm-generic/scatterlist.h \ $(wildcard include/config/need/sg/dma/length.h) \ include/linux/mm.h \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/hugetlbfs.h) \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/range.h \ /root/linux-jps/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /root/linux-jps/arch/arm/include/asm/proc-fns.h \ /root/linux-jps/arch/arm/include/asm/glue-proc.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6k.h) \ $(wildcard include/config/cpu/v7.h) \ arch/arm/mach-rk30/include/mach/vmalloc.h \ /root/linux-jps/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/huge_mm.h \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/vm_event_item.h \ /root/linux-jps/arch/arm/include/asm/io.h \ /root/linux-jps/arch/arm/include/asm/dma-mapping.h \ include/linux/dma-debug.h \ $(wildcard include/config/dma/api/debug.h) \ include/asm-generic/dma-coherent.h \ $(wildcard include/config/have/generic/dma/coherent.h) \ include/linux/netdevice.h \ $(wildcard include/config/dcb.h) \ $(wildcard include/config/wlan.h) \ $(wildcard include/config/ax25.h) \ $(wildcard include/config/mac80211/mesh.h) \ $(wildcard include/config/tr.h) \ $(wildcard include/config/net/ipip.h) \ $(wildcard include/config/net/ipgre.h) \ $(wildcard include/config/ipv6/sit.h) \ $(wildcard include/config/ipv6/tunnel.h) \ $(wildcard include/config/netpoll.h) \ $(wildcard include/config/rps.h) \ $(wildcard include/config/xps.h) \ $(wildcard include/config/rfs/accel.h) \ $(wildcard include/config/net/poll/controller.h) \ $(wildcard include/config/fcoe.h) \ $(wildcard include/config/wireless/ext.h) \ $(wildcard include/config/vlan/8021q.h) \ $(wildcard include/config/net/dsa.h) \ $(wildcard include/config/net/ns.h) \ $(wildcard include/config/net/dsa/tag/dsa.h) \ $(wildcard include/config/net/dsa/tag/trailer.h) \ $(wildcard include/config/netpoll/trap.h) \ include/linux/if.h \ include/linux/hdlc/ioctl.h \ include/linux/if_ether.h \ include/linux/if_packet.h \ include/linux/if_link.h \ include/linux/netlink.h \ include/linux/pm_qos_params.h \ include/linux/miscdevice.h \ include/linux/major.h \ include/linux/ethtool.h \ include/linux/compat.h \ $(wildcard include/config/nfsd.h) \ $(wildcard include/config/nfsd/deprecated.h) \ include/net/net_namespace.h \ $(wildcard include/config/ip/dccp.h) \ $(wildcard include/config/netfilter.h) \ $(wildcard include/config/wext/core.h) \ $(wildcard include/config/net.h) \ include/net/netns/core.h \ include/net/netns/mib.h \ $(wildcard include/config/xfrm/statistics.h) \ include/net/snmp.h \ include/linux/snmp.h \ include/linux/u64_stats_sync.h \ include/net/netns/unix.h \ include/net/netns/packet.h \ include/net/netns/ipv4.h \ $(wildcard include/config/ip/multiple/tables.h) \ $(wildcard include/config/ip/mroute.h) \ $(wildcard include/config/ip/mroute/multiple/tables.h) \ include/net/inet_frag.h \ include/net/netns/ipv6.h \ $(wildcard include/config/ipv6/multiple/tables.h) \ $(wildcard include/config/ipv6/mroute/multiple/tables.h) \ include/net/dst_ops.h \ include/net/netns/dccp.h \ include/net/netns/x_tables.h \ $(wildcard include/config/bridge/nf/ebtables.h) \ include/linux/netfilter.h \ $(wildcard include/config/netfilter/debug.h) \ $(wildcard include/config/nf/nat/needed.h) \ include/linux/in.h \ include/net/flow.h \ include/linux/proc_fs.h \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/magic.h \ include/net/netns/conntrack.h \ include/linux/list_nulls.h \ include/net/netns/xfrm.h \ include/linux/xfrm.h \ include/linux/seq_file_net.h \ include/net/dsa.h \ include/linux/interrupt.h \ $(wildcard include/config/irq/forced/threading.h) \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /root/linux-jps/arch/arm/include/asm/hardirq.h \ $(wildcard include/config/local/timers.h) \ /root/linux-jps/arch/arm/include/asm/irq.h \ arch/arm/mach-rk30/include/mach/irqs.h \ include/linux/irq_cpustat.h \ include/trace/events/irq.h \ include/linux/tcp.h \ $(wildcard include/config/tcp/md5sig.h) \ include/net/sock.h \ include/linux/security.h \ $(wildcard include/config/security/path.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/securityfs.h) \ include/linux/fsnotify.h \ include/linux/fsnotify_backend.h \ $(wildcard include/config/fanotify/access/permissions.h) \ include/linux/idr.h \ include/linux/audit.h \ $(wildcard include/config/change.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /root/linux-jps/arch/arm/include/asm/shmparam.h \ /root/linux-jps/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /root/linux-jps/arch/arm/include/asm/msgbuf.h \ include/linux/uaccess.h \ include/linux/filter.h \ $(wildcard include/config/bpf/jit.h) \ include/linux/rculist_nulls.h \ include/linux/poll.h \ /root/linux-jps/arch/arm/include/asm/poll.h \ include/asm-generic/poll.h \ include/linux/atomic.h \ $(wildcard include/config/arch/has/atomic/or.h) \ include/net/dst.h \ $(wildcard include/config/ip/route/classid.h) \ include/linux/rtnetlink.h \ include/linux/if_addr.h \ include/linux/neighbour.h \ include/net/neighbour.h \ include/net/rtnetlink.h \ include/net/netlink.h \ include/net/inet_connection_sock.h \ include/net/inet_sock.h \ include/linux/jhash.h \ include/linux/unaligned/packed_struct.h \ include/net/request_sock.h \ include/net/netns/hash.h \ include/net/inet_timewait_sock.h \ include/net/tcp_states.h \ include/net/timewait_sock.h \ include/linux/udp.h \ include/net/if_inet6.h \ include/net/ndisc.h \ fs/cifs/cifsfs.h \ fs/cifs/cifspdu.h \ $(wildcard include/config/cifs/weak/pw/hash.h) \ /root/linux-jps/arch/arm/include/asm/unaligned.h \ include/linux/unaligned/le_byteshift.h \ include/linux/unaligned/be_byteshift.h \ include/linux/unaligned/generic.h \ fs/cifs/smbfsctl.h \ fs/cifs/cifsglob.h \ $(wildcard include/config/cifs/fscache.h) \ $(wildcard include/config/cifs/stats.h) \ fs/cifs/cifs_fs_sb.h \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/writeback.h \ fs/cifs/cifsacl.h \ include/crypto/internal/hash.h \ include/crypto/algapi.h \ include/linux/crypto.h \ include/crypto/hash.h \ fs/cifs/cifsproto.h \ $(wildcard include/config/cifs/symlink/experimental.h) \ include/linux/nls.h \ fs/cifs/cifs_debug.h \ $(wildcard include/config/cifs/debug2.h) \ include/linux/key-type.h \ fs/cifs/cifs_spnego.h \ fs/cifs/fscache.h \ include/linux/fscache.h \ $(wildcard include/config/fscache.h) \ include/linux/pagemap.h \ include/linux/highmem.h \ $(wildcard include/config/x86/32.h) \ $(wildcard include/config/debug/highmem.h) \ /root/linux-jps/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/smp/on/up.h) \ $(wildcard include/config/arm/errata/411920.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ /root/linux-jps/arch/arm/include/asm/glue-cache.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ /root/linux-jps/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /root/linux-jps/arch/arm/include/asm/kmap_types.h \ /root/linux-jps/arch/arm/include/asm/highmem.h \ $(wildcard include/config/cpu/tlb/v6.h) \ include/linux/hugetlb_inline.h \ include/linux/pagevec.h \ fs/cifs/cifsfs.o: $(deps_fs/cifs/cifsfs.o) $(deps_fs/cifs/cifsfs.o):
jpsminix/minix5
fs/cifs/.cifsfs.o.cmd
bat
gpl-2.0
35,534
cmd_fs/nls/built-in.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o fs/nls/built-in.o fs/nls/nls_base.o fs/nls/nls_cp437.o fs/nls/nls_iso8859-1.o fs/nls/nls_utf8.o
JoinTheRealms/TF700-dualboot-stockbased
fs/nls/.built-in.o.cmd
bat
gpl-2.0
232
cls php d:\devel\workspace-wtp\HaloSMWExtensionSVN\tests\tests_halo\run-test.php SemanticConnectorTests
ontoprise/HaloSMWExtension
extensions/SemanticConnector/tests/run-sc-tests.bat
bat
gpl-2.0
104
/* FRANCAIS.CMD : Installation de ESCRIBA, version fran‡aise. */ '@Echo Off' 'CHCP 850' /* Nom de l'objet … installer */ Title = 'Escriba 0,96d' Language = 'Fran‡ais' FileName = 'Francais' /* Chargement de REXXUTIL */ Call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs' Call SysLoadFuncs /* Initialisations */ Signal On Failure Name FAILURE Signal On Halt Name HALT Signal On Syntax Name SYNTAX Call SysCls Say "Installation d'Escriba..." Say "" /* V‚rification de l'existence des diff‚rents fichiers */ Result = SysFileTree( 'ESCRIBA.EXE', 'Files', 'F' ) If Files.0 = 0 Then Do Say 'ERREUR : ESCRIBA.EXE introuvable !' Signal DONE End Result = SysFileTree( FileName".DLL", 'Files', 'F' ) If Files.0 = 0 Then Do Say 'ERREUR : 'FileName'.DLL introuvable !' Signal DONE End Result = SysFileTree( FileName".HLP", 'Files', 'F' ) If Files.0 = 0 Then Do Say 'ERREUR : 'FileName'.HLP introuvable !' Signal DONE End /* Saisie du r‚pertoire de destination */ BootDrive = Filespec('Drive',Value('SYSTEM_INI',,'OS2ENVIRONMENT')) Default = SysIni('USER', 'ESCRIBA', 'INIPATH' ) If Default = 'ERROR:' Then Default = BootDrive'\OS2\Apps' If SUBSTR(Default,LENGTH(Default),1) <= ' ' Then Default = SUBSTR(Default,1,LENGTH(Default)-1) Say 'Veuillez saisir le nom complet du r‚pertoire o— Escriba doit ˆtre install‚' Say '(par d‚faut, 'Default') : ' Parse Pull Directory If Directory = "" Then Directory = Default /* Si n‚cessaire, cr‚ation du r‚pertoire destination */ Result = SysFileTree( Directory, 'Dirs', 'D' ) If Dirs.0 = 0 Then Do Result = SysMkDir( Directory ) if Result == 0 Then Do End Else Do Say 'ERREUR : Impossible de cr‚er le r‚pertoire destination.' Signal DONE End End Say '' /* Sauvegarde du r‚pertoire d'installation */ SysIni( "USER", "ESCRIBA", "INIPATH", Directory ) /* Installation. */ Say 'Copie de Escriba dans 'Directory' ...' 'Copy ESCRIBA.EXE' Directory '1>NUL' 'Copy ESCRIBA.ICO' Directory '1>NUL' 'Copy UNINSTAL.CMD' Directory '1>NUL' 'Copy *.DLL' Directory '1>NUL' 'Copy *.HLP' Directory '1>NUL' 'Copy 'FileName'.DOC' Directory'\ESCRIBA.DOC 1>NUL' Result = SysFileTree( "HLP2INF.EXE", 'Files', 'F' ) If Files.0 > 0 Then Do Result = SysFileTree( Directory"\ESCRIBA.INF", 'Files', 'F' ) If Files.0 > 0 Then Do "Erase" Directory"\ESCRIBA.INF" End "HLP2INF" Directory"\"FileName".HLP" "Rename" Directory"\"FileName".INF ESCRIBA.INF" End Say 'Cr‚ation du dossier...' Type = 'WPFolder' Folder = '<WP_DESKTOP>' Parms = "OBJECTID=<ESCRIBAF>;ICONFILE="Directory"\ESCRIBA.ICO;ALWAYSSORT=YES;" Result = SysCreateObject( Type, 'Escriba', Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Say 'ERREUR : Le dossier n'D2C(39)'a pas ‚t‚ cr‚‚.' Say 'Cr‚ation de l'D2C(39)'objet programme...' Type = 'WPProgram' Folder = '<ESCRIBAF>' Parms = "MINWIN=DESKTOP;PROGTYPE=PM;EXENAME="Directory"\ESCRIBA.EXE;STARTUPDIR="Directory";OBJECTID=<ESCRIBA>;NOPRINT=YES;ASSOCTYPE=Escriba,Pluma,Plain Text,Bitmap,GIF,JPG,Metafile,PCC,PCX,TIFF,HTML;ASSOCFILTER=*.TXT,*.DOC,*.ME,*.BAT,*.CMD,*.MOI,*.BMP,*.GIF,*.JPG,*.JPEG,*.JFI,*.JFIF,*.MET,*.PCC,*.PCX,*.TIF,*.TIFF;*.HTM;*.HTML;" Result = SysCreateObject( Type, Title, Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Say 'ERREUR : L'D2C(39)'objet n'D2C(39)'a pas ‚t‚ cr‚‚.' Say 'Cr‚ation des objets documentation...' Type = 'WPProgram' Parms = "MINWIN=DESKTOP;PROGTYPE=PM;EXENAME="Directory"\ESCRIBA.EXE;STARTUPDIR="Directory";OBJECTID=<ESCRIBAD>;PARAMETERS=ESCRIBA.DOC" Result = SysCreateObject( Type, "Lisez moi", Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Say 'ERREUR : L'D2C(39)'objet documentation n'D2C(39)'a pas ‚t‚ cr‚‚.' Result = SysFileTree( Directory"\ESCRIBA.INF", 'Files', 'F' ) If Files.0 > 0 Then Do Type = 'WPProgram' Parms = "MINWIN=DESKTOP;PROGTYPE=PM;EXENAME=VIEW.EXE;STARTUPDIR="Directory";OBJECTID=<ESCRIBAI>;PARAMETERS=ESCRIBA.INF Introduction;" Result = SysCreateObject( Type, "Manuel utilisateur d'Escriba", Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Do Say 'ERREUR : L'D2C(39)'objet documentation n'D2C(39)'a pas ‚t‚ cr‚‚.' End End /* Initialisation du fichier INI, configuration de la langue par d‚faut */ Result = SysIni( Directory"\ESCRIBA.INI", "ESCRIBA", "Language", Language ) If Result = 'ERROR:' Then Do Say "ERREUR : La langue … utiliser n'a pas ‚t‚ enregistr‚e." End /* voyons si le correcteur orhographique est pr‚sent */ Speller = 1 Result = SysFileTree( "ISPELLER.DLL", 'Files', 'F' ) If Files.0 = 0 Then Speller = 0 Result = SysFileTree( "BUILDHAS.EXE", 'Builder1', 'F' ) Result = SysFileTree( "BUILDHASH.EXE", 'Builder2', 'F' ) If ( ( Builder1.0 = 0 ) & ( Builder2.0 = 0 ) ) Then Speller = 0 /* s'il est pr‚sent, installation du correcteur orthographique */ If Speller = 1 Then Do Say 'Installation du correcteur orthographique...' 'Copy ISPELLER.DLL' Directory '1>NUL' If Builder1.0 Then 'Copy BUILDHAS.EXE' Directory '1>NUL' Else 'Copy BUILDHASH.EXE' Directory'\BUILDHAS.EXE 1>NUL' 'Copy *.AFF' Directory '1>NUL' 'Copy *.DIC' Directory '1>NUL' Result = SysFileTree( Directory"\*.AFF", 'Affix', 'FO' ) Do Index=1 To Affix.0 LanguageName = SUBSTR(Affix.Index,1,LENGTH(Affix.Index)-4) DictionaryPath = LanguageName".DIC" Do While ( \ ( POS('\',LanguageName) = 0 ) ) LanguageName = SUBSTR(LanguageName,POS('\',LanguageName)+1) End /* do */ Result = SysFileTree( DictionaryPath, 'Dictionary', 'FO' ) If Dictionary.0 = 1 Then Do Say 'Building dictionary for' LanguageName'. . .' Directory'\BUILDHAS -s' Dictionary.1 Affix.Index Directory'\'LanguageName'.HSH 1>NUL' End /* if */ End /* do */ End /* if */ Signal DONE FAILURE: Say 'chec REXX.' Signal DONE HALT: Say 'Halte REXX.' Signal DONE SYNTAX: Say 'Erreur de syntaxe REXX.' Signal DONE DONE: Exit
OS2World/APP-PRODUCTIVITY-Escriba
Escriba/ESCR_FRA/Francais.cmd
bat
gpl-2.0
6,104
cmd_net/bluetooth/rfcomm/built-in.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o net/bluetooth/rfcomm/built-in.o net/bluetooth/rfcomm/rfcomm.o
FEDEVEL/tmp-imx6-tiny-rex-linux
net/bluetooth/rfcomm/.built-in.o.cmd
bat
gpl-2.0
237
cmd_drivers/staging/rtl8723au/built-in.o := rm -f drivers/staging/rtl8723au/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/staging/rtl8723au/built-in.o
avareldalton85/rpi2-linux-rt
drivers/staging/rtl8723au/.built-in.o.cmd
bat
gpl-2.0
223
cmd_arch/arm/lib/io-writesb.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-gcc -Wp,-MD,arch/arm/lib/.io-writesb.o.d -nostdinc -isystem /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/include -I/home/josh/TF700-dualboot-stockbased/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/josh/TF700-dualboot-stockbased/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/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/io-writesb.o arch/arm/lib/io-writesb.S source_arch/arm/lib/io-writesb.o := arch/arm/lib/io-writesb.S deps_arch/arm/lib/io-writesb.o := \ /home/josh/TF700-dualboot-stockbased/include/linux/kconfig.h \ $(wildcard include/config/h.h) \ $(wildcard include/config/.h) \ $(wildcard include/config/foo.h) \ /home/josh/TF700-dualboot-stockbased/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/josh/TF700-dualboot-stockbased/arch/arm/include/asm/linkage.h \ /home/josh/TF700-dualboot-stockbased/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/josh/TF700-dualboot-stockbased/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/josh/TF700-dualboot-stockbased/arch/arm/include/asm/hwcap.h \ /home/josh/TF700-dualboot-stockbased/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/lib/io-writesb.o: $(deps_arch/arm/lib/io-writesb.o) $(deps_arch/arm/lib/io-writesb.o):
JoinTheRealms/TF700-dualboot-stockbased
arch/arm/lib/.io-writesb.o.cmd
bat
gpl-2.0
2,306
cmd_lib/lzo/lzo_compress.o := /home/radug/Android/cm/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o lib/lzo/lzo_compress.o lib/lzo/lzo1x_compress.o
RaduG/2.6.29-RaKern-2x-Hero
lib/lzo/.lzo_compress.o.cmd
bat
gpl-2.0
182
cmd_drivers/video/backlight/lcd.ko := /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ld -EL -r -T /home/livlogik/Git_Hub/Kernel--Evil_Yummy_Gumdrop/scripts/module-common.lds --build-id --fix-cortex-a53-843419 -o drivers/video/backlight/lcd.ko drivers/video/backlight/lcd.o drivers/video/backlight/lcd.mod.o
livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel
drivers/video/backlight/.lcd.ko.cmd
bat
gpl-2.0
392
cmd_drivers/video/fb.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/video/fb.o drivers/video/fbmem.o drivers/video/fbmon.o drivers/video/fbcmap.o drivers/video/fbsysfs.o drivers/video/modedb.o drivers/video/fbcvt.o
yohanes/Acer-BeTouch-E130-Linux-Kernel
drivers/video/.fb.o.cmd
bat
gpl-2.0
241
cmd_fs/sysfs/built-in.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o fs/sysfs/built-in.o fs/sysfs/inode.o fs/sysfs/file.o fs/sysfs/dir.o fs/sysfs/symlink.o fs/sysfs/mount.o fs/sysfs/bin.o fs/sysfs/group.o
paxchristos/R800x-2.3.3-Kernel
fs/sysfs/.built-in.o.cmd
bat
gpl-2.0
277
@echo off title Information Finder cls :main_menu echo ^|-------------------------------------------------^| echo ^| System information finder ^| echo ^|-------------------------------------------------^| echo Hello %username%! echo. echo 1. Hardware information echo 2. Network Information echo 3. User information echo. set /p choice=Select your choice: if %choice% == 1 goto hwinfo if %choice% == 2 goto network_info if %choice% == 3 goto user_info echo Invalid choice, please try again! pause goto main_menu REM Query installed language: for /f "tokens=3 delims= " %%L in ('reg query hklm\system\controlset001\control\nls\language /v Installlanguage ^| findstr 0') do set lng=%%L if %lng%==0413 set tkens=11 rem 0413 = NL if %lng%==0409 set tkens=13 if %lng%==0413 set tkensdns=14 if %lng%==0409 set tkensdns=15 rem Query displaylanguage :findEN reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\MUI\UILanguages\en-US >nul if %errorlevel% NEQ 0 goto findNL goto :findNL reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\MUI\UILanguages\nl-NL >nul cls :network_info echo Gathering info. . . bitsadmin /transfer externalIP /download /priority normal http://myexternalip.com/raw %temp%\extip.txt >nul if %errorlevel% NEQ 0 goto extiperror :extipnoerror set /p extIP=<%temp%\extip.txt REM find OS for /f "tokens=* delims=" %%E in ('wmic os get caption ^| findstr -i windows') do set windows=%%E REM find IP for /f "tokens=14 delims= " %%B in ('ipconfig -all ^| findstr -i ipv4') do set pieter=%%B REM find Current gateway and DNS for /f "tokens=%tkens% delims= " %%A in ('ipconfig -all ^| findstr -i gateway ^| findstr -i -v ::') do set gw=%%A for /f "tokens=%tkensdns% delims= " %%C in ('ipconfig -all ^| findstr -i dns ^| findstr -i server ^| findstr -v ::') do set dns=%%C REM find processor for /f "tokens=2 delims==" %%F in ('wmic cpu get name /format:list') do set cpu=%%F pause cls echo ^|-------------------------------------------------^| echo ^| Network Information ^| echo ^|-------------------------------------------------^| echo External IP: %extip% echo. echo Internal IP: %pieter% echo Gateway: %gw% echo DNS Server: %dns% echo. echo If you are unable to see your default echo gateway or DNS address, this may be echo because multiple addresses have been echo configured. echo. echo Hello %username%! You are running: %windows% echo. echo Network information: echo. echo External IP: %extIP% echo IP: %pieter% echo. echo Gateway: %gw% echo DNS: %dns% echo. echo. echo If you can't see the gateway and DNS, it means that you have echo multiple addresses for one or both. echo. pause :hwinfo cls echo ^|-------------------------------------------------^| echo ^| Hardware information ^| echo ^|-------------------------------------------------^| echo RAM: %ram% echo CPU: %cpu% echo. echo. echo. echo Processor: %cpu% pause rem Current IP rem Default gateway rem username rem RAM (bytes total + speed) goto end :extiperror powershell.exe -command (new-object System.Net.WebClient).DownloadFile('http://myexternalip.com/raw', '$Env:temp\extip.txt') if %errorlevel% NEQ 0 goto end goto extipnoerror :end
pieterhouwen/scripts
information.bat
bat
gpl-3.0
3,598
@echo off set InitDir=%CD% cd .. call _paths.bat set CurDir=%CD% IF NOT EXIST "%SEVENZIP%\7z.exe" GOTO ErrorNo7z set COMPRESS_DLL=%CurDir%\upx.exe -9 set COMPRESS_EXE=%CurDir%\upx.exe -9 --compress-icons=0 cd "%SOURCEDIR%\Editor" call "%SOURCEDIR%\_paths.bat" set OldPATH=%PATH% PATH=%QtDir%;%MinGW%;%GitDir%;%SystemRoot%\system32;%SystemRoot%;%PATH% "%QtDir%\lrelease" pge_editor.pro copy languages\*.qm %SOURCEDIR%\bin-w32\languages copy languages\*.png %SOURCEDIR%\bin-w32\languages rem Delete junk translation file causes German Ok/Cancel translations in the dialogs if exist %SOURCEDIR%\bin-w32\languages\qt_en.qm del /Q %SOURCEDIR%\bin-w32\languages\qt_en.qm if exist %SOURCEDIR%\bin-w32\translations\qt_en.qm del /Q %SOURCEDIR%\bin-w32\translations\qt_en.qm echo "Preparing Windows deploy..." cd %SOURCEDIR%\bin-w32 set DeployDir=%SOURCEDIR%\bin-w32\_win32_deploy set PgePrjSD=PGE_Project set TarGzArName=pge-project-dev-win32.zip set DeployFlags=--release --no-opengl-sw --no-system-d3d-compiler if exist "%DeployDir%\*" del /Q /F /S "%DeployDir%\*" if not exist "%DeployDir%\*" md "%DeployDir%" if not exist "%DeployDir%\%PgePrjSD%\*" md "%DeployDir%\%PgePrjSD%" IF NOT "%DynamicQT%"=="TRUE" GOTO noDynamicQt1 copy "%QtDir%\libstdc++-6.dll" ".\libstdc++-6.dll" copy "%QtDir%\libstdc++-6.dll" "%DeployDir%\%PgePrjSD%" %QtDir%\windeployqt --force --no-quick-import %DeployFlags% pge_editor.exe %QtDir%\windeployqt %DeployFlags% pge_engine.exe %QtDir%\windeployqt %DeployFlags% pge_calibrator.exe %QtDir%\windeployqt %DeployFlags% GIFs2PNG.exe %QtDir%\windeployqt %DeployFlags% PNG2GIFs.exe %QtDir%\windeployqt %DeployFlags% LazyFixTool.exe %QtDir%\windeployqt %DeployFlags% pge_manager.exe %QtDir%\windeployqt %DeployFlags% pge_maintainer.exe rem Delete junk translation file causes German Ok/Cancel translations in the dialogs if exist %SOURCEDIR%\bin-w32\languages\qt_en.qm del /Q %SOURCEDIR%\bin-w32\languages\qt_en.qm if exist %SOURCEDIR%\bin-w32\translations\qt_en.qm del /Q %SOURCEDIR%\bin-w32\translations\qt_en.qm rem Remove possible temporary files of UPX if exist %SOURCEDIR%\bin-w32\*.upx del /Q "%SOURCEDIR%\bin-w32\*.upx" REM rem %COMPRESS_DLL% D3Dcompiler_*.dll REM %COMPRESS_DLL% libEGL.dll REM %COMPRESS_DLL% libGLESV2.dll REM rem %COMPRESS_DLL% opengl32sw.dll REM %COMPRESS_DLL% Qt5Concurrent.dll REM %COMPRESS_DLL% Qt5Core.dll REM %COMPRESS_DLL% Qt5Gui.dll REM %COMPRESS_DLL% Qt5Qml.dll REM %COMPRESS_DLL% Qt5Network.dll REM %COMPRESS_DLL% Qt5Svg.dll REM %COMPRESS_DLL% Qt5Widgets.dll REM %COMPRESS_DLL% Qt5WinExtras.dll REM %COMPRESS_DLL% Qt5Xml.dll REM :noDynamicQt1 REM REM %COMPRESS_DLL% SDL2.dll REM %COMPRESS_DLL% SDL2_mixer_ext.dll REM REM %COMPRESS_DLL% libgcc_s_dw2-1.dll REM %COMPRESS_DLL% libstdc++-6.dll REM %COMPRESS_DLL% libwinpthread-1.dll REM REM %COMPRESS_EXE% pge_editor.exe REM %COMPRESS_EXE% PNG2GIFs.exe REM %COMPRESS_EXE% GIFs2PNG.exe REM %COMPRESS_EXE% LazyFixTool.exe REM %COMPRESS_EXE% pge_calibrator.exe REM %COMPRESS_EXE% pge_engine.exe REM %COMPRESS_EXE% pge_manager.exe REM %COMPRESS_EXE% pge_maintainer.exe REM %COMPRESS_EXE% pge_musplay.exe copy pge_editor.exe "%DeployDir%\%PgePrjSD%" copy GIFs2PNG.exe "%DeployDir%\%PgePrjSD%" copy PNG2GIFs.exe "%DeployDir%\%PgePrjSD%" copy LazyFixTool.exe "%DeployDir%\%PgePrjSD%" copy pge_calibrator.exe "%DeployDir%\%PgePrjSD%" copy pge_engine.exe "%DeployDir%\%PgePrjSD%" copy pge_maintainer.exe "%DeployDir%\%PgePrjSD%" copy pge_musplay.exe "%DeployDir%\%PgePrjSD%" copy *.dll "%DeployDir%\%PgePrjSD%" IF NOT "%DynamicQT%"=="TRUE" GOTO noDynamicQt2 rem xcopy /Y /E /I .\bearer\*.* "%DeployDir%\%PgePrjSD%\bearer" rem xcopy /Y /E /I .\iconengines\*.* "%DeployDir%\%PgePrjSD%\iconengines" md "%DeployDir%\%PgePrjSD%\imageformats" xcopy /Y /E /I .\imageformats\qgif.dll "%DeployDir%\%PgePrjSD%\imageformats" xcopy /Y /E /I .\imageformats\qico.dll "%DeployDir%\%PgePrjSD%\imageformats" xcopy /Y /E /I .\platforms\*.* "%DeployDir%\%PgePrjSD%\platforms" xcopy /Y /E /I .\translations\*.* ".\languages" :noDynamicQt2 xcopy /Y /E /I .\languages\*.* "%DeployDir%\%PgePrjSD%\languages" xcopy /Y /E /I .\themes\*.* "%DeployDir%\%PgePrjSD%\themes" if not exist "%DeployDir%\%PgePrjSD%\help\*.*" md "%DeployDir%\%PgePrjSD%\help" echo ^<html^>^<head^>^<meta http-equiv="refresh" content="0; url=http://pgehelp.wohlsoft.ru/manual_editor.html"/^>^</head^>^<body^>^</body^>^</html^> > "%DeployDir%\%PgePrjSD%\help\manual_editor.html" xcopy /Y /E /I .\calibrator "%DeployDir%\%PgePrjSD%\calibrator" del /Q "%DeployDir%\%PgePrjSD%\calibrator\templates\*.*" copy "%SOURCEDIR%\Content\readmes\*.txt" "%DeployDir%\%PgePrjSD%" copy "%SOURCEDIR%\changelog.*.txt" "%DeployDir%\%PgePrjSD%" copy "%SOURCEDIR%\LICENSE" "%DeployDir%\%PgePrjSD%\license.txt" del "%DeployDir%\%PgePrjSD%\themes\*.zip" del "%DeployDir%\%PgePrjSD%\themes\pge_default\*.zip" "%SEVENZIP%\7z" x "%CurDir%\..\tools\sox-win32.zip" -o"%DeployDir%\%PgePrjSD%\tools" * -r rem Creating empty directories for a user stuff md "%DeployDir%\%PgePrjSD%\configs" md "%DeployDir%\%PgePrjSD%\worlds" md "%DeployDir%\%PgePrjSD%\screenshots" md "%DeployDir%\%PgePrjSD%\logs" echo Creating INI-files with portable config echo [Main]> "%DeployDir%\%PgePrjSD%\pge_editor.ini" echo force-portable=true>> "%DeployDir%\%PgePrjSD%\pge_editor.ini" echo [Main]> "%DeployDir%\%PgePrjSD%\pge_engine.ini" echo force-portable=true>> "%DeployDir%\%PgePrjSD%\pge_engine.ini" echo [Main]> "%DeployDir%\%PgePrjSD%\pge_calibrator.ini" echo force-portable=true>> "%DeployDir%\%PgePrjSD%\pge_calibrator.ini" cd "%DeployDir%" if exist ".\%TarGzArName%" del ".\%TarGzArName%" if not exist "%SOURCEDIR%\bin-w32\_packed" md "%SOURCEDIR%\bin-w32\_packed" if exist "%SOURCEDIR%\bin-w32\_packed\%TarGzArName%" del "%SOURCEDIR%\bin-w32\_packed\%TarGzArName%" # =========== Packing full archive ========== echo Packing complete archive... "%SEVENZIP%\7z" a -tzip -mx9 "%TarGzArName%" "%PgePrjSD%" move ".\%TarGzArName%" "%SOURCEDIR%\bin-w32\_packed\%TarGzArName%" # ======== Packing thematic archives ======== SET PGEMaintainer= SET PGEMusPlay= SET PGECommon= SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\*.dll" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\license.txt" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\GPL*.txt" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\LICENSE.*.txt" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\SDL2_mixer_ext.License.txt" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\languages" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\help" IF NOT "%DynamicQT%"=="TRUE" GOTO noDynamicQt3 rem SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\bearer" rem SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\iconengines" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\imageformats" SET PGECommon=%PGECommon% "%DeployDir%\%PgePrjSD%\platforms" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\libgcc_s_dw2-1.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\libstdc++-6.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\libwinpthread-1.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\Qt5Core.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\Qt5Gui.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\Qt5Network.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\Qt5Widgets.dll" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\imageformats" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\platforms" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\libgcc_s_dw2-1.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\libstdc++-6.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\libwinpthread-1.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\Qt5Core.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\Qt5Gui.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\Qt5Network.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\Qt5Widgets.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\imageformats" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\platforms" :noDynamicQt3 SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\SDL2.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\SDL2_mixer_ext.dll" SET PGEMusPlay=%PGEMusPlay% "%DeployDir%\%PgePrjSD%\pge_musplay.exe" SET PGEMaintainer=%PGEMaintainer% "%DeployDir%\%PgePrjSD%\pge_maintainer.exe" SET PGEEditor= SET PGEEditor=%PGEEditor% "%DeployDir%\%PgePrjSD%\changelog.editor.txt" SET PGEEditor=%PGEEditor% "%DeployDir%\%PgePrjSD%\pge_editor.exe" SET PGEEditor=%PGEEditor% "%DeployDir%\%PgePrjSD%\themes" SET PGEEditor=%PGEEditor% "%DeployDir%\%PgePrjSD%\tools" SET PGEEngine= SET PGEEngine=%PGEEngine% "%DeployDir%\%PgePrjSD%\pge_engine.exe" SET PGEEngine=%PGEEngine% "%DeployDir%\%PgePrjSD%\Engine.Readme.txt" SET PGEEngine=%PGEEngine% "%DeployDir%\%PgePrjSD%\changelog.engine.txt" SET PGETools= SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\GIFs2PNG.exe" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\*Readme.txt" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\LazyFixTool.exe" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\PNG2GIFs.exe" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\pge_calibrator.exe" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\pge_maintainer.exe" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\pge_musplay.exe" SET PGETools=%PGETools% "%DeployDir%\%PgePrjSD%\calibrator" echo Packing of Online-Install packages data "%SEVENZIP%\7z" a -tzip -mx9 "install-pge-common-dev-win32.zip" %PGECommon% "%SEVENZIP%\7z" a -tzip -mx9 "install-pge-editor-dev-win32.zip" %PGEEditor% "%SEVENZIP%\7z" a -tzip -mx9 "install-pge-engine-dev-win32.zip" %PGEEngine% "%SEVENZIP%\7z" a -tzip -mx9 "install-pge-tools-dev-win32.zip" %PGETools% "%SEVENZIP%\7z" a -tzip -mx9 "pge-musplay-dev-win32.zip" %PGEMusPlay% "%SEVENZIP%\7z" a -tzip -mx9 "pge-maintainer-dev-win32.zip" %PGEMaintainer% move ".\*.zip" "%SOURCEDIR%\bin-w32\_packed" PATH=%OldPATH% echo. echo "All done!" echo. cd %InitDir% goto exitFrom :ErrorNo7z echo. echo ERROR: 7zip not found: %SEVENZIP% echo. :exitFrom if not "%1"=="nopause" pause
jpmac26/PGE-Project
_Misc/dev_scripts/deploy/deploy_windows.bat
bat
gpl-3.0
10,123
java -mx300m -jar jiu.jar
juehv/DentalImageViewer
DentalImageViewer/lib/jiu-0.14.3/run-jiuawt.bat
bat
gpl-3.0
26
# Test "To see that we can break on a subroutine call # use with example/callbug.pl c iamnotok $_[0] backtrace
gitpan/Devel-Trepan
t/data/breakcall.cmd
bat
gpl-3.0
111
::for /F "eol=c tokens=1" %%i in (%1) do "C:\Program Files\Mozilla Firefox\firefox.exe" %%i ::for /F "eol=c tokens=1" %%i in (%1) do "C:\Program Files\Google\Chrome\Application\chrome.exe" --no-startup-window --silent-launch %%i for /F "eol=c tokens=1" %%i in (%1) do "C:\Program Files\Google\Chrome\Application\chrome.exe" %%i
loolwv7/scripts
autodial_v3.1/multiURLS.bat
bat
gpl-3.0
332
node --debug file-server.js
cuixiping/99points
run.bat
bat
lgpl-2.1
29
git pull REM In case there are new submodules that have not yet been cloned call init_submodules.bat cd qtutils git pull cd .. cd text-encoding-detector git pull cd .. cd cpputils git pull cd ..
antis81/file-commander
update_repository.bat
bat
lgpl-3.0
198
vcpkg install cpuinfo:x86-windows-static mkdir build-x86-windows-static cd build-x86-windows-static cmake .. -DCMAKE_TOOLCHAIN_FILE="%VCPKG_ROOT%\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x86-windows-static -DCMAKE_GENERATOR_PLATFORM=Win32 cmake --build . --config Release cd .. pause
myd7349/Ongoing-Study
cpp/CMake/vcpkg/cpuinfo_example/build-x86-windows-static.bat
bat
lgpl-3.0
300
goto :start Copyright (C) 2017 Google Inc. Licensed 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. Windows Package Script. - Expects MSYS on the %PATH% and %JAVA_HOME% set correctly. :start if "%1." == "." ( echo Expected the build folder as an argument. exit /b ) if "%2." == "." ( echo Expected the source root as an argument. exit /b ) if "%WIX%." == "." ( echo Expected the WIX env variable to point to the WIX toolset. exit /b ) set BUILD_OUT=%1 set BIN_DIR=%2\bazel-bin if exist "%BUILD_OUT%\dist" ( rmdir /Q /S "%BUILD_OUT%\dist" ) mkdir "%BUILD_OUT%\dist\gapid" pushd "%BUILD_OUT%\dist" awk -F= 'BEGIN {major=0; minor=0; micro=0}^ /Major/ {major=$2}^ /Minor/ {minor=$2}^ /Micro/ {micro=$2}^ END {print major"."minor"."micro}' %BIN_DIR%\pkg\build.properties > version.txt set /p VERSION=<version.txt REM Combine package contents. xcopy /e %BIN_DIR%\pkg\* gapid\ copy "%~dp0\gapid.ico" gapid copy c:\tools\msys64\mingw64\bin\libgcc_s_seh-1.dll gapid copy c:\tools\msys64\mingw64\bin\libstdc++-6.dll gapid copy c:\tools\msys64\mingw64\bin\libwinpthread-1.dll gapid call "%~dp0\copy_jre.bat" "%cd%\gapid\jre" REM Package up the zip file. zip -r gapid-%VERSION%-windows.zip gapid REM TODO Copy the GAPIR symbols REM copy ..\current\gapir.sym gapir-%VERSION%-windows.sym REM Create an MSI installer. copy "%~dp0\gapid.wxs" . copy "%~dp0\*.bmp" . "%WIX%\heat.exe" dir gapid -ag -cg gapid -dr GAPID -template fragment -sreg -sfrag -srd -suid -o component.wxs "%WIX%\candle.exe" -dGAPIDVersion="%VERSION%" gapid.wxs component.wxs "%WIX%\light.exe" gapid.wixobj component.wixobj -b gapid -ext WixUIExtension -cultures:en-us -o gapid-%VERSION%-windows.msi REM Copy the symbol file to the output. if exist "%BIN_DIR%\cmd\gapir\cc\gapir.sym" ( copy "%BIN_DIR%\cmd\gapir\cc\gapir.sym" gapir-%VERSION%-windows.sym ) popd
baldwinn860/gapid
kokoro/windows/package.bat
bat
apache-2.0
2,431
@"c:\program files\steam\steamapps\da_singe\sourcesdk\bin\source2007\bin\hlmv.exe" -game "c:\program files\steam\steamapps\SourceMods\cliftonsource" %1 %2 %3 %4 %5 %6 %7 %8 %9
TheCallSign/Clifton-Source
run_hlmv.bat
bat
apache-2.0
177
java -jar C:\Hygieia-master\api\target\api.jar
saurav4342/Hygieia-Devops-Dashboard
api/api.bat
bat
apache-2.0
47
::compile.bat ::compiles jade files and stylus files into .html and .css ::from homepage folder @echo off & setlocal enabledelayedexpansion ::jade index echo executing command: jade templates/index.jade -o "site" -P call jade templates/index.jade -o "site" -P ::jade about echo executing command: jade templates/about.jade -o "site" -P call jade templates/about.jade -o "site" -P ::jade contact echo executing command: jade templates/contact.jade -o "site" -P call jade templates/contact.jade -o "site" -P ::stylus!!! echo executing command: stylus styles/style.styl -o "site/static/css/" call stylus styles/style.styl -o "site/static/css/" ::move to site/ directory, lets not change html files elsewhere echo. & echo executing command: cd site call cd site ::first, delete all old .php files, to be ready for the renaming of html files to .php echo. & echo deleting old .php files.. ::ignore files that exist only as .php files, like the language files set ignores= is.php en.php analyticstracking.php chatbox.php echo php files to ignore: for %%i in (%ignores%) do echo %%i echo also ignore all files in afterhours\ echo. :: comment here! :: special ignore for all other sites within this site, like afterhours :: so it doesn't delete the .php files!! :: get only the path (e.g. we are at home/jango.det would give afterhours=home/) for /r %%i in (*.php) do ( set inIgnores= 0 for %%j in (%ignores%) do ( :: %%~nd%%~xd means just name.extension, a cleaner way than this probably exists.. if "%%j" == "%%~ni%%~xi" ( set inIgnores= 1 ) ) :: comment here set filepath= %%~dpi :: minus 11 to get only the last 10 letters + "\", e.g. "afterhours\" if that's the directory if "!filepath:~-11!" == "afterhours\" ( set inIgnores= 1 ) if !inIgnores! lss 1 ( echo %%i rm %%i ) else ( echo ignoring file %%i ) ) echo files deleted & echo. ::now rename all .html files to .php for our viewing pleasures echo renaming .html to .php set htmlignores= index.html echo html files to ignore: for %%i in (%htmlignores%) do echo %%i echo. for /r %%d in (*.html) do ( set inIgnores= 0 for %%i in (%htmlignores%) do ( :: %%~nd%%~xd means just name.extension, a cleaner way than this probably exists.. if "%%i" == "%%~nd%%~xd" ( set inIgnores= 1 ) ) if !inIgnores! lss 1 ( echo %%d ren "%%~d" *.php ) else ( echo ignoring file %%d ) ) echo files renamed & echo. echo special case, rename index.html in root ren "%~dp0\site\index.html" "index.php" echo %~dp0%\site\index.html renamed
mattixpet/web-homepage
compile.bat
bat
apache-2.0
2,569
if "%1" == "" goto demo if %1 == dbg ..\..\..\preprocessor\bin\templet.exe templet.cpp -r TEMPLET_DBG -i dbg/tet.h if %1 == win ..\..\..\preprocessor\bin\templet.exe templet.cpp -r TEMPLET_WIN -i win/tet.h if %1 == nix ..\..\..\preprocessor\bin\templet.exe templet.cpp -r TEMPLET_NIX -i nix/tet.h exit :demo call ..\..\..\preprocessor\bin\templet.exe templet.cpp -d -r TEMPLET_DBG -i dbg/tet.h
Templet-language/cpp98runtime
samples/templet/templet.bat
bat
apache-2.0
395
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyRDFa.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyRDFa.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
RDFLib/PyRDFa
docs/make.bat
bat
bsd-3-clause
5,096
@echo Downloading Desharp custom JS/CSS assets project for first time. @call npm install desharp-assets @echo Desharp custom JS/CSS assets project downloaded and installed.
debug-sharp/desharp
Assets/load-asset-sources.cmd
bat
bsd-3-clause
172
set PATH=c:\Windows;c:\Java\jdk6\bin jrunscript -cp ..\..\build\classes peer.js localhost 24 C 127.0.0.1.37363 < ..\trc\tcpdump.log > out.client
aasee/e4m
test/pp/client.cmd
bat
bsd-3-clause
145
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCPRPT.S04_SetDataInStreamExtended_TestSuite.MSOXCPRPT_S04_SetDataInStreamExtended_TestSuite9 /testcontainer:..\..\MS-OXCPRPT\TestSuite\bin\Debug\MS-OXCPRPT_TestSuite.dll /runconfig:..\..\MS-OXCPRPT\MS-OXCPRPT.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeMAPI/Source/Scripts/MS-OXCPRPT/RunMSOXCPRPT_S04_SetDataInStreamExtended_TestSuite9.cmd
bat
mit
331
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_VIEWSS.S03_MaintainViewDefinition.MSVIEWSS_S03_TC17_UpdateView_WithoutOptionalParameters /testcontainer:..\..\MS-VIEWSS\TestSuite\bin\Debug\MS-VIEWSS_TestSuite.dll /runconfig:..\..\MS-VIEWSS\MS-VIEWSS.testsettings /unique pause
XinwLi/Interop-TestSuites-1
SharePoint/Source/Scripts/MS-VIEWSS/RunMSVIEWSS_S03_TC17_UpdateView_WithoutOptionalParameters.cmd
bat
mit
321
python validate.py --model triangulate --xlsx D:\repos\ptolemy\input\ArabiaDeserta.xlsx --output D:\repos\ptolemy\output\validate_triangulate_ArabiaDeserta.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model triangulate --xlsx D:\repos\ptolemy\input\ArabiaFelix.xlsx --output D:\repos\ptolemy\output\validate_triangulate_ArabiaFelix.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model triangulate --xlsx D:\repos\ptolemy\input\ArabiaPetraea.xlsx --output D:\repos\ptolemy\output\validate_triangulate_ArabiaPetraea.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model triangulate --xlsx D:\repos\ptolemy\input\JudaeaPalestina.xlsx --output D:\repos\ptolemy\output\validate_triangulate_JudaeaPalestina.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model triangulate --xlsx D:\repos\ptolemy\input\Syria.xlsx --output D:\repos\ptolemy\output\validate_triangulate_Syria.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_ArabiaDeserta.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_ArabiaFelix.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_ArabiaPetraea.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_JudaeaPalestina.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_Syria.csv python validate.py --model flocking --xlsx D:\repos\ptolemy\input\ArabiaDeserta.xlsx --output D:\repos\ptolemy\output\validate_flocking_ArabiaDeserta.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model flocking --xlsx D:\repos\ptolemy\input\ArabiaFelix.xlsx --output D:\repos\ptolemy\output\validate_flocking_ArabiaFelix.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model flocking --xlsx D:\repos\ptolemy\input\ArabiaPetraea.xlsx --output D:\repos\ptolemy\output\validate_flocking_ArabiaPetraea.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model flocking --xlsx D:\repos\ptolemy\input\JudaeaPalestina.xlsx --output D:\repos\ptolemy\output\validate_flocking_JudaeaPalestina.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python validate.py --model flocking --xlsx D:\repos\ptolemy\input\Syria.xlsx --output D:\repos\ptolemy\output\validate_flocking_Syria.csv --prior arabia_prior.png --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40 python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_ArabiaDeserta.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_ArabiaFelix.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_ArabiaPetraea.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_JudaeaPalestina.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_Syria.csv python validate.py --model triangulate --sgdb 7.01 --output D:\repos\ptolemy\output\validate_triangulate_India.csv --prior prior_India.png --lower_left_lon 65 --lower_left_lat 5 --upper_right_lon 95 --upper_right_lat 35 python validate.py --model flocking --sgdb 7.01 --output D:\repos\ptolemy\output\validate_flocking_India.csv --prior prior_India.png --lower_left_lon 65 --lower_left_lat 5 --upper_right_lon 95 --upper_right_lat 35 python validate.py --model triangulate --sgdb 7.04 --output D:\repos\ptolemy\output\validate_triangulate_Taprobane.csv --prior prior_Taprobane.png --lower_left_lon 78 --lower_left_lat 5 --upper_right_lon 83 --upper_right_lat 10 python validate.py --model flocking --sgdb 7.04 --output D:\repos\ptolemy\output\validate_flocking_Taprobane.csv --prior prior_Taprobane.png --lower_left_lon 78 --lower_left_lat 5 --upper_right_lon 83 --upper_right_lat 10 python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_India.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_India.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_triangulate_Taprobane.csv python plot_validation.py --input D:\repos\ptolemy\output\validate_flocking_Taprobane.csv
claudiusptolemy/ptolemy
python/validate_all.bat
bat
gpl-2.0
4,789
cmd_net/sunrpc/auth_gss/auth_rpcgss.o := /home/milind/toolchain/arm-eabi-4.6/bin/arm-eabi-ld -EL -r -o net/sunrpc/auth_gss/auth_rpcgss.o net/sunrpc/auth_gss/auth_gss.o net/sunrpc/auth_gss/gss_generic_token.o net/sunrpc/auth_gss/gss_mech_switch.o net/sunrpc/auth_gss/svcauth_gss.o
sai9615/MY-kernel-for-grand-I9082
net/sunrpc/auth_gss/.auth_rpcgss.o.cmd
bat
gpl-2.0
284
cmd_scripts/dtc/util.o := gcc -Wp,-MD,scripts/dtc/.util.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -Iscripts/dtc -Iscripts/dtc/libfdt -c -o scripts/dtc/util.o scripts/dtc/util.c source_scripts/dtc/util.o := scripts/dtc/util.c deps_scripts/dtc/util.o := \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/stdc-predef.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/lib/gcc/x86_64-linux-gnu/4.7/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.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/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/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/bits/byteswap-16.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/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/xlocale.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ scripts/dtc/util.h \ scripts/dtc/util.o: $(deps_scripts/dtc/util.o) $(deps_scripts/dtc/util.o):
RittikBhowmik/Project-Crater-Kernel-GT-i9152
scripts/dtc/.util.o.cmd
bat
gpl-2.0
2,248