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 |
|---|---|---|---|---|---|
cmd_drivers/net/arm/built-in.o := rm -f drivers/net/arm/built-in.o; ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ar rcsD drivers/net/arm/built-in.o
| Zaphod-Beeblebrox/kernel_rockchip_rk3188 | drivers/net/arm/.built-in.o.cmd | bat | gpl-2.0 | 161 |
cmd_fs/notify/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/notify/built-in.o fs/notify/fsnotify.o fs/notify/notification.o fs/notify/group.o fs/notify/inode_mark.o fs/notify/mark.o fs/notify/vfsmount_mark.o fs/notify/dnotify/built-in.o fs/notify/inotify/built-in.o fs/notify/fanotify/built-in.o
| jpsminix/minix5 | fs/notify/.built-in.o.cmd | bat | gpl-2.0 | 303 |
@echo off
REM ********************************************************
REM This batch file receives the follwing parameters:
REM build/rebuild (optional): should the solution file be rebuilded
REM or just builded before test run (default is rebuild)
REM output files name prefix (mandratory) : prefix for naming output xml files
REM test fixture name (optional) : if you want to run some particular test fixture
REM directory to run tests (optional)
REM path back to root directory (opposite to previous param)
REM example run-tests build GhTests Test.Sys.Drawing Test\DrawingTest\Test ..\..\..\
REM will cause to build (and not rebuild) test solutions,
REM running Test.Sys.Drawing fixture in directory Test\DrawingTest\Test
REM with output files named GhTests.Net.xml and GhTests.GH.xml
REM ********************************************************
IF "%VMW_HOME%"=="" GOTO ENVIRONMENT_EXCEPTION
IF "%1"=="" (
set BUILD_OPTION=rebuild
) ELSE (
set BUILD_OPTION=%1
)
REM ********************************************************
REM Set parameters
REM ********************************************************
set OUTPUT_FILE_PREFIX=System_Xml
set RUNNING_FIXTURE=MonoTests.System.Xml
set TEST_SOLUTION=Test\System.Xml.Test20.sln
set TEST_ASSEMBLY=System.Xml.Test.jar
set PROJECT_CONFIGURATION=Debug_Java20
set startDate=%date%
set startTime=%time%
set sdy=%startDate:~10%
set /a sdm=1%startDate:~4,2% - 100
set /a sdd=1%startDate:~7,2% - 100
set /a sth=%startTime:~0,2%
set /a stm=1%startTime:~3,2% - 100
set /a sts=1%startTime:~6,2% - 100
set TIMESTAMP=%sdy%_%sdm%_%sdd%_%sth%_%stm%
set NUNIT_OPTIONS=/exclude:NotWorking,ValueAdd,CAS,InetAccess
REM ********************************************************
REM @echo Set environment
REM ********************************************************
set JGAC_PATH=%VMW_HOME%\java_refs\framework\
set JAVA_HOME=%VMW_HOME%\jre
set RUNTIME_CLASSPATH=%JGAC_PATH%mscorlib.jar
set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.jar
set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.Xml.jar
set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.Data.jar
set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%J2SE.Helpers.jar
set NUNIT_OPTIONS=/exclude=NotWorking
if "%GH_VERSION%"=="" (
set GH_VERSION=0_0_0_0
)
set COMMON_PREFIX=%TIMESTAMP%_%OUTPUT_FILE_PREFIX%.GH_%GH_VERSION%.1.%USERNAME%
set GH_OUTPUT_XML=%COMMON_PREFIX%.xml
set BUILD_LOG=%COMMON_PREFIX%.build.log
set RUN_LOG=%COMMON_PREFIX%.run.log
set NUNIT_PATH=..\..\nunit20\
set NUNIT_CLASSPATH=%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit.framework.jar
set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit.util.jar
set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit.core.jar
set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit-console.jar
set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;.
set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%TEST_ASSEMBLY%
set CLASSPATH="%RUNTIME_CLASSPATH%;%NUNIT_CLASSPATH%"
REM ********************************************************
@echo Building GH solution...
REM ********************************************************
rem devenv %TEST_SOLUTION% /%BUILD_OPTION% %PROJECT_CONFIGURATION% >>%RUNNING_FIXTURE%_build.log.txt 2<&1
msbuild %TEST_SOLUTION% /t:%BUILD_OPTION% /p:Configuration=%PROJECT_CONFIGURATION% >>%BUILD_LOG% 2<&1
IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
REM ********************************************************
@echo Building NUnit solution...
REM ********************************************************
if "%NUNIT_BUILD%" == "DONE" goto NUNITSKIP
REM devenv ..\..\nunit20\nunit.java.sln /%BUILD_OPTION% %PROJECT_CONFIGURATION% >>%RUNNING_FIXTURE%_build.log.txt 2<&1
msbuild ..\..\nunit20\nunit20.java.sln /t:%BUILD_OPTION% /p:Configuration=%PROJECT_CONFIGURATION% >>%BUILD_LOG% 2<&1
goto NUNITREADY
:NUNITSKIP
echo Skipping NUnit Build...
:NUNITREADY
set NUNIT_BUILD=DONE
IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
REM ********************************************************
@echo Running GH tests...
REM ********************************************************
REM ********************************************************
@echo Running fixture "%RUNNING_FIXTURE%"
REM ********************************************************
copy Test\bin\%PROJECT_CONFIGURATION%\%TEST_ASSEMBLY% .
REM @echo on
"%JAVA_HOME%\bin\java" -Xmx1024M -cp %CLASSPATH% NUnit.Console.ConsoleUi %TEST_ASSEMBLY% %NUNIT_OPTIONS% /xml=%GH_OUTPUT_XML% >>%RUN_LOG% 2<&1
REM @echo off
REM ********************************************************
@echo Build XmlTool
REM ********************************************************
set XML_TOOL_PATH=..\..\tools\mono-xmltool
if "%XMLTOOL_BUILD%" == "DONE" goto XMLTOOLSKIP
REM devenv %XML_TOOL_PATH%\XmlTool.sln /%BUILD_OPTION% %PROJECT_CONFIGURATION% >>%RUNNING_FIXTURE%_build.log.txt 2<&1
msbuild %XML_TOOL_PATH%\XmlTool20.csproj /t:%BUILD_OPTION% /p:Configuration=%PROJECT_CONFIGURATION% >>%BUILD_LOG% 2<&1
IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
goto XMLTOOLREADY
:XMLTOOLSKIP
echo Skipping XmlToll build...
:XMLTOOLREADY
set XMLTOOL_BUILD=DONE
copy %XML_TOOL_PATH%\bin\%PROJECT_CONFIGURATION%\xmltool.exe .
copy %XML_TOOL_PATH%\nunit_transform.xslt .
REM ********************************************************
@echo Analyze and print results
REM ********************************************************
@echo on
xmltool.exe --transform nunit_transform.xslt %GH_OUTPUT_XML%
@echo off
:FINALLY
GOTO END
:ENVIRONMENT_EXCEPTION
@echo This test requires environment variable VMW_HOME to be defined
GOTO END
:BUILD_EXCEPTION
@echo Error in building solutions. See %BUILD_LOG% for details...
REM EXIT 1
GOTO END
:RUN_EXCEPTION
@echo Error in running fixture %RUNNING_FIXTURE%. See %RUN_LOG% for details...
REM EXIT 1
GOTO END
:USAGE
@echo Parameters: "[build|rebuild] <output_file_name_prefix> <test_fixture> <relative_Working_directory> <back_path (..\..\.....) >"
GOTO END
:END
copy %RUN_LOG% ..\
copy %BUILD_LOG% ..\
copy %GH_OUTPUT_XML% ..\
REM EXIT 0
| xen2/mcs | class/System.XML/run-tests.api.bat | bat | gpl-2.0 | 6,349 |
java -Xdebug -Xrunjdwp:transport=dt_socket,address=4901,server=y,suspend=y -Dlogback.configurationFile=./logback.xml -jar org.eclipse.osgi_3.10.2.v20150203-1939.jar -console
| aktion-hip/vif | vif-quickstart/runtime/run_debug.bat | bat | gpl-2.0 | 176 |
:: DESCRIPTION
:: Runs ahkrip.bat (SEE) for all .ahk files in the directory from which this script is called.
:: DEPENDENCIES
:: You must have ahkrip.bat in the same directory as this (or possibly just in your PATH).
:: USAGE
:: From a directory with one or more .ahk (AutoHotkey) scripts ready to be compiled to executables, run this script:
:: call-ahkrip.bat
:: See USAGE in ahkrip.bat for expected results.
:: CODE
ECHO OFF
:: COPY _temp\*.txt ..\
:: (Those had been some text files used in development.)
SET CURRDIR=%CD%
SET CURRDRIVE=%cd:~0,2%
:: REBUILD TARGETS
ECHO OFF
FOR %%A IN (%CURRDIR%\*.ahk) DO (
ahkrip.bat %%~nA
%CURRDRIVE%
CD %CURRDIR%
:: MOVE /Y %CURRDIR%\%%~nA.exe ..\
) | r-alex-hall/fontDevTools | scripts/call-ahkrip.bat | bat | gpl-3.0 | 699 |
dism.exe /online /enable-feature /featurename:NetFX3 /all
| fcenobi/script | installdotnet35.cmd | bat | gpl-3.0 | 58 |
set batdir=%~dp0
cd %batdir%
call ..\..\utilities\findMatlab.bat
if %ismatlab%==1 (
start "Matlab" /b %matexe% -r "onlineSigProcBuffer;quit;" %matopts%
) else (
echo onlineSigProcBuffer; | %matexe% %matopts%
)
| jadref/buffer_bci | matlab/signalProc/startonlineSigProcBuffer.bat | bat | gpl-3.0 | 214 |
@ECHO OFF
del firmware_update\*.hex
copy build\dual_strike_firmware.hex firmware_update\dual_strike_firmware_V%1.hex
copy build\dual_strike_smd_firmware.hex firmware_update\dual_strike_smd_firmware_V%1.hex
copy build\dual_strike_168_firmware.hex firmware_update\dual_strike_168_firmware_V%1.hex
ECHO @ECHO OFF>firmware_update\update_firmware.bat
ECHO bootloadHID.exe -r "dual_strike_firmware_V%1.hex">>firmware_update\update_firmware.bat
ECHO Pause>>firmware_update\update_firmware.bat
ECHO @ECHO OFF>firmware_update\update_firmware_smd.bat
ECHO bootloadHID.exe -r "dual_strike_smd_firmware_V%1.hex">>firmware_update\update_firmware_smd.bat
ECHO Pause>>firmware_update\update_firmware_smd.bat
ECHO @ECHO OFF>firmware_update\update_firmware_168.bat
ECHO bootloadHID.exe -r "dual_strike_168_firmware_V%1.hex">>firmware_update\update_firmware_168.bat
ECHO Pause>>firmware_update\update_firmware_168.bat
| IvIePhisto/Dual-Strike | Firmware/Stable_V2/update_firmware_update.bat | bat | gpl-3.0 | 920 |
@echo off
echo.Place ALL the files inside a folder in this structure:
echo. FILENAME.mp4_folder
echo.Example:
echo. 2016090802.mp4_folder
echo.For best outcome, make sure the file's extension is .mp4
echo.You will need:
echo.KHUxEncrypt
echo.AppendBGAD
echo.KHUxDecrypt
echo.
echo.There's a log file at the end called "MP4Repack.log"
echo.
set /p fname="Enter MP4 file to repack: "
khuxdecrypt %fname% 0_NotNeeded_0 > %fname%.txt
echo.Repacking %fname%... > MP4+PNGRepack.log
MP4Repack %fname% >> MP4+PNGRepack.log
echo.
echo.If everything is fine, you will find
echo. %fname%_out
del /S /Q %fname%.txt > nul
RMDIR /S /Q 0_NotNeeded_0
set fname=%fname:~0,-3%
set fname=%fname%png
echo.
echo.Attempting to fix %fname%
echo.
start /wait khuxdecrypt %fname% %fname%_folder
echo. >> MP4+PNGRepack.log
echo. >> MP4+PNGRepack.log
echo. >> MP4+PNGRepack.log
echo.Start of PNG... >> MP4+PNGRepack.log
echo. >>MP4+PNGRepack.log
echo. >>MP4+PNGRepack.log
pngFIX %fname% 1 >>MP4+PNGRepack.log
echo.Done!
ren %fname%_list @nonameFix.bin
move @nonameFix.bin %fname%_folder >nul
del %fname%_folder\@noname1.bin
cd %fname%_folder
start /wait ..\khuxencrypt @nonameFix.bin /
start /wait ..\khuxencrypt md5
start /wait ..\khuxencrypt size
cd ..\
echo. 2>%fname%_out
start /wait appendbgad %fname%_out %fname%_folder\@nonameFix.bin.BGAD %fname%_folder\md5.bgad %fname%_folder\size.bgad
del %fname%_out
ren %fname%_out_out %fname%_out
RMDIR /S /Q %fname%_folder
echo If everything went fine here, you'll find %fname%_out.
pause | thethiny/Modding-Database | KHUx/MP4Repack/MP4Repack+PNG.bat | bat | gpl-3.0 | 1,520 |
set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0_131
path %JAVA_HOME%\bin;%path%
cd C:\_freepascal\pascal_o_r_mapping\jsWorks\android_lamw\jsWorks
jarsigner -verify -verbose -certs C:\_freepascal\pascal_o_r_mapping\jsWorks\android_lamw\jsWorks\bin\jsWorks-release.apk
| jsuzineau/pascal_o_r_mapping | jsWorks/android_lamw/jsWorks/jarsigner-verify.bat | bat | lgpl-2.1 | 270 |
vcpkg install sokol:x86-windows
mkdir build-x86-windows
cd build-x86-windows
cmake .. -DCMAKE_TOOLCHAIN_FILE="%VCPKG_ROOT%\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x86-windows -DCMAKE_GENERATOR_PLATFORM=Win32
cmake --build . --config Release
cd ..
pause
| myd7349/Ongoing-Study | cpp/CMake/vcpkg/sokol_examples/build-x86-windows.bat | bat | lgpl-3.0 | 270 |
:user_configuration
:: Path to Flex SDK
set FLEX_SDK=C:\Program Files\Adobe Gaming SDK 1.3\AIR SDK
set AUTO_INSTALL_IOS=yes
:: 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
| afandiyusuf/GuitarAs3 | PitchGenMobile/bat/SetupSDK.bat | bat | apache-2.0 | 754 |
start chrome https://translate.google.com/?source=#auto/iw/"%*" | nBeker/macros | google-translate.bat | bat | apache-2.0 | 63 |
node ../r.js -o app.build.js | ambroiseRabier/overchart | scripts/nodeBuild.bat | bat | apache-2.0 | 28 |
:: Copyright 2019-2021 Google LLC
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: https://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
echo off
setlocal enabledelayedexpansion
set ROOTDIR=%~dp0\..\..\
docker build -t edgetpu-win -f %ROOTDIR%\docker\Dockerfile.windows %ROOTDIR%\docker
| google-coral/libcoral | scripts/windows/docker_make_image.bat | bat | apache-2.0 | 746 |
REM check JAVA_HOME & java
set "JAVA_CMD=%JAVA_HOME%/bin/java"
if "%JAVA_HOME%" == "" goto noJavaHome
if exist "%JAVA_HOME%\bin\java.exe" goto mainEntry
:noJavaHome
echo ---------------------------------------------------
echo WARN: JAVA_HOME environment variable is not set.
echo ---------------------------------------------------
set "JAVA_CMD=java"
:mainEntry
REM set HOME_DIR
set "CURR_DIR=%cd%"
cd ..
set "MYCAT_HOME=%cd%"
cd %CURR_DIR%
%JAVA_CMD% -Xms256M -Xmx1G -XX:MaxPermSize=64M -DMYCAT_HOME=%MYCAT_HOME% -cp "..\conf;..\lib\*" org.opencloudb.performance.TestUpdatePerf %1 %2 %3 %4 %5 %6 %7 | youngor/openclouddb | MyCAT/src/main/assembly/bin/test_stand_update_perf.bat | bat | apache-2.0 | 620 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=SkeekSCMS
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
| skeeks-cms/cms | docs/make.bat | bat | bsd-3-clause | 777 |
bootefi $loadaddr
| kishoredbn/barrelfish | tools/imx8x/aux-bf-boot/boot.cmd | bat | mit | 18 |
@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\objectpack.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\objectpack.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
| barsgroup/objectpack | docs/make.bat | bat | mit | 5,104 |
msbuild ..\SquishIt.sln /p:Configuration=Release /p:Platform="Any CPU" /p:VisualStudioVersion=14.0
for %%s in (..\nuspec\*.nuspec) do (
nuget pack %%s
)
for %%p in (*.nupkg) do (
nuget push %%p -Source https://www.nuget.org/api/v2/package
del %%p
) | AlexCuse/SquishIt | tools/pack-push.bat | bat | mit | 251 |
@echo off
@echo »¶ÓʹÓà MobileIMSDK v3.2 ·þÎñ¶Ë-Mina°æ (build20180103)
@echo.
@echo IMºËÐÄ·þÎñÆ÷ÕýÔÚÔËÐÐÖÐ...
@echo.
"%JAVA_HOME%/bin/java" -cp lib/gson-2.7.jar;lib/log4j-1.2.17.jar;lib/slf4j-api-1.7.21.jar;lib/slf4j-log4j12-1.7.21.jar;lib/MobileIMSDKServerX_mina.jar;lib/rabbitmq-client.jar;"%JAVA_HOME%/lib/tools.jar;classes/.;lib/mina-core-2.0.14.jar;" net.openmob.mobileimsdk.server.demo.ServerLauncherImpl %1
@echo.
pause | suxinde2009/MobileIMSDK | src_all/demos_src/MobileIMSDKServerDemoX_mina/deploy/MobileIMSDKServerDemoX_mina_deploy_v3.2b20180103/run.bat | bat | gpl-2.0 | 440 |
cmd_fs/cifs/netmisc.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,fs/cifs/.netmisc.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 -DMODULE -mlong-calls -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(netmisc)" -D"KBUILD_MODNAME=KBUILD_STR(cifs)" -c -o fs/cifs/netmisc.o fs/cifs/netmisc.c
deps_fs/cifs/netmisc.o := \
fs/cifs/netmisc.c \
$(wildcard include/config/cifs/debug2.h) \
$(wildcard include/config/error.h) \
include/linux/net.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/sysctl.h) \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.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/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/asm/posix_types.h \
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/asm/processor.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/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/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/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) \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.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/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/asm/thread_info.h \
$(wildcard include/config/page/size/8kb.h) \
$(wildcard include/config/debug/stack/usage.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/asm/socket.h \
include/asm/sockios.h \
include/asm/ioctl.h \
include/linux/random.h \
include/linux/ioctl.h \
include/linux/sysctl.h \
$(wildcard include/config/bcm/nat.h) \
include/linux/in.h \
include/linux/socket.h \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/compat.h) \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/ctype.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/sysfs.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/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 \
$(wildcard include/config/profiling.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/rcupdate.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/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
include/asm-mips/mach-generic/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/time.h \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm-mips/mach-generic/timex.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/namei.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/asm/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 \
include/linux/err.h \
include/linux/inet.h \
fs/cifs/cifsfs.h \
$(wildcard include/config/cifs/experimental.h) \
fs/cifs/cifspdu.h \
$(wildcard include/config/cifs/weak/pw/hash.h) \
$(wildcard include/config/cifs/posix.h) \
include/net/sock.h \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/net/dma.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/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/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/netdevice.h \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/vlan/8021q.h) \
$(wildcard include/config/raeth/skb/recycle/2k.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/network/secmark.h) \
$(wildcard include/config/imq.h) \
include/linux/textsearch.h \
include/net/checksum.h \
include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/device.h \
include/asm-generic/device.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/rbtree.h \
include/linux/if_packet.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/asm/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
$(wildcard include/config/i8259.h) \
include/asm/mipsmtregs.h \
include/asm-mips/mach-generic/irq.h \
$(wildcard include/config/irq/cpu/rm7k.h) \
$(wildcard include/config/irq/cpu/rm9k.h) \
include/asm/ptrace.h \
$(wildcard include/config/cpu/has/smartmips.h) \
include/asm/isadep.h \
include/asm/irq_regs.h \
include/asm/hw_irq.h \
include/linux/profile.h \
include/linux/irq_cpustat.h \
include/linux/sched.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/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.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/fault/injection.h) \
include/linux/capability.h \
include/asm/mmu.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.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/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/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/mm.h \
$(wildcard include/config/mmu.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/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/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/security.h \
$(wildcard include/config/security/network/xfrm.h) \
include/linux/binfmts.h \
include/linux/shm.h \
include/asm/shmparam.h \
include/asm/shmbuf.h \
include/linux/msg.h \
include/asm/msgbuf.h \
$(wildcard include/config/cpu/little/endian.h) \
include/linux/key.h \
include/linux/xfrm.h \
include/net/flow.h \
$(wildcard include/config/ipv6/mip6.h) \
include/linux/filter.h \
include/net/dst.h \
$(wildcard include/config/net/cls/route.h) \
$(wildcard include/config/xfrm.h) \
include/linux/rtnetlink.h \
include/linux/netlink.h \
include/linux/if_link.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/linux/seq_file.h \
include/net/rtnetlink.h \
include/net/netlink.h \
fs/cifs/cifsglob.h \
$(wildcard include/config/cifs/stats2.h) \
$(wildcard include/config/cifs/stats.h) \
$(wildcard include/config/cifs/upcall.h) \
fs/cifs/cifs_fs_sb.h \
fs/cifs/cifsacl.h \
fs/cifs/cifsproto.h \
include/linux/nls.h \
fs/cifs/smberr.h \
fs/cifs/cifs_debug.h \
fs/cifs/nterr.h \
fs/cifs/netmisc.o: $(deps_fs/cifs/netmisc.o)
$(deps_fs/cifs/netmisc.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/fs/cifs/.netmisc.o.cmd | bat | gpl-2.0 | 20,287 |
echo off
cls
if not "%CORUS_HOME%"=="" goto okCorusHome
CORUS_HOME environment variable not set.
Set this variable to point to your CORUS
installation directory.
goto end
:okCorusHome
if not "%JAVA_HOME%"=="" goto okJavaHome
JAVA_HOME environment variable not set.
Set this variable to point to your Java
installation directory.
goto end
:okJavaHome
SET LOCALCLASSPATH=
if "%LOCALCLASSPATH_DEFINED%"=="true" goto okLcp
for %%i in (%CORUS_HOME%\lib\server\*.jar) do call %CORUS_HOME%\bin\lcp.bat %%i
for %%i in (%CORUS_HOME%\extra-lib\*.jar) do call %CORUS_HOME%\bin\lcp.bat %%i
set LOCALCLASSPATH_DEFINED=true
:okLcp
rem echo %LOCALCLASSPATH%
set CLASSPATH=%CLASSPATH%;%LOCALCLASSPATH%
"%JAVA_HOME%/bin/java" -Dcorus.home="%CORUS_HOME%" org.sapia.corus.core.CorusMonitor %1 %2 %3 %4
:end | sapia-oss/corus | modules/server/bin/corusmon.bat | bat | gpl-3.0 | 804 |
deps_config := \
/Users/constantino/esp/esp-idf/components/aws_iot/Kconfig \
/Users/constantino/esp/esp-idf/components/bt/Kconfig \
/Users/constantino/esp/esp-idf/components/esp32/Kconfig \
/Users/constantino/esp/esp-idf/components/ethernet/Kconfig \
/Users/constantino/esp/esp-idf/components/fatfs/Kconfig \
/Users/constantino/esp/esp-idf/components/freertos/Kconfig \
/Users/constantino/esp/esp-idf/components/log/Kconfig \
/Users/constantino/esp/esp-idf/components/lwip/Kconfig \
/Users/constantino/esp/esp-idf/components/mbedtls/Kconfig \
/Users/constantino/esp/esp-idf/components/openssl/Kconfig \
/Users/constantino/esp/esp-idf/components/spi_flash/Kconfig \
/Users/constantino/esp/esp-idf/components/bootloader/Kconfig.projbuild \
/Users/constantino/esp/esp-idf/components/esptool_py/Kconfig.projbuild \
/Users/constantino/esp/esp-idf/components/partition_table/Kconfig.projbuild \
/Users/constantino/esp/esp-idf/Kconfig
include/config/auto.conf: \
$(deps_config)
$(deps_config): ;
| ConstantinoSchillebeeckx/tacocat-keyboard | code/i2c_slave_test/build/include/config/auto.conf.cmd | bat | agpl-3.0 | 1,008 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PythonSDKforMozuRestAPIs.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PythonSDKforMozuRestAPIs.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
| sanjaymandadi/mozu-python-sdk | docs/make.bat | bat | apache-2.0 | 7,026 |
<<<<<<< HEAD
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
=======
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
>>>>>>> 821375130f7727bd49a9b7fe01147d48d8de903a
| RainliFu/react-native | RN_Day03/android/gradlew.bat | bat | apache-2.0 | 4,788 |
@echo on
REM This is an example how the manuals get generated on Windows with MikTeX (2.9)
REM Set the full path to executable pdflatex, or put its installation path to the %PATH% env instead.
set PDFLATEXBIN="pdflatex"
cd %~dp0
mkdir output
REM Comment out or in whatever your focus is on.
REM English XCSoar-manual generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0en --include-directory=%~dp0 --output-directory=%~dp0output %~dp0en\XCSoar-manual.tex
REM English XCSoar-developer-manual generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0en --include-directory=%~dp0 --output-directory=%~dp0output %~dp0en\XCSoar-developer-manual.tex
REM German XCSoar-Blitzeinstieg generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0de\Blitz --include-directory=%~dp0de\Blitz\Bilder --include-directory=%~dp0 --output-directory=%~dp0output %~dp0de\Blitz\XCSoar-Blitzeinstieg.tex
REM German XCSoar-Handbuch generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0de --include-directory=%~dp0 --include-directory=%~dp0en --output-directory=%~dp0output %~dp0de\XCSoar-manual-de.tex
REM french XCSoar-Prise-en-main generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0fr --include-directory=%~dp0 --output-directory=%~dp0output %~dp0fr\XCSoar-Prise-en-main.tex
REM french XCSoar-manual-fr generation
%PDFLATEXBIN% --halt-on-error --interaction=nonstopmode --include-directory=%~dp0fr --include-directory=%~dp0 --include-directory=%~dp0en --output-directory=%~dp0output %~dp0fr\XCSoar-manual-fr.tex
| onkelhotte/XCSoar | doc/manual/generate_manuals.bat | bat | gpl-2.0 | 1,736 |
rmdir /s /q temp
git clone --depth=1 --branch=master https://github.com/dronecan/DSDL temp
rmdir /Q /S temp\.git
xcopy /E /C /R /Y temp\ .\
rmdir /s /q temp
| virtualrobotix/MissionPlanner | ExtLibs/DroneCAN/dsdl/pull.bat | bat | gpl-3.0 | 157 |
C:\"Program Files"\MongoDB\Server\3.2\bin\mongod.exe --dbpath "C:\Program Files\MongoDB\Server\3.2\data\db"
ECHO
PAUSE
EXIT | muchu1983/104_cameo | mongodb.bat | bat | bsd-3-clause | 123 |
cmd_lib/gen_crc32table := gcc -Wp,-MD,lib/.gen_crc32table.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o lib/gen_crc32table lib/gen_crc32table.c
deps_lib/gen_crc32table := \
lib/gen_crc32table.c \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-64.h \
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/include/stddef.h \
/usr/include/bits/types.h \
/usr/include/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio2.h \
lib/crc32defs.h \
/usr/include/inttypes.h \
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/include/stdint.h \
/usr/include/stdint.h \
/usr/include/bits/wchar.h \
lib/gen_crc32table: $(deps_lib/gen_crc32table)
$(deps_lib/gen_crc32table):
| p500-ics-cm9/Franco-ICS-Kernel | lib/.gen_crc32table.cmd | bat | gpl-2.0 | 1,121 |
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.SQLCe\bin\Release\Kooboo.CMS.Content.Persistence.SQLCe.dll" "SQLCe\Kooboo.CMS.Content.Persistence.SQLCe.dll"
copy "..\..\..\Lib\SQLCe\*.dll" "SQLCe\" /Y
copy "..\..\..\Lib\SQLCe\NativeBinaries\x86\*.dll" "SQLCe\" /Y
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.Mysql\bin\Release\Kooboo.CMS.Content.Persistence.Mysql.dll" "Mysql\Kooboo.CMS.Content.Persistence.Mysql.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.SQLServer\bin\Release\Kooboo.CMS.Content.Persistence.SQLServer.dll" "SQLServer\Kooboo.CMS.Content.Persistence.SQLServer.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.MongoDB\bin\Release\Kooboo.CMS.Content.Persistence.MongoDB.dll" "MongoDB\Kooboo.CMS.Content.Persistence.MongoDB.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.AzureBlobService\bin\Release\Kooboo.CMS.Content.Persistence.AzureBlobService.dll" "AzureBlob\Kooboo.CMS.Content.Persistence.AzureBlobService.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.AzureBlobService\bin\Release\Microsoft.WindowsAzure.StorageClient.dll" "AzureBlob\Microsoft.WindowsAzure.StorageClient.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.FileServerProvider\bin\Release\Kooboo.CMS.Content.Persistence.FileServerProvider.dll" "FileServerProvider\Kooboo.CMS.Content.Persistence.FileServerProvider.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.FileServer.Interfaces\bin\Release\Kooboo.CMS.Content.FileServer.Interfaces.dll" "FileServerProvider\Kooboo.CMS.Content.FileServer.Interfaces.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.Couchbase\bin\Release\Couchbase.dll" "Couchbase\Couchbase.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.Couchbase\bin\Release\Enyim.Caching.dll" "Couchbase\Enyim.Caching.dll"
copy "..\..\Kooboo.CMS.Content\Kooboo.CMS.Content.Persistence.Couchbase\bin\Release\Kooboo.CMS.Content.Persistence.Couchbase.dll" "Couchbase\Kooboo.CMS.Content.Persistence.Couchbase.dll"
..\7z\7z a ..\Released\Content_Providers.zip AzureBlob\*.* FileServerProvider\*.* MongoDB\*.* Mysql\*.* SQLCe\*.* SQLServer\*.* Couchbase\*.*
| jtm789/CMS | Kooboo.CMS/Publish/ContentProviders/Publish.bat | bat | bsd-3-clause | 2,227 |
@echo off
echo Chinook Database Version 1.4
echo.
if "%1"=="" goto MENU
if not exist %1 goto ERROR
set SQLFILE=%1
goto RUNSQL
:ERROR
echo The file %1 does not exist.
echo.
goto END
:MENU
echo Options:
echo.
echo 1. Run Chinook_Sqlite.sql
echo 2. Run Chinook_Sqlite_AutoIncrementPKs.sql
echo 3. Exit
echo.
choice /c 123
if (%ERRORLEVEL%)==(1) set SQLFILE=Chinook_Sqlite.sql
if (%ERRORLEVEL%)==(2) set SQLFILE=Chinook_Sqlite_AutoIncrementPKs.sql
if (%ERRORLEVEL%)==(3) goto END
:RUNSQL
echo.
echo Running %SQLFILE%...
if exist %SQLFILE%ite del %SQLFILE%ite
sqlite3 -init %SQLFILE% %SQLFILE%ite
:END
echo.
set SQLFILE=
| aprilcs/sandman | tests/data/CreateSqlite.bat | bat | apache-2.0 | 659 |
executable = /bin/echo
arguments = $(nodename) OK
universe = scheduler
log = job_dagman_subdag_in_splice-A-lower-node.log
notification = NEVER
getenv = true
output = job_dagman_subdag_in_splice-A-lower-node.$(nodename).out
error = job_dagman_subdag_in_splice-A-lower-node.err
queue
| htcondor/htcondor | src/condor_tests/job_dagman_subdag_in_splice-A-lower-node.cmd | bat | apache-2.0 | 338 |
MEMORY
{
PAGE 0: /* Program Memory */
PAGE 1: /* Data Memory */
ADCA_RESULT : origin = 0x000B00, length = 0x000020
ADCB_RESULT : origin = 0x000B20, length = 0x000020
ADCC_RESULT : origin = 0x000B40, length = 0x000020
ADCD_RESULT : origin = 0x000B60, length = 0x000020
ADCA : origin = 0x007400, length = 0x000080
ADCB : origin = 0x007480, length = 0x000080
ADCC : origin = 0x007500, length = 0x000080
ADCD : origin = 0x007580, length = 0x000080
CANA : origin = 0x048000, length = 0x000800
CANB : origin = 0x04A000, length = 0x000800
CLA1 : origin = 0x001400, length = 0x000040 /* CLA registers */
CMPSS1 : origin = 0x005C80, length = 0x000020
CMPSS2 : origin = 0x005CA0, length = 0x000020
CMPSS3 : origin = 0x005CC0, length = 0x000020
CMPSS4 : origin = 0x005CE0, length = 0x000020
CMPSS5 : origin = 0x005D00, length = 0x000020
CMPSS6 : origin = 0x005D20, length = 0x000020
CMPSS7 : origin = 0x005D40, length = 0x000020
CMPSS8 : origin = 0x005D60, length = 0x000020
CPU_TIMER0 : origin = 0x000C00, length = 0x000008 /* CPU Timer0 registers */
CPU_TIMER1 : origin = 0x000C08, length = 0x000008 /* CPU Timer1 registers */
CPU_TIMER2 : origin = 0x000C10, length = 0x000008 /* CPU Timer2 registers */
DACA : origin = 0x005C00, length = 0x000010
DACB : origin = 0x005C10, length = 0x000010
DACC : origin = 0x005C20, length = 0x000010
DMA : origin = 0x001000, length = 0x000200
DMACLASRCSEL : origin = 0x007980, length = 0x000040
ECAP1 : origin = 0x005000, length = 0x000020 /* Enhanced Capture 1 registers */
ECAP2 : origin = 0x005020, length = 0x000020 /* Enhanced Capture 2 registers */
ECAP3 : origin = 0x005040, length = 0x000020 /* Enhanced Capture 3 registers */
ECAP4 : origin = 0x005060, length = 0x000020 /* Enhanced Capture 4 registers */
ECAP5 : origin = 0x005080, length = 0x000020 /* Enhanced Capture 5 registers */
ECAP6 : origin = 0x0050A0, length = 0x000020 /* Enhanced Capture 6 registers */
EMIF1 : origin = 0x047000, length = 0x000800
EMIF2 : origin = 0x047800, length = 0x000800
EQEP1 : origin = 0x005100, length = 0x000040 /* Enhanced QEP 1 registers */
EQEP2 : origin = 0x005140, length = 0x000040 /* Enhanced QEP 2 registers */
EQEP3 : origin = 0x005180, length = 0x000040 /* Enhanced QEP 3 registers */
EPWM1 : origin = 0x004000, length = 0x000100 /* Enhanced PWM 1 registers */
EPWM2 : origin = 0x004100, length = 0x000100 /* Enhanced PWM 2 registers */
EPWM3 : origin = 0x004200, length = 0x000100 /* Enhanced PWM 3 registers */
EPWM4 : origin = 0x004300, length = 0x000100 /* Enhanced PWM 4 registers */
EPWM5 : origin = 0x004400, length = 0x000100 /* Enhanced PWM 5 registers */
EPWM6 : origin = 0x004500, length = 0x000100 /* Enhanced PWM 6 registers */
EPWM7 : origin = 0x004600, length = 0x000100 /* Enhanced PWM 7 registers */
EPWM8 : origin = 0x004700, length = 0x000100 /* Enhanced PWM 8 registers */
EPWM9 : origin = 0x004800, length = 0x000100 /* Enhanced PWM 9 registers */
EPWM10 : origin = 0x004900, length = 0x000100 /* Enhanced PWM 10 registers */
EPWM11 : origin = 0x004A00, length = 0x000100 /* Enhanced PWM 11 registers */
EPWM12 : origin = 0x004B00, length = 0x000100 /* Enhanced PWM 12 registers */
FLASH0_CTRL : origin = 0x05F800, length = 0x000300
FLASH0_ECC : origin = 0x05FB00, length = 0x000040
GPIOCTRL : origin = 0x007C00, length = 0x000180 /* GPIO control registers */
GPIODAT : origin = 0x007F00, length = 0x000030 /* GPIO data registers */
I2CA : origin = 0x007300, length = 0x000040 /* I2C-A registers */
I2CB : origin = 0x007340, length = 0x000040 /* I2C-B registers */
IPC : origin = 0x050000, length = 0x000024
FLASHPUMPSEMAPHORE : origin = 0x050024, length = 0x000002
MEMCFG : origin = 0x05F400, length = 0x000080 /* Mem Config registers */
EMIF1CONFIG : origin = 0x05F480, length = 0x000020 /* Emif-1 Config registers */
ACCESSPROTECTION : origin = 0x05F4C0, length = 0x000040 /* Access Protection registers */
MEMORYERROR : origin = 0x05F500, length = 0x000040 /* Access Protection registers */
MCBSPA : origin = 0x006000, length = 0x000040 /* McBSP-A registers */
MCBSPB : origin = 0x006040, length = 0x000040 /* McBSP-A registers */
NMIINTRUPT : origin = 0x007060, length = 0x000010 /* NMI Watchdog Interrupt Registers */
PIE_CTRL : origin = 0x000CE0, length = 0x000020 /* PIE control registers */
PIE_VECT : origin = 0x000D00, length = 0x000200 /* PIE Vector Table */
SCIA : origin = 0x007200, length = 0x000010 /* SCI-A registers */
SCIB : origin = 0x007210, length = 0x000010 /* SCI-B registers */
SCIC : origin = 0x007220, length = 0x000010 /* SCI-C registers */
SCID : origin = 0x007230, length = 0x000010 /* SCI-D registers */
SDFM1 : origin = 0x005E00, length = 0x000080 /* Sigma delta 1 registers */
SDFM2 : origin = 0x005E80, length = 0x000080 /* Sigma delta 2 registers */
SPIA : origin = 0x006100, length = 0x000010
SPIB : origin = 0x006110, length = 0x000010
SPIC : origin = 0x006120, length = 0x000010
SPID : origin = 0x006130, length = 0x000010
CLK_CFG : origin = 0x05D200, length = 0x000100
CPU_SYS : origin = 0x05D300, length = 0x000100
WD : origin = 0x007000, length = 0x000040
XINT : origin = 0x007070, length = 0x000010
DCSM_Z1 : origin = 0x05F000, length = 0x000030 /* Zone 1 Dual code security module registers */
DCSM_Z2 : origin = 0x05F040, length = 0x000030 /* Zone 2 Dual code security module registers */
DCSM_COMMON : origin = 0x05F070, length = 0x000010 /* Common Dual code security module registers */
}
SECTIONS
{
/*** PIE Vect Table and Boot ROM Variables Structures ***/
UNION run = PIE_VECT, PAGE = 1
{
PieVectTableFile
GROUP
{
EmuBModeVar
}
}
AdcaResultFile : > ADCA_RESULT, PAGE = 1
AdcbResultFile : > ADCB_RESULT, PAGE = 1
AdccResultFile : > ADCC_RESULT, PAGE = 1
AdcdResultFile : > ADCD_RESULT, PAGE = 1
AdcaRegsFile : > ADCA, PAGE = 1
AdcbRegsFile : > ADCB, PAGE = 1
AdccRegsFile : > ADCC, PAGE = 1
AdcdRegsFile : > ADCD, PAGE = 1
CanaRegsFile : > CANA, PAGE = 1
CanbRegsFile : > CANB, PAGE = 1
Cla1RegsFile : > CLA1, PAGE = 1
Cla1SoftIntRegsFile : > PIE_CTRL, PAGE = 1, type=DSECT
Cmpss1RegsFile : > CMPSS1, PAGE = 1
Cmpss2RegsFile : > CMPSS2, PAGE = 1
Cmpss3RegsFile : > CMPSS3, PAGE = 1
Cmpss4RegsFile : > CMPSS4, PAGE = 1
Cmpss5RegsFile : > CMPSS5, PAGE = 1
Cmpss6RegsFile : > CMPSS6, PAGE = 1
Cmpss7RegsFile : > CMPSS7, PAGE = 1
Cmpss8RegsFile : > CMPSS8, PAGE = 1
CpuTimer0RegsFile : > CPU_TIMER0, PAGE = 1
CpuTimer1RegsFile : > CPU_TIMER1, PAGE = 1
CpuTimer2RegsFile : > CPU_TIMER2, PAGE = 1
DacaRegsFile : > DACA PAGE = 1
DacbRegsFile : > DACB PAGE = 1
DaccRegsFile : > DACC PAGE = 1
DcsmZ1RegsFile : > DCSM_Z1, PAGE = 1
DcsmZ2RegsFile : > DCSM_Z2, PAGE = 1
DcsmCommonRegsFile : > DCSM_COMMON, PAGE = 1
DmaRegsFile : > DMA PAGE = 1
DmaClaSrcSelRegsFile : > DMACLASRCSEL PAGE = 1
ECap1RegsFile : > ECAP1, PAGE = 1
ECap2RegsFile : > ECAP2, PAGE = 1
ECap3RegsFile : > ECAP3, PAGE = 1
ECap4RegsFile : > ECAP4, PAGE = 1
ECap5RegsFile : > ECAP5, PAGE = 1
ECap6RegsFile : > ECAP6, PAGE = 1
Emif1RegsFile : > EMIF1 PAGE = 1
Emif2RegsFile : > EMIF2 PAGE = 1
EPwm1RegsFile : > EPWM1, PAGE = 1
EPwm2RegsFile : > EPWM2, PAGE = 1
EPwm3RegsFile : > EPWM3, PAGE = 1
EPwm4RegsFile : > EPWM4, PAGE = 1
EPwm5RegsFile : > EPWM5, PAGE = 1
EPwm6RegsFile : > EPWM6, PAGE = 1
EPwm7RegsFile : > EPWM7, PAGE = 1
EPwm8RegsFile : > EPWM8, PAGE = 1
EPwm9RegsFile : > EPWM9, PAGE = 1
EPwm10RegsFile : > EPWM10, PAGE = 1
EPwm11RegsFile : > EPWM11, PAGE = 1
EPwm12RegsFile : > EPWM12, PAGE = 1
EQep1RegsFile : > EQEP1, PAGE = 1
EQep2RegsFile : > EQEP2, PAGE = 1
EQep3RegsFile : > EQEP3, PAGE = 1
Flash0CtrlRegsFile : > FLASH0_CTRL PAGE = 1
Flash0EccRegsFile : > FLASH0_ECC PAGE = 1
GpioCtrlRegsFile : > GPIOCTRL, PAGE = 1
GpioDataRegsFile : > GPIODAT, PAGE = 1
I2caRegsFile : > I2CA, PAGE = 1
I2cbRegsFile : > I2CB, PAGE = 1
IpcRegsFile : > IPC, PAGE = 1
FlashPumpSemaphoreRegsFile : > FLASHPUMPSEMAPHORE, PAGE = 1
MemCfgRegsFile : > MEMCFG, PAGE = 1
Emif1ConfigRegsFile : > EMIF1CONFIG, PAGE = 1
AccessProtectionRegsFile : > ACCESSPROTECTION, PAGE = 1
MemoryErrorRegsFile : > MEMORYERROR, PAGE = 1
McbspaRegsFile : > MCBSPA, PAGE = 1
McbspbRegsFile : > MCBSPB, PAGE = 1
NmiIntruptRegsFile : > NMIINTRUPT, PAGE = 1
PieCtrlRegsFile : > PIE_CTRL, PAGE = 1
SciaRegsFile : > SCIA, PAGE = 1
ScibRegsFile : > SCIB, PAGE = 1
ScicRegsFile : > SCIC, PAGE = 1
ScidRegsFile : > SCID, PAGE = 1
Sdfm1RegsFile : > SDFM1, PAGE = 1
Sdfm2RegsFile : > SDFM2, PAGE = 1
SpiaRegsFile : > SPIA, PAGE = 1
SpibRegsFile : > SPIB, PAGE = 1
SpicRegsFile : > SPIC, PAGE = 1
SpidRegsFile : > SPID, PAGE = 1
ClkCfgRegsFile : > CLK_CFG, PAGE = 1
CpuSysRegsFile : > CPU_SYS, PAGE = 1
WdRegsFile : > WD, PAGE = 1
XintRegsFile : > XINT PAGE = 1
MemCfgRegs : > MEMCFG PAGE = 1
}
/*
//===========================================================================
// End of file.
//===========================================================================
*/
| nongxiaoming/rt-thread | bsp/tms320f28379d/libraries/headers/cmd/F2837xD_Headers_nonBIOS_cpu2.cmd | bat | apache-2.0 | 11,259 |
@echo off
echo Initializing database...
php composer.phar install --no-scripts --no-progress -q
php bin/console doctrine:database:create --if-not-exists
php bin/console doctrine:schema:update --force
echo Successfully initialized database!
pause
:finish
| MihailDobrev/SoftUni | Tech Module/Software Technologies/Exam Software Technologies 02.08.2017/PHP Solution/init-db.bat | bat | mit | 260 |
@echo off
echo [INFO] create db.
echo [INFO] please confirm db encoding utf-8.
echo [INFO] please confirm has modified es/web/pom.xml--^>profile--^>development---^>connection.admin.url/connection.username/password
cd %~dp0
cd ../web
call mvn db:create
cd ../bin
pause | chenhaipeng/es | bin/create-db.bat | bat | apache-2.0 | 269 |
@echo off
"C:\Program Files (x86)\Diffuse\diffuse" lite-php71-w64.iss lite-php72-w64.iss lite-php73-w64.iss | WPN-XM/WPN-XM | installers/diff-lite.bat | bat | mit | 110 |
mage.exe -cc | jpoehls/snippets | ClickOnceUpdateTest/clear-app-cache.bat | bat | mit | 12 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\CakeGCM.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\CakeGCM.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| ker0x/CakeGCM | docs/make.bat | bat | mit | 7,482 |
:: Below is an example of extending a deploy.cmd file (see kudu custom deployment scripts) to clear an Azure CDN endpoint
:: using the Azure Resource Manager (ARM) API with help of cURL.exe and jq.exe utils.
:: 4. Purge CDN cache of all caches files
:: Requires an application to be setup in the Azure Active Directory on the same tenant,
:: with a client id and key/secret, and permissions to the Azure CDN Endpoint (CDN Endpoint Contributor)
SET CLIENT_ID="jan.juvan@agito.si"
SET CLIENT_SECRET="Bender.17"
IF NOT DEFINED CLIENT_ID (
echo 4. Skipping Azure CDN cache purge. App Setting "CLIENT_ID" was not found. Potentially this is a local test deployment run.
goto end
)
IF NOT DEFINED CLIENT_SECRET (
echo 4. Skipping Azure CDN cache purge. App Setting "CLIENT_SECRET" was not found. Potentially this is a local test deployment run.
goto end
)
echo 4. Purging CDN of all cached files
:: You need to have extracted cURL files into the below location
SET CURL_CMD="$(Build.Repository.LocalPath)\build\curl-7.55.1-win64-mingw\bin\curl.exe"
:: You need to have jq file in the below location
SET JQ_CMD="$(Build.Repository.LocalPath)\build\jq\jq-win64.exe" -r
SET ACCESS_TOKEN_TMP_FILE=access_token.tmp
SET TENANT_ID=af16f59b-6e8d-40dc-86f5-61faff4b099a
:: Request access token, then grab it out of the response JSON with jq.exe and store it in a tmp file
%CURL_CMD% -X POST ^
-F "grant_type=client_credentials" ^
-F "client_id=%CLIENT_ID%" ^
-F "client_secret=%CLIENT_SECRET%" ^
-F "resource=https://management.core.windows.net/" ^
https://login.windows.net/%TENANT_ID%/oauth2/token | %JQ_CMD% .access_token > %ACCESS_TOKEN_TMP_FILE%
:: Set access token in a variable
for /f "tokens=*" %%a in (%ACCESS_TOKEN_TMP_FILE%) do (
SET ACCESS_TOKEN=%%a
)
call del %ACCESS_TOKEN_TMP_FILE%
SET SUBSCRIPTION_ID=f69598c2-84f3-42c9-a29c-d8d87a1e1b96
SET RESOURCE_GROUP=Team-14CDNRG
SET CDN_PROFILE=Team-14CDN
SET CDN_ENDPOINT=Modern-AppEP
call :ExecuteCmd %CURL_CMD% -X POST ^
-H "Authorization: Bearer %ACCESS_TOKEN%" ^
-H "Content-Type: application/json" ^
-H "Accept: application/json" ^
-d "{ \"contentPaths\": [ \"/*\" ] }" ^
https://management.azure.com/subscriptions/%SUBSCRIPTION_ID%/resourceGroups/%RESOURCE_GROUP%/providers/Microsoft.Cdn/profiles/%CDN_PROFILE%/endpoints/%CDN_ENDPOINT%/purge?api-version=2016-10-02
IF !ERRORLEVEL! NEQ 0 goto error | agitavitjuvanjan/Team-14 | Purge.bat | bat | mit | 2,392 |
git add .
git c -m %1 | madsbangh/misc-scripts | aac.bat | bat | mit | 22 |
SET version=%1
set artifactsdir=artifacts
IF NOT EXIST "%artifactsDir%" (
mkdir "%artifactsDir%"
)
nuget pack HstsSettings.nuspec -Version %version% -OutputDirectory "%artifactsDir%" | estei/hsts-site-extension | build.cmd | bat | mit | 186 |
/media/DATAPART5/applications/free_surfer_new/freesurfer/bin/trac-paths
| imaginebog/kmc_proc | tracula/trac-paths.cmd | bat | mit | 73 |
@setlocal
@set node_name=slimrt
@rem Get the absolute path to the parent directory,
@rem which is assumed to be the node root.
@for /F "delims=" %%I in ("%~dp0..") do @set node_root=%%~fI
@set releases_dir=%node_root%\releases
@rem Parse ERTS version and release version from start_erl.data
@for /F "usebackq tokens=1,2" %%I in ("%releases_dir%\start_erl.data") do @(
@call :set_trim erts_version %%I
@call :set_trim release_version %%J
)
@set vm_args=%releases_dir%\%release_version%\vm.args
@set sys_config=%releases_dir%\%release_version%\sys.config
@set node_boot_script=%releases_dir%\%release_version%\%node_name%
@set clean_boot_script=%releases_dir%\%release_version%\start_clean
@rem extract erlang cookie from vm.args
@for /f "usebackq tokens=1-2" %%I in (`findstr /b \-setcookie "%vm_args%"`) do @set erlang_cookie=%%J
@set erts_bin=%node_root%\erts-%erts_version%\bin
@set service_name=%node_name%_%release_version%
@set erlsrv="%erts_bin%\erlsrv.exe"
@set epmd="%erts_bin%\epmd.exe"
@set escript="%erts_bin%\escript.exe"
@set werl="%erts_bin%\werl.exe"
@set nodetool="%erts_bin%\nodetool"
@if "%1"=="usage" @goto usage
@if "%1"=="install" @goto install
@if "%1"=="uninstall" @goto uninstall
@if "%1"=="start" @goto start
@if "%1"=="stop" @goto stop
@if "%1"=="restart" @call :stop && @goto start
@if "%1"=="console" @goto console
@if "%1"=="ping" @goto ping
@if "%1"=="query" @goto query
@if "%1"=="attach" @goto attach
@if "%1"=="upgrade" @goto upgrade
@echo Unknown command: "%1"
:usage
@echo Usage: %~n0 [install^|uninstall^|start^|stop^|restart^|console^|ping^|query^|attach^|upgrade]
@goto :EOF
:install
@set description=Erlang node %node_name% in %node_root%
@set start_erl=%node_root%\bin\start_erl.cmd
@set args= ++ %node_name% ++ %node_root%
@%erlsrv% add %service_name% -c "%description%" -sname %node_name% -w "%node_root%" -m "%start_erl%" -args "%args%" -stopaction "init:stop()."
@goto :EOF
:uninstall
@%erlsrv% remove %service_name%
@%epmd% -kill
@goto :EOF
:start
@%erlsrv% start %service_name%
@goto :EOF
:stop
@%erlsrv% stop %service_name%
@goto :EOF
:console
@start "%node_name% console" %werl% -boot "%node_boot_script%" -config "%sys_config%" -args_file "%vm_args%" -sname %node_name%
@goto :EOF
:ping
@%escript% %nodetool% ping -sname "%node_name%" -setcookie "%erlang_cookie%"
@exit %ERRORLEVEL%
@goto :EOF
:query
@%erlsrv% list %service_name%
@exit %ERRORLEVEL%
@goto :EOF
:attach
@for /f "usebackq" %%I in (`hostname`) do @set hostname=%%I
start "%node_name% attach" %werl% -boot "%clean_boot_script%" -remsh %node_name%@%hostname% -sname console -setcookie %erlang_cookie%
@goto :EOF
:upgrade
@if "%2"=="" (
@echo Missing upgrade package argument
@echo Usage: %~n0 upgrade {package base name}
@echo NOTE {package base name} MUST NOT include the .tar.gz suffix
@goto :EOF
)
@%escript% %node_root%\bin\install_upgrade.escript %node_name% %erlang_cookie% %2
@goto :EOF
:set_trim
@set %1=%2
@goto :EOF
| slimpp/slimrt | rel/files/slimrt.cmd | bat | mit | 2,982 |
@echo off
SET mypath=%~dp0
echo %mypath:~0,-1%
php %mypath:~0,-1%/pokelio.php "controller=Deployer_Installer" "action=Install" %1 %2 %3 %4 %5 %6 %7 %8 %9 | betuto92/Pokelio_Framework | Pokelio/installer.bat | bat | mit | 156 |
c:\python27\python.exe portal.py
| nosuchtim/VizBench | bin/portal.bat | bat | mit | 33 |
rem NOTE: this batch file is to be run in a Visual Studio command prompt
rem Delete old files
del *.obj
del *.ilk
del *.exe
del *.pdb
rem Compile files into .obj files in current directory
cl /I"..\..\..\testcasesupport" /W3 /MT /GS /RTC1 /bigobj /EHsc /nologo /c main.cpp CWE*.cpp CWE*.c ..\..\..\testcasesupport\io.c ..\..\..\testcasesupport\std_thread.c
rem Link all .obj file into a exe
cl /FeCWE78_s08 *.obj /I"..\..\..\testcasesupport" /W3 /MT /GS /RTC1 /bigobj /EHsc /nologo
| maurer/tiamat | samples/Juliet/testcases/CWE78_OS_Command_Injection/s08/CWE78_s08.bat | bat | mit | 498 |
cmd_net/sched/em_cmp.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/sched/em_cmp.ko net/sched/em_cmp.o net/sched/em_cmp.mod.o
| avareldalton85/rpi2-linux-rt | net/sched/.em_cmp.ko.cmd | bat | gpl-2.0 | 235 |
cmd_fs/proc/built-in.o := /home/sebastian/android/sabermod/bin/arm-linux-androideabi-ld -EL -r -o fs/proc/built-in.o fs/proc/proc.o
| araca/Zen-Kernel-Huawei-P7 | fs/proc/.built-in.o.cmd | bat | gpl-2.0 | 138 |
cmd_drivers/video/built-in.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o drivers/video/built-in.o drivers/video/fb_notify.o drivers/video/fb.o drivers/video/console/built-in.o drivers/video/backlight/built-in.o drivers/video/display/built-in.o drivers/video/cfbfillrect.o drivers/video/cfbcopyarea.o drivers/video/cfbimgblt.o drivers/video/msm/built-in.o drivers/video/output.o
| paxchristos/R800x-2.3.3-Kernel | drivers/video/.built-in.o.cmd | bat | gpl-2.0 | 451 |
cmd_net/rfkill/built-in.o := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o net/rfkill/built-in.o net/rfkill/rfkill.o
| kingklick/kk-evo-kernel | net/rfkill/.built-in.o.cmd | bat | gpl-2.0 | 163 |
cmd_net/ipv4/netfilter/nf_nat.o := /home/ar/android/aosp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/ipv4/netfilter/nf_nat.o net/ipv4/netfilter/nf_nat_core.o net/ipv4/netfilter/nf_nat_helper.o net/ipv4/netfilter/nf_nat_proto_unknown.o net/ipv4/netfilter/nf_nat_proto_common.o net/ipv4/netfilter/nf_nat_proto_tcp.o net/ipv4/netfilter/nf_nat_proto_udp.o net/ipv4/netfilter/nf_nat_proto_icmp.o
| kannu1994/crespo_kernel | net/ipv4/netfilter/.nf_nat.o.cmd | bat | gpl-2.0 | 425 |
cmd_net/core/net-sysfs.o := arm-linux-gnueabi-gcc -Wp,-MD,net/core/.net-sysfs.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(net_sysfs)" -D"KBUILD_MODNAME=KBUILD_STR(net_sysfs)" -c -o net/core/net-sysfs.o net/core/net-sysfs.c
deps_net/core/net-sysfs.o := \
net/core/net-sysfs.c \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/wireless/ext/sysfs.h) \
$(wildcard include/config/hotplug.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan/80211.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/if.h \
include/linux/socket.h \
$(wildcard include/config/compat.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/socket.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
$(wildcard include/config/sysctl.h) \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/kmemcheck.h \
$(wildcard include/config/kmemcheck.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock_api_up.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/math64.h \
include/linux/net.h \
include/linux/random.h \
include/linux/ioctl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/sysctl.h \
include/linux/textsearch.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/percpu.h \
$(wildcard include/config/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/err.h \
include/net/checksum.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/semaphore.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/scatterlist.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/mach/es209ra.h) \
$(wildcard include/config/vmsplit/2g.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/have/mlocked/page/bit.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/if_packet.h \
include/linux/delay.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/delay.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/pimsm/v1.h) \
$(wildcard include/config/ip/pimsm/v2.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/pimsm/v2.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/debug/shirq.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/irq_cpustat.h \
include/linux/if_arp.h \
include/net/sock.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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmparam.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/msgbuf.h \
include/linux/filter.h \
include/linux/rculist_nulls.h \
include/linux/poll.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/net/dst.h \
$(wildcard include/config/net/cls/route.h) \
include/linux/rtnetlink.h \
include/linux/netlink.h \
include/linux/if_link.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/net/rtnetlink.h \
include/net/netlink.h \
include/linux/wireless.h \
include/net/wext.h \
net/core/net-sysfs.h \
net/core/net-sysfs.o: $(deps_net/core/net-sysfs.o)
$(deps_net/core/net-sysfs.o):
| b8e5n/KTG-kernel_es209ra | net/core/.net-sysfs.o.cmd | bat | gpl-2.0 | 29,951 |
cmd_net/unix/unix.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o net/unix/unix.o net/unix/af_unix.o net/unix/garbage.o net/unix/sysctl_net_unix.o
| avareldalton85/rpi2-linux-rt | net/unix/.unix.o.cmd | bat | gpl-2.0 | 210 |
cmd_usr/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o usr/built-in.o usr/initramfs_data.o
| sleshepic/epic_touch_kernel | usr/.built-in.o.cmd | bat | gpl-2.0 | 140 |
cmd_sound/soc/davinci/snd-soc-davinci-mcasp.o := arm-arago-linux-gnueabi-ld -EL -r -o sound/soc/davinci/snd-soc-davinci-mcasp.o sound/soc/davinci/davinci-mcasp.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | sound/soc/davinci/.snd-soc-davinci-mcasp.o.cmd | bat | gpl-2.0 | 166 |
cmd_drivers/macintosh/built-in.o := rm -f drivers/macintosh/built-in.o; /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs drivers/macintosh/built-in.o
| dagnarf/sgh-i717-dagkernel | drivers/macintosh/.built-in.o.cmd | bat | gpl-2.0 | 169 |
@echo off
REM ----------------------------------------------------------------
REM This is a build file for the lp_solve Java wrapper stub library
REM on Windows platforms.
REM
REM Requirements:
REM
REM - Microsoft Visual C++ compiler (I used V 7, others might work)
REM - Visual Studio envirement variables must be set.
REM - Java Development Kit 1.4.x installed
REM - JAVA_HOME environment variable set
REM - lp_solve windows archive lp_solve_5.5_dev.zip
REM
REM Change the paths below this line and you should be ready to go!
REM ----------------------------------------------------------------
REM -- Set the path to the lp_solve directories here !
REM --
set c=cl
REM determine platform (win32/win64)
echo main(){printf("SET PLATFORM=win%%d\n", (int) (sizeof(void *)*8));}>platform.c
%c% /nologo platform.c /Feplatform.exe
del platform.c
platform.exe >platform.bat
del platform.exe
call platform.bat
del platform.bat
if not exist %PLATFORM%\*.* md %PLATFORM%
REM -- Here we go !
REM --
set SRC_DIR=..\src\c
set OPTIONS=/LD /O2 /Gz /MT
set DEFINES=-DWIN32
REM The 64 bit java sdk also uses win32 as folder
set INCLUDES=-I "%JAVA_HOME%\include" -I "%JAVA_HOME%\include\win32" -I %LPSOLVE_DIR% -I %SRC_DIR%
set LIBS=%LPSOLVE_DIR%\lpsolve55\bin\%PLATFORM%\lpsolve55.lib
set SRCFILES=%SRC_DIR%\lpsolve5j.cpp
cl %OPTIONS% %DEFINES% %INCLUDES% %LIBS% %SRCFILES% /Fe%PLATFORM%\lpsolve55j.dll
if exist *.obj del *.obj
set PLATFORM= | ftomitar/TCC | current/Tcc - 1.0/lpsolver-libs/build.bat | bat | gpl-2.0 | 1,436 |
>>> 3
3
| simontakite/sysadmin | pythonscripts/practicalprogramming/basic/simplevalue.cmd | bat | gpl-2.0 | 8 |
cmd_drivers/gpu/msm/msm_adreno.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/gpu/msm/msm_adreno.o drivers/gpu/msm/adreno_ringbuffer.o drivers/gpu/msm/adreno_drawctxt.o drivers/gpu/msm/adreno_postmortem.o drivers/gpu/msm/adreno_snapshot.o drivers/gpu/msm/adreno_a2xx.o drivers/gpu/msm/adreno_a2xx_trace.o drivers/gpu/msm/adreno_a2xx_snapshot.o drivers/gpu/msm/adreno_a3xx.o drivers/gpu/msm/adreno_a3xx_trace.o drivers/gpu/msm/adreno_a3xx_snapshot.o drivers/gpu/msm/adreno.o drivers/gpu/msm/adreno_debugfs.o
| friedrich420/S4-GPE-AEL-Kernel-4.4.3 | drivers/gpu/msm/.msm_adreno.o.cmd | bat | gpl-2.0 | 552 |
cmd_sound/isa/ad1848/built-in.o := rm -f sound/isa/ad1848/built-in.o; /home/dman3285/CM10/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/isa/ad1848/built-in.o
| AOSP-ZEUS/android_kernel_samsung_n1 | sound/isa/ad1848/.built-in.o.cmd | bat | gpl-2.0 | 183 |
@Echo off
:: 1. Choose your KRE Version
SET KRE_VERSION=1.0.0-beta1
SET KRE_ARCH=x86
SET KRE_CLR=CLR
@echo off
cd %~dp0
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
:: 2. Install Nuget to Cache
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%'"
:: 3. Copy Nuget from Cache to Local
:copyNuget
IF EXIST .nuget\nuget.exe goto kvmInstall
md .nuget
copy %CACHED_NUGET% .nuget\nuget.exe > nul
:: 4. Install KVM
:kvmInstall
Start /w PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0build\build.ps1' '%~dp0'"
:: 5. Restore Build Components
IF EXIST packages\KoreBuild goto runBuild
.nuget\NuGet.exe install KoreBuild -version 0.2.1-rc1-10068 -ExcludeVersion -o packages -nocache -pre
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
:: 6. Install KRE
SET KRE_HOME=%USERPROFILE%\.kre
CALL %KRE_HOME%\bin\kvm install %KRE_VERSION% -%KRE_ARCH% -r %KRE_CLR%
:: 7. Create Root Nodejs Directory
:runBuild
IF NOT EXIST bin mkdir bin
IF NOT EXIST bin\nodejs mkdir bin\nodejs
:: 8. Run Build
CALL %KRE_HOME%\bin\kvm use %KRE_VERSION% -%KRE_ARCH% -r %KRE_CLR%
packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f build\makefile.shade %* | Devbot-Net/Devbot.Net | build.cmd | bat | gpl-2.0 | 1,603 |
@echo off
SET VERSION_MAJOR=0
SET VERSION_MINOR=1
SET CC=wcc -bt=dos -zq -oxhs
SET CC32=wcc386 -mf -zl -zls -zq -oxhs
SET AS=wasm -zq
SET DEFS=-dVERSION_MAJOR=%VERSION_MAJOR% -dVERSION_MINOR=%VERSION_MINOR%
%CC% %DEFS% SoftIMFC.c
%CC% %DEFS% IMFC.c
%CC% %DEFS% DBS2P.c
%CC% %DEFS% MPU401.c
%CC% %DEFS% res_imfc.c
%AS% %DEFS% res_glue.asm
%AS% %DEFS% res_end.asm
wlink @softimfc.wl
| Scalibq/FB-01-Emulator | SoftIMFC/build.bat | bat | gpl-2.0 | 383 |
cmd_fs/xattr_acl.o := ppc_4xx-gcc -m32 -Wp,-MD,fs/.xattr_acl.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(xattr_acl)" -D"KBUILD_MODNAME=KBUILD_STR(xattr_acl)" -c -o fs/.tmp_xattr_acl.o fs/xattr_acl.c
deps_fs/xattr_acl.o := \
fs/xattr_acl.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/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/smp.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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \
$(wildcard include/config/phys/64bit.h) \
include/asm-generic/int-ll64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \
$(wildcard include/config/vsx.h) \
$(wildcard include/config/ppc32.h) \
$(wildcard include/config/ppc/prep.h) \
$(wildcard include/config/task/size.h) \
$(wildcard include/config/kernel/start.h) \
$(wildcard include/config/ppc64.h) \
$(wildcard include/config/4xx.h) \
$(wildcard include/config/booke.h) \
$(wildcard include/config/altivec.h) \
$(wildcard include/config/spe.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \
$(wildcard include/config/40x.h) \
$(wildcard include/config/fsl/emb/perfmon.h) \
$(wildcard include/config/8xx.h) \
$(wildcard include/config/ppc/book3s/64.h) \
$(wildcard include/config/ppc/book3s/32.h) \
$(wildcard include/config/ppc/book3e/64.h) \
$(wildcard include/config/e200.h) \
$(wildcard include/config/ppc/cell.h) \
include/linux/stringify.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \
$(wildcard include/config/mpc10x/bridge.h) \
$(wildcard include/config/ppc/83xx.h) \
$(wildcard include/config/8260.h) \
$(wildcard include/config/ppc/mpc52xx.h) \
$(wildcard include/config/bdi/switch.h) \
$(wildcard include/config/power3.h) \
$(wildcard include/config/power4.h) \
$(wildcard include/config/44x.h) \
$(wildcard include/config/e500.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \
$(wildcard include/config/power4/only.h) \
$(wildcard include/config/ibm405/err77.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \
$(wildcard include/config/403gcx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \
$(wildcard include/config/ppc/e500mc.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \
$(wildcard include/config/debugger.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/6xx.h) \
$(wildcard include/config/booke/wdt.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/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) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
include/linux/linkage.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/typecheck.h \
include/linux/dynamic_debug.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \
include/linux/byteorder/big_endian.h \
include/linux/swab.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \
include/linux/byteorder/generic.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \
$(wildcard include/config/ppc/book3e.h) \
$(wildcard include/config/perf/events.h) \
include/linux/errno.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \
$(wildcard include/config/ppc/64k/pages.h) \
$(wildcard include/config/ppc/16k/pages.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/relocatable.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/ppc/std/mmu/64.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/ppc/smlpar.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \
$(wildcard include/config/crash/dump.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/not/coherent/cache.h) \
$(wildcard include/config/pte/64bit.h) \
include/asm-generic/getorder.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \
$(wildcard include/config/spu/base.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
include/trace/define_trace.h \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \
$(wildcard include/config/dynamic/ftrace.h) \
include/trace/events/module.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/posix_acl_xattr.h \
include/linux/posix_acl.h \
fs/xattr_acl.o: $(deps_fs/xattr_acl.o)
$(deps_fs/xattr_acl.o):
| mattkelly/linux-2.6-xlnx | fs/.xattr_acl.o.cmd | bat | gpl-2.0 | 21,086 |
cmd_sound/usb/misc/built-in.o := rm -f sound/usb/misc/built-in.o; /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD sound/usb/misc/built-in.o
| RittikBhowmik/Project-Crater-Kernel-GT-i9152 | sound/usb/misc/.built-in.o.cmd | bat | gpl-2.0 | 175 |
cmd_/opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/linux/tc_act/.install := perl scripts/headers_install.pl /OpenSource/13_UExxF8xxx/binutils/arm-mips-src-20121018/build.arm.cortex-a8/sources/kernel-headers/include/linux/tc_act /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/linux/tc_act arm tc_csum.h tc_gact.h tc_ipt.h tc_mirred.h tc_nat.h tc_pedit.h tc_skbedit.h; perl scripts/headers_install.pl /OpenSource/13_UExxF8xxx/binutils/arm-mips-src-20121018/build.arm.cortex-a8/sources/kernel-headers/include/linux/tc_act /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/linux/tc_act arm ; for F in ; do echo "\#include <asm-generic/$$F>" > /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/linux/tc_act/$$F; done; touch /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/linux/tc_act/.install
| javilonas/NCam | cross/Toolchain-SamsungTV/arm-v7a8v3r1-linux-gnueabi/sys-root/usr/include/linux/tc_act/..install.cmd | bat | gpl-3.0 | 902 |
create class Shape
create class Window
create class Test1
create class Test2
create class Test3
| wojciiii/RapidBreeze | src/test.cmd | bat | gpl-3.0 | 97 |
@echo off
setlocal enabledelayedexpansion
set PLAY_VERSION="2.2.3"
if not defined SBT_SCALA_VERSION set SBT_SCALA_VERSION=auto
if defined JPDA_PORT set DEBUG_PARAM="-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=%JPDA_PORT%"
set p=%~dp0
set p=%p:\=/%
set fp=file:///!p: =%%20!
java -Xms512M -Xmx1024M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M %DEBUG_PARAM% %JAVA_OPTS% -Dfile.encoding=UTF-8 -Dinput.encoding=Cp1252 -Dplay.version="%PLAY_VERSION%" -Dsbt.ivy.home="%~dp0..\repository" -Dplay.home="%~dp0." -Dsbt.boot.properties="%fp%sbt/sbt.boot.properties" -Dsbt.scala.version="%SBT_SCALA_VERSION%" %PLAY_OPTS% -jar "%~dp0sbt\sbt-launch.jar" %*
:end
endlocal
| andreas-dai/RecommenderStreamEval | framework/build.bat | bat | lgpl-3.0 | 690 |
@echo off
if "%1" == "reset" goto RESET
if "%2" == "" goto NORMAL
:BIN
REM jflash project_file download_file
ECHO Open a project and data file, start auto processing and exit
"C:\Program Files (x86)\SEGGER\JLink\JFlash.exe" -openprj"%GLADIATOR_HOME%\Scripts\JFlashPro\lyg.jflash" -open"%~1,%2" -auto -exit
IF ERRORLEVEL 1 goto ERROR
goto END
:RESET
"C:\Program Files (x86)\SEGGER\JLink\JFlash.exe" -openprj"%GLADIATOR_HOME%\Scripts\JFlashPro\lyg.jflash" -startapp -exit
goto END
:NORMAL
REM jflash project_file download_file
ECHO Open a project and data file, start auto processing and exit
"C:\Program Files (x86)\SEGGER\JLink\JFlash.exe" -openprj"%GLADIATOR_HOME%\Scripts\JFlashPro\lyg.jflash" -open"%~1" -auto -exit
IF ERRORLEVEL 1 goto ERROR
goto END
:ERROR
ECHO J-Flash ARM: Error!
pause
:END | hyller/GladiatorTool | Scripts/lyg_flash.bat | bat | unlicense | 831 |
mvn dependency:get -Dartifact=org.mongodb:mongo-java-driver:LATEST:jar -DrepoUrl=http://repo1.maven.org/maven2/
mvn dependency:get -Dartifact=org.apache.camel:camel-mongodb:2.10.4:jar -DrepoUrl=http://repo1.maven.org/maven2/
| EdwardOst/edwardost.github.com | talend/camel/mongodb/load-mongo-into-local-mvn.bat | bat | apache-2.0 | 227 |
C:\Progra~1\Intern~1\iexplore.exe http://localhost:8080/Bookstore | waiwong/Eclipse_Workspace | Bookstore/runwebapp.bat | bat | apache-2.0 | 65 |
nunit-console-x86.exe /noshadow /xml:UT_XEP_SectionCheck.xml UT_XEP_SectionCheck.dll /out:TestResult_UT_XEP_SectionCheck.txt /err:StdErr_UT_XEP_SectionCheck.txt | mivuna/D27_Bekaert | UT_XEP_SectionCheck.bat | bat | apache-2.0 | 160 |
echo "begin clone ............."
call git clone http://github.com/xinmingyao/hive.git
echo "begin make hive ............."
cd hive
call git checkout gui
make win
copy /Y hivecore.dll ..\\Debug
copy /Y lua52\\lua52.dll ..\\Debug
copy /Y cell.lua ..\\Debug
copy /Y hive.lua ..\\Debug
mkdir ..\\Debug\\hive
xcopy /Y hive ..\\Debug\\hive /s/e
copy /Y hivecore.lib ..\\hivegui\\lib
copy /Y src\\hive.h ..\\hivegui\\lib
copy /Y lua52\\lua52.lib ..\\hivegui\\lib
cd ..
call git clone http://github.com/xinmingyao/desktopdriver.git
echo "begin make desktopdriver ............."
cd desktopdriver
make win
copy /Y desktop_driver.lib ..\\hivegui\\lib
copy /Y src\\desktop_driver.h ..\\hivegui\\lib
copy /Y desktop_driver.dll ..\\Debug
cd .. | xinmingyao/hivegui | build.bat | bat | bsd-2-clause | 762 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S03_OperationOnListItem.MSLISTSWS_S03_TC32_GetListItemChanges_Fail_SinceIsEmpty /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S03_TC32_GetListItemChanges_Fail_SinceIsEmpty.cmd | bat | mit | 324 |
start node %~dp0/windows_boot.js
| bspurlin/lx | node_modules/LXWebGui/bin/boot.bat | bat | mit | 33 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=build
set SPHINXPROJ=gdsfactory
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
| psiq/gdsfactory | docs/make.bat | bat | mit | 777 |
@echo off
echo set the Visual Studio environment by calling vcvarsall.bat
call "%VCINSTALLDIR%"/vcvarsall.bat
REM The express version of Visual Studio does not have devenv and
REM uses msbuild. Older versions of Visual Studio still need to
REM use devenv
set use_devenv=0
which devenv > nul 2>&1
if %ERRORLEVEL% == 0 set use_devenv=1
echo Building sacs_pingpong_ping.csproj
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\CSharp.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\PingPong\cs\standalone\sacs_pingpong_ping.csproj"
) else (
msbuild sacs_pingpong_ping.csproj /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building sacs_pingpong_ping.csproj
ECHO:
GOTO error
)
cd %~dp0
echo Building sacs_pingpong_pong.csproj
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\CSharp.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\PingPong\cs\standalone\sacs_pingpong_pong.csproj"
) else (
msbuild sacs_pingpong_pong.csproj /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building sacs_pingpong_pong.csproj
ECHO:
GOTO error
)
cd %~dp0
GOTO end
:error
ECHO An error occurred, exiting now
:end.csproj"
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
GOTO end
:error
ECHO An error occurred, exiting now
:end
| PrismTech/opensplice | examples/dcps/PingPong/cs/standalone/Build.bat | bat | gpl-3.0 | 1,393 |
@echo off
pushd "%~dp0"
powershell -file .\Support\Build.ps1 distrib
pause
popd
| netide/netide | Build/Build Distrib.bat | bat | lgpl-3.0 | 93 |
md mserver_app
cd mserver_app
del *.* /Q
xcopy ..\..\dp2mserver\bin\debug\*.dll /Y
xcopy ..\..\dp2mserver\bin\debug\*.exe /Y
del *.vshost.exe /Q
xcopy ..\..\dp2mserver\bin\debug\dp2mserver.exe.config /Y
cd ..
..\ziputil mserver_app mserver_app.zip -t
| renyh1013/chord | ChordInstaller/copymserver.bat | bat | apache-2.0 | 257 |
src\python src\Scripts\jupyter-notebook-script.py --notebook-dir=notebooks
| menpo/menpo-playground | win/Launch IPython Notebooks.cmd | bat | bsd-3-clause | 75 |
@echo off
rem M102 Final
rem Script to make a test replica set. See problem #1.
rem if you need to start over try:
rem rmdir data /s
rem (careful that deletes that everything under data/ recursively!)
rem we expect nothing to be running.
rem you might have a mongo shell running which is ok...but
rem no mongod or mongos processes.
echo make / reset dirs
mkdir data
mkdir data\z1
mkdir data\z2
mkdir data\z3
echo running mongod processes...
start mongod --smallfiles --oplogSize 50 --port 27001 --dbpath data/z1 --replSet z
start mongod --smallfiles --oplogSize 50 --port 27002 --dbpath data/z2 --replSet z
start mongod --smallfiles --oplogSize 50 --port 27003 --dbpath data/z3 --replSet z
rem give them time to start. note this might not be enough time!
sleep 1
echo "Now run:"
echo " mongo --shell --port 27003 a.js"
rem Tip: in powershell, list all mongo processes with:
rem ps mongo*
rem and you can terminate them all with:
rem ps mongo* | kill
| andrisazens/learning-mongo | university/M102/exam/rollback/a.bat | bat | mit | 981 |
VersionUpdate -ss_ini \\Ravendata1\VSS\central_code\SRCSAFE.INI -ss_prj $/Jedi/CodeMp -header win32/AutoVersion.h -email SW-Everyone -interactive
| dpiers/Jedi-Outcast | codemp/VU.bat | bat | gpl-2.0 | 146 |
make clean
make 3xx
pause
| cbarox/PSPConstructor | Source/JGE/Tools/template/mk3xx.bat | bat | gpl-3.0 | 27 |
@REM Add pre-link commands below.
| RealVNC/CEUSBKWrapper | lib/prelink.bat | bat | lgpl-2.1 | 34 |
@echo off
set VISUAL_STUDIO_INSTALL_PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0
call "%VISUAL_STUDIO_INSTALL_PATH%\VC\vcvarsall.bat" x86
powershell -ExecutionPolicy RemoteSigned -File run_package_dot_bat_instead.ps1
| robertgrimm/ds3_c_sdk | win32/package.bat | bat | apache-2.0 | 233 |
@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\internetarchive.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\internetarchive.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
| JesseWeinstein/internetarchive | docs/make.bat | bat | agpl-3.0 | 6,728 |
@echo off
setlocal
set VSCODE_DEV=
set ATOM_SHELL_INTERNAL_RUN_AS_NODE=1
"%~dp0..\\Code.exe" "%~dp0code.js" %*
endlocal | oneplus1000/vscode | resources/win32/bin/code.cmd | bat | mit | 124 |
del *.asi
ren *.dll *.asi | Erik-JS/ME3-ASI | ME3_MasterPlugin/Release/DLL2ASI.bat | bat | mit | 25 |
echo off
rem Set the simulation topmodule name here
set TOPMODULE=sm_testbench
rem iverilog compile settings
set IVARG=-g2005
set IVARG=%IVARG% -D SIMULATION
set IVARG=%IVARG% -D ICARUS
set IVARG=%IVARG% -I ..\..\..\src
set IVARG=%IVARG% -I ..\..\..\testbench
set IVARG=%IVARG% -s %TOPMODULE%
set IVARG=%IVARG% ..\..\..\src\*.v
set IVARG=%IVARG% ..\..\..\testbench\*.v
rem checks that iverilog & vvp are installed
where iverilog.exe
if errorlevel 1 (
echo "iverilog.exe not found!"
echo "Please install IVERILOG and add 'iverilog\bin' and 'iverilog\gtkwave\bin' directories to PATH"
goto return
)
where vvp.exe
if errorlevel 1 (
echo "vvp.exe not found!"
echo "Please install IVERILOG and add 'iverilog\bin' and 'iverilog\gtkwave\bin' directories to PATH"
goto return
)
where gtkwave.exe
if errorlevel 1 (
echo "gtkwave.exe not found!"
echo "Please install IVERILOG and add 'iverilog\bin' and 'iverilog\gtkwave\bin' directories to PATH"
goto return
)
rem old simulation clear
rd /s /q sim
md sim
cd sim
copy ..\*.hex .
rem compile
iverilog %IVARG%
rem simulation
vvp -la.lst -n a.out -vcd
rem output
gtkwave dump.vcd
cd ..
:return
| Iuliiapl/schoolMIPS | scripts/program/common/06_simulate_with_icarus.bat | bat | mit | 1,181 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\bin-version-check\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\bin-version-check\cli.js" %*
) | mmiodek/wp-project | wp-content/themes/my_starter_theme/node_modules/grunt-contrib-compass/node_modules/.bin/bin-version-check.cmd | bat | gpl-2.0 | 196 |
java -jar yuicompressor-2.4.2.jar --line-break 0 -o firebug-lite.js firebug-lite-debug.js
pause | cluo/gotii | web/plugins/kindeditor/lib/firebug-lite/build/compress.bat | bat | mit | 98 |
call ../../../config/ant deploy
pause | velmuruganvelayutham/jpa | examples/Chapter9/06-canonicalMetamodelQuery/deploy.bat | bat | apache-2.0 | 37 |
@echo off
set THIS=%~dp0
set PRJ=%THIS:build\wdk71\=%
set SRC=%PRJ%src
set DST=%PRJ%release
set DST32=%DST%\x86
set DST64=%DST%\x64
set NAME=Spectrum Analyzer
set NAME_SHORT=spha
rem ...........................................................
if exist paths.cmd (
call paths.cmd
) else (
echo Error: 'paths.cmd' not found, creating one from template:
copy paths-template.cmd paths.cmd
)
if not defined WDKROOT (
echo Error: WDKROOT is not set. Specify WDK path in 'paths.cmd'
goto :exit
)
if not defined VSTSDKROOT (
echo Error: VSTSDKROOT is not set. Specify VST3 SDK path in 'paths.cmd'
goto :exit
)
set PATH=%SystemRoot%\System32
echo ..........................................................
cmd /c target_ fre x86 wxp
echo.
echo ..........................................................
cmd /c target_ fre x64 win7
echo.
echo ..........................................................
echo copying binaries:
if not exist %DST32% md %DST32%
if not exist %DST64% md %DST64%
if exist "%DST32%\%NAME%.dll" del "%DST32%\%NAME%.dll"
if exist "%DST64%\%NAME%.dll" del "%DST64%\%NAME%.dll"
echo on
@copy %SRC%\obj\i386\%NAME_SHORT%.dll "%DST32%\%NAME%.dll"
@copy %SRC%\obj\amd64\%NAME_SHORT%.dll "%DST64%\%NAME%.dll"
@echo off
echo done.
rem ...........................................................
:exit
| seven-phases/spectrum-analyzer | build/wdk71/build-release.cmd | bat | mit | 1,406 |
set xsd="C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\xsd.exe"
%xsd% "%~dp0\PackageManifest\PackageManifestSchema.xsd" /classes /language:CS /namespace:VSGallery.AtomGenerator.Vsix.Schemas /out:%~dp0
%xsd% "%~dp0\VsixManifest\VsixManifestSchema.xsd" /classes /language:CS /namespace:VSGallery.AtomGenerator.Vsix.Schemas /out:%~dp0
| garrettpauls/VSGallery.AtomGenerator | VSGallery.AtomGenerator/Vsix/Schemas/regenerate_classes.bat | bat | mit | 364 |
..\bin\darknet.exe detector train obj.data yolo-obj.cfg | jing-vision/Cinder-Darknet | example_yolo_net/train.cmd | bat | mit | 55 |
REM Ä¿±ê£ºÊäÈëµÄ×¢ÊÍÒª×ñÕÕ¸ñʽ£º
REM [Ä£¿éÃû]²Ù×÷ÈÕÖ¾£¬ÆäÖÐÄ£¿éÃû²»ÉÙÓÚ4¸ö×Ö·û£¨»ò2¸öºº×Ö£©£¬
REM ²Ù×÷ÈÕÖ¾²»ÉÙÓÚ10¸ö×Ö·û£¨»ò5¸öºº×Ö£©
REM findstr/C:"Total errors found: 0" cpp_check_return.log>nul
REM if %errorlevel% equ 0 (
REM echo finded
REM ) else (
REM type "error.log" 1>&2
REM echo not find
REM pause
REM exit 1
REM )
setlocal
set path =%path%;C:\MinGW\msys\1.0\bin;
REM SET LOGMSG=`svnlook log -t "%TXN%" "%REPOS%"|wc -c`
REM if $LOGMSG -lt 10 (
REM echo $LOGMSG 1>&2
REM echo -e "\nLog message is too short" 1>&2
REM exit 1
REM )
findstr/C:"Total errors found: 0" cpp_check_return.log>nul
if %errorlevel% equ 0 (
echo finded
) else (
REM type "error.log" 1>&2
REM exit 1
)
set REPOS=%1
set TXN=%2
set SVNLOOK="svnlook.exe"
rem ´Ë´¦²»Ì«Ñϸñ£¬ ÒòΪ°Ñ¿Õ¸ñÒ²ËãÁË
svnlook log "%REPOS%" -t "%TXN%" | findstr ".........." >nul
if %errorlevel% gtr 0 goto err
svnlook.exe -t %TXN% changed %REPOS%>svn.log
echo "file content:" >svn.log
svnlook cat -t "TXN" "REPOS" >svn.log
rem check that .resx files have svn:needs-lock property set
rem %%A gets status, %%B gets file path for each line svnlook prints
for /f "usebackq tokens=1,2" %%A in (`"svnlook.exe" changed -t %TXN% %REPOS%`) do (
REM echo %%A >svn.log
REM echo %%B >svn.log
svnlook.exe cat -t "%TXN%" "%REPOS%" %%B >svn.log
svnlook.exe cat -t "%TXN%" "%REPOS%" %%B >tmp\%%B
REM err_log
"C:\Python27\ArcGIS10.2\python.exe" "I:\co\Learning.test.git\docs\ccplint\cpplint.py" tmp\%%B 2>error.log
"C:\Python27\ArcGIS10.2\python.exe" "I:\co\Learning.test.git\docs\ccplint\cpplint.py" tmp\%%B 1>cpp_check_return.log
findstr/C:"Total errors found: 0" cpp_check_return.log>nul
if %errorlevel% equ 0 (
echo " finded:"
) else (
echo " --------------errorLevel:" %errorlevel% 1>&2
REM type "error.log" 1>&2
exit 1
)
REM if findstr ".h"
REM if not %%A==D (
REM rem %%~xB extracts the extension from the path
REM if %%~xB == .resx (
REM for /f "usebackq" %%C in (`"svnlook.exe" -t %TXN% propget %REPOS% svn:needs-lock %%B`) do (
REM rem set PC_C=%%C
REM if not %%C == * (
REM rem echo to stderr
REM echo %%B should have a svn:needs-lock=* property >&2
REM set error=1
REM )
REM )
REM )
REM )
)
if not %error% == 0 exit /b 1
exit 0
REM cpplint
SET FILES=svnlook changed -t "%TXN" "%REPOS" | awk '/^[AU]/ {print %NF}'
Set FILTERS="\.(cpp|c|h)$"
for FILE in %FILES% do
if echo $FILE | tr A-Z a-z | grep -Eq "$FILTERS"
then
CONTENT=$($SVNLOOK cat -t "$TXN" "$REPOS" "$FILE")
MESSAGE=$"(echo "$CONTENT" | C:\Python27\ArcGIS10.2\python I:\co\Learning.test.git\docs\ccplintcpplint.py --output=vs7 - 2>&1)"
if [ $? -ne 0 ]; then
echo "file is $FILE" 1>&2
echo "$MESSAGE" 1>&2
exit 1
fi
fi
done
exit 0
:err
echo ---------------------------------------------------------------------------------------------------------------------- >&2
echo Ìá½»µÄÈÕÖ¾±ØÐë´óÓÚ10¸ö×Ö·û >&2
echo ---------------------------------------------------------------------------------------------------------------------- >&2
exit 1
| longlongwaytogo/Learning.test | docs/ccplint/svn/hooks/pre-commit - 副本.cmd | bat | mit | 3,229 |
..\..\.nuget\nuget pack Excess.Server.nuspec
..\..\.nuget\nuget push Excess.Server.0.48.15-alpha.nupkg
del Excess.Server.0.48.15-alpha.nupkg
| xs-admin/Excess | Excess.Server/Nuget/publish.bat | bat | mit | 143 |
@echo off
set EXEC="C:\Program Files\ImageMagick-6.8.9-Q16\convert.exe"
set OUTPUT_FILE_PREFIX=KRSLaunch
set ORIGINAL_FILE_x1=moconavi_logo_hafe.png
set ORIGINAL_FILE_x2=moconavi_logo_x2.png
set ORIGINAL_FILE568=moconavi_logo_568.png
set ORIGINAL_FILE_IPAD_x1=moconavi_logo_pad.png
set ORIGINAL_FILE_ORG=moconavi_logo_new.png
echo %ORIGINAL_FILE_ORG% to %ORIGINAL_FILE_x1%
%EXEC% -resize 30%% %ORIGINAL_FILE_ORG% %ORIGINAL_FILE_x1%
echo %ORIGINAL_FILE_ORG% to %ORIGINAL_FILE_x2%
%EXEC% -resize 60%% %ORIGINAL_FILE_ORG% %ORIGINAL_FILE_x2%
echo %ORIGINAL_FILE_ORG% to %ORIGINAL_FILE568%
%EXEC% -resize 71%% %ORIGINAL_FILE_ORG% %ORIGINAL_FILE568%
echo %ORIGINAL_FILE_ORG% to %ORIGINAL_FILE_IPAD_x1%
%EXEC% -resize 50%% %ORIGINAL_FILE_ORG% %ORIGINAL_FILE_IPAD_x1%
echo output %OUTPUT_FILE_PREFIX% file
%EXEC% -gravity center -background white -extent 320x480 %ORIGINAL_FILE_x1% %OUTPUT_FILE_PREFIX%.png
%EXEC% -gravity center -background white -extent 640x960 %ORIGINAL_FILE_x2% %OUTPUT_FILE_PREFIX%@2x.png
%EXEC% -gravity center -background white -extent 640x1136 %ORIGINAL_FILE568% %OUTPUT_FILE_PREFIX%-568h@2x.png
%EXEC% -gravity center -background white -extent 768x1024 %ORIGINAL_FILE_IPAD_x1% %OUTPUT_FILE_PREFIX%~ipad-Portrait70.png
%EXEC% -gravity center -background white -extent 1536x2048 %ORIGINAL_FILE_ORG% %OUTPUT_FILE_PREFIX%~ipad-Portrait@2x70.png
%EXEC% -gravity center -background white -extent 768x1004 %ORIGINAL_FILE_IPAD_x1% %OUTPUT_FILE_PREFIX%~ipad.png
%EXEC% -gravity center -background white -extent 1536x2008 %ORIGINAL_FILE_ORG% %OUTPUT_FILE_PREFIX%-Portrait@2x~ipad.png
%EXEC% -gravity center -background white -extent 1024x768 %ORIGINAL_FILE_IPAD_x1% %OUTPUT_FILE_PREFIX%~ipad-Landscape70.png
%EXEC% -gravity center -background white -extent 2048x1536 %ORIGINAL_FILE_ORG% %OUTPUT_FILE_PREFIX%~ipad-Landscape@2x70.png
%EXEC% -gravity center -background white -extent 1024x748 %ORIGINAL_FILE_IPAD_x1% %OUTPUT_FILE_PREFIX%-Landscape~ipad.png
%EXEC% -gravity center -background white -extent 2048x1496 %ORIGINAL_FILE_ORG% %OUTPUT_FILE_PREFIX%-Landscape@2x~ipad.png
del %ORIGINAL_FILE_x1%
del %ORIGINAL_FILE_x2%
del %ORIGINAL_FILE568%
del %ORIGINAL_FILE_IPAD_x1%
pause
| hq7781/MoneyBook | MoneyBook/Resource/icon/makeiOSLaunchImage.bat | bat | mit | 2,256 |
./polyglotCodeGenerator
pause
del "%0"
pause
| jarble/Polyglot-code-generator | examples/EngScript_examples/REBOL/REBOL projects/geany_run_script.bat | bat | mit | 47 |
@echo off
setlocal
set originDir=%cd%
cd /D %~dp0
start cmd /C scouter\agent.host\stop.bat
cd /D %originDir%
| scouter-project/scouter-demo | demo-env1/stop-scouter-host.bat | bat | mit | 109 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.