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 Copyright 2009-2015 Joao Carlos Roseta Matos
rem
rem This program is free software: you can redistribute it and/or modify
rem it under the terms of the GNU General Public License as published by
rem the Free Software Foundation, either version 3 of the License, or
rem (at your option) any later version.
rem
rem This program is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem along with this program. If not, see <http://www.gnu.org/licenses/>.
set OLDPATH=%PATH%
set OLDPYTHONPATH=%PYTHONPATH%
set REBUILD_REFERENCE=YES
set CHECK_PY3_COMPATIBILITY=YES
if "%1"=="-h" goto :HELP
if "%1"=="help" goto :HELP
goto :NOHELP
:HELP
echo Usage:
echo.
echo build -h, help show this help message
echo build builds sdist/bdist_wheel or just sdist if APP_TYPE = 'module' inside appinfo.py
echo build clean clears dirs and files
echo build cxf builds windows exe including Python runtime - not working for the moment
echo build doc builds doc
echo build dumb builds bdist_dumb (zip on Windows, tar/ztar/gztar/zip on GNU Linux in the future)
echo build egg builds bdist_egg (egg)
echo build exe builds bdist_wininst (exe) - requires Python to be installed on destination
echo build msi builds bdist_msi (msi) - requires Python to be installed on destination
echo build py2exe builds windows exe including Python runtime
echo build pypi uploads dists to PyPI (including documentation)
echo build pypitest uploads dists to test
echo build rpm builds bdist_rpm (rpm/srpm) - only works on GNU Linux (in the future)
echo build src builds sdist (zip on Windows, tar.gz on GNU Linux in the future)
echo build test run tests
echo build whl builds bdist_wheel (whl)
echo.
echo Before runnning build.cmd for the first time, you should execute pip install -r requirements-dev.txt to install it's requirements.
echo.
goto :EXIT
:NOHELP
cls
python setup_utils.py app_name()
if not exist app_name.txt goto :EXIT
for /f "delims=" %%f in (app_name.txt) do set PROJECT=%%f
del app_name.txt
if "%1"=="pypi" goto :PYPI
if "%1"=="pypitest" goto :PYPITEST
echo.
echo *** Clean
echo.
if exist app_ver.txt del app_ver.txt
if exist app_name.txt del app_name.txt
if exist app_type.txt del app_type.txt
if exist py_ver.txt del py_ver.txt
if exist build rd /s /q build
if exist dist rd /s /q dist
if exist test\*.pyc del test\*.pyc
python setup_utils.py app_ver()
if not exist app_ver.txt goto :EXIT
for /f "delims=" %%f in (app_ver.txt) do set APP_VER=%%f
del app_ver.txt
if exist *.pyc del *.pyc
if exist %PROJECT%\*.pyc del %PROJECT%\*.pyc
if exist %PROJECT%.egg-info rd /s /q %PROJECT%.egg-info
if exist %PROJECT%-%APP_VER% rd /s /q %PROJECT%-%APP_VER%
if exist %PROJECT%\doc rd /s /q %PROJECT%\doc
if "%1"=="clean" goto :EXIT
echo.
echo *** Update some files
echo.
if "%PYTHON_EASYSETUP_AUTHOR%"=="" goto :NO_COPYRIGHT_UPD
:COPYRIGHT_UPD
python setup_utils.py check_copyright()
if ERRORLEVEL==1 goto :EXIT
python setup_utils.py update_copyright()
:NO_COPYRIGHT_UPD
python setup_utils.py upd_usage_in_readme()
python setup_utils.py collect_to_do()
copy /y README.rst %PROJECT%\README.txt > nul
copy /y LICENSE.rst %PROJECT%\LICENSE.txt > nul
copy /y AUTHORS.rst %PROJECT%\AUTHORS.txt > nul
copy /y ChangeLog.rst %PROJECT%\ChangeLog.txt > nul
copy /y appinfo.py %PROJECT% > nul
python setup_utils.py app_type()
if not exist app_type.txt goto :EXIT
for /f "delims=" %%f in (app_type.txt) do set PROJ_TYPE=%%f
del app_type.txt
python setup_utils.py py_ver()
if not exist py_ver.txt goto :EXIT
for /f "delims=" %%f in (py_ver.txt) do set PY_VER=%%f
del py_ver.txt
:CHECKERS
echo.
echo *** PEP8 checker
echo.
for %%a in (%PROJECT%\*.py) do flake8 %%a
rem set PYTHONPATH=%PYTHONPATH%:%PROJECT%
rem for %%a in (%PROJECT%\*.py) do pylint -r n %%a
echo.
echo *****
echo If there were errors or warnings press Ctrl-C to interrupt this batch file, fix them and rerun build.cmd.
echo.
pause
if "%CHECK_PY3_COMPATIBILITY%"=="" goto :NO_CHECK_PY3_COMPAT
echo.
echo *** Python 3 compatibility checker
echo.
for %%a in (%PROJECT%\*.py) do pylint -r n --py3k %%a
echo.
echo *****
echo If there were errors or warnings (No config file found... is OK) press Ctrl-C to interrupt this batch file, fix them and rerun build.cmd.
echo If there weren't any errors above, consider an additional check by running the application with python -3 %PROJECT%
echo.
pause
:NO_CHECK_PY3_COMPAT
cls
if "%1"=="doc" goto :DOC
:TEST
if not exist test goto :DOC
echo.
echo *** Test
echo.
rem *** source doctest ***
rem python -m doctest %PROJECT%\%PROJECT%.py
rem *** doctest ***
rem python -m doctest -v test\test.rst
rem *** unittest ***
rem ren test\test_%PROJECT%.py pytest_test_%PROJECT%.py
rem ren test\doctest_test_%PROJECT%.py test_%PROJECT%.py
rem python -m unittest discover -v -s test
rem ren test\test_%PROJECT%.py doctest_test_%PROJECT%.py
rem ren test\pytest_test_%PROJECT%.py test_%PROJECT%.py
py.test --cov-report term-missing --cov %PROJECT% -v test
if ERRORLEVEL==1 goto :EXIT
if "%1"=="test" goto :EXIT
pause
cls
:DOC
if not exist doc goto :NO_DOC
echo.
echo *** Sphinx
echo.
set SPHINXOPTS=-E
set PATH=c:\miktex\miktex\bin;%PATH%
if "%REBUILD_REFERENCE%"=="YES" easysetup -q -r
python setup_utils.py change_sphinx_theme()
copy /y README.rst README.rst.bak > nul
python setup_utils.py remove_copyright()
cd doc
cmd /c make clean
cmd /c make html
if not exist ..\%PROJECT%\doc md ..\%PROJECT%\doc
xcopy /y /e _build\html\*.* ..\%PROJECT%\doc\ > nul
cmd /c make clean
if not exist index.ori ren index.rst index.ori
python ..\setup_utils.py prep_rst2pdf()
cmd /c make latex
cd _build\latex
pdflatex.exe %PROJECT%.tex
echo.
echo *** Repeat to correct references
echo.
pdflatex.exe %PROJECT%.tex
copy /y %PROJECT%.pdf ..\..\..\%PROJECT%\doc > nul
cd ..\..
if exist index.rst del index.rst
ren index.ori index.rst
cmd /c make clean
cd ..
del README.rst
ren README.rst.bak README.rst
python setup_utils.py create_doc_zip()
if "%1"=="doc" goto :EXIT
pause
cls
:NO_DOC
if "%1"=="cxf" goto :CXF
if "%1"=="dumb" goto :DUMB
if "%1"=="egg" goto :EGG
if "%1"=="exe" goto :EXE
if "%1"=="msi" goto :MSI
if "%1"=="py2exe" goto :PY2EXE
if "%1"=="rpm" goto :RPM
if "%1"=="whl" goto :WHL
:SRC
python setup_utils.py sleep(5)
echo.
echo *** sdist build
echo.
python setup.py sdist
echo.
echo *** End of sdist build. Check for errors.
echo.
if "%PROJ_TYPE%"=="module" goto :MSG
if "%1"=="src" goto :MSG
pause
:WHL
echo.
echo *** bdist_wheel build
echo.
python setup.py bdist_wheel
echo.
echo *** End of bdist_wheel build. Check for errors.
echo.
goto :MSG
:EGG
echo.
echo *** bdist_egg build
echo.
python setup.py bdist_egg
echo.
echo *** End of bdist_egg build. Check for errors.
echo.
goto :MSG
:EXE
echo.
echo *** bdist_wininst build
echo.
python setup.py bdist_wininst
echo.
echo *** End of bdist_winist build. Check for errors.
echo.
goto :MSG
:DUMB
echo.
echo *** bdist_dumb build
echo.
python setup.py bdist_dumb
echo.
echo *** End of bdist_dumb build. Check for errors.
echo.
goto :MSG
:MSI
echo.
echo *** bdist_msi build
echo.
python setup.py bdist_msi
echo.
echo *** End of bdist_msi build. Check for errors.
echo.
goto :MSG
:RPM
echo.
echo *** bdist_rpm build
echo.
python setup.py bdist_rpm
echo.
echo *** End of bdist_rpm build. Check for errors.
echo.
goto :MSG
:MSG
echo.
echo *****
echo If there were filesystem errors (eg. directory not empty), random syntax or Unicode errors, try repeating the build up to 3 times.
echo.
goto :EXIT
:CXF
echo.
echo *** CXF
echo.
echo Not working yet...
rem python setup_cxf.py build
rem python setup_cxf.py build bdist_msi
rem python setup_cxf.py build_exe
rem cxfreeze setup_cxf.py build_exe
rem echo.
rem echo *** Copy datafiles
rem echo.
rem copy build\exe.win32-%PY_VER%\%PROJECT%\*.* build\exe.win32-%PY_VER%
goto :EXIT
:PY2EXE
echo.
echo *** PY2EXE
echo.
echo *** py2exe requires commenting unicode import in appinfo.py
echo.
python setup_utils.py comment_import_for_py2exe('appinfo.py')
copy /y appinfo.py %PROJECT% > nul
pause
python setup_py2exe.py py2exe
if exist dist\__main__.exe ren dist\__main__.exe %PROJECT%.exe
echo.
echo *** Uncommenting unicode import in appinfo.py
echo.
python setup_utils.py uncomment_import_for_py2exe('appinfo.py')
copy /y appinfo.py %PROJECT% > nul
echo *****
echo Check if you need to add any files or directories to DATA_FILES_PY2EXE in setup_py2exe.py.
echo.
goto :EXIT
:PYPI
echo.
echo *** PyPI: Register and upload
echo.
python setup.py register -r pypi
twine upload dist/*
if ERRORLEVEL==1 goto :EXIT
rem *** old way ***
rem if "%PROJ_TYPE%"=="module" python setup.py sdist upload -r pypi
rem if "%PROJ_TYPE%"=="module" goto :EXIT
rem rem python setup.py sdist bdist_egg bdist_wininst bdist_wheel upload -r pypi
rem python setup.py sdist bdist_wheel upload -r pypi
if exist %PROJECT%\doc python setup.py register upload_docs --upload-dir=%PROJECT%\doc
goto :EXIT
:PYPITEST
echo.
echo *** PYPITEST: Register and upload
echo.
python setup.py register -r test
twine upload -r test dist/*
rem *** old way ***
rem if "%PROJ_TYPE%"=="module" python setup.py sdist upload -r test
rem if "%PROJ_TYPE%"=="module" goto :EXIT
rem rem python setup.py sdist bdist_egg bdist_wininst bdist_wheel upload -r test
rem python setup.py sdist bdist_wheel upload -r test
:EXIT
set PATH=%OLDPATH%
set PYTHONPATH=%OLDPYTHONPATH%
set OLDPATH=
set OLDPYTHONPATH=
set PY_VER=
set APP_VER=
set PROJ_TYPE=
set PROJECT=
set SPHINXOPTS=
set REBUILD_REFERENCE=
set CHECK_PY3_COMPATIBILITY=
| jcrmatos/tai | build.cmd | bat | gpl-2.0 | 9,811 |
cmd_drivers/mtd/lpddr/built-in.o := rm -f drivers/mtd/lpddr/built-in.o; arm-linux-ar rcs drivers/mtd/lpddr/built-in.o
| heyoufei/mini2440_kernel | drivers/mtd/lpddr/.built-in.o.cmd | bat | gpl-2.0 | 119 |
cmd_drivers/gpu/vga/built-in.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/gpu/vga/built-in.o drivers/gpu/vga/vgaarb.o
| JoinTheRealms/TF700-dualboot-stockbased | drivers/gpu/vga/.built-in.o.cmd | bat | gpl-2.0 | 197 |
@echo off
set PATH=%WINDIR%;%WINDIR%\system;%WINDIR%\system32;%PATH%
regsvr32 /u ToFroWin.dll
| creaktive/ToFroWin | ReleaseMinDependency/uninstall.bat | bat | gpl-2.0 | 97 |
cmd_drivers/hid/usbhid/built-in.o := ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/hid/usbhid/built-in.o drivers/hid/usbhid/usbhid.o
| tcp209/kernel_samsung_epic4gtouch | build/epic4gtouch/drivers/hid/usbhid/.built-in.o.cmd | bat | gpl-2.0 | 197 |
:user_configuration
:: About AIR application packaging
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959
:: http://livedocs.adobe.com/flex/3/html/distributing_apps_4.html#1037515
:: NOTICE: all paths are relative to project root
:: Your certificate information
set CERT_NAME="AIRBonjourDemo"
set CERT_PASS=fd
set CERT_FILE="bat\AIRBonjourDemo.p12"
set SIGNING_OPTIONS=-storetype pkcs12 -keystore %CERT_FILE% -storepass %CERT_PASS%
:: Application descriptor
set APP_XML=application.xml
:: Files to package
set APP_DIR=bin
set FILE_OR_DIR=-C %APP_DIR% .
:: Your application ID (must match <id> of Application descriptor)
set APP_ID=AIRBonjourDemo
:: Output
set AIR_PATH=air
set AIR_NAME=AIRBonjourDemo
:validation
%SystemRoot%\System32\find /C "<id>%APP_ID%</id>" "%APP_XML%" > NUL
if errorlevel 1 goto badid
goto end
:badid
echo.
echo ERROR:
echo Application ID in 'bat\SetupApplication.bat' (APP_ID)
echo does NOT match Application descriptor '%APP_XML%' (id)
echo.
if %PAUSE_ERRORS%==1 pause
exit
:end | benkuper/AIR-NativeExtensions | AIRBonjour/as3_demo/bat/SetupApplication.bat | bat | gpl-2.0 | 1,060 |
astyle --indent=tab=4 --brackets=break --indent-classes --indent-switches --indent-preprocessor --break-closing-brackets --pad-oper --pad-header --unpad-paren --convert-tabs --fill-empty-lines --max-instatement-indent=79 --suffix=none .\core\*.cpp .\core\*.h .\gui.win\*.cpp .\gui.win\*.h
| pavel-pimenov/PtokaX | Astyle.bat | bat | gpl-3.0 | 289 |
setlocal
SET PATH=%PATH%;C:\Users\root\Documents\GitHub\libaxolotl-windows\packages\Google.ProtocolBuffers.2.4.1.555\tools
ProtoGen -namespace="libaxolotl.state" -umbrella_classname="StorageProtos" -nest_classes=true -output_directory="../state/" LocalStorageProtocol.proto
ProtoGen -namespace="libaxolotl.protocol" -umbrella_classname="WhisperProtos" -nest_classes=true -output_directory="../protocol/" WhisperTextProtocol.proto | jmue/libaxolotl-uwp | libaxolotl/Protobuf/Makefile.bat | bat | gpl-3.0 | 429 |
/* cmd/v1-history.cmd - NexusServV3
* Copyright (C) 2012-2013 #Nexus project
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
sendserv("NOTICE $nick :\002ArcticServ 1.0 History\002");
sendserv("NOTICE $nick :\037Version\037 \037Coder(s)\037");
sendserv("NOTICE $nick :1.0.0-dev Calisto");
sendserv("NOTICE $nick :1.0.0-stable Calisto");
sendserv("NOTICE $nick :1.5-dev Calisto");
sendserv("NOTICE $nick :1.5-stable Calisto Zer0n");
sendserv("NOTICE $nick :1.6 Calisto");
sendserv("NOTICE $nick :1.6.1 Calisto");
sendserv("NOTICE $nick :1.6.2 Calisto");
sendserv("NOTICE $nick :1.6.3 Calisto");
sendserv("NOTICE $nick :1.6.4 Calisto");
sendserv("NOTICE $nick :1.6.5 Calisto");
sendserv("NOTICE $nick :1.6.6 Calisto");
sendserv("NOTICE $nick :1.6.7 Calisto");
sendserv("NOTICE $nick :1.6.8 Calisto");
sendserv("NOTICE $nick :1.6.9 Calisto");
sendserv("NOTICE $nick :1.6.91 Calisto");
sendserv("NOTICE $nick :1.6.92 Calisto");
sendserv("NOTICE $nick :1.7.0 Calisto");
sendserv("NOTICE $nick :1.7.0-SSL Calisto");
sendserv("NOTICE $nick :1.8.0-dev Calisto");
sendserv("NOTICE $nick :1.8.0 Calisto");
sendserv("NOTICE $nick :1.8.1 Calisto");
sendserv("NOTICE $nick :1.8.1a Calisto");
sendserv("NOTICE $nick :1.8.1a-hotfix1 Calisto");
sendserv("NOTICE $nick :1.8.1a-hotfix2 &");
sendserv("NOTICE $nick : -hotfix2-wgnpatch Calisto");
sendserv("NOTICE $nick :1.9.0-wgnpatch Calisto Zer0n"); | Nexus-IRC/NexusServV3 | cmd/v1-history.cmd | bat | gpl-3.0 | 2,270 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@IF "%USERDOMAIN%" == "ZIYA-ORION" (
set JAVA_HOME="C:\Program Files\Java\jdk1.8.0_131"
) else (
set JAVA_HOME="C:\Program Files\Java\jdk1.8.0_112"
)
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "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
| Daesmond/OrionMod | gradlew.bat | bat | lgpl-2.1 | 2,563 |
@echo off
rem $Id$
::remove any quotes from JAVA_HOME and EXIST_HOME env var, will be re-added below
for /f "delims=" %%G IN (%JAVA_HOME%) DO SET JAVA_HOME=%%G
for /f "delims=" %%G IN (%EXIST_HOME%) DO SET EXIST_HOME=%%G
if not "%JAVA_HOME%" == "" goto gotJavaHome
set JAVA_HOME=$JAVA_HOME
:gotJavaHome
rem will be set by the installer
set EXIST_HOME=$INSTALL_PATH
:gotExistHome
set ANT_HOME=%EXIST_HOME%\tools\ant
set _LIBJARS=%CLASSPATH%;%ANT_HOME%\lib\ant-launcher-1.9.7.jar;%EXIST_HOME%\lib\test\junit-4.12.jar;%JAVA_HOME%\lib\tools.jar
set JAVA_ENDORSED_DIRS=%EXIST_HOME%\lib\endorsed
rem You must set
rem -Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl
rem Otherwise Ant will fail to do junitreport with Saxon, as it has a direct dependency on Xalan.
set _JAVA_OPTS=-Xms512m -Xmx512m -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -Dant.home="%ANT_HOME%" -Dexist.home="%EXIST_HOME%" -Djavax.xml.transform.TransformerFactory="org.apache.xalan.processor.TransformerFactoryImpl" %JAVA_OPTS%
echo eXist Build
echo -------------------
echo JAVA_HOME=%JAVA_HOME%
echo EXIST_HOME=%EXIST_HOME%
echo _LIBJARS=%_LIBJARS%
echo _JAVA_OPTS=%_JAVA_OPTS%
echo Starting Ant...
echo
"%JAVA_HOME%\bin\java" %_JAVA_OPTS% -classpath "%_LIBJARS%" org.apache.tools.ant.launch.Launcher %1 %2 %3 %4 %5 %6 %7 %8 %9
| jensopetersen/exist | installer/scripts/build.bat | bat | lgpl-2.1 | 1,385 |
@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
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PythonSDK.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PythonSDK.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
| predikto/python-sdk | docs/make.bat | bat | apache-2.0 | 6,996 |
@echo off
SETLOCAL EnableDelayedExpansion
if "%~1" == "" goto show_instructions
SET WIPERDOG_HOME=%~1
echo Param %WIPERDOG_HOME% "%~1"
REM Check OS 64 bit or 32 bit
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto WIN_64bit
SET JAVASERVICE_STUB=%WIPERDOG_HOME%\bin\wiperdog_service_32bit.exe
GOTO SET_OTHER_PARAM
:WIN_64bit
SET JAVASERVICE_STUB=%WIPERDOG_HOME%\bin\wiperdog_service_64bit.exe
:SET_OTHER_PARAM
SET SERVICE_NAME=Wiperdog
SET GROOVY_SCRIPT=%WIPERDOG_HOME%\bin\service.groovy
SET LOGS_FOLDER=%WIPERDOG_HOME%\log
echo.
echo.
echo INSTALLING %SERVICE_NAME%
echo.
echo JavaService executable is %JAVASERVICE_STUB%
echo Service name is %SERVICE_NAME%
echo GROOVY target is %GROOVY_SCRIPT%
echo LOGS folder is %LOGS_FOLDER%
echo.
echo JAVA_HOME is %JAVA_HOME%
echo.
echo.
if not exist "%WIPERDOG_HOME%"\log md "%WIPERDOG_HOME%"\log
REM stoping service
net stop "%SERVICE_NAME%"
"%JAVASERVICE_STUB%" -uninstall "%SERVICE_NAME%"
REM check JDK/JRE
if exist "%JAVA_HOME%"\bin\client GOTO SET_JRE_CLIENT_DLL
if exist "%JAVA_HOME%"\bin\server GOTO SET_JRE_SERVER_DLL
REM set JDK client jvm.dll path
if not exist "%JAVA_HOME%"\jre\bin\client GOTO SET_JDK_SERVER_DLL
SET JVM_DLL=%JAVA_HOME%\jre\bin\client\jvm.dll
GOTO START_MAIN_APP
REM set JDK server jvm.dll path
:SET_JDK_SERVER_DLL
if not exist "%JAVA_HOME%"\jre\bin\server GOTO NOTFOUND_JVM
SET JVM_DLL=%JAVA_HOME%\jre\bin\server\jvm.dll
SET JVM_EXT_LIB=%JAVA_HOME%\jre\lib\ext
GOTO START_MAIN_APP
:NOTFOUND_JVM
echo.
echo.
echo Can not found JVM. Exit install service process.
echo.
echo.
goto end
:SET_JRE_CLIENT_DLL
REM set JRE jvm.dll path
SET JVM_DLL=%JAVA_HOME%\bin\client\jvm.dll
SET JVM_EXT_LIB=%JAVA_HOME%\lib\ext
GOTO START_MAIN_APP
:SET_JRE_SERVER_DLL
REM set JRE jvm.dll path
SET JVM_DLL=%JAVA_HOME%\bin\server\jvm.dll
SET JVM_EXT_LIB=%JAVA_HOME%\lib\ext
GOTO START_MAIN_APP
:START_MAIN_APP
echo.
REM for JDK only "%JAVASERVICE_STUB%" -install "%SERVICE_NAME%" "%JAVA_HOME%"\jre\bin\server\jvm.dll ^
REM below for using JRE
"%JAVASERVICE_STUB%" -install "%SERVICE_NAME%" "%JVM_DLL%" ^
-Djava.class.path="%WIPERDOG_HOME%\service\dasboot.jar" ^
-Dcom.lilypepper.groovy.localfolder="%WIPERDOG_HOME%\service" ^
-Dcom.lilypepper.groovy.runner="com.lilypepper.groovy.ServiceRunner" ^
-Djava.system.class.loader="com.lilypepper.groovy.boot.GoshClassLoader" ^
-Dfelix.home="%WIPERDOG_HOME%" ^
-Dfelix.system.properties="file:%WIPERDOG_HOME%\etc\system.properties" ^
-Djava.util.logging.config.file="%WIPERDOG_HOME%\etc\java.util.logging.properties" ^
-Dlog4j.ignoreTCL=true ^
-Djava.ext.dirs="%WIPERDOG_HOME%\lib\java\ext;%JVM_EXT_LIB%" ^
-Dbin_home="%WIPERDOG_HOME%"\bin\ ^
-Dprogram.name="" ^
-Dgroovy.home="%WIPERDOG_HOME%" ^
-Dgroovy.starter.conf="%WIPERDOG_HOME%\etc\groovy-starter.conf" ^
-Dscript.name="%WIPERDOG_HOME%\bin\startWiperdog.groovy" ^
-classpath "%WIPERDOG_HOME%"\bin\..\lib\java\bundle\*;"%WIPERDOG_HOME%"\bin\..\lib\java\bundle.a\*;"%WIPERDOG_HOME%"\bin\..\lib\java\bundle.d\*;"%WIPERDOG_HOME%"\bin\..\lib\java\ext\* org.codehaus.groovy.tools.GroovyStarter --main groovy.ui.GroovyMain --conf "%WIPERDOG_HOME%"\bin\..\etc\groovy-starter.conf ^
-verbose:gc ^
-Xmx1024M ^
-Xrs ^
-XX:CompileThreshold=100 ^
-XX:MaxPermSize=256m ^
-start com.lilypepper.groovy.boot.Bootstrap -method main -params "start" "%GROOVY_SCRIPT%" ^
-stop com.lilypepper.groovy.boot.Bootstrap -method main -params "stop" ^
-out "%LOGS_FOLDER%"\stdout.log ^
-err "%LOGS_FOLDER%"\stderr.log ^
-current "%LOGS_FOLDER%"
echo.
echo.
if "" == "" goto end
:show_instructions
echo Error: command must start with parameter WIPERDOG_HOME
echo E.g.: create_wiperdog_service.bat E:\wiperdog
echo NOTICE: you must use JRE instead of using JDK
:end
ENDLOCAL | WiperDogLabo/WiperdogJobrunner | service/javaservice/create_wiperdog_service.bat | bat | apache-2.0 | 3,706 |
@echo off
set PROG="c:\Program Files\Java\jdk1.8.0_112\bin\javaw"
set JARZIP=.\MouseDictionary-1.0-SNAPSHOT-jar-with-dependencies.jar
start "test" %PROG% -Dfile.encoding=utf-8 -jar %JARZIP%
| andrasigneczi/MouseDictionary | run.bat | bat | apache-2.0 | 201 |
REM @echo off
@if "%VSINSTALLDIR%"=="" goto error_no_VSINSTALLDIR
set PA_URL=http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz
cd "%~dp0"
bin\curl -L %PA_URL% > pa.tgz
bin\7z x -r -y -o. pa.tgz
bin\7z x -r -y -o. pa.tar
set PA_DIR=portaudio
mkdir pabuild
cd pabuild
cmake -G "Visual Studio 11" "..\%PA_DIR%"
MSBuild.exe portaudio.sln /t:Rebuild /p:Configuration=Release /p:Platform=x64
mkdir ..\lib
mkdir ..\bin
mkdir ..\include
copy Release\*.lib ..\lib\
copy Release\*.dll ..\bin\
copy ..\%PA_DIR%\include\*.h ..\include\
cd ..
:clean_and_exit
rmdir /s /q %PA_DIR%
rmdir /s /q pabuild
del pa.tgz
del pa.tar
@exit /B 0
:error_no_VSINSTALLDIR
@echo ERROR: You should run this bat file from your Developer Command Prompt for VS2012
pause
goto clean_and_exit
:error_no_PA_DIR
@echo ERROR: No Portaudio found
pause
goto clean_and_exit
| wtrsltnk/gamedev-deps | vs2012/download-extract-build-portaudio-64bit.bat | bat | apache-2.0 | 860 |
@mkpdb -pdb htdata824.pdb -tc grassy.tc -ld grassy_test.ld -size 24
| spiffcode/hostile-takeover | legacy/AuthorKit/updGrassy24.bat | bat | bsd-2-clause | 68 |
REM installer http://www.7-zip.org/a/7z1507-x64.exe
REM 7za is in http://www.7-zip.org/a/7z1507-extra.7z
REM Prerequisite:
REM 7za.exe in current directory or PATH
set PROTOBUF_VER=3.0.0-beta-3
set CMAKE_NAME=cmake-3.3.2-win32-x86
if not exist "protobuf-%PROTOBUF_VER%\cmake\build\Release\" (
call :installProto
)
echo Compile gRPC-Java with something like:
echo -PtargetArch=x86_32 -PvcProtobufLibs=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\Release -PvcProtobufInclude=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\include
goto :eof
:installProto
if not exist "%CMAKE_NAME%" (
call :installCmake
)
set PATH=%PATH%;%cd%\%CMAKE_NAME%\bin
powershell -command "& { iwr https://github.com/google/protobuf/archive/v%PROTOBUF_VER%.zip -OutFile protobuf.zip }"
7za X protobuf.zip
del protobuf.zip
pushd protobuf-3.0.0-beta-3\cmake
mkdir build
cd build
cmake -Dprotobuf_BUILD_TESTS=OFF ..
msbuild /maxcpucount /p:Configuration=Release libprotoc.vcxproj
call extract_includes.bat
popd
goto :eof
:installCmake
powershell -command "& { iwr https://cmake.org/files/v3.3/%CMAKE_NAME%.zip -OutFile cmake.zip }"
7za X cmake.zip
del cmake.zip
goto :eof
| louiscryan/grpc-java | buildscripts/make_dependencies.bat | bat | bsd-3-clause | 1,147 |
@echo off
set TEST_NAME=%1
if exist ./setenv.cmd (
call ./setenv.cmd %2 %3 %4 %5 %6 %7 %8 %9
) else (
echo No branch-specific configuration found
)
set TEST_HOME=%BRANCH_HOME:/=\%\src\test\chef\%TEST_NAME%
if "%TEST_NAME%" == "" (
echo Usage: $0 test_name
echo where test_name is name of subdirectory in %BRANCH_HOME%
pause
exit 1
)
if not exist "%TEST_HOME%" (
echo Test directory %TEST_NAME% not found in %BRANCH_HOME%
echo Directory %TEST_HOME% must exist and contain a Vagrantfile
pause
exit 2
)
echo Running "vagrant renew" in "%TEST_HOME%"
cd %TEST_HOME%
vagrant destroy --force
vagrant up
pause
| Aquilent/drug-adverse-event-browser | bin/vagrant-renew.cmd | bat | mit | 630 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXWSMSG.S07_OptionalElementsValidation.MSOXWSMSG_S07_TC02_VerifyMessageWithoutOptionalElements /testcontainer:..\..\MS-OXWSMSG\TestSuite\bin\Debug\MS-OXWSMSG_TestSuite.dll /runconfig:..\..\MS-OXWSMSG\MS-OXWSMSG.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeWebServices/Source/Scripts/MS-OXWSMSG/RunMSOXWSMSG_S07_TC02_VerifyMessageWithoutOptionalElements.cmd | bat | mit | 331 |
set BAT_DIR=%~dp0
call %BAT_DIR%..\bin\yborm_env.bat
set BAT_DIR=%~dp0
find /i "yborm" %BCC_DIR%\bin\ilink32.cfg && echo OK || echo /L"%BOOST_LIBS%" >> %BCC_DIR%\bin\ilink32.cfg
cmake -G "Borland Makefiles" -D CMAKE_INSTALL_PREFIX:PATH=%BAT_DIR%.. -D DEP_LIBS_ROOT:PATH=%DEP_LIBS_ROOT% -D BOOST_ROOT:PATH=%BOOST_ROOT% -D USE_QT:STRING=%USE_QT% %BAT_DIR%..\src
make && make install
| kamaroly/yb-orm | build-bcc.bat | bat | mit | 391 |
cmd_drivers/usb/storage/usb-storage.o := arm-linux-gnueabihf-ld -EL -r -o drivers/usb/storage/usb-storage.o drivers/usb/storage/scsiglue.o drivers/usb/storage/protocol.o drivers/usb/storage/transport.o drivers/usb/storage/usb.o drivers/usb/storage/initializers.o drivers/usb/storage/sierra_ms.o drivers/usb/storage/option_ms.o drivers/usb/storage/usual-tables.o
| Dee-UK/D33_KK_Kernel | drivers/usb/storage/.usb-storage.o.cmd | bat | gpl-2.0 | 366 |
@echo off
set THRIFT_DIR=src_thrift
@echo on
@echo -------------------------------------------------------------------------
@echo 1. generate files
@echo -------------------------------------------------------------------------
@echo off
thrift -o %THRIFT_DIR% -strict -r -v --gen erl %THRIFT_DIR%\erlang_python.thrift
thrift -out src_py -strict -r -v --gen py %THRIFT_DIR%\erlang_python.thrift
@echo on
@echo -------------------------------------------------------------------------
@echo 2. list content of generated file directories
@echo -------------------------------------------------------------------------
@echo off
dir %THRIFT_DIR%\gen-erl
@echo on
@echo -------------------------------------------------------------------------
@echo 3. move the generated files
@echo -------------------------------------------------------------------------
@echo off
move /Y %THRIFT_DIR%\gen-erl\*.erl src
move /Y %THRIFT_DIR%\gen-erl\*.hrl include
@echo on
@echo -------------------------------------------------------------------------
@echo 4. delete generated file directories
@echo -------------------------------------------------------------------------
@echo off
rmdir %THRIFT_DIR%\gen-erl
dir %THRIFT_DIR%\*.*
| walter-weinmann/annlink_thrift | thrift_compile.bat | bat | apache-2.0 | 1,235 |
@echo off
rem $Id$
rem Run Farrago as a standalone RMI server
setlocal
set MAIN_DIR=%~dp0..
call "%MAIN_DIR%\bin\defineFarragoRuntime.bat"
if errorlevel 1 goto done
%JAVA_EXEC% %JAVA_ARGS% net.sf.farrago.server.FarragoVjdbcServer
:done
| LucidDB/luciddb | farrago/dist/bin/farragoServer.bat | bat | apache-2.0 | 240 |
:: Copyright 2013-2014 The 'mumble-releng' Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that
:: can be found in the LICENSE file in the source tree or at
:: <http://mumble.info/mumble-releng/LICENSE>.
git log -n 1 --date=short --pretty="format:win32-1.2.x-%%ad-%%h" | ccpgames/mumble-releng | buildenv/1.2.x/win32/setup/name.cmd | bat | bsd-3-clause | 313 |
@echo off
set PATH=C:\Perl\bin;c:\cygwin\bin;C:\Program Files\Inno Setup 5;%PATH%
set CYGWIN=nontsec nodosfilewarning
set VCVARS32=C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat
set VCVARS32_2K3=C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\bin\vcvars32.bat
if exist "%VCVARS32_2K3%" goto vs2k3
if exist "%VCVARS32%" goto vs2k8
echo Cannot find MS Visual C++
goto end
:vs2k8
call "%VCVARS32%"
exit /b
:vs2k3
call "%VCVARS32_2K3%"
exit /b
:end
exit /b 1
| amiramix/serna-free | win32env.bat | bat | gpl-3.0 | 513 |
cmd_sound/built-in.o := rm -f sound/built-in.o; arm-eabi-ar rcs sound/built-in.o
| NooNameR/Sense4.0-kernel | sound/.built-in.o.cmd | bat | gpl-2.0 | 82 |
@echo off
@setlocal
@setlocal enabledelayedexpansion
@set node_name=emqttd
@rem Get the absolute path to the parent directory,
@rem which is assumed to be the node root.
@for /F "delims=" %%I in ("%~dp0..") do @set node_root=%%~fI
@set releases_dir=%node_root%\releases
@set runner_etc_dir=%node_root%\etc
@rem Parse ERTS version and release version from start_erl.data
@for /F "usebackq tokens=1,2" %%I in ("%releases_dir%\start_erl.data") do @(
@call :set_trim erts_version %%I
@call :set_trim release_version %%J
)
@set vm_args=%runner_etc_dir%\vm.args
@set sys_config=%runner_etc_dir%\emqttd.config
@set node_boot_script=%releases_dir%\%release_version%\%node_name%
@set clean_boot_script=%releases_dir%\%release_version%\start_clean
@rem extract erlang cookie from vm.args
@for /f "usebackq tokens=1-2" %%I in (`findstr /b \-setcookie "%vm_args%"`) do @set erlang_cookie=%%J
@set erts_bin=%node_root%\erts-%erts_version%\bin
@set service_name=%node_name%_%release_version%
@set erlsrv="%erts_bin%\erlsrv.exe"
@set epmd="%erts_bin%\epmd.exe"
@set escript="%erts_bin%\escript.exe"
@set werl="%erts_bin%\werl.exe"
@if "%1"=="usage" @goto usage
@if "%1"=="install" @goto install
@if "%1"=="uninstall" @goto uninstall
@if "%1"=="start" @goto start
@if "%1"=="stop" @goto stop
@if "%1"=="restart" @call :stop && @goto start
@if "%1"=="console" @goto console
@if "%1"=="query" @goto query
@if "%1"=="attach" @goto attach
@if "%1"=="upgrade" @goto upgrade
@echo Unknown command: "%1"
:usage
@echo Usage: %~n0 [install^|uninstall^|start^|stop^|restart^|console^|query^|attach^|upgrade]
@goto :EOF
:install
@set description=Erlang node %node_name% in %node_root%
@set start_erl=%node_root%\bin\start_erl.cmd
@set args= ++ %node_name% ++ %node_root%
@%erlsrv% add %service_name% -c "%description%" -sname %node_name% -w "%node_root%" -m "%start_erl%" -args "%args%" -stopaction "init:stop()."
@goto :EOF
:uninstall
@%erlsrv% remove %service_name%
@%epmd% -kill
@goto :EOF
:start
@%erlsrv% start %service_name%
@goto :EOF
:stop
@%erlsrv% stop %service_name%
@goto :EOF
:console
set dest_path=%~dp0
cd /d !dest_path!..\plugins
set current_path=%cd%
set plugins=
for /d %%P in (*) do (
set "plugins=!plugins!"!current_path!\%%P\ebin" "
)
cd /d %node_root%
@start "%node_name% console" %werl% -boot "%node_boot_script%" -config "%sys_config%" -args_file "%vm_args%" -sname %node_name% -pa %plugins%
@goto :EOF
:query
@%erlsrv% list %service_name%
@exit %ERRORLEVEL%
@goto :EOF
:attach
@for /f "usebackq" %%I in (`hostname`) do @set hostname=%%I
start "%node_name% attach" %werl% -boot "%clean_boot_script%" -remsh %node_name%@%hostname% -sname console -setcookie %erlang_cookie%
@goto :EOF
:upgrade
@if "%2"=="" (
@echo Missing upgrade package argument
@echo Usage: %~n0 upgrade {package base name}
@echo NOTE {package base name} MUST NOT include the .tar.gz suffix
@goto :EOF
)
@%escript% %node_root%\bin\install_upgrade.escript %node_name% %erlang_cookie% %2
@goto :EOF
:set_trim
@set %1=%2
@goto :EOF
| veestr/gemini | services/message-broker/emqttd/bin/emqttd.cmd | bat | apache-2.0 | 3,039 |
@node %~dp0/sampleBrowser.js %* | jstourac/http2-test | lib/res/sampleBrowser.bat | bat | bsd-2-clause | 31 |
@REM
@REM make-vc.cmd to build Lanes on Visual C++ 2005/08
@REM
@REM Requires: Windows XP or later (cmd.exe)
@REM Visual C++ 2005/2008 (Express)
@REM LuaBinaries 5.1.3 or Lua for Windows 5.1.3
@REM
@setlocal
@set LUA_PATH=src\?.lua;tests\?.lua
@if not "%LUA51%"=="" (
@goto LUA_OK
)
@REM *** Lua for Windows >=5.1.3.14 (%LUA_DEV%) ***
@REM
@if exist "%LUA_DEV%\lua.exe" (
@set LUA51=%LUA_DEV%
@goto LUA_OK
)
@REM *** Lua for Windows (default path) ***
@REM
@if exist "%ProgramFiles%\Lua\5.1\lua.exe" (
@set LUA51=%ProgramFiles:~0,2%\Progra~1\Lua\5.1
@goto LUA_OK
)
@REM *** LuaBinaries (default path) ***
@REM
@if exist "%ProgramFiles%\Lua5.1\lua5.1.exe" (
@set LUA51=%ProgramFiles:~0,2%\Progra~1\Lua5.1
@goto LUA_OK
)
goto ERR_NOLUA
:LUA_OK
@REM ---
@REM %LUA_EXE% = %LUA51%\lua[5.1].exe
@REM %LUAC_EXE% = %LUA51%\luac[5.1].exe
@REM %LUA_LIB% = %LUA51%[\lib]
@REM ---
@set LUA_EXE=%LUA51%\lua5.1.exe
@if exist "%LUA_EXE%" goto LUA_EXE_OK
@set LUA_EXE=%LUA51%\lua.exe
@if exist "%LUA_EXE%" goto LUA_EXE_OK
@echo "Cannot find %LUA51%\lua[5.1].exe
@goto EXIT
:LUA_EXE_OK
@set LUAC_EXE=%LUA51%\luac5.1.exe
@if exist "%LUAC_EXE%" goto LUAC_EXE_OK
@set LUAC_EXE=%LUA51%\luac.exe
@if exist "%LUAC_EXE%" goto LUAC_EXE_OK
@echo "Cannot find %LUA51%\luac[5.1].exe
@goto EXIT
:LUAC_EXE_OK
@if "%1"=="" goto BUILD
@if "%1"=="clean" goto CLEAN
@if "%1"=="test" goto TEST
@if "%1"=="launchtest" goto LAUNCHTEST
@if "%1"=="perftest" goto PERFTEST
@if "%1"=="perftest-plain" goto PERFTEST-PLAIN
@if "%1"=="stress" goto STRESS
@if "%1"=="basic" goto BASIC
@if "%1"=="fifo" goto FIFO
@if "%1"=="keeper" goto KEEPER
@if "%1"=="atomic" goto ATOMIC
@if "%1"=="cyclic" goto CYCLIC
@if "%1"=="timer" goto TIMER
@if "%1"=="recursive" goto RECURSIVE
@if "%1"=="fibonacci" goto FIBONACCI
@if "%1"=="hangtest" goto HANGTEST
@if "%1"=="require" goto REQUIRE
@echo Unknown target: %1
@echo.
@goto EXIT
:BUILD
@REM LuaBinaries:
@REM The current build system does not show 'lanes/core.dll' to
@REM be dependent on more than 'KERNEL32.DLL'. Good.
@REM
@REM Lua for Windows:
@REM Depends on KERNEL32.DLL and LUA5.1.DLL. Good?
@set LUA_LIB=%LUA51%
@if exist "%LUA_LIB%\lua5.1.lib" (
@echo.
@echo ***
@echo *** Using Lua from: %LUA51%
@echo ***
@echo.
@goto LUA_LIB_OK
)
@set LUA_LIB=%LUA51%\lib
@if exist "%LUA_LIB%\lua5.1.lib" (
@echo.
@echo ***
@echo *** Using Lua from: %LUA51%
@echo ***
@echo.
@goto LUA_LIB_OK
)
@echo Cannot find %LUA51%\[lib\]lua5.1.lib
@goto EXIT
:LUA_LIB_OK
@if "%VCINSTALLDIR%"=="" goto ERR_NOVC
@REM
@REM Win32 (Visual C++ 2005/08 Express) build commands
@REM
@REM MS itself has warnings in stdlib.h (4255), winbase.h (4668), several (4820, 4826)
@REM 4054: "type cast from function pointer to data pointer"
@REM 4127: "conditional expression is constant"
@REM 4711: ".. selected for automatic inline expansion"
@REM
@set WARN=/Wall /wd4054 /wd4127 /wd4255 /wd4668 /wd4711 /wd4820 /wd4826
@REM /LDd: debug DLL
@REM /O2 /LD: release DLL
@REM
@set FLAGS=/O2 /LD
cl %WARN% %FLAGS% /I "%LUA51%\include" /Felanes\core.dll src\*.c "%LUA_LIB%\lua5.1.lib"
@REM cl %WARN% %FLAGS% /I "%LUA51%\include" /Felanes\core.dll src\*.c "%LUA_LIB%\lua5.1.lib" /link /NODEFAULTLIB:libcmt
@del lanes\core.lib
@del lanes\core.exp
@goto EXIT
:CLEAN
if exist lanes\*.dll del lanes\*.dll
if exist delme del delme
@goto EXIT
:TEST
@REM "make test" does not automatically build/update the dll. We're NOT a makefile. :!
@REM
"%LUA_EXE%" tests\basic.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\fifo.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\keeper.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\fibonacci.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\timer.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\atomic.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\cyclic.lua
@IF errorlevel 1 goto EXIT
"%LUA_EXE%" tests\recursive.lua
@IF errorlevel 1 goto EXIT
@goto EXIT
:BASIC
"%LUA_EXE%" tests\basic.lua
@goto EXIT
:FIFO
"%LUA_EXE%" tests\fifo.lua
@goto EXIT
:KEEPER
"%LUA_EXE%" tests\keeper.lua
@goto EXIT
:ATOMIC
"%LUA_EXE%" tests\atomic.lua
@goto EXIT
:CYCLIC
"%LUA_EXE%" tests\cyclic.lua
@goto EXIT
:TIMER
"%LUA_EXE%" tests\timer.lua
@goto EXIT
:RECURSIVE
"%LUA_EXE%" tests\recursive.lua
@goto EXIT
:FIBONACCI
"%LUA_EXE%" tests\fibonacci.lua
@goto EXIT
:HANGTEST
"%LUA_EXE%" tests\hangtest.lua
@goto EXIT
:REQUIRE
"%LUA_EXE%" -e "require'lanes'"
@goto EXIT
REM ---
REM NOTE: 'timeit' is a funny thing; it does _not_ work with quoted
REM long paths, but it _does_ work without the quotes. I have no idea,
REM how it knows the spaces in paths apart from spaces in between
REM parameters.
:LAUNCHTEST
timeit %LUA_EXE% tests\launchtest.lua %2 %3 %4
@goto EXIT
:PERFTEST
timeit %LUA_EXE% tests\perftest.lua %2 %3 %4
@goto EXIT
:PERFTEST-PLAIN
timeit %LUA_EXE% tests\perftest.lua --plain %2 %3 %4
@goto EXIT
:STRESS
"%LUA_EXE%" tests\test.lua
"%LUA_EXE%" tests\perftest.lua 100
"%LUA_EXE%" tests\perftest.lua 50 -prio=-1,0
"%LUA_EXE%" tests\perftest.lua 50 -prio=0,-1
"%LUA_EXE%" tests\perftest.lua 50 -prio=0,2
"%LUA_EXE%" tests\perftest.lua 50 -prio=2,0
@echo All seems okay!
@goto EXIT
REM ---
:ERR_NOLUA
@echo ***
@echo *** Please set LUA51 to point to either LuaBinaries or
@echo *** Lua for Windows directory.
@echo ***
@echo *** http://luabinaries.luaforge.net/download.html
@echo *** lua5_1_2_Win32_dll8_lib
@echo *** lua5_1_2_Win32_bin
@echo ***
@echo *** http://luaforge.net/frs/?group_id=377&release_id=1138
@echo ***
@echo.
@goto EXIT
:ERR_NOVC
@echo ***
@echo *** VCINSTALLDIR not defined; please run 'setup-vc'
@echo ***
@echo.
@goto EXIT
:EXIT
| LuaDist2/lanes | make-vc.cmd | bat | mit | 5,921 |
@echo off
@if not "%ECHO%" == "" echo %ECHO%
@if "%OS%" == "Windows_NT" setlocal
set ENV_PATH=.\
if "%OS%" == "Windows_NT" set ENV_PATH=%~dp0%
set conf_dir=%ENV_PATH%\..\conf
set logback_configurationFile=%conf_dir%\logback.xml
set client_mode=Simple
if "%1%" != "" set client_mode=%1%
set CLASSPATH=%conf_dir%
set CLASSPATH=%conf_dir%\..\lib\*;%CLASSPATH%
set JAVA_MEM_OPTS= -Xms128m -Xmx512m -XX:PermSize=128m
set JAVA_OPTS_EXT= -Djava.awt.headless=true -Djava.net.preferIPv4Stack=true -Dapplication.codeset=UTF-8 -Dfile.encoding=UTF-8
set JAVA_DEBUG_OPT= -server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=9199,server=y,suspend=n
set CANAL_OPTS= -DappName=otter-canal-example -Dlogback.configurationFile="%logback_configurationFile%"
set JAVA_OPTS= %JAVA_MEM_OPTS% %JAVA_OPTS_EXT% %JAVA_DEBUG_OPT% %CANAL_OPTS%
if "%client_mode%" == "Cluster"
java %JAVA_OPTS% -classpath "%CLASSPATH%" com.alibaba.otter.canal.example.ClusterCanalClientTest
else
java %JAVA_OPTS% -classpath "%CLASSPATH%" com.alibaba.otter.canal.example.SimpleCanalClientTest
| yonglehou/canal | example/src/main/bin/startup.bat | bat | apache-2.0 | 1,117 |
@echo off
:: hbs1 - Host Basic Services - ver. 1
::
:: Build script for 32-bit Windows platforms using Visual Studio 9
::
:: Changelog:
:: * 2013/01/06 Costin Ionescu: initial release
set N=hbs1
set D=HBS1
set CSRC=src\mswin.c src\misc.c
call %VS90COMNTOOLS%\vsvars32.bat
if not exist out\win32-rls-sl mkdir out\win32-rls-sl
if not exist out\win32-dbg-sl mkdir out\win32-dbg-sl
if not exist out\win32-rls-dl mkdir out\win32-rls-dl
if not exist out\win32-dbg-dl mkdir out\win32-dbg-dl
echo Building dynamic release library...
cl.exe /nologo /Ox /LD /Iinclude /I..\c41\include /D%D%_DL_BUILD /DNDEBUG /Foout\win32-rls-dl\ /Feout\win32-rls-dl\%N%.dll %CSRC% /link ..\c41\out\win32-rls-dl\c41.lib
echo Building static release library...
cl.exe /nologo /Ox /c /Iinclude /I..\c41\include /D%D%_STATIC /DC41_STATIC /DNDEBUG /Foout\win32-rls-sl\ %CSRC% /link ..\c41\out\win32-rls-sl\c41.lib
set O=%CSRC:.c=.obj%
set O=%O:src=out\win32-rls-sl%
lib.exe /nologo /out:out\win32-rls-sl\%N%.lib %O%
echo Building dynamic debug library...
cl.exe /nologo /Od /LDd /Iinclude /I..\c41\include /D%D%_DL_BUILD /D_DEBUG /Foout\win32-dbg-dl\ /Feout\win32-dbg-dl\%N%.dll %CSRC% /link ..\c41\out\win32-dbg-dl\c41.lib
echo Building static debug library...
cl.exe /nologo /Od /c /Iinclude /I..\c41\include /D%D%_STATIC /DC41_STATIC /D_DEBUG /Foout\win32-dbg-sl\ %CSRC% /link ..\c41\out\win32-dbg-sl\c41.lib
set O=%CSRC:.c=.obj%
set O=%O:src=out\win32-dbg-sl%
lib.exe /nologo /out:out\win32-dbg-sl\%N%.lib %O%
echo Building dynamic-deps cli library...
cl.exe /nologo /Ox /c /Iinclude /I..\c41\include /DNDEBUG /Foout\win32-rls-dl\ src\cli.c /link ..\c41\out\win32-rls-dl\c41.lib out\win32-rls-dl\hbs1.lib
lib.exe /nologo /out:out\win32-rls-dl\hbs1clid.lib out\win32-rls-dl\cli.obj
echo Building static-deps cli library...
cl.exe /nologo /Ox /c /Iinclude /I..\c41\include /DNDEBUG /DC41_STATIC /DHBS1_STATIC /Foout\win32-rls-sl\ src\cli.c /link ..\c41\out\win32-rls-sl\c41.lib out\win32-rls-sl\hbs1.lib
lib.exe /nologo /out:out\win32-rls-sl\hbs1clis.lib out\win32-rls-sl\cli.obj
echo Building static-deps hbs1 test program...
cl.exe /nologo /Ox /MT /Feout\win32-rls-sl\test.exe src\test.c /Iinclude /I..\c41\include /DC41_STATIC /DHBS1_STATIC /link ..\c41\out\win32-rls-sl\c41.lib out\win32-rls-sl\hbs1.lib out\win32-rls-sl\hbs1clis.lib /subsystem:console
out\win32-rls-sl\test.exe
echo Building static-deps hbs1cli test program...
cl.exe /nologo /Ox /MT /Feout\win32-rls-sl\clitest.exe src\clitest.c /Iinclude /I..\c41\include /DC41_STATIC /DHBS1_STATIC /link ..\c41\out\win32-rls-sl\c41.lib out\win32-rls-sl\hbs1.lib out\win32-rls-sl\hbs1clis.lib /subsystem:console
out\win32-rls-sl\clitest.exe
echo Building dynamic debug hbs1 test program...
cl.exe /nologo /Od /Iinclude /I..\c41\include /D_DEBUG /Feout\win32-dbg-dl\test.exe /Foout\win32-dbg-dl\ src\test.c /link ..\c41\out\win32-dbg-dl\c41.lib out\win32-dbg-dl\%N%.lib
set PATH=%PATH%;..\c41\out\win32-dbg-dl
out\win32-dbg-dl\test.exe
echo Building dynamic debug hbs1cli test program...
cl.exe /nologo /Od /Iinclude /I..\c41\include /D_DEBUG /Feout\win32-dbg-dl\clitest.exe /Foout\win32-dbg-dl\ src\clitest.c /link ..\c41\out\win32-dbg-dl\c41.lib out\win32-dbg-dl\%N%.lib out\win32-rls-dl\hbs1clid.lib /subsystem:console
set PATH=%PATH%;..\c41\out\win32-dbg-dl
out\win32-dbg-dl\clitest.exe
| icostin/zzz-hbs1 | make-vs9.cmd | bat | isc | 3,337 |
@echo off
set DOTNET_FRAMEWORK=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
set DEBUG_CONFIG=Debug
@echo Service: %1 Using the .NET Framework located at: %DOTNET_FRAMEWORK%
REM Unrem the following lines the first time you build the Babalu proxy to install the service
REM %DOTNET_FRAMEWORK%\InstallUtil /u %1
REM %DOTNET_FRAMEWORK%\InstallUtil %1
@echo if [%2] == [%DEBUG_CONFIG%] copy Debug.app.config %1.config
if [%2] == [%DEBUG_CONFIG%] copy %3Debug.app.config %1.config
@echo net start "Babalu.TestService"
REM net start "Babalu.TestService"
set DEBUG_CONFIG=
set DOTNET_FRAMEWORK= | CalypsoSys/Babalu_rProxy | TestService/PostBuild.bat | bat | mit | 589 |
@ECHO OFF
ECHO ===========================
ECHO Build Modes
ECHO ------
ECHO 1. Build with tests (Slow)
ECHO 2. Build with no tests (Fast)
ECHO ------
ECHO 3. Exit
ECHO ===========================
SET /P MODE=Mode:
IF %MODE%==1 GOTO FULL
IF %MODE%==2 GOTO FAST
:FULL
call mvnw clean package
GOTO END
:FAST
call mvnw clean package -Dmaven.test.skip -Dcheckstyle.skip
GOTO END
:END | Col-E/Recaf | build.cmd | bat | mit | 382 |
start tunnel 80 localhost 81
start boomClient 81 localhost 60000 /ss 21 /rs 21
start tunnel 60000 localhost 60001
start boomServer 60001 localhost 8081 /ss 21 /rs 21
start tunnel 8081 localhost 8080
start ..\fileStore /p 8080
| stackprobe/Factory | Labo/Socket/tunnel/boomTest01_1.bat | bat | mit | 226 |
svn status | findstr /R "^!" > missing.list
for /F "tokens=2 delims= " %%A in (missing.list) do (svn delete %%A) | Fannon/SemanticWebParadigmen | fixsvn.bat | bat | mit | 112 |
START base.exe -l 2727 -d player4.log | fenixrw/GrifoNet | Samples/GrifoNet_libUnicornio-Sample/bin/runP4.bat | bat | mit | 37 |
erase /s *.nupkg
..\..\packages\NuGet.CommandLine.3.3.0\tools\NuGet.exe pack Microsoft.Bot.Connector.csproj -Prop Configuration=Release -Build | Clairety/ConnectMe | CSharp/Library/Microsoft.Bot.Connector/createpackage.cmd | bat | mit | 142 |
nuget pack ReactiveProperty.nuspec
| zhangqinning/FSharpXamFormsRxUITipCalc | vendors/reactiveproperty/BuildTools/pack.bat | bat | mit | 36 |
java -Dapp.name=restlet-server -Dapp.maven.test -jar ..\dependency\appboot.jar app.main.class=com.descartes.restlet.clientcert.RestletServerMain app.boot.debug %* | intercommit/restlet-clientcert | src/test/resources/runserver.bat | bat | mit | 162 |
@echo off
:: This script start, stops and restarts standalone solr for hybris on azure
:: (c) tanigble engineering GmbH, 2015
:: the value of this variable will be replaced on startup by the hybris on azure platform
set ISMASTER="<#%HybrisOnAzure.IndexMaster%#>"
call :UpCase ISMASTER
:: determine if this server needs master/slave configuration
if %ISMASTER%=="TRUE" (
:: set options for solr master
set JAVA_OPTIONS=-server -Xms2048m -Xmx2048m -jar -Dcom.sun.management.jmxremote.port=9883 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote -DSTOP.PORT={solrstopport} -DSTOP.KEY={solrstopkey} -Dsolr.solr.home=. -Denable.master=true -Djetty.port={solrport} -Dsolr.data.dir={solrdatadir} start.jar
)
if %ISMASTER%=="FALSE" (
:: set options for solr slave
set JAVA_OPTIONS=-server -Xms2048m -Xmx2048m -jar -Dcom.sun.management.jmxremote.port=9883 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote -DSTOP.PORT={solrstopport} -DSTOP.KEY={solrstopkey} -Dsolr.solr.home=. -Denable.slave=true -Djetty.port={solrport} -Dmaster.host={solrmasterip} -Dsolr.data.dir={solrdatadir} start.jar
)
set LOG_FILE=%SOLR_DIR%\logs\solr.log
if ""%1"" == ""restart"" goto doRestart
if ""%1"" == ""start"" goto doStart
if ""%1"" == ""stop"" goto doStop
if ""%1"" == """" goto doUsage
goto EOF
:doStart
echo "Starting Solr"
cd %SOLR_DIR%
cmd /c java %JAVA_OPTIONS%
goto EOF
:doStop
echo "Stoping Solr"
cd %SOLR_DIR%
cmd /c java %JAVA_OPTIONS% --stop
goto EOF
:doRestart
echo "Starting Solr"
cd %SOLR_DIR%
cmd /c java %JAVA_OPTIONS% --stop
timeout 2
cmd /c java %JAVA_OPTIONS%
goto EOF
:doUsage
@echo off
echo Usage: "%0 {start|stop|restart}"
goto EOF
:UpCase
:: Subroutine to convert a variable VALUE to all UPPER CASE.
:: The argument for this subroutine is the variable NAME.
FOR %%i IN ("a=A" "b=B" "c=C" "d=D" "e=E" "f=F" "g=G" "h=H" "i=I" "j=J" "k=K" "l=L" "m=M" "n=N" "o=O" "p=P" "q=Q" "r=R" "s=S" "t=T" "u=U" "v=V" "w=W" "x=X" "y=Y" "z=Z") DO CALL SET "%1=%%%1:%%~i%%"
GOTO:EOF
:EOF | chgeuer/microsoft-deployment-accelerator-for-hybris-on-azure | Solution Items/Solr Search/solrserver.bat | bat | mit | 2,145 |
cmd_src/arm/omap4-sdp-es23plus.dtb = cpp -Wp,-MD,src/arm/.omap4-sdp-es23plus.dtb.d.pre.tmp -nostdinc -Iinclude -Isrc/arm -Itestcase-data -undef -D__DTS__ -x assembler-with-cpp -o src/arm/.omap4-sdp-es23plus.dtb.dts.tmp src/arm/omap4-sdp-es23plus.dts ; dtc -O dtb -o src/arm/omap4-sdp-es23plus.dtb -b 0 -i src/arm -d src/arm/.omap4-sdp-es23plus.dtb.d.dtc.tmp src/arm/.omap4-sdp-es23plus.dtb.dts.tmp ; cat src/arm/.omap4-sdp-es23plus.dtb.d.pre.tmp src/arm/.omap4-sdp-es23plus.dtb.d.dtc.tmp > src/arm/.omap4-sdp-es23plus.dtb.d
omap4-sdp-es23plus.o: src/arm/omap4-sdp-es23plus.dts \
src/arm/omap4-sdp.dts src/arm/omap443x.dtsi src/arm/omap4.dtsi \
include/dt-bindings/gpio/gpio.h \
include/dt-bindings/interrupt-controller/arm-gic.h \
include/dt-bindings/interrupt-controller/irq.h \
include/dt-bindings/pinctrl/omap.h src/arm/skeleton.dtsi \
src/arm/omap4-cpu-thermal.dtsi include/dt-bindings/thermal/thermal.h \
src/arm/elpida_ecb240abacn.dtsi src/arm/twl6030.dtsi \
src/arm/twl6030_omap4.dtsi
src/arm/omap4-sdp-es23plus.dtb: src/arm/.omap4-sdp-es23plus.dtb.dts.tmp src/arm/omap44xx-clocks.dtsi src/arm/omap443x-clocks.dtsi
| marklendering/dtb-rebuilder-modified | src/arm/.omap4-sdp-es23plus.dtb.cmd | bat | gpl-2.0 | 1,130 |
cmd_kernel/itimer.o := arm-linux-gnueabi-gcc -Wp,-MD,kernel/.itimer.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(itimer)" -D"KBUILD_MODNAME=KBUILD_STR(itimer)" -c -o kernel/itimer.o kernel/itimer.c
deps_kernel/itimer.o := \
kernel/itimer.c \
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/numa.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/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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/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) \
$(wildcard include/config/arch/has/holes/memorymodel.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/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) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/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) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
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/lock.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
/home/benoit/kernel_android/32/es209ra/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/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/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/generic/hardirqs.h) \
include/linux/spinlock_up.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock_api_up.h \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/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 \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/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 \
/home/benoit/kernel_android/32/es209ra/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/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
include/asm-generic/getorder.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/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/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) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.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/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/benoit/kernel_android/32/es209ra/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/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/mach/es209ra.h) \
$(wildcard include/config/vmsplit/2g.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.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/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/sysfs.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/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.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/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/jiffies.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \
/home/benoit/kernel_android/32/es209ra/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/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.h) \
$(wildcard include/config/have/setup/per/cpu/area.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/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/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/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/benoit/kernel_android/32/es209ra/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/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/have/mlocked/page/bit.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/interrupt.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/debug/shirq.h) \
include/linux/irqreturn.h \
include/linux/irqnr.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/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/irq_cpustat.h \
include/linux/syscalls.h \
$(wildcard include/config/event/profile.h) \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/ppc64.h) \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/mips.h) \
$(wildcard include/config/have/syscall/wrappers.h) \
include/linux/unistd.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unistd.h \
$(wildcard include/config/oabi/compat.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/trace/syscall.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/linux/ftrace_event.h \
include/linux/ring_buffer.h \
$(wildcard include/config/ring/buffer/allow/swap.h) \
include/linux/kmemcheck.h \
include/linux/seq_file.h \
include/linux/trace_seq.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/posix-timers.h \
include/trace/events/timer.h \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
kernel/itimer.o: $(deps_kernel/itimer.o)
$(deps_kernel/itimer.o):
| b8e5n/KTG-kernel_es209ra | kernel/.itimer.o.cmd | bat | gpl-2.0 | 23,922 |
cmd_drivers/media/pci/mantis/built-in.o := rm -f drivers/media/pci/mantis/built-in.o; /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ar rcsD drivers/media/pci/mantis/built-in.o
| domintech/PandaBoard-LinuxKernel | drivers/media/pci/mantis/.built-in.o.cmd | bat | gpl-2.0 | 252 |
SET JSIDE=%cd%
SET JSIDEAPP=%cd%/../../../IDE/
ESP.JSIDE.exe "%JSIDEAPP%"
cd %JSIDE% | wip-studio/esp.js | release/bin/win64/drun.bat | bat | gpl-2.0 | 84 |
cmd_arch/arm/boot/compressed/piggy.o := /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-gcc -Wp,-MD,arch/arm/boot/compressed/.piggy.o.d -nostdinc -isystem /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/../lib/gcc/arm-eabi/4.4.0/include -Iinclude -I/home/adam/Downloads/android-linux-2.6.32.9-union-release/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-imapx200/include -Iarch/arm/plat-imap/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -msoft-float -Wa,-march=all -c -o arch/arm/boot/compressed/piggy.o arch/arm/boot/compressed/piggy.S
deps_arch/arm/boot/compressed/piggy.o := \
arch/arm/boot/compressed/piggy.S \
/home/adam/Downloads/android-linux-2.6.32.9-union-release/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
arch/arm/boot/compressed/piggy.o: $(deps_arch/arm/boot/compressed/piggy.o)
$(deps_arch/arm/boot/compressed/piggy.o):
| damageless/linux-kernel-ican-tab | arch/arm/boot/compressed/.piggy.o.cmd | bat | gpl-2.0 | 1,180 |
if (a == NaN) exit;
if (b == NaN) exit;
if (c == NaN) exit;
unset label 1
replot
set print FitRes
print xmin," ",xmax," ",a," ",b," ",c
set print
bind 'f' ''
bind "Return" '' | jaromrax/vme | 03_Upgrades_DT5780/DPP-PHA_ControlSoftware-1.2.3/GUI/printroi.cmd | bat | gpl-2.0 | 183 |
cmd_arch/arm/vfp/entry.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/vfp/.entry.o.d -nostdinc -isystem /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/lithium/kfhd/kernel/android-3.0/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-omap2/include -Iarch/arm/plat-omap/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -Wa,-mfpu=softvfp+vfp -gdwarf-2 -c -o arch/arm/vfp/entry.o arch/arm/vfp/entry.S
source_arch/arm/vfp/entry.o := arch/arm/vfp/entry.S
deps_arch/arm/vfp/entry.o := \
$(wildcard include/config/preempt.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/iwmmxt.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/vfpmacros.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/hwcap.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/vfp.h \
arch/arm/vfp/../kernel/entry-header.S \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/alignment/trap.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/32v6k.h) \
$(wildcard include/config/have/hw/breakpoint.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/linkage.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/linkage.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/asm-offsets.h \
include/generated/asm-offsets.h \
/home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
arch/arm/vfp/entry.o: $(deps_arch/arm/vfp/entry.o)
$(deps_arch/arm/vfp/entry.o):
| 0xD34D/kernel_amazon_tate | arch/arm/vfp/.entry.o.cmd | bat | gpl-2.0 | 3,156 |
cmd_fs/cifs/cifs.o := arm-linux-gnueabi-ld -EL -r -o fs/cifs/cifs.o fs/cifs/cifsfs.o fs/cifs/cifssmb.o fs/cifs/cifs_debug.o fs/cifs/connect.o fs/cifs/dir.o fs/cifs/file.o fs/cifs/inode.o fs/cifs/link.o fs/cifs/misc.o fs/cifs/netmisc.o fs/cifs/smbencrypt.o fs/cifs/transport.o fs/cifs/asn1.o fs/cifs/cifs_unicode.o fs/cifs/nterr.o fs/cifs/xattr.o fs/cifs/cifsencrypt.o fs/cifs/readdir.o fs/cifs/ioctl.o fs/cifs/sess.o fs/cifs/export.o
| jpsminix/minix5 | fs/cifs/.cifs.o.cmd | bat | gpl-2.0 | 438 |
@echo on
set ROOT=Z:\projekte\7zip-zstd\7-Zip-zstd\CPP\7zip
set OUTDIR=%ROOT%\bin32
mkdir %OUTDIR%
set OPTS=MY_STATIC_LINK=1
set LFLAGS=/SUBSYSTEM:WINDOWS,"5.01"
cd %ROOT%\Bundles\Format7z
nmake %OPTS%
copy O\7za.dll %OUTDIR%\7za.dll
cd %ROOT%\Bundles\Format7zF
nmake %OPTS%
copy O\7z.dll %OUTDIR%\7z.dll
cd %ROOT%\UI\FileManager
nmake %OPTS%
copy O\7zFM.exe %OUTDIR%\7zFM.exe
cd %ROOT%\UI\GUI
nmake %OPTS%
copy O\7zG.exe %OUTDIR%\7zG.exe
cd %ROOT%\UI\Explorer
nmake %OPTS%
copy AMD64\7-zip.dll %OUTDIR%\7-zip.dll
cd %ROOT%\Bundles\SFXWin
nmake %OPTS%
copy O\7z.sfx %OUTDIR%\7z.sfx
cd %ROOT%\Bundles\Codec_zstd
nmake %OPTS%
copy O\zstd.dll %OUTDIR%\zstd-x32min.dll
cd %ROOT%\Bundles\Codec_zstdF
nmake %OPTS%
copy O\zstd.dll %OUTDIR%\zstd-x32.dll
cd %ROOT%\..\..\C\Util\7zipInstall
nmake %OPTS%
copy O\7zipInstall.exe %OUTDIR%\Install-x32.exe
cd %ROOT%\..\..\C\Util\7zipUninstall
nmake %OPTS%
copy O\7zipUninstall.exe %OUTDIR%\Uninstall.exe
set LFLAGS=/SUBSYSTEM:CONSOLE,"5.01"
cd %ROOT%\UI\Console
nmake %OPTS%
copy O\7z.exe %OUTDIR%\7z.exe
cd %ROOT%\Bundles\SFXCon
nmake %OPTS%
copy O\7zCon.sfx %OUTDIR%\7zCon.sfx
:ende
cd %ROOT%\..
| apollo2k4/wcx_7zip | 7z_src/CPP/build-x32.cmd | bat | gpl-2.0 | 1,149 |
cmd_scripts/mod/sumversion.o := gcc -Wp,-MD,scripts/mod/.sumversion.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o scripts/mod/sumversion.o scripts/mod/sumversion.c
deps_scripts/mod/sumversion.o := \
scripts/mod/sumversion.c \
/usr/include/netinet/in.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/bits/predefs.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/time.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stddef.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string.h \
/usr/include/x86_64-linux-gnu/bits/string2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
scripts/mod/modpost.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/elf.h \
scripts/mod/elfconfig.h \
scripts/mod/sumversion.o: $(deps_scripts/mod/sumversion.o)
$(deps_scripts/mod/sumversion.o):
| freebsdmax/gsmart1315_kernel | scripts/mod/.sumversion.o.cmd | bat | gpl-2.0 | 3,963 |
cmd_drivers/spi/built-in.o := /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o drivers/spi/built-in.o drivers/spi/spi.o drivers/spi/spi_sspi_kona.o
| RittikBhowmik/Project-Crater-Kernel-GT-i9152 | drivers/spi/.built-in.o.cmd | bat | gpl-2.0 | 191 |
cmd_net/mac80211/wpa.o := arm-linux-gnueabi-gcc -Wp,-MD,net/mac80211/.wpa.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D__CHECK_ENDIAN__ -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(wpa)" -D"KBUILD_MODNAME=KBUILD_STR(mac80211)" -c -o net/mac80211/wpa.o net/mac80211/wpa.c
deps_net/mac80211/wpa.o := \
net/mac80211/wpa.c \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan/80211.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/smp.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.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/bug.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/if.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
include/linux/socket.h \
$(wildcard include/config/compat.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/socket.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
$(wildcard include/config/sysctl.h) \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/has/dma.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) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
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/lock.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/kmemcheck.h \
$(wildcard include/config/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/mmu.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock_api_up.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.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/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/benoit/kernel_android/32/es209ra/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) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.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/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.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/net.h \
include/linux/random.h \
include/linux/ioctl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/sysctl.h \
include/linux/textsearch.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/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/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/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/home/benoit/kernel_android/32/es209ra/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) \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.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/rcupdate.h \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/percpu.h \
$(wildcard include/config/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.h) \
$(wildcard include/config/have/setup/per/cpu/area.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/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/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) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/err.h \
include/net/checksum.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.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/jiffies.h \
include/linux/timex.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/semaphore.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/scatterlist.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/benoit/kernel_android/32/es209ra/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/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/mach/es209ra.h) \
$(wildcard include/config/vmsplit/2g.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.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/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.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/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.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/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/benoit/kernel_android/32/es209ra/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 \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/have/mlocked/page/bit.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/if_packet.h \
include/linux/delay.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/delay.h \
include/linux/ethtool.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/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/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/pimsm/v1.h) \
$(wildcard include/config/ip/pimsm/v2.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/pimsm/v2.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.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/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/generic/irq/probe.h) \
$(wildcard include/config/debug/shirq.h) \
include/linux/irqreturn.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/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/irq_cpustat.h \
include/linux/ieee80211.h \
$(wildcard include/config/len.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unaligned.h \
include/linux/unaligned/le_byteshift.h \
include/linux/unaligned/be_byteshift.h \
include/linux/unaligned/generic.h \
include/net/mac80211.h \
$(wildcard include/config/nl80211/testmode.h) \
$(wildcard include/config/mac80211/leds.h) \
include/linux/wireless.h \
include/net/cfg80211.h \
include/linux/debugfs.h \
$(wildcard include/config/debug/fs.h) \
include/linux/netlink.h \
include/linux/nl80211.h \
include/net/regulatory.h \
include/net/iw_handler.h \
net/mac80211/ieee80211_i.h \
$(wildcard include/config/mac80211/debugfs.h) \
$(wildcard include/config/mac80211/debug/counters.h) \
$(wildcard include/config/mac80211/noinline.h) \
include/linux/etherdevice.h \
$(wildcard include/config/have/efficient/unaligned/access.h) \
net/mac80211/key.h \
include/linux/crypto.h \
include/linux/uaccess.h \
net/mac80211/sta_info.h \
net/mac80211/michael.h \
net/mac80211/tkip.h \
net/mac80211/aes_ccm.h \
net/mac80211/aes_cmac.h \
net/mac80211/wpa.h \
net/mac80211/wpa.o: $(deps_net/mac80211/wpa.o)
$(deps_net/mac80211/wpa.o):
| b8e5n/KTG-kernel_es209ra | net/mac80211/.wpa.o.cmd | bat | gpl-2.0 | 29,917 |
cd ./server
npm install
cd ..
cd ./dropbucket
npm install
cd ..
| denis-vilyuzhanin/planner | install.bat | bat | gpl-2.0 | 70 |
cmd_drivers/net/mii.o := ppc_4xx-gcc -m32 -Wp,-MD,drivers/net/.mii.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mii)" -D"KBUILD_MODNAME=KBUILD_STR(mii)" -c -o drivers/net/.tmp_mii.o drivers/net/mii.c
deps_drivers/net/mii.o := \
drivers/net/mii.c \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.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) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \
$(wildcard include/config/phys/64bit.h) \
include/asm-generic/int-ll64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \
$(wildcard include/config/power4/only.h) \
$(wildcard include/config/ibm405/err77.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \
$(wildcard include/config/ppc/e500mc.h) \
$(wildcard include/config/e500.h) \
$(wildcard include/config/smp.h) \
include/linux/stringify.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \
$(wildcard include/config/ppc64.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/typecheck.h \
include/linux/dynamic_debug.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \
include/linux/byteorder/big_endian.h \
include/linux/swab.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \
include/linux/byteorder/generic.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \
$(wildcard include/config/vsx.h) \
$(wildcard include/config/ppc32.h) \
$(wildcard include/config/ppc/prep.h) \
$(wildcard include/config/task/size.h) \
$(wildcard include/config/kernel/start.h) \
$(wildcard include/config/4xx.h) \
$(wildcard include/config/booke.h) \
$(wildcard include/config/altivec.h) \
$(wildcard include/config/spe.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \
$(wildcard include/config/40x.h) \
$(wildcard include/config/fsl/emb/perfmon.h) \
$(wildcard include/config/8xx.h) \
$(wildcard include/config/ppc/book3s/64.h) \
$(wildcard include/config/ppc/book3s/32.h) \
$(wildcard include/config/ppc/book3e/64.h) \
$(wildcard include/config/e200.h) \
$(wildcard include/config/ppc/cell.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \
$(wildcard include/config/mpc10x/bridge.h) \
$(wildcard include/config/ppc/83xx.h) \
$(wildcard include/config/8260.h) \
$(wildcard include/config/ppc/mpc52xx.h) \
$(wildcard include/config/bdi/switch.h) \
$(wildcard include/config/power3.h) \
$(wildcard include/config/power4.h) \
$(wildcard include/config/44x.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \
$(wildcard include/config/403gcx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \
$(wildcard include/config/debugger.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/6xx.h) \
$(wildcard include/config/booke/wdt.h) \
$(wildcard include/config/virt/cpu/accounting.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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \
$(wildcard include/config/ppc/book3e.h) \
$(wildcard include/config/perf/events.h) \
include/linux/errno.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \
$(wildcard include/config/ppc/64k/pages.h) \
$(wildcard include/config/ppc/16k/pages.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/relocatable.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/ppc/std/mmu/64.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/ppc/smlpar.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \
$(wildcard include/config/crash/dump.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/not/coherent/cache.h) \
$(wildcard include/config/pte/64bit.h) \
include/asm-generic/getorder.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.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/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-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) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/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/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/wait.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \
$(wildcard include/config/spu/base.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/mmu.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/epoll.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/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.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/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/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/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
include/trace/define_trace.h \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/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/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \
$(wildcard include/config/dynamic/ftrace.h) \
include/trace/events/module.h \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan/80211.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/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/socket.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/socket.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sockios.h \
include/linux/sockios.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/has/dma.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) \
include/linux/kmemcheck.h \
include/linux/net.h \
include/linux/random.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/ratelimit.h \
include/linux/textsearch.h \
include/linux/err.h \
include/net/checksum.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/checksum.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/semaphore.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \
$(wildcard include/config/swiotlb.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/scatterlist.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma.h \
$(wildcard include/config/ppc/iseries.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io.h \
$(wildcard include/config/ra.h) \
$(wildcard include/config/rd.h) \
$(wildcard include/config/ppc/indirect/io.h) \
$(wildcard include/config/eeh.h) \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \
$(wildcard include/config/power.h) \
$(wildcard include/config/8xx/cpu6.h) \
include/asm-generic/iomap.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable-ppc32.h \
$(wildcard include/config/consistent/size.h) \
$(wildcard include/config/fsl/booke.h) \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \
$(wildcard include/config/ppc/std/mmu.h) \
$(wildcard include/config/kgdb.h) \
$(wildcard include/config/xmon.h) \
$(wildcard include/config/kprobes.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/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma-mapping.h \
include/linux/dma-debug.h \
$(wildcard include/config/dma/api/debug.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swiotlb.h \
include/linux/swiotlb.h \
include/asm-generic/dma-mapping-common.h \
include/linux/if_packet.h \
include/linux/delay.h \
include/linux/ethtool.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/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/pimsm/v1.h) \
$(wildcard include/config/ip/pimsm/v2.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/pimsm/v2.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/linux/in6.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/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.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/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/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hardirq.h \
include/asm-generic/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumasks/offstack.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq.h \
$(wildcard include/config/nr/irqs.h) \
$(wildcard include/config/irqstacks.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
include/linux/irq_cpustat.h \
include/linux/mdio.h \
include/linux/mii.h \
drivers/net/mii.o: $(deps_drivers/net/mii.o)
$(deps_drivers/net/mii.o):
| mattkelly/linux-2.6-xlnx | drivers/net/.mii.o.cmd | bat | gpl-2.0 | 29,003 |
cmd_fs/nfs/nfsv3.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o fs/nfs/nfsv3.o fs/nfs/nfs3super.o fs/nfs/nfs3client.o fs/nfs/nfs3proc.o fs/nfs/nfs3xdr.o fs/nfs/nfs3acl.o
| avareldalton85/rpi2-linux-rt | fs/nfs/.nfsv3.o.cmd | bat | gpl-2.0 | 234 |
if exist "neo4j-rest-db/jvmargs" (
MAVEN_OPTS=<neo4j-rest-db/jvmargs
) else (
MAVEN_OPTS=-Xmx512M
)
mvn --settings neo4j-repo.xml compile exec:java
| neo4j-attic/webadmin | start.bat | bat | agpl-3.0 | 150 |
@echo off
SETLOCAL
set VERBOSE=true
set VERBOSE_JETTY=false
set PORT=8080
set REST=
set RM=
set SCHED=
set JVM_OPTS=
set RM_URL=
set SCHED_URL=
:ParamParseLoop
IF [%1]==[] goto :ParamParseEndLoop
IF %1 == -q (
set VERBOSE=false
goto :ParamParseShift
)
IF %1 == -v (
set VERBOSE=true
goto :ParamParseShift
)
IF %1 == -h (
call :print_help
goto :eof
)
IF %1 == -A (
IF NOT exist "%~2" (
echo -A must point to a Web App folder or .war file
goto :eof
)
set REST=%2
SHIFT
goto :ParamParseShift
)
IF %1 == -R (
IF NOT exist "%~2" (
echo -R must point to a Web App folder or .war file
goto :eof
)
set RM=%2
SHIFT
goto :ParamParseShift
)
IF %1 == -S (
IF NOT exist "%~2" (
echo -S must point to a Web App folder or .war file
goto :eof
)
set SCHED=%2
SHIFT
goto :ParamParseShift
)
IF %1 == -r (
IF [%2]==[] (
echo -r requires an argument
goto :eof
)
set RM_URL=%2
SHIFT
goto :ParamParseShift
)
IF %1 == -s (
IF [%2]==[] (
echo -s requires an argument
goto :eof
)
set SCHED_URL=%2
SHIFT
goto :ParamParseShift
)
IF %1 == -p (
IF [%2]==[] (
echo -p requires an argument
goto :eof
)
set PORT=%2
SHIFT
goto :ParamParseShift
)
set TMP_VAR=%~1
IF %TMP_VAR:~0,2% == -D (
set JAVA_OPTS=%TMP_VAR% %JAVA_OPTS%
goto :ParamParseShift
)
echo Unknown option %1
goto :eof
:ParamParseShift
SHIFT
goto :ParamParseLoop
:ParamParseEndLoop
IF [%REST%]==[] (
echo REST Server argument is mandatory
goto :eof
)
set REST_URL=http://localhost:%PORT%/rest/rest
call :createTempDir scheduler_start_gui
set BASE_TEMP_DIR=%_result%
set REST_DIR="%BASE_TEMP_DIR%\rest"
set RM_DIR="%BASE_TEMP_DIR%\rm"
set LOGFILE="%BASE_TEMP_DIR%\jetty.log"
set POL="%BASE_TEMP_DIR%\java.security.policy"
set SCHED_DIR="%BASE_TEMP_DIR%\sched"
mkdir %REST_DIR%
IF %VERBOSE% == true (
echo Deploying REST Server in %REST_DIR%
)
IF /I %REST:~-4% == .war (
call :unzip %REST% %REST_DIR%
) ELSE (
xcopy /E %REST%\* %REST_DIR%
)
COPY ..\..\config\proactive\ProActiveConfiguration.xml %REST_DIR%\WEB-INF\
IF NOT [%RM_URL%]==[] (
call :set_property "%REST_DIR%\WEB-INF\portal.properties" rm.url %RM_URL%
)
IF NOT [%SCHED_URL%]==[] (
call :set_property "%REST_DIR%\WEB-INF\portal.properties" scheduler.url %SCHED_URL%
)
set APPS=%REST_DIR%
IF NOT [%RM%]==[] (
mkdir "%RM_DIR%"
IF %VERBOSE% == true (
echo Deploying RM UI in %RM_DIR%
)
IF /I %RM:~-4% == .war (
call :unzip %RM% %RM_DIR%
) ELSE (
xcopy /E %RM%\* %RM_DIR%
)
call :set_property "%RM_DIR%\rm.conf" rm.rest.url %REST_URL%
set APPS=%APPS% %RM_DIR%
)
IF NOT [%SCHED%]==[] (
mkdir "%SCHED_DIR%"
IF %VERBOSE% == true (
echo Deploying Scheduling UI in %RM_DIR%
)
IF /I %SCHED:~-4% == .war (
call :unzip %SCHED% %SCHED_DIR%
) ELSE (
xcopy /E %SCHED%\* %SCHED_DIR%
)
call :set_property "%SCHED_DIR%\scheduler.conf" sched.rest.url %REST_URL%
set APPS=%APPS% %SCHED_DIR%
)
set JAVA="%JAVA_HOME%\bin\java"
set LIB_DIR=%CD%\..\..\lib
set CP=%LIB_DIR%\ProActive\jetty-6.1.18.jar
set CP=%CP%;%LIB_DIR%\ProActive\jetty-util-6.1.18.jar
set CP=%CP%;%LIB_DIR%\ProActive\servlet-api-2.5-6.1.11.jar
set CP=%CP%;%CD%\..\..\dist\lib\ProActive_SRM-common.jar
set CLASS=org.ow2.proactive.utils.JettyLauncher
set LOG=
IF %VERBOSE_JETTY% == false (
IF %VERBOSE% == true (
echo Jetty Launcher logs to %LOGFILE%
)
set LOG=-l %LOGFILE%
)
echo grant { permission java.security.AllPermission; }; > %POL%
set JVM_OPTS=%JVM_OPTS% -Djava.security.manager -Djava.security.policy=%POL%
set CLASSPATH=%CP%
%JAVA% %JVM_OPTS% %CLASS% -p %PORT% %LOG% %APPS%
goto :eof
:unzip
SETLOCAL
set CLASSPATH=..\..\compile\lib\ant-launcher.jar;%CLASSPATH%
"%JAVA_HOME%\bin\java" "-Dant.home=../../compile" "-Dant.library.dir=../../compile/lib" org.apache.tools.ant.launch.Launcher -buildfile utils.xml -Dzip_src=%1 -Dzip_dest=%2 unzip
ENDLOCAL
goto :eof
:set_property
SETLOCAL
set CLASSPATH=..\..\compile\lib\ant-launcher.jar;%CLASSPATH%
"%JAVA_HOME%\bin\java" "-Dant.home=../../compile" "-Dant.library.dir=../../compile/lib" org.apache.tools.ant.launch.Launcher -buildfile utils.xml -Dfile=%1 -Dproperty=%2 -Dvalue=%3 set_property
ENDLOCAL
goto :eof
:createTempDir
SETLOCAL
set TMPFILE=%TMP%\%1\%RANDOM%_%TIME:~-2%_%TIME:~0,2%
if exist "%TMPFILE%" GOTO :GETTEMPNAME
MKDIR %TMPFILE%
ENDLOCAL & SET _result=%TMPFILE%
goto :eof
:print_help
echo jetty-launcher.bat ^<arguments^> [options]
echo.
echo Paths for Web Applications (REST Server and both UI) point to either
echo a valid .war file, or the extraction directory of a valid .war file.
echo.
echo Arguments:
echo -A PATH REST Server
echo.
echo Options:
echo -R PATH RM Web UI
echo -S PATH Scheduler Web UI
echo -r URL RM Server URL
echo -s URL Scheduler Server URL
echo -p PORT HTTP server port
echo -q quiet output
echo -v Output jetty logs on stdout instead of tmp file
echo -Dxxx JVM option
echo -h print this message
echo.
goto :eof
:eof
ENDLOCAL | acontes/scheduling | bin/windows/jetty-launcher.bat | bat | agpl-3.0 | 5,928 |
python updateDistro.py | dreid1991/thermoSim | levels-distro/updateDistro.bat | bat | agpl-3.0 | 22 |
@echo off
set JAVA_HOME=E:\Tools\Java\jdk1.7.0_11
set MAVEN_HOME=E:\Tools\Maven\3.0.4
set Path=%Path%;%JAVA_HOME%\bin;%MAVEN_HOME%\bin
call mvn javadoc:javadoc
echo Javadoc generated in target\site\apidocs
pause
| k-int/ECKClient | GenerateJavaDoc.bat | bat | lgpl-3.0 | 226 |
gen_2_2 tileset1.pcx tileset1.til 16
gen_2_2 player.pcx player.til 32
gen_2_4 char1.pcx char1.til 12
| haroldo-ok/really-old-stuff | megadrive/genesisrpgcreator_0.05_alpha_src/runtime/data/image/mkgraph.bat | bat | apache-2.0 | 101 |
dotnet msbuild "ProxyFoo.sln" /t:Rebuild /p:Configuration=Release | ProxyFoo/ProxyFoo | build.bat | bat | apache-2.0 | 65 |
@echo off
rmdir NuGetPackage /s /q
mkdir NuGetPackage
mkdir NuGetPackage\Epicycle.Math-cs.0.1.7.0
mkdir NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib
copy package.nuspec NuGetPackage\Epicycle.Math-cs.0.1.7.0\Epicycle.Math-cs.0.1.7.0.nuspec
copy README.md NuGetPackage\Epicycle.Math-cs.0.1.7.0\README.md
copy LICENSE NuGetPackage\Epicycle.Math-cs.0.1.7.0\LICENSE
xcopy externals\lib_dotnet\Clipper.6.2.1\lib\clipper_library.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy bin\net35\Release\Epicycle.Math.TestUtils_cs.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy bin\net35\Release\Epicycle.Math.TestUtils_cs.pdb NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy bin\net35\Release\Epicycle.Math.TestUtils_cs.xml NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy bin\net35\Release\Epicycle.Math_cs.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy bin\net35\Release\Epicycle.Math_cs.pdb NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy bin\net35\Release\Epicycle.Math_cs.xml NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net35\
xcopy externals\lib_dotnet\Clipper.6.2.1\lib\clipper_library.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy bin\net40\Release\Epicycle.Math.TestUtils_cs.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy bin\net40\Release\Epicycle.Math.TestUtils_cs.pdb NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy bin\net40\Release\Epicycle.Math.TestUtils_cs.xml NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy bin\net40\Release\Epicycle.Math_cs.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy bin\net40\Release\Epicycle.Math_cs.pdb NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy bin\net40\Release\Epicycle.Math_cs.xml NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net40\
xcopy externals\lib_dotnet\Clipper.6.2.1\lib\clipper_library.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
xcopy bin\net45\Release\Epicycle.Math.TestUtils_cs.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
xcopy bin\net45\Release\Epicycle.Math.TestUtils_cs.pdb NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
xcopy bin\net45\Release\Epicycle.Math.TestUtils_cs.xml NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
xcopy bin\net45\Release\Epicycle.Math_cs.dll NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
xcopy bin\net45\Release\Epicycle.Math_cs.pdb NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
xcopy bin\net45\Release\Epicycle.Math_cs.xml NuGetPackage\Epicycle.Math-cs.0.1.7.0\lib\net45\
cd NuGetPackage
nuget pack Epicycle.Math-cs.0.1.7.0\Epicycle.Math-cs.0.1.7.0.nuspec -Properties version=0.1.7.0
7z a -tzip Epicycle.Math-cs.0.1.7.0.zip Epicycle.Math-cs.0.1.7.0 Epicycle.Math-cs.0.1.7.0.nupkg
echo nuget push Epicycle.Math-cs.0.1.7.0.nupkg > push.cmd
echo pause >> push.cmd
pause | open-epicycle/Epicycle.Math-cs | create_nuget_package.cmd | bat | apache-2.0 | 2,782 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\thecut-emailfield.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\thecut-emailfield.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
if "%1" == "dummy" (
%SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy
if errorlevel 1 exit /b 1
echo.
echo.Build finished. Dummy builder generates no files.
goto end
)
:end
| thecut/thecut-emailfield | docs/make.bat | bat | apache-2.0 | 7,473 |
tsc ../src/helpers.ts ../src/types.ts ../src/main.ts --out ts-compiler.js && tsc ../src/direct-run.ts --out direct-run.js && java -jar ClosureCompiler/compiler.jar --language_in ECMASCRIPT5 --js ts-compiler.js --js_output_file ts-compiler.min.js && java -jar ClosureCompiler/compiler.jar --language_in ECMASCRIPT5 --js typescript.js --js ts-compiler.min.js --js_output_file TSCompiler.js --compilation_level WHITESPACE_ONLY --formatting PRETTY_PRINT && java -jar ClosureCompiler/compiler.jar --language_in ECMASCRIPT5 --js typescript.js --js ts-compiler.min.js --js_output_file TSCompiler.min.js && java -jar ClosureCompiler/compiler.jar --language_in ECMASCRIPT5 --js TSCompiler.js --js direct-run.js --js_output_file TSCompiler-Run.min.js | ComFreek/TSCompiler | js/build/build.bat | bat | apache-2.0 | 740 |
..\..\python3\python.exe uploader.py %1 %2 %3 %4 %5
| Suwmlee/XX-Net | gae_proxy/server/uploader.bat | bat | bsd-2-clause | 52 |
@echo off
set LOCAL_BIN=%APPDATA%\local\bin
for /F "usebackq" %%t in (`%LOCAL_BIN%\ghc-mod root`) do set CABAL_DIR=%%t
for /F "usebackq" %%t in (`stack path --dist-dir`) do set STACK_DIST=%CABAL_DIR%\%%t
set DIST=%CABAL_DIR%\dist
if exist %STACK_DIST%\setup-config if not exist %DIST% (
mklink /j %DIST% %STACK_DIST% > nul
)
set PATH=%LOCAL_BIN%;%PATH%
stack exec ghc-modi -- %*
| belliture/ghc-mod-stack-wrapper | win/ghc-modi.bat | bat | bsd-3-clause | 387 |
@echo off
REM Windows batch file to get results on the basis of success files from AWS Mechanical Turk
REM Author: Sreejith Menon
REM Date: 21th May 2016
set /p directory="Enter source drive : "
%directory%:
set /p mTurkPath="Enter AWS CLT bin directory path : "
cd %mTurkPath%
set /p jobPath="Enter jobs directory path : "
call getResults -successfile %jobPath%\photo_album_31.input.success -outputfile %jobPath%\photo_album_31.results
call getResults -successfile %jobPath%\photo_album_32.input.success -outputfile %jobPath%\photo_album_32.results
call getResults -successfile %jobPath%\photo_album_33.input.success -outputfile %jobPath%\photo_album_33.results
call getResults -successfile %jobPath%\photo_album_34.input.success -outputfile %jobPath%\photo_album_34.results
call getResults -successfile %jobPath%\photo_album_35.input.success -outputfile %jobPath%\photo_album_35.results
call getResults -successfile %jobPath%\photo_album_36.input.success -outputfile %jobPath%\photo_album_36.results
call getResults -successfile %jobPath%\photo_album_37.input.success -outputfile %jobPath%\photo_album_37.results
call getResults -successfile %jobPath%\photo_album_38.input.success -outputfile %jobPath%\photo_album_38.results
call getResults -successfile %jobPath%\photo_album_39.input.success -outputfile %jobPath%\photo_album_39.results
call getResults -successfile %jobPath%\photo_album_40.input.success -outputfile %jobPath%\photo_album_40.results
PAUSE | smenon8/AnimalWildlifeEstimator | Other/windowsBatchFiles/GetResultsBatchExpt2Set4_prod.cmd | bat | bsd-3-clause | 1,474 |
@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\PySeaweed.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PySeaweed.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
| utek/pyweed | docs/make.bat | bat | mit | 6,912 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S02_OperationOnContentType.MSLISTSWS_S02_TC38_GetListContentTypesAndProperties_Succeed_WithListName /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S02_TC38_GetListContentTypesAndProperties_Succeed_WithListName.cmd | bat | mit | 344 |
cmd_arch/arm/mm/cache-v7.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-gcc -Wp,-MD,arch/arm/mm/.cache-v7.o.d -nostdinc -isystem /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -Iinclude -I/home/gjdlfg/kernel/omap/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/mm/cache-v7.o arch/arm/mm/cache-v7.S
deps_arch/arm/mm/cache-v7.o := \
arch/arm/mm/cache-v7.S \
$(wildcard include/config/arch/msm7x30.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/linkage.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/hwcap.h \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/unwind.h \
$(wildcard include/config/arm/unwind.h) \
arch/arm/mm/proc-macros.S \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/dcache/writethrough.h) \
include/asm/asm-offsets.h \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/gjdlfg/kernel/omap/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
arch/arm/mm/cache-v7.o: $(deps_arch/arm/mm/cache-v7.o)
$(deps_arch/arm/mm/cache-v7.o):
| jdlfg/Mecha-kernel-jdlfg | arch/arm/mm/.cache-v7.o.cmd | bat | gpl-2.0 | 2,366 |
@echo // Copyright (C) 1996-2015 Markus F.X.J. Oberhumer
@echo //
@echo // Windows 32-bit
@echo // Microsoft Visual C/C++
@echo //
@call b\prepare.bat
@if "%BECHO%"=="n" echo off
set CC=cl -nologo -MT
set CF=-O2 -GF -W3 %CFI% %CFASM%
set LF=%BLIB%
%CC% %CF% -c @b\src.rsp
@if errorlevel 1 goto error
link -lib -nologo -out:%BLIB% @b\win32\vc.rsp
@if errorlevel 1 goto error
%CC% %CF% examples\dict.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\lzopack.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\precomp.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\precomp2.c %LF%
@if errorlevel 1 goto error
%CC% %CF% examples\simple.c %LF%
@if errorlevel 1 goto error
%CC% %CF% lzotest\lzotest.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iinclude\lzo minilzo\testmini.c minilzo\minilzo.c
@if errorlevel 1 goto error
@call b\done.bat
@goto end
:error
@echo ERROR during build!
:end
@call b\unset.bat
| UK2group/Privacy-Online-for-Android | privacyonline/lzo/B/win32/vc.bat | bat | gpl-3.0 | 926 |
@echo off
setlocal
set DEST_DIR=export
if exist %DEST_DIR% del /q %DEST_DIR%\*
if not exist %DEST_DIR% mkdir %DEST_DIR%
for %%f in (
AbsInt.dll AbsInt.pdb
AIFramework.dll AIFramework.pdb
Basetypes.dll Basetypes.pdb
Boogie.exe Boogie.pdb
BVD.exe BVD.pdb
CodeContractsExtender.dll CodeContractsExtender.pdb
Core.dll Core.pdb
Dafny.exe Dafny.pdb
DafnyPipeline.dll DafnyPipeline.pdb
Graph.dll Graph.pdb
Houdini.dll Houdini.pdb
Model.dll Model.pdb
ParserHelper.dll ParserHelper.pdb
Provers.Isabelle.dll Provers.Isabelle.pdb
Provers.Simplify.dll Provers.Simplify.pdb
Provers.SMTLib.dll Provers.SMTLib.pdb
Provers.TPTP.dll Provers.TPTP.pdb
Provers.Z3.dll Provers.Z3.pdb
VCExpr.dll VCExpr.pdb
VCGeneration.dll VCGeneration.pdb
DafnyPrelude.bpl
DafnyRuntime.cs
TypedUnivBackPred2.sx
UnivBackPred2.smt2
UnivBackPred2.sx
) do (
copy %%f %DEST_DIR%
)
echo Done. Now, manually put the contents of the %DEST_DIR% directory into Boogie.zip
| sccblom/vercors | deps/boogie/2012-06-15/unix/PrepareBoogieZip.bat | bat | mpl-2.0 | 1,249 |
php ./starter/start_register.php ./starter/start_gateway.php ./starter/start_business.php | evan-li/think-gateway | worker/start-for-win.bat | bat | apache-2.0 | 89 |
java -jar aircraft.jar | icemagno/mapview | aircraft/run.bat | bat | apache-2.0 | 22 |
build_native.py -b release
pause | Gamesjiazhi/rwproject | undeadClient2D/frameworks/runtime-src/proj.android/publish_release.bat | bat | apache-2.0 | 32 |
rem Licensed to the Apache Software Foundation (ASF) under one
rem or more contributor license agreements. See the NOTICE file
rem distributed with this work for additional information
rem regarding copyright ownership. The ASF licenses this file
rem to you under the Apache License, Version 2.0 (the
rem "License"); you may not use this file except in compliance
rem with 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,
rem software distributed under the License is distributed on an
rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
rem KIND, either express or implied. See the License for the
rem specific language governing permissions and limitations
rem under the License.
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
if "%1" == "" goto help
%SPHINXBUILD% >NUL 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
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| little-cui/service-center | docs/make.bat | bat | apache-2.0 | 1,571 |
@echo off
setlocal
REM Set intermediate env vars because the %VAR:x=y% notation below
REM (which replaces the string x with the string y in VAR)
REM doesn't handle undefined environment variables. This way
REM we're always dealing with defined variables in those tests.
set CHK_HOME=_%AWS_ELASTICACHE_HOME%
if "%CHK_HOME:"=%" == "_" goto HOME_MISSING
"%AWS_ELASTICACHE_HOME:"=%\bin\elasticache.cmd" elasticache-describe-cache-parameters %*
goto DONE
:HOME_MISSING
echo AWS_ELASTICACHE_HOME is not set
exit /b 1
:DONE
| bizo/aws-tools | elasticcache/AmazonElastiCacheCli-1.6.001/bin/elasticache-describe-cache-parameters.cmd | bat | apache-2.0 | 541 |
# ***************************************************
# This tests the quit.
# ***************************************************
# FIXME need to test --no-quit.
quit!
| rocky/rb-trepanning | test/data/quit.cmd | bat | bsd-2-clause | 169 |
@echo off
::
:: Batch file to make the AutoItLibrary extesnsion for Robot Framework
::
:: Copyright (c) 2008-2009 Texas Instruments, Inc.
:: Author: Martin Taylor <[email protected]>
::
:: 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.
::
::-------------------------------------------------------------------------------
::
:: Install the AutoItLibrary on the local PC
::
python setup.py install
::
:: Build the updated documentation before installing again
::
libdoc.py --output doc\AutoItLibrary.html AutoItLibrary
::
:: Now install the AutoItLibrary on the local PC including the updated documentation
::
python setup.py install
pause
::
:: -------------------------------- End of file --------------------------------
| fengyuanjs/robotframework-autoitlibrary | Make.bat | bat | apache-2.0 | 1,234 |
@echo off
set GIT_HOME=%SOFTWARE_DIR%\git-1.9.5
set LANG=de
set PATH=%GIT_HOME%;%GIT_HOME%\cmd;%PATH% | sjahreis/seu-as-code.packages | io.github.msysgit/git/1.9.5/files/set-env-git.cmd | bat | apache-2.0 | 103 |
@echo off
if not "%OS%"=="Windows_NT" goto win9xStart
:winNTStart
@setlocal
rem %~dp0 is name of current script under NT
set DEFAULT_JAVAHELP_HOME=%~dp0
rem : operator works similar to make : operator
set DEFAULT_JAVAHELP_HOME=%DEFAULT_JAVAHELP_HOME:\javahelp\bin\=%
if %JAVAHELP_HOME%a==a set JAVAHELP_HOME=%DEFAULT_JAVAHELP_HOME%
set DEFAULT_JAVAHELP_HOME=
goto doneStart
:win9xStart
:doneStart
rem This label provides a place for NT handling to skip to.
rem find JAVAHELP_HOME
if not "%JAVAHELP_HOME%"=="" goto runjhindexer
rem check for JavaHelp in Program Files on system drive
if not exist "%SystemDrive%\Program Files\jh" goto checkSystemDrive
set JAVAHELP_HOME=%SystemDrive%\Program Files\jh
goto checkJava
:checkSystemDrive
rem check for JavaHelp in root directory of system drive
if not exist "%SystemDrive%\jh" goto noJavaHelpHome
set JAVA_HOME=%SystemDrive%\jh
goto runjhindexer
:noJavaHelpHome
echo JAVAHELP_HOME is not set and JavaHelp could not be located. Please set JAVAHELP_HOME.
goto end
:runjhindexer
java -jar %JAVAHELP_HOME%\javahelp\bin\jhindexer.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
if not "%OS%"=="Windows_NT" goto mainEnd
:winNTend
@endlocal
:mainEnd
| glubtech/secureftp | javahelp/bin/jhindexer.bat | bat | apache-2.0 | 1,232 |
::-------------------------------------------------------------------------------------------------------
:: Copyright (C) Microsoft. All rights reserved.
:: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
::-------------------------------------------------------------------------------------------------------
:: PGO Build Workflow:
:: - pre_pgi.cmd
:: - build (with PGI instrumentation enabled)
:: * post_pgi.cmd
:: - pogo_training.ps1
:: - pre_pgo.cmd
:: - build (using PGO profile)
:: - post_pgo.cmd
@echo off
if "%PogoConfig%"=="False" (
echo ---- Not a Pogo Config. Skipping step.
exit /b 0
)
set _LINK_=
set POGO_TYPE=
goto:eof
| Microsoft/ChakraCore | Build/scripts/pgo/post_pgi.cmd | bat | mit | 729 |
@setlocal
@ECHO off
rem
rem Copyright (c) Microsoft. All rights reserved.
rem Licensed under the MIT license. See LICENSE file in the project root for full license information.
rem
SET CMDHOME=%~dp0
@REM Remove trailing backslash \
set CMDHOME=%CMDHOME:~0,-1%
@REM Set msbuild location.
SET VisualStudioVersion=12.0
if EXIST "%VS140COMNTOOLS%" SET VisualStudioVersion=14.0
SET MSBUILDEXEDIR=%programfiles(x86)%\MSBuild\%VisualStudioVersion%\Bin
if NOT EXIST "%MSBUILDEXEDIR%\." SET MSBUILDEXEDIR=%programfiles%\MSBuild\%VisualStudioVersion%\Bin
SET MSBUILDEXE=%MSBUILDEXEDIR%\MSBuild.exe
SET MSBUILDOPT=/verbosity:minimal
if "%builduri%" == "" set builduri=Build.cmd
cd "%CMDHOME%"
@cd
set PROJ_NAME=Examples
set PROJ=%CMDHOME%\%PROJ_NAME%.sln
@echo ===== Building %PROJ% =====
@echo Restore NuGet packages ===================
SET STEP=NuGet-Restore
nuget restore "%PROJ%"
@if ERRORLEVEL 1 GOTO :ErrorStop
@echo Build Debug ==============================
SET STEP=Debug
SET CONFIGURATION=%STEP%
SET STEP=%CONFIGURATION%
"%MSBUILDEXE%" /p:Configuration=%CONFIGURATION% %MSBUILDOPT% "%PROJ%"
@if ERRORLEVEL 1 GOTO :ErrorStop
@echo BUILD ok for %CONFIGURATION% %PROJ%
@echo Build Release ============================
SET STEP=Release
SET CONFIGURATION=%STEP%
"%MSBUILDEXE%" /p:Configuration=%CONFIGURATION% %MSBUILDOPT% "%PROJ%"
@if ERRORLEVEL 1 GOTO :ErrorStop
@echo BUILD ok for %CONFIGURATION% %PROJ%
if EXIST %PROJ_NAME%.nuspec (
@echo ===== Build NuGet package for %PROJ% =====
SET STEP=NuGet-Pack
powershell -f %CMDHOME%\..\build\localmode\nugetpack.ps1
@if ERRORLEVEL 1 GOTO :ErrorStop
@echo NuGet package ok for %PROJ%
)
@echo ===== Build succeeded for %PROJ% =====
@GOTO :EOF
:ErrorStop
set RC=%ERRORLEVEL%
if "%STEP%" == "" set STEP=%CONFIGURATION%
@echo ===== Build FAILED for %PROJ% -- %STEP% with error %RC% - CANNOT CONTINUE =====
exit /B %RC%
:EOF
| hebinhuang/Mobius | examples/Build.cmd | bat | mit | 1,894 |
@echo off
call node _buildAll.js ../../
pause | Cyperghost/WCF | extra/buildAll.bat | bat | lgpl-2.1 | 47 |
@echo off
cd /d %~dp0
set PYTHONPATH=%PYTHONPATH%;%~dp0\..\seahub\thirdpart
start python py/upgrade_4.0_4.1.py
| zhengger/seafile | scripts/upgrade/win32/upgrade_4.0_4.1.bat | bat | gpl-2.0 | 111 |
@echo off
:: indextest2.bat
:: Diagnostic program to show how a set of marc records would be indexed,
:: without actually adding any records to Solr.
:: $Id: indextest2.bat
setlocal
::Get the current batch file's short path
for %%x in (%~f0) do set scriptdir=%%~dpsx
for %%x in (%scriptdir%) do set scriptdir=%%~dpsx
if EXIST %scriptdir%SolrMarc.jar goto doit
pushd %scriptdir%..
for %%x in (%CD%) do set scriptdir=%%~sx\
popd
:doit
::echo BatchPath = %scriptdir%
::
if "%SOLRMARC_MEM_ARGS%" EQU "" set SOLRMARC_MEM_ARGS=-Xms512m -Xmx512m
::
java %SOLRMARC_MEM_ARGS% -Dmarc.just_index_dont_add="true" -jar %scriptdir%SolrMarc.jar %1 %2 %3
| SimonXIX/vufind-soas | local/import/bin/indextest2.bat | bat | gpl-2.0 | 646 |
@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\pyohio2015.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyohio2015.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
| tylerdave/PyOhio-2015-Example | docs/make.bat | bat | mit | 6,467 |
@if exist _mixins.scss del _mixins.scss
dir /b /s /t:c /o:d .\modules\*.mixins.scss>_tmp.txt
@if exist _mixins.scss del _mixins.scss
for /f %%f in (_tmp.txt) do (
echo.@import "%%f";>>_mixins.scss
)
| zeupin/tim | src/list-mixins.bat | bat | mit | 202 |
@python -m esss_fix_format.cli %*
| ESSS/esss_fix_format | bin/fix-format.bat | bat | mit | 34 |
REM Store transform tool in variable so we can modify it
SET "transformtool=%~dp0..\tools\gnu2msdev.exe"
REM Turn backslashes into forward slashes that bash understand
SET "transformtool=%transformtool:\=/%
REM Change C:/ into /cygdrive/c
SET "transformtool=%transformtool:c:=/cygdrive/c%"
REM Call make inside bash to compile our code, redirecting the output via gnu2msdev for
REM Pretty, clickable error messages in Visual Studio
echo c:/cygwin64/bin/bash.exe --login -c "cd /cygdrive/c/git/PiOS/ && make %1 1>&2 %transformtool%"
c:/cygwin64/bin/bash.exe --login -c "cd /cygdrive/c/git/PiOS/ && make %1 2<&1 | sed -e 's|/cygdrive/\([a-z]\)/|\1:/|' -e 's/\.\([ch]\):\([0-9]*\)/.\1 (\2)/' ; exit ${PIPESTATUS[0]} | SimonGustavsson/PiOS | visualstudio/vsbuild.bat | bat | mit | 715 |
node-inspector & | jnxyx/upload | inspector.cmd | bat | mit | 16 |
@echo off
set targetName=%~NX1
set replacementFile=%~F2
call :processFolder
goto :EOF
:processFolder
rem For each folder in this level
for /D %%a in (*) do (
rem Enter into it, process it and go back to original
cd %%a
if exist "%targetName%" (
copy "%replacementFile%" "%targetName%" /Y
)
call :processFolder
cd ..
)
exit /B | geekcyclist/JSPerformanceTips | filereplace.bat | bat | mit | 350 |
@echo off
if "%1" == "" (
echo "Usage: %0 <sfml_root>"
exit /b 1
)
if not exist "%1" (
echo "Can't find SFML_ROOT %1"
exit /b 1
)
set SFML_ROOT="%1"
pushd build
cmake -G"Visual Studio 14" -DSFML_ROOT=%SFML_ROOT% ..
popd
msbuild .\build\portland.vcxproj
if not exist .\build\Debug\assets (
xcopy /s /i .\assets .\build\Debug\assets > NUL
)
call :CopyDll "sfml-graphics-d-2.dll"
call :CopyDll "sfml-system-d-2.dll"
call :CopyDll "sfml-window-d-2.dll"
.\build\Debug\portland.exe
:CopyDll
set dll_path="%SFML_ROOT%\bin\%~1"
set out_path=".\build\Debug"
if not exist "%out_path%\%~1" (
xcopy /i "%SFML_ROOT%\bin\%~1" "%out_path%" > NUL
)
exit /b 0
| jsvana/portland | scripts/run.bat | bat | mit | 661 |
cd ..
powershell npm run build
powershell wsl --exec npm run build
powershell node build/build.js
pause | dangeredwolf/ModernDeck | build/build.bat | bat | mit | 103 |
@echo off
FINDSTR "Parameter" output.txt
echo %errorlevel% | Emiliya93/TelerikAcademy | QualityAssurancePart1/Exercises/CommandLineExercise/05_Practice_GetOutput/findStrings.bat | bat | mit | 58 |
mkdir ..\Build
cd ..\Build
cmake .. -G"Visual Studio 8 2005 Win64" -DASMJIT_BUILD_LIBRARY=1 -DASMJIT_BUILD_TEST=1
cd ..\Scripts
pause
| kdar/quakeslash | externals/AsmJit/Scripts/configure-windows-vs2005-x64.bat | bat | mit | 134 |
@echo off
git pull
git add .
git commit -m "Auto Upload"
git push
echo "Done"
pause | Suwings/Suwings.github.io | autopush.bat | bat | mit | 84 |
@echo off
@echo Deleting old STL files.
del *.stl
@echo Building Side Joined Kindle Fire 8 HD wall mount.
@echo Cut corners version
"C:\Program Files\OpenSCAD\openscad.com" -o Fire8-45-Right.stl -D "outerBoxStyle=1;displayBoxStyle=1;showLeft=false;showRight=true" KindleFireHD8WallMountSideJointed.scad
"C:\Program Files\OpenSCAD\openscad.com" -o Fire8-45-Left.stl -D "outerBoxStyle=1;displayBoxStyle=1;showLeft=true;showRight=false" KindleFireHD8WallMountSideJointed.scad
@echo Square version
"C:\Program Files\OpenSCAD\openscad.com" -o Fire8-Square-Right.stl -D "outerBoxStyle=2;displayBoxStyle=2;showLeft=false;showRight=true" KindleFireHD8WallMountSideJointed.scad
"C:\Program Files\OpenSCAD\openscad.com" -o Fire8-Square-Left.stl -D "outerBoxStyle=2;displayBoxStyle=2;showLeft=true;showRight=false" KindleFireHD8WallMountSideJointed.scad
@echo Rounded corners version
"C:\Program Files\OpenSCAD\openscad.com" -o Fire8-Round-Right.stl -D "outerBoxStyle=3;displayBoxStyle=3;showLeft=false;showRight=true" KindleFireHD8WallMountSideJointed.scad
"C:\Program Files\OpenSCAD\openscad.com" -o Fire8-Round-Left.stl -D "outerBoxStyle=3;displayBoxStyle=3;showLeft=true;showRight=false" KindleFireHD8WallMountSideJointed.scad
| BookSwapSteve/3DPrintableThings | KindleFireMounts/SideJoined/Build.bat | bat | mit | 1,225 |
@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\django-email-log.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-email-log.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
| treyhunner/django-email-log | docs/make.bat | bat | mit | 6,479 |
python jsonrpc.py 4448 ffff.apiinstances
python jsonrpc.py 4448 ffff.pipelinelist
python jsonrpc.py 4448 ffff.add "{\"plugin\":\"Edge Detection\",\"instance\":\"foo2\"}"
python jsonrpc.py 4448 ffff.pipelinelist
| nosuchtim/VizBench | bin/t2.bat | bat | mit | 211 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.