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 TITLE MinGW Compiler Suite Invocation set src=%CD%\..\..\nragev20 set obj=%CD%\N-Rage if not exist %obj% ( mkdir %obj% ) set MinGW=C:\MinGW REM set MinGW=C:\msys64\mingw64\x86_64-w64-mingw32\.. set FLAGS_x86=^ -I%src%\..\3rdParty\directx\include^ -Wno-write-strings^ -S^ -masm=intel^ -march=native^ -Os set C_FLAGS=%FLAGS_x86% cd %MinGW%\bin set CC=%MinGW%\bin\g++.exe set AS=%MinGW%\bin\as.exe ECHO Compiling N-Rage plugin sources... %CC% -o %obj%\NRagePluginV2.asm %src%\NRagePluginV2.cpp %C_FLAGS% %CC% -o %obj%\Interface.asm %src%\Interface.cpp %C_FLAGS% %CC% -o %obj%\FileAccess.asm %src%\FileAccess.cpp %C_FLAGS% %CC% -o %obj%\PakIO.asm %src%\PakIO.cpp %C_FLAGS% %CC% -o %obj%\GBCart.asm %src%\GBCart.cpp %C_FLAGS% %CC% -o %obj%\International.asm %src%\International.cpp %C_FLAGS% %CC% -o %obj%\DirectInput.asm %src%\DirectInput.cpp %C_FLAGS% %CC% -o %obj%\XInputController.asm %src%\XInputController.cpp %C_FLAGS% ECHO Assembling N-Rage sources... %AS% -o %obj%\NRagePluginV2.o %obj%\NRagePluginV2.asm %AS% -o %obj%\Interface.o %obj%\Interface.asm %AS% -o %obj%\FileAccess.o %obj%\FileAccess.asm %AS% -o %obj%\PakIO.o %obj%\PakIO.asm %AS% -o %obj%\GBCart.o %obj%\GBCart.asm %AS% -o %obj%\International.o %obj%\International.asm %AS% -o %obj%\DirectInput.o %obj%\DirectInput.asm %AS% -o %obj%\XInputController.o %obj%\XInputController.asm ECHO. set OBJ_LIST=^ %obj%\XInputController.o^ %obj%\DirectInput.o^ %obj%\International.o^ %obj%\GBCart.o^ %obj%\PakIO.o^ %obj%\FileAccess.o^ %obj%\Interface.o^ %obj%\NRagePluginV2.o^ -ldinput8^ -loleaut32^ -lole32^ -luuid^ -lcomctl32^ -mwindows^ -lcomdlg32^ -lgdi32^ %obj%\NRagePluginV2.res ECHO Linking N-Rage objects... %MinGW%\bin\windres.exe -o %obj%\NRagePluginV2.res -i %src%\NRagePluginV2.rc -O coff %MinGW%\bin\g++.exe -o %obj%\PJ64_NRage.dll %OBJ_LIST% -shared -shared-libgcc PAUSE
Frank-74/project64
Source/Script/MinGW/nrage.cmd
bat
gpl-2.0
2,070
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\aminator.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\aminator.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
bmoyles/aminator
docs/make.bat
bat
apache-2.0
5,100
@ECHO OFF REM Command file for Sphinx documentation set SPHINXBUILD=sphinx-build set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. 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. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter 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 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp 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 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\LTLMoP.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\LTLMoP.ghc goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck 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 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
jadecastro/LTLMoP
doc/make.bat
bat
gpl-3.0
3,071
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\optipng-bin\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\optipng-bin\cli.js" %* )
Cyril0104/Musis
node_modules/grunt-contrib-imagemin/node_modules/imagemin/node_modules/imagemin-optipng/node_modules/.bin/optipng.cmd
bat
mit
184
@echo off set propName=prop.file.%1.number.%2 echo %propName%=%propName% >>file%1.properties echo String s%1_%2 = "%propName%";
siosio/intellij-community
plugins/java-i18n/testData/performance/resolveManyLiterals/src/handleProp.cmd
bat
apache-2.0
128
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Requests.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Requests.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
Eddy0402/Environment
vim/ycmd/third_party/requests/docs/make.bat
bat
gpl-3.0
5,100
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. 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\hanabi_simulator.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\hanabi_simulator.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
ounim/hanabi
docs/make.bat
bat
mit
6,479
pip3 install scipy tbapy
TrinityTrihawks/BluePython
make.cmd
bat
mit
25
@echo on :: Assumes robocopy and nuget.exe both on the path SET DIR=%~dp0% SET DESTDIR=%DIR%bin IF EXIST %DESTDIR% goto deletebin goto prepare :deletebin rmdir /s /q %DESTDIR% if %ERRORLEVEL% NEQ 0 goto errors :prepare robocopy %DIR% %DESTDIR%\tools /E /B /NP /R:0 /W:0 /NJH /NJS /NS /NFL /NDL /XF ".git*" "Nuget*" "*.nupkg" /XD "%DIR%nuget" "%DIR%.git" "%DIR%bin" robocopy %DIR%nuget %DESTDIR% /E /B /NP /R:0 /W:0 /NJH /NJS /NS /NFL /NDL :build nuget pack %DESTDIR%\psake.nuspec if %ERRORLEVEL% NEQ 0 goto errors goto :eof :errors EXIT /B %ERRORLEVEL%
Eskat0n/NArms
tools/psake/NuGetPackageBuilder.cmd
bat
mit
562
meteor --settings settings.json
rassweiler/kr-display
Start-Dev.bat
bat
mit
31
setlocal set classpath=.\WEB-INF\classes;%classpath% java larflast.tools.Convert %1 %2 %3 %4 %5 endlocal
TeamSPoon/logicmoo_workspace
packs_sys/logicmoo_cg/test/cgworld/convert.bat
bat
mit
104
start jekyll s
George5814/George5814.github.io
start-jekyll-server.bat
bat
mit
14
@echo off set jdk=C:\Program Files (x86)\Java\jdk1.7.0_45\bin set java=C:\Program Files (x86)\Java\jre7\bin SET CLASSPATH=.;D:\bin\Javalib\antlr-3.5.1-complete-no-st3.jar;%CLASSPATH% @echo on "%jdk%\javac" %*
awerlang/jsmin
javac.bat
bat
mit
211
SET FORMS_PATH=K:\kassandra\migration\batch\00addon "C:\Oracle\FormsAPI_v3_64bit\FapiMaster.exe" /SCRIPT /API=12c /RUN="K:\kassandra\migration\batch\skripte\mig_Win2Unix_one.p2s"
Doag/Forms
demos/demo0009/run_win2unix.cmd
bat
mit
180
@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\python-raumfeld.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\python-raumfeld.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
tfeldmann/python-raumfeld
docs/make.bat
bat
mit
6,719
call DeletePdbFiles.cmd ..\Output\NET45\Examples call DeletePdbFiles.cmd ..\Output\NET40\Examples call DeletePdbFiles.cmd ..\Output\SL5\Examples call DeletePdbFiles.cmd ..\Output\SL4\Examples call DeletePdbFiles.cmd ..\Output\NetCore45\Examples call DeletePdbFiles.cmd ..\Output\Tools
luiseduardohdbackup/oxyplot-v2
Build/DeleteExamplePdbFiles.cmd
bat
mit
289
python -m emadb stop
astrorafael/emadb
stop.bat
bat
mit
22
cmd_drivers/i2c/muxes/built-in.o := /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/i2c/muxes/built-in.o drivers/i2c/muxes/pca954x.o
asopov/linux-tpt-2.6.39
drivers/i2c/muxes/.built-in.o.cmd
bat
gpl-2.0
190
cmd_arch/arm/lib/csumpartial.o := arm-eabi-gcc -Wp,-MD,arch/arm/lib/.csumpartial.o.d -nostdinc -isystem /home/nonamer/android-toolchain-eabi-4.5/bin/../lib/gcc/arm-eabi/4.5.4/include -I/home/nonamer/bravo_2.6.35_gb-mr/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 -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -mfpu=neon -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -ffast-math -fsingle-precision-constant -pipe -c -o arch/arm/lib/csumpartial.o arch/arm/lib/csumpartial.S deps_arch/arm/lib/csumpartial.o := \ arch/arm/lib/csumpartial.S \ /home/nonamer/bravo_2.6.35_gb-mr/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/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/linkage.h \ /home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/hwcap.h \ arch/arm/lib/csumpartial.o: $(deps_arch/arm/lib/csumpartial.o) $(deps_arch/arm/lib/csumpartial.o):
NooNameR/Sense4.0-kernel
arch/arm/lib/.csumpartial.o.cmd
bat
gpl-2.0
1,776
cmd_sound/pci/pcxhr/built-in.o := rm -f sound/pci/pcxhr/built-in.o; /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ar rcs sound/pci/pcxhr/built-in.o
paxchristos/R800x-2.3.3-Kernel
sound/pci/pcxhr/.built-in.o.cmd
bat
gpl-2.0
199
cmd_drivers/usb/storage/usb-storage.o := arm-linux-androideabi-ld -EL -r -o drivers/usb/storage/usb-storage.o drivers/usb/storage/scsiglue.o drivers/usb/storage/protocol.o drivers/usb/storage/transport.o drivers/usb/storage/usb.o drivers/usb/storage/initializers.o drivers/usb/storage/sierra_ms.o drivers/usb/storage/option_ms.o drivers/usb/storage/usual-tables.o
tenorntex/lhbalanced
drivers/usb/storage/.usb-storage.o.cmd
bat
gpl-2.0
368
@echo off rem $Id: run.bat 1606 2004-05-17 10:56:18Z leo $ %JAVA_HOME%\bin\java -Xmx128m -server -jar lib\snipsnap.jar pause
mikegr/snipsnap
run.bat
bat
gpl-2.0
125
mysql -u root -p < Delete.sql
SOSIEISTY/SOSIE
Base de données/Delete_database.bat
bat
gpl-2.0
29
cmd_net/xfrm/built-in.o := /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ld -EL -r -o net/xfrm/built-in.o net/xfrm/xfrm_policy.o net/xfrm/xfrm_state.o net/xfrm/xfrm_hash.o net/xfrm/xfrm_input.o net/xfrm/xfrm_output.o net/xfrm/xfrm_algo.o net/xfrm/xfrm_sysctl.o
spacecaker/Stock_spacecaker_kernel
net/xfrm/.built-in.o.cmd
bat
gpl-2.0
305
cmd_scripts/kconfig/lxdialog/util.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.util.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/util.o scripts/kconfig/lxdialog/util.c source_scripts/kconfig/lxdialog/util.o := scripts/kconfig/lxdialog/util.c deps_scripts/kconfig/lxdialog/util.o := \ $(wildcard include/config/color.h) \ /usr/include/stdc-predef.h \ /usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.0/include/stdarg.h \ scripts/kconfig/lxdialog/dialog.h \ /usr/include/sys/types.h \ /usr/include/features.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.0/include/stddef.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/bits/byteswap-16.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/fcntl.h \ /usr/include/bits/fcntl.h \ /usr/include/bits/fcntl-linux.h \ /usr/include/bits/stat.h \ /usr/include/unistd.h \ /usr/include/bits/posix_opt.h \ /usr/include/bits/environments.h \ /usr/include/bits/confname.h \ /usr/include/getopt.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/stdlib.h \ /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/bits/stdlib-float.h \ /usr/include/string.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ /usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.0/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/bits/locale.h \ /usr/include/curses.h \ /usr/include/ncurses_dll.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/include/unctrl.h \ /usr/include/curses.h \ scripts/kconfig/lxdialog/util.o: $(deps_scripts/kconfig/lxdialog/util.o) $(deps_scripts/kconfig/lxdialog/util.o):
bagnz0r/GT-I8160_Kernel
scripts/kconfig/lxdialog/.util.o.cmd
bat
gpl-2.0
2,365
cmd_net/packet/built-in.o := /root/Kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/packet/built-in.o net/packet/af_packet.o
garwynn/D710SPR_GB27_Kernel
net/packet/.built-in.o.cmd
bat
gpl-2.0
152
cmd_drivers/connector/cn.o := ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ld -EL -r -o drivers/connector/cn.o drivers/connector/cn_queue.o drivers/connector/connector.o
chrnueve/udooImaxdi
kernel_oficial_source/drivers/connector/.cn.o.cmd
bat
gpl-2.0
180
cmd_arch/x86/kernel/acpi/realmode/wakeup.o := gcc -Wp,-MD,arch/x86/kernel/acpi/realmode/.wakeup.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Iinclude -include include/linux/autoconf.h -g -Os -D_SETUP -D_WAKEUP -D__KERNEL__ -I/home/nhong/workspace/kernel-tut/arch/x86/kernel/acpi/realmode/../../../boot -Wall -Wstrict-prototypes -march=i386 -mregparm=3 -include /home/nhong/workspace/kernel-tut/arch/x86/kernel/acpi/realmode/../../../boot/code16gcc.h -fno-strict-aliasing -fomit-frame-pointer -ffreestanding -fno-toplevel-reorder -fno-stack-protector -mpreferred-stack-boundary=2 -m32 -D__ASSEMBLY__ -c -o arch/x86/kernel/acpi/realmode/wakeup.o arch/x86/kernel/acpi/realmode/wakeup.S deps_arch/x86/kernel/acpi/realmode/wakeup.o := \ arch/x86/kernel/acpi/realmode/wakeup.S \ $(wildcard include/config/64bit.h) \ /home/nhong/workspace/kernel-tut/arch/x86/kernel/acpi/realmode/../../../boot/code16gcc.h \ include/asm/segment.h \ $(wildcard include/config/x86/32.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/paravirt.h) \ include/asm/msr-index.h \ include/asm/page.h \ $(wildcard include/config/x86/64.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/pgtable.h \ include/asm/pgtable_32.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/highpte.h) \ include/asm/processor-flags.h \ arch/x86/kernel/acpi/realmode/wakeup.o: $(deps_arch/x86/kernel/acpi/realmode/wakeup.o) $(deps_arch/x86/kernel/acpi/realmode/wakeup.o):
namgk/kernel-tut
arch/x86/kernel/acpi/realmode/.wakeup.o.cmd
bat
gpl-2.0
2,250
cmd_arch/arm/vfp/vfphw.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/vfp/.vfphw.o.d -nostdinc -isystem /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/ian/kernel/Epic_Touch_kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-exynos/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -Wa,-mfpu=softvfp+vfp -c -o arch/arm/vfp/vfphw.o arch/arm/vfp/vfphw.S source_arch/arm/vfp/vfphw.o := arch/arm/vfp/vfphw.S deps_arch/arm/vfp/vfphw.o := \ $(wildcard include/config/smp.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/vfpv3.h) \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.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/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/iwmmxt.h) \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/vfpmacros.h \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/hwcap.h \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/vfp.h \ arch/arm/vfp/../kernel/entry-header.S \ $(wildcard include/config/frame/pointer.h) \ $(wildcard include/config/alignment/trap.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/32v6k.h) \ $(wildcard include/config/have/hw/breakpoint.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/linkage.h \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/linkage.h \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/trace/irqflags.h) \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/ian/kernel/Epic_Touch_kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ arch/arm/vfp/vfphw.o: $(deps_arch/arm/vfp/vfphw.o) $(deps_arch/arm/vfp/vfphw.o):
sleshepic/epic_touch_kernel
arch/arm/vfp/.vfphw.o.cmd
bat
gpl-2.0
3,122
echo WARNING: this script will delete ALL TAP-Win32 virtual adapters (use the device manager to delete adapters one at a time) pause ".\tapinstall.exe" remove tap0801 pause
RachadAbiChahine/WebOfThings
smews/misc/Funcard7/win32/driver/deltapall.bat
bat
gpl-3.0
177
cd D:\sync.com\Sync\LYM-projects\ perl D:\sync.com\Sync\LYM-projects\Projects\cmd\PG_confGenerator_Projects-v3.prl Projects\configuration\LYM_demo-head-single.txt Projects\scenarios\YN_demo-workshop-scenario-v1.txt Projects\shaders\LYM_ParticleAnimation_demo.frag Projects\shaders\LYM_ParticleAnimation_demo_full.frag Projects\shaders\LYM_Update_demo.frag Projects\shaders\LYM_Update_demo_full.frag Projects\shaders\LYM_Mixing_demo.frag Projects\shaders\LYM_Mixing_demo_full.frag Projects\shaders\LYM_ParticleSplat_demo.frag Projects\shaders\LYM_ParticleSplat_demo_full.frag Projects\shaders\LYM_Master_demo.frag Projects\shaders\LYM_Master_demo_full.frag ..\LYM-sources\Porphyrograph-src\pg_script_header_demo.h ..\LYM-sources\Porphyrograph-src\pg_script_body_demo.cpp ..\LYM-sources\Porphyrograph-src\pg_shader_header_demo.h ..\LYM-sources\Porphyrograph-src\pg_shader_body_decl_demo.cpp ..\LYM-sources\Porphyrograph-src\pg_shader_body_bind_demo.cpp ..\LYM-sources\Porphyrograph-src\pg_update_body_demo.cpp D:\sync.com\Sync\LYM-sources\Porphyrograph-VC17\Release\core_demo\Porphyrograph_core_demo.exe ./Projects/configuration/LYM_demo-head-single.txt ./Projects/scenarios/YN_demo-workshop-scenario-v1.txt
yukao/Porphyrograph
LYM-projects/batFiles/demo-workshop.PG-single.bat
bat
gpl-3.0
1,207
@echo off echo === Compiling... === gcc -Wall ../src/*.c -o ../MaxDice.exe -lpdcurses -static pause
MaxWallstedt/MaxDice
compile_scripts/Compile_MaxDice_Windows.cmd
bat
gpl-3.0
100
@echo off rem Need to use a separate batch file to call MEMTEST.EXE instead of rem calling it directly from AUTOEXEC.BAT given that we modify AUTOEXEC.BAT rem inside MEMTEST.EXE ..\memtest %1
joyent/sdcboot
freedos/source/mem/test/memtest2.bat
bat
mpl-2.0
197
java -XX:+UnlockExperimentalVMOptions -XX:+DoEscapeAnalysis -XX:+UseFastAccessorMethods -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:MaxGCPauseMillis=2 -XX:+AggressiveOpts -XX:+UseBiasedLocking -XX:+AlwaysPreTouch -XX:ParallelGCThreads=2 -Xmx1g -Xms128m -XX:NewRatio=2 -jar game.jar
lowkey42/java-jumpandrun-dev
core/start.bat
bat
unlicense
283
@echo off if "%COHORTE_HOME%" == "" ( echo [ERROR] the system environment variable COHORTE_HOME is not defined! exit /b 1 ) if "%PYTHON_INTERPRETER%"=="" ( echo [WARNING] the system environment variable PYTHON_INTERPRETER is not defined! echo we will try to use 'python' by default! set PYTHON_INTERPRETER=python ) "%PYTHON_INTERPRETER%" "%COHORTE_HOME%\bin\scripts\cohorte_create_node.py" %*
isandlaTech/cohorte-platforms
cohorte-home/bin/cohorte-create-node.bat
bat
apache-2.0
411
vstest.console /Logger:trx /TestAdapterPath:"..\packages\NUnitTestAdapter.2.0.0\lib" "bin\Debug\IQ.Core.Framework.Test.dll"
isoquark/isocore.data
IQ.Core.Framework.Test/nunit.bat
bat
apache-2.0
127
:; echo $PWD/; exit 0 @ECHO OFF ECHO %~dp0
resin-io/resin-device-operations
tests/images/edison/cwd.cmd
bat
apache-2.0
43
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyoauth2.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyoauth2.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
ymotongpoo/pyoauth2
docs/make.bat
bat
bsd-3-clause
5,100
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\node_modules\acorn\bin\acorn" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\node_modules\acorn\bin\acorn" %* )
batz91/Tlushi
tlushi-application-android/acorn.cmd
bat
mit
192
@echo off :: +------------------------------------------------------------------------- :: | :: | WPN-XM Server Stack - Stripdown Script for MongoDB :: | :: +-----------------------------------------------------------------------<3 :: Accepts the "path to MongoDB" as first parameter :: Use quotes on the argument, if the folder name contains spaces: :: stripdown-mongodb.bat "c:\program files\somewhere" :: Check - Parameter is not empty IF "%~1" == "" ( ECHO Parameter missing. ECHO Please add the path to MongoDB. GOTO EOF; ) :: Check - Parameter is folder IF NOT EXIST "%~1" ( ECHO Folder "%~1" not found. ECHO Provide a valid path to the MongoDB folder. GOTO EOF; ) :: Check - Parameter is the MongoDB folder IF NOT EXIST "%~1\bin\mongo.exe" ( ECHO Folder "%~1" exists, but is not the MongoDB folder. ECHO Could not find "%~1\bin\mongo.exe". GOTO EOF; ) :: Ok, now we know where MongoDB resides... SET MONGO_DIR=%~1 echo Found MongoDB in %MONGO_DIR% echo. echo [x] Stripdown MongoDB echo. :: process the /bin folder :: # 1) delete pdb files (windows crashdumps debug files) del /s /q "%MONGO_DIR%\bin\*.pdb" :: DONE echo. echo [+] MongoDB stripdown done. echo. GOTO END; :: EOF GOTO TARGET :EOF echo. echo [-] MongoDB stripdown failed. echo. pause :: Have a nice day. :END
WPN-XM/WPN-XM
bin/stripdown-mongodb.bat
bat
mit
1,403
cmd_drivers/misc/ti-st/built-in.o := rm -f drivers/misc/ti-st/built-in.o; arm-linux-gnueabihf-ar rcsD drivers/misc/ti-st/built-in.o
tyeo098/MK908-Kernel-NAND
drivers/misc/ti-st/.built-in.o.cmd
bat
gpl-2.0
133
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\urban\bin\urban" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\urban\bin\urban" %* )
LimMingXuan/minefreedom-discord
node_modules/.bin/urban.cmd
bat
gpl-2.0
172
@echo off rem rem In addition to the other parameter options for the Jetty container rem pass -j or --jmx to enable JMX agent. The port for it can be specified rem with optional port number e.g. -j1099 or --jmx=1099. rem set JMX_ENABLED=0 set JMX_PORT=1099 set JAVA_ARGS= ::remove any quotes from JAVA_HOME and EXIST_HOME env vars if present for /f "delims=" %%G IN ("%JAVA_HOME%") DO SET "JAVA_HOME=%%~G" for /f "delims=" %%G IN ("%EXIST_HOME%") DO SET "EXIST_HOME=%%~G" set JAVA_RUN="java" if not "%JAVA_HOME%" == "" ( set JAVA_RUN="%JAVA_HOME%\bin\java" goto gotJavaHome ) rem @WINDOWS_INSTALLER_1@ echo WARNING: JAVA_HOME not found in your environment. echo. echo Please, set the JAVA_HOME variable in your enviroment to match the echo location of the Java Virtual Machine you want to use in case of run fail. echo. :gotJavaHome rem @WINDOWS_INSTALLER_2@ if not "%EXIST_HOME%" == "" goto gotExistHome rem try to guess set EXIST_HOME=. if exist "%EXIST_HOME%\start.jar" goto gotExistHome set EXIST_HOME=.. if exist "%EXIST_HOME%\start.jar" goto gotExistHome echo EXIST_HOME not found. Please set your echo EXIST_HOME environment variable to the echo home directory of eXist. goto :eof :gotExistHome set MX=2048 rem @WINDOWS_INSTALLER_3@ set JAVA_ENDORSED_DIRS="%EXIST_HOME%\lib\endorsed" set JAVA_OPTS="-Xms128m -Xmx%MX%m -Dfile.encoding=UTF-8 -Djava.endorsed.dirs=%JAVA_ENDORSED_DIRS%" :: copy the command line args preserving equals chars etc. for things like --ouri=http://something for /f "tokens=*" %%x IN ("%*") DO SET "CMD_LINE_ARGS=%%x" set BATCH.D="%EXIST_HOME%\bin\batch.d" call %BATCH.D%\get_opts.bat %CMD_LINE_ARGS% call %BATCH.D%\check_jmx_status.bat %JAVA_RUN% "%JAVA_OPTS%" -Dexist.home="%EXIST_HOME%" -jar "%EXIST_HOME%\start.jar" jetty %JAVA_ARGS% :eof
joewiz/exist
bin/startup.bat
bat
lgpl-2.1
1,803
@rem Copyright 2009 Ramnivas Laddad @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem 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. call ..\..\..\setHomes.bat call ..\..\..\setEnvironment.bat @echo off cd src\main\java @echo on call ajc ajia\messaging\MessageCommunicator.java ajia\main\Main.java @echo on call java ajia.main.Main @echo off cd ..\..\..\ @echo on
sobkowiak/aspectj-in-action-code
ch02/workspace/Section2.1.1SettingUpTheExample/run.bat
bat
apache-2.0
878
:: This Source Code Form is subject to the terms of the Mozilla Public :: License, v. 2.0. If a copy of the MPL was not distributed with this :: file, You can obtain one at http://mozilla.org/MPL/2.0/. */ :: This must be run from the root webrender directory! :: Users may set the CARGOFLAGS environment variable to pass :: additional flags to cargo if desired. if NOT DEFINED CARGOFLAGS SET CARGOFLAGS=--verbose pushd webrender_api cargo test %CARGOFLAGS% if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% popd pushd webrender cargo test %CARGOFLAGS% if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% popd pushd wrench cargo test --verbose if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% :: Test that all shaders compile successfully and pass tests. :: --precache compiles all shaders during initialization, therefore if init :: is successful then the shaders compile. cargo run --release -- --angle --precache test_init if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% cargo run --release -- --angle --precache --use-unoptimized-shaders test_init if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% cargo run --release -- --angle test_shaders if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% cargo run --release -- --angle reftest if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% popd pushd examples cargo check --verbose if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% popd
servo/webrender
ci-scripts/windows-tests.cmd
bat
mpl-2.0
1,333
netcfg -u OVSExt
kspviswa/dpi-enabled-ovs
ovs/datapath-windows/misc/uninstall.cmd
bat
mit
17
call "%~dp0..\..\env.bat" %1 %2 %3 if ["%CASDEB%"] == [""] ( call "%~dp0..\..\msvc.bat" %VCVER% win%ARCH% Release %~dp0\CSharp.sln ) else ( call "%~dp0..\..\msvc.bat" %VCVER% win%ARCH% Debug %~dp0\CSharp.sln )
Tridify/oce
samples/CSharp/msvc.bat
bat
lgpl-2.1
220
universe = scheduler executable = x_sleep.pl log = job_core_perhold-false_sched.log output = job_core_perhold-false_sched.out error = job_core_perhold-false_sched.err hold = false periodic_hold = (time() - QDate) < 0 Notification = NEVER arguments = 100 queue
djw8605/condor
src/condor_tests/job_core_perhold-false_sched.cmd
bat
apache-2.0
264
cmd_drivers/media/built-in.o := arm-eabi-ld -EL -r -o drivers/media/built-in.o drivers/media/common/built-in.o drivers/media/rc/built-in.o drivers/media/video/built-in.o
R-M-S/RMS_DragunKernel_V.11-MAX-9-3-2012_3.0.42
drivers/media/.built-in.o.cmd
bat
gpl-2.0
175
@echo off setlocal REM Copyright 2006-2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific REM language governing permissions and limitations under the License. REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%EC2_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%EC2_HOME:"=%\bin\ec2-cmd" DeleteVpnConnectionRoute %* goto DONE :HOME_MISSING echo EC2_HOME is not set exit /b 1 :DONE
capotej/whim
ec2_home/ec2-api-tools-1.6.3.1/bin/ec2dvcr.cmd
bat
mit
1,046
@ECHO OFF rem Test all machine configurations, pydebug, refleaks, release build. cd ..\..\..\ echo. echo # ====================================================================== echo # Building Python echo # ====================================================================== echo. call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x64 msbuild /noconsolelogger /target:clean PCbuild\pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64 msbuild /noconsolelogger /target:clean PCbuild\pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=x64 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=x64 call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=Win32 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=Win32 echo. echo. echo. echo # ====================================================================== echo # test_decimal: platform=x64 echo # ====================================================================== echo. cd PCbuild\amd64 echo # ==================== refleak tests ======================= echo. python_d.exe -m test -uall -R 2:2 test_decimal echo. echo. echo # ==================== regular tests ======================= echo. python.exe -m test -uall test_decimal echo. echo. cd .. echo. echo # ====================================================================== echo # test_decimal: platform=x86 echo # ====================================================================== echo. echo # ==================== refleak tests ======================= echo. python_d.exe -m test -uall -R 2:2 test_decimal echo. echo. echo # ==================== regular tests ======================= echo. python.exe -m test -uall test_decimal echo. echo. cd amd64 echo. echo # ====================================================================== echo # deccheck: platform=x64 echo # ====================================================================== echo. echo # ==================== debug build ======================= echo. python_d.exe ..\..\Modules\_decimal\tests\deccheck.py echo. echo. echo # =================== release build ====================== echo. python.exe ..\..\Modules\_decimal\tests\deccheck.py echo. echo. cd .. echo. echo # ====================================================================== echo # deccheck: platform=x86 echo # ====================================================================== echo. echo. echo # ==================== debug build ======================= echo. python_d.exe ..\Modules\_decimal\tests\deccheck.py echo. echo. echo # =================== release build ====================== echo. python.exe ..\Modules\_decimal\tests\deccheck.py echo. echo. cd ..\Modules\_decimal\tests
FFMG/myoddweb.piger
monitor/api/python/Python-3.7.2/Modules/_decimal/tests/runall.bat
bat
gpl-2.0
3,012
command
mafagan/os
z_osabin/!cons_9x.bat
bat
gpl-3.0
7
@echo off setlocal call "%%CONTOOLS_ROOT%%/build/load_config.bat" . . "%%CONFIG_FILE%%" if %TESTLIB__OVERALL_TESTS% GTR %TESTLIB__CURRENT_TESTS% ( set "TEST_REPORT_PREFIX_STR=%TESTLIB__OVERALL_TESTS%`%TESTLIB__CURRENT_TESTS%" ) else set "TEST_REPORT_PREFIX_STR=%TESTLIB__CURRENT_TESTS%" set LASTERROR=0 set TEST_CASE_INDEX=1 for %%i in (%TEST_VAR_NAME_SUFFIX_LIST%) do ( "%CONTOOLS_UTILITIES_BIN_ROOT%/contools/envvarcmp.exe" %TEST_VAR_NAME_PREFIX%%%i %REFERENCE_VAR_NAME_PREFIX%%%i "" ^ "PASSED: %TEST_REPORT_PREFIX_STR%`${TEST_CASE_INDEX}: VAR=`${TEST_VAR_NAME_PREFIX}%%i` RESULT=`{0}`" ^ "FAILED: %TEST_REPORT_PREFIX_STR%`${TEST_CASE_INDEX}: VAR=`${TEST_VAR_NAME_PREFIX}%%i` RESULT=`{0}` REFERENCE=`{1}`" || set /A "LASTERROR|=0x80000000" set /A TEST_CASE_INDEX+=1 ) echo. exit /b %LASTERROR%
andry81/contools
Scripts/Tests/unit/batscripts/.test_build__load_config_fast/impl.bat
bat
mit
838
@rem Copyright (C) 2013-2015 MetaMorph Software, Inc @rem Permission is hereby granted, free of charge, to any person obtaining a @rem copy of this data, including any software or models in source or binary @rem form, as well as any drawings, specifications, and documentation @rem (collectively "the Data"), to deal in the Data without restriction, @rem including without limitation the rights to use, copy, modify, merge, @rem publish, distribute, sublicense, and/or sell copies of the Data, and to @rem permit persons to whom the Data is furnished to do so, subject to the @rem following conditions: @rem The above copyright notice and this permission notice shall be included @rem in all copies or substantial portions of the Data. @rem THE DATA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR @rem IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @rem FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL @rem THE AUTHORS, SPONSORS, DEVELOPERS, CONTRIBUTORS, OR COPYRIGHT HOLDERS BE @rem LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION @rem OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION @rem WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA. @rem ======================= @rem This version of the META tools is a fork of an original version produced @rem by Vanderbilt University's Institute for Software Integrated Systems (ISIS). @rem Their license statement: @rem Copyright (C) 2011-2014 Vanderbilt University @rem Developed with the sponsorship of the Defense Advanced Research Projects @rem Agency (DARPA) and delivered to the U.S. Government with Unlimited Rights @rem as defined in DFARS 252.227-7013. @rem Permission is hereby granted, free of charge, to any person obtaining a @rem copy of this data, including any software or models in source or binary @rem form, as well as any drawings, specifications, and documentation @rem (collectively "the Data"), to deal in the Data without restriction, @rem including without limitation the rights to use, copy, modify, merge, @rem publish, distribute, sublicense, and/or sell copies of the Data, and to @rem permit persons to whom the Data is furnished to do so, subject to the @rem following conditions: @rem The above copyright notice and this permission notice shall be included @rem in all copies or substantial portions of the Data. @rem THE DATA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR @rem IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @rem FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL @rem THE AUTHORS, SPONSORS, DEVELOPERS, CONTRIBUTORS, OR COPYRIGHT HOLDERS BE @rem LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION @rem OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION @rem WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA. rem set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.7.0_07\ pushd %~dp0 where UdmDll_3_2_VS10.dll c:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild make_CAD.msbuild /t:All;Push_All_NuGet /fl /flp:diag;PerformanceSummary /m /nodeReuse:false IF %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% set DBGTOOLS=%ProgramFiles%\Debugging Tools for Windows (x86) IF "%PROCESSOR_ARCHITECTURE%" == "AMD64" set DBGTOOLS=%ProgramFiles%\Debugging Tools for Windows (x64) IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" set DBGTOOLS=%ProgramW6432%\Debugging Tools for Windows (x64) IF NOT EXIST "%DBGTOOLS%" set DBGTOOLS=%ProgramFiles(x86)%\Debugging Tools for Windows (x86) echo %TIME% call "%DBGTOOLS%\srcsrv\svnindex.cmd" /debug /Ini="externals\common-scripts\srcsrv.ini" /source="%CD%" /symbols="%CD%" IF %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% echo %TIME% copy_pdbs.py IF %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% echo %TIME%
pombredanne/metamorphosys-desktop
metamorphosys/META/jenkins_build_CAD.cmd
bat
mit
3,921
node main.js pause
LuxGracetail/The-Scribe
run.bat
bat
mit
18
@setlocal @set abi=x86 @set /p x64=Do you want to build for x64? (y/n) Otherwise build for x86: @echo. @if /I "%x64%"=="y" set abi=x64 @rem Select MinGW shell based on ABI @set MSYSTEM=MINGW64 @set LMSYSTEM=mingw64 @IF %abi%==x86 set MSYSTEM=MINGW32 @IF %abi%==x86 set LMSYSTEM=mingw32 @rem Select MSVC shell based on ABI @set vsabi=%abi% @IF /I %PROCESSOR_ARCHITECTURE%==x86 set hostabi=x86 @IF /I %PROCESSOR_ARCHITECTURE%==AMD64 set hostabi=x64 @IF NOT %abi%==%hostabi% set vsabi=%hostabi%_%abi% @set TITLE=%TITLE% targeting %abi% @TITLE %TITLE% @endlocal&set abi=%abi%&set vsabi=%vsabi%&set hostabi=%hostabi%&set MSYSTEM=%MSYSTEM%&set LMSYSTEM=%LMSYSTEM%&set TITLE=%TITLE%
pal1000/mesa-dist-win
buildscript/modules/abi.cmd
bat
mit
698
@echo off set LIB=lib\octotron.jar set EXAMPLE_PATH=example_model set JAVA="C:\Program Files\Java\jdk1.7.0_51\bin\java.exe" start /wait cmd /c jython %EXAMPLE_PATH%\example.py -c %EXAMPLE_PATH%\config.json %JAVA% -Dsun.net.httpserver.nodelay=true -cp %LIB% ru.parallel.octotron.exec.Start %EXAMPLE_PATH%\config.json
srcc-msu/octotron
example.bat
bat
mit
319
REM dirty, just to retrieve the current folder, to be able to print it on the next level... REM for %%a in (.) do set currentfolder=%%~na REM set LEVEL=%currentfolder% REM call %BATCHDIR%mvn-scripts\pom-parser.cmd %BATCHDIR% list-dependencies REM display-ancestors not available in used version 2.8, only in version 2.10 REM mvn dependency:display-ancestors -Dincludes=de.mvbonline -B -fn -DoutputFile=%BATCHDIR%\..\dep.txt -DappendOutput=true -DoutputType=text -q mvn dependency:tree -Dincludes=de.mvbonline -B -fn -DoutputFile=%BATCHDIR%\..\dep.txt -DappendOutput=true -DoutputType=text -q REM mvn dependency:list -DincludeGroupIds=de.mvbonline -B -fn -DoutputFile=%BATCHDIR%\..\dep.txt -DappendOutput=true -DoutputType=text -Dsort=true -DincludeParents=true -q REM if defined LEVEL ( REM for /d %%i in (*) do ( REM if exist %%i\pom.xml ( REM echo ------------------------------------------------------------------------ REM echo Working in mvn-project: %LEVEL%/%%i REM echo ------------------------------------------------------------------------ REM pushd %%i REM call %BATCHDIR%\mvn-scripts\list-dependencies.cmd %BATCHDIR% %LEVEL% REM popd REM ) REM ) REM )
mvb-online/multi-project-scripts
mvn-scripts/list-dependencies.cmd
bat
mit
1,190
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 Clean up the results directory rmdir /S /Q results mkdir results rem Synthesize the VHDL Wrapper Files echo 'Synthesizing example design with XST'; xst -ifn xst.scr copy Instruction_Memory_exdes.ngc .\results\ rem Copy the netlist generated by Coregen echo 'Copying files from the netlist directory to the results directory' copy ..\..\Instruction_Memory.ngc results\ rem Copy the constraints files generated by Coregen echo 'Copying files from constraints directory to results directory' copy ..\example_design\Instruction_Memory_exdes.ucf results\ cd results echo 'Running ngdbuild' ngdbuild -p xc6slx16-csg324-2 -sd ../../../ Instruction_Memory_exdes echo 'Running map' map Instruction_Memory_exdes -o mapped.ncd echo 'Running par' par mapped.ncd routed.ncd echo 'Running trce' trce -e 10 routed.ncd mapped.pcf -o routed echo 'Running design through bitgen' bitgen -w routed echo 'Running netgen to create gate level Verilog model' netgen -ofmt verilog -sim -tm Instruction_Memory_exdes -pcf mapped.pcf -w -sdf_anno false routed.ncd routed.v
MForever78/CPUFly
ipcore_dir/Instruction_Memory/implement/implement.bat
bat
mit
3,412
@ECHO off ECHO %date% %time%: started scheduler.bat >>"scheduler.log" REM ------------------------------------------------------- REM - File: scheduler.bat REM - Description: run qv-scripts from the command line REM - Options /r run /l loads and executes makros REM ------------------------------------------------------- ECHO Starting reload process ECHO ====================================================== ECHO Reload "D:\qlik\ADMIN\PROD\01 Dataloader\01 Reload Task.qvw" "C:\Program Files\QlikView\QV.exe" /r "D:\qlik\ADMIN\PROD\01 Dataloader\01 Reload Task.qvw" timeout /T 20 ECHO %date% %time%: finished scheduler.bat >>"scheduler.log"
FrenzelGmbH/qlik
ADMIN/COMMON/9999 - AUTOMATISATION/scheduler.bat
bat
mit
646
set LAPACK_INCLUDE_PATH=%PREFIX%\include set LAPACK_LIB_PATH=%PREFIX%\Lib SET LAPACK_LIBS=%PREFIX%\Lib\libf2c %PREFIX%\Lib\blas %PREFIX%\Lib\lapack echo %LAPACK_LIBS% "%PYTHON%" setup.py install if errorlevel 1 exit 1
danielparton/omnia-md-conda-recipes
scs/bld.bat
bat
mit
220
perl zadatak6.pl e probni.txt
DominikDitoIvosevic/Uni
SKRJE/lab2/run6.bat
bat
mit
31
msbuild /p:Configuration=Release ..\Rock.Reflection.UniversalMemberAccessor\Rock.Reflection.UniversalMemberAccessor.csproj nuget pack ..\Rock.Reflection.UniversalMemberAccessor\Rock.Reflection.UniversalMemberAccessor.csproj -Properties Configuration=Release
RockFramework/Rock.Core
build/buildUniversalMemberAccessorNuget.bat
bat
mit
257
rd /S /Q Web2ExeWin call pyinstaller --onefile --hidden-import PIL.Jpeg2KImagePlugin --hidden-import configobj -i icon.ico --distpath command_line_builds -n web2exe-win command_line.py rd /S /Q command_line_builds\files echo D | xcopy /s files command_line_builds\files call pyinstaller -w --onefile --hidden-import PIL.Jpeg2KImagePlugin --hidden-import configobj -i icon.ico --distpath Web2ExeWin -n Web2Exe main.py echo D | xcopy /s files Web2ExeWin\files del Web2ExeWin\files\compressors\upx-mac del Web2ExeWin\files\compressors\upx-linux-x64 del Web2ExeWin\files\compressors\upx-linux-x32 del command_line_builds\files\compressors\upx-mac del command_line_builds\files\compressors\upx-linux-x64 del command_line_builds\files\compressors\upx-linux-x32 makensis /V4 Web2Exe.nsi 7z a Web2ExeWin-v0.2.4b.zip -r Web2ExeWin cd command_line_builds 7z a ..\Web2ExeWin-CMD.zip -tzip -r * cd ..
bright-sparks/Web2Executable
build_windows.bat
bat
mit
894
C:\MinGW\msys\1.0\msys.bat
rsb93/Capstone
shell.bat
bat
gpl-2.0
27
cmd_net/ipv6/built-in.o := /home/flint/android/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-ld -EL -r -o net/ipv6/built-in.o net/ipv6/ipv6.o net/ipv6/ah6.o net/ipv6/esp6.o net/ipv6/ipcomp6.o net/ipv6/xfrm6_tunnel.o net/ipv6/tunnel6.o net/ipv6/xfrm6_mode_transport.o net/ipv6/xfrm6_mode_tunnel.o net/ipv6/xfrm6_mode_beet.o net/ipv6/mip6.o net/ipv6/netfilter/built-in.o net/ipv6/sit.o net/ipv6/addrconf_core.o net/ipv6/exthdrs_core.o net/ipv6/inet6_hashtables.o ; scripts/mod/modpost net/ipv6/built-in.o
lindsaytheflint/stone
net/ipv6/.built-in.o.cmd
bat
gpl-2.0
541
cmd_arch/arm/lib/csumpartial.o := arm-linux-gnueabihf-gcc -Wp,-MD,arch/arm/lib/.csumpartial.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabihf/4.6/include -I/home/tyler/dev/rk3188/tylermk908/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk3188/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/csumpartial.o arch/arm/lib/csumpartial.S source_arch/arm/lib/csumpartial.o := arch/arm/lib/csumpartial.S deps_arch/arm/lib/csumpartial.o := \ /home/tyler/dev/rk3188/tylermk908/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/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/linkage.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hwcap.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/lib/csumpartial.o: $(deps_arch/arm/lib/csumpartial.o) $(deps_arch/arm/lib/csumpartial.o):
tyeo098/MK908-Kernel-NAND
arch/arm/lib/.csumpartial.o.cmd
bat
gpl-2.0
1,968
cmd_drivers/input/misc/adxl34x.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/input/misc/adxl34x.ko drivers/input/misc/adxl34x.o drivers/input/misc/adxl34x.mod.o
avareldalton85/rpi2-linux-rt
drivers/input/misc/.adxl34x.ko.cmd
bat
gpl-2.0
275
cmd_arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb := arm-poky-linux-gnueabi-gcc -E -Wp,-MD,arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.d.pre.tmp -nostdinc -I/second_extend/yocto_file/linux_yocto/arch/arm/boot/dts -I/second_extend/yocto_file/linux_yocto/arch/arm/boot/dts/include -I/second_extend/yocto_file/linux_yocto/drivers/of/testcase-data -undef -D__DTS__ -x assembler-with-cpp -o arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.dts.tmp arch/arm/boot/dts/imx6ul-14x14-evk-csi.dts ; /second_extend/yocto_file/linux_yocto/scripts/dtc/dtc -O dtb -o arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb -b 0 -i arch/arm/boot/dts/ -d arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.d.dtc.tmp arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.dts.tmp ; cat arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.d.pre.tmp arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.d.dtc.tmp > arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.d source_arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb := arch/arm/boot/dts/imx6ul-14x14-evk-csi.dts deps_arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb := \ arch/arm/boot/dts/imx6ul-14x14-evk.dts \ /second_extend/yocto_file/linux_yocto/arch/arm/boot/dts/include/dt-bindings/input/input.h \ arch/arm/boot/dts/imx6ul.dtsi \ /second_extend/yocto_file/linux_yocto/arch/arm/boot/dts/include/dt-bindings/clock/imx6ul-clock.h \ /second_extend/yocto_file/linux_yocto/arch/arm/boot/dts/include/dt-bindings/gpio/gpio.h \ /second_extend/yocto_file/linux_yocto/arch/arm/boot/dts/include/dt-bindings/interrupt-controller/arm-gic.h \ /second_extend/yocto_file/linux_yocto/arch/arm/boot/dts/include/dt-bindings/interrupt-controller/irq.h \ arch/arm/boot/dts/imx6ul-pinfunc.h \ arch/arm/boot/dts/skeleton.dtsi \ arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb: $(deps_arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb) $(deps_arch/arm/boot/dts/imx6ul-14x14-evk-csi.dtb):
heyoufei2/yocto3.14.38_kernel
arch/arm/boot/dts/.imx6ul-14x14-evk-csi.dtb.cmd
bat
gpl-2.0
1,843
@rem = '--*-Perl-*-- @echo off if "%OS%" == "Windows_NT" goto WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE ( perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) goto endofperl :WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S %0 %* ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S %0 %* ) ELSE ( perl -x -S %0 %* ) if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul goto endofperl @rem '; #!/usr/bin/perl #line 29 use 5.006; use strict; use pip; use vars qw{$VERSION}; BEGIN { $VERSION = '1.19'; } eval { pip::main( @ARGV ); }; if ( $@ ) { my $errstr = $@; $errstr =~ s/\sat line\b.+$//; print "Unexpected Error: $errstr\n"; exit(255); } exit(0); __END__ :endofperl
mishin/dwimperl-windows
strawberry-perl-5.20.0.1-32bit-portable/perl/bin/pip.bat
bat
gpl-2.0
1,051
cmd_scripts/kconfig/lxdialog/textbox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.textbox.o.d -w -O3 -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/textbox.o scripts/kconfig/lxdialog/textbox.c source_scripts/kconfig/lxdialog/textbox.o := scripts/kconfig/lxdialog/textbox.c deps_scripts/kconfig/lxdialog/textbox.o := \ scripts/kconfig/lxdialog/dialog.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/bits/predefs.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stddef.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.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/ctype.h \ /usr/include/xlocale.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/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/x86_64-linux-gnu/bits/locale.h \ /usr/include/ncurses.h \ /usr/include/ncurses_dll.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.7/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/unctrl.h \ /usr/include/curses.h \ scripts/kconfig/lxdialog/textbox.o: $(deps_scripts/kconfig/lxdialog/textbox.o) $(deps_scripts/kconfig/lxdialog/textbox.o):
lindsaytheflint/stone
scripts/kconfig/lxdialog/.textbox.o.cmd
bat
gpl-2.0
3,002
cmd_drivers/acpi/glue.o := gcc -Wp,-MD,drivers/acpi/.glue.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(glue)" -D"KBUILD_MODNAME=KBUILD_STR(glue)" -c -o drivers/acpi/glue.o drivers/acpi/glue.c deps_drivers/acpi/glue.o := \ drivers/acpi/glue.c \ $(wildcard include/config/rtc/drv/cmos.h) \ $(wildcard include/config/pm.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/asm/processor.h \ $(wildcard include/config/x86/vsmp.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/paravirt.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/cmov.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ include/asm/alternative.h \ include/asm/asm.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/debug/lock/alloc.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ include/linux/preempt.h \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/kref.h \ include/linux/wait.h \ include/linux/klist.h \ include/linux/completion.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.h \ include/linux/seqlock.h \ include/linux/math64.h \ include/asm/div64.h \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ include/linux/elf.h \ include/linux/elf-em.h \ include/asm/elf.h \ $(wildcard include/config/compat/vdso.h) \ include/asm/user.h \ include/asm/user_32.h \ include/asm/auxvec.h \ include/asm/vdso.h \ include/asm/desc.h \ include/asm/ldt.h \ include/asm/mmu.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ $(wildcard include/config/cc/stackprotector.h) \ include/asm-x86/mach-default/mach_apicdef.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/asm/local.h \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/asm/module.h \ $(wildcard include/config/m486.h) \ $(wildcard include/config/m586.h) \ $(wildcard include/config/m586tsc.h) \ $(wildcard include/config/m586mmx.h) \ $(wildcard include/config/mcore2.h) \ $(wildcard include/config/m686.h) \ $(wildcard include/config/mpentiumii.h) \ $(wildcard include/config/mpentiumiii.h) \ $(wildcard include/config/mpentiumm.h) \ $(wildcard include/config/mpentium4.h) \ $(wildcard include/config/mk6.h) \ $(wildcard include/config/mk8.h) \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/mcrusoe.h) \ $(wildcard include/config/mefficeon.h) \ $(wildcard include/config/mwinchipc6.h) \ $(wildcard include/config/mwinchip2.h) \ $(wildcard include/config/mwinchip3d.h) \ $(wildcard include/config/mcyrixiii.h) \ $(wildcard include/config/mviac3/2.h) \ $(wildcard include/config/mviac7.h) \ $(wildcard include/config/mgeodegx1.h) \ $(wildcard include/config/mgeode/lx.h) \ include/linux/semaphore.h \ include/asm/device.h \ $(wildcard include/config/dmar.h) \ include/linux/pm_wakeup.h \ include/linux/acpi.h \ $(wildcard include/config/have/arch/parse/srat.h) \ $(wildcard include/config/acpi/hotplug/cpu.h) \ $(wildcard include/config/acpi/ec.h) \ $(wildcard include/config/acpi/wmi.h) \ $(wildcard include/config/dmi.h) \ include/linux/mod_devicetable.h \ include/acpi/acpi.h \ include/acpi/acnames.h \ include/acpi/acconfig.h \ $(wildcard include/config/h.h) \ include/acpi/platform/acenv.h \ include/acpi/platform/aclinux.h \ include/linux/ctype.h \ include/acpi/platform/acgcc.h \ include/acpi/actypes.h \ include/acpi/actypes.h \ include/acpi/acexcep.h \ include/acpi/acmacros.h \ $(wildcard include/config/acpi/debug/func/trace.h) \ include/acpi/actbl.h \ include/acpi/actbl1.h \ include/acpi/aclocal.h \ include/acpi/acoutput.h \ include/acpi/acpiosxf.h \ include/acpi/acpixf.h \ include/acpi/acobject.h \ include/acpi/acstruct.h \ include/acpi/acglobal.h \ include/acpi/achware.h \ include/acpi/acutils.h \ include/acpi/acpi_bus.h \ $(wildcard include/config/acpi/proc/event.h) \ include/linux/proc_fs.h \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ $(wildcard include/config/mmu.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/rcuclassic.h \ include/linux/namei.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/capability.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/err.h \ include/linux/magic.h \ include/acpi/acpi_drivers.h \ $(wildcard include/config/acpi/power.h) \ $(wildcard include/config/acpi/dock.h) \ include/acpi/acpi_numa.h \ include/linux/dmi.h \ drivers/acpi/glue.o: $(deps_drivers/acpi/glue.o) $(deps_drivers/acpi/glue.o):
namgk/kernel-tut
drivers/acpi/.glue.o.cmd
bat
gpl-2.0
16,289
cmd_drivers/input/input-core.o := ld -m elf_i386 -r -o drivers/input/input-core.o drivers/input/input.o drivers/input/input-compat.o drivers/input/ff-core.o
madhwang/linuxKernel
drivers/input/.input-core.o.cmd
bat
gpl-2.0
160
cmd_sound/isa/es1688/built-in.o := rm -f sound/isa/es1688/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/isa/es1688/built-in.o
asopov/linux-tpt-2.6.39
sound/isa/es1688/.built-in.o.cmd
bat
gpl-2.0
185
>>> nobles[1] = 'neon' >>> nobles ['helium', 'neon', 'argon', 'krypton', 'xenon', 'radon']
simontakite/sysadmin
pythonscripts/practicalprogramming/lists/nobles2.cmd
bat
gpl-2.0
91
@rem = '--*-Perl-*-- @echo off if "%OS%" == "Windows_NT" goto WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE ( perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) goto endofperl :WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S %0 %* ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S %0 %* ) ELSE ( perl -x -S %0 %* ) if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul goto endofperl @rem '; #!/usr/bin/env perl #line 29 use strict; use warnings; use FindBin; BEGIN { unshift @INC, "$FindBin::Bin/../lib" } use Getopt::Long qw(GetOptions :config no_auto_abbrev no_ignore_case); GetOptions 'h|help' => \my $help, 'l|listen=s' => \my @listen, 'm|mode=s' => sub { $ENV{MOJO_MODE} = $_[1] }, 'v|verbose' => sub { $ENV{MORBO_VERBOSE} = 1 }, 'w|watch=s' => \my @watch; my $app = shift; if ($help || !$app) { require Mojolicious::Command; die Mojolicious::Command->new->extract_usage; } $ENV{MOJO_LISTEN} = join ',', @listen if @listen; require Mojo::Server::Morbo; my $morbo = Mojo::Server::Morbo->new; $morbo->watch(\@watch) if @watch; $morbo->run($app); =encoding utf8 =head1 NAME morbo - Morbo HTTP and WebSocket development server =head1 SYNOPSIS Usage: morbo [OPTIONS] [APPLICATION] morbo script/myapp morbo myapp.pl morbo -m production -l https://*:443 -l http://[::]:3000 myapp.pl morbo -w /usr/local/lib -w public myapp.pl Options: -h, --help Show this message. -l, --listen <location> One or more locations you want to listen on, defaults to the value of MOJO_LISTEN or "http://*:3000". -m, --mode <name> Operating mode for your application, defaults to the value of MOJO_MODE/PLACK_ENV or "development". -v, --verbose Print details about what files changed to STDOUT. -w, --watch <directory/file> One or more directories and files to watch for changes, defaults to the application script as well as the "lib" and "templates" directories in the current working directory. =head1 DESCRIPTION Start L<Mojolicious> and L<Mojolicious::Lite> applications with the L<Mojo::Server::Morbo> web server. =head1 SEE ALSO L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>. =cut __END__ :endofperl
mishin/dwimperl-windows
strawberry-perl-5.20.0.1-32bit-portable/perl/bin/morbo.bat
bat
gpl-2.0
2,973
@if (true == false) @end /* @echo off cmdwiz setfont 6 & cls & cmdwiz showcursor 0 & title L-System (right/left c d b i/I) if defined __ goto :START set __=. cmdgfx_input.exe knW50xzR | call %0 %* | cmdgfx_gdi "" Sfa:0,0,1600,900 set __= goto :eof :START set /a W=1600, H=900 set /a W6=W/8, H6=H/12 mode %W6%,%H6% call centerwindow.bat 0 -16 call prepareScale.bat 10 1 cscript //nologo //e:javascript "%~dpnx0" %* ::cmdwiz getch & rem Enable this line to see jscript parse errors set W6=&set H6=&set W=&set H= echo "cmdgfx: quit" title input:Q cmdwiz showcursor 1 & mode 80,50 exit /b 0 */ function Execute(cmd) { var exec = Shell.Exec("cmd /c " + cmd) exec.StdOut.ReadAll() return exec.exitCode } function GetCmdVar(name) { return Execute("exit %" + name + "%") } function LSystem(name, axiom, rules, linelen, linecolor, iterations, rotation, startRotation, updateFrequency, x, y) { this.name = name this.axiom = axiom this.rules = rules this.linelen = linelen this.linecolor = linecolor this.iterations = iterations this.rotation = rotation this.startRotation = startRotation this.updateFrequency = updateFrequency this.x = x this.y = y } var LSystems = [ new LSystem("Plant", "X", ["X->1+[[X]-X]-1[-1X]+X", "F->FF", "1->F" ], 38, "2", 6, 25, 150, 10, 400, 870) ,new LSystem("Leaf", "a", ["F->>F<", "a->F[+1]F2", "b->F[-3]Fa", "x->a", "y->b", "1->x", "2->b", "3->y" ], 36, "c", 13, 45, 180, 2, 800, 860) ,new LSystem("Triangle", "F+F+F", ["F->F-F+F"], 95, "9", 7, 120, 0, 2, 800, 790) ,new LSystem("Hexagonal Gosper", "XF", ["X->X+1F++1F-FX--FXFX-1F+","Y->-FX+YFYF++YF+FX--FX-Y","1->Y"], 60, "b", 4, 60, 90, 4, 900, 850) ,new LSystem("Von Koch Snowflake", "F++F++F", ["F->F-F++F-F"], 15, "f", 5, 60, 90, 3, 400, 660) ,new LSystem("Sierpinski Arrowhead", "YF", ["X->1F+XF+1", "Y->XF-YF-X", "1->Y"], 50, "5", 7, 60, 90, 2, 360, 50) ,new LSystem("Weed", "F", ["F->FF-[12]+[12]", "X->+F2", "Y->-FX","1->X","2->Y" ], 38, "8", 6, 22.5, 180, 2, 800, 850) ,new LSystem("Board", "F+F+F+F", ["F->FF+F+F+F+FF"], 40, "5", 4, 90, 0, 6, 400, 50) ,new LSystem("Stick", "X", ["F->FF", "X->F[+X]F[-X]+X"], 23, "2", 7, 20, 180, 3, 800, 860) ,new LSystem("Bush 1", "Y", ["X->X[-FFF][+FFF]FX", "Y->YFX[+Y][-Y]"], 40, "2", 6, 25.7, 180, 3, 810, 840) ,new LSystem("Bush 2", "F", ["F->FF+[+F-F-F]-[-F+F+F]"], 55, "2", 4, 22.5, 180, 3, 810, 840) ,new LSystem("Bush 3", "F", ["F->F[+FF][-FF]F[-F][+F]F"], 38, "2", 4, 35, 180, 5, 800, 830) ,new LSystem("Hilbert", "X", ["X->-1F+XFX+F1-", "Y->+XF-YFY-FX+", "1->Y"], 65, "d", 6, 90, 0, 4, 1100, 120) ,new LSystem("Tiles", "F+F+F+F", ["F->FF+F-F+F+FF"], 95, "9", 3, 90, 0, 4, 850, 680) ,new LSystem("Pentaplexity", "F++F++F++F++F", ["F->F++F++F|F-F++F"], 45, "f", 4, 36, 0, 4, 400, 180) ,new LSystem("Crystal", "F+F+F+F", ["F->FF+F++F+F"], 30, "e", 4, 90, 0, 4, 450, 150) ,new LSystem("Square Sierpinski", "F+XF+F+XF", ["X->XF-F+F-XF+F+XF-F+F-X"], 35, "b", 5, 90, 0, 4, 350, 450) ,new LSystem("Koch Curve", "F+F+F+F", ["F->F+F-F-FF+F+F-F"], 22, "c", 3, 90, 0, 4, 550, 220) ,new LSystem("Dragon Curve", "FX", ["X->X+1F+", "Y->-FX-Y", "1->Y"], 95, "a", 13, 90, 0, 2, 920, 670) ,new LSystem("Rings", "F+F+F+F", ["F->FF+F+F+F+F+F-F"], 25, "c", 4, 90, 0, 6, 380, 660) ,new LSystem("Skipper", "F+F+F+F", ["F->F+1-FF+F+FF+F1+FF-1+FF-F-FF-F1-FFF", "f->ffffff", "1->f" ], 25, "9", 2, 90, 0, 10, 550, 220) ,new LSystem("Houdini", "F-F-F-F-F-F-F-F", ["F->F-–-F+F+F+F+F+F+F-–-F" ], 25, "f", 4, 45, 0, 150, 500, 550) ,new LSystem("Houdini", "F-F-F-F-F-F-F-F", ["F->F-–-F+F+F+F+F+F+F-–-F" ], 120, "b", 2, 45, 0, 150, 610, 520) ,new LSystem("Houdini", "F-F-F-F-F-F-F-F", ["F->F-–-F+F+F+F+F+F+F-–-F" ], 39, "d", 3, 14.5, 0, 150, 800, 450) ]; function DrawState(x, y, currRot, swap, linelen, rotation) { this.x = x this.y = y this.currRot = currRot this.swap = swap this.linelen = linelen this.rotation = rotation } function DrawSystem() { if (newRes) WScript.Echo("\"cmdgfx: fbox 1 0 0" + "\" " + "fa:0,0," + W + "," + H) if (clearScreen) WScript.Echo("\"cmdgfx: fbox 0 0 0" + "\" ") LS = LSystems[systemIndex] newRes = false current = LS.axiom rules = LS.rules linelen = LS.linelen color = LS.linecolor iterations = LS.iterations + extraIteration if (iterations < 1) { iterations=1; extraIteration++; } rotation = LS.rotation currRot = LS.startRotation*(Math.PI/180) scrUpdateFreq = LS.updateFrequency xp = LS.x + XPP, yp = LS.y + YPP rotation = rotation*(Math.PI/180) linelen = linelen/iterations if (expDrawing) scrUpdateFreq = Math.pow(scrUpdateFreq, iterations) else scrUpdateFreq = (scrUpdateFreq + 20) * iterations scrUpdateCounter = 0 reverse = 180*(Math.PI/180) for (i=0; i < iterations; i++) { for (j=0; j < rules.length; j++) { current = current.replace(new RegExp(rules[j].substring(0,1), 'g'), rules[j].substring(3)) } } bez = ""; if (drawBezier) bez = " "+Math.floor(W/2)+","+Math.floor(H/2) drawStates = [] swap = 1 for (i=0; i < current.length; i++) { ch = current.substring(i,i+1) if (ch == "+") currRot+=rotation*swap if (ch == "-") currRot-=rotation*swap if (ch == "|") currRot+=reverse if (ch == ">") linelen *= lineScaleFactor if (ch == "<") linelen /= lineScaleFactor if (ch == "(") rotation -= turnAngleIncrement if (ch == ")") rotation += turnAngleIncrement if (ch == "&") swap=-swap if (ch == "[") drawStates.push(new DrawState(xp, yp, currRot, swap, linelen, rotation)) if (ch == "]") { drawState = drawStates.pop() xp = drawState.x, yp = drawState.y, currRot = drawState.currRot, swap = drawState.swap, linelen = drawState.linelen, rotation = drawState.rotation; } if (ch == "@") WScript.Echo("\"cmdgfx: pixel " + color + " 0 X " + Math.floor(xp) + "," + Math.floor(yp) + " \" n") if (ch == "F" || ch == "f") { oldxp = xp, oldyp = yp; xp = xp+Math.sin(currRot)*linelen yp = yp+Math.cos(currRot)*linelen if(ch == "F") WScript.Echo("\"cmdgfx: line " + color + " 0 X " + Math.floor(oldxp) + "," + Math.floor(oldyp) + "," + Math.floor(xp) + "," + Math.floor(yp) + bez + " \" n") } scrUpdateCounter++; if (seeDrawing && scrUpdateCounter >= scrUpdateFreq) { scrUpdateCounter=0; WScript.Echo("\"cmdgfx: \" ") } } WScript.Echo("\"cmdgfx: \" ") } WScript.Echo("\"cmdgfx: fbox 0 0 0" + "\" ") clearScreen = true seeDrawing = true expDrawing = false lineScaleFactor = 1.36 turnAngleIncrement = 5 turnAngleIncrement = turnAngleIncrement*(Math.PI/180) drawBezier = false extraIteration=0 systemIndex = 0 drawNextSystem = true drawCounter = 0 newRes = false firstRun = true Shell = new ActiveXObject("WScript.Shell") var W=GetCmdVar("W"), H=GetCmdVar("H"), rW=GetCmdVar("rW"), rH=GetCmdVar("rH") XPP=Math.floor((W-1600)/2), YPP=Math.floor((H-900)/2) YPP=0 while(true) { if (drawNextSystem) { DrawSystem() drawNextSystem = false } drawCounter++; if (drawCounter > 20) { WScript.Echo("\"cmdgfx: \" "); drawCounter = 0 } var input = WScript.StdIn.ReadLine() var ti = input.split(/\s+/) if (ti[3] == "1") { var key = ti[5] if (key == "27") break else if (key == "10") { exec = Shell.Exec('cmdwiz getfullscreen'); exec.StdOut.ReadAll(); if (exec.exitCode==0) Shell.Exec('cmdwiz fullscreen 1'); else Shell.Exec('cmdwiz fullscreen 0') } else if (key == "105") { extraIteration--; drawNextSystem=true; } else if (key == "73") { extraIteration++; if (extraIteration > 0) extraIteration=0; else drawNextSystem=true; } else if (key == "98") { drawBezier = !drawBezier; drawNextSystem=true; } else if (key == "99") { clearScreen = !clearScreen; if(clearScreen) drawNextSystem=true; } else if (key == "100") { seeDrawing = !seeDrawing; } else if (key == "331") { drawNextSystem=true; extraIteration=0; systemIndex--; if (systemIndex < 0) systemIndex=LSystems.length-1 } else if (key != "0") { drawNextSystem=true; extraIteration=0; systemIndex++; if (systemIndex >= LSystems.length) systemIndex=0 } } if (ti[23] == "1") { W=Math.floor(Number(ti[25])*8*rW/100+1), H=Math.floor(Number(ti[27])*12*rH/100+1) XPP=Math.floor((W-1600)/2), YPP=Math.floor((H-900)/2) Shell.Exec('cmdwiz showcursor 0') //Shell.Exec('cmdwiz setbuffersize - -') if (firstRun == false) { drawNextSystem = true newRes = true } firstRun = false } } /* Character Meaning F Move forward by line length drawing a line f Move forward by line length without drawing a line + Turn left by turning angle - Turn right by turning angle | Reverse direction (ie: turn by 180 degrees) & Swap the meaning of + and - [ Push current drawing state onto stack ] Pop current drawing state from the stack > Multiply the line length by the line length scale factor < Divide the line length by the line length scale factor @ Draw a dot with line width radius ( Decrement turning angle by turning angle increment ) Increment turning angle by turning angle increment Not implemented: # Increment the line width by line width increment ! Decrement the line width by line width increment { Open a polygon } Close a polygon and fill it with fill colour */
misol1/cmdgfx
server-lsystem-js.bat
bat
gpl-2.0
9,320
-- create initial state: !create a : A !create b1 : B !set b1.c := 1 !insert (a, b1) into R
stormymauldin/stuff
examples/AB1.cmd
bat
gpl-2.0
92
g++ src/*cpp -o bin/ArithmeticCodeCodec -std=c++11
jk-007/arithmetic-coding
build.bat
bat
gpl-3.0
51
del /s /q output for /d %%f in (output\*) do rmdir /s /q "%%f" "%PATH_WIX%candle.exe" -ext WixBalExtension -v *.wxs -o output\ "%PATH_WIX%light.exe" -ext WixBalExtension output\*.wixobj -o output\PersoSim_Installation_Bundle.exe rem sign the burn engine "%PATH_WIX%insignia.exe" -ib output\PersoSim_Installation_Bundle.exe -o output\engine.exe "%EXE_SIGNTOOL%" sign /f "..\%CERT_SIGN%" /p "%CERT_SIGN_PWD%" /d "Burn Engine" /v output\engine.exe "%PATH_WIX%insignia" -ab output\engine.exe output\PersoSim_Installation_Bundle.exe -o output\PersoSim_Installation_Bundle.exe rem sign the installer "%EXE_SIGNTOOL%" sign /f "..\%CERT_SIGN%" /p "%CERT_SIGN_PWD%" /d "PersoSim Installation Bundle" /v output\PersoSim_Installation_Bundle.exe
PersoSim/de.persosim.driver.win
Installer/WiX_Bundle/buildBundle.bat
bat
gpl-3.0
736
cd %TRRuSST_HOME% mvn clean compile test-compile install cd %TRRuSST_HOME%\scripts\windows
sandakith/TRRuSST
scripts/windows/buildWithTests.bat
bat
gpl-3.0
90
@ECHO OFF REM gracethdcheck_pg_create_v_ct_unit.bat REM Owner : GraceTHD-Community - http://gracethd-community.github.io/ REM Author : stephane dot byache at aleno dot eu REM Rev. date : 13/03/2017 REM This file is part of GraceTHD. REM GraceTHD 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 GraceTHD 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 You should have received a copy of the GNU General Public License REM along with GraceTHD. If not, see <http://www.gnu.org/licenses/>. CALL :CONFIG CALL :DELETE CALL :EXPORT_DROP CALL :EXPORT_CREATE CALL :EXPORT_CREATE_REPLACE REM CALL :EXPORT_CREATE_TEST REM CALL :EXPORT_CREATE_SPATIALITE CALL :EXEC CALL :END :CONFIG CALL config.bat REM FICHIERS SQL TEMPORAIRES QUI VONT ETRE GENERES POUR LA CREATION DES VUES DE CONTROLE UNITAIRES. SET DOUT=%GLCTPGTEMP%\tmp_pg_v_ct_unit_drop.sql SET FOUT=%GLCTPGTEMP%\tmp_pg_v_ct_unit_create.sql GOTO :EOF :DELETE ECHO %DOUT% ECHO GraceTHD-Check - %~nx0 - Suppression des fichiers sql temporaires. IF EXIST "%DOUT%" DEL "%DOUT%" IF EXIST "%FOUT%" DEL "%FOUT%" GOTO :EOF :EXPORT_DROP ECHO GraceTHD-Check - %~nx0 - Creation des fichiers sql temporaires pour supprimer les vues unitaires. REM Suppression fichiers temporaires IF EXIST "%DOUT%add" DEL "%DOUT%add" IF EXIST "%DOUT%psql" DEL "%DOUT%psql" REM Creation d'un fichier texte avec v_ct_sqldrop_view_unit_pgs SET GLCTPGTBL=v_ct_sqldrop_view_unit_pgs REM SET PGCSV=%PGSHPOUTPATH%\%PGTBL%.csv "%GL_PSQL%" -h %PGHOSTNAME% -p %PGPORT% -c "\COPY (SELECT * FROM %GLCTPGSCHEMACHECK%.%GLCTPGTBL%) TO '%DOUT%psql';" -d %GLCTPGDB% -U %PGUSER% REM Ajout de la commande SET search_path au fichier sql genere. ECHO SET search_path TO %GLCTPGSCHEMACHECK%, %GLCTPGSCHEMA%, public; > "%DOUT%add" TYPE "%DOUT%add" "%DOUT%psql" > "%DOUT%" REM Suppression fichiers temporaires IF EXIST "%DOUT%add" DEL "%DOUT%add" IF EXIST "%DOUT%psql" DEL "%DOUT%psql" GOTO :EOF :EXPORT_CREATE ECHO GraceTHD-Check - %~nx0 - Creation des fichiers sql temporaires pour creer les vues unitaires. REM Suppression fichiers temporaires IF EXIST "%FOUT%add" DEL "%FOUT%add" IF EXIST "%FOUT%psql" DEL "%FOUT%psql" REM Creation d'un fichier texte avec v_ct_sqldrop_view_unit_pgs SET GLCTPGTBL=v_ct_sqlcreate_view_unit_pgs REM SET PGCSV=%PGSHPOUTPATH%\%PGTBL%.csv "%GL_PSQL%" -h %PGHOSTNAME% -p %PGPORT% -c "\COPY (SELECT * FROM %GLCTPGSCHEMACHECK%.%GLCTPGTBL%) TO '%FOUT%psql';" -d %GLCTPGDB% -U %PGUSER% REM Ajout de la commande SET search_path au fichier sql genere. ECHO SET search_path TO %GLCTPGSCHEMACHECK%, %GLCTPGSCHEMA%, public; > "%FOUT%add" TYPE "%FOUT%add" "%FOUT%psql" > "%FOUT%" REM Suppression fichiers temporaires IF EXIST "%FOUT%add" DEL "%FOUT%add" IF EXIST "%FOUT%psql" DEL "%FOUT%psql" GOTO :EOF :EXPORT_CREATE_REPLACE ECHO GraceTHD-Check - %~nx0 - Debut de remplacement des caracteres speciaux. "%GLSFK%" replace "%FOUT%" -spat "/\\t/\t/" -yes "%GLSFK%" replace "%FOUT%" -spat "/\\r\\n/\r\n/" -yes "%GLSFK%" replace "%FOUT%" -spat "/\\n\\n/\r\n/" -yes "%GLSFK%" replace "%FOUT%" -spat "/\\n/\n/" -yes ECHO GraceTHD-Check - %~nx0 - Fin de remplacement des caracteres speciaux. GOTO :EOF :EXPORT_CREATE_TEST SET GLCTPGTBL=v_ct_sqlcreate_view_unit_pgs REM ECHO SELECT * FROM v_ct_sqlcreate_view_unit_pgs; | %GL_PSQL% -h %PGHOSTNAME% -p %PGPORT% -d %GLCTPGDB% %PGUSER% -o %FOUT% "%GL_PSQL%" -h %PGHOSTNAME% -p %PGPORT% -d %GLCTPGDB% %PGUSER% -c "\COPY (SELECT * FROM %GLCTPGSCHEMACHECK%.%GLCTPGTBL%) TO '%FOUT%psql';" -o "%FOUT%test" GOTO :EOF :EXEC ECHO GraceTHD-Check - %~nx0 - Execution du script de suppression des vues unitaires %DOUT%. "%GL_PSQL%" -h %PGHOSTNAME% -p %PGPORT% -d %GLCTPGDB% -U %PGUSER% -f "%DOUT%" ECHO GraceTHD-Check - %~nx0 - Execution du script de suppression des vues unitaires %DOUT%. "%GL_PSQL%" -h %PGHOSTNAME% -p %PGPORT% -d %GLCTPGDB% -U %PGUSER% -f "%FOUT%" GOTO :EOF :END ECHO GraceTHD-Check - %~nx0 - Fin %GLPAUSE%
GraceTHD-community/GraceTHD-Check
gracethdcheck_pg_create_v_ct_unit.bat
bat
gpl-3.0
4,346
@ECHO OFF %PROGRAMFILES%\Microsoft SDKs\Windows\v7.0A\bin\svcutil.exe" /t:xmlSerializer bin\Release\TortoiseMantis.dll
xxNull-lsk/tortoisemantis
do-svcutil-thingie.cmd
bat
gpl-3.0
119
set optimise=1 set limit=111111111111111111111111 :Top CD.. php.exe update_binaries.php php.exe update_releases.php CD batch_scripts set /a optimise=%optimise%+1 if %optimise%==300 goto optimise :OptimiseDone set /a tv=%tv%+1 if %tv%==20 goto tv :TVDone Sleep 120 GOTO TOP :Optimise CD.. php.exe optimise_db.php set optimise=0 CD batch_scripts GOTO OptimiseDone :TV CD.. php.exe update_tvschedule.php set tv=0 CD batch_scripts GOTO tvdone
kop1/newznab
misc/update_scripts/win_scripts/runme.bat
bat
gpl-3.0
484
:: update_binding.cmd :: 10/6/2012 jichi :: See: http://qt-project.org/wiki/Category:LanguageBindings::PySide::Shiboken::PySide_Binding_Generation_Tutorial :: See: http://blog.csdn.net/dbzhang800/article/details/6387577 @setlocal cd /d "%~dp0" set TARGET=winutil set LIBTARGET=%TARGET% set PYTARGET=py%TARGET% set HEADER=%PYTARGET%_config.h set TYPESYSTEM=typesystem_%TARGET%.xml set OUTDIR=binding set DESTDIR=%CD%/../../../bin set LOG=%OUTDIR%.log rm -Rf "%OUTDIR%".bak if exist "%OUTDIR%" ren "%OUTDIR%" "%OUTDIR%".bak rm -Rf %OUTDIR% %LOG% set LIBPATH=%CD%/../../libs set TYPESYSTEM_HOME=%CD%/../../typesystems set TYPESYSTEM_PATH=%TYPESYSTEM_HOME%/cpp;%TYPESYSTEM_HOME%/stl set TARGET_HOME=../../libs/%LIBTARGET% set QT_HOME=c:/qt/4 ::set PYTHON_HOME=%CD%/../../../../Python ::set PYTHON_HOME=c:/python27 set PYTHON_HOME=z:/Local/Windows/Developer/Python set PYSIDE_HOME=%PYTHON_HOME%/Lib/site-packages/PySide set PATH=%QT_HOME%/bin;%PYSIDE_HOME%;%PATH% :: :: Essential: :: --avoid-protected-hack Otherwise link time error for Qt :: --enable-pyside-extensions Enable Slot/Signal :: :: Suggested by Qt wiki: :: --enable-parent-ctor-heuristic Detect parent ctor :: --use-isnull-as-nb_nonzero Use isNull for comparison :: --enable-return-value-heuristic Detect ownership in return value :: set INC= set INC=%INC%;%QT_HOME%/include set INC=%INC%;%QT_HOME%/include/Qt set INC=%INC%;%QT_HOME%/include/QtCore set INC=%INC%;%PYTHON_HOME%/include set INC=%INC%;%PYSIDE_HOME%/include set INC=%INC%;%PYSIDE_HOME%/include/shiboken set INC=%INC%;%PYSIDE_HOME%/include/PySide set INC=%INC%;%PYSIDE_HOME%/include/PySide/QtCore set INC=%INC%;%TARGET_HOME%;%LIBPATH% set INC=%INC%;.. set _= ::set _= %_% --debug-level=full --no-suppress-warnings :: Disable Qt ::set _=%_% --enable-pyside-extensions set _=%_% --enable-parent-ctor-heuristic set _=%_% --use-isnull-as-nb_nonzero set _=%_% --enable-return-value-heuristic set _=%_% --avoid-protected-hack set _=%_% --include-paths=%INC% set _=%_% --typesystem-paths=%PYSIDE_HOME%/typesystems;%TYPESYSTEM_PATH% set _=%_% --output-directory=%OUTDIR% >"%LOG%" shiboken %HEADER% %TYPESYSTEM% %_% || exit /b 1 dos2unix %OUTDIR%/* %OUTDIR%/*/* head "%LOG%" tail "%LOG%" :: EOF ::set INCLUDE=%PYSIDE_HOME%/include/shiboken;%PYTHON_HOME%/include;%INCLUDE% ::set INCLUDE=%PYSIDE_HOME%/include;%PYSIDE_HOME%/include/PySide;%PYSIDE_HOME%/include/PySide/QtCore;%PYSIDE_HOME%/include/PySide/QtGui;%INCLUDE% ::set INCLUDE=%INC%;%INCLUDE% ::set LIB=%PYTHON_HOME%/libs;%PYSIDE_HOME%;%LIB% ::set LIB=%QT_HOME%/lib;%LIB% ::set LIB=%DESTDIR%;%LIB% ::set _= ::set _=%_% -EHsc -LD -DUNICODE ::set _=%_% python27.lib shiboken-python2.7.lib pyside-python2.7.lib ::set _=%_% QtCore4.lib QtGui4.lib ::set _=%_% %DESTDIR%/%TARGET%.lib ::set _=%_% /I. ::set _=%_% /I%OUTDIR%/%TARGET% ::set PREFIX=%OUTDIR%/%TARGET%/%TARGET% ::cl %_% %PREFIX%_module_wrapper.cpp %PREFIX%_wrapper.cpp /Fe%TARGET%.pyd
Dangetsu/vnr
Frameworks/Sakura/cpp/plugins/pywinutil/update_binding.cmd
bat
gpl-3.0
2,938
cd D:\sync.com\Sync\LYM-projects\ perl D:\sync.com\Sync\LYM-projects\Projects\cmd\PG_confGenerator_Projects-v3.prl Projects\configuration\LYM_effe-head-single.csv Projects\scenarios\LYM_effe-scenario-v3.csv Projects\shaders\LYM_ParticleAnimation_effe.frag Projects\shaders\LYM_ParticleAnimation_effe_full.frag Projects\shaders\LYM_Update_effe.frag Projects\shaders\LYM_Update_effe_full.frag Projects\shaders\LYM_Mixing_effe.frag Projects\shaders\LYM_Mixing_effe_full.frag Projects\shaders\LYM_ParticleSplat_effe.frag Projects\shaders\LYM_ParticleSplat_effe_full.frag Projects\shaders\LYM_Master_effe.frag Projects\shaders\LYM_Master_effe_full.frag ..\LYM-sources\Porphyrograph-src\pg_script_header_effe.h ..\LYM-sources\Porphyrograph-src\pg_script_body_effe.cpp ..\LYM-sources\Porphyrograph-src\pg_shader_header_effe.h ..\LYM-sources\Porphyrograph-src\pg_shader_body_decl_effe.cpp ..\LYM-sources\Porphyrograph-src\pg_shader_body_bind_effe.cpp ..\LYM-sources\Porphyrograph-src\pg_update_body_effe.cpp D:\sync.com\Sync\LYM-sources\Porphyrograph-VC17\Release\core_effe\Porphyrograph_core_effe.exe ./Projects/configuration/LYM_effe-head-single.csv ./Projects/scenarios/LYM_effe-scenario-v3.csv
yukao/Porphyrograph
LYM-projects/batFiles/project-archives/effe/effe.PG-single.bat
bat
gpl-3.0
1,191
REM REM this bacth file compiles a TEXI documenation REM the argument has to be the file to be compiled REM w/o the texi.jam extension REM REM This is the light version of the batch file mkth REM because this one does not compile with the TeX REM REM This version can be used during development to REM generate a fast HTML and chm proofread version of REM the altered document REM cd html\texi mkdir tmp cd tmp perl ..\..\jamal.pl ..\%1.texi.jam %1.texi perl ..\..\..\t2h.pl %1.texi %1 mkdir ..\..\..\..\html\texi\ copy %1.html ..\..\..\..\html\texi\ del %1.html rm -rf ..\..\..\..\html\texi\%1 mkdir ..\..\..\..\html\texi\%1 copy *.html ..\..\..\..\html\texi\%1\ hhc %1.hhp copy *.chm ..\..\..\..\html\texi\ cd .. rem rm -rf tmp cd ..\..
verhas/ScriptBasic
mkthl.cmd
bat
lgpl-2.1
744
set OPTS=/Ox /Oy /MT /DNDEBUG set FLAGS=-D__USE_MINGW_ANSI_STDIO=1 cl %OPTS% %FLAGS% /Fempython.exe micropython\py\*.c -I micropython -I micropython\windows -I micropython\windows\build -I micropython\windows\msvc micropython\windows\msvc\*.c -DM_PI=3.14159265358979323846 -DM_E=2.7182818284590452354 micropython\windows\*.c micropython\extmod\*.c micropython\unix\main.c micropython\unix\file.c micropython\unix\input.c micropython\unix\modos.c micropython\unix\modtime.c micropython\unix\gccollect.c micropython\lib\mp-readline\readline.c %* del *.obj
r-lyeh/scriptorium
python/make.bat
bat
unlicense
556
:: This batch file loads the NHol interactive environment into the :: latest version of F# Interactive (FSI) available on this machine. @echo off :: Restore NuGet packages (if necessary) before proceeding. .nuget\NuGet.exe restore NHol\packages.config -PackagesDirectory packages if %errorlevel% neq 0 ( echo Unable to restore NuGet packages. echo Exiting... exit /b %errorlevel% ) :: Variables which hold paths to various versions of F# Interactive. set FSI_30= "C:\Program Files (x86)\Microsoft SDKs\F#\3.0\Framework\v4.0\fsi.exe" set FSI_20= "C:\Program Files (x86)\Microsoft F#\v4.0\fsi.exe" :: Arguments to be passed to FSI, regardless of which version we're using. set FSI_ARGS= :: Try to find the user's installation of F# Interactive. if exist %FSI_30% ( :: VS 2012 / F# 3.0 echo Using F# 3.0 :: Set the 'FSI' variable to the path for F# 3.0 Interactive. set FSI= %FSI_30% ) else ( if exist %FSI_20% ( :: VS 2010 / F# 2.0 echo Using F# 2.0 :: Set the 'FSI' variable to the path for F# 2.0 Interactive. set FSI= %FSI_20% ) else ( :: Unable to find the F# installation, so exit. echo Unable to find an installation of F# interactive at any known location. echo Exiting... exit ) ) :: Set variables which hold command-line arguments to be passed to F# Interactive. set FSI_ARGS= %FSI_ARGS% -I:NHol^ --define:DEBUG^ --define:TRACE^ --define:USE^ --use:init.fsx^ --use:Logging.fs^ --use:system.fs^ --use:lib.fs^ --use:fusion.fs^ --use:basics.fs^ --use:nets.fs^ --use:printer.fs^ --use:preterm.fs^ --use:parser.fs^ --use:equal.fs^ --use:bool.fs^ --use:drule.fs^ --use:tactics.fs^ --use:itab.fs^ --use:simp.fs^ --use:theorems.fs^ --use:ind_defs.fs^ --use:class.fs^ --use:trivia.fs^ --use:canon.fs^ --use:meson.fs^ --use:quot.fs^ --use:pair.fs^ --use:nums.fs^ --use:recursion.fs^ --use:arith.fs^ --use:wf.fs^ --use:calc_num.fs^ --use:normalizer.fs^ --use:grobner.fs^ --use:ind_types.fs^ --use:lists.fs^ --use:realax.fs^ --use:calc_int.fs^ --use:realarith.fs^ --use:real.fs^ --use:calc_rat.fs^ --use:int.fs^ --use:sets.fs^ --use:iterate.fs^ --use:cart.fs^ --use:define.fs^ --use:help.fs^ --use:database.fs :: NOTE : The last filename should NOT have a trailing ^ character! :: Load the NHol environment into the detected version of F# Interactive. echo Loading NHol into F# Interactive. %FSI% %FSI_ARGS%
jack-pappas/NHol
NHol.bat
bat
apache-2.0
2,487
set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_40 set JVM_OPS=-Xmx800m -Dstorage.diskCache.bufferSize=3000 -Dstorage.useWAL=false -Dstorage.wal.syncOnPageFlush=false "%JAVA_HOME%\bin\java" %JVM_OPS% -classpath ./* com.siams.orientdb.evaluation.VDbImport %1 %2
imaging4j/orientdb-performance-evaluation
build/VBdImport.cmd
bat
apache-2.0
258
@echo off rem if your client repository is different, change the value. set CLIENT_REPO=%WSFC_HOME% %WSFC_HOME%\samples\bin\rampartc\saml_protect_echo.exe http://localhost:9090/axis2/services/sec_echo/echoString %CLIENT_REPO% @echo on
techhead/wsf_php_dist
wsf_c/rampartc/samples/client/saml_protect/update_n_run.bat
bat
apache-2.0
237
rem @echo off ver | find "5.0" > nul if %ERRORLEVEL% == 0 goto Win2000 ver | find "5.1" > nul if %ERRORLEVEL% == 0 goto WinXP%PROCESSOR_ARCHITEW6432% goto Win2003 :Win2000 goto v068 :WinXP goto WinXP%PROCESSOR_ARCHITECTURE% :WinXPx86 goto v068 :WinXPamd64 goto v105x64 :Win2003 goto v105%PROCESSOR_ARCHITEW6432% :v105 goto v105%PROCESSOR_ARCHITECTURE% :v105x86 echo 2.0.105 32-bit "%~dp0MirrInst32.exe" -i "dfmirage" "Mirage Driver" "%~dp0105\" "%~dp0105\dfmirage.inf" goto Result :v105amd64 echo 2.0.105 64-bit "%~dp0MirrInst64.exe" -i "dfmirage" "Mirage Driver" "%~dp0105\" "%~dp0105\dfmirage.inf" goto Result :v068 echo 1.1.68 "%~dp0MirrInst32.exe" -i "dfmirage" "Mirage Driver" "%~dp0068\" "%~dp0068\dfmirage.inf" goto Result :Result echo Result code is %ERRORLEVEL% :end
eSDK/esdk_uc_plugin_lync
platform/TUPSDK/TUP_V100R001C30/DataConf/DFMirageAllOS/Install.cmd
bat
apache-2.0
790
@if "%DEBUG%" == "" @echo off @rem ########################################################################## @rem @rem Backup External HD startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME%.. @rem Add default JVM options here. You can also use JAVA_OPTS and BACKUP_EXTERNAL_HD_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS= @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 Windows variants if not "%OS%" == "Windows_NT" goto win9xME_args :win9xME_args @rem Slurp the command line arguments. set CMD_LINE_ARGS= set _SKIP=2 :win9xME_args_slurp if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\lib\Backup External HD-1.0.1.jar;%APP_HOME%\lib\commons-io-2.5.jar @rem Execute Backup External HD "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %BACKUP_EXTERNAL_HD_OPTS% -classpath "%CLASSPATH%" org.vega.tools.ExtCopyBackUp %CMD_LINE_ARGS% :end @rem End local scope for the variables with windows NT shell if "%ERRORLEVEL%"=="0" goto mainEnd :fail rem Set variable BACKUP_EXTERNAL_HD_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! if not "" == "%BACKUP_EXTERNAL_HD_EXIT_CONSOLE%" exit 1 exit /b 1 :mainEnd if "%OS%"=="Windows_NT" endlocal :omega
carsten-engelke/vega-tools
vegaBackupExternalHD/build/scripts/Backup External HD.bat
bat
apache-2.0
2,321
@rem Copyright 2018 The gRPC Authors @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem Current package versions set VERSION=1.20.0-dev @rem Adjust the location of nuget.exe set NUGET=C:\nuget\nuget.exe set DOTNET=dotnet mkdir ..\..\artifacts @rem Collect the artifacts built by the previous build step mkdir nativelibs powershell -Command "cp -r ..\..\input_artifacts\csharp_ext_* nativelibs" @rem Collect protoc artifacts built by the previous build step mkdir protoc_plugins powershell -Command "cp -r ..\..\input_artifacts\protoc_* protoc_plugins" %DOTNET% restore Grpc.sln || goto :error @rem To be able to build, we also need to put grpc_csharp_ext to its normal location xcopy /Y /I nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll ..\..\cmake\build\x64\Release\ %DOTNET% build --configuration Release Grpc.Core || goto :error @rem build HealthCheck to get hold of Google.Protobuf.dll assembly %DOTNET% build --configuration Release Grpc.HealthCheck || goto :error @rem copy Grpc assemblies to the unity package skeleton @rem TODO(jtattermusch): Add Grpc.Auth assembly and its dependencies copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core.Api\lib\net45\Grpc.Core.Api.dll || goto :error copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.Core.Api\lib\net45\Grpc.Core.Api.pdb || goto :error copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.Core.Api\lib\net45\Grpc.Core.Api.xml || goto :error copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.dll || goto :error copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.pdb || goto :error copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.xml || goto :error @rem copy desktop native libraries to the unity package skeleton copy /Y nativelibs\csharp_ext_linux_x86\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux\x86\libgrpc_csharp_ext.so || goto :error copy /Y nativelibs\csharp_ext_linux_x64\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux\x64\libgrpc_csharp_ext.so || goto :error copy /Y nativelibs\csharp_ext_macos_x86\libgrpc_csharp_ext.dylib unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\osx\x86\grpc_csharp_ext.bundle || goto :error copy /Y nativelibs\csharp_ext_macos_x64\libgrpc_csharp_ext.dylib unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\osx\x64\grpc_csharp_ext.bundle || goto :error copy /Y nativelibs\csharp_ext_windows_x86\grpc_csharp_ext.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\win\x86\grpc_csharp_ext.dll || goto :error copy /Y nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\win\x64\grpc_csharp_ext.dll || goto :error @rem add Android and iOS native libraries copy /Y nativelibs\csharp_ext_linux_android_armeabi-v7a\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\android\armeabi-v7a\libgrpc_csharp_ext.so || goto :error copy /Y nativelibs\csharp_ext_linux_android_arm64-v8a\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\android\arm64-v8a\libgrpc_csharp_ext.so || goto :error copy /Y nativelibs\csharp_ext_linux_android_x86\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\android\x86\libgrpc_csharp_ext.so || goto :error copy /Y nativelibs\csharp_ext_macos_ios\libgrpc_csharp_ext.a unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\ios\libgrpc_csharp_ext.a || goto :error copy /Y nativelibs\csharp_ext_macos_ios\libgrpc.a unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\ios\libgrpc.a || goto :error @rem add gRPC dependencies @rem TODO(jtattermusch): also include XMLdoc copy /Y Grpc.Core\bin\Release\net45\System.Interactive.Async.dll unitypackage\unitypackage_skeleton\Plugins\System.Interactive.Async\lib\net45\System.Interactive.Async.dll || goto :error @rem add Google.Protobuf @rem TODO(jtattermusch): also include XMLdoc copy /Y Grpc.HealthCheck\bin\Release\net45\Google.Protobuf.dll unitypackage\unitypackage_skeleton\Plugins\Google.Protobuf\lib\net45\Google.Protobuf.dll || goto :error @rem create a zipfile that will act as a Unity package cd unitypackage\unitypackage_skeleton zip -r ..\..\grpc_unity_package.zip Plugins cd ..\.. copy /Y grpc_unity_package.zip ..\..\artifacts\grpc_unity_package.%VERSION%.zip || goto :error goto :EOF :error echo Failed! exit /b %errorlevel%
carl-mastrangelo/grpc
src/csharp/build_unitypackage.bat
bat
apache-2.0
5,346
java -jar lib/jsonix-schema-compiler-full-${jsonix-schema-compiler.version}.jar -d target/generated-sources/xjc src/main/resources/purchaseorder.xsd -b src/main/resources/bindings.xjb -Xjsonix-compact
highsource/jsonix-schema-compiler
samples/po/project-build.bat
bat
bsd-2-clause
201
mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09164.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09171.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09178.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09185.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09192.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09199.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09206.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09213.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09220.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09227.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09235.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09241.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09248.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09255.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09262.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09269.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09276.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09283.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09290.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09297.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09304.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09311.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09318.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09325.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09332.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09335.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09339.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09346.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09353.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full09360.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10002.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10009.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10010.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10013.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10016.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10023.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10030.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10037.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10044.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10051.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10058.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10065.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10072.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10079.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10086.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10093.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10100.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10107.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10114.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10121.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10128.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10135.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10142.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10149.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10156.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10163.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10170.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10177.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10184.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10191.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10198.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10205.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10212.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10219.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10226.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10233.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10240.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10247.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10254.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10261.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10268.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10275.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10282.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10289.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10296.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10303.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10310.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10317.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10324.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10331.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10338.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10345.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10352.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full10359.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11001.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11008.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11015.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11022.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11029.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11036.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11043.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11050.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11057.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11064.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11071.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11078.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11085.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11092.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11099.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11106.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11113.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11120.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11127.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11134.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11141.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11148.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11155.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11162.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11169.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11176.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11183.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11190.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11197.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11204.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11211.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11218.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11225.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11232.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11239.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11246.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11253.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11260.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11267.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11274.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11281.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11288.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11295.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11302.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11309.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11316.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11323.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11330.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11337.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11344.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11351.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full11358.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12000.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12007.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12014.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12021.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12028.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12035.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12042.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12049.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12056.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12063.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12070.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12077.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12084.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12091.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12098.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12105.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12112.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12119.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12126.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12133.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12140.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12147.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12154.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12161.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12168.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12175.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12182.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12189.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12196.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12203.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12210.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12217.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12224.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12231.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12238.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12245.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12252.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12259.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12266.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12273.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12280.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12287.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12294.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12301.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12308.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12315.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12322.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12329.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12336.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12343.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12350.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12357.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full12364.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13005.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13012.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13019.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13026.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13033.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13040.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13047.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13054.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13061.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13068.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13075.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13082.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13089.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13096.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13103.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13110.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13117.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13124.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13131.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13138.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13145.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13152.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13159.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13166.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13173.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13180.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13187.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13194.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13201.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13208.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13215.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13222.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13229.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13236.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13243.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13250.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13257.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13264.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13271.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13278.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13285.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13292.sql" mysql CFDA -u [username] -p[password] --host=[host] --execute="source programs-full13299.sql"
CSSIP-AIR/UMETRICS
Scripts/LoadRaw/CFDA/LoadAllCFDAFiles.cmd
bat
bsd-2-clause
21,808
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\CookiecutterStaticSiteGenerator.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\CookiecutterStaticSiteGenerator.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
jambonsw/cookiecutter-static-site
docs/make.bat
bat
bsd-2-clause
7,299
@call %~dp0/../_etc/lgl_set.bat
greenlaw110/winenv
etc/lgl_set.bat
bat
bsd-2-clause
31
@echo off set file="DEMO4" if exist %file%.obj del %file%.obj if not exist %file%.asm goto errasm ..\..\..\bin\nasm -f win64 %file%.asm -o %file%.obj if errorlevel 1 goto errasm ..\..\..\bin\GoLink.exe /console /entry main DEMO4.obj msvcrt.dll if errorlevel 1 goto errlink if exist %file%.obj del %file%.obj goto TheEnd :errlink echo _ echo Link error pause goto TheEnd :errasm echo _ echo Assembly Error pause goto TheEnd :TheEnd echo _
thlorenz/nasmx
demos/win64/DEMO4/demo4.bat
bat
bsd-2-clause
474
@ECHO OFF REM Command file for Sphinx documentation pushd %~dp0 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_elements.papersize=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_elements.papersize=%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 an HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\SHEDsidewinder.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\SHEDsidewinder.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end popd
CJ-Wright/sidewinder-spec
docs/make.bat
bat
bsd-3-clause
7,502