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 |
|---|---|---|---|---|---|
@SETLOCAL
@REM Set the PYTHON path variable to your python command, like C:\Python33\python.exe
@IF "%PYTHON%" == "" echo Warning: PYTHON environment path not set.
@IF "%PYTHONPATH%" == "" SET PYTHONPATH=%CHDIR%
@IF "%PYTHON27_X86%" == "" SET PYTHON27_X86=c:\Python27-x86\python.exe
@IF "%PYTHON27_X64%" == "" SET PYTHON27_X64=c:\Python27-x64\python.exe
@IF "%PYTHON32_X86%" == "" SET PYTHON32_X86=c:\Python32-x86\python.exe
@IF "%PYTHON32_X64%" == "" SET PYTHON32_X64=c:\Python32-x64\python.exe
@IF "%PYTHON33_X86%" == "" SET PYTHON33_X86=c:\Python33-x86\python.exe
@IF "%PYTHON33_X64%" == "" SET PYTHON33_X64=c:\Python33-x64\python.exe
@IF "%PYTHON34_X86%" == "" SET PYTHON34_X86=c:\Python34-x86\python.exe
@IF "%PYTHON34_X64%" == "" SET PYTHON34_X64=c:\Python34-x64\python.exe
@IF "%PYTHON35_X86%" == "" SET PYTHON35_X86=c:\Python35-x86\python.exe
@IF "%PYTHON35_X64%" == "" SET PYTHON35_X64=c:\Python35-x64\python.exe
@IF "%PYTHON%" == "" SET PYTHON=%PYTHON27_X64%
@IF "%PYPY2%" == "" SET PYPY2=c:\pypy2-v5.4.1\pypy.exe
@IF "%PYPY3%" == "" SET PYPY3=c:\pypy3-v2.4\pypy.exe
@SET INTERP_X64=%PYTHON27_X64%;%PYTHON32_X64%;%PYTHON33_X64%;%PYTHON34_X64%;^
%PYTHON35_X64%
@SET INTERP_X86=%PYTHON27_X86%;%PYTHON32_X86%;%PYTHON33_X86%;%PYTHON34_X86%;^
%PYTHON35_X86%;%PYPY2%;%PYPY3%
@SET INTERPRETERS=%INTERP_X86%;%INTERP_X64%
@IF "%~1" == "" GOTO :all
@GOTO :%~1
:all
@CALL :clean
@GOTO :eof
:clean
@RMDIR /S /Q build
@RMDIR /S /Q dist
@FOR /d /r . %%d in (__pycache__) do @IF EXIST "%%d" RMDIR /S /Q "%%d"
@DEL /S /Q MANIFEST
@DEL /S /Q *.pyc
@GOTO :eof
:docs
@IF "%SPHINXBUILD%" == "" SET SPHINXBUILD=C:\Python27-x64\Scripts\sphinx-build.exe
@ECHO Creating docs package
@RMDIR /S /Q doc\html
@CD doc
@CALL make html
@MOVE /Y _build\html html
@RMDIR /S /Q _build
@CALL make clean
@CD ..
@GOTO :eof
:testall
@FOR /F "tokens=1 delims=" %%A in ('CHDIR') do @SET PYTHONPATH=%%A
@FOR %%A in (%INTERPRETERS%) do @%%A -B -m test.util.runtests
@GOTO :eof
@ENDLOCAL
| MarcJenningsUK/SensorPlatform | python/python-utilities/make.bat | bat | gpl-3.0 | 1,967 |
@echo Instructions: The home directory of your TINI distribution must be set to
@echo the environment variable TINI_HOME
@echo For example: set TINI_HOME=e:\tini1.02
@echo off
mkdir tini
@echo Compile...
javac -bootclasspath %TINI_HOME%\bin\tiniclasses.jar -classpath ..\..\lib\owapi_dependencies_TINI.jar;. -d tini src\*.java
@echo TINI Convert...
java -classpath %TINI_HOME%\bin\tini.jar;. BuildDependency -p ..\..\lib\owapi_dependencies_TINI.jar -f tini -x ..\..\lib\owapi_dep.txt -o tini\ReadSwitch.tini -add Switches -d %TINI_HOME%\bin\tini.db
| lourosas/onewireweatherstation | RaspberryPiWeatherStationCode/LClasses/examples/ReadSwitch/tini_build.bat | bat | lgpl-3.0 | 590 |
:: Created by npm, please don't edit manually.
@SET SCRIPT="%~dp0\.\node_modules\ares-webos-sdk\bin\ares-launch.js"
@IF NOT EXIST %SCRIPT% (
@SET SCRIPT="%~dp0\.\ares-launch.js"
)
@SET PATH=%PATH:"=%
@IF EXIST "%~dp0\x86\node.exe" (
@SETLOCAL
@SET "PATH=%~dp0\x86;%PATH%"
node %SCRIPT% %*
) ELSE (
node %SCRIPT% %*
)
| recurve/ares-ecosystem | node_modules/ares-webos-sdk/bin/ares-launch.cmd | bat | apache-2.0 | 338 |
@echo off
if ""%1"" == ""-p"" goto doSetPort
if ""%1"" == """" goto doStart
echo Usage: %0 [OPTIONS]
echo -p [port] Server port (default: 8899)
goto end
:doSetPort
shift
set PORT=%1
:doStart
set DDCFGDIR=%~dp0%..\conf
set CLASSPATH=%DDCFGDIR%
SET CLASSPATH=%~dp0..\lib\*;%CLASSPATH%
set CONSOLE_MAIN=com.dangdang.ddframe.job.lite.console.ConsoleBootstrap
echo on
if ""%PORT%"" == """" set PORT=8899
java -cp "%CLASSPATH%" %CONSOLE_MAIN% %PORT%
:end
| leekay0032/elastic-job | elastic-job-lite/elastic-job-lite-console/src/main/resources/bin/start.bat | bat | apache-2.0 | 466 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=asynctnt
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
| igorcoding/asynctnt | docs/make.bat | bat | apache-2.0 | 776 |
:: ###########################################################################
:: Build script to build the protoc compiler for the host platform.
:: ###########################################################################
:: This script builds the protoc compiler for Windows, which is needed
:: if protobuf is not installed already on windows, as we will need to convert
:: the protobuf source files to cc files.
:: After the execution of the file, one should be able to find the host protoc
:: binary at build_host_protoc/bin/protoc.exe.
@echo on
SET ORIGINAL_DIR=%cd%
SET CAFFE2_ROOT=%~dp0%..
if not exist %CAFFE2_ROOT%\build_host_protoc mkdir %CAFFE2_ROOT%\build_host_protoc
echo "Created %CAFFE2_ROOT%\build_host_protoc"
cd %CAFFE2_ROOT%\build_host_protoc
if NOT DEFINED CMAKE_GENERATOR (
if DEFINED APPVEYOR_BUILD_WORKER_IMAGE (
if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2017" (
set CMAKE_GENERATOR="Visual Studio 15 2017 Win64"
) else if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2015" (
set CMAKE_GENERATOR="Visual Studio 14 2015 Win64"
) else (
echo "You made a programming error: unknown APPVEYOR_BUILD_WORKER_IMAGE:"
echo %APPVEYOR_BUILD_WORKER_IMAGE%
exit /b
)
) else (
:: In default we use win64 VS 2017.
set CMAKE_GENERATOR="Visual Studio 15 2017 Win64"
)
)
cmake ..\third_party\protobuf\cmake ^
-G%CMAKE_GENERATOR% ^
-DCMAKE_INSTALL_PREFIX=. ^
-Dprotobuf_BUILD_TESTS=OFF ^
-DCMAKE_BUILD_TYPE=Debug ^
|| exit /b
:: Actually run the build
msbuild INSTALL.vcxproj
cd %ORIGINAL_DIR% | bwasti/caffe2 | scripts/build_host_protoc.bat | bat | apache-2.0 | 1,590 |
@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\stream-python.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\stream-python.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
| Aigeruth/stream-python | docs/make.bat | bat | bsd-3-clause | 6,473 |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Bake is a shell script for running CakePHP bake script
:: PHP versions 4 and 5
::
:: CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
:: Copyright 2005-2010, Cake Software Foundation, Inc.
::
:: Licensed under The MIT License
:: Redistributions of files must retain the above copyright notice.
::
:: @filesource
:: @copyright Copyright 2005-2010, Cake Software Foundation, Inc.
:: @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
:: @package cake
:: @subpackage cake.cake.console
:: @since CakePHP(tm) v 1.2.0.5012
:: @version $Revision$
:: @modifiedby $LastChangedBy$
:: @lastmodified $Date$
:: @license http://www.opensource.org/licenses/mit-license.php The MIT License
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: In order for this script to work as intended, the cake\console\ folder must be in your PATH
@echo.
@echo off
SET app=%0
SET lib=%~dp0
php -q "%lib%cake.php" -working "%CD%" %*
echo. | fiuwebteam/Calendar | vendors/cake/console/cake.bat | bat | mit | 1,094 |
@echo off
REM
REM Copyright 2002 Sun Microsystems, Inc. All rights reserved.
REM
REM Redistribution and use in source and binary forms, with or without
REM modification, are permitted provided that the following conditions
REM are met:
REM
REM - Redistributions of source code must retain the above copyright
REM notice, this list of conditions and the following disclaimer.
REM
REM - Redistribution in binary form must reproduce the above copyright
REM notice, this list of conditions and the following disclaimer in
REM the documentation and/or other materials provided with the
REM distribution.
REM
REM Neither the name of Sun Microsystems, Inc. or the names of
REM contributors may be used to endorse or promote products derived
REM from this software without specific prior written permission.
REM
REM This software is provided "AS IS," without a warranty of any
REM kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
REM WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
REM FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
REM EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
REM SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
REM DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
REM OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
REM FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
REM PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
REM LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
REM EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
REM
REM You acknowledge that Software is not designed, licensed or intended
REM for use in the design, construction, operation or maintenance of
REM any nuclear facility.
REM
set ANT_HOME=../../../../lib/ant
set ANT_CLASSPATH=%JAVA_HOME%/lib/tools.jar
set ANT_CLASSPATH=%ANT_HOME%/lib/ant.jar;%ANT_HOME%/lib/xml.jar;%ANT_CLASSPATH%
set ANT_CLASSPATH=%J2EE_HOME%/lib/j2ee.jar;%ANT_CLASSPATH%
%JAVA_HOME%\bin\java -classpath "%ANT_CLASSPATH%" -Dant.home=%ANT_HOME% -Dj2ee.home=%J2EE_HOME% org.apache.tools.ant.Main %1 %2 %3 %4
| pitpitman/GraduateWork | petstore1.3_01/src/components/util/tracer/src/build.bat | bat | mit | 2,159 |
@erase lang.inc
@echo lang fix en >lang.inc
@fasm mixer.asm mixer
@erase lang.inc
@pause | devlato/kolibrios-llvm | programs/media/mixer/trunk/build_en.bat | bat | mit | 88 |
copy \cashmere\rtftbl.h \cashmere\rtftbl.bak
rtfgen >foo
diff foo rtftbl.h > \cashmere\foo2
more \cashmere\foo2
mv foo \cashmere\rtftbl.h
| mindcont/OpenSource | Microsoft DOS/Word 1.1a CHM Distribution/Opus/tools/rtftbl.bat | bat | cc0-1.0 | 139 |
setLocal
set JANDEX_HOME=c:\dev\repos-pub\open-liberty\dev\build.image\wlp\lib
set JANDEX_JAR=com.ibm.ws.org.jboss.jandex_1.0.21.jar
set JANDEX_PATH=%JANDEX_HOME%\%JANDEX_JAR%
echo Jandex Path [ JANDEX_PATH ] [ %JANDEX_PATH% ]
echo.
set JAVA_HOME=c:\dev\java80
set JAVA_BIN=%JAVA_HOME%\bin\java
echo Java Binaries [ JAVA_BIN ] [ %JAVA_BIN% ]
echo.
%JAVA_BIN% -jar %JANDEX_PATH%
endLocal | kgibm/open-liberty | dev/com.ibm.ws.anno/publish/jandex/runJandexBase.bat | bat | epl-1.0 | 390 |
cmd_drivers/cpuidle/built-in.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/cpuidle/built-in.o drivers/cpuidle/cpuidle.o drivers/cpuidle/driver.o drivers/cpuidle/governor.o drivers/cpuidle/sysfs.o drivers/cpuidle/governors/built-in.o
| jdlfg/Mecha-kernel-jdlfg | drivers/cpuidle/.built-in.o.cmd | bat | gpl-2.0 | 295 |
@Echo off
"%~dp0.\FAKE\tools\FAKE.exe" %*
| IntelliSun/IntelliSun | Tools/Fake.bat | bat | gpl-2.0 | 50 |
cmd_block/noop-iosched.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,block/.noop-iosched.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(noop_iosched)" -D"KBUILD_MODNAME=KBUILD_STR(noop_iosched)" -c -o block/noop-iosched.o block/noop-iosched.c
deps_block/noop-iosched.o := \
block/noop-iosched.c \
include/linux/blkdev.h \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/mmu.h) \
include/linux/sched.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/compat.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/preempt.h) \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/sgidefs.h \
include/asm/types.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mips64/r2.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm/cpu-features.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm-generic/bitops/ext2-atomic.h \
include/asm-generic/bitops/minix.h \
include/asm/thread_info.h \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/8kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/processor.h \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/asm/current.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
include/linux/time.h \
include/linux/seqlock.h \
include/asm/timex.h \
include/asm-mips/mach-generic/timex.h \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/rbtree.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/linux/nodemask.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/asm/semaphore.h \
include/linux/wait.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/ptrace.h \
$(wildcard include/config/cpu/has/smartmips.h) \
include/asm/isadep.h \
include/asm/mmu.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/smp.h \
include/linux/sem.h \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.h \
include/linux/kref.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/securebits.h \
include/linux/fs_struct.h \
include/linux/completion.h \
include/linux/pid.h \
include/linux/rcupdate.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
include/asm-mips/mach-generic/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/futex.h \
$(wildcard include/config/futex.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/param.h \
include/linux/resource.h \
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/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/moduleparam.h \
include/asm/local.h \
include/asm/module.h \
$(wildcard include/config/cpu/mips32/r2.h) \
$(wildcard include/config/cpu/mips64/r1.h) \
$(wildcard include/config/cpu/r6000.h) \
include/asm/uaccess.h \
include/asm-generic/uaccess.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/device.h \
include/asm-generic/device.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm/pgtable-32.h \
include/asm/fixmap.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
include/linux/uaccess.h \
include/asm/cacheflush.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/asm/scatterlist.h \
include/linux/elevator.h \
block/noop-iosched.o: $(deps_block/noop-iosched.o)
$(deps_block/noop-iosched.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/block/.noop-iosched.o.cmd | bat | gpl-2.0 | 16,935 |
@echo off
echo Patching your registry ...
regedit /s launch_timeout_registry_fix.reg
echo Done
pause | bernhardkaplan/mcx | setup/win64/apply_timeout_registry_fix.bat | bat | gpl-3.0 | 100 |
set PIP=c:\Python25\pyinstaller-1.3\
python %PIP%Makespec.py --onefile --noconsole --icon=icon32.ico eepee.py
python %PIP%Build.py eepee.spec | ugm6hr/eepee | build_tools/eepee.bat | bat | gpl-3.0 | 143 |
@echo off
setlocal
REM
REM Copyright (C) 2005-2007 Funambol, Inc. All rights reserved.
REM
REM Environment Variable prerequisites
REM
REM JAVA_HOME (Optional) May point at your jdk/jre installation. If not set,
REM or not correctly set, the jre embedded in the bundle is used
REM
REM JAVA_OPTS (Optional) Java runtime options
REM
REM MEM_OPTS (Optional) Memory options, for instance -Xmx256M. It is used only
REM with start command. Default value -Xmx256M.
REM
REM Before running this script:
REM - copy the JDBC driver in the lib directory. It will be automatically loaded.
REM
REM Set the JMX_PORT variable below to a different value if the one specified is
REM already in use.
REM
set JMX_PORT=4101
set SCRIPT_NAME=%~nx0
set FUNAMBOL_HOME=%~dp0..
set INBOXLISTENER_HOME=%FUNAMBOL_HOME%\inbox-listener
rem Setting the JAVA_HOME to the JRE in the bundle if not set or if not correctly set
IF "%JAVA_HOME%" == "" (
set JAVA_HOME=%FUNAMBOL_HOME%\tools\jre-1.6.0\jre
) ELSE (
IF NOT EXIST "%JAVA_HOME%\bin\java.exe" (
set JAVA_HOME=%FUNAMBOL_HOME%\tools\jre-1.6.0\jre
)
)
if not "%JAVA_HOME%" == "" goto verifyJavaHome
echo ERROR: Please, set JAVA_HOME before running this script.
goto END
:verifyJavaHome
if EXIST "%JAVA_HOME%\bin\java.exe" goto okJavaHome
echo ERROR: Set JAVA_HOME to the path of a valid jre.
goto END
:okJavaHome
REM setting classpath
REM ------------------
cd %INBOXLISTENER_HOME%\lib
set CLASSPATH=%INBOXLISTENER_HOME%\lib
for %%i in (*.jar) do call :append %%i
goto okClasspath
:append
set CLASSPATH=%CLASSPATH%;%INBOXLISTENER_HOME%\lib\%*
goto :eof
:okClasspath
cd ..
IF "%MEM_OPTS%" == "" (
set MEM_OPTS=-Xmx256M
)
set JAVA_OPTS=%JAVA_OPTS% %MEM_OPTS%
set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8
set JAVA_OPTS=%JAVA_OPTS% -Dfunambol.home="%FUNAMBOL_HOME%"
set JAVA_OPTS=%JAVA_OPTS% -Dfunambol.pushlistener.config.bean="com/funambol/email/inboxlistener/InboxListenerConfiguration.xml"
set JAVA_OPTS=%JAVA_OPTS% -Djava.library.path="%INBOXLISTENER_HOME%\lib\win32"
set JAVA_OPTS=%JAVA_OPTS% -Djavax.net.ssl.trustStore="%INBOXLISTENER_HOME%\lib\security\cacerts"
set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
set JMX_BEAN=com.funambol.inboxlistener:type=InboxListener
if ""%1"" == ""start"" goto doStart
if ""%1"" == ""status"" goto doStatus
if ""%1"" == ""stop"" goto doStop
if ""%1"" == ""license"" goto doLicense
goto printUsage
:doStart
if ""%2"" == """" (
set EXEC=start "Inbox Listener" "%JAVA_HOME%\bin\javaw.exe"
) else (
if ""%2"" == ""-debug"" (
if ""%3"" == """" (
set EXEC="%JAVA_HOME%\bin\java.exe"
) else (
goto printUsage
)
) else (
goto printUsage
)
)
set CLASS_NAME=com.funambol.email.inboxlistener.service.InboxListener
rem Uncomment the following line to enable remote Debug
rem set JAVA_OPTS=%JAVA_OPTS% -Xdebug -Xrunjdwp:transport=dt_socket,address=8788,server=y,suspend=y
set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=%JMX_PORT% -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false
set JAVA_OPTS=%JAVA_OPTS% -Djava.rmi.server.hostname=%COMPUTERNAME%
goto CONT1
:doStop
if not ""%2"" == """" (
goto printUsage
)
set EXEC="%JAVA_HOME%\bin\java.exe"
set CLASS_NAME=com.funambol.pushlistener.service.ManagementTools
set ARGS=%JMX_BEAN% localhost %JMX_PORT% stop
goto CONT1
:doStatus
if not ""%2"" == """" (
goto printUsage
)
set EXEC="%JAVA_HOME%\bin\java.exe"
set CLASS_NAME=com.funambol.pushlistener.service.ManagementTools
set ARGS=%JMX_BEAN% localhost %JMX_PORT% status
goto CONT1
:doLicense
type "%FUNAMBOL_HOME%"\LICENSE.txt | more
goto END
:printUsage
echo Usage: %SCRIPT_NAME% command
echo command:
echo start Start InboxListener
echo start -debug Start InboxListener with output console
echo stop Stop InboxListener
echo status Show InboxListener status
echo license Show the license
goto END
:CONT1
echo INBOXLISTENER_HOME: "%INBOXLISTENER_HOME%"
echo JAVA_OPTS: %JAVA_OPTS%
%EXEC% %JAVA_OPTS% %CLASS_NAME% %ARGS%
:END
endlocal
| accesstest3/cfunambol | bundle-resources/src/main/resources/Funambol/bin/inbox-listener.cmd | bat | agpl-3.0 | 4,214 |
@REM
@REM Copyright (C) 2009 Progress Software, Inc. All rights reserved.
@REM http://fusesource.com
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@echo off
setlocal
TITLE MeshKeeper Control Server
REM =====================================================================
REM User customization area. You can set your defaults here.
REM =====================================================================
set JAVA_EXE=
set JAVA_MIN_MEM=32m
set JAVA_MAX_MEM=128m
set MESHKEEPER_OPTS=
REM =====================================================================
REM Execute the Control Server
REM =====================================================================
call :SETUP_DEFAULTS
%JAVA_EXE% %JAVA_OPTS% %OPTS% -classpath %CLASSPATH% org.fusesource.meshkeeper.control.Main %*
if ERRORLEVEL 1 goto ERROR
goto END
REM =====================================================================
REM Environment setup helper routines
REM =====================================================================
:SETUP_DEFAULTS
call :LOCATE_MESHKEEPER_HOME
call :LOCATE_MESHKEEPER_BASE
call :LOCATE_JAVA_EXE
call :LOCATE_JAVA_OPTS
call :LOCATE_OPTS
call :LOCATE_CLASSPATH
goto :EOF
:LOCATE_MESHKEEPER_HOME
cd %~dp0%
cd ..
set MESHKEEPER_HOME=%cd%
if not exist "%MESHKEEPER_HOME%" (
echo MESHKEEPER_HOME directory is not valid: %MESHKEEPER_HOME%
goto :ERROR
)
goto :EOF
:LOCATE_MESHKEEPER_BASE
if "%MESHKEEPER_BASE%" == "" (
set MESHKEEPER_BASE=%MESHKEEPER_HOME%\data
)
goto :EOF
:LOCATE_JAVA_EXE
if "%JAVA_EXE%" == "" (
set JAVA_EXE=%JAVA%
)
if "%JAVA_EXE%" == "" (
set JAVA_EXE=java
)
goto :EOF
:LOCATE_JAVA_OPTS
if "%JAVA_OPTS%" == "" (
set JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MIN_MEM%
)
if "%MESHKEEPER_DEBUG%" == "" goto :END_MESHKEEPER_DEBUG
if "%JAVA_DEBUG_OPTS%" == "" (
set JAVA_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
)
echo Enabling Java debug options: %JAVA_DEBUG_OPTS%
set JAVA_OPTS=%JAVA_DEBUG_OPTS% %JAVA_OPTS%
:END_MESHKEEPER_DEBUG
goto :EOF
:LOCATE_OPTS
set OPTS=
set OPTS=%OPTS% -Dmeshkeeper.application=%~n0
set OPTS=%OPTS% -Dmeshkeeper.home=%MESHKEEPER_HOME%
set OPTS=%OPTS% -Dmeshkeeper.base=%MESHKEEPER_BASE%
set OPTS=%OPTS% -Dlog4j.configuration=file:%MESHKEEPER_HOME%\etc\log4j.properties
set OPTS=%OPTS% -Dmop.base=%MESHKEEPER_HOME%
set OPTS=%OPTS% -Dmop.online=false
set OPTS=%OPTS% %MESHKEEPER_OPTS%
goto :EOF
:LOCATE_CLASSPATH
set CLASSPATH=
set CLASSPATH=%CLASSPATH%;%MESHKEEPER_HOME%\repository\org\fusesource\meshkeeper\meshkeeper-api\${project.version}\meshkeeper-api-${project.version}.jar
set CLASSPATH=%CLASSPATH%;%MESHKEEPER_HOME%\repository\org\fusesource\meshkeeper\meshkeeper-mop-resolver\${project.version}\meshkeeper-meshkeeper-mop-resolver-${project.version}.jar
set CLASSPATH=%CLASSPATH%;%MESHKEEPER_HOME%\repository\commons-logging\commons-logging\${commons-logging-version}\commons-logging-${commons-logging-version}.jar
set CLASSPATH=%CLASSPATH%;%MESHKEEPER_HOME%\repository\log4j\log4j\${log4j-version}\log4j-${log4j-version}.jar
goto :EOF
:ERROR
echo Paused to catch any errors. Press any key to continue.
errorlvl 1
pause
goto :END
:END
endlocal | chirino/meshkeeper | meshkeeper-distro/src/main/distribution/windows-text/bin/mk-server.bat | bat | apache-2.0 | 3,873 |
:user_configuration
:: Path to Flex SDK
set FLEX_SDK=C:\Program Files\FlashDevelop\Tools\flexsdk
:: Path to Android SDK
set ANDROID_SDK=C:\Program Files\FlashDevelop\Tools\android
:validation
if not exist "%FLEX_SDK%\bin" goto flexsdk
if not exist "%ANDROID_SDK%\platform-tools" goto androidsdk
goto succeed
:flexsdk
echo.
echo ERROR: incorrect path to Flex SDK in 'bat\SetupSDK.bat'
echo.
echo Looking for: %FLEX_SDK%\bin
echo.
if %PAUSE_ERRORS%==1 pause
exit
:androidsdk
echo.
echo ERROR: incorrect path to Android SDK in 'bat\SetupSDK.bat'
echo.
echo Looking for: %ANDROID_SDK%\platform-tools
echo.
if %PAUSE_ERRORS%==1 pause
exit
:succeed
set PATH=%PATH%;%FLEX_SDK%\bin
set PATH=%PATH%;%ANDROID_SDK%\platform-tools
| hyokosdeveloper/ZeusAS3Projects | iViewLoginModule/bat/SetupSDK.bat | bat | apache-2.0 | 727 |
@echo off
set PAUSE_ERRORS=1
call bat\SetupSDK.bat
call bat\SetupApplication.bat
:menu
echo.
echo Package for target
echo.
echo Android:
echo.
echo [1] normal (apk)
echo [2] debug (apk-debug)
echo [3] captive (apk-captive-runtime)
echo.
echo iOS:
echo.
echo [4] fast test (ipa-test-interpreter)
echo [5] fast debug (ipa-debug-interpreter)
echo [6] slow test (ipa-test)
echo [7] slow debug (ipa-debug)
echo [8] "ad-hoc" (ipa-ad-hoc)
echo [9] App Store (ipa-app-store)
echo.
:choice
set /P C=[Choice]:
echo.
set PLATFORM=android
set OPTIONS=
if %C% GTR 3 set PLATFORM=ios
if %C% GTR 7 set PLATFORM=ios-dist
if "%C%"=="1" set TARGET=
if "%C%"=="2" set TARGET=-debug
if "%C%"=="2" set OPTIONS=-connect %DEBUG_IP%
if "%C%"=="3" set TARGET=-captive-runtime
if "%C%"=="4" set TARGET=-test-interpreter
if "%C%"=="5" set TARGET=-debug-interpreter
if "%C%"=="5" set OPTIONS=-connect %DEBUG_IP%
if "%C%"=="6" set TARGET=-test
if "%C%"=="7" set TARGET=-debug
if "%C%"=="7" set OPTIONS=-connect %DEBUG_IP%
if "%C%"=="8" set TARGET=-ad-hoc
if "%C%"=="9" set TARGET=-app-store
call bat\Packager.bat
if "%PLATFORM%"=="android" goto android-package
:ios-package
if "%AUTO_INSTALL_IOS%" == "yes" goto ios-install
echo Now manually install and start application on device
echo.
goto end
:ios-install
echo Installing application for testing on iOS (%DEBUG_IP%)
echo.
call adt -installApp -platform ios -package "%OUTPUT%"
if errorlevel 1 goto installfail
echo Now manually start application on device
echo.
goto end
:android-package
adb devices
echo.
echo Installing %OUTPUT% on the device...
echo.
adb -d install -r "%OUTPUT%"
if errorlevel 1 goto installfail
goto end
:installfail
echo.
echo Installing the app on the device failed
:end
pause
| hanenbro/BoggleSolver | boggle_air/PackageApp.bat | bat | mit | 1,866 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=Enos
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
| SmartInfrastructures/enos | docs/make.bat | bat | gpl-3.0 | 808 |
@echo off
rem RCS: @(#) $Id: rmd.bat,v 1.5 1999/12/22 00:00:16 hobbs Exp $
if not exist %1\. goto end
echo Removing directory %1
if "%OS%" == "Windows_NT" goto winnt
cd %1
if errorlevel 1 goto end
del *.*
cd ..
rmdir %1
if errorlevel 1 goto end
goto success
:winnt
rmdir %1 /s /q
if errorlevel 1 goto end
:success
echo deleted directory %1
:end
| nmacs/lm3s-uclinux | user/tcl/win/rmd.bat | bat | gpl-2.0 | 352 |
cl.exe %CFLAGS}% main.c -o overlinking.exe -LIBDIR=%PREFIX%\Lib -LIB=zlib.lib
| pelson/conda-build | tests/test-recipes/metadata/_overdepending_detection/build.bat | bat | bsd-3-clause | 79 |
echo off
SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd
echo on
"%JAVA_HOME%\bin\java" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.suggestedusers.GetMemberSuggestions %*
ENDLOCAL
| egeyman/Final-Project | twitter4j-4.0.3/bin/suggestedusers/getMemberSuggestions.cmd | bat | apache-2.0 | 199 |
@ECHO OFF
REM Set things up and create bin directory if necessary.
SETLOCAL ENABLEDELAYEDEXPANSION
SET BUILD_FILES=
IF NOT EXIST bin\NUL MKDIR bin
REM Build each file in the list.
FOR %%A IN (
main
timers
usb
control
scsi
) DO (
ECHO *** Building %%A.c...
sdcc --model-small -mmcs51 -pdefcpu -c -obin\%%A.rel %%A.c
IF ERRORLEVEL 1 GOTO ERRORS
SET "BUILD_FILES=!BUILD_FILES! bin\%%A.rel"
)
REM Build Intel Hex and BIN versions of combined file.
sdcc --xram-loc 0x6000 -o bin\output.hex %BUILD_FILES%
IF ERRORLEVEL 1 GOTO ERRORS
makebin -p bin\output.hex bin\output.bin
REM Create firmware and burner images from templates.
copy /y ..\templates\FWdummy.bin bin\fw.bin > NUL
copy /y ..\templates\BNdummy.bin bin\bn.bin > NUL
..\tools\sfk partcopy bin\output.bin -fromto 0 -1 bin\fw.bin 512 -yes > NUL
..\tools\sfk partcopy bin\output.bin -fromto 0 -1 bin\bn.bin 512 -yes > NUL
GOTO END
:ERRORS
ECHO *** There were errors^^! ***
:END
ECHO *** Done.
ENDLOCAL
| geosphere/Psychson | firmware/build.bat | bat | mit | 962 |
REM This batch file will launch the game as normal.
REM The reason this exists is because some computers/installations of Visual
REM Studio Code cannot use the .NET Core Debugger, such as 32-bit systems or no
REM access to the PATH variable.
REM In order to use this, replace DOTNET-DIRECTORY (keep the quotes) below with
REM the absolute path of the dotnet.exe executable, which lies at the root of
REM your .NET Core installation folder.
REM You can run this file by pressing Ctrl+Shift+C in Visual Studio Code, and
REM executing "launch" in the console window.
@echo off
cls
"DOTNET-DIRECTORY" run %~dp0src
| Hinkarn/ConsoleEngine | launch.bat | bat | mit | 615 |
1>2# : ^
"""
@echo off
setlocal EnableDelayedExpansion
set "Python=%SystemDrive%\Python27"
if not exist "%Python%\python.exe" call :SetupPython
for %%A in (%Python%\Lib\site-packages\axiom*) do goto Run
call :SetupPythonPlugins
:Run
"%Python%\python.exe" "%~f0" %*
endlocal & exit /b %ErrorLevel%
:SetupPython {Python} {Temp}
PowerShell -NoProfile -ExecutionPolicy RemoteSigned -Command "(New-Object System.Net.WebClient).DownloadFile('https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi', '%Temp%\python-2.7.8.msi')" && msiexec /qn /i "%Temp%\python-2.7.8.msi" TARGETDIR=%Python% ALLUSERS=1 >nul 2>&1 || ( echo error: failed to install python 2.7 & exit /b !ErrorLevel! )
:SetupPythonPlugins {Python} {Temp}
PowerShell -NoProfile -ExecutionPolicy RemoteSigned -Command "(New-Object System.Net.WebClient).DownloadFile('https://bootstrap.pypa.io/ez_setup.py', '%Temp%\ez_setup.py')" && ( pushd "%Temp%" && "%Python%\python.exe" ez_setup.py install >nul 2>&1 & popd ) || ( echo error: failed to install ez_setup & exit /b !ErrorLevel! )
PowerShell -NoProfile -ExecutionPolicy RemoteSigned -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.dnspython.org/kits/1.10.0/dnspython-1.10.0.zip', '%Temp%\dnspython-1.10.0.zip'); (New-Object -COM Shell.Application).NameSpace('%Temp%').CopyHere((New-Object -COM Shell.Application).NameSpace('%Temp%\dnspython-1.10.0.zip').Items(), 16);" && ( pushd "%Temp%\dnspython-1.10.0" && "%Python%\python.exe" setup.py install >nul 2>&1 & popd ) || ( echo error: failed to install dnspython & exit /b !ErrorLevel! )
PowerShell -NoProfile -ExecutionPolicy RemoteSigned -Command "(New-Object System.Net.WebClient).DownloadFile('http://github.cerner.com/Axiom/axiom_dydns/archive/master.zip', '%Temp%\axiom_dydns.zip'); (New-Object -COM Shell.Application).NameSpace('%Temp%').CopyHere((New-Object -COM Shell.Application).NameSpace('%Temp%\axiom_dydns.zip').Items(), 16);" && ( pushd "%Temp%\axiom_dydns-master" && "%Python%\python.exe" setup.py install >nul 2>&1 & popd ) || ( echo error: failed to install axiom_dydns & exit /b !ErrorLevel! )
echo info: installation completed successfully
exit /b 0
"""
import os, sys
from axiom_dydns import delete_dns_record
from axiom_dydns import add_dns_record
if len(sys.argv) > 2:
delete_dns_record(sys.argv[1])
print('adding: ' + sys.argv[1] + '=>' + sys.argv[2])
full_hostname = add_dns_record(sys.argv[1], sys.argv[2])
elif len(sys.argv) > 1:
print('deleting: ' + sys.argv[1])
delete_dns_record(sys.argv[1])
else:
print('usage: ' + os.path.basename(__file__) + ' <entry> <target> to add or ' + os.path.basename(__file__) + ' <entry> to remove')
| davidruhmann/22222 | 2014-09-28/haxDNS.py.bat | bat | mit | 2,644 |
@ECHO OFF
SET BIN_TARGET=%~dp0/../leafo/scssphp/pscss
php "%BIN_TARGET%" %*
| StanleyInc/SlimPackageStarter | vendor/bin/pscss.bat | bat | mit | 76 |
cd ate/helpers
start mongo.bat
start server.bat | CreaturePhil/YGOSiM | lib/start.bat | bat | mit | 49 |
@echo off
npm install && node_modules\.bin\hubot.cmd --name "fiona" %* | lalithr95/Fiona-bot | bin/hubot.cmd | bat | mit | 72 |
3dstool -cvtf romfs romfs.bin --romfs-dir romfs
3dsxtool lpp-3ds.elf lpp-3ds.3dsx --romfs=romfs.bin --smdh=lpp-3ds.smdh | ItsDeidara/CaptureAssistant | 3dsx_buildscript.bat | bat | mit | 119 |
@echo off
echo.
echo saving update
echo reading config.json
for /f "delims=" %%i in ('node cfg.js mongoDir') do set mongoDir=%%i
for /f "delims=" %%i in ('node cfg.js database') do set database=%%i
for /f "delims=" %%i in ('node cfg.js serverDir') do set serverDir=%%i
echo moving to changelog dir
if not exist %serverDir%\changelog md %serverDir%\changelog
cd %serverDir%\changelog
echo dumping web client changelog
%mongoDir%\mongoDump --out "tmp" --db %database% --collection webClientChanges >nul 2>&1
echo dumping server changelog
%mongoDir%\mongoDump --out "tmp" --db %database% --collection serverChanges >nul 2>&1
echo moving .bson files
move /y %serverDir%\changelog\tmp\%database%\*.bson %serverDir%\changelog >nul
echo removing temporary dir
rmdir /s /q %serverDir%\changelog\tmp
echo returning to server dir
cd %serverDir%
echo pushing changes to github
git add .
if [%1]==[] (
set /p changeDesc=describe changes:
) else (
set changeDesc=%*
)
git commit -m "%changeDesc%" >nul
git remote add origin https://github.com/Trewbot/Graphene.git >nul 2>&1
set /p branch=branch:
git push origin %branch% >nul
backup | Trewbot/Graphene | save.bat | bat | mit | 1,133 |
@if (0)==(0) echo off
cscript.exe //nologo //E:JScript "%~f0" %*
exit /B %ERRORLEVEL%
@end
var sh = WScript.CreateObject("WScript.Shell");
Array.prototype.map = function (f) {var xs = []; for(var i = 0; i < this.length; i++) {xs.push(f(this[i]));} return(xs);};
var opt = {num : -1, quot : false, noquot : false, verbose : false};
var args = [];
for(var i = 0; i < WScript.Arguments.Length; i++)
{
args.push(WScript.Arguments(i));
}
while(args.length > 0)
{
if(args.length >= 2 && args[0] == "-n") {opt.num = args[1] - 0; args.shift(); args.shift();}
else if(args[0] == "-q") {opt.quot = true; args.shift();}
else if(args[0] == "-Q") {opt.noquot = true; args.shift();}
else if(args[0] == "-t") {opt.verbose = true; args.shift();}
else
{
break;
}
}
WScript.Quit(main(args));
function main(args)
{
var stdin = WScript.StdIn;
var xs = [];
if(stdin.AtEndOfStream)
{
exec(args);
}
else
{
while(!stdin.AtEndOfStream)
{
Array.prototype.push.apply(xs, command_split(stdin.ReadLine()));
while(opt.num > 0 && opt.num <= xs.length)
{
exec(args.concat(xs.slice(0, opt.num)));
xs = xs.slice(opt.num);
}
}
if(xs.length > 0) {exec(args.concat(xs));}
}
return(0);
}
function exec(args)
{
var cmd = args.map(function(x) {return(escape(x));}).join(" ");
if(opt.verbose) {WScript.Echo(cmd);}
var exec = sh.Exec("cmd /d /c " + cmd + " 2>&1")
while(!exec.StdOut.AtEndOfStream)
{
WScript.Echo(exec.StdOut.ReadLine());
}
}
function escape(s)
{
if(!opt.noquot && (s.indexOf(" ") >= 0 || opt.quot))
{
return("\"" + s + "\"");
}
else
{
return(s);
}
}
function command_split(s, splitter)
{
splitter = splitter || " ";
var quote = [];
var xs = [];
var command = "";
for(var i = 0; i < s.length; i++)
{
var c = s.substring(i, i + 1);
if(quote.length == 0 && c == splitter)
{
if(splitter != " " || command != "")
{
xs.push(command);
}
command = "";
}
else if(quote.length > 0 && c == quote[quote.length - 1])
{
command += c;
quote.pop();
}
else
{
if(c == "\"" || c == "'")
{
quote.push(c);
}
command += c;
}
}
//if(quote.length > 0) {throw new Error("quote error [" + s + "]");}
if(command != "") {xs.push(command);}
return(xs);
}
| zenuas/Roku | bin/xargs.bat | bat | mit | 2,266 |
@echo off
mkdir tg
preqcc -file preprogs-tf2003tg-lan.src
frikqcc.exe /Of /Oc /Ol -nopause
del *.pqc
pause
exit
| angeld29/qwtf2003-qc | make-tglan.bat | bat | gpl-2.0 | 114 |
cmd_crypto/crypto_algapi.o := ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o crypto/crypto_algapi.o crypto/algapi.o crypto/scatterwalk.o crypto/proc.o
| tcp209/kernel_samsung_epic4gtouch | build/epic4gtouch/crypto/.crypto_algapi.o.cmd | bat | gpl-2.0 | 205 |
cmd_drivers/video/logo/built-in.o := arm-arago-linux-gnueabi-ld -EL -r -o drivers/video/logo/built-in.o drivers/video/logo/logo.o drivers/video/logo/logo_linux_mono.o drivers/video/logo/logo_linux_vga16.o drivers/video/logo/logo_linux_clut224.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | drivers/video/logo/.built-in.o.cmd | bat | gpl-2.0 | 250 |
cmd_net/sched/cls_rsvp6.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/sched/cls_rsvp6.ko net/sched/cls_rsvp6.o net/sched/cls_rsvp6.mod.o
| avareldalton85/rpi2-linux-rt | net/sched/.cls_rsvp6.ko.cmd | bat | gpl-2.0 | 247 |
cmd_kernel/trace/libftrace.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o kernel/trace/libftrace.o kernel/trace/ftrace.o
| sleshepic/epic_touch_kernel | kernel/trace/.libftrace.o.cmd | bat | gpl-2.0 | 160 |
@echo off
::copies the mapping file to startup folder
copy C:\downloads\project\maplogin.bat "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\maplogin.bat"
::copies the password csv file to the c:\pass directory and hides it
md C:\windows\pass
attrib +h +r C:\windows\pass
copy C:\downloads\project\userspass.csv C:\windows\pass\userspass.csv
::creates all users
c:\downloads\project\addusers.bat
::enables do not display last username
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "DontDisplayLastUserName" /t REG_DWORD /d 1 /f
| DavidThienProgramming/addUsersMapWorkgroupFolder | Scripts/setup.bat | bat | gpl-2.0 | 586 |
cmd_fs/attr.o := gcc -Wp,-MD,fs/.attr.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-redhat-linux/4.8.3/include -I/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -m64 -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -DCONFIG_AS_CFI_SECTIONS=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Wframe-larger-than=2048 -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(attr)" -D"KBUILD_MODNAME=KBUILD_STR(attr)" -c -o fs/attr.o fs/attr.c
deps_fs/attr.o := \
fs/attr.c \
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/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.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 \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.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/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/types.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/types.h \
include/asm-generic/int-ll64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/posix_types.h \
$(wildcard include/config/x86/32.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/posix_types_64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/paravirt.h) \
$(wildcard include/config/m386.h) \
$(wildcard include/config/m486.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/processor-flags.h \
$(wildcard include/config/vm86.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/vm86.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ptrace.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ptrace-abi.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/segment.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
$(wildcard include/config/x86/internode/cache/shift.h) \
include/linux/linkage.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/linkage.h \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/stringify.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/page_types.h \
include/linux/const.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/page_64_types.h \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/flatmem.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/math_emu.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/sigcontext.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/current.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/percpu.h \
$(wildcard include/config/x86/64/smp.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/numa.h) \
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/include/stdarg.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/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/bitops.h \
$(wildcard include/config/x86/cmov.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/alternative.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/asm.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
$(wildcard include/config/x86/use/3dnow.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/asm-generic/bitops/sched.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/swab.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.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 \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/32/lazy/gs.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cmpxchg.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cmpxchg_64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/nops.h \
$(wildcard include/config/mk7.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) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/page.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/page_64.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
include/asm-generic/getorder.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/pgtable_types.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/compat/vdso.h) \
$(wildcard include/config/proc/fs.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/pgtable_64_types.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/msr.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/msr-index.h \
include/linux/ioctl.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cpumask.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/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/string.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/string_64.h \
include/linux/errno.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/math64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/err.h \
include/linux/stat.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.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) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/thread_info.h \
$(wildcard include/config/debug/stack/usage.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ftrace.h \
$(wildcard include/config/function/tracer.h) \
$(wildcard include/config/dynamic/ftrace.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/atomic.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/atomic64_64.h \
include/asm-generic/atomic-long.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/spinlock.h \
$(wildcard include/config/paravirt/spinlocks.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/rwlock.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/paravirt.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
include/linux/kmod.h \
include/linux/gfp.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/compaction.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/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/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 \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.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/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) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/rwsem.h \
include/linux/srcu.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/mmzone.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/mmzone_64.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/mpspec.h \
$(wildcard include/config/x86/numaq.h) \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/x86/mpparse.h) \
$(wildcard include/config/acpi.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/mpspec_def.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/x86_init.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/bootparam.h \
include/linux/screen_info.h \
include/linux/apm_bios.h \
include/linux/edd.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/e820.h \
$(wildcard include/config/efi.h) \
$(wildcard include/config/intel/txt.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memtest.h) \
include/linux/early_res.h \
include/linux/range.h \
include/linux/ioport.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ist.h \
include/video/edid.h \
$(wildcard include/config/x86.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/apic.h \
$(wildcard include/config/x86/x2apic.h) \
include/linux/delay.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/delay.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/param.h \
include/asm-generic/param.h \
$(wildcard include/config/hz.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/timex.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/completion.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/apicdef.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/fixmap.h \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/numa.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/numa_64.h \
$(wildcard include/config/numa/emu.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/mmu.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/vsyscall.h \
$(wildcard include/config/generic/time.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/io_apic.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/irq_vectors.h \
$(wildcard include/config/sparse/irq.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/sparsemem.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.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) \
include/linux/pfn.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/topology.h \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/elf.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/user.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/user_64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/auxvec.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/vdso.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/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/module.h \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/matom.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
$(wildcard include/config/4kstacks.h) \
include/asm-generic/module.h \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.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 \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/pgtable.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/pgtable_64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/pgtable_64_types.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) \
include/linux/capability.h \
include/linux/fsnotify.h \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fsnotify.h) \
include/linux/dnotify.h \
$(wildcard include/config/dnotify.h) \
include/linux/fs.h \
$(wildcard include/config/quota.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/percpu_counter.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/inotify.h \
include/linux/fsnotify_backend.h \
$(wildcard include/config/inotify/user.h) \
include/linux/idr.h \
include/linux/audit.h \
$(wildcard include/config/change.h) \
$(wildcard include/config/audit.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/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/cgroup/sched.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ipcbuf.h \
include/asm-generic/ipcbuf.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/sembuf.h \
include/linux/signal.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/proportions.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/seccomp.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/seccomp_64.h \
include/linux/unistd.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/unistd.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/unistd_64.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/asm-offsets.h \
include/generated/asm-offsets.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/ia32_unistd.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/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/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) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/shmparam.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/shmbuf.h \
include/asm-generic/shmbuf.h \
include/linux/msg.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/msgbuf.h \
include/asm-generic/msgbuf.h \
include/linux/xfrm.h \
include/net/flow.h \
include/linux/in6.h \
fs/attr.o: $(deps_fs/attr.o)
$(deps_fs/attr.o):
| Existed/kernel-2.6.35.14 | fs/.attr.o.cmd | bat | gpl-2.0 | 31,054 |
cmd_arch/arm/boot/uImage := /bin/bash /opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/scripts/mkuboot.sh -A arm -O linux -T kernel -C none -a 0x10008000 -e 0x10008000 -n 'Linux-3.0.35-2666-gbdde708-g060f119' -d arch/arm/boot/zImage arch/arm/boot/uImage
| evan6200/cirrfy_pos | arch/arm/boot/.uImage.cmd | bat | gpl-2.0 | 280 |
@ECHO OFF
C:
CD \LUNA
LUNATIX.EXE N%1 SLICE
DEL LINKTO.%1
DEL LUNATIX.%1
EXITEMU
| andrewwyatt/photonbbs | doors/luna.bat | bat | gpl-2.0 | 88 |
cmd_fs/jffs2/jffs2.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o fs/jffs2/jffs2.o fs/jffs2/compr.o fs/jffs2/dir.o fs/jffs2/file.o fs/jffs2/ioctl.o fs/jffs2/nodelist.o fs/jffs2/malloc.o fs/jffs2/read.o fs/jffs2/nodemgmt.o fs/jffs2/readinode.o fs/jffs2/write.o fs/jffs2/scan.o fs/jffs2/gc.o fs/jffs2/symlink.o fs/jffs2/build.o fs/jffs2/erase.o fs/jffs2/background.o fs/jffs2/fs.o fs/jffs2/writev.o fs/jffs2/super.o fs/jffs2/debug.o fs/jffs2/wbuf.o fs/jffs2/compr_rtime.o fs/jffs2/compr_zlib.o
| yohanes/Acer-BeTouch-E130-Linux-Kernel | fs/jffs2/.jffs2.o.cmd | bat | gpl-2.0 | 510 |
cmd_arch/arm/lib/div64.o := /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.div64.o.d -nostdinc -isystem /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/../lib/gcc/arm-fsl-linux-gnueabi/4.4.4/include -I/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-mx6/include -Iarch/arm/plat-mxc/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/div64.o arch/arm/lib/div64.S
source_arch/arm/lib/div64.o := arch/arm/lib/div64.S
deps_arch/arm/lib/div64.o := \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/opt/freescale_sdk/L3.0.35_4.1.0_130816_source/ltib/rpm/BUILD/linux-3.0.35/arch/arm/include/asm/linkage.h \
arch/arm/lib/div64.o: $(deps_arch/arm/lib/div64.o)
$(deps_arch/arm/lib/div64.o):
| evan6200/cirrfy_pos | arch/arm/lib/.div64.o.cmd | bat | gpl-2.0 | 1,610 |
main.exe 0 2
| Pitto/Jasc-Soccer | main_fastlane.bat | bat | gpl-2.0 | 13 |
cmd_arch/arm/mach-s5pv210/built-in.o := /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-ld -EL -r -o arch/arm/mach-s5pv210/built-in.o arch/arm/mach-s5pv210/cpu.o arch/arm/mach-s5pv210/init.o arch/arm/mach-s5pv210/clock.o arch/arm/mach-s5pv210/gpio.o arch/arm/mach-s5pv210/dma.o arch/arm/mach-s5pv210/pd.o arch/arm/mach-s5pv210/irq-eint-group.o arch/arm/mach-s5pv210/irq-eint.o arch/arm/mach-s5pv210/mach-hkdkc110.o arch/arm/mach-s5pv210/hkc1xx_sysfs.o arch/arm/mach-s5pv210/pm.o arch/arm/mach-s5pv210/setup-sdhci.o arch/arm/mach-s5pv210/cpu-freq.o arch/arm/mach-s5pv210/setup-fb.o arch/arm/mach-s5pv210/setup-fimc0.o arch/arm/mach-s5pv210/setup-fimc1.o arch/arm/mach-s5pv210/setup-fimc2.o arch/arm/mach-s5pv210/setup-csis.o arch/arm/mach-s5pv210/cpuidle.o arch/arm/mach-s5pv210/idle2.o
| dalinaum/studyak | arch/arm/mach-s5pv210/.built-in.o.cmd | bat | gpl-2.0 | 807 |
@echo off
rem Obtiene la lista de argumentos de la linea de comandos
set ARGS=%1 %2 %3 %4 %5 %6 %7 %8 %9
if not "%OS%"=="Windows_NT" goto Win9x
set ARGS=%*
goto endif
:Win9x
shift
if "%9"=="" goto endif
set ARGS=%ARGS% %9
goto Win9x
:endif
set JVM=%JAVA_HOME%\bin\java %JAVA_RUN_OPTS%
%JVM% es.tid.corba.TIDNotif.tools.ProxyPullSupplier %ARGS%
set ARGS=
set JVM=
| AlvaroVega/TIDNotifJ | tools/TIDNotif/ProxyPullSupplier.bat | bat | gpl-2.0 | 373 |
cd %~dp0
python potd.py --site ng --no-check
pause | raffam/natgeo-wallpaper | potd_ng.bat | bat | gpl-3.0 | 50 |
@echo off
rem This file is part of javascript-kata.
rem
rem javascript-kata 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 javascript-kata 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 javascript-kata. If not, see <http://www.gnu.org/licenses/>.
jshint --verbose .
| hightechict/javascript-kata | check.bat | bat | gpl-3.0 | 761 |
@set PATH=%PATH%;c:\ChibiStudio\tools\openocd\bin\
@REM -d 3
openocd.exe -f scripts\board\stm32f4discovery.cfg
@pause | naniBox/kuroBox | openOCD.bat | bat | gpl-3.0 | 120 |
@echo off
setlocal
set TOOLS=..\..\..\Tools
set PATH=%TOOLS%\zx;%PATH%
set ZXBINDIR=%TOOLS%\cpm\bin\
set ZXLIBDIR=%TOOLS%\cpm\lib\
set ZXINCDIR=%TOOLS%\cpm\include\
zx mac xmdm125
zx slr180 -xmhb/HF
zx mload25 XM=xmdm125,xmhb
rem set PROMPT=[Build] %PROMPT%
rem %comspec%
move /Y XM.com ..
| pbetti/ZDS | software/RomWBW/Source/Apps/XM125/Build.cmd | bat | gpl-3.0 | 315 |
KEY=$1
ALLFACIC=$2
HLDG=$3
TITLE=$4
TAG_RESUMIDO=$5
THIS_CISIS=$6
THIS_PATH=$7
MY_TMP_PATH=$8/geraCompactado
DEBUG=$9
LOG_FILE=$8/geraCompactado_logs/$KEY.log
TAG_ID=30
TAG_TIME=90
PROC_ID=`date +%Y%m%d%H%M%S`
TIME_START=`date +%Y%m%d%H%M%S%N`
SEP=_
THIS_PROC_TMP_PATH=$MY_TMP_PATH/$KEY/$PROC_ID
PROC_FILE=$THIS_PROC_TMP_PATH/proc.prc
PROC_FILE_CHECK=$THIS_PROC_TMP_PATH/check.proc.prc
DO_TEMP_HLDG=$8/$KEY.temp.txt
if [ -d $THIS_PROC_TMP_PATH ]
then
rm -rf $THIS_PROC_TMP_PATH
fi
mkdir -p $THIS_PROC_TMP_PATH
mkdir -p $8/geraCompactado_logs
chmod -R 775 $THIS_PATH/lin/*.bat
$THIS_PATH/lin/registerTime.bat $KEY generateForJournal_inicio
echo $TIME_START > $LOG_FILE
######################################
# Create or update record of HLDG.
#
$THIS_PATH/lin/hldg_db.bat $THIS_CISIS $TITLE $KEY $TAG_RESUMIDO $HLDG $LOG_FILE $THIS_PATH $THIS_PROC_TMP_PATH
######################################
# Classify the records from FACIC according to regular or special issues (REG x SPEC).
##
echo Classify the records from FACIC >> $LOG_FILE
# cp $THIS_PATH/empty.txt $THIS_PROC_TMP_PATH/REG.txt
# cp $THIS_PATH/empty.txt $THIS_PROC_TMP_PATH/SPEC.txt
# $THIS_CISIS/mx $ALLFACIC btell=0 "$KEY=$" lw=99999 "proc='d920a920{',s('000000000000000000000000000000',v920),'{'" "proc='d920a920{',mid(v920,size(v920)-30+1,30),'{'" "pft='echo \"',v920,'|',v911,'|',v912,'|',v913,'|',v914,'\">> $THIS_PROC_TMP_PATH/',if s(mpu,v913,mpl):'S' or s(mpu,v913,mpl):'P' or s(mpu,v913,mpl):'NE' or s(mpu,v913,mpl):'IN' or s(mpu,v913,mpl):'AN' then 'SPEC' else 'REG' fi,'.txt'/" now > $THIS_PROC_TMP_PATH/classify_facic.bat
# $THIS_PATH/lin/registerTime.bat $KEY generateForJournal_classifyRecords_execute
# chmod 775 $THIS_PROC_TMP_PATH/classify_facic.bat
# echo Executing $THIS_PROC_TMP_PATH/classify_facic.bat >> $LOG_FILE
# cat $THIS_PROC_TMP_PATH/classify_facic.bat >> $LOG_FILE
# $THIS_PROC_TMP_PATH/classify_facic.bat
if [ -f $DO_TEMP_HLDG ]
then
cat $DO_TEMP_HLDG | sort > $THIS_PROC_TMP_PATH/ORD.txt
else
$THIS_PATH/lin/registerTime.bat $KEY generateForJournal_classifyRecords_generate
$THIS_CISIS/mx $ALLFACIC btell=0 "$KEY=$" lw=99999 "proc='d920a920{',s('000000000000000000000000000000',v920),'{'" "proc='d920a920{',mid(v920,size(v920)-30+1,30),'{'" "pft=if instr(':PT:S:NE:BI:IN:AN:',s(':',mpl,v916,mpu,':'))>0 or size(v916)>0 then 'S' else 'R' fi,replace(s(v920,'|',v911,'|',v912,'|',v913,'|',v914,'|',if instr(':PT:S:NE:BI:IN:AN:',s(':',v916,':'))>0 then v916 else '' fi,'|',v910),'| |','||')/" now | sort > $THIS_PROC_TMP_PATH/ORD.txt
fi
######################################
# Generate the proc which will create the resumed form
##
cp $THIS_PATH/empty.txt $PROC_FILE_CHECK
cp $THIS_PATH/empty.txt $PROC_FILE
$THIS_PATH/lin/generateForFacic.bat $THIS_CISIS $THIS_PROC_TMP_PATH/ORD $THIS_PATH $PROC_FILE $LOG_FILE $TAG_RESUMIDO sep $PROC_FILE_CHECK $DEBUG
######################################
# Apply the proc
##
TIME_END=`date +%Y%m%d%H%M%S%N`
$THIS_PATH/lin/registerTime.bat $KEY generateForJournal_update_hldg
if [ -f $DO_TEMP_HLDG ]
then
mv $PROC_FILE $DO_TEMP_HLDG.result
rm $DO_TEMP_HLDG
else
$THIS_CISIS/mx $HLDG btell=0 "tit=$KEY" "proc='d*','a10{',v10,'{'," "proc='a$TAG_ID{$KEY{a$TAG_TIME{^s$TIME_START^e$TIME_END{'" "proc='a$TAG_TIME{^d',f(val(s(v$TAG_TIME^e*11))-val(s(v$TAG_TIME^s*11)),1,0),'{'" "proc=@$PROC_FILE" "proc=@$PROC_FILE_CHECK" copy=$HLDG now -all
fi
$THIS_PATH/lin/registerTime.bat $KEY generateForJournal_update_hldg_fim
echo $TIME_END >> $LOG_FILE
if [ "@$DEBUG"=="@yes" ]
then
echo
else
rm -rf $THIS_PROC_TMP_PATH
fi
$THIS_PATH/lin/registerTime.bat $KEY generateForJournal_fim
| SuporteCTRL/suitesaber | htdocs/secs-web/hldgModule/lin/generateForJournal.bat | bat | gpl-3.0 | 3,758 |
R.exe --slave --vanilla --args "%CD%/in2" "%CD%/out2" < "../extremeRankingAnalysis.R"
:: ${PWD} | pawelrychly/ror-extension | services/extremeRankingAnalysis-PutPoznan/tests/launch.test2.bat | bat | gpl-3.0 | 95 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=HODLR
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
| sivaramambikasaran/Fast_Multi_Component_Diffusion | docs/make.bat | bat | mpl-2.0 | 813 |
@echo off
REM -------------------------------------------------------------------------
REM See the NOTICE file distributed with this work for additional
REM information regarding copyright ownership.
REM
REM This is free software; you can redistribute it and/or modify it
REM under the terms of the GNU Lesser General Public License as
REM published by the Free Software Foundation; either version 2.1 of
REM the License, or (at your option) any later version.
REM
REM This software 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 GNU
REM Lesser General Public License for more details.
REM
REM You should have received a copy of the GNU Lesser General Public
REM License along with this software; if not, write to the Free
REM Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
REM 02110-1301 USA, or see the FSF site: http://www.fsf.org.
REM -------------------------------------------------------------------------
REM -------------------------------------------------------------------------
REM Optional ENV vars
REM -----------------
REM XWIKI_OPTS - parameters passed to the Java VM when running Jetty
REM e.g. to increase the memory allocated to the JVM to 1GB, use
REM set XWIKI_OPTS=-Xmx1024m
REM JETTY_OPTS - optional parameters passed to Jetty's start.jar. For example to list the configuration that will
REM execute, try setting it to "--list-config". See
REM http://www.eclipse.org/jetty/documentation/9.2.3.v20140905/start-jar.html for more options.
REM JETTY_PORT - the port on which to start Jetty, 8080 by default
REM JETTY_STOP_PORT - the port on which Jetty listens for a Stop command, 8079 by default
REM -------------------------------------------------------------------------
setlocal EnableDelayedExpansion
if not defined XWIKI_OPTS set XWIKI_OPTS=-Xmx1024m
REM The port on which to start Jetty can be defined in an enviroment variable called JETTY_PORT
if not defined JETTY_PORT (
REM Alternatively, it can be passed to this script as the first argument
set JETTY_PORT=%1
if not defined JETTY_PORT (
set JETTY_PORT=8080
)
)
REM The port on which Jetty listens for a Stop command can be defined in an enviroment variable called JETTY_STOP_PORT
if not defined JETTY_STOP_PORT (
REM Alternatively, it can be passed to this script as the second argument
set JETTY_STOP_PORT=%2
if not defined JETTY_STOP_PORT (
set JETTY_STOP_PORT=8079
)
)
echo Starting Jetty on port %JETTY_PORT%, please wait...
REM Discover java.exe from the latest properly installed JRE
for /f tokens^=2^ delims^=^" %%i in ('reg query HKEY_CLASSES_ROOT\jarfile\shell\open\command /ve') do set JAVAW_PATH=%%i
set JAVA_PATH=%JAVAW_PATH:\javaw.exe=%\java.exe
if "%JAVA_PATH%"=="" set JAVA_PATH=java
REM Handle the case when JAVA_HOME is set by the user
if not "%JAVA_HOME%" == "" set JAVA_PATH=%JAVA_HOME%\bin\java.exe
REM Location where XWiki stores generated data and where database files are.
set XWIKI_DATA_DIR=${xwikiDataDir}
set XWIKI_OPTS=%XWIKI_OPTS% -Dxwiki.data.dir="%XWIKI_DATA_DIR%"
REM Catch any Out Of Memory to make easier to analyze it
set XWIKI_OPTS=%XWIKI_OPTS% -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath="%XWIKI_DATA_DIR%"
REM Ensure the data directory exists so that XWiki can use it for storing permanent data.
if not exist "%XWIKI_DATA_DIR%" mkdir "%XWIKI_DATA_DIR%"
REM Ensure the logs directory exists as otherwise Jetty reports an error
if not exist "%XWIKI_DATA_DIR%\logs" mkdir "%XWIKI_DATA_DIR%\logs"
REM Set up the Jetty Base directory (used for custom Jetty configuration) to point to the Data Directory
REM Also created some Jetty directorie that Jetty would otherwise create at first startup. We do this to avoid
REM cryptic messages in the logs such as: "MKDIR: ${jetty.base}/lib"
set JETTY_BASE=%XWIKI_DATA_DIR%\jetty
if not exist "%JETTY_BASE%" mkdir "%JETTY_BASE%"
if not exist "%JETTY_BASE%\lib" mkdir "%JETTY_BASE%\lib"
if not exist "%JETTY_BASE%\lib\ext" mkdir "%JETTY_BASE%\lib\ext"
if not exist "%JETTY_BASE%\logs" mkdir "%JETTY_BASE%\logs"
if not exist "%JETTY_BASE%\resources" mkdir "%JETTY_BASE%\resources"
if not exist "%JETTY_BASE%\webapps" mkdir "%JETTY_BASE%\webapps"
REM Specify Jetty's home and base directories
set JETTY_HOME=jetty
set XWIKI_OPTS=%XWIKI_OPTS% -Djetty.home="%JETTY_HOME%" -Djetty.base="%JETTY_BASE%"
REM Specify the encoding to use
set XWIKI_OPTS=%XWIKI_OPTS% -Dfile.encoding=UTF8
REM Specify port on which HTTP requests will be handled
set JETTY_OPTS=%JETTY_OPTS% jetty.port=%JETTY_PORT%
REM In order to print a nice friendly message to the user when Jetty has finished loading the XWiki webapp, we pass
REM the port we use as a System Property
set XWIKI_OPTS=%XWIKI_OPTS% -Djetty.port=%JETTY_PORT%
REM Specify port and key to stop a running Jetty instance
set JETTY_OPTS=%JETTY_OPTS% STOP.KEY=xwiki STOP.PORT=%JETTY_STOP_PORT%
"%JAVA_PATH%" %XWIKI_OPTS% %3 %4 %5 %6 %7 %8 %9 -jar "%JETTY_HOME%/start.jar" --module=xwiki %JETTY_OPTS%
REM Pause so that the command window used to run this script doesn't close automatically in case of problem
REM (like when the JDK/JRE is not installed)
PAUSE | pbondoer/xwiki-platform | xwiki-platform-tools/xwiki-platform-tool-jetty/xwiki-platform-tool-jetty-resources/src/main/resources/start_xwiki.bat | bat | lgpl-2.1 | 5,279 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\JargonFile.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\JargonFile.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
| ghoulmann/rest-jargon-file | jargon-4.4.7-sphinx/make.bat | bat | unlicense | 6,718 |
@echo off
rem The test for step 15 is a little more complicated than the tests for previous steps.
rem The reason for this is that 15.com cannot compile itself because the function argument
rem order in the 15 ABI is the opposite from that in the 14 ABI.
rem So we use 15.com to compile an intermediate compiler (15t.com) which is very similar to
rem 15.com but which uses the opposite argument order. This is then tested to make sure it
rem can compile itself.
if not exist 15.com call build15.bat
echo Testing step 15
15 15util.15 15lex.15 15parse.15 15symbol.15 15expr.15 15string.15 15malloc.15 15t.com
15t 15util.15 15lex.15 15parse.15 15symbol.15 15expr.15 15string.15 15malloc.15 15s.com
fc /b 15t.com 15s.com >nul
if errorlevel 1 goto :fail
del 15t.com
del 15s.com
echo Step 15 completed successfully.
goto :end
:fail
echo Step 15 failed!
:end
| reenigne/reenigne | Bootstrap/test15.bat | bat | unlicense | 857 |
java -cp lib/pokerserver.jar ca.ualberta.cs.poker.free.tournament.Forge winlocal.prf generateCards
java -cp lib/pokerserver.jar ca.ualberta.cs.poker.free.tournament.Forge winlocal.prf runTournament
| dk00/old-stuff | csie/08poker/run.bat | bat | unlicense | 199 |
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one or more
@REM contributor license agreements. See the NOTICE file distributed with
@REM this work for additional information regarding copyright ownership.
@REM The ASF licenses this file to You under the Apache License, Version 2.0
@REM (the "License"); you may not use this file except in compliance with
@REM the License. You may obtain a copy of the License at
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM ----------------------------------------------------------------------------
@REM
@echo off
set ERROR_CODE=0
:init
@REM Decide how to startup depending on the version of windows
@REM -- Win98ME
if NOT "%OS%"=="Windows_NT" goto Win9xArg
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" @setlocal
@REM -- 4NT shell
if "%eval[2+2]" == "4" goto 4NTArgs
@REM -- Regular WinNT shell
set CMD_LINE_ARGS=%*
goto WinNTGetScriptDir
@REM The 4NT Shell from jp software
:4NTArgs
set CMD_LINE_ARGS=%$
goto WinNTGetScriptDir
:Win9xArg
@REM Slurp the command line arguments. This loop allows for an unlimited number
@REM of arguments (up to the command line limit, anyway).
set CMD_LINE_ARGS=
:Win9xApp
if %1a==a goto Win9xGetScriptDir
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto Win9xApp
:Win9xGetScriptDir
set SAVEDIR=%CD%
%0\
cd %0\..\..
set BASEDIR=%CD%
cd %SAVEDIR%
set SAVE_DIR=
goto repoSetup
:WinNTGetScriptDir
set BASEDIR=%~dp0\..
:repoSetup
if "%JAVACMD%"=="" set JAVACMD=java
if "%REPO%"=="" set REPO=%BASEDIR%\lib
set EXTRA_JVM_ARGUMENTS=-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit
goto endInit
@REM Reaching here means variables are defined and arguments have been captured
:endInit
%JAVACMD% %JAVA_OPTS% %EXTRA_JVM_ARGUMENTS% -jar "$REPO"/jetty-runner-${jetty.runner.version}.jar --path /${project.artifactId} "$REPO"/${project.build.finalName}.${project.packaging}
if ERRORLEVEL 1 goto error
goto end
:error
if "%OS%"=="Windows_NT" @endlocal
set ERROR_CODE=1
:end
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" goto endNT
@REM For old DOS remove the set variables from ENV - we assume they were not set
@REM before we started - at least we don't leave any baggage around
set CMD_LINE_ARGS=
goto postExec
:endNT
@endlocal
:postExec
if "%FORCE_EXIT_ON_ERROR%" == "on" (
if %ERROR_CODE% NEQ 0 exit %ERROR_CODE%
)
exit /B %ERROR_CODE%
| kidaa/any23 | service/src/main/bin/any23server.bat | bat | apache-2.0 | 2,851 |
REM this script must set QTDIR32 path to the root of the Qt folder. Example:
REM set QTDIR32=k:\Qt\5\5.4\msvc2013_opengl\
call set_qt_paths.bat
set VS_TOOLS_DIR=%VS140COMNTOOLS%
SETLOCAL
RMDIR /S /Q binaries\
call "%VS_TOOLS_DIR%..\..\VC\vcvarsall.bat" amd64
pushd ..\
%QTDIR64%\bin\qmake.exe -tp vc -r
popd
msbuild ..\ShaderPlayground.sln /t:Build /p:Configuration=Release;PlatformToolset=v140
xcopy /R /Y ..\bin\release\x64\*.exe binaries\
xcopy /R /Y "3rdparty binaries"\Win\64\* binaries\
SETLOCAL
SET PATH=%QTDIR64%\bin\
FOR %%p IN (binaries\*.exe) DO %QTDIR64%\bin\windeployqt.exe --dir binaries\Qt --force --release --no-compiler-runtime --no-angle --no-translations %%p
ENDLOCAL
xcopy /R /Y %SystemRoot%\System32\msvcp140.dll binaries\msvcr\
xcopy /R /Y %SystemRoot%\System32\vcruntime140.dll binaries\msvcr\
xcopy /R /Y "%programfiles(x86)%\Windows Kits\10\Redist\ucrt\DLLs\x64\*" binaries\msvcr\
del binaries\Qt\opengl*.*
ENDLOCAL
"c:\Program Files (x86)\Inno Setup 5\iscc" setup.iss | VioletGiraffe/ShaderPlayground | installer/create_installer.bat | bat | apache-2.0 | 1,039 |
# testing
cf create-service redis 100 redis-chatter
| iicsydney601/f2-chatter | create_service.bat | bat | apache-2.0 | 52 |
set "SCIARETO_HOME=%cd%"
set "LOG_FILE=%SCIARETO_HOME%/console.log"
rem uncomment the line below if graphics works slowly
rem set "JAVA_EXTRA_GFX_FLAGS=-Dsun.java2d.opengl=true"
set "JAVA_FLAGS=-client -XX:+IgnoreUnrecognizedVMOptions -Xmx2G --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED -Dsun.java2d.dpiaware=true -Dswing.aatext=true -Dawt.useSystemAAFontSettings=on"
set "JAVA_RUN=java.exe"
echo %%JAVA_RUN%%=%JAVA_RUN% > %LOG_FILE%
echo ------JAVA_VERSION------ >> %LOG_FILE%
%JAVA_RUN% -version >> %LOG_FILE% 2>>&1
echo ------------------------ >> %LOG_FILE%
"%SCIARETO_HOME%\jre\bin\%JAVA_RUN%" %JAVA_FLAGS% %JAVA_EXTRA_GFX_FLAGS% -jar "%SCIARETO_HOME%\scia-reto.jar" %* >> %LOG_FILE% 2>>&1
| raydac/netbeans-mmd-plugin | mind-map/scia-reto/src/assembly/windows/start_log.cmd | bat | apache-2.0 | 787 |
@echo off
rem Double-clickable version of quick_test_suite.sh on Windows/Cygwin
rem Path to Cygwin is hard-coded
PATH=%PATH%;c:\Applis\cygwin\bin
sh ./quick_test_suite.sh
pause
| hlzz/dotfiles | graphics/cgal/Surface_mesh_parameterization/examples/Surface_mesh_parameterization/quick_test_suite.bat | bat | bsd-3-clause | 181 |
dotnet run null_terminator.png
| Sakrac/x65 | samples/apple2gs/gsos/bin/png2tiles/run.bat | bat | mit | 31 |
@ECHO OFF
java -jar %~dp0laser-scanner-1.0.jar
| antego/Java-Laser-Scanner | scripts/LaserScanner.bat | bat | mit | 47 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\mod-collectd.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\mod-collectd.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
| shinken-monitoring/mod-collectd | doc-compile/make.bat | bat | agpl-3.0 | 6,722 |
@echo OFF
SETLOCAL
echo "===== calling WaitSet for sac ====="
set EXAMPLE_LANG=sac
call %FUNCTIONS% :runWaitSet
call %FUNCTIONS% :waitsetCheckResults >> run.log
| SanderMertens/opensplice | build/scripts/overnight/example_automation_scripts/examples/dcps/WaitSet/c/standalone/RUN.bat | bat | gpl-3.0 | 181 |
::@echo off
del log.txt
for %%i in (Elementary, Ambiguous, Cycles, Summator, Summator2) do (
echo. >> log.txt
echo %%i >> log.txt
..\..\Bin\Release\v40\YC.YaccConstructor.exe -i %%i.yrd ^
-g "RNGLRGenerator -pos int -token int -module RNGLR.Parse%%i -translate false -namespace %%i -light true -abstract true -o %%i.yrd.fs" >> log.txt
)
| fedorovr/YaccConstructor | src/OtherSPPF.Test/gen.cmd | bat | apache-2.0 | 371 |
curl -u user:password -H "Accept: application/json" -H "Content-type: application/json" -d@%1 localhost:8080/sla-service/providers -X POST | Atos-FiwareOps/sla-framework | sla-core/samples/providerCreateJSON.bat | bat | apache-2.0 | 138 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 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\Ashes.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Ashes.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
| jvanasco/ashes | docs/make.bat | bat | bsd-3-clause | 7,242 |
RESTART 80000
FINISH
| jmysona/testing2 | examples/dihedral/N8/md/restart.cmd | bat | gpl-3.0 | 31 |
@ECHO OFF
PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0run.ps1' default-build %*; exit $LASTEXITCODE"
| wangkanai/Responsiveness | build.cmd | bat | gpl-3.0 | 260 |
python %~dp0intercept-build %*
| cd80/UtilizedLLVM | tools/clang/tools/scan-build-py/bin/intercept-build.bat | bat | unlicense | 32 |
@echo off
setlocal
rem Copyright (c) 1999, 2006 Tanuki Software Inc.
rem
rem Java Service Wrapper general NT service start script
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem
rem Find the application home.
rem
rem %~dp0 is location of current script under NT
set _REALPATH=%~dp0
rem Decide on the wrapper binary.
set _WRAPPER_BASE=wrapper
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%.exe
if exist "%_WRAPPER_EXE%" goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
echo %_REALPATH%%_WRAPPER_BASE%.exe
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
set _WRAPPER_CONF="%~f1"
if not %_WRAPPER_CONF%=="" goto startup
set _WRAPPER_CONF="%_REALPATH%..\..\conf\wrapper.conf"
rem
rem Start the Wrapper NT service.
rem
:startup
"%_WRAPPER_EXE%" -t %_WRAPPER_CONF%
if not errorlevel 1 goto :eof
pause
| tomaslestyan/sonar_measurements_framework | sonarqube-6.3.1/bin/windows-x86-64/StartNTService.bat | bat | mit | 1,213 |
@echo off
del MSBuildTasks /q /f /s
rd MSBuildTasks /S /Q
NuGet.exe install MSBuildTasks -OutputDirectory .\ -ExcludeVersion -NonInteractive
del xunit.runners /q /f /s
rd xunit.runners /S /Q
NuGet.exe install xunit.runners -OutputDirectory .\ -ExcludeVersion -NonInteractive | gs1021/EntityFramework.Extended | Tools/update.cmd | bat | bsd-3-clause | 277 |
@ECHO OFF
IF EXIST "%APP_PATH%\system\webserver" rmdir "%APP_PATH%\system\webserver" /S /Q
IF EXIST "%APP_PATH%\system\airplay" rmdir "%APP_PATH%\system\airplay" /S /Q
rem create directories
IF NOT EXIST "%APP_PATH%\system\players\paplayer" md "%APP_PATH%\system\players\paplayer"
IF NOT EXIST "%APP_PATH%\project\VS2010Express\Application\Debug" md "%APP_PATH%\project\VS2010Express\Application\Debug"
IF NOT EXIST "%APP_PATH%\system\webserver" md "%APP_PATH%\system\webserver"
IF NOT EXIST "%APP_PATH%\system\airplay" md "%APP_PATH%\system\airplay"
IF NOT EXIST "%APP_PATH%\project\Win32BuildSetup\dependencies" md "%APP_PATH%\project\Win32BuildSetup\dependencies"
IF NOT EXIST "%APP_PATH%\system\cdrip" md "%APP_PATH%\system\cdrip" | dburner/zidoo-kodi-14.2 | project/BuildDependencies/scripts/1_copy_deps_d.bat | bat | gpl-2.0 | 736 |
/* ============================================================================ */
/* Copyright (c) 2013, Texas Instruments Incorporated */
/* All rights reserved. */
/* */
/* Redistribution and use in source and binary forms, with or without */
/* modification, are permitted provided that the following conditions */
/* are met: */
/* */
/* * Redistributions of source code must retain the above copyright */
/* notice, this list of conditions and the following disclaimer. */
/* */
/* * Redistributions in binary form must reproduce the above copyright */
/* notice, this list of conditions and the following disclaimer in the */
/* documentation and/or other materials provided with the distribution. */
/* */
/* * Neither the name of Texas Instruments Incorporated nor the names of */
/* its contributors may be used to endorse or promote products derived */
/* from this software without specific prior written permission. */
/* */
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" */
/* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, */
/* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
/* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR */
/* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */
/* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, */
/* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; */
/* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, */
/* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR */
/* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */
/* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
/* ============================================================================ */
/******************************************************************************/
/* lnk_msp430fr5969.cmd - LINKER COMMAND FILE FOR LINKING MSP430FR5969 PROGRAMS */
/* */
/* Usage: lnk430 <obj files...> -o <out file> -m <map file> lnk.cmd */
/* cl430 <src files...> -z -o <out file> -m <map file> lnk.cmd */
/* */
/*----------------------------------------------------------------------------*/
/* These linker options are for command line linking only. For IDE linking, */
/* you should set your linker options in Project Properties */
/* -c LINK USING C CONVENTIONS */
/* -stack 0x0100 SOFTWARE STACK SIZE */
/* -heap 0x0100 HEAP AREA SIZE */
/* */
/*----------------------------------------------------------------------------*/
/****************************************************************************/
/* SPECIFY THE SYSTEM MEMORY MAP */
/****************************************************************************/
MEMORY
{
SFR : origin = 0x0000, length = 0x0010
PERIPHERALS_8BIT : origin = 0x0010, length = 0x00F0
PERIPHERALS_16BIT : origin = 0x0100, length = 0x0100
RAM : origin = 0x1C00, length = 0x0800
INFOA : origin = 0x1980, length = 0x0080
INFOB : origin = 0x1900, length = 0x0080
INFOC : origin = 0x1880, length = 0x0080
INFOD : origin = 0x1800, length = 0x0080
FRAM : origin = 0x4400, length = 0xBB80
FRAM2 : origin = 0x10000,length = 0x4000
SIGNATURE : origin = 0xFF80, length = 0x0010
INT00 : origin = 0xFF90, length = 0x0002
INT01 : origin = 0xFF92, length = 0x0002
INT02 : origin = 0xFF94, length = 0x0002
INT03 : origin = 0xFF96, length = 0x0002
INT04 : origin = 0xFF98, length = 0x0002
INT05 : origin = 0xFF9A, length = 0x0002
INT06 : origin = 0xFF9C, length = 0x0002
INT07 : origin = 0xFF9E, length = 0x0002
INT08 : origin = 0xFFA0, length = 0x0002
INT09 : origin = 0xFFA2, length = 0x0002
INT10 : origin = 0xFFA4, length = 0x0002
INT11 : origin = 0xFFA6, length = 0x0002
INT12 : origin = 0xFFA8, length = 0x0002
INT13 : origin = 0xFFAA, length = 0x0002
INT14 : origin = 0xFFAC, length = 0x0002
INT15 : origin = 0xFFAE, length = 0x0002
INT16 : origin = 0xFFB0, length = 0x0002
INT17 : origin = 0xFFB2, length = 0x0002
INT18 : origin = 0xFFB4, length = 0x0002
INT19 : origin = 0xFFB6, length = 0x0002
INT20 : origin = 0xFFB8, length = 0x0002
INT21 : origin = 0xFFBA, length = 0x0002
INT22 : origin = 0xFFBC, length = 0x0002
INT23 : origin = 0xFFBE, length = 0x0002
INT24 : origin = 0xFFC0, length = 0x0002
INT25 : origin = 0xFFC2, length = 0x0002
INT26 : origin = 0xFFC4, length = 0x0002
INT27 : origin = 0xFFC6, length = 0x0002
INT28 : origin = 0xFFC8, length = 0x0002
INT29 : origin = 0xFFCA, length = 0x0002
INT30 : origin = 0xFFCC, length = 0x0002
INT31 : origin = 0xFFCE, length = 0x0002
INT32 : origin = 0xFFD0, length = 0x0002
INT33 : origin = 0xFFD2, length = 0x0002
INT34 : origin = 0xFFD4, length = 0x0002
INT35 : origin = 0xFFD6, length = 0x0002
INT36 : origin = 0xFFD8, length = 0x0002
INT37 : origin = 0xFFDA, length = 0x0002
INT38 : origin = 0xFFDC, length = 0x0002
INT39 : origin = 0xFFDE, length = 0x0002
INT40 : origin = 0xFFE0, length = 0x0002
INT41 : origin = 0xFFE2, length = 0x0002
INT42 : origin = 0xFFE4, length = 0x0002
INT43 : origin = 0xFFE6, length = 0x0002
INT44 : origin = 0xFFE8, length = 0x0002
INT45 : origin = 0xFFEA, length = 0x0002
INT46 : origin = 0xFFEC, length = 0x0002
INT47 : origin = 0xFFEE, length = 0x0002
INT48 : origin = 0xFFF0, length = 0x0002
INT49 : origin = 0xFFF2, length = 0x0002
INT50 : origin = 0xFFF4, length = 0x0002
INT51 : origin = 0xFFF6, length = 0x0002
INT52 : origin = 0xFFF8, length = 0x0002
INT53 : origin = 0xFFFA, length = 0x0002
INT54 : origin = 0xFFFC, length = 0x0002
RESET : origin = 0xFFFE, length = 0x0002
}
/****************************************************************************/
/* SPECIFY THE SECTIONS ALLOCATION INTO MEMORY */
/****************************************************************************/
SECTIONS
{
GROUP(ALL_FRAM)
{
GROUP(READ_WRITE_MEMORY): ALIGN(0x0200) RUN_START(fram_rw_start)
{
.cio : {} /* C I/O BUFFER */
.sysmem : {} /* DYNAMIC MEMORY ALLOCATION AREA */
}
GROUP(READ_ONLY_MEMORY): ALIGN(0x0200) RUN_START(fram_ro_start)
{
.cinit : {} /* INITIALIZATION TABLES */
.pinit : {} /* C++ CONSTRUCTOR TABLES */
.init_array : {} /* C++ CONSTRUCTOR TABLES */
.mspabi.exidx : {} /* C++ CONSTRUCTOR TABLES */
.mspabi.extab : {} /* C++ CONSTRUCTOR TABLES */
.const : {} /* CONSTANT DATA */
}
GROUP(EXECUTABLE_MEMORY): ALIGN(0x0200) RUN_START(fram_rx_start)
{
.text : {} /* CODE */
}
} > FRAM | FRAM2
.bss : {} > RAM /* GLOBAL & STATIC VARS */
.data : {} > RAM /* GLOBAL & STATIC VARS */
.stack : {} > RAM (HIGH) /* SOFTWARE SYSTEM STACK */
.infoA : {} > INFOA /* MSP430 INFO FRAM MEMORY SEGMENTS */
.infoB : {} > INFOB
.infoC : {} > INFOC
.infoD : {} > INFOD
/* MSP430 INTERRUPT VECTORS */
.int00 : {} > INT00
.int01 : {} > INT01
.int02 : {} > INT02
.int03 : {} > INT03
.int04 : {} > INT04
.int05 : {} > INT05
.int06 : {} > INT06
.int07 : {} > INT07
.int08 : {} > INT08
.int09 : {} > INT09
.int10 : {} > INT10
.int11 : {} > INT11
.int12 : {} > INT12
.int13 : {} > INT13
.int14 : {} > INT14
.int15 : {} > INT15
.int16 : {} > INT16
.int17 : {} > INT17
.int18 : {} > INT18
.int19 : {} > INT19
.int20 : {} > INT20
.int21 : {} > INT21
.int22 : {} > INT22
.int23 : {} > INT23
.int24 : {} > INT24
.int25 : {} > INT25
.int26 : {} > INT26
.int27 : {} > INT27
.int28 : {} > INT28
.int29 : {} > INT29
AES256 : { * ( .int30 ) } > INT30 type = VECT_INIT
RTC : { * ( .int31 ) } > INT31 type = VECT_INIT
PORT4 : { * ( .int32 ) } > INT32 type = VECT_INIT
PORT3 : { * ( .int33 ) } > INT33 type = VECT_INIT
TIMER3_A1 : { * ( .int34 ) } > INT34 type = VECT_INIT
TIMER3_A0 : { * ( .int35 ) } > INT35 type = VECT_INIT
PORT2 : { * ( .int36 ) } > INT36 type = VECT_INIT
TIMER2_A1 : { * ( .int37 ) } > INT37 type = VECT_INIT
TIMER2_A0 : { * ( .int38 ) } > INT38 type = VECT_INIT
PORT1 : { * ( .int39 ) } > INT39 type = VECT_INIT
TIMER1_A1 : { * ( .int40 ) } > INT40 type = VECT_INIT
TIMER1_A0 : { * ( .int41 ) } > INT41 type = VECT_INIT
DMA : { * ( .int42 ) } > INT42 type = VECT_INIT
USCI_A1 : { * ( .int43 ) } > INT43 type = VECT_INIT
TIMER0_A1 : { * ( .int44 ) } > INT44 type = VECT_INIT
TIMER0_A0 : { * ( .int45 ) } > INT45 type = VECT_INIT
ADC12 : { * ( .int46 ) } > INT46 type = VECT_INIT
USCI_B0 : { * ( .int47 ) } > INT47 type = VECT_INIT
USCI_A0 : { * ( .int48 ) } > INT48 type = VECT_INIT
WDT : { * ( .int49 ) } > INT49 type = VECT_INIT
TIMER0_B1 : { * ( .int50 ) } > INT50 type = VECT_INIT
TIMER0_B0 : { * ( .int51 ) } > INT51 type = VECT_INIT
COMP_E : { * ( .int52 ) } > INT52 type = VECT_INIT
UNMI : { * ( .int53 ) } > INT53 type = VECT_INIT
SYSNMI : { * ( .int54 ) } > INT54 type = VECT_INIT
.reset : {} > RESET /* MSP430 RESET VECTOR */
}
/****************************************************************************/
/* MPU SPECIFIC MEMORY SEGMENT DEFINITONS */
/****************************************************************************/
/*
mpusb1 = (fram_ro_start + 0x4000 - 0xFFFF - 1) * 32 / 0x4000 - 1 + 1; // Increment by 1 for Memory Size of x.5
mpusb2 = (fram_rx_start + 0x4000 - 0xFFFF - 1) * 32 / 0x4000 - 1 + 1; // Increment by 1 for Memory Size of x.5
__mpuseg = (mpusb2 << 8) | mpusb1;
__mpusam = 0x7513;
*/
/****************************************************************************/
/* INCLUDE PERIPHERALS MEMORY MAP */
/****************************************************************************/
-l msp430fr5969.cmd
| amjadmajid/stork | CRFID_firmware/STORKfull/run-once/lnk_msp430fr5969.cmd | bat | bsd-3-clause | 13,686 |
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
if not "%BASE%" == "" ( set BASE=%BASE:\=/% )
if not "%CMD%" == "" ( set CMD=%CMD:\=/% )
:: trim spaces
for /f "tokens=1*" %%A in ("%BASE%") do SET BASE=%%A
for /f "tokens=1*" %%A in ("%CMD%") do SET CMD=%%A
SET ERRORLEV=0
if "%1"=="-e" (
SET ERRORLEV=1
SHIFT /0
)
:: handle args
SET ARGS=[
for /f "tokens=1,2,3,4,5,6 delims= " %%a in ("%*") do SET ARGS=!ARGS!'%%a','%%b','%%c','%%d','%%e','%%f'
for %%a in (",''=") do ( call set ARGS=%%ARGS:%%~a%% )
for /f "tokens=1*" %%A in ("%ARGS%") do SET ARGS=%%A
SET ARGS=%ARGS%]
set ARGS=%ARGS:\=/%
:: figure out startup path
if "%LOADPATH%" == "" ( set LOADPATH=%BASE%%1 )
:: if no LOADPATH (TODO this won't work as is because loadpath is never empty)
if "%LOADPATH%"=="" (
java -cp js.jar org.mozilla.javascript.tools.shell.Main
GOTO END
)
:: need to use forward slashes for paths
set LOADPATH=%LOADPATH:\=/%
:: invoke Rhino
java -Xmx170m -Xss1024k -cp %CP% -Dbasepath="%BASE%" -Dcmd="%CMD%" org.mozilla.javascript.tools.shell.Main -opt -1 -e _args=%ARGS% -e load('%LOADPATH%')
if "%ERRORLEV%"=="1" (
if errorlevel 1 exit 1
)
:END | akovalyov/RubyGarageTask | web/assets/js/steal/rhino/loader.bat | bat | mit | 1,132 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\python_humble_utils.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\python_humble_utils.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
| webyneter/python-humble-utils | docs/make.bat | bat | mit | 6,485 |
set TOOL_DIR=..\tools\doxygen-1.8.11.windows.bin\
set DOXYGEN=%TOOL_DIR%doxygen
call clean.bat
%DOXYGEN%
| yappy/Qol | doc/doc.bat | bat | mit | 111 |
..\.nuget\NuGet.exe pack ..\src\SimpleAmazonSQS\SimpleAmazonSQS.csproj -Prop Configuration=Release | lfreneda/SimpleAmazonSQS | publish/generate_nuget_package.bat | bat | mit | 98 |
ab.exe -n 1000 -c 30 http://localhost:7903/products
@Echo off
Echo press any key to continue...
Pause >NUL
exit
| christophla/PerformanceSandbox | Tools/ApacheBench/MongoDB.WebAPI.IIS.Products.all.bat | bat | mit | 114 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\homeasset.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\homeasset.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| mikeand/homeasset | docs/make.bat | bat | mit | 5,102 |
if not exist ..\output mkdir ..\output
@echo Building version %1
NuGet.exe pack ..\src\WebApi.Annotations.nuspec -Version %1 -Verbosity Detail -OutputDirectory ..\output
@echo Pushing WebApi.Annotations.%1.nupkg
NuGet.exe push ..\output\WebApi.Annotations.%1.nupkg %2 -Source https://resharper-plugins.jetbrains.com | The-Smallest/resharper-webapi-annotations | tools/publish.cmd | bat | mit | 316 |
@..\src\packages\Redis-64.2.8.19\redis-server.exe slave.conf
| christianacca/Cache-Abstraction | tools/redis-server slave.cmd | bat | mit | 61 |
"C:\Program Files\Mozilla Firefox\firefox.exe" http://www.google.dk/search?q=%1+euro+in+dkk | bink81/development-tools | windows/euro.bat | bat | mit | 91 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\findyour3d.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\findyour3d.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| hqpr/findyour3d | docs/make.bat | bat | mit | 5,104 |
cmd_fs/notify/fanotify/built-in.o := rm -f fs/notify/fanotify/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs fs/notify/fanotify/built-in.o
| asopov/linux-tpt-2.6.39 | fs/notify/fanotify/.built-in.o.cmd | bat | gpl-2.0 | 191 |
@echo off
cd %~dp0
SETLOCAL ENABLEEXTENSIONS
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
:copynuget
IF EXIST .nuget\nuget.exe goto restore
md .nuget
copy %CACHED_NUGET% .nuget\nuget.exe > nul
:restore
IF EXIST packages\KoreBuild goto run
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre -Source https://www.nuget.org/api/v2/;https://www.myget.org/F/aspnetvnext/
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion -Source https://www.nuget.org/api/v2/;https://www.myget.org/F/aspnetvnext/
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
CALL %USERPROFILE%\.dnx\bin\dnvm install latest -runtime CLR -arch x86 -alias default || set errorlevel=1
CALL %USERPROFILE%\.dnx\bin\dnvm install latest -runtime CoreCLR -arch x86 || set errorlevel=1
CALL %USERPROFILE%\.dnx\bin\dnvm use default -runtime CLR -x86 || set errorlevel=1
CALL dnu restore -s https://www.myget.org/F/aspnetvnext/ -f https://www.nuget.org/api/v2/ || set errorlevel=1
CALL dnu pack SimpleConfigService.AspNet5 --configuration Release || set errorlevel=1
| antonyfrancis/simple-config-service | build.cmd | bat | gpl-2.0 | 1,556 |
cmd_drivers/bluetooth/hci_uart.o := /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/bluetooth/hci_uart.o drivers/bluetooth/hci_ldisc.o drivers/bluetooth/hci_h4.o drivers/bluetooth/hci_ll.o
| DrGrip/tiamat-2.6.38-LEO-Dr_Grip | drivers/bluetooth/.hci_uart.o.cmd | bat | gpl-2.0 | 216 |
deps_config := \
test/env/Kconfig \
test/dm/Kconfig \
test/Kconfig \
lib/efi/Kconfig \
lib/rsa/Kconfig \
lib/dhry/Kconfig \
lib/Kconfig \
fs/cramfs/Kconfig \
fs/ubifs/Kconfig \
fs/jffs2/Kconfig \
fs/fat/Kconfig \
fs/reiserfs/Kconfig \
fs/ext4/Kconfig \
fs/Kconfig \
drivers/watchdog/Kconfig \
drivers/video/bridge/Kconfig \
drivers/video/Kconfig \
drivers/usb/emul/Kconfig \
drivers/usb/musb-new/Kconfig \
drivers/usb/host/Kconfig \
drivers/usb/Kconfig \
drivers/tpm/Kconfig \
drivers/timer/Kconfig \
drivers/thermal/Kconfig \
drivers/spi/Kconfig \
drivers/sound/Kconfig \
drivers/serial/Kconfig \
drivers/rtc/Kconfig \
drivers/remoteproc/Kconfig \
drivers/ram/Kconfig \
drivers/power/regulator/Kconfig \
drivers/power/pmic/Kconfig \
drivers/power/Kconfig \
drivers/pinctrl/uniphier/Kconfig \
drivers/pinctrl/Kconfig \
drivers/pcmcia/Kconfig \
drivers/pci/Kconfig \
drivers/net/Kconfig \
drivers/mtd/spi/Kconfig \
drivers/mtd/nand/Kconfig \
drivers/mtd/Kconfig \
drivers/mmc/Kconfig \
drivers/misc/Kconfig \
drivers/led/Kconfig \
drivers/input/Kconfig \
drivers/i2c/muxes/Kconfig \
drivers/i2c/Kconfig \
drivers/hwmon/Kconfig \
drivers/gpio/Kconfig \
drivers/dma/Kconfig \
drivers/dfu/Kconfig \
drivers/demo/Kconfig \
drivers/crypto/fsl/Kconfig \
drivers/crypto/Kconfig \
drivers/cpu/Kconfig \
drivers/clk/Kconfig \
drivers/block/Kconfig \
drivers/adc/Kconfig \
drivers/core/Kconfig \
drivers/Kconfig \
net/Kconfig \
dts/Kconfig \
common/Kconfig \
arch/x86/lib/efi/Kconfig \
arch/x86/cpu/queensbay/Kconfig \
arch/x86/cpu/quark/Kconfig \
arch/x86/cpu/qemu/Kconfig \
arch/x86/cpu/ivybridge/Kconfig \
arch/x86/cpu/coreboot/Kconfig \
arch/x86/cpu/baytrail/Kconfig \
board/intel/minnowmax/Kconfig \
board/intel/galileo/Kconfig \
board/intel/crownbay/Kconfig \
board/intel/bayleybay/Kconfig \
board/intel/Kconfig \
board/emulation/qemu-x86/Kconfig \
board/emulation/Kconfig \
board/coreboot/coreboot/Kconfig \
board/coreboot/Kconfig \
arch/x86/Kconfig \
arch/Kconfig \
Kconfig
include/config/auto.conf: \
$(deps_config)
ifneq "$(UBOOTVERSION)" "2016.01"
include/config/auto.conf: FORCE
endif
$(deps_config): ;
| latelee/coreboot | payloads/external/U-Boot/u-boot/include/config/auto.conf.cmd | bat | gpl-2.0 | 2,190 |
:: See ../share/gtags/geco.rc for details.
@SetLocal EnableDelayedExpansion
@set arg=
@for %%O in (%*) do @(
set opt=%%O
if not "!opt:~0,1!" == "-" set arg=1
)
@if not defined arg (
for /f "delims=" %%L in ('global 2^>^&1') do @(
set line=%%L
if not "!line:~7,10!"=="global -p[" if not "!line:~7,10!"=="global -u[" (
set line=!line:global=geco!
echo !line!
)
)
goto :eof
)
@set GTAGSBLANKENCODE=
@global %* --result=ctags-x | gecoless
| loseblue/dot_file | soft/system/gnu_global/bin/geco.cmd | bat | gpl-2.0 | 488 |
cmd_ipc/built-in.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o ipc/built-in.o ipc/util.o ipc/msgutil.o ipc/msg.o ipc/sem.o ipc/shm.o ipc/ipcns_notifier.o ipc/syscall.o ipc/ipc_sysctl.o
| dizgustipated/BOCA-2.6.35.14 | ipc/.built-in.o.cmd | bat | gpl-2.0 | 207 |
cmd_drivers/input/built-in.o := ld -m elf_i386 -r -o drivers/input/built-in.o drivers/input/input-core.o drivers/input/ff-memless.o drivers/input/input-polldev.o drivers/input/sparse-keymap.o drivers/input/mousedev.o drivers/input/evdev.o drivers/input/keyboard/built-in.o drivers/input/mouse/built-in.o
| madhwang/linuxKernel | drivers/input/.built-in.o.cmd | bat | gpl-2.0 | 308 |
cmd_drivers/video/backlight/built-in.o := /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/video/backlight/built-in.o drivers/video/backlight/lcd.o drivers/video/backlight/platform_lcd.o
| domintech/PandaBoard-LinuxKernel | drivers/video/backlight/.built-in.o.cmd | bat | gpl-2.0 | 285 |
cmd_net/netfilter/xt_connbytes.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/netfilter/xt_connbytes.ko net/netfilter/xt_connbytes.o net/netfilter/xt_connbytes.mod.o
| avareldalton85/rpi2-linux-rt | net/netfilter/.xt_connbytes.ko.cmd | bat | gpl-2.0 | 275 |
@ECHO OFF
SETLOCAL EnableDelayedExpansion
SET UPSTREAMURL=https://github.com/ShiftMediaProject
SET DEPENDENCIES=( ^
libdvdread ^
)
REM Get passed in list of dependencies to skip
SET PASSDEPENDENCIES=%~1
REM Check if git is installed and available
IF "%MSVC_VER%"=="" (
git status >NUL 2>&1
IF ERRORLEVEL 1 (
ECHO A working copy of git was not found. To use this script you must first install git for windows.
GOTO exitOnError
)
)
REM Store current directory and ensure working directory is the location of current .bat
SET CURRDIR="%CD%"
cd "%~dp0"
REM Initialise error check value
SET ERROR=0
cd ..\..
FOR %%I IN %DEPENDENCIES% DO (
ECHO !PASSDEPENDENCIES! | FINDSTR /C:"%%I" >NUL 2>&1 || (
REM Check if MSVC_VER environment variable is set
IF "%MSVC_VER%"=="" (
CALL :cloneOrUpdateRepo "%%I" || GOTO exitOnError
) ELSE (
CALL :downloadLibs "%%I" || GOTO exitOnError
)
)
)
cd "%CURRDIR%" >NUL
GOTO exit
REM Function to clone or update a repo
REM cloneOrUpdateRepo: RepoName
REM RepoName = Name of the repository
:cloneOrUpdateRepo
SET REPONAME=%~1
REM Check if the repo folder already exists
IF EXIST "%REPONAME%" (
ECHO %REPONAME%: Existing folder found. Checking for updates...
cd %REPONAME%
REM Check if any updates are available
FOR /f %%J IN ('git rev-parse HEAD') do set CURRHEAD=%%J
FOR /f %%J IN ('git ls-remote origin HEAD') do set ORIGHEAD=%%J
IF "!CURRHEAD!"=="!ORIGHEAD!" (
ECHO %REPONAME%: Repository up to date.
) ELSE (
REM Stash any uncommited changes then update from origin
ECHO %REPONAME%: Updates available. Updating repository...
git checkout master --quiet
git stash --quiet
git pull origin master --quiet -ff
git stash pop --quiet
)
cd ..\
) ELSE (
ECHO %REPONAME%: Existing folder not found. Cloning repository...
REM Clone from the origin repo
SET REPOURL=%UPSTREAMURL%/%REPONAME%.git
git clone !REPOURL! --quiet
IF ERRORLEVEL 1 (
ECHO %REPONAME%: Git clone failed.
GOTO exitOnError
)
REM Initialise autocrlf options to fix cross platform interoperation
REM Once updated the repo needs to be reset to correct the local line endings
cd %REPONAME%
git config --local core.autocrlf false
git rm --cached -r . --quiet
git reset --hard --quiet
cd ..\
)
REM Add current repo to list of already passed dependencies
SET PASSDEPENDENCIES=%PASSDEPENDENCIES% %REPONAME%
REM Check if the repo itself has required dependencies
IF EXIST "%REPONAME%\SMP\project_get_dependencies.bat" (
ECHO %REPONAME%: Found additional dependencies...
ECHO.
cd %REPONAME%\SMP
project_get_dependencies.bat "!PASSDEPENDENCIES!" || EXIT /B 1
cd ..\..
)
ECHO.
EXIT /B %ERRORLEVEL%
REM Function to download existing prebuilt libraries
REM downloadLibs: RepoName
REM RepoName = Name of the repository
:downloadLibs
SET REPONAME=%~1
REM Get latest release
ECHO %REPONAME%: Getting latest release...
SET UPSTREAMAPIURL=%UPSTREAMURL:github.com=api.github.com/repos%
REM Check if secure OAuth is available
IF "%GITHUBTOKEN%" == "" (
powershell -nologo -noprofile -command "$currentMaxTls = [Math]::Max([Net.ServicePointManager]::SecurityProtocol.value__,[Net.SecurityProtocolType]::Tls.value__);$newTlsTypes = [enum]::GetValues('Net.SecurityProtocolType') | ?{ $_ -gt $currentMaxTls };ForEach ($newTls in $newTlsTypes) { [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor $newTls };try { Invoke-RestMethod -Uri %UPSTREAMAPIURL%/%REPONAME%/releases/latest > latest.json } catch {exit 1}"
) ELSE (
powershell -nologo -noprofile -command "$currentMaxTls = [Math]::Max([Net.ServicePointManager]::SecurityProtocol.value__,[Net.SecurityProtocolType]::Tls.value__);$newTlsTypes = [enum]::GetValues('Net.SecurityProtocolType') | ?{ $_ -gt $currentMaxTls };ForEach ($newTls in $newTlsTypes) { [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor $newTls };try { Invoke-RestMethod -Uri %UPSTREAMAPIURL%/%REPONAME%/releases/latest -Headers @{'Authorization' = 'token %GITHUBTOKEN%'} > latest.json } catch {exit 1}"
)
IF ERRORLEVEL 1 ( ECHO Failed getting latest %REPONAME% release & EXIT /B 1 )
REM Get tag for latest release
FOR /F "tokens=* USEBACKQ" %%F IN (`TYPE latest.json ^| FINDSTR /B "tag_name"`) DO SET TAG=%%F
FOR /F "tokens=2 delims=: " %%F in ("%TAG%") DO SET TAG=%%F
IF "%TAG%"=="" ( ECHO Failed getting latest %REPONAME% release tag information & EXIT /B 1 )
REM Get download name of latest release
SET LIBNAME=
FOR /F "tokens=* USEBACKQ" %%F IN (`TYPE latest.json ^| FINDSTR "name="`) DO ( SET TEMPF=%%F
SET TEMPF=!TEMPF:*name=!
IF "!TEMPF:~1,3!"=="lib" ( SET LIBNAME=!TEMPF:~1! )
)
FOR /F "tokens=1 delims=_" %%F in ("%LIBNAME%") DO SET LIBNAME=%%F
IF "%LIBNAME%"=="" ( ECHO Failed getting latest %REPONAME% release name information & EXIT /B 1 )
DEL /F /Q latest.json
REM Get the download location for the required tag
SET TAG2=%TAG:+=.%
SET DLURL=%UPSTREAMURL%/%REPONAME%/releases/download/%TAG%/%LIBNAME%_%TAG2%_msvc%MSVC_VER%.zip
REM Download a pre-built archive and extract
ECHO %REPONAME%: Downloading %LIBNAME%_%TAG%_msvc%MSVC_VER%.zip...
SET PREBUILTDIR=prebuilt
MKDIR %PREBUILTDIR% >NUL 2>&1
powershell -nologo -noprofile -command "$currentMaxTls = [Math]::Max([Net.ServicePointManager]::SecurityProtocol.value__,[Net.SecurityProtocolType]::Tls.value__);$newTlsTypes = [enum]::GetValues('Net.SecurityProtocolType') | ?{ $_ -gt $currentMaxTls };ForEach ($newTls in $newTlsTypes) { [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor $newTls };try { (New-Object Net.WebClient).DownloadFile('%DLURL%', '%PREBUILTDIR%\temp.zip') } catch {exit 1}"
IF ERRORLEVEL 1 ( ECHO Failed downloading %DLURL% & EXIT /B 1 )
powershell -nologo -noprofile -command "Add-Type -AssemblyName System.IO.Compression.FileSystem; $zip=[System.IO.Compression.ZipFile]::OpenRead('%PREBUILTDIR%\temp.zip'); foreach ($item in $zip.Entries) { try {$file=(Join-Path -Path .\%PREBUILTDIR% -ChildPath $item.FullName); $null=[System.IO.Directory]::CreateDirectory((Split-Path -Path $file)); [System.IO.Compression.ZipFileExtensions]::ExtractToFile($item,$file,$true)} catch {exit 1} }"
IF ERRORLEVEL 1 ( ECHO Failed extracting downloaded archive & EXIT /B 1 )
DEL /F /Q %PREBUILTDIR%\\temp.zip
ECHO.
EXIT /B %ERRORLEVEL%
:exitOnError
cd "%CURRDIR%"
SET ERROR=1
:exit
REM Directly exit if an AppVeyor build
IF NOT "%APPVEYOR%"=="" (
GOTO return
)
REM Return the passed dependency list
(
ENDLOCAL
SET PASSDEPENDENCIES=%PASSDEPENDENCIES%
)
REM Check if this was launched from an existing terminal or directly from .bat
REM If launched by executing the .bat then pause on completion
ECHO %CMDCMDLINE% | FINDSTR /L %COMSPEC% >NUL 2>&1
IF %ERRORLEVEL% == 0 IF "%~1"=="" PAUSE
:return
EXIT /B %ERROR% | ShiftMediaProject/libdvdnav | SMP/project_get_dependencies.bat | bat | gpl-2.0 | 7,013 |
cmd_kernel/configs.o := gcc -Wp,-MD,kernel/.configs.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(configs)" -D"KBUILD_MODNAME=KBUILD_STR(configs)" -c -o kernel/configs.o kernel/configs.c
deps_kernel/configs.o := \
kernel/configs.c \
$(wildcard include/config/ikconfig/proc.h) \
$(wildcard include/config/proc.h) \
include/linux/kernel.h \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/asm/posix_types.h \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
$(wildcard include/config/x86/cmov.h) \
include/asm/alternative.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/paravirt.h) \
include/asm/asm.h \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.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) \
include/linux/preempt.h \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/compat/vdso.h) \
include/asm/user.h \
include/asm/user_32.h \
include/asm/auxvec.h \
include/asm/vdso.h \
include/asm/desc.h \
include/asm/ldt.h \
include/asm/mmu.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/asm-x86/mach-default/mach_apicdef.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slabinfo.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/asm/module.h \
$(wildcard include/config/m486.h) \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip2.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
include/linux/proc_fs.h \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
$(wildcard include/config/mmu.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.h \
include/linux/namei.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/magic.h \
include/linux/seq_file.h \
include/asm/uaccess.h \
include/asm/uaccess_32.h \
$(wildcard include/config/x86/intel/usercopy.h) \
$(wildcard include/config/x86/wp/works/ok.h) \
kernel/config_data.h \
kernel/configs.o: $(deps_kernel/configs.o)
$(deps_kernel/configs.o):
| namgk/kernel-tut | kernel/.configs.o.cmd | bat | gpl-2.0 | 14,967 |
cmd_vmlinux.o := /home/robin/toolchain/bin/arm-none-eabi-ld -EL -r -o vmlinux.o arch/arm/kernel/head.o arch/arm/kernel/init_task.o init/built-in.o --start-group usr/built-in.o arch/arm/kernel/built-in.o arch/arm/mm/built-in.o arch/arm/common/built-in.o arch/arm/mach-msm/built-in.o arch/arm/vfp/built-in.o arch/arm/perfmon/built-in.o kernel/built-in.o mm/built-in.o fs/built-in.o ipc/built-in.o security/built-in.o crypto/built-in.o block/built-in.o arch/arm/lib/lib.a lib/lib.a arch/arm/lib/built-in.o lib/built-in.o drivers/built-in.o sound/built-in.o firmware/built-in.o net/built-in.o --end-group
| spacecaker/CM7_Space_Kernel_Cooper | .vmlinux.o.cmd | bat | gpl-2.0 | 626 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.