code stringlengths 3 1.03M | repo_name stringlengths 5 84 | path stringlengths 4 233 | language stringclasses 1
value | license stringclasses 15
values | size int32 3 1.03M |
|---|---|---|---|---|---|
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\swan.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\swan.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
| INM-6/swan | doc/make.bat | bat | bsd-3-clause | 5,101 |
@echo off
cmd /c build_dll_release.bat
cmd /c build_dll_release_x64.bat
pause | pierrepayen/Qonsole | dll/BuildAll.bat | bat | mit | 77 |
@echo off
goto :main
======================================================================
Perform a clean build, run tests and create NuGet packages for this
solution. Note that this also modifies the following file, replacing
placeholder version numbers with actual version numbers:
src\common\GlobalAssemblyInfo.cs
(see the SetVersionNumber task in xunit.performance.msbuild)
This file will, therefore, show up as modified after the build.
Be careful NOT to check it in that way!
If you publish these packages to Nuget, then please remember to
bump the build number on BuildSemanticVersion below.
======================================================================
:main
setlocal
set BuildAssemblyVersion=1.0.0.18
set BuildSemanticVersion=1.0.0-alpha-build0018
echo Building version %BuildSemanticVersion% NuGet packages.
echo WARNING: Some source files will be modified during this build.
echo WARNING: Please be careful not to check in those modifications.
msbuild.exe /m /nologo /t:Nightly /v:m /fl xunit.performance.msbuild
goto :eof | mmitche/xunit-performance | NightlyBuild.cmd | bat | mit | 1,057 |
@echo off
set "VIRTUAL_ENV=C:\cygwin64\home\PS\git\big-data-python-class"
if defined _OLD_VIRTUAL_PROMPT (
set "PROMPT=%_OLD_VIRTUAL_PROMPT%"
) else (
if not defined PROMPT (
set "PROMPT=$P$G"
)
set "_OLD_VIRTUAL_PROMPT=%PROMPT%"
)
set "PROMPT=(big-data-python-class) %PROMPT%"
REM Don't use () to avoid problems with them in %PATH%
if defined _OLD_VIRTUAL_PYTHONHOME goto ENDIFVHOME
set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%"
:ENDIFVHOME
set PYTHONHOME=
REM if defined _OLD_VIRTUAL_PATH (
if not defined _OLD_VIRTUAL_PATH goto ENDIFVPATH1
set "PATH=%_OLD_VIRTUAL_PATH%"
:ENDIFVPATH1
REM ) else (
if defined _OLD_VIRTUAL_PATH goto ENDIFVPATH2
set "_OLD_VIRTUAL_PATH=%PATH%"
:ENDIFVPATH2
set "PATH=%VIRTUAL_ENV%\Scripts;%PATH%"
| hethapu/big-data-python-class | Scripts/activate.bat | bat | mit | 768 |
set JAVA_HOME=C:\Program Files\Java\jdk1.5.0_19 | NCIP/caarray | qa/software/Legacy_API_Test_Suite/setEnv.bat | bat | bsd-3-clause | 49 |
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:Rdpevor_VideoStreamingTest_Positive_OverUDPTransport /Logger:trx
pause
| dongruiqing/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPEVOR/Rdpevor_VideoStreamingTest_Positive_OverUDPTransport.cmd | bat | mit | 241 |
@Rem This is a batch file for myflow algorithm
@Rem --for the report
@rem --V6E10
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E10D3_1.txt data\graphgen\E10D3_1.txt data\graphgen\result\E10D3_1.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E10D3_2.txt data\graphgen\E10D3_2.txt data\graphgen\result\E10D3_2.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E10D3_3.txt data\graphgen\E10D3_3.txt data\graphgen\result\E10D3_3.txt
@rem --V8E14
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E16D3_1.txt data\graphgen\E16D3_1.txt data\graphgen\result\E16D3_1.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E16D3_2.txt data\graphgen\E16D3_2.txt data\graphgen\result\E16D3_2.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E16D3_3.txt data\graphgen\E16D3_3.txt data\graphgen\result\E16D3_3.txt
@rem --V8E14
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E20D3_1.txt data\graphgen\E20D3_1.txt data\graphgen\result\E20D3_1.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E20D3_2.txt data\graphgen\E20D3_2.txt data\graphgen\result\E20D3_2.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E20D3_3.txt data\graphgen\E20D3_3.txt data\graphgen\result\E20D3_3.txt
@rem --V10E18
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E24D3_1.txt data\graphgen\E24D3_1.txt data\graphgen\result\E24D3_1.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E24D3_2.txt data\graphgen\E24D3_2.txt data\graphgen\result\E24D3_2.txt
start /wait E:\myFlow_ICA\Debug\myFlow_ICA.exe data\graphgen\st\E24D3_3.txt data\graphgen\E24D3_3.txt data\graphgen\result\E24D3_3.txt
pause
| yuanmouren1hao/KeyEdge_Mining_On_UncertainGraph | myFlow_ICA_new_test/Run_graphgen.bat | bat | apache-2.0 | 1,855 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\ownCloudClient.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ownCloudClient.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
| owncloud/pyocclient | docs/make.bat | bat | mit | 6,726 |
@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\marathon.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\marathon.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
| vitan/marathon-python | docs/make.bat | bat | mit | 6,705 |
set tmp=%1
set proj=%tmp:Public=%
md ..\..\..\..\Hydra\bin\%2\Plugins
copy StockSharp.Hydra.%proj%.dll ..\..\..\..\Hydra\bin\%2\Plugins\StockSharp.Hydra.%proj%.dll
if %2 == Debug goto :debug
goto :exit
:debug
copy StockSharp.Hydra.%proj%.pdb ..\..\..\..\Hydra\bin\%2\Plugins\StockSharp.Hydra.%proj%.pdb
:exit | imbugs/StockSharp | Hydra/Plugins/plugins.bat | bat | lgpl-3.0 | 314 |
/*
//###########################################################################
//
// FILE: 28065_RAM_CLA_lnk.cmd
//
// TITLE: Linker Command File For F28065 examples that run out of RAM
//
// This ONLY includes all SARAM blocks on the F28065 device.
// This does not include flash or OTP.
//
// Keep in mind that L0,L1,L2,L3 and L4 are protected by the code
// security module.
//
// What this means is in most cases you will want to move to
// another memory map file which has more memory defined.
//
//###########################################################################
// $TI Release: 2806x C/C++ Header Files V1.10 $
// $Release Date: April 7, 2011 $
//###########################################################################
*/
/* ======================================================
// For Code Composer Studio V2.2 and later
// ---------------------------------------
// In addition to this memory linker command file,
// add the header linker command file directly to the project.
// The header linker command file is required to link the
// peripheral structures to the proper locations within
// the memory map.
//
// The header linker files are found in <base>\F2806x_headers\cmd
//
// For BIOS applications add: F2806x_Headers_BIOS.cmd
// For nonBIOS applications add: F2806x_Headers_nonBIOS.cmd
========================================================= */
/* ======================================================
// For Code Composer Studio prior to V2.2
// --------------------------------------
// 1) Use one of the following -l statements to include the
// header linker command file in the project. The header linker
// file is required to link the peripheral structures to the proper
// locations within the memory map */
/* Uncomment this line to include file only for non-BIOS applications */
/* -l F2806x_Headers_nonBIOS.cmd */
/* Uncomment this line to include file only for BIOS applications */
/* -l F2806x_Headers_BIOS.cmd */
/* 2) In your project add the path to <base>\F2806x_headers\cmd to the
library search path under project->build options, linker tab,
library search path (-i).
/*========================================================= */
/* Define the memory block start/length for the F2806x
PAGE 0 will be used to organize program sections
PAGE 1 will be used to organize data sections
Notes:
Memory blocks on F28065 are uniform (ie same
physical memory) in both PAGE 0 and PAGE 1.
That is the same memory region should not be
defined for both PAGE 0 and PAGE 1.
Doing so will result in corruption of program
and/or data.
Contiguous SARAM memory blocks can be combined
if required to create a larger memory block.
*/
MEMORY
{
PAGE 0 :
/* BEGIN is used for the "boot to SARAM" bootloader mode */
BEGIN : origin = 0x000000, length = 0x000002
RAMM0 : origin = 0x000050, length = 0x0003B0
RAML0_L2 : origin = 0x008000, length = 0x001000
RAML3 : origin = 0x009000, length = 0x001000
RESET : origin = 0x3FFFC0, length = 0x000002
FPUTABLES : origin = 0x3FD860, length = 0x0006A0 /* FPU Tables in Boot ROM */
IQTABLES : origin = 0x3FDF00, length = 0x000B50 /* IQ Math Tables in Boot ROM */
IQTABLES2 : origin = 0x3FEA50, length = 0x00008C /* IQ Math Tables in Boot ROM */
IQTABLES3 : origin = 0x3FEADC, length = 0x0000AA /* IQ Math Tables in Boot ROM */
BOOTROM : origin = 0x3FF3B0, length = 0x000C10
PAGE 1 :
BOOT_RSVD : origin = 0x000002, length = 0x00004E /* Part of M0, BOOT rom will use this for stack */
RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
RAML4 : origin = 0x00a000, length = 0x002000 /* on-chip RAM block L4 */
RAML5 : origin = 0x00C000, length = 0x002000 /* on-chip RAM block L5 */
RAML6 : origin = 0x00E000, length = 0x002000 /* on-chip RAM block L6 */
RAML7 : origin = 0x010000, length = 0x002000 /* on-chip RAM block L7 */
RAML8 : origin = 0x012000, length = 0x002000 /* on-chip RAM block L8 */
USB_RAM : origin = 0x040000, length = 0x000800 /* USB RAM */
CLA1_MSGRAMLOW : origin = 0x001480, length = 0x000080
CLA1_MSGRAMHIGH : origin = 0x001500, length = 0x000080
}
SECTIONS
{
/* Setup for "boot to SARAM" mode:
The codestart section (found in DSP28_CodeStartBranch.asm)
re-directs execution to the start of user code. */
codestart : > BEGIN, PAGE = 0
ramfuncs : > RAMM0, PAGE = 0
.text : > RAML0_L2, PAGE = 0
.cinit : > RAMM0, PAGE = 0
.pinit : > RAMM0, PAGE = 0
.switch : > RAMM0, PAGE = 0
.reset : > RESET, PAGE = 0, TYPE = DSECT /* not used, */
.stack : > RAMM1, PAGE = 1
.ebss : > RAML4, PAGE = 1
.econst : > RAML4, PAGE = 1
.esysmem : > RAML4, PAGE = 1
IQmath : > RAML0_L2, PAGE = 0
IQmathTables : > IQTABLES, PAGE = 0, TYPE = NOLOAD
/* Allocate FPU math areas: */
FPUmathTables : > FPUTABLES, PAGE = 0, TYPE = NOLOAD
DMARAML5 : > RAML5, PAGE = 1
DMARAML6 : > RAML6, PAGE = 1
DMARAML7 : > RAML7, PAGE = 1
DMARAML8 : > RAML8, PAGE = 1
Cla1Prog : LOAD = RAML0_L2,
RUN = RAML3,
LOAD_START(_Cla1funcsLoadStart),
LOAD_END(_Cla1funcsLoadEnd),
RUN_START(_Cla1funcsRunStart),
LOAD_SIZE(_Cla1funcsLoadSize),
PAGE = 0
Cla1ToCpuMsgRAM : > CLA1_MSGRAMLOW, PAGE = 1
CpuToCla1MsgRAM : > CLA1_MSGRAMHIGH, PAGE = 1
/* Uncomment the section below if calling the IQNexp() or IQexp()
functions from the IQMath.lib library in order to utilize the
relevant IQ Math table in Boot ROM (This saves space and Boot ROM
is 1 wait-state). If this section is not uncommented, IQmathTables2
will be loaded into other memory (SARAM, Flash, etc.) and will take
up space, but 0 wait-state is possible.
*/
/*
IQmathTables2 : > IQTABLES2, PAGE = 0, TYPE = NOLOAD
{
IQmath.lib<IQNexpTable.obj> (IQmathTablesRam)
}
*/
/* Uncomment the section below if calling the IQNasin() or IQasin()
functions from the IQMath.lib library in order to utilize the
relevant IQ Math table in Boot ROM (This saves space and Boot ROM
is 1 wait-state). If this section is not uncommented, IQmathTables2
will be loaded into other memory (SARAM, Flash, etc.) and will take
up space, but 0 wait-state is possible.
*/
/*
IQmathTables3 : > IQTABLES3, PAGE = 0, TYPE = NOLOAD
{
IQmath.lib<IQNasinTable.obj> (IQmathTablesRam)
}
*/
}
/*
//===========================================================================
// End of file.
//===========================================================================
*/
| battosai30/Energia | hardware/c2000/cores/c2000/F2806x_common/cmd/28065_RAM_CLA_lnk.cmd | bat | lgpl-2.1 | 7,515 |
@ECHO OFF
REM
REM Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
REM Use of this source code is governed by a BSD-style license that can be
REM found in the LICENSE file.
REM
PATH %PATH%;%ProgramFiles(x86)%\Windows Kits\8.1\bin\x86;%DXSDK_DIR%\Utilities\bin\x86
setlocal
set errorCount=0
set successCount=0
set debug=0
if "%1" == "debug" (
set debug=1
)
if "%1" == "release" (
set debug=0
)
:: | Input file | Entry point | Type | Output file | Debug |
call:BuildShader Blit.vs standardvs vs_2_0 compiled\standardvs.h %debug%
call:BuildShader Blit.vs flipyvs vs_2_0 compiled\flipyvs.h %debug%
call:BuildShader Blit.ps passthroughps ps_2_0 compiled\passthroughps.h %debug%
call:BuildShader Blit.ps luminanceps ps_2_0 compiled\luminanceps.h %debug%
call:BuildShader Blit.ps componentmaskps ps_2_0 compiled\componentmaskps.h %debug%
echo.
if %successCount% GTR 0 (
echo %successCount% shaders compiled successfully.
)
if %errorCount% GTR 0 (
echo There were %errorCount% shader compilation errors.
)
endlocal
exit /b
:BuildShader
set input=%~1
set entry=%~2
set type=%~3
set output=%~4
set debug=%~5
if %debug% == 0 (
set "buildCMD=fxc /nologo /E %entry% /T %type% /Fh %output% %input%"
) else (
set "buildCMD=fxc /nologo /Zi /Od /E %entry% /T %type% /Fh %output% %input%"
)
set error=0
%buildCMD% || set error=1
if %error% == 0 (
set /a successCount=%successCount%+1
) else (
set /a errorCount=%errorCount%+1
)
exit /b
| guorendong/iridium-browser-ubuntu | third_party/angle/src/libANGLE/renderer/d3d/d3d9/shaders/generate_shaders.bat | bat | bsd-3-clause | 1,731 |
:: Licensed to the Apache Software Foundation (ASF) under one
:: or more contributor license agreements. See the NOTICE file
:: distributed with this work for additional information
:: regarding copyright ownership. The ASF licenses this file
:: to you under the Apache License, Version 2.0 (the
:: "License"); you may not use this file except in compliance
:: with the License. You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing,
:: software distributed under the License is distributed on an
:: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
:: KIND, either express or implied. See the License for the
:: specific language governing permissions and limitations
:: under the License
@ECHO OFF
SET full_path="%~dp0"
IF EXIST %full_path%..\VERSION (
type %full_path%..\VERSION
) ELSE (
ECHO.
ECHO ERROR: Could not find file VERSION in project folder
EXIT /B 1
)
| corimf/cordova-windows | template/cordova/version.bat | bat | apache-2.0 | 993 |
@SETLOCAL
@echo off
SET OPTIONS=%1
SET SAMPLE_DATA=%1
if NOT '%SAMPLE_DATA%' EQU '' SET SAMPLE_DATA=1
if '%SAMPLE_DATA%' EQU '' SET SAMPLE_DATA=0
@echo.
@echo.
@echo.Sample data:[%SAMPLE_DATA%]
@echo.
@echo.
@IF NOT DEFINED SCRIPT_DIR FOR /f %%i IN ('cd') DO @SET SCRIPT_DIR=%%i
CALL setenv.cmd
@if NOT "%errorlevel%" EQU "0" goto ERROR
IF DEFINED required_software_missing goto ERROR
set PATH=%SQLANY11%\bin32;%PATH%
@if "%OPTIONS%." EQU "1." set OPTIONS=
@rem Jump to label if specified
@if NOT "%OPTIONS%." EQU "." goto %OPTIONS%
CALL cleanup11.cmd
:UPDATE
@echo.
@echo.
@echo Update objects (triggers, procedures, web services)
@echo.
:SAMPLE_DATA
@echo.
@echo.
@echo Create report
@echo.
cd %SQL_DIR%
@echo on
%DBISQL% -c "dsn=%CONS%;uid=dba;pwd=%CONS_PWD%;autostop=no" read schema_logging.sql;
@echo off
@if NOT "%errorlevel%" EQU "0" goto ERROR
@echo errorlevel [%errorlevel%]
:DONE
@echo.
@echo.
@echo.-------------------------------------------
@echo All Done!
@echo.-------------------------------------------
@echo.
@echo.
goto END
:ERROR
FOR /f %%i IN ('cd') DO @SET CURR_DIR=%%i
@echo.
@echo.
@echo.-------------------------------------------
@echo. ERROR!!
@echo errorlevel = %errorlevel%
@echo gendb11.cmd
@echo.
@echo.Working directory:
@echo CURR_DIR=%CURR_DIR%
@echo.-------------------------------------------
@echo.
goto END
:ERROR_OPTIONS
@echo.
@echo.
@echo.
@echo ********************************************************
@echo * Please provide dev, qa, demo as a commandline option *
@echo ********************************************************
@echo.
@echo.
@echo.
GOTO END
:END
cd %SCRIPT_DIR%
@ENDLOCAL
| SolaWing/ctags-1 | Units/review-needed.r/dosbatch_test.cmd.t/input.cmd | bat | gpl-2.0 | 1,739 |
C:\Data\tools\sonar\sonar-scanner-2.8\bin\sonar-scanner.bat -Dsonar.verbose=true -Dsonar.login=c7c254cb661fa3c69f6ec2dc34dcf14f8845c836 | segilbert/docker-images | sonar/sonarqube-win/resources/sonar-scanning-examples-master/sonarqube-scanner/src/java/run.sonar.bat | bat | mit | 135 |
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
mkdir x86
mkdir x64
lib /def:"libvlc.def" /out:"x86\libvlc.lib" /machine:x86
lib /def:"libvlc.def" /out:"x64\libvlc.lib" /machine:x64
lib /def:"libvlccore.def" /out:"x86\libvlccore.lib" /machine:x86
lib /def:"libvlccore.def" /out:"x64\libvlccore.lib" /machine:x64 | aleksas/libvlc-stream-grabber | lib/vlc-2.2/make_lib.bat | bat | mit | 337 |
gradle build
gradle bootRun
pause | rehfeldchris/hello-world | run.bat | bat | mit | 33 |
@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\Naggum.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Naggum.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
| codingteam/naggum | docs/make.bat | bat | mit | 6,986 |
@ECHO OFF
REM # Copyright (c) Stephen C. Gilardi. All rights reserved. The use and
REM # distribution terms for this software are covered by the Eclipse Public
REM # License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be
REM # found in the file epl-v10.html at the root of this distribution. By
REM # using this software in any fashion, you are agreeing to be bound by the
REM # terms of this license. You must not remove this notice, or any other,
REM # from this software.
REM #
REM # scgilardi (gmail)
REM # Created 7 January 2009
REM #
REM # Modified by Justin Johnson <justin _ honesthacker com> to act as Windows
REM # launcher for the Nailgun server of VimClojure, and to include a check for
REM # a .clojure file in the current directory.
REM #
REM # Environment variables:
REM #
REM # Optional:
REM #
REM # CLOJURE_EXT The path to a directory containing (either directly or as
REM # symbolic links) jar files and/or directories whose paths
REM # should be in Clojure's classpath. The value of the
REM # CLASSPATH environment variable for Clojure will be a list
REM # of these paths followed by the previous value of CLASSPATH
REM # (if any).
REM #
REM # CLOJURE_JAVA The command to launch a JVM instance for Clojure
REM # default: java
REM # example: /usr/local/bin/java6
REM #
REM # CLOJURE_OPTS Java options for this JVM instance
REM # default:
REM # example:"-Xms32M -Xmx128M -server"
REM #
REM # Configuration files:
REM #
REM # Optional:
REM #
REM # .clojure A file sitting in the directory where you invoke ng-server.
REM # Each line contains a single path that should be added to the classpath.
REM #
SETLOCAL ENABLEDELAYEDEXPANSION
REM # Add all jar files from CLOJURE_EXT directory to classpath
IF DEFINED CLOJURE_EXT FOR %%E IN ("%CLOJURE_EXT%\*") DO SET CP=!CP!;%%~fE
IF NOT DEFINED CLOJURE_JAVA SET CLOJURE_JAVA=java
REM # If the current directory has a .clojure file in it, add each path
REM # in the file to the classpath.
IF EXIST .clojure FOR /F %%E IN (.clojure) DO SET CP=!CP!;%%~fE
REM # Since we do not provide any security we at least bind only to the loopback.
%CLOJURE_JAVA% %CLOJURE_OPTS% -cp "%CP%" com.martiansoftware.nailgun.NGServer 127.0.0.1 %1 %2 %3 %4 %5 %6 %7 %8 %9
| jondistad/vimclojure | bin/ng-server.bat | bat | mit | 2,442 |
cmd_ipc/mq_sysctl.o := arm-none-linux-gnueabi-gcc -Wp,-MD,ipc/.mq_sysctl.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mq_sysctl)" -D"KBUILD_MODNAME=KBUILD_STR(mq_sysctl)" -c -o ipc/.tmp_mq_sysctl.o ipc/mq_sysctl.c
deps_ipc/mq_sysctl.o := \
ipc/mq_sysctl.c \
$(wildcard include/config/proc/sysctl.h) \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/spinlock.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/irq/time/accounting.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
$(wildcard include/config/mm/owner.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/math64.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/cpumask.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/nodemask.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
include/linux/srcu.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/ipc_namespace.h \
$(wildcard include/config/ipc/ns.h) \
$(wildcard include/config/posix/mqueue/sysctl.h) \
include/linux/err.h \
include/linux/idr.h \
ipc/mq_sysctl.o: $(deps_ipc/mq_sysctl.o)
$(deps_ipc/mq_sysctl.o):
| srinugnt2000/linux-2.6.37 | ipc/.mq_sysctl.o.cmd | bat | gpl-2.0 | 18,537 |
:: CmdRunner : Mikael Sollenborn 2016
@echo off
setlocal ENABLEDELAYEDEXPANSION
cmdwiz setfont 0&cls
set W=180&set H=110
mode con lines=%H% cols=%W%
mode con rate=31 delay=0
cmdwiz showcursor 0
color 07
for /F "Tokens=1 delims==" %%v in ('set') do if not %%v==H if not %%v==W set "%%v="
set RY=0
set /a XMID=%W%/2&set /a YMID=%H%/2-53
set DIST=2500
set ASPECT=0.6925
set DRAWMODE=0
set MAXCUBES=30
set GROUNDCOL=3
set ACCSPEED=350
set HISCORE=0&if exist hiscore.dat for /F "tokens=*" %%i in (hiscore.dat) do set HISCORE=%%i
set CUBECOL0=4 c db 4 c db 4 c b1 4 c b1 4 c 20 4 c 20
set CUBECOL1=6 0 db 6 0 db 6 e b1 6 e b1 6 e 20 6 e 20
set CUBECOL2=2 a db 2 a db 2 a b1 2 a b1 2 a 20 2 a 20
set CUBECOL3=5 d db 5 d db 5 d b1 5 d b1 5 d 20 5 d 20
set PLYCHAR=db
:OUTERLOOP
set NOFCUBES=15
set SCORE=0
set TILT=0
set ACTIVECUBES=0
set CURRZ=30000
set /A ACZ=%CURRZ%/%MAXCUBES%
for /L %%a in (1,1,%MAXCUBES%) do set /A CURRZ-=%ACZ% & set /A PZ%%a=!CURRZ!+ !RANDOM! %% %ACZ%& set /A PX%%a=!RANDOM! %% 8000 - 4000 & set /A PY%%a=-18000&set /A COLPAL=!RANDOM!%%4&for %%b in (!COLPAL!) do set CPAL%%a=!CUBECOL%%b!
set STARTINDEX=1
set BKSTR="fbox 0 1 b1 0,0,%W%,10 & fbox 0 1 20 0,10,%W%,5 & fbox 9 1 b1 0,15,%W%,5 & fbox 9 1 db 0,19,%W%,1 & fbox 0 0 20 0,21,%W%,5 & fbox 0 %GROUNDCOL% b2 0,23,%W%,5 & fbox 0 %GROUNDCOL% b1 0,27,%W%,10 & fbox 0 %GROUNDCOL% b0 0,34,%W%,22 & fbox 8 %GROUNDCOL% 20 0,50,%W%,100 "
set STOP=
:IDLELOOP
for /L %%1 in (1,1,100) do if not defined STOP for /L %%2 in (1,1,100) do if not defined STOP (
set CRSTR=""
set /A INDEX=!STARTINDEX!-1
for /L %%b in (1,1,%MAXCUBES%) do set /A INDEX+=1&(if !INDEX! gtr %MAXCUBES% set INDEX=1)&for %%a in (!INDEX!) do set CRSTR="!CRSTR:~1,-1! & 3d cube.ply %DRAWMODE%,-1 0,!RY!,0 !PX%%a!,-1800,!PZ%%a! -250,-250,-250,0,0,0 0,0,0,10 %XMID%,%YMID%,%DIST%,%ASPECT% !CPAL%%a!"&set /A PZ%%a-=%ACCSPEED% & if !PZ%%a! lss 1000 set PZ%%a=30000&set /A PX%%a=!RANDOM! %% 8000 - 4000&set /A STARTINDEX-=1&if !STARTINDEX! lss 1 set STARTINDEX=%MAXCUBES%
start "" /high /B cmdgfx_gdi "%BKSTR:~1,-1% & image CR2.gxy 0 0 0 20 28,2 & !CRSTR:~1,-1! & text f 1 0 _Press_SPACE_to_play_ 80,15" f0:0,0,180,110
getkey /N
set KEY=!ERRORLEVEL!
set /a RY+=8
if !KEY! == 27 set STOP=1
if !KEY! == 32 set STOP=2
)
if not defined STOP goto IDLELOOP
if %KEY% == 27 goto ESCAPE
set STOP=
:INGAMELOOP
for /L %%1 in (1,1,100) do if not defined STOP for /L %%2 in (1,1,100) do if not defined STOP (
set CRSTR=""
set /A INDEX=!STARTINDEX!-1
for /L %%b in (1,1,%MAXCUBES%) do set /A INDEX+=1&(if !INDEX! gtr %MAXCUBES% set INDEX=1)& for %%a in (!INDEX!) do set CRSTR="!CRSTR:~1,-1! & 3d cube.ply %DRAWMODE%,-1 0,!RY!,0 !PX%%a!,!PY%%a!,!PZ%%a! -250,-250,-250,0,0,0 0,0,0,10 %XMID%,%YMID%,%DIST%,%ASPECT% !CPAL%%a!"&set /A PZ%%a-=%ACCSPEED% & if !PZ%%a! lss 1000 set PZ%%a=30000&set /A PX%%a=!RANDOM! %% 8000 - 4000 - !TILT!*50 &(if !ACTIVECUBES! leq !NOFCUBES! if !PY%%a! lss -1800 if !RANDOM! lss 10922 set /A PY%%a=-1800&set /A ACTIVECUBES+=1)&set /A STARTINDEX-=1&if !STARTINDEX! lss 1 set STARTINDEX=%MAXCUBES%
start "" /high /B cmdgfx_gdi "%BKSTR:~1,-1% !CRSTR:~1,-1! & 3d tetramod.ply %DRAWMODE%,-1 0,180,!TILT! 0,-1800,4000 -50,-50,-50,0,0,0 1,0,0,10 %XMID%,%YMID%,%DIST%,%ASPECT% f %GROUNDCOL% %PLYCHAR% 7 %GROUNDCOL% %PLYCHAR% & 3d tetramod.ply %DRAWMODE%,-1 0,180,!TILT! 0,-1900,4000 -50,-50,-50,0,0,0 1,0,0,10 %XMID%,%YMID%,%DIST%,%ASPECT% 0 %GROUNDCOL% b2 0 %GROUNDCOL% b2 & text 7 1 0 SCORE:_!SCORE!_(!HISCORE!) 2,1" f0:0,0,180,110
getkey /N
set KEY=!ERRORLEVEL!
for /L %%a in (1,1,%MAXCUBES%) do if !PY%%a! gtr -15000 if !PZ%%a! lss 4000 if !PZ%%a! gtr 3500 if !PX%%a! gtr -300 if !PX%%a! lss 300 (for /L %%a in (1,1,40) do set /A TILT+=40 & cmdgfx "%BKSTR:~1,-1% !CRSTR:~1,-1! & 3d tetramod.ply %DRAWMODE%,-1 0,180,!TILT! 0,-1800,4000 -50,-50,-50,0,0,0 1,0,0,10 %XMID%,%YMID%,%DIST%,%ASPECT% f %GROUNDCOL% %PLYCHAR% 7 %GROUNDCOL% %PLYCHAR% & text 7 1 0 SCORE:_!SCORE!_(!HISCORE!) 2,1")&set STOP=1
set /A NOFCUBES=15+!SCORE!/250 & if !NOFCUBES! gtr %MAXCUBES% set NOFCUBES=%MAXCUBES%
if not !TILT!==0 (if !TILT! gtr 0 set /A TILT-=1) & (if !TILT! lss 0 set /A TILT+=1)
if !KEY!==-75 set /A TILT+=7&if !TILT! gtr 55 set TILT=55
if !KEY!==-77 set /A TILT-=7&if !TILT! lss -55 set TILT=-55
if !TILT! neq 0 for /L %%a in (1,1,%MAXCUBES%) do set /A PX%%a+=!TILT!
set /a RY+=8
set /a SCORE+=1&if !SCORE! gtr !HISCORE! set HISCORE=!SCORE!
if !KEY! == 27 set STOP=1
)
if not defined STOP goto INGAMELOOP
goto OUTERLOOP
:ESCAPE
echo %HISCORE%>hiscore.dat
endlocal
mode con cols=80 lines=50
cmdwiz showcursor 1
cls
cmdwiz setfont 6
| misol1/cmdgfx | games/cmdrunner/old/older/cmdrunner-noWait.bat | bat | gpl-2.0 | 4,582 |
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Deploy.dll D:\yonyou\U9V50\Portal\ApplicationLib
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Deploy.pdb D:\yonyou\U9V50\Portal\ApplicationLib
copy .\BpAgent\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Agent.dll D:\yonyou\U9V50\Portal\ApplicationLib
copy .\BpAgent\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Agent.pdb D:\yonyou\U9V50\Portal\ApplicationLib
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Deploy.dll D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Deploy.pdb D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpAgent\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Agent.dll D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpAgent\bin\Debug\UFIDA.U9.Cust.XMJL.SV.Agent.pdb D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.dll D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.pdb D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpImplement\bin\Debug\UFIDA.U9.Cust.XMJL.SV.ubfsvc D:\yonyou\U9V50\Portal\ApplicationServer\Libs
copy .\BpImplement\UFIDA.U9.Cust.XMJL.SupplierSV.IQueryAllVerifiedSupply.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ItemSV.IQueryAllEffectiveItem.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ItemSV.IQueryAllItemPrice.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ItemSV.IGetItemPrice.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ItemSV.IQueryAllItemStore.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ItemSV.IGetItemStore.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.CustomerSV.IQueryBalance.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.BOMSV.IGetBom.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.BOMSV.IImportXMJLBom.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.BOMSV.IService.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ReceivementSV.IGetSRMRcv.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ReceivementSV.IApproveRcvSV.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.BillBalanceSV.IGetBillBalance.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.ARBillSV.IApproveARBillSV.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.RecBillSV.IApproveRecBillSV.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.VoucherSV.IApproveVoucherSV.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.APBillSV.ISumAccrueDocToAPBillSV.svc D:\yonyou\U9V50\Portal\Services
copy .\BpImplement\UFIDA.U9.Cust.XMJL.APBillSV.IRcvPushAPComfirmSV.svc D:\yonyou\U9V50\Portal\Services
echo 请手工将该bat文件打开,将下面这段内容与D:\yonyou\U9V50\Portal\RestServices\web.config进行合并。
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IQueryAllVerifiedSupply" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IQueryAllEffectiveItem" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IQueryAllItemPrice" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IGetItemPrice" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IQueryAllItemStore" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IGetItemStore" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IQueryBalance" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IGetBom" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IImportXMJLBom" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IService" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IGetSRMRcv" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IApproveRcvSV" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IGetBillBalance" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IApproveARBillSV" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IApproveRecBillSV" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IApproveVoucherSV" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.ISumAccrueDocToAPBillSV" />
</service>
<service name="{type.FullName}Stub" behaviorConfiguration="U9SrvTypeBehaviors">
<endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="basicHttpBinding" contract="{type.Namespace.FullName}.IRcvPushAPComfirmSV" />
</service>
pause | amazingbow/yonyou | 金龙/XMJL_Code/XMJLSV/AutoBuild.bat | bat | gpl-2.0 | 7,480 |
C:\Python\python setup.py py2exe
@PAUSE
| kjwilcox/hex | source/setup.bat | bat | gpl-2.0 | 40 |
@echo off
cls
if exist %ciphtmp0.txt del ciphtmp0.txt
echo Initial Plaintext:
type plain.txt
echo.
echo Used Key:
type key80.txt
present.exe -e -f -v0 -k key80.txt -t plain.txt >ciphtmp0.txt
echo.
echo.
echo Resulting Ciphertext:
type ciphtmp0.txt
echo.
echo Resulting Plaintext:
present.exe -d -f -v0 -k key80.txt -t ciphtmp0.txt
echo.
echo.
del ciphtmp0.txt
pause
| FIT-CVUT/MI-BHW_Present | lwc_PRESENT_test/test80.bat | bat | gpl-2.0 | 366 |
cmd_fs/notify/dnotify/built-in.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o fs/notify/dnotify/built-in.o fs/notify/dnotify/dnotify.o
| paxchristos/R800x-2.3.3-Kernel | fs/notify/dnotify/.built-in.o.cmd | bat | gpl-2.0 | 207 |
cmd_sound/pcmcia/built-in.o := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ld.bfd -EL -r -o sound/pcmcia/built-in.o sound/pcmcia/vx/built-in.o sound/pcmcia/pdaudiocf/built-in.o
| Zaphod-Beeblebrox/kernel_rockchip_rk3188 | sound/pcmcia/.built-in.o.cmd | bat | gpl-2.0 | 195 |
cmd_drivers/misc/eeprom/built-in.o := rm -f drivers/misc/eeprom/built-in.o; /home/algesat/arm-eabi-4.7/bin/arm-eabi-ar rcsD drivers/misc/eeprom/built-in.o
| Algesat/BladeApex2 | drivers/misc/eeprom/.built-in.o.cmd | bat | gpl-2.0 | 156 |
cmd_arch/arm/lib/csumpartialcopy.o := /home/friedrich420/kernel/s4/S4GEKernel/scripts/gcc-wrapper.py /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.csumpartialcopy.o.d -nostdinc -isystem /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/../lib/gcc/arm-eabi/4.7/include -I/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/friedrich420/kernel/s4/S4GEKernel/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/csumpartialcopy.o arch/arm/lib/csumpartialcopy.S
source_arch/arm/lib/csumpartialcopy.o := arch/arm/lib/csumpartialcopy.S
deps_arch/arm/lib/csumpartialcopy.o := \
/home/friedrich420/kernel/s4/S4GEKernel/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/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/linkage.h \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/cpu/use/domains.h) \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/hwcap.h \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
arch/arm/lib/csumpartialcopygeneric.S \
arch/arm/lib/csumpartialcopy.o: $(deps_arch/arm/lib/csumpartialcopy.o)
$(deps_arch/arm/lib/csumpartialcopy.o):
| friedrich420/S4-GPE-AEL-Kernel-4.4.3 | arch/arm/lib/.csumpartialcopy.o.cmd | bat | gpl-2.0 | 2,372 |
cmd_sound/soc/txx9/built-in.o := rm -f sound/soc/txx9/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/soc/txx9/built-in.o
| selva-simple/Galaxy-R-Kernel | sound/soc/txx9/.built-in.o.cmd | bat | gpl-2.0 | 174 |
cmd_drivers/char/built-in.o := arm-linux-androideabi-ld -EL -r -o drivers/char/built-in.o drivers/char/mem.o drivers/char/random.o drivers/char/misc.o drivers/char/hw_random/built-in.o drivers/char/msm_rotator.o drivers/char/diag/built-in.o drivers/char/adsprpc.o
| hch-im/nexus4_kernel | drivers/char/.built-in.o.cmd | bat | gpl-2.0 | 269 |
@echo off
rem Obtiene la lista de argumentos de la linea de comandos
set ARGS=%1 %2 %3 %4 %5 %6 %7 %8 %9
if not "%OS%"=="Windows_NT" goto Win9x
set ARGS=%*
goto endif
:Win9x
shift
if "%9"=="" goto endif
set ARGS=%ARGS% %9
goto Win9x
:endif
set JVM=%JAVA_HOME%\bin\java %JAVA_RUN_OPTS%
%JVM% es.tid.corba.TIDNamingAdminClient.NewSQLSpace %ARGS%
set ARGS=
set JVM=
| AlvaroVega/TIDNamingJ | bin/Windows/TIDNamingJ_NewSQLSpace.bat | bat | gpl-2.0 | 393 |
@ECHO OFF
setLocal Enabledelayedexpansion
set "list="
for %%x in (*.png) do (
set "list=%%x !list!"
)
REM last character will be a space
set list=!list:~0,-1!
"C:\Program Files\GIMP 2\bin\gimp-console-2.8" -i -b "(script-fu-png-to-psd \"!list!\")" -b "(gimp-quit 0)" | TSanon/script-fu-clean | png-to-psd.bat | bat | gpl-2.0 | 274 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=-Xmx2G
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| Greymerk/minecraft-roguelike | gradlew.bat | bat | gpl-3.0 | 2,320 |
@echo off
title RealArcade Wrapper Killer v%rawkver% (.-+'~^-+ Unknown Unpacking Error +-^~`+-.) [...cRypTiCwaRe 2o2o...]
if %testmode%==1 (
echo [core_no_game_found : loaded]
pause>nul
)
::-----------------------------------------------------------------------------------
::Attempting to kill RNArcade process
::-----------------------------------------------------------------------------------
cls
%kill% RNArcade.exe >nul
::-----------------------------------------------------------------------------------
:: Cleaning Up useless files
::-----------------------------------------------------------------------------------
call "core_clean_main.cmd"
::-----------------------------------------------------------------------------------
:: Show a popup balloon
::-----------------------------------------------------------------------------------
::%popup% "Unknown Unpacking Error" 10000
::-----------------------------------------------------------------------------------
:: No Game Found Error Text
::-----------------------------------------------------------------------------------
set launchwebdl=0
cls
color 0c
echo.
echo.
echo One of the following has happened and the game cannot be processed:
echo.
echo.
echo 1) The game has already been unwrapped.
echo.
echo 2) The game has the wrong Wrapper Type (v2.1+ RGA NOT SUPPORTED).
echo.
echo 3) The game is NOT a RealArcade game.
echo.
echo 4) The game is a newer release and this tool does NOT yet support it.
echo.
echo.
echo PRESS ENTER TO EXIT THIS WINDOW.....
echo.
echo You may also press W and then ENTER to launch the Web Downloader
echo.
echo.
::echo The Wrapper Killer Will Close Itself In 10 Seconds...
::echo.
::echo.
if exist "launch.ini" del "launch.ini"
if exist "rawk.id" del "rawk.id"
::%waitfor% 10000
set /p launchwebdl=
if %launchwebdl%==w goto uradl
if %launchwebdl%==W goto uradl
if %launchwebdl%==0 goto cleanup
goto end
::goto cleanup
:cleanup
::-----------------------------------------------------------------------------------
::Attempting to kill RNArcade process
::-----------------------------------------------------------------------------------
cls
%kill% RNArcade.exe >nul
%kill% RGSinst.exe >nul
::-----------------------------------------------------------------------------------
:: Opening the current folder
::-----------------------------------------------------------------------------------
cls
explorer %cd%
goto end
:uradl
cls
echo When finished, please run the Wrapper Killer again on the target game!
echo.
echo.
%webdlpath%
goto end
:end
if %testmode%==1 (
echo [core_no_game_found : finished]
pause>nul
)
exit | esc0rtd3w/realarcade-wrapper-killer | src/core_no_game_found.cmd | bat | gpl-3.0 | 2,662 |
xcopy "src/main/webapp" "target/siperian-demo" /D /S /E /Y | stas-infa/siperian-ui | modules/test-projects/siperian-demo/copy.bat | bat | lgpl-2.1 | 58 |
@echo off
java -cp "lib/*" bg.plambis.dict.gui.DictionaryGUI
| plambis/bgEngDictionary | dist/src/main/resources/runDict.cmd | bat | apache-2.0 | 61 |
java -XX:PermSize=128m -Xmx1G -jar cortex-starter.jar %* | Deutsche-Digitale-Bibliothek/ddb-backend | Cortex/cortex-start.bat | bat | apache-2.0 | 56 |
copy bin\debug\packpdb2.exe ..\bin
| spiffcode/hostile-takeover | packpdb2/deploy.bat | bat | bsd-2-clause | 35 |
@%~dp0\.nuget\nuget push %1 -src https://www.nuget.org
| ctl-global/ctl-data | nuget-push.cmd | bat | bsd-2-clause | 55 |
cmd_sound/arm/built-in.o := rm -f sound/arm/built-in.o; /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs sound/arm/built-in.o
| jdlfg/Mecha-kernel-jdlfg | sound/arm/.built-in.o.cmd | bat | gpl-2.0 | 162 |
del ClearSky-PHP7.phar
utils\bin\wget.exe http://jenkins.haniokasai.com/job/ClearSky-PHP7/lastSuccessfulBuild/artifact/artifacts/ClearSky-PHP7.phar
| ClearSky-hani/ClearSky-PHP7WINx86 | update.bat | bat | gpl-2.0 | 150 |
cmd_fs/lockd/lockd.o := /home/milind/toolchain/arm-eabi-4.6/bin/arm-eabi-ld -EL -r -o fs/lockd/lockd.o fs/lockd/clntlock.o fs/lockd/clntproc.o fs/lockd/clntxdr.o fs/lockd/host.o fs/lockd/svc.o fs/lockd/svclock.o fs/lockd/svcshare.o fs/lockd/svcproc.o fs/lockd/svcsubs.o fs/lockd/mon.o fs/lockd/xdr.o fs/lockd/grace.o fs/lockd/clnt4xdr.o fs/lockd/xdr4.o fs/lockd/svc4proc.o
| sai9615/MY-kernel-for-grand-I9082 | fs/lockd/.lockd.o.cmd | bat | gpl-2.0 | 377 |
cmd_drivers/crypto/built-in.o := rm -f drivers/crypto/built-in.o; /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-ar rcsD drivers/crypto/built-in.o
| EPDCenterSpain/kernel_Archos_97_Titan | drivers/crypto/.built-in.o.cmd | bat | gpl-2.0 | 230 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PyQSO.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyQSO.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
| dnet/pyqso | docs/make.bat | bat | gpl-3.0 | 6,708 |
..\packages\FluentMigrator.1.5.0.0\tools\Migrate.exe /connection "Server=localhost; Database=AbpProjectNameDb; Trusted_Connection=True;" /db sqlserver /target "bin\Debug\AbpProjectName.Infrastructure.NHibernate.dll"
pause | chenkaibin/module-zero-template | src/AbpCompanyName.AbpProjectName.NHibernate/RunMigrations.bat | bat | mit | 221 |
@REM
@REM Licensed to the Apache Software Foundation (ASF) under one or more
@REM contributor license agreements. See the NOTICE file distributed with
@REM this work for additional information regarding copyright ownership.
@REM The ASF licenses this file to You under the Apache License, Version 2.0
@REM (the "License"); you may not use this file except in compliance with
@REM the License. You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@echo off
if "%OS%" == "Windows_NT" setlocal
if NOT DEFINED CASSANDRA_HOME set CASSANDRA_HOME=%CD%
if NOT DEFINED JAVA_HOME goto err
REM Ensure that any user defined CLASSPATH variables are not used on startup
set CLASSPATH=
REM For each jar in the CASSANDRA_HOME lib directory call append to build the CLASSPATH variable.
for %%i in ("%CASSANDRA_HOME%\lib\*.jar") do call :append "%%i"
goto okClasspath
:append
set CLASSPATH=%CLASSPATH%;%1
goto :eof
:okClasspath
REM Include the build\classes directory so it works in development
set CASSANDRA_CLASSPATH=%CLASSPATH%;"%CASSANDRA_HOME%\build\classes"
goto runCli
:runCli
echo Starting Cassandra Client
"%JAVA_HOME%\bin\java" -cp %CASSANDRA_CLASSPATH% org.apache.cassandra.cli.CliMain %*
goto finally
:err
echo The JAVA_HOME environment variable must be set to run this program!
pause
:finally
ENDLOCAL
| shouhei71/grad-c-source | bin/cassandra-cli.bat | bat | apache-2.0 | 1,753 |
@echo off
set "VIRTUAL_ENV=C:\Users\KEVINW~1\DOCUME~1\GitHub\MESSEN~1\mybot"
if defined _OLD_VIRTUAL_PROMPT (
set "PROMPT=%_OLD_VIRTUAL_PROMPT%"
) else (
if not defined PROMPT (
set "PROMPT=$P$G"
)
set "_OLD_VIRTUAL_PROMPT=%PROMPT%"
)
set "PROMPT=(mybot) %PROMPT%"
REM Don't use () to avoid problems with them in %PATH%
if defined _OLD_VIRTUAL_PYTHONHOME goto ENDIFVHOME
set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%"
:ENDIFVHOME
set PYTHONHOME=
REM if defined _OLD_VIRTUAL_PATH (
if not defined _OLD_VIRTUAL_PATH goto ENDIFVPATH1
set "PATH=%_OLD_VIRTUAL_PATH%"
:ENDIFVPATH1
REM ) else (
if defined _OLD_VIRTUAL_PATH goto ENDIFVPATH2
set "_OLD_VIRTUAL_PATH=%PATH%"
:ENDIFVPATH2
set "PATH=%VIRTUAL_ENV%\Scripts;%PATH%"
| kevinwilde/WildeBot | src/mybot/Scripts/activate.bat | bat | mit | 755 |
MetraTec_Firmware-Update-Commandline-Tool 3 | caseykelso/lpc-12xx-bootloader | LPC_1226_Bootloader_PC-Part/MetraTec_Firmware-Update-Commandline-Tool/Release/Neues Textdokument3.bat | bat | mit | 43 |
@echo off
IF "%1"=="" (
echo Usage: make ^<profile-name^>
echo Example: make dev
) ELSE (
IF NOT EXIST profiles\%1.properties (
echo ERROR: file "profiles\profiles.%1.xml" not found
pause
) ELSE (
call fm --properties=profiles/%1.properties pom.xml.ftl > pom.xml
if errorlevel 1 pause
call mvn clean package -Dmaven.test.skip=true -Dfile.encoding=UTF-8
)
)
| MikeMirzayanov/pbox | src/pbox/make.bat | bat | mit | 418 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\..\..\.2.1.6@requirejs\bin\r.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\..\..\.2.1.6@requirejs\bin\r.js" %*
) | dashuyemao/dashuyemao.github.io | ago/工具/UI库/node_modules/.1.4.27@bookstrap/node_modules/.bin/r.js.cmd | bat | mit | 204 |
@echo off
rem configs/z80sim/scripts/setenv.bat
rem
rem Copyright (C) 2012 Gregory Nutt. All rights reserved.
rem Author: Gregory Nutt <gnutt@nuttx.org>
rem
rem Redistribution and use in source and binary forms, with or without
rem modification, are permitted provided that the following conditions
rem are met:
rem
rem 1. Redistributions of source code must retain the above copyright
rem notice, this list of conditions and the following disclaimer.
rem 2. Redistributions in binary form must reproduce the above copyright
rem notice, this list of conditions and the following disclaimer in
rem the documentation and/or other materials provided with the
rem distribution.
rem 3. Neither the name NuttX nor the names of its contributors may be
rem used to endorse or promote products derived from this software
rem without specific prior written permission.
rem
rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
rem "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
rem LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
rem FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
rem COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
rem INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
rem BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
rem OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
rem AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
rem LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
rem ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
rem POSSIBILITY OF SUCH DAMAGE.
rem This is the location where I installed in the MinGW compiler. With
rem this configuration, it is recommended that you do NOT install the
rem MSYS tools; they conflict with the GNUWin32 tools. See
rem http://www.mingw.org/ for further info.
set PATH=C:\MinGW\bin;%PATH%
rem This is the location where I installed the SDCC toolchain for windows.
set PATH=C:\Program Files (x86)\SDCC/bin;%PATH%
rem This is the location where I installed the GNUWin32 tools. See
rem http://gnuwin32.sourceforge.net/.
set PATH=C:\gnuwin32\bin;%PATH%
echo %PATH%
| Paregov/hexadiv | edno/software/nuttx/configs/z80sim/scripts/setenv.bat | bat | mit | 2,242 |
python ..\build.py vcom
| j0t4/espardino | openlibs/vcom/build.bat | bat | mit | 25 |
"C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "Source\EasyLauncher.sln"
pause | Pliner/EasyLauncher | build.bat | bat | mit | 92 |
@echo off
set "VIRTUAL_ENV=C:\Users\student\Documents\GitHub\bash-modules\en"
if defined _OLD_VIRTUAL_PROMPT (
set "PROMPT=%_OLD_VIRTUAL_PROMPT%"
) else (
if not defined PROMPT (
set "PROMPT=$P$G"
)
set "_OLD_VIRTUAL_PROMPT=%PROMPT%"
)
set "PROMPT=(en) %PROMPT%"
REM Don't use () to avoid problems with them in %PATH%
if defined _OLD_VIRTUAL_PYTHONHOME goto ENDIFVHOME
set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%"
:ENDIFVHOME
set PYTHONHOME=
REM if defined _OLD_VIRTUAL_PATH (
if not defined _OLD_VIRTUAL_PATH goto ENDIFVPATH1
set "PATH=%_OLD_VIRTUAL_PATH%"
:ENDIFVPATH1
REM ) else (
if defined _OLD_VIRTUAL_PATH goto ENDIFVPATH2
set "_OLD_VIRTUAL_PATH=%PATH%"
:ENDIFVPATH2
set "PATH=%VIRTUAL_ENV%\Scripts;%PATH%"
| zhang-alex/bash-modules | en/Scripts/activate.bat | bat | mit | 783 |
@echo off
setlocal enabledelayedexpansion
set /p DOTNET_TOOLS_VERSION=<"%~dp0DotnetCLIToolsVersion.txt"
set DOTNET_TOOLS_PATH=%~dp0artifacts\toolset\dotnet
set dotnetexe=%DOTNET_TOOLS_PATH%\dotnet.exe
set sdksentinel=%DOTNET_TOOLS_PATH%\sdk-version.txt
:: remove an old copy of the SDK
set cleanup_existing=
if exist "%sdksentinel%" (
set /p INSTALLED_SDK_VERSION=<"%sdksentinel%"
if not "%DOTNET_TOOLS_VERSION%" == "!INSTALLED_SDK_VERSION!" (
:: wrong version installed, clean it up
set cleanup_existing=1
) else (
echo Found up-to-date SDK.
)
) else (
set cleanup_existing=1
)
if "!cleanup_existing!" == "1" (
echo Removing stale SDK.
rmdir /s /q "%DOTNET_TOOLS_PATH%"
)
:: download and install install SDK
if not exist "%dotnetexe%" (
echo powershell -ExecutionPolicy unrestricted -NoProfile -Command ".\scripts\dotnet-install.ps1 -InstallDir %DOTNET_TOOLS_PATH% -Architecture x64 -Version %DOTNET_TOOLS_VERSION% -NoPath true; exit $LastExitCode;"
powershell -ExecutionPolicy unrestricted -NoProfile -Command ".\scripts\dotnet-install.ps1 -InstallDir %DOTNET_TOOLS_PATH% -Architecture x64 -Version %DOTNET_TOOLS_VERSION% -NoPath true; exit $LastExitCode;"
if errorlevel 1 (
echo ERROR: Could not install dotnet cli correctly.
exit /b 1
)
echo %DOTNET_TOOLS_VERSION%>"%sdksentinel%"
)
| syeerzy/visualfsharp | init-tools.cmd | bat | mit | 1,393 |
set HERE=%CD%
set JAVA_HOME=%JAVA_HOME%
set PATH=%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%PATH%
set SELENIUM_VERSION=2.44.0
set PLATFORM=WINDOWS
set CHROME_VERSION=39
set CHROME_WEBDRIVER_VERSION=2.13
set CHROME_WEBDRIVER_LOC=%HERE%/CHROMEDRIVERS/%CHROME_WEBDRIVER_VERSION%/chromedriver.exe
set CHROME_BINARY_LOC=C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
set FIREFOX_VERSION=35
set FIREFOX_BINARY_LOC=C:\Program Files (x86)\Mozilla Firefox\firefox.exe
set IE_VERSION=10
set IE_WEBDRIVER_VERSION=2.44
set IE_WEBDRIVER_LOC=%HERE%/IEDRIVERS/%IE_WEBDRIVER_VERSION%/IEDriverServer.exe
set HUB_HOST=localhost
set HUB_PORT=4444
set HUB_URL=http://%HUB_HOST%:%HUB_PORT%/grid/register
set NODE_HOST=localhost
set NODE_PORT=5558
start java -jar selenium-server-standalone-%SELENIUM_VERSION%.jar -role node -Dwebdriver.chrome.driver=%CHROME_WEBDRIVER_LOC% -Dwebdriver.ie.driver=%IE_WEBDRIVER_LOC% -log SELENIUMLOGS\selnode-%NODE_PORT%.log -nodeConfig nodeConfig.json | machzqcq/selenium_grid_helper | START_NODE_JSON_CH39_FF35_IE10_WINDOWS.bat | bat | mit | 975 |
cmd_arch/arm/lib/testchangebit.o := arm-linux-androideabi-gcc -Wp,-MD,arch/arm/lib/.testchangebit.o.d -nostdinc -isystem /usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include -I/usr/src/dell/lhbalanced/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/testchangebit.o arch/arm/lib/testchangebit.S
deps_arch/arm/lib/testchangebit.o := \
arch/arm/lib/testchangebit.S \
/usr/src/dell/lhbalanced/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) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/linkage.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/hwcap.h \
arch/arm/lib/bitops.h \
$(wildcard include/config/cpu/32v6k.h) \
arch/arm/lib/testchangebit.o: $(deps_arch/arm/lib/testchangebit.o)
$(deps_arch/arm/lib/testchangebit.o):
| tenorntex/lhbalanced | arch/arm/lib/.testchangebit.o.cmd | bat | gpl-2.0 | 1,790 |
cmd_sound/isa/es1688/built-in.o := rm -f sound/isa/es1688/built-in.o; /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ar rcs sound/isa/es1688/built-in.o
| paxchristos/R800x-2.3.3-Kernel | sound/isa/es1688/.built-in.o.cmd | bat | gpl-2.0 | 202 |
cmd_fs/partitions/msdos.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/partitions/.msdos.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(msdos)" -D"KBUILD_MODNAME=KBUILD_STR(msdos)" -c -o fs/partitions/msdos.o fs/partitions/msdos.c
deps_fs/partitions/msdos.o := \
fs/partitions/msdos.c \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
$(wildcard include/config/efi/partition.h) \
include/linux/msdos_fs.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/linux/magic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
fs/partitions/check.h \
include/linux/pagemap.h \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/numa.h) \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.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/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.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/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
include/linux/linkage.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
include/linux/completion.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \
arch/arm/plat-pnx/include/mach/vmalloc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.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) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/time.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kref.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.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/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
include/linux/path.h \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/highmem.h \
include/linux/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/shmparam.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/kmap_types.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \
arch/arm/plat-pnx/include/mach/irqs.h \
$(wildcard include/config/arch/pnx67xx.h) \
include/linux/irq_cpustat.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/io.h \
arch/arm/plat-pnx/include/mach/io.h \
arch/arm/plat-pnx/include/mach/hardware.h \
$(wildcard include/config/vaddr.h) \
arch/arm/plat-pnx/include/mach/cpu.h \
$(wildcard include/config/arch/pnx67xx/v2.h) \
$(wildcard include/config/arch/pnx6708.h) \
$(wildcard include/config/arch/pnx6711.h) \
$(wildcard include/config/arch/pnx6712.h) \
arch/arm/plat-pnx/include/mach/regs-pnx67xx.h \
$(wildcard include/config/offset.h) \
$(wildcard include/config/reg.h) \
$(wildcard include/config/value.h) \
include/linux/bsg.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/linux/elevator.h \
fs/partitions/msdos.h \
fs/partitions/efi.h \
include/linux/efi.h \
$(wildcard include/config/efi/pcdp.h) \
$(wildcard include/config/efi.h) \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/rtc.h \
$(wildcard include/config/rtc/intf/dev/uie/emul.h) \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/seq_file.h \
include/linux/cdev.h \
include/linux/poll.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/linux/pfn.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/unaligned.h \
include/linux/unaligned/le_byteshift.h \
include/linux/unaligned/be_byteshift.h \
include/linux/unaligned/generic.h \
fs/partitions/msdos.o: $(deps_fs/partitions/msdos.o)
$(deps_fs/partitions/msdos.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | fs/partitions/.msdos.o.cmd | bat | gpl-2.0 | 24,640 |
cmd_drivers/reset/built-in.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/reset/built-in.o drivers/reset/core.o drivers/reset/gpio-reset.o
| FEDEVEL/tmp-imx6-tiny-rex-linux | drivers/reset/.built-in.o.cmd | bat | gpl-2.0 | 241 |
cmd_sound/soc/au1x/built-in.o := rm -f sound/soc/au1x/built-in.o; /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/soc/au1x/built-in.o
| sleshepic/epic_touch_kernel | sound/soc/au1x/.built-in.o.cmd | bat | gpl-2.0 | 164 |
cmd_sound/pci/echoaudio/built-in.o := rm -f sound/pci/echoaudio/built-in.o; /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs sound/pci/echoaudio/built-in.o
| dagnarf/sgh-i717-dagkernel | sound/pci/echoaudio/.built-in.o.cmd | bat | gpl-2.0 | 175 |
@echo off
%windir%\Slickr.scr | gabriel/slickr-dotnet | Slickr.cmd | bat | gpl-2.0 | 30 |
cmd_net/802/psnap.o := arm-linux-gnueabi-gcc -Wp,-MD,net/802/.psnap.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.6/include -I/root/linux-jps/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/plat-rk/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -Wno-unused-but-set-variable -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(psnap)" -D"KBUILD_MODNAME=KBUILD_STR(psnap)" -c -o net/802/psnap.o net/802/psnap.c
source_net/802/psnap.o := net/802/psnap.c
deps_net/802/psnap.o := \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/debug/set/module/ronx.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/arch/dma/addr/t/64bit.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/linux-jps/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/root/linux-jps/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/linux-jps/arch/arm/include/asm/posix_types.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/const.h \
include/linux/stat.h \
/root/linux-jps/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/compaction.h) \
/usr/lib/gcc/arm-linux-gnueabi/4.6/include/stdarg.h \
include/linux/linkage.h \
/root/linux-jps/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
/root/linux-jps/arch/arm/include/asm/bitops.h \
/root/linux-jps/arch/arm/include/asm/system.h \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/cpu/32v6k.h) \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/v6.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/linux-jps/arch/arm/include/asm/irqflags.h \
/root/linux-jps/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/linux-jps/arch/arm/include/asm/hwcap.h \
/root/linux-jps/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/asm-generic/bitops/le.h \
/root/linux-jps/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/linux-jps/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/dynamic_debug.h \
/root/linux-jps/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/linux-jps/arch/arm/include/asm/div64.h \
/root/linux-jps/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/linux-jps/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/linux-jps/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/linux-jps/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/root/linux-jps/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/root/linux-jps/arch/arm/include/asm/spinlock.h \
$(wildcard include/config/thumb2/kernel.h) \
/root/linux-jps/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/arm/errata/754327.h) \
/root/linux-jps/arch/arm/include/asm/hw_breakpoint.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/root/linux-jps/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/have/arch/pfn/valid.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/root/linux-jps/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/linux-jps/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/root/linux-jps/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/root/linux-jps/arch/arm/include/asm/glue.h \
/root/linux-jps/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/arm/patch/phys/virt.h) \
$(wildcard include/config/arm/patch/phys/virt/16bit.h) \
arch/arm/mach-rk30/include/mach/memory.h \
include/linux/version.h \
arch/arm/mach-rk30/include/mach/io.h \
$(wildcard include/config/rk/debug/uart.h) \
/root/linux-jps/arch/arm/include/asm/sizes.h \
include/asm-generic/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/errno.h \
/root/linux-jps/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/have/arch/mutex/cpu/relax.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/root/linux-jps/arch/arm/include/asm/smp.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/linux-jps/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/root/linux-jps/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/linux-jps/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/linux-jps/arch/arm/include/asm/timex.h \
arch/arm/mach-rk30/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/sysctl.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/completion.h \
include/linux/rcutree.h \
include/linux/elf.h \
include/linux/elf-em.h \
/root/linux-jps/arch/arm/include/asm/elf.h \
/root/linux-jps/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/linux-jps/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/xps.h) \
$(wildcard include/config/rfs/accel.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/vlan/8021q.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/if.h \
include/linux/socket.h \
/root/linux-jps/arch/arm/include/asm/socket.h \
/root/linux-jps/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/nf/defrag/ipv4.h) \
$(wildcard include/config/nf/defrag/ipv6.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
$(wildcard include/config/network/phy/timestamping.h) \
include/linux/kmemcheck.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
$(wildcard include/config/transparent/hugepage.h) \
include/linux/auxvec.h \
/root/linux-jps/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/linux-jps/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/net.h \
include/linux/random.h \
include/linux/ioctl.h \
/root/linux-jps/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/fcntl.h \
/root/linux-jps/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/textsearch.h \
include/linux/err.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/net/checksum.h \
/root/linux-jps/arch/arm/include/asm/uaccess.h \
/root/linux-jps/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/root/linux-jps/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/async/tx/enable/channel/switch.h) \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
$(wildcard include/config/sysfs/deprecated.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
/root/linux-jps/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
$(wildcard include/config/need/dma/map/state.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/root/linux-jps/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/hugetlbfs.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/range.h \
include/linux/bit_spinlock.h \
/root/linux-jps/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/linux-jps/arch/arm/include/asm/proc-fns.h \
/root/linux-jps/arch/arm/include/asm/glue-proc.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6k.h) \
$(wildcard include/config/cpu/v7.h) \
arch/arm/mach-rk30/include/mach/vmalloc.h \
/root/linux-jps/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/huge_mm.h \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/vm_event_item.h \
/root/linux-jps/arch/arm/include/asm/io.h \
/root/linux-jps/arch/arm/include/asm/dma-mapping.h \
include/linux/dma-debug.h \
$(wildcard include/config/dma/api/debug.h) \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
$(wildcard include/config/timerfd.h) \
include/linux/timerqueue.h \
include/linux/if_packet.h \
include/linux/if_link.h \
include/linux/netlink.h \
include/linux/capability.h \
include/linux/pm_qos_params.h \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/delay.h \
/root/linux-jps/arch/arm/include/asm/delay.h \
include/linux/rculist.h \
include/linux/ethtool.h \
include/linux/compat.h \
$(wildcard include/config/nfsd.h) \
$(wildcard include/config/nfsd/deprecated.h) \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/linux/u64_stats_sync.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/mroute/multiple/tables.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/mroute/multiple/tables.h) \
include/net/dst_ops.h \
include/linux/percpu_counter.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/blk_types.h \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist_bl.h \
include/linux/list_bl.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/irq/forced/threading.h) \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/irq/time/accounting.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/root/linux-jps/arch/arm/include/asm/hardirq.h \
$(wildcard include/config/local/timers.h) \
/root/linux-jps/arch/arm/include/asm/irq.h \
arch/arm/mach-rk30/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/trace/events/irq.h \
include/net/datalink.h \
include/net/llc.h \
include/linux/rculist_nulls.h \
include/linux/hash.h \
include/linux/jhash.h \
include/linux/unaligned/packed_struct.h \
include/net/psnap.h \
net/802/psnap.o: $(deps_net/802/psnap.o)
$(deps_net/802/psnap.o):
| jpsminix/minix5 | net/802/.psnap.o.cmd | bat | gpl-2.0 | 28,346 |
cmd_arch/arm/mvp/built-in.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o arch/arm/mvp/built-in.o arch/arm/mvp/mvpkm/built-in.o arch/arm/mvp/commkm/built-in.o arch/arm/mvp/pvtcpkm/built-in.o
| PrestigeMod/SHW-M440S | arch/arm/mvp/.built-in.o.cmd | bat | gpl-2.0 | 250 |
#! /bin/csh -f
#
# Shellscript to create Postscript plot of data in grd file
# Created by macro mbm_grdplot
#
# This shellscript created by following command line:
# mbm_grdplot -Isbnms.grd -R-71/-69.75/41.75/43 -T
#
# Define shell variables used in this script:
#set mon=01
#set monName=Jan
set mon=$1
set monName=$2
echo "Processing ** $mon - $monName **"
set PDF_FILE = 2006${mon}-transits.pdf
set PNG_FILE = 2006${mon}-transits.png
set PS_FILE = 2006${mon}-transits.ps
#set PS_FILE = sbnms.grd.ps
set CPT_FILE = sbnms.grd.cpt
set MAP_PROJECTION = m
#set MAP_SCALE = 4.4486
set MAP_SCALE = 2.5
##set MAP_REGION = -71/-69.75/41.75/43
# SBNMS regions...
##set MAP_REGION = -71/-69.75/42/42:52
# Great South Channel (GSC)
set MAP_REGION = -70.25/-68.00/40.75/42.5
set X_OFFSET = 1.4697
set Y_OFFSET = 2
#
# Save existing GMT defaults
echo Saving GMT defaults...
gmtdefaults -L > gmtdefaults$$
#
# Set new GMT defaults
echo Setting new GMT defaults...
gmtset MEASURE_UNIT inch
gmtset PAPER_MEDIA archA+
gmtset ANOT_FONT Helvetica
gmtset LABEL_FONT Helvetica
gmtset HEADER_FONT Helvetica
gmtset ANOT_FONT_SIZE 8
gmtset LABEL_FONT_SIZE 8
gmtset HEADER_FONT_SIZE 10
gmtset FRAME_WIDTH 0.075
gmtset TICK_LENGTH 0.075
gmtset PAGE_ORIENTATION LANDSCAPE
gmtset COLOR_BACKGROUND 0/0/0
gmtset COLOR_FOREGROUND 255/255/255
gmtset COLOR_NAN 255/255/255
gmtset PLOT_DEGREE_FORMAT ddd:mm
#
# Make color pallette table file
echo Making color pallette table file...
echo -300 37 57 175 -270 40 127 251 > $CPT_FILE
echo -270 40 127 251 -240 50 190 255 >> $CPT_FILE
echo -240 50 190 255 -210 106 235 255 >> $CPT_FILE
echo -210 106 235 255 -180 138 236 174 >> $CPT_FILE
echo -180 138 236 174 -150 205 255 162 >> $CPT_FILE
echo -150 205 255 162 -120 240 236 121 >> $CPT_FILE
echo -120 240 236 121 -90 255 189 87 >> $CPT_FILE
echo -90 255 189 87 -60 255 161 68 >> $CPT_FILE
echo -60 255 161 68 -30 255 186 133 >> $CPT_FILE
echo -30 255 186 133 0 255 255 255 >> $CPT_FILE
#
# Define data files to be plotted:
#set DATA_FILE = sbnms.grd
#set DATA_FILE = gom-bathy-coastalrelief-3sec.grd
# Coastal relief model 3sec from http://www.ngdc.noaa.gov/mgg/coastal/coastal.html
set DATA_FILE = gsc-coastrel-71-67-40-43.grd
set INTENSITY_FILE =
#
# Make color image
echo Running grdimage...
grdimage $DATA_FILE -J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION -C$CPT_FILE \
-P -X$X_OFFSET -Y$Y_OFFSET -K -V >! $PS_FILE
# grdimage $DATA_FILE -J$MAP_PROJECTION$MAP_SCALE \
# -R$MAP_REGION -C$CPT_FILE \
# -P -X$X_OFFSET -Y$Y_OFFSET -K -V >! $PS_FILE
#
# Make coastline data plot
echo Running pscoast...
pscoast \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-Df \
-G200 \
-W1p \
-P -K -O -V >> $PS_FILE
psxy \
-Wthicker,red \
gsc.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
psxy \
-Wthick,red \
gsc.tss.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
# -W3
psxy \
-Wthicker,red \
stellwagen.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
psxy \
-Wthin,red \
stellwagen-5nm.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
# stellwagen-5nm.dat stellwagen.dat \
#01.xymt.transits.psxy.multiseg
#200602-transits.transits.psxy.multiseg
psxy \
2006${mon}-transits.transits.psxy.multiseg -M \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
# sbnms-buoys-maru.dat -Sa \
psxy \
maru-xy.dat -Sd \
stellwagen-5nm.dat stellwagen.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
psxy \
-Wthickest,black \
sbnms-buoys-ab.xys -Sc \
stellwagen-5nm.dat stellwagen.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
echo Running pstext...
pstext \
-D0/.1 \
sbnms-buoys-ab.xyt \
stellwagen-5nm.dat stellwagen.dat \
-J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-K -O -V >> $PS_FILE
#
# Make color scale
echo Running psscale...
psscale -C$CPT_FILE \
-D2.7803/-0.5000/5.5607/0.1500h \
-B":meters:" \
-P -K -O -V >> $PS_FILE
#
# Make basemap
echo Running psbasemap...
psbasemap -J$MAP_PROJECTION$MAP_SCALE \
-R$MAP_REGION \
-B15m/15m:."SBNMS AIS Transits ${monName}-2006": \
-P -O -V >> $PS_FILE
# -B30m/30m:."SBNMS AIS Tracks": \
#
# Delete surplus files
echo Deleting surplus files...
/bin/rm -f $CPT_FILE
#
# Reset GMT default fonts
echo Resetting GMT fonts...
/bin/mv gmtdefaults$$ .gmtdefaults
#
# Run ghostview
echo Producing pdf and png products
ps2pdf ${PS_FILE}
convert ${PS_FILE} ${PNG_FILE}
rm ${PS_FILE}
open ${PDF_FILE}
#
# All done!
echo All done!
| stregoika/aislib | scraps/sbnms.grd.cmd | bat | gpl-3.0 | 4,740 |
cd %~dp0
cmd.exe /c npm install
cmd.exe /c gulp package
pause
| luc-github/ESP3D-WEBUI | build.bat | bat | gpl-3.0 | 62 |
taskkill /f /im prjrestaurant.exe | kin9j/test-one | PrjResturant/New Version - Copy/Debug/Win32/killprogram.bat | bat | gpl-3.0 | 33 |
@echo off
java -cp javaforce.jar;jna.jar;jmedia.jar MediaApp %1
| telecortech/javaforce-fork | projects/jmedia/run.bat | bat | lgpl-2.1 | 64 |
REM ************************************************************************
REM
REM Description:
REM
REM Rapid Enquiry Facility (RIF) - RIF40 create data load tables for SAHUSLAND data
REM
REM Copyright:
REM
REM The Rapid Inquiry Facility (RIF) is an automated tool devised by SAHSU
REM that rapidly addresses epidemiological and public health questions using
REM routinely collected health and population data and generates standardised
REM rates and relative risks for any given health outcome, for specified age
REM and year ranges, for any given geographical area.
REM
REM Copyright 2014 Imperial College London, developed by the Small Area
REM Health Statistics Unit. The work of the Small Area Health Statistics Unit
REM is funded by the Public Health England as part of the MRC-PHE Centre for
REM Environment and Health. Funding for this project has also been received
REM from the Centers for Disease Control and Prevention.
REM
REM This file is part of the Rapid Inquiry Facility (RIF) project.
REM RIF is free software: you can redistribute it and/or modify
REM it under the terms of the GNU Lesser General Public License as published by
REM the Free Software Foundation, either version 3 of the License, or
REM (at your option) any later version.
REM
REM RIF 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 Lesser General Public License for more details.
REM
REM You should have received a copy of the GNU Lesser General Public License
REM along with RIF. If not, see <http://www.gnu.org/licenses/>; or write
REM to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
REM Boston, MA 02110-1301 USA
REM
REM Author:
REM
REM Margaret Douglass, Peter Hambly, SAHSU
REM
REM Usage: rif_data_install_tables.bat
REM
ECHO OFF
REM
REM MUST BE RUN AS ADMINSTRATOR/POWERUSER
REM
NET SESSION >nul 2>&1
if %errorlevel% equ 0 (
ECHO Administrator PRIVILEGES Detected!
) else (
runas /noprofile /user:%COMPUTERNAME%\Administrator "NET SESSION" < one_line.txt
if %errorlevel% neq 0 {
ECHO NOT AN ADMIN!
exit /b 1
}
else {
ECHO Power user PRIVILEGES Detected!
}
)
sqlcmd -d sahsuland_dev -b -m-1 -e -i rif40_import_sahsuland.sql -v path="%cd%\..\.." -I
REM E.g. path="C:\Users\mdouglas\rapidInquiryFacility\rifDatabase"
REM
REM Eof | smallAreaHealthStatisticsUnit/rapidInquiryFacility | rifDatabase/SQLserver/installation/rif40_import_data.bat | bat | lgpl-3.0 | 2,418 |
@echo off
setlocal
rem Copyright (c) 1999, 2006 Tanuki Software Inc.
rem
rem Java Service Wrapper general NT service uninstall script
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem
rem Find the application home.
rem
rem %~dp0 is location of current script under NT
set _REALPATH=%~dp0
rem Decide on the wrapper binary.
set _WRAPPER_BASE=wrapper
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%.exe
if exist "%_WRAPPER_EXE%" goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
echo %_REALPATH%%_WRAPPER_BASE%.exe
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
set _WRAPPER_CONF="%~f1"
if not %_WRAPPER_CONF%=="" goto startup
set _WRAPPER_CONF="%_REALPATH%wrapper.conf"
rem
rem Uninstall the Wrapper as an NT service.
rem
:startup
"%_WRAPPER_EXE%" -r %_WRAPPER_CONF%
if not errorlevel 1 goto :eof
pause
| mhus/mhus-inka | de.mhus.app.inka.morse.common/service/UninstallTestWrapper-NT.bat | bat | apache-2.0 | 1,267 |
docker run -v %~dp0:/output -w /build -it magick-net-linux-musl /bin/sh
| dlemstra/Magick.NET | build/linux-musl/run.cmd | bat | apache-2.0 | 72 |
@echo off
copy make.exe "C:\Program Files\Git\mingw64\bin"
| dylan-mcdonald/latex-slides | win-setup-make/install.bat | bat | apache-2.0 | 59 |
set CLASSPATH=
set CLASSPATH=.;./lib;./config;./class
..\..\script\setup
| TeamCohen/MinorThird | apps/slif/init.bat | bat | bsd-3-clause | 74 |
:: this batch is used internally in the corporation to build and export a local version in maven local
@echo off
./gradlew.bat clean -PuseMavenLocal test publishToMavenLocal | SecureAuthCorp/saidp-sdk-java | buildLocal.bat | bat | bsd-3-clause | 173 |
@echo off
rem -------------------------------------------------------------
rem Yii command line init script for Windows.
rem
rem @author Qiang Xue <qiang.xue@gmail.com>
rem @link http://www.yiiframework.com/
rem @copyright Copyright © 2012 Yii Software LLC
rem @license http://www.yiiframework.com/license/
rem -------------------------------------------------------------
@setlocal
set YII_PATH=%~dp0
if "%PHP_COMMAND%" == "" set PHP_COMMAND=C:\wamp\bin\php\php5.4.16\php.exe
"%PHP_COMMAND%" "%YII_PATH%init" %*
@endlocal
| maxxer/sporta | init.bat | bat | bsd-3-clause | 540 |
@echo off
set PTOOLSPATH=%~dp0\
php %PTOOLSPATH%\phalcon.php %*
| ApprecieOpenSource/Apprecie | vendor/phalcon/devtools/phalcon.bat | bat | mit | 65 |
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off
:: ----------------------
:: KUDU Deployment Script
:: Version: 1.0.17
:: ----------------------
:: Prerequisites
:: -------------
:: Verify node.js installed
where node 2>nul >nul
IF %ERRORLEVEL% NEQ 0 (
echo Missing node.js executable, please install node.js, if already installed make sure it can be reached from current environment.
goto error
)
:: Setup
:: -----
setlocal enabledelayedexpansion
SET ARTIFACTS=%~dp0%..\artifacts
IF NOT DEFINED DEPLOYMENT_SOURCE (
SET DEPLOYMENT_SOURCE=%~dp0%.
)
IF NOT DEFINED DEPLOYMENT_TARGET (
SET DEPLOYMENT_TARGET=%ARTIFACTS%\wwwroot
)
IF NOT DEFINED NEXT_MANIFEST_PATH (
SET NEXT_MANIFEST_PATH=%ARTIFACTS%\manifest
IF NOT DEFINED PREVIOUS_MANIFEST_PATH (
SET PREVIOUS_MANIFEST_PATH=%ARTIFACTS%\manifest
)
)
IF NOT DEFINED KUDU_SYNC_CMD (
:: Install kudu sync
echo Installing Kudu Sync
call npm install kudusync -g --silent
IF !ERRORLEVEL! NEQ 0 goto error
:: Locally just running "kuduSync" would also work
SET KUDU_SYNC_CMD=%appdata%\npm\kuduSync.cmd
)
goto Deployment
:: Utility Functions
:: -----------------
:SelectNodeVersion
IF DEFINED KUDU_SELECT_NODE_VERSION_CMD (
:: The following are done only on Windows Azure Websites environment
call %KUDU_SELECT_NODE_VERSION_CMD% "%DEPLOYMENT_SOURCE%" "%DEPLOYMENT_TARGET%" "%DEPLOYMENT_TEMP%"
IF !ERRORLEVEL! NEQ 0 goto error
IF EXIST "%DEPLOYMENT_TEMP%\__nodeVersion.tmp" (
SET /p NODE_EXE=<"%DEPLOYMENT_TEMP%\__nodeVersion.tmp"
IF !ERRORLEVEL! NEQ 0 goto error
)
IF EXIST "%DEPLOYMENT_TEMP%\__npmVersion.tmp" (
SET /p NPM_JS_PATH=<"%DEPLOYMENT_TEMP%\__npmVersion.tmp"
IF !ERRORLEVEL! NEQ 0 goto error
)
IF NOT DEFINED NODE_EXE (
SET NODE_EXE=node
)
SET NPM_CMD="!NODE_EXE!" "!NPM_JS_PATH!"
) ELSE (
SET NPM_CMD=npm
SET NODE_EXE=node
)
goto :EOF
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Deployment
:: ----------
:Deployment
echo Handling node.js deployment.
:: 2. Select node version
call :SelectNodeVersion
:: 3. Install npm packages
IF EXIST "%DEPLOYMENT_TARGET%\package.json" (
pushd "%DEPLOYMENT_TARGET%"
call :ExecuteCmd !NPM_CMD! install --production
IF !ERRORLEVEL! NEQ 0 goto error
popd
)
:: 3. Angular prod build
::IF EXIST "%DEPLOYMENT_SOURCE%/.angular-cli.json"(
::echo Building app in %DEPLOYMENT_SOURCE%..
::pushd %DEPLOYMENT_SOURCE%
::call :ExecuteCmd !NPM_CMD! run build
::IF !ERRORLEVEL! NEQ 0 goto error
::popd
::)
:: 1. KuduSync
IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" (
call :ExecuteCmd "%KUDU_SYNC_CMD%" -v 50 -f "%DEPLOYMENT_SOURCE%/dist" -t "%DEPLOYMENT_TARGET%" -n "%NEXT_MANIFEST_PATH%" -p "%PREVIOUS_MANIFEST_PATH%" -i ".git;.hg;.deployment;deploy.cmd"
IF !ERRORLEVEL! NEQ 0 goto error
)
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
goto end
:: Execute command routine that will echo out when error
:ExecuteCmd
setlocal
set _CMD_=%*
call %_CMD_%
if "%ERRORLEVEL%" NEQ "0" echo Failed exitCode=%ERRORLEVEL%, command=%_CMD_%
exit /b %ERRORLEVEL%
:error
endlocal
echo An error has occurred during web site deployment.
call :exitSetErrorLevel
call :exitFromFunction 2>nul
:exitSetErrorLevel
exit /b 1
:exitFromFunction
()
:end
endlocal
echo Finished successfully.
| AzureAD/microsoft-authentication-library-for-js | samples/msal-angularjs-samples/MsalAngularjsDemoApp/deploy.cmd | bat | mit | 3,421 |
REM Build using Pyinstaller (http://www.pyinstaller.org/) to create a standalone executable.
pyinstaller.exe --distpath="T:\T&DElectronicFiling\ProtCntrl\ProtectionMaster\Software\Word2SettingDBs" --noconfirm --onefile --noconsole make_line_relay_gui.py
REM Save source code to version control (Github)
| pdb5627/Word2SettingDBs | build_make_relay_gui.bat | bat | mit | 303 |
XCOPY /S /Y /EXCLUDE:InstallCompiler.exclude ..\..\bin\Unity5\* .
PAUSE. | SaladLab/Unity3D.IncrementalCompiler | core/UnityPackage/InstallCompiler.bat | bat | mit | 74 |
cmd_net/8021q/built-in.o := mips-openwrt-linux-uclibc-ld -m elf32btsmip -r -o net/8021q/built-in.o net/8021q/vlan_core.o net/8021q/8021q.o
| shizhai/wprobe | build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/net/8021q/.built-in.o.cmd | bat | gpl-2.0 | 144 |
cmd_arch/arm/lib/testclearbit.o := /home/milind/toolchain/arm-eabi-4.6/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.testclearbit.o.d -nostdinc -isystem /home/milind/toolchain/arm-eabi-4.6/bin/../lib/gcc/arm-eabi/4.6.x-google/include -I/home/milind/work/kernel/android_kernel_samsung_i9082/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-capri/include -Iarch/arm/plat-kona/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -mfpu=vfp3 -mfloat-abi=softfp -gdwarf-2 -c -o arch/arm/lib/testclearbit.o arch/arm/lib/testclearbit.S
source_arch/arm/lib/testclearbit.o := arch/arm/lib/testclearbit.S
deps_arch/arm/lib/testclearbit.o := \
/home/milind/work/kernel/android_kernel_samsung_i9082/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/milind/work/kernel/android_kernel_samsung_i9082/arch/arm/include/asm/linkage.h \
/home/milind/work/kernel/android_kernel_samsung_i9082/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/milind/work/kernel/android_kernel_samsung_i9082/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/milind/work/kernel/android_kernel_samsung_i9082/arch/arm/include/asm/hwcap.h \
/home/milind/work/kernel/android_kernel_samsung_i9082/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/lib/bitops.h \
arch/arm/lib/testclearbit.o: $(deps_arch/arm/lib/testclearbit.o)
$(deps_arch/arm/lib/testclearbit.o):
| sai9615/MY-kernel-for-grand-I9082 | dragon/arch/arm/lib/.testclearbit.o.cmd | bat | gpl-2.0 | 2,238 |
rem This file is used to run slsh once it has been built
set SLSH_CONF_DIR=./slsh/etc
set SLSH_PATH=./slsh/lib
copy src\gw32objs\libslang.dll slsh\gw32objs
slsh\gw32objs\slsh %1 %2 %3 %4 %5 %6 %7 %8 %9
set SLSH_PATH=
set SLSH_CONF_DIR= | Distrotech/slang | mkfiles/runslsh.bat | bat | gpl-2.0 | 235 |
cmd_net/bridge/netfilter/ebt_pkttype.mod.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,net/bridge/netfilter/.ebt_pkttype.mod.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ebt_pkttype.mod)" -D"KBUILD_MODNAME=KBUILD_STR(ebt_pkttype)" -DMODULE -mlong-calls -c -o net/bridge/netfilter/ebt_pkttype.mod.o net/bridge/netfilter/ebt_pkttype.mod.c
deps_net/bridge/netfilter/ebt_pkttype.mod.o := \
net/bridge/netfilter/ebt_pkttype.mod.c \
$(wildcard include/config/module/unload.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/sysfs.h) \
include/linux/spinlock.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/sgidefs.h \
include/asm/types.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mips64/r2.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm/cpu-features.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm-generic/bitops/ext2-atomic.h \
include/asm-generic/bitops/minix.h \
include/asm/thread_info.h \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/8kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/processor.h \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/asm/current.h \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
include/asm-mips/mach-generic/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm-mips/mach-generic/timex.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/asm/module.h \
$(wildcard include/config/cpu/mips32/r2.h) \
$(wildcard include/config/cpu/mips64/r1.h) \
$(wildcard include/config/cpu/r6000.h) \
include/asm/uaccess.h \
include/asm-generic/uaccess.h \
include/linux/vermagic.h \
include/linux/utsrelease.h \
net/bridge/netfilter/ebt_pkttype.mod.o: $(deps_net/bridge/netfilter/ebt_pkttype.mod.o)
$(deps_net/bridge/netfilter/ebt_pkttype.mod.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/net/bridge/netfilter/.ebt_pkttype.mod.o.cmd | bat | gpl-2.0 | 12,090 |
cmd_sound/core/snd.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o sound/core/snd.o sound/core/sound.o sound/core/init.o sound/core/memory.o sound/core/info.o sound/core/control.o sound/core/misc.o sound/core/device.o sound/core/jack.o
| friedrich420/Note-3-AEL-Kernel | sound/core/.snd.o.cmd | bat | gpl-2.0 | 272 |
@echo off
setlocal
echo set the Visual Studio environment by calling vcvarsall.bat
call "%VCINSTALLDIR%"/vcvarsall.bat %PROCESSOR_ARCHITECTURE%
REM The express version of Visual Studio does not have devenv and
REM uses msbuild. Older versions of Visual Studio still need to
REM use devenv
set use_devenv=0
which devenv > nul 2>&1
if %ERRORLEVEL% == 0 set use_devenv=1
set projsfx=vcxproj
echo "%VCINSTALLDIR%" | findstr /C:"Studio 8" 1>nul
IF %ERRORLEVEL% == 0 set projsfx=vcproj
echo "%VCINSTALLDIR%" | findstr /C:"Studio 9.0" 1>nul
IF %ERRORLEVEL% == 0 set projsfx=vcproj
echo Building sacpp_querycondition_types.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\All_Standalone_C_and_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\cpp\standalone\sacpp_querycondition_types.%projsfx%"
) else (
msbuild sacpp_querycondition_types.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
echo Building sacpp_querycondition_sub.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\All_Standalone_C_and_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\cpp\standalone\sacpp_querycondition_sub.%projsfx%"
) else (
msbuild sacpp_querycondition_sub.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
echo Building sacpp_querycondition_pub.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\All_Standalone_C_and_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\cpp\standalone\sacpp_querycondition_pub.%projsfx%"
) else (
msbuild sacpp_querycondition_pub.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
GOTO end
:error
ECHO An error occurred, exiting now
:end
| PrismTech/opensplice | examples/dcps/QueryCondition/cpp/standalone/Build.bat | bat | gpl-3.0 | 1,983 |
"%MSVS_HOME%/VC/vcvarsall.bat" x86 && %* | blackberry-webworks/Ripple-Framework | runWithVCContext.bat | bat | apache-2.0 | 40 |
call .\setGrinderEnv.cmd
echo %CLASSPATH%
java -ms128m -mx128m -classpath %CLASSPATH% net.grinder.Grinder %GRINDERPROPERTIES% | NineWoranop/loadtesting-kpi | loadtesting/loadtesting-java/loadtesting-showcase-springmvc/src/test/grinder/Agent/startAgent.cmd | bat | apache-2.0 | 125 |
del /s .\*.map;.\*.rsm;.\*.exe;.\*.dcu;.\*.drc
pause | VSoftTechnologies/OmniThreadLibrary | Clean.bat | bat | bsd-3-clause | 53 |
@echo off
"%~dp0\mono.exe" %MONO_OPTIONS% "%~dp0\..\lib\mono\fsharp\\fsc.exe" %*
| Code0100Food/3DEngine | MonoScripting/MonoScripting/DATA/bin/fsharpc.bat | bat | mit | 81 |
setlocal enableextensions enabledelayedexpansion
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: WINDOWS SCRIPT TO DRIVE THE SYSTEM TESTS OF MANTID
::
:: Notes:
::
:: WORKSPACE, JOB_NAME & NODE_LABEL are environment variables that
:: are set by Jenkins. The last one corresponds to any labels set on a slave.
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Print out the versions of things we are using
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
call cmake --version
echo %sha1%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Set up the location for local object store outside of the build and source
:: tree, which can be shared by multiple builds.
:: It defaults to a MantidExternalData directory within the USERPROFILE
:: directory. It can be overridden by setting the MANTID_DATA_STORE environment
:: variable.
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
if NOT DEFINED MANTID_DATA_STORE (
set MANTID_DATA_STORE=%USERPROFILE%\MantidExternalData
)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Setup the build directory
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
md %WORKSPACE%\build
cd %WORKSPACE%\build
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: CMake configuration if it has not already been configured.
:: We use the special flag that only creates the targets for the data
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
if not EXIST %WORKSPACE%\build\CMakeCache.txt (
call cmake -DMANTID_DATA_STORE=!MANTID_DATA_STORE! -DDATA_TARGETS_ONLY=ON ..
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
) else (
:: This ensures that any new data files are picked up by the cmake globbing
call cmake .
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Build step
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
msbuild /nologo /nr:false /p:Configuration=Release StandardTestData.vcxproj
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
msbuild /nologo /nr:false /p:Configuration=Release SystemTestData.vcxproj
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Run the tests
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Remove any Mantid.user.properties file
set USERPROPS=C:\MantidInstall\bin\Mantid.user.properties
del /Q %USERPROPS%
:: Turn off any auto updating on startup
echo UpdateInstrumentDefinitions.OnStartup = 0 > %USERPROPS%
echo usagereports.enabled = 0 >> %USERPROPS%
echo CheckMantidVersion.OnStartup = 0 >> %USERPROPS%
:: Run
set PKGDIR=%WORKSPACE%\build
:: A completely clean build will not have Mantid installed but will need Python to
:: run the testing setup scripts. Assume it is in the PATH
set PYTHON_EXE=python.exe
%PYTHON_EXE% %WORKSPACE%\Testing\SystemTests\scripts\InstallerTests.py -o -d %PKGDIR%
| dymkowsk/mantid | buildconfig/Jenkins/systemtests.bat | bat | gpl-3.0 | 3,237 |
@echo off
REM -------------------------------------------------------------------------
REM Copyright 2004 The Apache Software Foundation
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 -------------------------------------------------------------------------
REM SUPPORTED PARAMS
REM TODO: Make command line arg parsing cleaner
set MEM=64
set FLAVOR=
set FILENAME=
REM SCAN FIRST PARAM
if not "%2"=="" goto %2
goto default
goto end
:memory
set MEM=%3
goto end
:flavor
set FLAVOR=%3
goto end
:filename
set FILENAME=%3
goto end
:default
goto end
:end
REM SCAN SECOND PARAM
if not "%4"=="" goto %4
goto default
goto end
:memory
set MEM=%5
goto end
:flavor
set FLAVOR=%5
goto end
:filename
set FILENAME=%5
goto end
:default
goto end
:end
REM SCAN THIRD PARAM
if not "%6"=="" goto %6
goto default
goto end
:memory
set MEM=%7
goto end
:flavor
set FLAVOR=%7
goto end
:filename
set FILENAME=%7
goto end
:default
goto end
:end
echo on
java -Xmx%MEM%m -classpath %XMLBEANS_PERFROOT%\build;%XMLBEANS_PERFROOT%\schema_build\v2-purchase-order.jar;%XMLBEANS_PERFROOT%\schema_build\v2-primitives.jar;%XMLBEANS_PERFROOT%\schema_build\v2-non-primitives.jar;%XMLBEANS_PERFROOT%\3rdparty\v2\xmlbeans-2.0.0\lib\xbean.jar;%XMLBEANS_PERFROOT%\3rdparty\v2\xmlbeans-2.0.0\lib\jsr173_api.jar;%XMLBEANS_PERFROOT%\3rdparty\v2\saxon8.jar;%XMLBEANS_PERFROOT%\3rdparty\v2\xmlbeans-2.0.0\lib\xbean_xpath.jar -DPERF_ROOT=%XMLBEANS_PERFROOT% org.apache.xmlbeans.test.performance.v2.%1 %FLAVOR% %FILENAME%
| crow-misia/xmlbeans | test/perf/bin/v2.bat | bat | apache-2.0 | 2,114 |
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
msbuild /v:m /m BuildAndTest.proj /p:CIBuild=true
if ERRORLEVEL 1 (
taskkill /F /IM vbcscompiler.exe
echo Build failed
exit /b 1
)
REM Kill any instances of VBCSCompiler.exe to release locked files;
REM otherwise future CI runs may fail while trying to delete those files.
taskkill /F /IM vbcscompiler.exe
REM It is okay and expected for taskkill to fail (it's a cleanup routine). Ensure
REM caller sees successful exit.
exit /b 0
| akoeplinger/roslyn | cibuild.cmd | bat | apache-2.0 | 526 |
@ECHO OFF
REM $Id: autogen.bat 3105 2010-10-10 11:32:36Z mloskot $
REM
REM This script generates headers for use with Visual C++ only
REM
REM Usage:
REM .\autogen.bat
REM nmake -f makefile.vc
REM
REM NOTE: DO NOT include this script in GEOS sources distribution
REM
set GEOS_HEADERS=include\geos
COPY %GEOS_HEADERS%\version.h.vc %GEOS_HEADERS%\version.h
COPY %GEOS_HEADERS%\platform.h.vc %GEOS_HEADERS%\platform.h
COPY capi\geos_c.h.in capi\geos_c.h
| jenshnielsen/basemap | geos-3.3.3/autogen.bat | bat | gpl-2.0 | 470 |
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
::
::
:: Build script for openssl on windows
:: openssl uses an in-tree build so you have to clean between each one
::
:: Uses the environment set up by a Visual Studio Command Prompt shortcut
:: to target a specific architecture and compiler
::
:: If you use Lavasoft Ad-Aware, disable it for this build. It blocks the creation
:: of any file named "clienthellotest.exe" for whatever reason, which breaks the build.
::
@ECHO OFF
SETLOCAL EnableDelayedExpansion
:: Sets variables for third party versions used in build
CALL ..\..\scripts\tpversions.bat || EXIT /B
:: use "build-openssl.bat /yes" to skip the question part
IF /I "%1" == "/YES" SET NOASK=1
IF NOT DEFINED PACKAGE_NAME SET PACKAGE_NAME=openssl
IF NOT DEFINED PACKAGE_VERSION SET PACKAGE_VERSION=%TP_OPENSSL_VERSION%
IF NOT DEFINED SOURCEDIR SET SOURCEDIR=%~dp0%PACKAGE_NAME%-%PACKAGE_VERSION%
IF NOT DEFINED WIN3P_ROOT SET WIN3P_ROOT=%~dp0..
:: Set COMPILER to (vc100 - vc140) depending on the current environment
CALL ..\..\scripts\cl_setcompiler.bat || EXIT /B
:: Set ARCH to either win32 or x64 depending on the current environment
CALL ..\..\scripts\cl_setarch.bat || EXIT /B
IF "%ARCH%" == "x64" (
SET TODO=debug-VC-WIN64A VC-WIN64A
) ELSE (
SET TODO=debug-VC-WIN32 VC-WIN32
)
FOR %%X IN ( !TODO! ) DO (
SET BUILDTYPE=%%X
FOR %%Y IN (
nt
ntdll
) DO (
SET LIBTYPE=%%Y
IF "!BUILDTYPE:~0,6!" == "debug-" (
SET OUTBUILDTYPE=debug
SET ZLIBLIBSUFFIX=d
) ELSE (
SET OUTBUILDTYPE=release
SET ZLIBLIBSUFFIX=
)
IF "!LIBTYPE!" == "ntdll" (
SET BUILD_OPTIONS=shared
SET OUTLIBTYPE=dynamic
SET ZLIBLIB=zlib!ZLIBLIBSUFFIX!
SET ZLIBOPT=zlib-dynamic
) ELSE (
SET BUILD_OPTIONS=no-shared
SET OUTLIBTYPE=static
SET ZLIBLIB=zlibstatic!ZLIBLIBSUFFIX!.lib
SET ZLIBOPT=zlib
)
SET LIB=%~dp0..\dist\zlib-%TP_ZLIB_VERSION%\!COMPILER!\!ARCH!\lib;!LIB!
SET BUILD_OPTIONS=!BUILD_OPTIONS! no-asm no-unit-test !ZLIBOPT! --openssldir=ssl --with-zlib-include=%~dp0..\dist\zlib-%TP_ZLIB_VERSION%\!COMPILER!\!ARCH!\include --with-zlib-lib=!ZLIBLIB!
SET OUTDIR=%WIN3P_ROOT%\dist\%PACKAGE_NAME%-%PACKAGE_VERSION%\%COMPILER%\%ARCH%\!OUTBUILDTYPE!\!OUTLIBTYPE!
ECHO/
ECHO =========================================================================
ECHO Building: %PACKAGE_NAME% %PACKAGE_VERSION% %COMPILER%:%ARCH%:!OUTBUILDTYPE!:!OUTLIBTYPE! [!BUILDTYPE!]
ECHO Configure Options: !BUILD_OPTIONS!
ECHO Install Directory: !OUTDIR!
ECHO Source Directory: %SOURCEDIR%
ECHO =========================================================================
ECHO/
IF NOT DEFINED NOASK (
CHOICE /M "Do you want to build this configuration? " /c YN
IF !ERRORLEVEL! NEQ 1 (EXIT /B !ERRORLEVEL!)
)
CD %SOURCEDIR% || EXIT /B
perl Configure !BUILDTYPE! --prefix="!OUTDIR!" !BUILD_OPTIONS! || EXIT /B
NMAKE /FMakefile install_sw || EXIT /B
NMAKE /FMakefile clean || EXIT /B
)
)
ENDLOCAL
EXIT /B
| vasili-v/themis | vendor/github.com/apache/thrift/build/wincpp/thirdparty/src/build-openssl.bat | bat | apache-2.0 | 3,614 |
@echo OFF
SET CLASSPATH=.;C:\compilers-cin-master\aulas-praticas\ap1\antlr-4.5.3-complete.jar;%CLASSPATH%
SET PATH=.;C:\Program Files\Java\jdk1.8.0_91\bin\;%PATH%
java org.antlr.v4.Tool Exp.g4
javac Exp*.java
java org.antlr.v4.runtime.misc.TestRig Exp s -gui input.txt
del *.tokens
del *.class
del *.java | lhcavalcanti/compilers-cin | aulas-praticas/ap1/grammars/CompileAndRun.bat | bat | mit | 323 |
REM SE NÃO FUNICIONAR A LINHA ABAIXO, COLOQUE O PATH DO DIRETÓRIO BIN DO JAVA. EX:
REM "C:\Program Files\Java\jdk1.6.0_04\bin\javaw.exe" -jar PTMConverter.jar
java -jar PTMConverter.jar
pause | arturnista/openglstudy | PTMConverter/run.bat | bat | mit | 196 |
C:\Python27\Scripts\pyinstaller.exe windows_service.spec
pause | nglrt/virtual_energy_sensor | pc_data_collector/build_service.bat | bat | mit | 62 |
@echo off
adb shell ps | codeskyblue/gohelloworld | adbps.bat | bat | mit | 22 |
timeout 1 | MargaretKrutikova/deploy-script-runner-web-api | DeployService/DeployServiceWebApi.IntegrationTests/test-resources/deployables/long-running.bat | bat | mit | 9 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.