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 REM - Project: MultiPython-For-Windows REM - File: Run Python 2.7 Windows Executable Script REM - Filename: py27w.cmd REM - Author: Daniel Pronych REM - Date: March 20, 2015 REM - License Notes: REM - MultiPython-For-Windows is Copyright (C) 2015 Daniel Pronych REM - MultiPython-For-Windows comes with ABSOLUTELY NO WARRANTY; For details REM - see the file named LICENSE.txt in the root of the source directory tree. setlocal REM - Run Configuration File For Python 2.7 Environment call %~dp0%config_python_2.7.cmd REM - Run Python Windows Executable "%PYTHONDIR%\pythonw" %* endlocal
danielpronych/MultiPython-For-Windows
py27w.cmd
bat
bsd-2-clause
596
mvn deploy -Duser.name=<user name>
nyholku/purejavacomm
deploy.bat
bat
bsd-3-clause
34
@echo off rem $Id: wsgen.bat 2158 2007-01-27 06:20:59Z jason.greene@jboss.com $ @if not "%ECHO%" == "" echo %ECHO% @if "%OS%" == "Windows_NT" setlocal set DIRNAME=.\ if "%OS%" == "Windows_NT" set DIRNAME=%~dp0% set PROGNAME=run.bat if "%OS%" == "Windows_NT" set PROGNAME=%~nx0% rem Read all command line arguments REM REM The %ARGS% env variable commented out in favor of using %* to include REM all args in java command line. See bug #840239. [jpl] REM REM set ARGS= REM :loop REM if [%1] == [] goto endloop REM set ARGS=%ARGS% %1 REM shift REM goto loop REM :endloop set JAVA=%JAVA_HOME%\bin\java set JBOSS_HOME=%DIRNAME%\.. rem Setup the java endorsed dirs set JBOSS_ENDORSED_DIRS=%JBOSS_HOME%\lib\endorsed rem Setup the wstools classpath set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JAVA_HOME%/lib/tools.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jboss-xml-binding.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/wstx.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/activation.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/javassist.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/getopt.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jaxb-api.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/stax-api.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jaxb-impl.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jaxb-xjc.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-wsconsume-impl.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossall-client.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jboss-saaj.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxrpc.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxws.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-client.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/log4j.jar set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/mail.jar rem Execute the JVM "%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -Dlog4j.configuration=wstools-log4j.xml -classpath "%WSCONSUME_CLASSPATH%" org.jboss.ws.tools.jaxws.command.wsconsume %*
UMD-SEAM/bugbox
framework/Targets/jboss_4_2_0/application/bin/wsconsume.bat
bat
bsd-3-clause
2,434
@ECHO OFF setlocal DISABLEDELAYEDEXPANSION SET BIN_TARGET=%~dp0/../vendor/zendframework/zend-servicemanager/bin/generate-factory-for-class php "%BIN_TARGET%" %*
kipnos/ZF1-Ticket
bin/generate-factory-for-class.bat
bat
bsd-3-clause
161
@echo off set path=%path%;%systemroot%\SysWOW64 start javaw -cp bin;NullpoMino.jar;lib\log4j-1.2.15.jar -Dsun.java2d.translaccel=true -Dsun.java2d.d3dtexbpp=16 mu.nu.nullpo.gui.swing.NullpoMinoSwing
Phazyck/nullpominai
play_swing.bat
bat
mit
199
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXNSPI.S05_NegativeBehavior.MSOXNSPI_S05_TC27_ResolveNamesWFailedWithInvalidBookmark /testcontainer:..\..\MS-OXNSPI\TestSuite\bin\Debug\MS-OXNSPI_TestSuite.dll /runconfig:..\..\MS-OXNSPI\MS-OXNSPI.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeMAPI/Source/Scripts/MS-OXNSPI/RunMSOXNSPI_S05_TC27_ResolveNamesWFailedWithInvalidBookmark.cmd
bat
mit
317
@echo off pushd "%~dp0" if "%1" == "" set BuildConfiguration=Release if not "%1" == "" set BuildConfiguration=%1 ::Visual Studio 2015 build environment if not defined VS140COMNTOOLS ( echo ERROR: No Visual Studio 2015 installation found. >&2 popd exit /b 1 ) call "%VS140COMNTOOLS%vsvars32.bat" echo Compiling Visual Studio solution... nuget restore Dehydrator.sln msbuild Dehydrator.sln /nologo /v:q /m /t:Rebuild /p:Configuration=%BuildConfiguration%;VersionSuffix="" if errorlevel 1 pause echo Creating NuGet packages... mkdir build\%BuildConfiguration%\Packages nuget pack Dehydrator.Core\Dehydrator.Core.csproj -Verbosity quiet -Properties Configuration=%BuildConfiguration%;VersionSuffix="" -Symbols -OutputDirectory build\%BuildConfiguration%\Packages if errorlevel 1 pause nuget pack Dehydrator\Dehydrator.csproj -Verbosity quiet -Properties Configuration=%BuildConfiguration%;VersionSuffix="" -Symbols -OutputDirectory build\%BuildConfiguration%\Packages if errorlevel 1 pause nuget pack Dehydrator.EntityFramework\Dehydrator.EntityFramework.csproj -Verbosity quiet -Properties Configuration=%BuildConfiguration%;VersionSuffix="" -Symbols -OutputDirectory build\%BuildConfiguration%\Packages if errorlevel 1 pause nuget pack Dehydrator.EntityFramework.Unity\Dehydrator.EntityFramework.Unity.csproj -Verbosity quiet -Properties Configuration=%BuildConfiguration%;VersionSuffix="" -Symbols -OutputDirectory build\%BuildConfiguration%\Packages if errorlevel 1 pause nuget pack Dehydrator.WebApi\Dehydrator.WebApi.csproj -Verbosity quiet -Properties Configuration=%BuildConfiguration%;VersionSuffix="" -Symbols -OutputDirectory build\%BuildConfiguration%\Packages if errorlevel 1 pause popd
1and1-webhosting-infrastructure/Dehydrator
build.cmd
bat
mit
1,706
@echo off d: xcopy D:\Data\Github\Java\JavaSource\*.java D:\Data\Programming\Java\Spring2015 /s /y /q xcopy D:\Data\Github\Java\JavaSource\*.dic D:\Data\Programming\Java\Spring2015 /s /y /q xcopy D:\Data\Github\Java\JavaSource\CopyTo.bat D:\Data\Programming\Java\Spring2015 /s /y /q xcopy D:\Data\Github\Java\JavaSource\CopyFrom.bat D:\Data\Programming\Java\Spring2015 /s /y /q
TMJesso/JavaSource
JavaSource/CopyFrom.bat
bat
epl-1.0
378
cmd_sound/soc/txx9/built-in.o := rm -f sound/soc/txx9/built-in.o; arm-linux-gnueabihf-ar rcsD sound/soc/txx9/built-in.o
tyeo098/MK908-Kernel-NAND
sound/soc/txx9/.built-in.o.cmd
bat
gpl-2.0
121
cmd_net/wireless/built-in.o := arm-eabi-ld -EL -r -o net/wireless/built-in.o net/wireless/cfg80211.o net/wireless/wext-core.o net/wireless/wext-proc.o
TroNit/BlackDome_New_supersonic
net/wireless/.built-in.o.cmd
bat
gpl-2.0
156
cmd_/root/Desktop/scst-2.2.0/src/dev_handlers/scst_changer.ko := cp /root/Desktop/scst-2.2.0/src/dev_handlers/scst_changer.ko.unsigned /root/Desktop/scst-2.2.0/src/dev_handlers/scst_changer.ko
viclab/scst_cache
src/dev_handlers/.scst_changer.ko.cmd
bat
gpl-2.0
193
cmd_fs/built-in.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-ld -m elf32ltsmip -r -o fs/built-in.o fs/open.o fs/read_write.o fs/file_table.o fs/super.o fs/char_dev.o fs/stat.o fs/exec.o fs/pipe.o fs/namei.o fs/fcntl.o fs/ioctl.o fs/readdir.o fs/select.o fs/fifo.o fs/locks.o fs/dcache.o fs/inode.o fs/attr.o fs/bad_inode.o fs/file.o fs/filesystems.o fs/namespace.o fs/aio.o fs/seq_file.o fs/xattr.o fs/libfs.o fs/fs-writeback.o fs/pnode.o fs/drop_caches.o fs/splice.o fs/sync.o fs/utimes.o fs/stack.o fs/buffer.o fs/bio.o fs/block_dev.o fs/direct-io.o fs/mpage.o fs/ioprio.o fs/inotify.o fs/inotify_user.o fs/eventpoll.o fs/anon_inodes.o fs/signalfd.o fs/eventfd.o fs/nfsctl.o fs/binfmt_script.o fs/binfmt_elf.o fs/posix_acl.o fs/xattr_acl.o fs/nfs_common/built-in.o fs/generic_acl.o fs/dnotify.o fs/proc/built-in.o fs/partitions/built-in.o fs/sysfs/built-in.o fs/configfs/built-in.o fs/devpts/built-in.o fs/squashfs/built-in.o fs/ramfs/built-in.o fs/nls/built-in.o
matteocrippa/dsl-n55u-bender
release/src-ra/linux/linux-2.6.21.x/fs/.built-in.o.cmd
bat
gpl-2.0
975
@echo off For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c%%a%%b) For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set mytime=%%a%%b) "C:\Users\Tonin\PERSONAL\PROYECTOS\github\chocolateyautomaticpackages\KETARIN\Ketarin.exe" /silent /log=C:\ProgramData\chocolateypackageupdater\ketarin.%mydate%_%mytime%.log rem "%ChocolateyInstall%\lib\ketarin.1.6.0.434\tools\Ketarin.exe" /silent /log=C:\ProgramData\chocolateypackageupdater\ketarin.%mydate%_%mytime%.log
adgellida/chocolateyautomaticpackages
chocopkgup/ketarinupdate.cmd
bat
gpl-2.0
482
echo in bat 3
joyent/sdcboot
freedos/source/command/tests/bat3.bat
bat
mpl-2.0
14
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PeriphOnDemand.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PeriphOnDemand.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
trabucayre/periphondemand
doc/make.bat
bat
lgpl-2.1
5,121
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. 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\pyexcel-ods.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyexcel-ods.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
chfw/pyexcel-ods
docs/make.bat
bat
bsd-3-clause
6,478
@echo off set DIR=%1 set JAVASCRIPTCORE_DIR="..\..\..\third_party\WebKit\JavaScriptCore" setlocal mkDIR 2>NUL %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\APICast.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JavaScript.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSBase.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSContextRef.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSObjectRef.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSStringRef.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSStringRefCF.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSStringRefBSTR.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSValueRef.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JavaScriptCore.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\JSRetainPtr.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\OpaqueJSString.h" %DIR% xcopy /y /d "%JAVASCRIPTCORE_DIR%\API\WebKitAvailability.h" %DIR% endlocal
amyvmiwei/chromium
webkit/build/JavaScriptCore/copy_files.bat
bat
bsd-3-clause
904
echo off @start javaw -mx256m -cp mail.jar;activation.jar;RealmSpeak.jar com.robin.magic_realm.RealmBattle.CombatFrame
tonycrider/RealmSpeak
magic_realm/scripts/launchFiles/battle.bat
bat
gpl-3.0
118
@echo off %comspec% /C generate.bat vs2008
KavrakiLab/alvar
build/generate_vs2008.bat
bat
gpl-3.0
44
/opt/pbench-agent/tool-scripts/datalog/proc-interrupts-datalog 3 /var/lib/pbench-agent/pbench-user-benchmark_ndk-test-1_2018.05.23T03.21.32/1/reference-result/tools-default/proc-interrupts/proc-interrupts-stdout.txt
gurbirkalsi/pbench
agent/util-scripts/samples/pbench-copy-results/test-41/pbench/pbench-user-benchmark_rht-test-1_2019.09.27T14.21.33/1/reference-result/tools-default/alphaville/proc-interrupts/proc-interrupts.cmd
bat
gpl-3.0
216
@ECHO OFF REM (C) 2013, 2015-2017 see Authors.txt REM REM This file is part of MPC-HC. REM REM MPC-HC is free software; you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by REM the Free Software Foundation; either version 3 of the License, or REM (at your option) any later version. REM REM MPC-HC is distributed in the hope that it will be useful, REM but WITHOUT ANY WARRANTY; without even the implied warranty of REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the REM GNU General Public License for more details. REM REM You should have received a copy of the GNU General Public License REM along with this program. If not, see <http://www.gnu.org/licenses/>. SETLOCAL SET "FILE_DIR=%~dp0" SET "COMMON=%FILE_DIR%..\common.bat" IF "%~1" == "" ( ECHO %~nx0: No input specified! SET SIGN_ERROR=True GOTO END ) IF NOT EXIST "%MPCHC_VS_PATH%" CALL "%COMMON%" :SubVSPath IF NOT EXIST "%MPCHC_VS_PATH%" ( ECHO %~nx0: Visual Studio 2017 does not seem to be installed... SET SIGN_ERROR=True GOTO END ) SET "TOOLSET=%MPCHC_VS_PATH%\Common7\Tools\vsdevcmd" IF NOT EXIST "%FILE_DIR%..\signinfo.txt" ( ECHO %~nx0: %FILE_DIR%..\signinfo.txt is not present! SET SIGN_ERROR=True GOTO END ) signtool /? 2>NUL || CALL "%TOOLSET%" 2>NUL IF %ERRORLEVEL% NEQ 0 ( ECHO vcvarsall.bat call failed. GOTO End ) REM Repeat n times when signing fails SET REPEAT=5 FOR /F "delims=" %%A IN (%FILE_DIR%..\signinfo.txt) DO (SET "SIGN_CMD=%%A" && CALL :START_SIGN %1) :END IF /I "%SIGN_ERROR%" == "True" ( IF "%~1" == "" PAUSE ENDLOCAL EXIT /B 1 ) ENDLOCAL EXIT /B :START_SIGN IF /I "%SIGN_ERROR%" == "True" EXIT /B REM %1 is name of the file to sign TITLE Signing "%~1"... ECHO. & ECHO Signing "%~1"... SET TRY=0 :SIGN SET /A TRY+=1 signtool sign %SIGN_CMD% %1 IF %ERRORLEVEL% EQU 0 EXIT /B IF %TRY% LSS %REPEAT% ( REM Wait 5 seconds before next try PING -n 5 127.0.0.1 > NUL GOTO SIGN ) SET SIGN_ERROR=True
XhmikosR/mpc-hc
contrib/sign.bat
bat
gpl-3.0
2,078
@if "%DEBUG%" == "" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS= set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if "%ERRORLEVEL%" == "0" goto init echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto init echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :init @rem Get command-line arguments, handling Windowz variants if not "%OS%" == "Windows_NT" goto win9xME_args if "%@eval[2+2]" == "4" goto 4NT_args :win9xME_args @rem Slurp the command line arguments. set CMD_LINE_ARGS= set _SKIP=2 :win9xME_args_slurp if "relativeX%~1" == "relativeX" goto execute set CMD_LINE_ARGS=%* goto execute :4NT_args @rem Get arguments from the 4NT Shell from JP Software set CMD_LINE_ARGS=%$ :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar @rem Execute Gradle "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% :end @rem End local scope for the variables with windows NT shell if "%ERRORLEVEL%"=="0" goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 exit /b 1 :mainEnd if "%OS%"=="Windows_NT" endlocal :omega
Ztiany/CodeRepository
Android/HenCoderPractice/PracticeLayout1/gradlew.bat
bat
apache-2.0
2,330
../bin/TestWinGlut.exe -i ../doc/evaluation/box.pgm -o ../doc/evaluation/box.siftgpu -w 3 -fo -1 -loweo -exit
bigjun/rgbdslam_v2
external/SiftGPU/demos/evaluation-box.bat
bat
gpl-3.0
109
:: Licensed to the Apache Software Foundation (ASF) under one :: or more contributor license agreements. See the NOTICE file :: distributed with this work for additional information :: regarding copyright ownership. The ASF licenses this file :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY :: KIND, either express or implied. See the License for the :: specific language governing permissions and limitations :: under the License. @ECHO OFF SET full_path=%~dp0 IF EXIST %full_path%cordova.js ( cscript "%full_path%cordova.js" list-emulator-images //nologo ) ELSE ( ECHO. ECHO ERROR: Could not find 'cordova.js' in cordova/lib, aborting...>&2 EXIT /B 1 )
Pacobo/pruebaG
platforms/android/cordova/lib/list-emulator-images.bat
bat
mit
1,041
@echo off REM REM Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. REM REM This code is free software; you can redistribute it and/or modify it REM under the terms of the GNU General Public License version 2 only, as REM published by the Free Software Foundation. REM REM This code is distributed in the hope that it will be useful, but WITHOUT REM ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or REM FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License REM version 2 for more details (a copy is included in the LICENSE file that REM accompanied this code). REM REM You should have received a copy of the GNU General Public License version REM 2 along with this work; if not, write to the Free Software Foundation, REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. REM REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA REM or visit www.oracle.com if you need additional information or have any REM questions. REM REM call saenv.bat %SA_JAVA_CMD% sun.jvm.hotspot.tools.FlagDumper %1 %2
ohpauleez/soymacchiato
src/hotspot/agent/make/dumpflagswindbg.bat
bat
gpl-2.0
1,158
@echo off python compile.py tag %1 %2 %3 %4 %5 %6 %7 %8 %9 pause
Sw4T/Warband-Development
mb_warband_module_system_1166/Module_system 1.166/compile.bat
bat
mit
67
@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\funzo.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\funzo.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
makokal/funzo
docs/make.bat
bat
mit
6,457
start ..\ScanMaster\bin\EDM\ScanMaster.exe
ColdMatter/EDMSuite
EDMLaunchScripts/ScanMaster.bat
bat
mit
43
/****************************************************************************** @file cc26xx_app.cmd @brief CC2650F128 linker configuration file for TI-RTOS with Code Composer Studio. Group: WCS, BTS Target Device: CC2640R2 ****************************************************************************** Copyright (c) 2013-2016, Texas Instruments Incorporated All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Texas Instruments Incorporated nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ****************************************************************************** Release Name: ti-ble-3.0-stack-sdk_3_00_00 Release Date: 2016-12-21 12:44:47 *****************************************************************************/ /* Retain interrupt vector table variable */ --retain=g_pfnVectors /* Override default entry point. */ --entry_point ResetISR /* Suppress warnings and errors: */ /* - 10063: Warning about entry point not being _c_int00 */ /* - 16011, 16012: 8-byte alignment errors. Observed when linking in object */ /* files compiled using Keil (ARM compiler) */ --diag_suppress=10063,16011,16012 /* The following command line options are set as part of the CCS project. */ /* If you are building using the command line, or for some reason want to */ /* define them here, you can uncomment and modify these lines as needed. */ /* If you are using CCS for building, it is probably better to make any such */ /* modifications in your CCS project and leave this file alone. */ /* */ /* --heap_size=0 */ /* --stack_size=256 */ /* --library=rtsv7M3_T_le_eabi.lib */ /* The starting address of the application. Normally the interrupt vectors */ /* must be located at the beginning of the application. Flash is 128KB, with */ /* sector length of 4KB */ #define FLASH_APP_BASE 0x00000000 #define FLASH_LEN 0x20000 #define FLASH_PAGE_LEN 0x1000 #define FLASH_PAGE_MASK 0xFFFFF000 /* Last page of Flash is allocated to App: 0x1F000 - 0x1FFFF */ #define FLASH_LAST_PAGE_START (FLASH_LEN - FLASH_PAGE_LEN) #ifdef ICALL_STACK0_START #ifdef PAGE_ALIGN #define ADJ_ICALL_STACK0_START (ICALL_STACK0_START & FLASH_PAGE_MASK) #else /* !PAGE_ALIGN */ #define ADJ_ICALL_STACK0_START ICALL_STACK0_START #endif /* PAGE_ALIGN */ #endif /* ICALL_STACK0_START */ /* RAM starts at 0x20000000 and is 20KB */ #define RAM_APP_BASE 0x20000000 #define RAM_END 0x00005000 /* RAM reserved by ROM code starts. */ #ifdef R2 #define RAM_ROM_RESERVE_SIZE 0x00000C00 #else /* R1 */ #define RAM_ROM_RESERVE_SIZE 0x00000718 #endif /* R2 */ /* Maximum RAM Length */ #define RAM_SIZE RAM_END - RAM_ROM_RESERVE_SIZE /* Use CACHE as GPRAM at runtime */ #ifdef CACHE_AS_RAM #define GPRAM_APP_BASE 0x11000000 #define GPRAM_SIZE 0x00002000 #define GPRAM_END GPRAM_START + GPRAM_SIZE #endif /* CACHE_AS_RAM */ /* System memory map */ MEMORY { /* EDITOR'S NOTE: * the FLASH and SRAM lengths can be changed by defining * ICALL_STACK0_START or ICALL_RAM0_START in * Properties->ARM Linker->Advanced Options->Command File Preprocessing. */ /* Application stored in and executes from internal flash */ /* Flash Size 128 KB */ #ifdef ICALL_STACK0_START FLASH (RX) : origin = FLASH_APP_BASE, length = ADJ_ICALL_STACK0_START - FLASH_APP_BASE #else // default FLASH (RX) : origin = FLASH_APP_BASE, length = FLASH_LEN - FLASH_PAGE_LEN #endif // CCFG Page, contains .ccfg code section and some application code. FLASH_LAST_PAGE (RX) : origin = FLASH_LAST_PAGE_START, length = FLASH_PAGE_LEN /* Application uses internal RAM for data */ /* RAM Size 16 KB */ #ifdef ICALL_RAM0_START SRAM (RWX) : origin = RAM_APP_BASE, length = ICALL_RAM0_START - RAM_APP_BASE #else //default SRAM (RWX) : origin = RAM_APP_BASE, length = RAM_SIZE #endif #ifdef CACHE_AS_RAM GPRAM(RWX) : origin = GPRAM_APP_BASE, length = GPRAM_SIZE #endif /* CACHE_AS_RAM */ } /* Section allocation in memory */ SECTIONS { .intvecs : > FLASH_APP_BASE .text : >> FLASH | FLASH_LAST_PAGE .const : >> FLASH | FLASH_LAST_PAGE .constdata : >> FLASH | FLASH_LAST_PAGE .rodata : >> FLASH | FLASH_LAST_PAGE .cinit : > FLASH | FLASH_LAST_PAGE .pinit : >> FLASH | FLASH_LAST_PAGE .init_array : >> FLASH | FLASH_LAST_PAGE .emb_text : >> FLASH | FLASH_LAST_PAGE .ccfg : > FLASH_LAST_PAGE (HIGH) GROUP > SRAM { .data #ifndef CACHE_AS_RAM .bss #endif /* CACHE_AS_RAM */ .vtable .vtable_ram vtable_ram .sysmem .nonretenvar } LOAD_END(heapStart) .stack : > SRAM (HIGH) LOAD_START(heapEnd) #ifdef CACHE_AS_RAM .bss : > GPRAM #endif /* CACHE_AS_RAM */ } /* Create global constant that points to top of stack */ /* CCS: Change stack size under Project Properties */ __STACK_TOP = __stack + __STACK_SIZE; /* Allow main() to take args */ --args 0x8
mtrobregado/TI-CC2640R2F-SensorTag
SensorTag_cc2640r2lp_app/TOOLS/cc26xx_app.cmd
bat
mit
6,979
hexo server>>console.txt
shliujing/blog
cmd/run.bat
bat
mit
24
@echo off echo --------------------------------------------------------------- echo. echo Hello Human echo Let's see some science! echo. echo --------------------------------------------------------------- echo. npm start echo. echo --------------------------------------------------------------- echo. echo Your app is up and running!
ammeep/electron-accelerator
template/script/server.cmd
bat
mit
338
cls echo off SET DIR=%~dp0% IF NOT EXIST "%DIR%log" MKDIR "%DIR%log" "%WINDIR%\Microsoft.Net\Framework\v4.0.30319\msbuild.exe" /m /v:n "%DIR%/restorepackages.proj" /target:RestoreCorePackagesOnly /logger:FileLogger,Microsoft.Build.Engine;LogFile=%DIR%log/restorecorepackagesonly.log pause
DavidLievrouw/Nancy.Session.InProc
build/restorecorepackagesonly.cmd
bat
mit
288
rem ..\release\theta_eet.exe test\test_config.txt rem ..\release\theta_eet.exe test\test_config_1_1.txt ..\release\theta_eet.exe test\test_config_2.txt rem ..\release\theta_eet.exe test\test_config_2_1.txt
zinziroge/theta_eet
theta_eet/test/test.bat
bat
mit
206
cmd_net/ipv6/ipv6.o := /home/ashishtanwer/goldfish3.10/../x86_64-linux-android-4.7/bin/x86_64-linux-android-ld -m elf_i386 -r -o net/ipv6/ipv6.o net/ipv6/af_inet6.o net/ipv6/anycast.o net/ipv6/ip6_output.o net/ipv6/ip6_input.o net/ipv6/addrconf.o net/ipv6/addrlabel.o net/ipv6/route.o net/ipv6/ip6_fib.o net/ipv6/ipv6_sockglue.o net/ipv6/ndisc.o net/ipv6/udp.o net/ipv6/udplite.o net/ipv6/raw.o net/ipv6/icmp.o net/ipv6/mcast.o net/ipv6/reassembly.o net/ipv6/tcp_ipv6.o net/ipv6/ping.o net/ipv6/exthdrs.o net/ipv6/datagram.o net/ipv6/ip6_flowlabel.o net/ipv6/inet6_connection_sock.o net/ipv6/sysctl_net_ipv6.o net/ipv6/xfrm6_policy.o net/ipv6/xfrm6_state.o net/ipv6/xfrm6_input.o net/ipv6/xfrm6_output.o net/ipv6/netfilter.o net/ipv6/proc.o net/ipv6/syncookies.o
ashishtanwer/NFTable-porting-on-Android-Goldfish
net/ipv6/.ipv6.o.cmd
bat
gpl-2.0
766
cmd_security/built-in.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o security/built-in.o security/commoncap.o
yohanes/Acer-BeTouch-E130-Linux-Kernel
security/.built-in.o.cmd
bat
gpl-2.0
129
cmd_sound/soc/tegra/built-in.o := rm -f sound/soc/tegra/built-in.o; /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ar rcsD sound/soc/tegra/built-in.o
friedrich420/Note-3-Kernel
sound/soc/tegra/.built-in.o.cmd
bat
gpl-2.0
160
cmd_arch/arm/mach-msm/idle-v7.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/mach-msm/.idle-v7.o.d -nostdinc -isystem /home/gabe/arm-2009q3/arm-2009q3/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/mach-msm/idle-v7.o arch/arm/mach-msm/idle-v7.S deps_arch/arm/mach-msm/idle-v7.o := \ arch/arm/mach-msm/idle-v7.S \ $(wildcard include/config/msm/cpu/avs.h) \ $(wildcard include/config/msm/jtag/v7.h) \ $(wildcard include/config/msm/etm.h) \ $(wildcard include/config/msm/fiq/support.h) \ /home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ 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/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/linkage.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ /home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/gabe/stock_note/sgh-i717-dagkernel/arch/arm/include/asm/hwcap.h \ arch/arm/mach-msm/idle-v7.o: $(deps_arch/arm/mach-msm/idle-v7.o) $(deps_arch/arm/mach-msm/idle-v7.o):
dagnarf/sgh-i717-dagkernel
arch/arm/mach-msm/.idle-v7.o.cmd
bat
gpl-2.0
2,096
cmd_drivers/accessory/built-in.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/accessory/built-in.o drivers/accessory/mhl/built-in.o
TeamGlide/LiteKernel
drivers/accessory/.built-in.o.cmd
bat
gpl-2.0
160
cmd_arch/arm/lib/copy_page.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.copy_page.o.d -nostdinc -isystem /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/lithium/kfhd/kernel/android-3.0/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-omap2/include -Iarch/arm/plat-omap/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/copy_page.o arch/arm/lib/copy_page.S source_arch/arm/lib/copy_page.o := arch/arm/lib/copy_page.S deps_arch/arm/lib/copy_page.o := \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/linkage.h \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/hwcap.h \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ arch/arm/lib/copy_page.o: $(deps_arch/arm/lib/copy_page.o) $(deps_arch/arm/lib/copy_page.o):
0xD34D/kernel_amazon_tate
arch/arm/lib/.copy_page.o.cmd
bat
gpl-2.0
2,355
cmd_/home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/ti/wlcore/wlcore.ko := /home/keithconger/Projects/bbbandroid-bluez/prebuilts/gcc/linux-x86/arm/arm-gnueabihf-4.7/bin/arm-linux-gnueabihf-ld -EL -r -T /home/keithconger/Projects/bbbandroid-bluez/kernel/scripts/module-common.lds --build-id -o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/ti/wlcore/wlcore.ko /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/ti/wlcore/wlcore.o /home/keithconger/Projects/bbbandroid-bluez/backports-3.18.1-1/drivers/net/wireless/ti/wlcore/wlcore.mod.o
kconger/backports-3.18.1-1
drivers/net/wireless/ti/wlcore/.wlcore.ko.cmd
bat
gpl-2.0
645
cmd_drivers/block/built-in.o := arm-linux-androideabi-ld -EL -r -o drivers/block/built-in.o drivers/block/brd.o drivers/block/loop.o
hch-im/nexus4_kernel
drivers/block/.built-in.o.cmd
bat
gpl-2.0
138
cmd_fs/dlm/dlm.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o fs/dlm/dlm.ko fs/dlm/dlm.o fs/dlm/dlm.mod.o
avareldalton85/rpi2-linux-rt
fs/dlm/.dlm.ko.cmd
bat
gpl-2.0
211
@echo off set VERSION=0.1 set PROGRAM=.\CurlUploader-%VERSION%\CurlUploader.exe set PPARAMS= set OPTIONS=%* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem if not defined OPTIONS set OPTIONS= ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: set dir=%cd% cd %~dp0 echo %PROGRAM% %PPARAMS% %OPTIONS% call %PROGRAM% %PPARAMS% %OPTIONS% set EXIT_CODE=%errorlevel% cd %dir% ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: timeout /t 10 /nobreak exit /b %EXIT_CODE%
zappyk-github/zappyk-python
src/src_zappyk/curlUploader/CurlUploader-launch.bat
bat
gpl-2.0
582
cmd_arch/x86/lib/putuser_32.o := gcc -Wp,-MD,arch/x86/lib/.putuser_32.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -D__ASSEMBLY__ -m32 -Iinclude/asm-x86/mach-default -c -o arch/x86/lib/putuser_32.o arch/x86/lib/putuser_32.S deps_arch/x86/lib/putuser_32.o := \ arch/x86/lib/putuser_32.S \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/x86/32.h) \ $(wildcard include/config/x86/alignment/16.h) \ include/asm/dwarf2.h \ include/asm/dwarf2_32.h \ $(wildcard include/config/unwind/info.h) \ $(wildcard include/config/as/cfi/signal/frame.h) \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/asm/page.h \ $(wildcard include/config/paravirt.h) \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/highmem64g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/use/3dnow.h) \ $(wildcard include/config/x86/3dnow.h) \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/asm-offsets.h \ arch/x86/lib/putuser_32.o: $(deps_arch/x86/lib/putuser_32.o) $(deps_arch/x86/lib/putuser_32.o):
namgk/kernel-tut
arch/x86/lib/.putuser_32.o.cmd
bat
gpl-2.0
1,909
cmd_arch/arm/lib/ashldi3.o := arm-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.ashldi3.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 -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/ashldi3.o arch/arm/lib/ashldi3.S source_arch/arm/lib/ashldi3.o := arch/arm/lib/ashldi3.S deps_arch/arm/lib/ashldi3.o := \ /root/linux-jps/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) \ /root/linux-jps/arch/arm/include/asm/linkage.h \ arch/arm/lib/ashldi3.o: $(deps_arch/arm/lib/ashldi3.o) $(deps_arch/arm/lib/ashldi3.o):
jpsminix/minix5
arch/arm/lib/.ashldi3.o.cmd
bat
gpl-2.0
1,270
@echo off :: marcerror.sh :: Diagnostic program to show look for errors in Marc records. :: $Id: marcerror.sh setlocal ::Get the current batch file's short path for %%x in (%0) do set scriptdir=%%~dpsx for %%x in (%scriptdir%) do set scriptdir=%%~dpsx if EXIST %scriptdir%SolrMarc.jar goto doit pushd %scriptdir%.. for %%x in (%CD%) do set scriptdir=%%~sx\ popd :doit ::echo BatchPath = %scriptdir% java -Dsolrmarc.main.class="org.solrmarc.tools.PermissiveReaderTest" -jar %scriptdir%SolrMarc.jar %1 %2 %3
techlib/VUFIND-1
import/bin/marcerror.bat
bat
gpl-2.0
528
cmd_sound/soc/rk29/snd-soc-rockchip-spdif.o := arm-linux-gnueabihf-ld -EL -r -o sound/soc/rk29/snd-soc-rockchip-spdif.o sound/soc/rk29/rk_spdif.o
Dee-UK/D33_KK_Kernel
sound/soc/rk29/.snd-soc-rockchip-spdif.o.cmd
bat
gpl-2.0
150
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\node-tail\bin\node-tail" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\node-tail\bin\node-tail" %* )
drake7707/802.11ah-ns3
forwardsocketdata/node_modules/.bin/node-tail.cmd
bat
gpl-2.0
194
@echo off set filename=%1% set FLASHTOOL=setup\dfu-util-static.exe if "%filename%" == "" set filename=out\STM32Gimbal.USB.bin echo taking board into boot mode ... REM boot loader hack by ala42 REM let dfu-util talk to the USB VCP address. This is detected by the VCP handler REM which takes the board into the boot loader %FLASHTOOL% --device 0483:5740 -D dummyname 2>1 >nul
jmwilkosz/LAKITU_EvvGC
ForceBootloader.bat
bat
gpl-2.0
377
@ECHO OFF echo %1 %HAZAPPS%\hazard.exe < %1.sas > %1.lst
ehrlinger/hazard
src/scripts/hazard.bat
bat
gpl-2.0
60
cmd_libbb/update_passwd.o := gcc -Wp,-MD,libbb/.update_passwd.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(update_passwd)" -D"KBUILD_MODNAME=KBUILD_STR(update_passwd)" -c -o libbb/update_passwd.o libbb/update_passwd.c deps_libbb/update_passwd.o := \ libbb/update_passwd.c \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/adduser.h) \ $(wildcard include/config/addgroup.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/passwd.h) \ $(wildcard include/config/chpasswd.h) \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/delgroup.h) \ include/libbb.h \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/busybox/exec/path.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/bits/predefs.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \ /usr/include/ctype.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/uio.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/inttypes.h \ /usr/include/netdb.h \ /usr/include/netinet/in.h \ /usr/include/x86_64-linux-gnu/sys/socket.h \ /usr/include/x86_64-linux-gnu/sys/uio.h \ /usr/include/x86_64-linux-gnu/bits/socket.h \ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ /usr/include/x86_64-linux-gnu/asm/socket.h \ /usr/include/asm-generic/socket.h \ /usr/include/x86_64-linux-gnu/asm/sockios.h \ /usr/include/asm-generic/sockios.h \ /usr/include/x86_64-linux-gnu/bits/socket2.h \ /usr/include/x86_64-linux-gnu/bits/in.h \ /usr/include/rpc/netdb.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/netdb.h \ /usr/include/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp2.h \ /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/x86_64-linux-gnu/sys/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll.h \ /usr/include/x86_64-linux-gnu/sys/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctls.h \ /usr/include/x86_64-linux-gnu/asm/ioctls.h \ /usr/include/asm-generic/ioctls.h \ /usr/include/linux/ioctl.h \ /usr/include/x86_64-linux-gnu/asm/ioctl.h \ /usr/include/asm-generic/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/x86_64-linux-gnu/sys/resource.h \ /usr/include/x86_64-linux-gnu/bits/resource.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/mntent.h \ /usr/include/paths.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ libbb/update_passwd.o: $(deps_libbb/update_passwd.o) $(deps_libbb/update_passwd.o):
muthumani2/Muthu-busybox
libbb/.update_passwd.o.cmd
bat
gpl-2.0
9,688
cd G:\home-win\LYM set namedate=%DATE:/=_% set nametime=%TIME:,=_% set nametime=%nametime::=_% set nametime=%nametime: =_% if exist pic move pic pic_%namedate%_%nametime% if not exist pic mkdir pic perl cmd\PG_configAndHeaderGenerator.prl geneMuse\LYM_geneMuse-head-single.conf geneMuse\LYM_geneMuse.csv geneMuse\LYM_geneMuse.conf G:\home-win\Porphyrograph\Porphyrograph-VC\Release\geneMuse\Porphyrograph_geneMuse.exe ./geneMuse/LYM_geneMuse.conf
yukao/Porphyrograph
LYM-projects/ProjectsBefore18/geneMuse/geneMuse.PG-single.bat
bat
gpl-3.0
447
@echo off set PATH_ORIG=%PATH% set CYGWIN=nodosfilewarning for %%F in (%0) do path %%~pFbin;%path% for %%F in (%0) do bash.exe --login -i path %PATH_ORIG%
joymarquis/mscc
general/mini_cygwin_gen/mini_cygwin.bat
bat
gpl-3.0
158
@echo off set ROOT_DIR=%~dp0.. echo %ROOT_DIR% rem plugins mklink /H yaco_plugin.py %ROOT_DIR%\YaCo\yaco_plugin.py rem yatools rem mklink /J /D YaTools %ROOT_DIR%\bin\yaco_d_x64\YaTools mklink /J /D YaTools %ROOT_DIR%\bin\yaco_x64\YaTools
DGA-MI-SSI/YaCo
build/deploy.cmd
bat
gpl-3.0
242
@echo off start javaw -Xmx64m -jar climate-tray-${pom.version}-executable.jar %*
thred/climate-tray
src/main/assembly/climate-tray.cmd
bat
gpl-3.0
82
@ECHO OFF call "%~dp0env.bat" IF NOT EXIST win32\obj goto QTSET IF NOT EXIST "%QTDIR%" goto QTSET goto QT :QTSET SET QTDIR=%ROOT%\3rdparty\win32\qt SET PATH=%QTDIR%;%PATH% :QT if not exist "%BIN_DIR%\Tutorial.exe" goto ERR_EXE echo %QTDIR% echo Starting IESample ..... start /D "%BIN_DIR%" Tutorial.exe GOTO END :ERR_EXE ECHO Executable %BIN_DIR%\Tutorial.exe not found." ECHO Probably you didn't compile the application. pause GOTO END :END
AsherBond/MondocosmOS
opencascade-6.5.1/samples/qt/tutorial/Run.bat
bat
agpl-3.0
458
@echo off echo HELLO WORLD!
fir3pho3nixx/sharp-agents
Core.Tests/AgentTests.cs.upload.bat
bat
unlicense
28
@echo off @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. SetLocal EnableDelayedExpansion @rem Set the path if not defined HIVE_BIN_PATH ( set HIVE_BIN_PATH=%~dp0 ) if "%HIVE_BIN_PATH:~-1%" == "\" ( set HIVE_BIN_PATH=%HIVE_BIN_PATH:~0,-1% ) set HIVE_CONFIG_SCRIPT=%HIVE_BIN_PATH%\hive-config.cmd if exist %HIVE_CONFIG_SCRIPT% ( CALL %HIVE_CONFIG_SCRIPT% %* ) set SERVICE= set HELP= set CATSERVICE= set DEBUG= set CURRENTARG= set HIVEARGS= rem set AUX_CLASSPATH= set AUX_PARAM= @rem parse the command line arguments :ProcessCmdLine if [%1]==[] goto :FinishArgs set temp=%1 set temp=%temp:~0, 7% if %temp%==--debug ( set DEBUG=%* shift goto :ProcessCmdLine ) if %1==--config ( shift shift goto :ProcessCmdLine ) if %1==--auxpath ( shift shift goto :ProcessCmdLine ) if %1==--service ( set SERVICE=%2 if [%3]==[catservicexml] ( set CATSERVICE=_catservice shift ) shift shift goto :ProcessCmdLine ) if %1==--rcfilecat ( set SERVICE=rcfilecat shift goto :ProcessCmdLine ) if %1==--orcfiledump ( set SERVICE=orcfiledump shift goto :ProcessCmdLine ) if %1==--help ( set HELP=_help shift goto :ProcessCmdLine ) @rem parameter at %1 does not match any option, these are optional params goto :FinishArgs :FinishArgs if defined DEBUG ( if defined HELP ( call %HIVE_BIN_PATH%\ext\debug.cmd HELP goto :EOF ) call %HIVE_BIN_PATH%\ext\debug.cmd %DEBUG% ) if defined HIVE_MAIN_CLIENT_DEBUG_OPTS ( set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_CLIENT_OPTS% %HIVE_MAIN_CLIENT_DEBUG_OPTS% ) if not [%1]==[] ( set CURRENTARG=%1 call :MakeHiveArgs %* ) if not defined SERVICE ( if defined HELP ( set SERVICE=help ) else ( set SERVICE=cli ) ) if not defined HIVE_HOME ( echo "HIVE_HOME needs to be defined to point at the root of the hive install" exit /b 1 ) if not defined HIVE_CONF_DIR ( set HIVE_CONF_DIR=%HIVE_HOME%\conf ) if exist %HIVE_CONF_DIR%/hive-env.cmd CALL %HIVE_CONF_DIR%/hive-env.cmd @rem sort out classpath and make sure dependencies exist set CLASSPATH=%HIVE_CONF_DIR% set HIVE_LIB=%HIVE_HOME%\lib @rem needed for execution if not exist %HIVE_LIB%\hive-exec-*.jar ( echo "Missing Hive Execution Jar: %HIVE_LIB%/hive-exec-*.jar" exit /b 1 ) if not exist %HIVE_LIB%\hive-metastore-*.jar ( echo "Missing Hive MetaStore Jar" exit /b 1 ) @rem cli specific code if not exist %HIVE_LIB%\hive-cli-*.jar ( echo "Missing Hive CLI Jar" exit /b 1 ) set CLASSPATH=%CLASSPATH%;%HIVE_LIB%\* @rem maybe we should just make users set HADOOP_HOME env variable as a prereq @rem in the next iteration, use "where" command to find directory of hadoop install from path if not defined HADOOP_HOME ( echo "HADOOP_HOME needs to be defined to point at the hadoop installation" exit /b 1 ) @rem supress the HADOOP_HOME warnings in 1.x.x set HADOOP_HOME_WARN_SUPPRESS=true set HADOOP=%HADOOP_HOME%\bin\hadoop.cmd if not exist %HADOOP% ( echo "Missing hadoop installation: %HADOOP_HOME% must be set" exit /b 1 ) @rem can only run against hadoop 1.0.0 as prereq for this iteration - can't figure out the regex/awk script to determine compatibility @rem add auxilary jars such as serdes if not defined HIVE_AUX_JARS_PATH goto :AddAuxLibDir setLocal EnableDelayedExpansion :auxJarLoop for /f "delims=," %%a in ("!HIVE_AUX_JARS_PATH!") do ( set auxjar=%%a if exist %%a ( if exist "%%a\nul" ( @rem %%a is a dir pushd %%a for /f %%b IN ('dir /b *.jar') do ( set AUX_CLASSPATH=!AUX_CLASSPATH!;%%a\%%b call :AddToAuxParam %%a\%%b ) popd ) else ( @rem %%a is a file set AUX_CLASSPATH=!AUX_CLASSPATH!;%%a call :AddToAuxParam %%a ) ) ) :striploop set stripchar=!HIVE_AUX_JARS_PATH:~0,1! set HIVE_AUX_JARS_PATH=!HIVE_AUX_JARS_PATH:~1! if "!HIVE_AUX_JARS_PATH!" EQU "" goto auxJarLoopEnd if "!stripchar!" NEQ "," goto striploop goto auxJarLoop :auxJarLoopEnd if defined HIVE_AUX_JARS_PATH ( echo "setting aux param %HIVE_AUX_JARS_PATH%" set AUX_CLASSPATH=%HIVE_AUX_JARS_PATH% set AUX_PARAM=file://%HIVE_AUX_JARS_PATH% ) :AddAuxLibDir @rem adding jars from auxlib directory if exist %HIVE_HOME%\auxlib ( pushd %HIVE_HOME%\auxlib for /f %%a IN ('dir /b *.jar') do ( set AUX_CLASSPATH=%AUX_CLASSPATH%;%%a call :AddToAuxParam %%a ) popd ) @rem pass classpath to hadoop set HADOOP_CLASSPATH=%HADOOP_CLASSPATH%;%CLASSPATH%;%AUX_CLASSPATH% @rem also pass hive classpath to hadoop if defined HIVE_CLASSPATH ( set HADOOP_CLASSPATH=%HADOOP_CLASSPATH%;%HIVE_CLASSPATH% ) @rem set hbase components if defined HBASE_HOME ( if not defined HBASE_CONF_DIR ( if exist %HBASE_HOME%\conf ( set HBASE_CONF_DIR=%HBASE_HOME%\conf ) ) if defined HBASE_CONF_DIR ( call :AddToHadoopClassPath %HBASE_CONF_DIR% ) if exist %HBASE_HOME%\lib ( call :AddToHadoopClassPath %HBASE_HOME%\lib\* ) ) if defined AUX_PARAM ( set HIVE_OPTS=%HIVE_OPTS% -hiveconf hive.aux.jars.path="%AUX_PARAM%" set AUX_JARS_CMD_LINE="-libjars %AUX_PARAM%" ) @rem Get ready to run the services set SERVICE_COUNT=0 set TORUN="" call :AddServices For /L %%i in (1,1,%SERVICE_COUNT%) do ( if "%SERVICE%" == "!VAR%%i!" ( set TORUN=!VAR%%i! ) ) if %TORUN% == "" ( echo "Service %SERVICE% not available" exit /b 1 ) if defined HELP ( call %HIVE_BIN_PATH%\ext\%TORUN%.cmd %TORUN%%HELP% %* goto :EOF ) @rem generate xml for the service, also append hadoop dependencies to the classpath if defined CATSERVICE ( if exist %HADOOP_HOME%\libexec\hadoop-config.cmd ( call %HADOOP_HOME%\libexec\hadoop-config.cmd ) else ( call %HADOOP_HOME%\libexec\hadoop-config.cmd ) call %HIVE_BIN_PATH%\ext\%TORUN%.cmd %TORUN%%CATSERVICE% %* goto :EOF ) call %HIVE_BIN_PATH%\ext\%TORUN%.cmd %TORUN% %* goto :EOF @rem done body of script @rem start utility functions here @rem strip off preceding arguments like --service so that subsequent args can be passed on :MakeHiveArgs set _count=0 set _shift=1 set HIVEARGS= if not defined CURRENTARG ( goto :EndLoop ) :HiveArgsLoop if [%1]==[] ( goto :EndLoop ) if not %1==%CURRENTARG% ( shift goto :HiveArgsLoop ) if not defined HIVEARGS ( set HIVEARGS=%1 ) else ( set HIVEARGS=%HIVEARGS% %1 ) shift set CURRENTARG=%1 goto :HiveArgsLoop :EndLoop goto :EOF @rem makes list of available services :AddServices set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=cli set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=help set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=hiveserver set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=hiveserver2 set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=hwi set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=jar set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=lineage set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=metastore set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=rcfilecat set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=orcfiledump set /a SERVICE_COUNT = %SERVICE_COUNT% + 1 set VAR%SERVICE_COUNT%=schematool goto :EOF :AddToAuxParam if not defined AUX_PARAM ( set AUX_PARAM=file:///%1 ) else ( set AUX_PARAM=%AUX_PARAM%,file:///%1 ) ) goto :EOF :AddToHadoopClassPath if defined HADOOP_CLASSPATH ( set HADOOP_CLASSPATH=%HADOOP_CLASSPATH%;%1 ) else ( set HADOOP_CLASSPATH=%1 ) ) goto :EOF
wangbin83-gmail-com/hive-1.1.0-cdh5.4.8
bin/hive.cmd
bat
apache-2.0
8,674
@ringo "rp/lib/rp" %*
grob/rp
bin/rp.cmd
bat
apache-2.0
21
cd Release echo Starting NFMasterServer... start "NFMasterServer" "NFPluginLoader.exe" "Server=MasterServer" "ID=3" choice /t 2 /d y /n >nul echo Starting NFWorldServer... start "NFWorldServer" "NFPluginLoader.exe" "Server=WorldServer" "ID=7" choice /t 5 /d y /n >nul echo Starting NFLoginServer... start "NFLoginServer" "NFPluginLoader.exe" "Server=LoginServer" "ID=4" choice /t 2 /d y /n >nul echo Starting NFGameServer... start "NFGameServer" "NFPluginLoader.exe" "Server=GameServer" "ID=6" choice /t 4 /d y /n >nul echo Starting NFProxyServer... start "NFProxyServer" "NFPluginLoader.exe" "Server=ProxyServer" "ID=5"
xinst/NoahGameFrame
_Out/runr.bat
bat
apache-2.0
636
<<<<<<< HEAD SET CURRENT_PATH_PREINSTALL=%CD% setx PATH "%PATH%;C:\turbo.lua;C:\turbo.lua\luarocks\2.2" /M @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin choco install -y visualstudio2013professional git mingw openssl.light gnuwin SET PATH=%PATH%;C:\Program Files (x86)\Git\cmd;C:\GnuWin\bin;C:\tools\mingw64\bin;C:\Program Files (x86)\Windows Kits\8.1\bin\x64;C:\turbo.lua;C:\turbo.lua\luarocks\2.2 SET VS120COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\ rm -rf C:\turbo.lua mkdir C:\turbo.lua cd C:\turbo.lua mkdir src cd src git clone https://github.com/kernelsauce/turbo.git cd C:\turbo.lua\src\turbo mingw32-make SSL=none mv libtffi_wrap.so libtffi_wrap.dll setx TURBO_LIBTFFI "C:\turbo.lua\src\turbo\libtffi_wrap.dll" /M setx TURBO_LIBSSL "C:\Program Files\OpenSSL\libeay32.dll" /M SET TURBO_LIBTFFI=C:\turbo.lua\src\turbo\libtffi_wrap.dll SET TURBO_LIBSSL=C:\Program Files\OpenSSL\libeay32.dll cd C:\turbo.lua\src git clone http://luajit.org/git/luajit-2.0.git cd C:\turbo.lua\src\luajit-2.0\src call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 call msvcbuild cp luajit.exe C:\turbo.lua cp lua51.dll C:\turbo.lua cd C:\turbo.lua\src git clone https://github.com/keplerproject/luarocks.git cd C:\turbo.lua\src\luarocks SET LUA_PATH=C:\turbo.lua\rocks\share\lua\5.1\?.lua;C:\turbo.lua\rocks\share\lua\5.1\?\init.lua;C:\turbo.lua\src\turbo\?.lua;C:\turbo.lua\src\turbo\turbo\?.lua SET LUA_CPATH=C:\turbo.lua\rocks\lib\lua\5.1\?.dll setx LUA_PATH "%LUA_PATH%" /M setx LUA_CPATH "%LUA_CPATH%" /M call install.bat /TREE C:\turbo.lua\rocks\ /P C:\turbo.lua\luarocks\ /INC C:\turbo.lua\src\luajit-2.0\src /LIB C:\turbo.lua\src\luajit-2.0\src /LUA C:\turbo.lua /Q call luarocks install luasocket call luarocks install luafilesystem cd %CURRENT_PATH_PREINSTALL% echo =========================== echo Turbo is now installed. Try it by running 'luajit C:\turbo.lua\src\turbo\examples\helloworld.lua' and point your browser to http://localhost:8888. echo Have a nice day! echo =========================== ======= @echo off SET CURRENT_PATH_PREINSTALL=%CD% SET TURBO_ROOT=C:\turbo.lua SET TURBO_LIBTFFI=%TURBO_ROOT%\libtffi_wrap.dll SET TURBO_LUAROCKS=%TURBO_ROOT%\luarocks SET TURBO_LUAROCKS_BIN=%TURBO_LUAROCKS%\2.2 SET TURBO_ROCKS=%TURBO_ROOT%\rocks SET TURBO_SRC=%TURBO_ROOT%\src SET TURBO_OPENSSL_ROOT=%TURBO_SRC%\openssl-1.0.2d SET TURBO_OPENSSL_BUILD=%TURBO_ROOT%\openssl-64-vc SET VCVARSALL_BAT="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" echo =========================== echo Thank you for trying Turbo.lua echo This script will use Chocolatey to install dependencies. If they are already installed they will be skipped. echo Current dependencies are: echo Visual Studio 2013, Git, Mingw, Gnuwin, Strawberry Perl (to compile OpenSSL). echo Please abort installation now by clicking CTRL+C within 10 seconds. echo =========================== timeout /t 10 setx PATH "%PATH%;%TURBO_ROOT%;%TURBO_LUAROCKS_BIN%" /M @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin choco install -y visualstudio2013professional git mingw strawberryperl curl 7zip.commandline call %VCVARSALL_BAT% amd64 SET PATH=%PATH%;%TURBO_ROOT%;%TURBO_LUAROCKS_BIN%;C:\Program Files (x86)\Git\cmd;C:\tools\mingw64\bin;C:\Program Files (x86)\Windows Kits\8.1\bin\x64;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin rmdir %TURBO_ROOT% /q /s mkdir %TURBO_SRC%\turbo\turbo xcopy /E turbo %TURBO_SRC%\turbo\turbo xcopy turbo.lua %TURBO_SRC%\turbo echo =========================== echo Now building Turbo.lua C helper functions echo =========================== mingw32-make SSL=none xcopy libtffi_wrap.dll %TURBO_ROOT% setx TURBO_LIBTFFI "%TURBO_LIBTFFI%" /M SET TURBO_LIBTFFI=%TURBO_LIBTFFI% setx TURBO_LIBSSL "%TURBO_OPENSSL_BUILD%\bin\libeay32.dll" /M SET TURBO_LIBSSL=%TURBO_OPENSSL_BUILD%\bin\libeay32.dll setx TURBO_CAPATH "%TURBO_SRC%\turbo\turbo\ca-certificates.crt" /M SET TURBO_CAPATH=%TURBO_SRC%\turbo\turbo\ca-certificates.crt echo =========================== echo Now building OpenSSL from source to support SSL in Turbo.lua echo =========================== cd %TURBO_SRC% curl -k https://www.openssl.org/source/openssl-1.0.2d.tar.gz > openssl.tar.gz 7z x openssl.tar.gz 7z x openssl.tar cd openssl-1.0.2d call perl Configure VC-WIN64A --prefix=%TURBO_OPENSSL_BUILD% call ms\do_win64a call nmake -f ms\nt.mak call nmake -f ms\nt.mak install echo =========================== echo Now building LuaJIT 2. echo =========================== cd %TURBO_SRC% git clone http://luajit.org/git/luajit-2.0.git cd %TURBO_SRC%\luajit-2.0\src call msvcbuild xcopy luajit.exe %TURBO_ROOT% xcopy lua51.dll %TURBO_ROOT% echo =========================== echo Now downloading LuaRocks. A Lua package manager. echo =========================== cd %TURBO_SRC% git clone https://github.com/keplerproject/luarocks.git cd %TURBO_SRC%\luarocks SET LUA_PATH=%TURBO_ROCKS%\share\lua\5.1\?.lua;%TURBO_ROCKS%\share\lua\5.1\?\init.lua;%TURBO_SRC%\turbo\?.lua;%TURBO_SRC%\turbo\turbo\?.lua SET LUA_CPATH=%TURBO_ROCKS%\lib\lua\5.1\?.dll setx LUA_PATH "%LUA_PATH%" /M setx LUA_CPATH "%LUA_CPATH%" /M call install.bat /TREE %TURBO_ROCKS% /P %TURBO_LUAROCKS% /INC %TURBO_SRC%\luajit-2.0\src /LIB %TURBO_SRC%\luajit-2.0\src /LUA %TURBO_ROOT% /Q call luarocks install luasocket call luarocks install luafilesystem echo =========================== echo Now compiling LuaSec for SSL support. echo =========================== cd %TURBO_SRC% git clone https://github.com/kernelsauce/luasec.git cd luasec call luarocks make luasec-0.5-3.rockspec OPENSSL_INCDIR=%TURBO_OPENSSL_BUILD%\include OPENSSL_LIBDIR=%TURBO_OPENSSL_BUILD%\lib echo =========================== echo Compiling OpenSSL DLL's. echo =========================== cd %TURBO_SRC%\openssl-1.0.2d call nmake -f ms\ntdll.mak call nmake -f ms\ntdll.mak install cd %CURRENT_PATH_PREINSTALL% echo =========================== echo Turbo is now installed. Try it by running 'luajit %TURBO_SRC%\turbo\examples\helloworld.lua' and point your browser to http://localhost:8888. echo Have a nice day! echo =========================== pause >>>>>>> kernelsauce/master
kidaa/turbo
install.bat
bat
apache-2.0
6,484
@ECHO OFF REM Override the default java compiler and jar command if needed SET JAVAC=javac SET JAR=jar REM Get current directory SET CURRENT_DIR=%CD% REM Delete the existing classes if already existing IF exist %CURRENT_DIR%\build\ch\ ( RMDIR /S /Q %CURRENT_DIR%\build\ch ) REM Build path SET BUILD_PATH=%CURRENT_DIR%\build REM Classpath SET CLASSPATH=..\..\..\lib\dss_client\dss_client.jar ECHO Generating LRCache jar to query for the status of long server calls. ECHO Compiling classes... %JAVAC% -cp %CLASSPATH% -source 1.8 -target 1.8 @"%CURRENT_DIR%.\files.txt" -d %BUILD_PATH% ECHO Packaging JAR archive... REM Change to the build directory cd %BUILD_PATH% REM Delete current archive del LRCache*.jar REM Archive name FOR /f "tokens=2 delims==" %%a IN ('wmic OS Get localdatetime /value') DO SET "dt=%%a" SET "YY=%dt:~2,2%" & SET "YYYY=%dt:~0,4%" & SET "MM=%dt:~4,2%" & SET "DD=%dt:~6,2%" SET "HH=%dt:~8,2%" & SET "Min=%dt:~10,2%" & SET "Sec=%dt:~12,2%" SET "fullstamp=%YYYY%%MM%%DD%%HH%%Min%%Sec%" SET ARCHIVENAME=LRCache_%fullstamp%.jar REM Create new archive %JAR% cvf %ARCHIVENAME% ch REM Delete the generated classes IF exist %CURRENT_DIR%\build\ch\ ( RMDIR /S /Q %CURRENT_DIR%\build\ch ) REM Change back to original directory cd %CURRENT_DIR% ECHO Generated JAR archive is .\build\%ARCHIVENAME%
aarpon/obit_annotation_tool
dist/CoreTechnologies/LRCache/createJar.bat
bat
apache-2.0
1,323
"%PYTHON%" setup.py install ::"%PYTHON%" setup.py build if errorlevel 1 exit 1 :: Add more build steps here, if they are necessary. :: See :: http://docs.continuum.io/conda/build.html :: for a list of environment variables that are set during the build process.
kayarre/condarecipes
control/bld.bat
bat
bsd-2-clause
264
java -jar node_modules/jsonix-schema-compiler/lib/jsonix-schema-compiler-full.jar -generateJsonSchema -d mappings -b bindings -p ShipOrder -logLevel DEBUG schemas
highsource/jsonix-support
s/shiporder/generate-sources.bat
bat
bsd-3-clause
162
@echo off echo This will update composer, run all tests, generate reports in ./build dir, dump component licenses to LICENSES.txt set /p continue=Do you want to continue ? [y/n] Y IF %continue% == () ( set continue=y pause ) IF %continue%==y ( del LICENSES.txt composer update --verbose & composer licenses >> LICENSES.txt test echo Build completed ) else ( echo Build skipped )
Hypermediaisobar/zf1-boilerplate
build.bat
bat
bsd-3-clause
412
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASEMAIL.S04_MeetingRequest.MSASEMAIL_S04_TC13_GlobalObjIdFormat_vCalUID /testcontainer:..\..\MS-ASEMAIL\TestSuite\bin\Debug\MS-ASEMAIL_TestSuite.dll /runconfig:..\..\MS-ASEMAIL\MS-ASEMAIL.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeActiveSync/Source/Scripts/MS-ASEMAIL/RunMSASEMAIL_S04_TC13_GlobalObjIdFormat_vCalUID.cmd
bat
mit
308
@echo off rem This file is the script to set path for ARM eabi tool chain. set TL_PATH=%~dp0 set PATH=%TL_PATH%;%PATH% cmd /K cd %CD%
marduino/stm32Proj
tools/armgcc/bin/gccvar.bat
bat
mit
142
#!/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 ..\..\..\write_data_fifo.ngc . planAhead -mode batch -source ..\planAhead_rdn.tcl
P3Stor/P3Stor
pcie/IP core/write_data_fifo/implement/planAhead_rdn.bat
bat
gpl-2.0
2,637
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\get-port\cli.js" %* ) ELSE ( node "%~dp0\..\get-port\cli.js" %* )
alajfit/GruntJS_AngularJS-PHP_Template
node_modules/grunt-php/node_modules/.bin/get-port.cmd
bat
gpl-2.0
127
cmd_fs/ext2/ext2.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o fs/ext2/ext2.o fs/ext2/balloc.o fs/ext2/dir.o fs/ext2/file.o fs/ext2/ialloc.o fs/ext2/inode.o fs/ext2/ioctl.o fs/ext2/namei.o fs/ext2/super.o fs/ext2/symlink.o fs/ext2/xattr.o fs/ext2/xattr_user.o fs/ext2/xattr_trusted.o
jdlfg/Mecha-kernel-jdlfg
fs/ext2/.ext2.o.cmd
bat
gpl-2.0
337
@ECHO OFF REM ---------------------------------------------------------------------- REM PHP version 5 REM ---------------------------------------------------------------------- REM Copyright (c) 1997-2004 The PHP Group REM ---------------------------------------------------------------------- REM This source file is subject to version 3.0 of the PHP license, REM that is bundled with this package in the file LICENSE, and is REM available at through the world-wide-web at REM http://www.php.net/license/3_0.txt. REM If you did not receive a copy of the PHP license and are unable to REM obtain it through the world-wide-web, please send a note to REM license@php.net so we can mail you a copy immediately. REM ---------------------------------------------------------------------- REM Authors: Alexander Merz (alexmerz@php.net) REM ---------------------------------------------------------------------- REM REM Last updated 02/08/2004 ($Id$ is not replaced if the file is binary) REM change this lines to match the paths of your system REM ------------------- REM Test to see if this is a raw pear.bat (uninstalled version) SET TMPTMPTMPTMPT=@includ SET PMTPMTPMT=%TMPTMPTMPTMPT%e_path@ FOR %%x IN ("C:\Users\egallo\php-getting-started\pear") DO (if %%x=="%PMTPMTPMT%" GOTO :NOTINSTALLED) REM Check PEAR global ENV, set them if they do not exist IF "%PHP_PEAR_INSTALL_DIR%"=="" SET "PHP_PEAR_INSTALL_DIR=C:\Users\egallo\php-getting-started\pear" IF "%PHP_PEAR_BIN_DIR%"=="" SET "PHP_PEAR_BIN_DIR=C:\Users\egallo\php-getting-started" IF "%PHP_PEAR_PHP_BIN%"=="" SET "PHP_PEAR_PHP_BIN=C:\Program Files (x86)\iis express\PHP\v5.5\php.exe" GOTO :INSTALLED :NOTINSTALLED ECHO WARNING: This is a raw, uninstalled pear.bat REM Check to see if we can grab the directory of this file (Windows NT+) IF %~n0 == pear ( FOR %%x IN (cli\php.exe php.exe) DO (if "%%~$PATH:x" NEQ "" ( SET "PHP_PEAR_PHP_BIN=%%~$PATH:x" echo Using PHP Executable "%PHP_PEAR_PHP_BIN%" "%PHP_PEAR_PHP_BIN%" -v GOTO :NEXTTEST )) GOTO :FAILAUTODETECT :NEXTTEST IF "%PHP_PEAR_PHP_BIN%" NEQ "" ( REM We can use this PHP to run a temporary php file to get the dirname of pear echo ^<?php $s=getcwd^(^);chdir^($a=dirname^(__FILE__^).'\\'^);if^(stristr^($a,'\\scripts'^)^)$a=dirname^(dirname^($a^)^).'\\';$f=fopen^($s.'\\~a.a','wb'^);echo$s.'\\~a.a';fwrite^($f,$a^);fclose^($f^);chdir^($s^);?^> > ~~getloc.php "%PHP_PEAR_PHP_BIN%" ~~getloc.php set /p PHP_PEAR_BIN_DIR=fakeprompt < ~a.a DEL ~a.a DEL ~~getloc.php set "PHP_PEAR_INSTALL_DIR=%PHP_PEAR_BIN_DIR%pear" REM Make sure there is a pearcmd.php at our disposal IF NOT EXIST %PHP_PEAR_INSTALL_DIR%\pearcmd.php ( IF EXIST %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php COPY %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php IF EXIST pearcmd.php COPY pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php IF EXIST %~dp0\scripts\pearcmd.php COPY %~dp0\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php ) ) GOTO :INSTALLED ) ELSE ( REM Windows Me/98 cannot succeed, so allow the batch to fail ) :FAILAUTODETECT echo WARNING: failed to auto-detect pear information :INSTALLED REM Check Folders and files IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%" GOTO PEAR_INSTALL_ERROR IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" GOTO PEAR_INSTALL_ERROR2 IF NOT EXIST "%PHP_PEAR_BIN_DIR%" GOTO PEAR_BIN_ERROR IF NOT EXIST "%PHP_PEAR_PHP_BIN%" GOTO PEAR_PHPBIN_ERROR REM launch pearcmd GOTO RUN :PEAR_INSTALL_ERROR ECHO PHP_PEAR_INSTALL_DIR is not set correctly. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_INSTALL_DIR% GOTO END :PEAR_INSTALL_ERROR2 ECHO PHP_PEAR_INSTALL_DIR is not set correctly. ECHO pearcmd.php could not be found there. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_INSTALL_DIR% GOTO END :PEAR_BIN_ERROR ECHO PHP_PEAR_BIN_DIR is not set correctly. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_BIN_DIR% GOTO END :PEAR_PHPBIN_ERROR ECHO PHP_PEAR_PHP_BIN is not set correctly. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_PHP_BIN% GOTO END :RUN "%PHP_PEAR_PHP_BIN%" -C -n -d date.timezone=UTC -d output_buffering=1 -d safe_mode=0 -d "include_path='%PHP_PEAR_INSTALL_DIR%'" -d register_argc_argv="On" -d variables_order=EGPCS -f "%PHP_PEAR_INSTALL_DIR%\peclcmd.php" -- %1 %2 %3 %4 %5 %6 %7 %8 %9 :END @ECHO ON
EulogioGallo/tbc-schoology-prod
pecl.bat
bat
gpl-3.0
4,638
@echo off :: =========================================================================== :: Product: QP/C buld script for ARM Cortex-M3, Vanilla port, ARM-KEIL :: Last updated for version 5.3.0 :: Last updated on 2014-03-30 :: :: Q u a n t u m L e a P s :: --------------------------- :: innovating embedded systems :: :: Copyright (C) Quantum Leaps, www.state-machine.com. :: :: This program is open source software: you can redistribute it and/or :: modify it under the terms of the GNU General Public License as published :: by the Free Software Foundation, either version 3 of the License, or :: (at your option) any later version. :: :: Alternatively, this program may be distributed and modified under the :: terms of Quantum Leaps commercial licenses, which expressly supersede :: the GNU General Public License and are specifically designed for :: licensees interested in retaining the proprietary status of their code. :: :: This program is distributed in the hope that it will be useful, :: but WITHOUT ANY WARRANTY; without even the implied warranty of :: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the :: GNU General Public License for more details. :: :: You should have received a copy of the GNU General Public License :: along with this program. If not, see <http://www.gnu.org/licenses/>. :: :: Contact information: :: Web: www.state-machine.com :: Email: info@state-machine.com :: =========================================================================== setlocal :: adjust the following path to the location where you've installed :: the ARM_KEIL toolset... :: if "%ARM_KEIL%"=="" set ARM_KEIL="C:\tools\Keil\ARM\ARMCC" set CC=%ARM_KEIL%\bin\armcc set ASM=%ARM_KEIL%\bin\armasm set LIB=%ARM_KEIL%\bin\armar set QP_INCDIR=..\..\..\..\include set QP_PRTDIR=. set ARM_CORE=Cortex-M3 if "%1"=="" ( echo default selected set BINDIR=%QP_PRTDIR%\dbg set CCOPT=-O1 set CCFLAGS=-g -c --cpu %ARM_CORE% --apcs=interwork --split_sections set ASMFLAGS=-g --cpu %ARM_CORE% --apcs=interwork ) if "%1"=="rel" ( echo rel selected set BINDIR=%QP_PRTDIR%\rel set CCOPT=-O3 -Otime set CCFLAGS=-c --cpu %ARM_CORE% --apcs=interwork --split_sections -DNDEBUG set ASMFLAGS=--cpu %ARM_CORE% --apcs=interwork ) if "%1"=="spy" ( echo spy selected set BINDIR=%QP_PRTDIR%\spy set CCOPT=-O1 set CCOPT_QS=-O3 -Otime set CCFLAGS=-g -c --cpu %ARM_CORE% --apcs=interwork --split_sections -DQ_SPY set ASMFLAGS=-g --cpu %ARM_CORE% --apcs=interwork ) mkdir %BINDIR% set LIBDIR=%BINDIR% set LIBFLAGS=-r erase %LIBDIR%\libqp_%ARM_CORE%.a :: QEP ---------------------------------------------------------------------- set SRCDIR=..\..\..\..\qep\source set CCINC=-I%QP_PRTDIR% -I%QP_INCDIR% -I%SRCDIR% @echo on %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qep.c -o%BINDIR%\qep.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qmsm_ini.c -o%BINDIR%\qmsm_ini.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qmsm_dis.c -o%BINDIR%\qmsm_dis.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qmsm_in.c -o%BINDIR%\qmsm_in.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qfsm_ini.c -o%BINDIR%\qfsm_ini.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qfsm_dis.c -o%BINDIR%\qfsm_dis.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qhsm_ini.c -o%BINDIR%\qhsm_ini.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qhsm_dis.c -o%BINDIR%\qhsm_dis.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qhsm_top.c -o%BINDIR%\qhsm_top.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qhsm_in.c -o%BINDIR%\qhsm_in.o %LIB% %LIBFLAGS% %LIBDIR%\libqp_%ARM_CORE%.a %BINDIR%\qep.o %BINDIR%\qmsm_ini.o %BINDIR%\qmsm_dis.o %BINDIR%\qmsm_in.o %BINDIR%\qfsm_ini.o %BINDIR%\qfsm_dis.o %BINDIR%\qhsm_ini.o %BINDIR%\qhsm_dis.o %BINDIR%\qhsm_top.o %BINDIR%\qhsm_in.o @echo off erase %BINDIR%\*.o :: QF ----------------------------------------------------------------------- set SRCDIR=..\..\..\..\qf\source set CCINC=-I%QP_PRTDIR% -I%QP_INCDIR% -I%SRCDIR% @echo on %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_ctor.c -o%BINDIR%\qa_ctor.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_defer.c -o%BINDIR%\qa_defer.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_fifo.c -o%BINDIR%\qa_fifo.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_lifo.c -o%BINDIR%\qa_lifo.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_get_.c -o%BINDIR%\qa_get_.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_sub.c -o%BINDIR%\qa_sub.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_usub.c -o%BINDIR%\qa_usub.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qa_usuba.c -o%BINDIR%\qa_usuba.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qeq_fifo.c -o%BINDIR%\qeq_fifo.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qeq_get.c -o%BINDIR%\qeq_get.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qeq_init.c -o%BINDIR%\qeq_init.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qeq_lifo.c -o%BINDIR%\qeq_lifo.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_act.c -o%BINDIR%\qf_act.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_gc.c -o%BINDIR%\qf_gc.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_log2.c -o%BINDIR%\qf_log2.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_new.c -o%BINDIR%\qf_new.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_pool.c -o%BINDIR%\qf_pool.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_psini.c -o%BINDIR%\qf_psini.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_pspub.c -o%BINDIR%\qf_pspub.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_pwr2.c -o%BINDIR%\qf_pwr2.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qf_tick.c -o%BINDIR%\qf_tick.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qma_ctor.c -o%BINDIR%\qma_ctor.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qmp_get.c -o%BINDIR%\qmp_get.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qmp_init.c -o%BINDIR%\qmp_init.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qmp_put.c -o%BINDIR%\qmp_put.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qte_ctor.c -o%BINDIR%\qte_ctor.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qte_arm.c -o%BINDIR%\qte_arm.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qte_darm.c -o%BINDIR%\qte_darm.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qte_rarm.c -o%BINDIR%\qte_rarm.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qte_ctr.c -o%BINDIR%\qte_ctr.o %CC% %CCFLAGS% %CCOPT% %CCINC% %SRCDIR%\qvanilla.c -o%BINDIR%\qvanilla.o %LIB% %LIBFLAGS% %LIBDIR%\libqp_%ARM_CORE%.a %BINDIR%\qa_ctor.o %BINDIR%\qa_defer.o %BINDIR%\qa_fifo.o %BINDIR%\qa_lifo.o %BINDIR%\qa_get_.o %BINDIR%\qa_sub.o %BINDIR%\qa_usub.o %BINDIR%\qa_usuba.o %BINDIR%\qeq_fifo.o %BINDIR%\qeq_get.o %BINDIR%\qeq_init.o %BINDIR%\qeq_lifo.o %BINDIR%\qf_act.o %BINDIR%\qf_gc.o %BINDIR%\qf_log2.o %BINDIR%\qf_new.o %BINDIR%\qf_pool.o %BINDIR%\qf_psini.o %BINDIR%\qf_pspub.o %BINDIR%\qf_pwr2.o %BINDIR%\qf_tick.o %BINDIR%\qma_ctor.o %BINDIR%\qmp_get.o %BINDIR%\qmp_init.o %BINDIR%\qmp_put.o %BINDIR%\qte_ctor.o %BINDIR%\qte_arm.o %BINDIR%\qte_darm.o %BINDIR%\qte_rarm.o %BINDIR%\qte_ctr.o %BINDIR%\qvanilla.o @echo off erase %BINDIR%\*.o :: QS ----------------------------------------------------------------------- if not "%1"=="spy" goto clean set SRCDIR=..\..\..\..\qs\source set CCINC=-I%QP_PRTDIR% -I%QP_INCDIR% -I%SRCDIR% @echo on %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs.c -o%BINDIR%\qs.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_.c -o%BINDIR%\qs_.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_blk.c -o%BINDIR%\qs_blk.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_byte.c -o%BINDIR%\qs_byte.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_dict.c -o%BINDIR%\qs_dict.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_f32.c -o%BINDIR%\qs_f32.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_f64.c -o%BINDIR%\qs_f64.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_mem.c -o%BINDIR%\qs_mem.o %CC% %CCFLAGS% %CCOPT_QS% %CCINC% %SRCDIR%\qs_str.c -o%BINDIR%\qs_str.o %LIB% %LIBFLAGS% %LIBDIR%\libqp_%ARM_CORE%.a %BINDIR%\qs.o %BINDIR%\qs_.o %BINDIR%\qs_blk.o %BINDIR%\qs_byte.o %BINDIR%\qs_dict.o %BINDIR%\qs_f32.o %BINDIR%\qs_f64.o %BINDIR%\qs_mem.o %BINDIR%\qs_str.o @echo off erase %BINDIR%\*.o :: -------------------------------------------------------------------------- :clean endlocal
trigrass2/STM32491_CPLR
Firmware/Common/sys/qpc_5.3.1/ports/arm-cm/vanilla/arm_keil/make_Cortex-M3.bat
bat
lgpl-3.0
8,272
setlocal call clean.bat rem call ..\Tools\SetVsEnv 14 x64 call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 inf2cat /uselocaltime /driver:. /os:XP_X86,Server2003_X86,XP_X64,Server2003_X64,Vista_X86,Server2008_X86,Vista_X64,Server2008_X64,7_X86,7_X64,Server2008R2_X64,8_X86,8_X64,Server8_X64,6_3_X86,6_3_X64,Server6_3_X64,10_X86,10_X64,Server10_X64 mkdir Install copy qemufwcfg.* .\Install\ endlocal
ladipro/kvm-guest-drivers-windows
fwcfg/buildAll.bat
bat
bsd-2-clause
433
@if not defined _echo @echo off setlocal EnableDelayedExpansion :: Set the default arguments set __BuildArch=x64 set __BuildType=Debug set __BuildOS=Windows_NT set __MSBuildBuildArch=x64 :: Define a prefix for most output progress messages that come from this script. That makes :: it easier to see where these are coming from. Note that there is a trailing space here. set "__MsgPrefix=RUNTEST: " :: Default to highest Visual Studio version available :: :: For VS2015 (and prior), only a single instance is allowed to be installed on a box :: and VS140COMNTOOLS is set as a global environment variable by the installer. This :: allows users to locate where the instance of VS2015 is installed. :: :: For VS2017, multiple instances can be installed on the same box SxS and VS150COMNTOOLS :: is no longer set as a global environment variable and is instead only set if the user :: has launched the VS2017 Developer Command Prompt. :: :: Following this logic, we will default to the VS2017 toolset if VS150COMNTOOLS tools is :: set, as this indicates the user is running from the VS2017 Developer Command Prompt and :: is already configured to use that toolset. Otherwise, we will fallback to using the VS2015 :: toolset if it is installed. Finally, we will fail the script if no supported VS instance :: can be found. if defined VisualStudioVersion ( if not defined __VSVersion echo %__MsgPrefix%Detected Visual Studio %VisualStudioVersion% developer command ^prompt environment goto Run ) set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" if exist %_VSWHERE% ( for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -prerelease -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools ) if not exist "%_VSCOMNTOOLS%" set _VSCOMNTOOLS=%VS140COMNTOOLS% if not exist "%_VSCOMNTOOLS%" ( echo %__MsgPrefix%Error: Visual Studio 2015 or 2017 required. echo Please see https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md for build instructions. exit /b 1 ) call "%_VSCOMNTOOLS%\VsDevCmd.bat" :Run set __VSVersion=vs2017 if defined VS140COMNTOOLS set __VSVersion=vs2015 if defined VS150COMNTOOLS set __VSVersion=vs2017 set __ProjectDir=%~dp0 :: remove trailing slash if %__ProjectDir:~-1%==\ set "__ProjectDir=%__ProjectDir:~0,-1%" set "__ProjectFilesDir=%__ProjectDir%" set "__RootBinDir=%__ProjectDir%\..\bin" set "__LogsDir=%__RootBinDir%\Logs" set __Sequential= set __msbuildExtraArgs= set __LongGCTests= set __GCSimulatorTests= set __AgainstPackages= set __JitDisasm= set __IlasmRoundTrip= set __CollectDumps= set __DoCrossgen= set __CrossgenAltJit= :Arg_Loop if "%1" == "" goto ArgsDone if /i "%1" == "/?" goto Usage if /i "%1" == "-?" goto Usage if /i "%1" == "/h" goto Usage if /i "%1" == "-h" goto Usage if /i "%1" == "/help" goto Usage if /i "%1" == "-help" goto Usage if /i "%1" == "x64" (set __BuildArch=x64&set __MSBuildBuildArch=x64&shift&goto Arg_Loop) if /i "%1" == "x86" (set __BuildArch=x86&set __MSBuildBuildArch=x86&shift&goto Arg_Loop) if /i "%1" == "arm" (set __BuildArch=arm&set __MSBuildBuildArch=arm&shift&goto Arg_Loop) if /i "%1" == "arm64" (set __BuildArch=arm64&set __MSBuildBuildArch=arm64&shift&goto Arg_Loop) if /i "%1" == "debug" (set __BuildType=Debug&shift&goto Arg_Loop) if /i "%1" == "release" (set __BuildType=Release&shift&goto Arg_Loop) if /i "%1" == "checked" (set __BuildType=Checked&shift&goto Arg_Loop) if /i "%1" == "vs2015" (set __VSVersion=%1&shift&goto Arg_Loop) if /i "%1" == "vs2017" (set __VSVersion=%1&shift&goto Arg_Loop) if /i "%1" == "TestEnv" (set __TestEnv=%2&shift&shift&goto Arg_Loop) if /i "%1" == "AgainstPackages" (set __AgainstPackages=1&shift&goto Arg_Loop) if /i "%1" == "sequential" (set __Sequential=1&shift&goto Arg_Loop) if /i "%1" == "crossgen" (set __DoCrossgen=1&shift&goto Arg_Loop) if /i "%1" == "crossgenaltjit" (set __DoCrossgen=1&set __CrossgenAltJit=%2&shift&shift&goto Arg_Loop) if /i "%1" == "longgc" (set __LongGCTests=1&shift&goto Arg_Loop) if /i "%1" == "gcsimulator" (set __GCSimulatorTests=1&shift&goto Arg_Loop) if /i "%1" == "jitstress" (set COMPlus_JitStress=%2&shift&shift&goto Arg_Loop) if /i "%1" == "jitstressregs" (set COMPlus_JitStressRegs=%2&shift&shift&goto Arg_Loop) if /i "%1" == "jitminopts" (set COMPlus_JITMinOpts=1&shift&goto Arg_Loop) if /i "%1" == "jitforcerelocs" (set COMPlus_ForceRelocs=1&shift&goto Arg_Loop) if /i "%1" == "jitdisasm" (set __JitDisasm=1&shift&goto Arg_Loop) if /i "%1" == "ilasmroundtrip" (set __IlasmRoundTrip=1&shift&goto Arg_Loop) if /i "%1" == "GenerateLayoutOnly" (set __GenerateLayoutOnly=1&shift&goto Arg_Loop) if /i "%1" == "PerfTests" (set __PerfTests=true&shift&goto Arg_Loop) if /i "%1" == "runcrossgentests" (set RunCrossGen=true&shift&goto Arg_Loop) if /i "%1" == "link" (set DoLink=true&set ILLINK=%2&shift&shift&goto Arg_Loop) if /i "%1" == "tieredcompilation" (set COMPLUS_EXPERIMENTAL_TieredCompilation=1&shift&goto Arg_Loop) if /i "%1" == "gcname" (set COMPlus_GCName=%2&shift&shift&goto Arg_Loop) if /i "%1" == "timeout" (set __TestTimeout=%2&shift&shift&goto Arg_Loop) REM change it to COMPlus_GCStress when we stop using xunit harness if /i "%1" == "gcstresslevel" (set __GCSTRESSLEVEL=%2&set __TestTimeout=1800000&shift&shift&goto Arg_Loop) if /i "%1" == "collectdumps" (set __CollectDumps=true&shift&goto Arg_Loop) if /i not "%1" == "msbuildargs" goto SkipMsbuildArgs :: All the rest of the args will be collected and passed directly to msbuild. :CollectMsbuildArgs shift if "%1"=="" goto ArgsDone set __msbuildExtraArgs=%__msbuildExtraArgs% %1 goto CollectMsbuildArgs :SkipMsbuildArgs set CORE_ROOT=%1 echo %__MsgPrefix%CORE_ROOT is initially set to: "%CORE_ROOT%" shift :ArgsDone :: Set the remaining variables based upon the determined configuration set "__BinDir=%__RootBinDir%\Product\%__BuildOS%.%__BuildArch%.%__BuildType%" set "__TestWorkingDir=%__RootBinDir%\tests\%__BuildOS%.%__BuildArch%.%__BuildType%" :: Default global test environment variables :: REVIEW: are these ever expected to be defined on entry to this script? Why? By whom? :: REVIEW: XunitTestReportDirBase is not used in this script. Who needs to have it set? if not defined XunitTestBinBase set XunitTestBinBase=%__TestWorkingDir% if not defined XunitTestReportDirBase set XunitTestReportDirBase=%XunitTestBinBase%\Reports\ if not exist %__LogsDir% md %__LogsDir% set _msbuildexe= if /i "%__VSVersion%" == "vs2017" ( set "__VSToolsRoot=%VS150COMNTOOLS%" set "__VCToolsRoot=%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build" set _msbuildexe="%VS150COMNTOOLS%\..\..\MSBuild\15.0\Bin\MSBuild.exe" ) else if /i "%__VSVersion%" == "vs2015" ( set "__VSToolsRoot=%VS140COMNTOOLS%" set "__VCToolsRoot=%VS140COMNTOOLS%\..\..\VC" set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" if not exist !_msbuildexe! set _msbuildexe="%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe" ) :: Does VS really exist? if not exist "%__VSToolsRoot%\..\IDE\devenv.exe" goto NoVS if not exist "%__VCToolsRoot%\vcvarsall.bat" goto NoVS if not exist "%__VSToolsRoot%\VsDevCmd.bat" goto NoVS :: Does MSBuild really exist? if not exist %_msbuildexe% echo %__MsgPrefix%Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. && exit /b 1 if not defined VSINSTALLDIR ( echo %__MsgPrefix%Error: runtest.cmd should be run from a Visual Studio Command Prompt. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. exit /b 1 ) :: Note: We've disabled node reuse because it causes file locking issues. :: The issue is that we extend the build with our own targets which :: means that that rebuilding cannot successfully delete the task :: assembly. set __msbuildCommonArgs=/nologo /nodeReuse:false %__msbuildExtraArgs% /p:Platform=%__MSBuildBuildArch% if not defined __Sequential ( set __msbuildCommonArgs=%__msbuildCommonArgs% /maxcpucount ) else ( set __msbuildCommonArgs=%__msbuildCommonArgs% /p:ParallelRun=false ) if defined __AgainstPackages ( set __msbuildCommonArgs=%__msbuildCommonArgs% /p:BuildTestsAgainstPackages=true ) if defined DoLink ( set __msbuildCommonArgs=%__msbuildCommonArgs% /p:RunTestsViaIllink=true ) REM Prepare the Test Drop echo %__MsgPrefix%Removing 'ni' files and 'lock' folders from %__TestWorkingDir% REM Cleans any NI from the last run powershell -NoProfile "Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force" REM Cleans up any lock folder used for synchronization from last run powershell -NoProfile "Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force | where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse" if defined CORE_ROOT goto SkipCoreRootSetup set "CORE_ROOT=%XunitTestBinBase%\Tests\Core_Root" echo %__MsgPrefix%Using Default CORE_ROOT as %CORE_ROOT% echo %__MsgPrefix%Copying Built binaries from %__BinDir% to %CORE_ROOT% if exist "%CORE_ROOT%" rd /s /q "%CORE_ROOT%" md "%CORE_ROOT%" xcopy "%__BinDir%" "%CORE_ROOT%" :SkipCoreRootSetup if defined __TestEnv (if not exist %__TestEnv% echo %__MsgPrefix%Error: Test Environment script %__TestEnv% not found && exit /b 1) REM These log files are created automatically by the test run process. Q: what do they depend on being set? set __TestRunHtmlLog=%__LogsDir%\TestRun_%__BuildOS%__%__BuildArch%__%__BuildType%.html set __TestRunXmlLog=%__LogsDir%\TestRun_%__BuildOS%__%__BuildArch%__%__BuildType%.xml if "%__PerfTests%"=="true" goto RunPerfTests call :ResolveDependecies if defined __DoCrossgen call :PrecompileFX if defined __GenerateLayoutOnly ( REM Delete the unecessary mscorlib.ni file. if exist %CORE_ROOT%\mscorlib.ni.dll del %CORE_ROOT%\mscorlib.ni.dll exit /b 0 ) if not exist %CORE_ROOT%\coreclr.dll ( echo %__MsgPrefix%Error: Ensure you have done a successful build of the Product and %CORE_ROOT% contains runtime binaries. exit /b 1 ) ::Check if the test Binaries are built if not exist %XunitTestBinBase% ( echo %__MsgPrefix%Error: Ensure the Test Binaries are built and are present at %XunitTestBinBase%. echo %__MsgPrefix%Run "buildtest.cmd %__BuildArch% %__BuildType%" to build the tests first. exit /b 1 ) if "%__CollectDumps%"=="true" ( :: Install dumpling set "__DumplingHelperPath=%__ProjectDir%\..\Tools\DumplingHelper.py" python "!__DumplingHelperPath!" install_dumpling :: Create the crash dump folder if necessary set "__CrashDumpFolder=%tmp%\CoreCLRTestCrashDumps" if not exist "!__CrashDumpFolder!" ( mkdir "!__CrashDumpFolder!" ) :: Grab the current time before execution begins. This will be used to determine which crash dumps :: will be uploaded. for /f "delims=" %%a in ('python !__DumplingHelperPath! get_timestamp') do @set __StartTime=%%a ) echo %__MsgPrefix%CORE_ROOT that will be used is: %CORE_ROOT% echo %__MsgPrefix%Starting the test run ... REM Delete the unecessary mscorlib.ni file. if exist %CORE_ROOT%\mscorlib.ni.dll del %CORE_ROOT%\mscorlib.ni.dll set __BuildLogRootName=TestRunResults call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:Runtests=true /clp:showcommandline set __errorlevel=%errorlevel% if "%__CollectDumps%"=="true" ( python "%__DumplingHelperPath%" collect_dump %errorlevel% "%__CrashDumpFolder%" %__StartTime% "CoreCLR_Tests" ) if %__errorlevel% GEQ 1 ( echo Test Run failed. Refer to the following: echo Html report: %__TestRunHtmlLog% exit /b 1 ) if not defined __PerfTests goto :SkipRunPerfTests :RunPerfTests echo %__MsgPrefix%CORE_ROOT that will be used is: %CORE_ROOT% echo %__MsgPrefix%Starting the test run ... set __BuildLogRootName=PerfTestRunResults echo %__MsgPrefix%Running perf tests call :msbuild "%__ProjectFilesDir%\runtest.proj" /t:RunPerfTests /clp:showcommandline if errorlevel 1 ( echo %__MsgPrefix%Test Run failed. Refer to the following: echo Html report: %__TestRunHtmlLog% ) :SkipRunPerfTests REM ========================================================================================= REM === REM === All tests complete! REM === REM ========================================================================================= echo %__MsgPrefix%Test run successful. Refer to the log files for details: echo %__TestRunHtmlLog% echo %__TestRunXmlLog% exit /b 0 REM ========================================================================================= REM === REM === Helper routines REM === REM ========================================================================================= REM Compile the managed assemblies in Core_ROOT before running the tests :PrecompileAssembly if defined __JitDisasm goto :jitdisasm REM Skip mscorlib since it is already precompiled. if /I "%3" == "mscorlib.dll" exit /b 0 if /I "%3" == "mscorlib.ni.dll" exit /b 0 "%1\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" "%2" >nul 2>nul set /a __exitCode = %errorlevel% if "%__exitCode%" == "-2146230517" ( echo %2 is not a managed assembly. exit /b 0 ) if %__exitCode% neq 0 ( echo Unable to precompile %2 exit /b 0 ) echo %__MsgPrefix%Successfully precompiled %2 exit /b 0 :jitdisasm if /I "%3" == "mscorlib.ni.dll" exit /b 0 echo "%1\corerun" "%1\jit-dasm.dll" --crossgen %1\crossgen.exe --platform %CORE_ROOT% --output %__TestWorkingDir%\dasm "%2" "%1\corerun" "%1\jit-dasm.dll" --crossgen %1\crossgen.exe --platform %CORE_ROOT% --output %__TestWorkingDir%\dasm "%2" set /a __exitCode = %errorlevel% if "%__exitCode%" == "-2146230517" ( echo %2 is not a managed assembly. exit /b 0 ) if %__exitCode% neq 0 ( echo Unable to precompile %2 exit /b 0 ) echo %__MsgPrefix%Successfully precompiled and generated dasm for %2 exit /b 0 :PrecompileFX setlocal if defined __CrossgenAltJit ( REM Set altjit flags for the crossgen run. Note that this entire crossgen section is within a setlocal/endlocal scope, REM so we don't need to save or unset these afterwards. echo %__MsgPrefix%Setting altjit environment variables for %__CrossgenAltJit%. set COMPlus_AltJit=* set COMPlus_AltJitNgen=* set COMPlus_AltJitName=%__CrossgenAltJit% set COMPlus_AltJitAssertOnNYI=1 set COMPlus_NoGuiOnAssert=1 set COMPlus_ContinueOnAssert=0 ) for %%F in (%CORE_ROOT%\*.dll) do call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nF%%~xF endlocal exit /b 0 :msbuild @REM Subroutine to invoke msbuild. All arguments are passed to msbuild. The first argument should be the @REM .proj file to invoke. @REM @REM On entry, __BuildLogRootName must be set to a file name prefix for the generated log file. @REM All the "standard" environment variables that aren't expected to change per invocation must also be set, @REM like __msbuildCommonArgs. @REM @REM The build log files will be overwritten, not appended to. echo %__MsgPrefix%Invoking msbuild set "__BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log" set "__BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn" set "__BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err" set __msbuildLogArgs=^ /fileloggerparameters:Verbosity=normal;LogFile="%__BuildLog%";Append ^ /fileloggerparameters1:WarningsOnly;LogFile="%__BuildWrn%" ^ /fileloggerparameters2:ErrorsOnly;LogFile="%__BuildErr%" ^ /consoleloggerparameters:Summary ^ /verbosity:minimal set __msbuildArgs=%* %__msbuildCommonArgs% %__msbuildLogArgs% @REM The next line will overwrite the existing log file, if any. echo %__MsgPrefix%%_msbuildexe% %__msbuildArgs% echo Invoking: %_msbuildexe% %__msbuildArgs% > "%__BuildLog%" %_msbuildexe% %__msbuildArgs% if errorlevel 1 ( echo %__MsgPrefix%Error: msbuild failed. Refer to the log files for details: echo %__BuildLog% echo %__BuildWrn% echo %__BuildErr% exit /b 1 ) exit /b 0 :ResolveDependecies: if "%CORE_ROOT%" == "" ( echo %__MsgPrefix%Error: Ensure you have done a successful build of the Product and Run - runtest BuildArch BuildType {path to product binaries}. exit /b 1 ) :: Long GC tests take about 10 minutes per test on average, so :: they often bump up against the default 10 minute timeout. :: 20 minutes is more than enough time for a test to complete successfully. if defined __LongGCTests ( echo %__MsgPrefix%Running Long GC tests, extending timeout to 20 minutes set __TestTimeout=1200000 set RunningLongGCTests=1 ) :: GCSimulator tests can take up to an hour to complete. They are run twice a week in the :: CI, so it's fine if they take a long time. if defined __GCSimulatorTests ( echo %__MsgPrefix%Running GCSimulator tests, extending timeout to one hour set __TestTimeout=3600000 set RunningGCSimulatorTests=1 ) if defined __JitDisasm ( if defined __DoCrossgen ( echo %__MsgPrefix%Running jit disasm on framework and test assemblies ) if not defined __DoCrossgen ( echo %__MsgPrefix%Running jit disasm on test assemblies only ) set RunningJitDisasm=1 ) if defined __IlasmRoundTrip ( echo %__MsgPrefix%Running Ilasm round trip set RunningIlasmRoundTrip=1 ) set __BuildLogRootName=Tests_GenerateRuntimeLayout call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:GenerateRuntimeLayout=true if errorlevel 1 ( echo %__MsgPrefix%Test Dependency Resolution Failed exit /b 1 ) echo %__MsgPrefix%Created the runtime layout with all dependencies in %CORE_ROOT% exit /b 0 :Usage @REM NOTE: The caret character is used to escape meta-characters known to the CMD shell. This character does @REM NOTE: not appear in output. Thus, while it might look like in lines below that the "-" are not aligned, @REM NOTE: they are in the output (and please keep them aligned). echo. echo Usage: echo %0 [options] [^<CORE_ROOT^>] echo. echo where: echo. echo./? -? /h -h /help -help - View this message. echo ^<build_architecture^> - Specifies build architecture: x64, x86, arm, or arm64 ^(default: x64^). echo ^<build_type^> - Specifies build type: Debug, Release, or Checked ^(default: Debug^). echo VSVersion ^<vs_version^> - VS2015 or VS2017 ^(default: VS2017^). echo TestEnv ^<test_env_script^> - Run a custom script before every test to set custom test environment settings. echo AgainstPackages - This indicates that we are running tests that were built against packages. echo GenerateLayoutOnly - If specified will not run the tests and will only create the Runtime Dependency Layout echo sequential - Run tests sequentially (no parallelism). echo crossgen - Precompile ^(crossgen^) the managed assemblies in CORE_ROOT before running the tests. echo crossgenaltjit ^<altjit^> - Precompile ^(crossgen^) the managed assemblies in CORE_ROOT before running the tests, using the given altjit. echo link ^<ILlink^> - Runs the tests after linking via the IL linker ^<ILlink^>. echo RunCrossgenTests - Runs ReadytoRun tests echo jitstress ^<n^> - Runs the tests with COMPlus_JitStress=n echo jitstressregs ^<n^> - Runs the tests with COMPlus_JitStressRegs=n echo jitminopts - Runs the tests with COMPlus_JITMinOpts=1 echo jitforcerelocs - Runs the tests with COMPlus_ForceRelocs=1 echo jitdisasm - Runs jit-dasm on the tests echo ilasmroundtrip - Runs ilasm round trip on the tests echo longgc - Run the long-running GC tests echo gcsimulator - Run the GC Simulator tests echo gcstresslevel ^<n^> - Runs the tests with COMPlus_GCStress=n. n=0 means no GC Stress. Otherwise, n is a bitmask of the following: echo 1: GC on all allocations and 'easy' places echo 2: GC on transitions to preemptive GC echo 4: GC on every allowable JITed instruction echo 8: GC on every allowable NGEN instruction echo 16: GC only on a unique stack trace echo tieredcompilation - Run the tests with COMPlus_EXPERIMENTAL_TieredCompilation=1 echo gcname ^<name^> - Runs the tests with COMPlus_GCName=name echo timeout ^<n^> - Sets the per-test timeout in milliseconds ^(default is 10 minutes = 10 * 60 * 1000 = 600000^). echo Note: some options override this ^(gcstresslevel, longgc, gcsimulator^). echo msbuildargs ^<args...^> - Pass all subsequent args directly to msbuild invocations. echo ^<CORE_ROOT^> - Path to the runtime to test (if specified). echo. echo Note that arguments are not case-sensitive. echo. echo Examples: echo %0 x86 checked echo %0 x64 release GenerateLayoutOnly exit /b 1 :NoVS echo Visual Studio 2015 or 2017 (Community is free) is a prerequisite to build this repository. echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1
yizhang82/coreclr
tests/runtest.cmd
bat
mit
21,678
cmd_arch/arm/vfp/vfp.o := arm-linux-gnueabi-ld -EL --no-warn-mismatch -r -o arch/arm/vfp/vfp.o arch/arm/vfp/vfpmodule.o arch/arm/vfp/entry.o arch/arm/vfp/vfphw.o arch/arm/vfp/vfpsingle.o arch/arm/vfp/vfpdouble.o
jpsminix/minix5
arch/arm/vfp/.vfp.o.cmd
bat
gpl-2.0
216
REM @ECHO OFF SET TOOLS=..\..\tools SET NODE=%TOOLS%\node.exe SET MINIFY=%TOOLS%\minifier\minify.js SET ENYO=..\.. SET TARGET=.\build %NODE% %MINIFY% package.js -enyo %ENYO% -output enyo -no-alias mkdir %TARGET% move /Y enyo.js %TARGET% move /Y enyo.css %TARGET% PAUSE
rwaldron/enyo
source/minify/minify.bat
bat
apache-2.0
273
SET CSCPATH=%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319 %CSCPATH%\csc /reference:bin/Newtonsoft.Json.dll /target:library /out:bin/Com.Aspose.Barcode.dll /recurse:src\*.cs /doc:bin/Com.Aspose.Barcode.xml
farooqsheikhpk/Aspose.BarCode-for-Cloud
SDKs/Aspose.BarCode-Cloud-SDK-for-.NET/compile.bat
bat
mit
207
@echo off echo "Started..." mkdir app\src\main\jniLibs\armeabi DEL /F /Q app\src\main\jniLibs\armeabi\libtox4j.so echo "Removed old version: libtox4j.so" echo "Downloading latest version: libtox4j.so" powershell -Command "(New-Object Net.WebClient).DownloadFile('https://build.tox.chat/job/tox4j_build_android_arm_release/lastSuccessfulBuild/artifact/artifacts/armeabi/libtox4j.so', 'app\src\main\jniLibs\armeabi\libtox4j.so')" echo "Downloaded." mkdir app\libs DEL /F /Q app\libs\tox4j_2.11.jar echo "Removed old version: tox4j_2.11.jar" echo "Downloading latest version: tox4j_2.11.jar" powershell -Command "(New-Object Net.WebClient).DownloadFile('https://build.tox.chat/job/tox4j_build_android_arm_release/lastSuccessfulBuild/artifact/artifacts/tox4j_2.11-0.1-SNAPSHOT.jar', 'app\libs\tox4j_2.11.jar')" echo "Downloaded." DEL /F /Q app\libs\protobuf-java-2.6.1.jar echo "Removed old version: protobuf-java-2.6.1.jar" echo "Downloading latest version: protobuf-java-2.6.1.jar" powershell -Command "(New-Object Net.WebClient).DownloadFile('https://build.tox.chat/job/tox4j_build_android_arm_release/lastSuccessfulBuild/artifact/artifacts/protobuf.jar', 'app\libs\protobuf-java-2.6.1.jar')" echo "Downloaded." echo "...Finished!" @echo ON
ak-67/Antox
download-dependencies.bat
bat
gpl-3.0
1,240
@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. @echo off if "%OS%" == "Windows_NT" setlocal if NOT DEFINED CASSANDRA_HOME set CASSANDRA_HOME=%~dp0.. if NOT DEFINED JAVA_HOME goto err REM Ensure that any user defined CLASSPATH variables are not used on startup set CLASSPATH=%CASSANDRA_HOME%\conf REM For each jar in the CASSANDRA_HOME lib directory call append to build the CLASSPATH variable. rem for %%i in (%CASSANDRA_HOME%\lib*.jar) do call :append %%~fi for %%i in ("%CASSANDRA_HOME%\lib\*.jar") do call :append "%%i" goto okClasspath :append set CLASSPATH=%CLASSPATH%;%1 goto :eof :okClasspath REM Include the build\classes\main directory so it works in development set CASSANDRA_CLASSPATH=%CLASSPATH%;%CASSANDRA_HOME%\build\classes\main;%CASSANDRA_HOME%\build\classes\thrift goto runNodeTool :runNodeTool echo Starting NodeTool "%JAVA_HOME%\bin\java" -cp "%CASSANDRA_CLASSPATH%" -Dlog4j.configuration=log4j-tools.properties org.apache.cassandra.tools.NodeCmd %* goto finally :err echo The JAVA_HOME environment variable must be set to run this program! pause :finally ENDLOCAL
mrunalruikar/RESTandra
bin/nodetool.bat
bat
apache-2.0
1,920
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 cl -DUNICODE -D_UNICODE /EHsc /Zi /O1 /LD attach.cpp /link /DEBUG /OPT:REF /OPT:ICF /out:attach_x86.dll copy attach_x86.dll ..\attach_x86.dll /Y copy attach_x86.pdb ..\attach_x86.pdb /Y call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64 cl -DUNICODE -D_UNICODE /EHsc /Zi /O1 /W3 /LD attach.cpp /link /DEBUG /OPT:REF /OPT:ICF /out:attach_amd64.dll copy attach_amd64.dll ..\attach_amd64.dll /Y copy attach_amd64.pdb ..\attach_amd64.pdb /Y del *.lib del *.obj del *.pdb del *.dll del *.exp
jwren/intellij-community
python/helpers/pydev/pydevd_attach_to_process/windows/compile_windows.bat
bat
apache-2.0
605
@echo off SETLOCAL call "%~dp0..\bin\environment.bat" %0 %* rubyw -rubygems "%MCOLLECTIVE_DIR%\bin\mcollectived" %*
richardc/marionette-collective
ext/windows/daemon.bat
bat
apache-2.0
124
REM %1 number of booked cores SETLOCAL ENABLEdelayedExpansion SET /a retour=0 SET /a TEST_RES=0 if NOT "%variables_PA_NODESNUMBER%" == "%1" ( echo "Error : number of booked host is not $1" SET /a TEST_RES=1 ) if NOT EXIST %variables_PA_NODESFILE% ( echo "Error cannot read 'PA_NODEFILE'" SET /a TEST_RES=1 ) exit %TEST_RES%
marcocast/scheduling
scheduler/scheduler-server/src/test/resources/functionaltests/executables/test_multiple_hosts_request.bat
bat
agpl-3.0
332
cscript vbac.wsf decombine
knjname/my-xls-vba-functions
decombine.bat
bat
mit
28
@echo off if "%1" == "" goto HELP set "IN=%1" set "EXT=%~x1" set "LOCATE=%~dp1" set "OUT1=%~dpn1.py" set "OUT2=%~dpn1_rc.py" :: echo %IN% :: echo %EXT% :: echo %OUT1% :: echo %OUT2% :: goto END if /i "%EXT%"==".ui" goto UIC if /i "%EXT%"==".qrc" goto QRC goto END :UIC pyuic5 "%IN%" -o "%OUT1%" goto DONE :QRC cd /d "%LOCATE%" pyrcc5 "%IN%" -o "%OUT2%" goto DONE :HELP echo Usage: %0 ^[*.ui^|*.qrc^] goto END :DONE if not "%ERRORLEVEL%" == "0" pause :END echo.
skywind3000/vim
tools/script/pyqt5_compile.cmd
bat
mit
514
@echo off title SERVER echo Ignore the first java error messages!! java -Xmx1024M -XX:MaxPermSize=128M -jar server.jar -o false PAUSE
Hoog3059/MC-World-To-Server
Bin/run.bat
bat
mit
135
@echo off echo TEST A echo TEST B echo TEST C echo TEST D echo TEST E
dotJEM/json-storage
ci/test.bat
bat
mit
69
@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\cuteshop.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\cuteshop.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
uranusjr/cuteshop
docs/make.bat
bat
mit
6,705
@ECHO OFF SET "tmpdir=./tmp" ECHO =========================================================================== ECHO Deleting temporary files... CD>NUL %tmpdir% 2>&1 IF %ERRORLEVEL% NEQ 0 ( ECHO Directory not found. Abort... ) ELSE ( DEL /Q *.* CD .. ) ECHO =========================================================================== ECHO.
bxlambert/thesis-template
delete.bat
bat
mit
352
mkdir vstudio2010 cd vstudio2010 cmake .. -G"Visual Studio 10 Win64" cd .. PAUSE
abreheret/circular_buffer
build_studio2010x64.bat
bat
mit
80
@echo off set SRC="C:\vagrant\install\opt" set DEST="C:\opt\" set NSSM="C:\opt\nssm\bin\nssm.exe" set ETCD="C:\opt\etcd\bin\etcd.exe" set SERVICE_NAME=etcd Service set SERVICE_DESCRIPTION=etcd Service for Windows set SERVICE_LOGFILE="C:\opt\etcd\log\etcd.log" set SERVICE_PARAMETERS="-config C:\opt\etcd\etc\etcd.conf -trace=*" :rem ---DO NOT EDIT BEYOND--- echo. echo Script: provision-etcd.bat startet... echo. if not exist "%DEST%" ( echo. echo Copy files to %DEST% echo. xcopy /Y /E "%SRC%" "%DEST%" ) echo. echo [SC] Stopping service "%SERVICE_NAME%" sc stop "%SERVICE_NAME%" >NUL 2>NUL echo [NSSM] Trying to remove possibly pre-existing service "%SERVICE_NAME%"... "%NSSM%" remove "%SERVICE_NAME%" confirm > NUL 2>NUL "%NSSM%" install "%SERVICE_NAME%" "%ETCD%" "%NSSM%" set "%SERVICE_NAME%" AppParameters "%SERVICE_PARAMETERS%" "%NSSM%" set "%SERVICE_NAME%" AppStdout "%SERVICE_LOGFILE%" "%NSSM%" set "%SERVICE_NAME%" AppStderr "%SERVICE_LOGFILE%" "%NSSM%" set "%SERVICE_NAME%" Description "%SERVICE_DESCRIPTION%" if not errorlevel 1 ( :rem echo. :rem echo [SC] Configuring Service to allow access to desktop :rem echo. :rem sc config "%SERVICE_NAME%" type= own type= interact echo. echo [SC] Starting ETCD Service echo. sc start "%SERVICE_NAME%" ) echo [NETSH] Open firewall ports 4001,7001 netsh advfirewall firewall add rule name="etcd Service Port 4001" dir=in action=allow protocol=TCP localport=4001 netsh advfirewall firewall add rule name="etcd Service Port 7001" dir=in action=allow protocol=TCP localport=7001 echo. echo etcd Service should be available at: echo http://127.0.0.1:4001/version echo http://%COMPUTERNAME%:4001/version echo.
DieterReuter/win-etcd-cluster
scripts/provision-etcd.bat
bat
mit
1,698
SET FLASK_APP=nexuralnetweb SET FLASK_DEBUG=true pip install -e . flask run
nitnelav1101/nexuralnetwork-web
nexuralnetweb/runFlaskServer.bat
bat
mit
76
@echo off call buildit.cmd call uploadit.cmd plink -P 22 root@192.168.0.66 -pw "" "/media/internal/simple"
error454/webOSMark
webOSMark/runit.cmd
bat
mit
108
@echo off REM Setup for compiling with Open Watcom C/C++ 1.0 in 32 bit mode if .%CHECKED%==.1 goto checked_build SET LIB=%SCITECH_LIB%\LIB\RELEASE\RTT32\OW10;%RTOS32_PATH%\LIBMSVC;%OW10_PATH%\LIB386\NT;%OW10_PATH%\LIB386;. echo Release build enabled. goto setvars :checked_build SET LIB=%SCITECH_LIB%\LIB\DEBUG\RTT32\OW10;%RTOS32_PATH%\LIBMSVC;%OW10_PATH%\LIB386\NT;%OW10_PATH%\LIB386;. echo Checked debug build enabled. goto setvars :setvars SET EDPATH=%OW10_PATH%\EDDAT SET C_INCLUDE=%RTOS32_PATH%\INCLUDE;%OW10_PATH%\H;%OW10_PATH%\H\NT SET INCLUDE=INCLUDE;%SCITECH%\INCLUDE;%PRIVATE%\INCLUDE;%C_INCLUDE% SET WATCOM=%OW10_PATH% SET MAKESTARTUP=%SCITECH%\MAKEDEFS\WC32.MK call clrvars.bat SET USE_RTTARGET=1 SET USE_RTT32DLL=1 SET USE_RTFILES32= SET USE_RTKERNEL32= SET WC_LIBBASE=ow10 IF .%OS%==.Windows_NT goto Win32_path IF NOT .%WINDIR%==. goto Win32_path PATH %SCITECH_BIN%;%RTOS32_PATH%\BIN;%OW10_PATH%\BINW;%DEFPATH%%WC_CD_PATH% goto path_set :Win32_path PATH %SCITECH_BIN%;%RTOS32_PATH%\BIN;%OW10_PATH%\BINNT;%OW10_PATH%\BINW;%DEFPATH%%WC_CD_PATH% :path_set REM: Enable Win32 SDK if desired (sdk on command line) if NOT .%1%==.sdk goto done call win32sdk.bat :done echo Open Watcom C/C++ 1.0 RTTarget-32 compilation environment set up.
OS2World/DEV-UTIL-SNAP
bin-win32/ow10-rtt.bat
bat
gpl-2.0
1,250
cmd_fs/nfsd/built-in.o := rm -f fs/nfsd/built-in.o; arm-none-linux-gnueabi-ar rcs fs/nfsd/built-in.o
srinugnt2000/linux-2.6.37
fs/nfsd/.built-in.o.cmd
bat
gpl-2.0
102
del /q /s *.pyc del /q /s *.bak del /q /s *.o del /q /s *.suo del /q /s *.ncb del /q /s *.pdb del /q /s *.ilk del /q /s *.idb del /q /s *.obj del /q /s *.lib del /q /s *.res del /q /s *.exp del /q /s BuildLog.htm rd /q /s Debug rd /q /s Release del /q burglish.backup*.7z 7z\7za a -t7z burglish.backup%1.7z COPYING LICENSE bgl_web/AUTHORS bgl_web/*.htm bgl_web/*.php bgl_web/*.csproj bgl_web/css bgl_web/js/*.js bgl_web/img bgl_web/www/*.bat bgl_web/www/cache.* bgl_web/www/gpages/*.bat bgl_web/doc desktop build asp UPX 7z *.bat nsis/*.bat nsis/*.nsi nsis/*.url nsis/*.rtf nsis/images/*.7z ext -x!.svn -x!*.exe -x!*.suo -x!*.ncb -x!*.user -x!*.sln -x!*.o -x!*.obj -x!*.bak -x!*.aps -x!Debug -x!Release -x!*backup* -r -mx9 for /f "tokens=1-5 delims=/ " %%d in ("%date%") do rename burglish.backup.7z burglish.backup.%%g%%e%%f.7z
thetnswe/zawgyi
burglish/backup.burglish.bat
bat
gpl-2.0
853
cmd_net/sched/em_nbyte.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/sched/em_nbyte.ko net/sched/em_nbyte.o net/sched/em_nbyte.mod.o
avareldalton85/rpi2-linux-rt
net/sched/.em_nbyte.ko.cmd
bat
gpl-2.0
243
cmd_drivers/misc/eeprom/built-in.o := rm -f drivers/misc/eeprom/built-in.o; /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ar rcs drivers/misc/eeprom/built-in.o
yohanes/Acer-BeTouch-E130-Linux-Kernel
drivers/misc/eeprom/.built-in.o.cmd
bat
gpl-2.0
158
cmd_lib/decompress.o := arm-eabi-gcc -Wp,-MD,lib/.decompress.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/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 -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(decompress)" -D"KBUILD_MODNAME=KBUILD_STR(decompress)" -D"DEBUG_HASH=17" -D"DEBUG_HASH2=2" -c -o lib/decompress.o lib/decompress.c deps_lib/decompress.o := \ lib/decompress.c \ $(wildcard include/config/decompress/gzip.h) \ $(wildcard include/config/decompress/bzip2.h) \ $(wildcard include/config/decompress/lzma.h) \ $(wildcard include/config/decompress/lzo.h) \ include/linux/decompress/generic.h \ include/linux/decompress/bunzip2.h \ include/linux/decompress/unlzma.h \ include/linux/decompress/inflate.h \ include/linux/decompress/unlzo.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /data/repos/kernels/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /data/repos/kernels/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/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /data/repos/kernels/arch/arm/include/asm/posix_types.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \ /data/repos/kernels/arch/arm/include/asm/string.h \ lib/decompress.o: $(deps_lib/decompress.o) $(deps_lib/decompress.o):
bigbiff/i717-GB-Kernel
lib/.decompress.o.cmd
bat
gpl-2.0
2,667
cmd_drivers/hid/hid-logitech.o := /home/jashaswee/vibex2/X2_ROW_L_OpenSource/arm-linux-androideabi-4.9/bin/arm-linux-androideabi-ld -EL -r -o drivers/hid/hid-logitech.o drivers/hid/hid-lg.o
jashasweejena/VibeKernel
drivers/hid/.hid-logitech.o.cmd
bat
gpl-2.0
194
cmd_sound/pci/cs5535audio/built-in.o := rm -f sound/pci/cs5535audio/built-in.o; /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs sound/pci/cs5535audio/built-in.o
sktjdgns1189/android_kernel_iriver_MX100
sound/pci/cs5535audio/.built-in.o.cmd
bat
gpl-2.0
173