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/media/common/built-in.o := /home/algesat/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/media/common/built-in.o drivers/media/common/tuners/built-in.o
| Algesat/BladeApex2 | drivers/media/common/.built-in.o.cmd | bat | gpl-2.0 | 168 |
echo "step 1. start package!"
Call ./pack.bat
echo "step 2. start build!"
Call ./msi.bat
echo "step 3. start zip!"
Call "zip.py" | xpclove/autofp | make.bat | bat | gpl-3.0 | 128 |
/* cmd/say.cmd - NexusServV3
* Copyright (C) 2012-2013 #Nexus project
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$params = $paramzz;
$paz = explode(" ",$params);
global $userinfo, $botnick, $god;
$lnick = strtolower($nick);
$acc = $userinfo["$lnick"]["auth"];
$saxs = 0;
$fop = fopen("./conf/staff.conf","r+t");
while ($fra = fgets($fop)) {
$fra = str_replace("\r","",$fra);
$fra = str_replace("\n","",$fra);
$frg = explode(" ",$fra);
if (strtolower($frg[0]) == strtolower($acc)) {
$saxs = $frg[1];
}
}
fclose($fop);
if ($saxs >= 200) {
sendserv("PRIVMSG $target :$params");
}
else {
sendserv("NOTICE $nick :You lack sufficient staff access to use this command");
} | Nexus-IRC/NexusServV3 | cmd/say.cmd | bat | gpl-3.0 | 1,290 |
@java -cp aranha.jar;joseflavio2009.jar;jfreechart-1.0.13.jar;jcommon-1.0.16.jar;commons-net-3.0.1.jar com.joseflavio.aranha.PosTCPDump %* | joseflaviojr/aranha | Distribuição/Windows/Aranha/aranha.postcpdump.bat | bat | gpl-3.0 | 138 |
java -Xbootclasspath/a:collectionHelpers.jar -Djava.naming.factory.initial=com.sun.jndi.cosnaming.CNCtxFactory -Djava.naming.provider.url=iiop://localhost:8087 -cp .;%JUNIT_HOME%\junit.jar TestClient
| HaiderRazvi/IIOP.Net | IntegrationTests/MappingPluginJavaAsClient/TestClient/testCommandLine.bat | bat | lgpl-2.1 | 200 |
C:\bin\rt11\rt11.exe LINK MAIN,LEVELS /MAP:OUTPUT.MAP
@if exist OUTPUT.MAP type OUTPUT.MAP
| nzeemin/uknc-loderunner | !link.bat | bat | lgpl-3.0 | 93 |
@echo off
yasm mda_cga.asm -o mda_cga.bin
yasm restart_bios.asm -o restart_bios.bin
yasm chirp.asm -o chirp.bin
yasm testing.asm -o testing.bin
| reenigne/reenigne | 8088/arduino_keyboard/build_asm.bat | bat | unlicense | 145 |
@echo off
set "DIRNAME=%~dp0%"
set CLASSPATH="%DIRNAME%lib\args4j-2.33.jar;%DIRNAME%lib\ThreadDumpCutter-1.0.0.jar"
set JAVA_OPTS=-Xmx512m
java %JAVA_OPTS% -classpath %CLASSPATH% -DTDC_BASE=%DIRNAME% org.mk300.tdcutter.Main %*
| mkobayas/ThreadDumpCutter | exec/tdcutter.bat | bat | apache-2.0 | 234 |
@REM
@REM Copyright (c) 2012 - 2016 YCSB contributors. All rights reserved.
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License"); you
@REM may not use this file except in compliance with the License. You
@REM may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
@REM implied. See the License for the specific language governing
@REM permissions and limitations under the License. See accompanying
@REM LICENSE file.
@REM
@REM -----------------------------------------------------------------------
@REM Control Script for YCSB
@REM
@REM Environment Variable Prerequisites
@REM
@REM Do not set the variables in this script. Instead put them into a script
@REM setenv.sh in YCSB_HOME/bin to keep your customizations separate.
@REM
@REM YCSB_HOME (Optional) YCSB installation directory. If not set
@REM this script will use the parent directory of where this
@REM script is run from.
@REM
@REM JAVA_HOME (Required) Must point at your Java Development Kit
@REM or Java Runtime Environment installation.
@REM
@REM JAVA_OPTS (Optional) Java runtime options used when any command
@REM is executed.
@REM
@REM WARNING!!! YCSB home must be located in a directory path that doesn't
@REM contain spaces.
@REM
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
@REM Only set YCSB_HOME if not already set
PUSHD %~dp0..
IF NOT DEFINED YCSB_HOME SET YCSB_HOME=%CD%
POPD
@REM Ensure that any extra CLASSPATH variables are set via setenv.bat
SET CLASSPATH=
@REM Pull in customization options
if exist "%YCSB_HOME%\bin\setenv.bat" call "%YCSB_HOME%\bin\setenv.bat"
@REM Check if we have a usable JDK
IF "%JAVA_HOME%." == "." GOTO noJavaHome
IF NOT EXIST "%JAVA_HOME%\bin\java.exe" GOTO noJavaHome
GOTO okJava
:noJavaHome
ECHO The JAVA_HOME environment variable is not defined correctly.
GOTO exit
:okJava
@REM Determine YCSB command argument
IF NOT "load" == "%1" GOTO noload
SET YCSB_COMMAND=-load
SET YCSB_CLASS=site.ycsb.Client
GOTO gotCommand
:noload
IF NOT "run" == "%1" GOTO noRun
SET YCSB_COMMAND=-t
SET YCSB_CLASS=site.ycsb.Client
GOTO gotCommand
:noRun
IF NOT "shell" == "%1" GOTO noShell
SET YCSB_COMMAND=
SET YCSB_CLASS=site.ycsb.CommandLine
GOTO gotCommand
:noShell
ECHO [ERROR] Found unknown command '%1'
ECHO [ERROR] Expected one of 'load', 'run', or 'shell'. Exiting.
GOTO exit
:gotCommand
@REM Find binding information
FOR /F "delims=" %%G in (
'FINDSTR /B "%2:" %YCSB_HOME%\bin\bindings.properties'
) DO SET "BINDING_LINE=%%G"
IF NOT "%BINDING_LINE%." == "." GOTO gotBindingLine
ECHO [ERROR] The specified binding '%2' was not found. Exiting.
GOTO exit
:gotBindingLine
@REM Pull out binding name and class
FOR /F "tokens=1-2 delims=:" %%G IN ("%BINDING_LINE%") DO (
SET BINDING_NAME=%%G
SET BINDING_CLASS=%%H
)
@REM Some bindings have multiple versions that are managed in the same
@REM directory.
@REM They are noted with a '-' after the binding name.
@REM (e.g. cassandra-7 & cassandra-8)
FOR /F "tokens=1 delims=-" %%G IN ("%BINDING_NAME%") DO (
SET BINDING_DIR=%%G
)
@REM The 'basic' binding is core functionality
IF NOT "%BINDING_NAME%" == "basic" GOTO noBasic
SET BINDING_DIR=core
:noBasic
@REM Add Top level conf to classpath
IF "%CLASSPATH%." == "." GOTO emptyClasspath
SET CLASSPATH=%CLASSPATH%;%YCSB_HOME%\conf
GOTO confAdded
:emptyClasspath
SET CLASSPATH=%YCSB_HOME%\conf
:confAdded
@REM Cassandra2 deprecation message
IF NOT "%BINDING_DIR%" == "cassandra2" GOTO notAliasCassandra
echo [WARN] The 'cassandra2-cql' client has been deprecated. It has been renamed to simply 'cassandra-cql'. This alias will be removed in the next YCSB release.
SET BINDING_DIR=cassandra
:notAliasCassandra
@REM hbase14 replaced with hbase1
IF NOT "%BINDING_DIR%" == "hbase14" GOTO notAliasHBase14
echo [WARN] The 'hbase14' client has been deprecated. HBase 1.y users should rely on the 'hbase1' client instead.
SET BINDING_DIR=hbase1
:notAliasHBase14
@REM arangodb3 deprecation message
IF NOT "%BINDING_DIR%" == "arangodb3" GOTO notAliasArangodb3
echo [WARN] The 'arangodb3' client has been deprecated. The binding 'arangodb' now covers every ArangoDB version. This alias will be removed in the next YCSB release.
SET BINDING_DIR=arangodb
:notAliasArangodb3
@REM Build classpath according to source checkout or release distribution
IF EXIST "%YCSB_HOME%\pom.xml" GOTO gotSource
@REM Build classpath according to source checkout or release distribution
IF EXIST "%YCSB_HOME%\pom.xml" GOTO gotSource
@REM Core libraries
FOR %%F IN (%YCSB_HOME%\lib\*.jar) DO (
SET CLASSPATH=!CLASSPATH!;%%F%
)
@REM Database conf dir
IF NOT EXIST "%YCSB_HOME%\%BINDING_DIR%-binding\conf" GOTO noBindingConf
set CLASSPATH=%CLASSPATH%;%YCSB_HOME%\%BINDING_DIR%-binding\conf
:noBindingConf
@REM Database libraries
FOR %%F IN (%YCSB_HOME%\%BINDING_DIR%-binding\lib\*.jar) DO (
SET CLASSPATH=!CLASSPATH!;%%F%
)
GOTO classpathComplete
:gotSource
@REM Check for some basic libraries to see if the source has been built.
IF EXIST "%YCSB_HOME%\core\target\dependency\*.jar" (
IF EXIST "%YCSB_HOME%\%BINDING_DIR%\target\*.jar" (
GOTO gotJars
)
)
@REM Call mvn to build source checkout.
IF "%BINDING_NAME%" == "basic" GOTO buildCore
SET MVN_PROJECT=%BINDING_DIR%-binding
goto gotMvnProject
:buildCore
SET MVN_PROJECT=core
:gotMvnProject
ECHO [WARN] YCSB libraries not found. Attempting to build...
CALL mvn -Psource-run -pl site.ycsb:%MVN_PROJECT% -am package -DskipTests
IF %ERRORLEVEL% NEQ 0 (
ECHO [ERROR] Error trying to build project. Exiting.
GOTO exit
)
:gotJars
@REM Core libraries
FOR %%F IN (%YCSB_HOME%\core\target\*.jar) DO (
SET CLASSPATH=!CLASSPATH!;%%F%
)
@REM Core dependency libraries
FOR %%F IN (%YCSB_HOME%\core\target\dependency\*.jar) DO (
SET CLASSPATH=!CLASSPATH!;%%F%
)
@REM Database conf (need to find because location is not consistent)
FOR /D /R %YCSB_HOME%\%BINDING_DIR% %%F IN (*) DO (
IF "%%~nxF" == "conf" SET CLASSPATH=!CLASSPATH!;%%F%
)
@REM Database libraries
FOR %%F IN (%YCSB_HOME%\%BINDING_DIR%\target\*.jar) DO (
SET CLASSPATH=!CLASSPATH!;%%F%
)
@REM Database dependency libraries
FOR %%F IN (%YCSB_HOME%\%BINDING_DIR%\target\dependency\*.jar) DO (
SET CLASSPATH=!CLASSPATH!;%%F%
)
:classpathComplete
@REM Couchbase deprecation message
IF NOT "%BINDING_DIR%" == "couchbase" GOTO notOldCouchbase
echo [WARN] The 'couchbase' client is deprecated. If you are using Couchbase 4.0+ try using the 'couchbase2' client instead.
:notOldCouchbase
@REM Get the rest of the arguments, skipping the first 2
FOR /F "tokens=2*" %%G IN ("%*") DO (
SET YCSB_ARGS=%%H
)
@REM Run YCSB
@ECHO ON
"%JAVA_HOME%\bin\java.exe" %JAVA_OPTS% -classpath "%CLASSPATH%" %YCSB_CLASS% %YCSB_COMMAND% -db %BINDING_CLASS% %YCSB_ARGS%
@ECHO OFF
GOTO end
:exit
EXIT /B 1;
:end
| brianfrankcooper/YCSB | bin/ycsb.bat | bat | apache-2.0 | 7,315 |
cd ..
app\\tools\\cloc\\cloc-1.70.exe IntrinsicCore/src IntrinsicEd/src IntrinsicAssetManagement/src IntrinsicRenderer/src Intrinsic/src
timeout 10 | begla/Intrinsic | scripts_win32/RunCloc.bat | bat | apache-2.0 | 149 |
@echo off
echo [INFO] Packaging a executable war.
cd %~dp0
cd ..
set MAVEN_OPTS=%MAVEN_OPTS%
call mvn clean package -Pstandalone
echo [INFO] Executable war had been packaged as target/cyfm-1.x.x.standalone.war
cd bin
pause
| ppcxy/cyfm | cyfm-web/bin/executable-war.bat | bat | apache-2.0 | 228 |
java -cp sifter.jar;lib\* -Xmx1g edu.utsa.sifter.Sifter client
| jonstewart/Sifter | Start_webserver.bat | bat | apache-2.0 | 64 |
@echo off
setlocal
:: current dir
set CURRENT_DIR=%cd%/
:: determine the home
set WIPERDOGHOME=%~dp0..
for %%i in ("%WIPERDOGHOME%") do set WIPERDOGHOME=%%~fsi
:: move to bin
cd "%WIPERDOGHOME%\bin"
SET /A ARGS_COUNT=0
FOR %%A in (%*) DO SET /A ARGS_COUNT+=1
if %ARGS_COUNT% == 2 (
"%WIPERDOGHOME%\bin\groovy.bat" "%WIPERDOGHOME%\bin\gendbpasswd.groovy" %1 %2 "%CURRENT_DIR%"
) ELSE (
if %ARGS_COUNT% == 4 (
"%WIPERDOGHOME%\bin\groovy.bat" "%WIPERDOGHOME%\bin\gendbpasswd.groovy" %1 %2 %3 %4
) ELSE (
if %ARGS_COUNT% == 6 (
"%WIPERDOGHOME%\bin\groovy.bat" "%WIPERDOGHOME%\bin\gendbpasswd.groovy" %1 %2 %3 %4 %5 %6
) ELSE (
if %ARGS_COUNT% == 8 (
"%WIPERDOGHOME%\bin\groovy.bat" "%WIPERDOGHOME%\bin\gendbpasswd.groovy" %1 %2 %3 %4 %5 %6 %7 %8
) ELSE (
ECHO Incorrect parameters !!!
ECHO Correct format of commmand: gendbpasswd -t DBType -u username [-h hostId] [-s sid]
ECHO OR gendbpasswd -f "File csv contains user/password information"
ECHO DBType may accept following value: @ORA , @MYSQL ,@PGSQL ,@MSSQL
ECHO Example : gendbpasswd -t @ORA -u username -h hostId -s piex
ECHO gendbpasswd -f "C:\path\dbpassword.csv"
PAUSE
)
)
)
)
endlocal | WiperDogLabo/WiperdogJobrunner | bin/gendbpasswd.bat | bat | apache-2.0 | 1,246 |
del cmakecache.txt
cmake -G"MinGW Makefiles" -DANDROID_TOOLCHAIN_NAME=arm-linux-androideabi-clang3.3 -DANDROID_NATIVE_API_LEVEL=9 -DANDROID_ABI=armeabi-v7a -DCMAKE_TOOLCHAIN_FILE=../../cmake/android-cmake/toolchain/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM="%ANDROID_NDK%\prebuilt\windows-x86_64\bin\make.exe" ../../ | liangpengcheng/tng | proj/ndk/genandroid_win.bat | bat | bsd-3-clause | 345 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OUTSPS.S01_OperateAttachment.MSOUTSPS_S01_TC03_OperateAttachment_DiscussionBoardTemplateType /testcontainer:..\..\MS-OUTSPS\TestSuite\bin\Debug\MS-OUTSPS_TestSuite.dll /runconfig:..\..\MS-OUTSPS\MS-OUTSPS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-OUTSPS/RunMSOUTSPS_S01_TC03_OperateAttachment_DiscussionBoardTemplateType.cmd | bat | mit | 325 |
@echo off
set SSL_CERT_FILE=%~dp0\shipyard\cacerts.pem
%~dp0\shipyard\win_rdoc.bat %*
| stephan-nordnes-eriksen/ruby_ship | bin/ruby_ship_rdoc.bat | bat | mit | 88 |
forever -o out.log -e err.log -l forever.log start app.js | casperfibaek/sentinelMonitor | src/start_server.bat | bat | mit | 57 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=pipenv
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
| kennethreitz/pipenv | docs/make.bat | bat | mit | 810 |
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:RDPEGFX_CapabilityExchange_PositiveTest /Logger:trx
pause
| JessieF/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPEGFX/RDPEGFX_CapabilityExchange_PositiveTest.cmd | bat | mit | 228 |
@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\Kotori.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Kotori.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
| zerotired/kotori | doc/make.bat | bat | agpl-3.0 | 7,253 |
@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\jwt.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\jwt.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
| Demonware/jose | docs/make.bat | bat | bsd-3-clause | 6,704 |
@ECHO OFF
REM ; %PROJECT_NAME% is set by Jenkins, this allows us to use the same script to verify
REM ; Chef and Angry Chef
cd C:\opscode\%PROJECT_NAME%\bin
REM ; We don't want to add the embedded bin dir to the main PATH as this
REM ; could mask issues in our binstub shebangs.
SET EMBEDDED_BIN_DIR=C:\opscode\%PROJECT_NAME%\embedded\bin
ECHO.
REM ; Set the temporary directory to a custom location, and wipe it before
REM ; and after the tests run.
SET TEMP=%TEMP%\cheftest
SET TMP=%TMP%\cheftest
RMDIR /S /Q %TEMP%
MKDIR %TEMP%
FOR %%b IN (
chef-client
knife
chef-solo
ohai
) DO (
ECHO Checking for existence of binfile `%%b`...
IF EXIST %%b (
ECHO ...FOUND IT!
) ELSE (
GOTO :error
)
ECHO.
)
call chef-client --version
REM ; Exercise various packaged tools to validate binstub shebangs
call %EMBEDDED_BIN_DIR%\ruby --version
call %EMBEDDED_BIN_DIR%\gem --version
call %EMBEDDED_BIN_DIR%\bundle --version
call %EMBEDDED_BIN_DIR%\rspec --version
SET PATH=C:\opscode\%PROJECT_NAME%\bin;C:\opscode\%PROJECT_NAME%\embedded\bin;%PATH%
REM ; Test against the vendored chef gem
cd C:\opscode\%PROJECT_NAME%\embedded\lib\ruby\gems\2*\gems\chef-*-mingw32
IF NOT EXIST "Gemfile.lock" (
ECHO "Chef gem does not contain a Gemfile.lock! This is needed to run any tests."
GOTO :error
)
IF "%PIPELINE_NAME%" == "chef-fips" (
set CHEF_FIPS=1
)
call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/functional
| natewalck/chef | ci/verify-chef.bat | bat | apache-2.0 | 1,505 |
@echo off
for /f "delims=" %%a in ('wmic OS Get localdatetime ^| find "."') do set dt=%%a
set datestamp=%dt:~0,8%
set timestamp=%dt:~8,6%
set YYYY=%dt:~0,4%
set MM=%dt:~4,2%
set DD=%dt:~6,2%
set HH=%dt:~8,2%
set Min=%dt:~10,2%
set Sec=%dt:~12,2%
set stamp=%YYYY%-%MM%-%DD%
xcopy /S /E /I /Y %1 %2\%stamp%\ | iwekardum/inSyca-Suite | inSyca.suite.toolbox_40/destinationDeployment.cmd | bat | mit | 321 |
@echo off
setlocal
msbuild %~dp0src\MSBuild.sln /p:Configuration=Port-Progress
set ANALYSIS_PATH=%~dp0bin\Windows_NT\Port-Progress
%~dp0ApiPort\ApiPort.exe analyze -f %ANALYSIS_PATH%\Microsoft.Build.dll -f %ANALYSIS_PATH%\Microsoft.Build.Framework.dll -f %ANALYSIS_PATH%\Microsoft.Build.Tasks.Core.dll -f %ANALYSIS_PATH%\Microsoft.Build.Utilities.Core.dll -f %ANALYSIS_PATH%\MSBuild.exe --target "ASP.NET 5, Version=1.0" | cdmihai/msbuild | RunApiPort.bat | bat | mit | 422 |
@echo off
@echo Creating sanguosha_wrap.cxx, please wait...
..\tools\swig\swig.exe -c++ -lua sanguosha.i | weirdouncle/QSanguosha-For-Hegemony | swig/cxx-creator.bat | bat | gpl-3.0 | 105 |
#PBS -q debug
#PBS -l mppwidth=128
#PBS -l mppnppn=4
#PBS -l walltime=0:10:00
#PBS -j eo
#PBS -V
cd $PBS_O_WORKDIR
aprun -n 128 -N 4 ./elm_pb
| kevinpetersavage/BOUT-dev | examples/elm-pb/bout_franklin_debug.cmd | bat | gpl-3.0 | 143 |
dev_appserver.py -c ..\micolog | tectronics/micolog | no data run.bat | bat | mit | 30 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\..\..\strip-dirs\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\..\..\strip-dirs\cli.js" %*
) | kethxenn/C.B.U.L.M.S. | node_modules/decompress-unzip/node_modules/.bin/strip-dirs.cmd | bat | gpl-3.0 | 188 |
@echo off
setlocal enabledelayedexpansion
cd /d %~dp0
set sourceFiles=
for /f "delims=" %%a in ('dir /b src\*.c') do set sourceFiles=!sourceFiles! src\%%a
set emccOptions=%sourceFiles% ^
-DJS_INTEROP ^
-Wno-pointer-sign ^
-Oz ^
-s NO_EXIT_RUNTIME=1 ^
-s RESERVED_FUNCTION_POINTERS=20 ^
-s ASSERTIONS=1 ^
-s EXPORTED_FUNCTIONS="['_main', '_JSInterop_CallDotNet', '_Debugger_Continue', '_Debugger_SetBreakPoint', '_Debugger_Step', '_Debugger_Reset', '_Debugger_Clear_BreakPoints']" ^
-s MODULARIZE=1 ^
-s ALLOW_MEMORY_GROWTH=1 ^
-s EXPORT_NAME='ModuleFunc' ^
-s DEFAULT_LIBRARY_FUNCS_TO_INCLUDE="['$Browser']" ^
-s EXTRA_EXPORTED_RUNTIME_METHODS="['ccall', 'FS_createPreloadedFile']" ^
--js-library js-interop.js
REM --pre-js pre.js ^
REM --post-js post.js ^
REM set emccOptions=%emccOptions% -DDEBUG_PRINT
set outputRoot=..\..\..\wwwroot\js
echo -------------------------------------------
echo --- Starting native web assembly build
call emcc %emccOptions% -s WASM=1 -o %outputRoot%\wasm\dna.js
echo export { ModuleFunc }; >> %outputRoot%\wasm\dna.js
echo -------------------------------------------
echo --- Starting asm.js build
call emcc %emccOptions% -s WASM=0 -o %outputRoot%\asmjs\dna.js
echo export { ModuleFunc }; >> %outputRoot%\asmjs\dna.js
| ncave/dotnet-js | src/DNA/native/build.cmd | bat | mit | 1,271 |
@echo off
echo Give focus to the game when the injector starts executing
injector.exe -dll KingdomCoinTrainer.dll -target kingdom.exe -namespace KingdomCoinTrainer -class Mod -method Load
pause | mooshbeef/Kingdom-coin-trainer | KingdomCoinTrainer/KingdomCoinTrainer/load.bat | bat | mit | 193 |
@echo off
path=%path%;%ProgramFiles(x86)%\java\jre6\bin;%ProgramFiles%\java\jre6\bin
java -Xmx256m -Xms32m -jar MineServer.jar
pause | allenliu/MineServer | launch.bat | bat | mit | 132 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\TheRulesofInvestment.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\TheRulesofInvestment.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
if "%1" == "dummy" (
%SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy
if errorlevel 1 exit /b 1
echo.
echo.Build finished. Dummy builder generates no files.
goto end
)
:end
| RishiRamraj/The-Rules-of-Investment | make.bat | bat | mit | 7,760 |
echo off
del C:\tmp /q
mkdir C:\tmp
cd C:\tmp
powershell.exe wget https://raw.githubusercontent.com/MaxDistructo/ShellScripts/master/reloads/Script1.ps1 -outfile Script1.ps1
powershell.exe -executionpolicy bypass -file ./Script1.ps1
| MaxDistructo/ShellScripts | reloads/Run.bat | bat | mit | 233 |
@echo off
:: Windows Bash Starter (version 1.0.1)
:: https://github.com/skrysmanski/windows-bash-starter
:: Bash script to execute
set TARGET_SCRIPT=run-bash.sh
::
:: Magic below.
::
:: Check if bash is available on the path.
where /Q bash
if %ERRORLEVEL% EQU 0 (
for /f %%i in ('where bash') do set BASH_PATH=%%i
goto RUN_BASH
)
:: If %GIT_INSTALL_ROOT% is not available, try to guess it.
if "%GIT_INSTALL_ROOT%"=="" (
set GIT_INSTALL_ROOT=%ProgramFiles%\Git
)
if not exist "%GIT_INSTALL_ROOT%\bin\bash.exe" (
echo ERROR: Git for Windows doesn't seem to be installed.
echo You can download it here: https://git-for-windows.github.io/
echo Afterwards, reopen this command window.
exit /B 1
)
:RUN_BASH
:: Make working dir changes local to this script.
setlocal
:: Cd to the script directory
cd %~dp0
:: Important: Don't use "-i" or "Ctrl+C" may not work (e.g. to
:: cancel SSH password prompts).
"%GIT_INSTALL_ROOT%\bin\bash.exe" "%TARGET_SCRIPT%" %*
| skrysmanski/windows-bash-starter | run-bash.cmd | bat | mit | 970 |
@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\thoughtconcert.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\thoughtconcert.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
| dilwaria/thoughtconcert | docs/make.bat | bat | mit | 5,112 |
devcon.exe install vmulti.inf djpnewton\vmulti
| buaabyl/vmulti | sys/install.cmd | bat | mit | 47 |
vmap3extractor.exe
md vmaps
vmap3assembler.exe buildings vmaps
pause
| Bootz/OpenStage-Project | contrib/makevmaps3_SIMPLE.bat | bat | gpl-2.0 | 70 |
cmd_eal_platform_uio.o = gcc -Wp,-MD,./.eal_platform_uio.o.d.tmp -pthread -march=armv8-a+crc -D__ARM_FEATURE_CRC32=1 -DRTE_MACHINE_CPUFLAG_NEON -DRTE_MACHINE_CPUFLAG_CRC32 -I/root/lixu/arm64-armv8a-linuxapp-gcc/include -include /root/lixu/arm64-armv8a-linuxapp-gcc/include/rte_config.h -I/root/lixu/lib/librte_eal/linuxapp/eal/include -I/root/lixu/lib/librte_eal/common -I/root/lixu/lib/librte_eal/common/include -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition -Wpointer-arith -Wcast-align -Wnested-externs -Wcast-qual -Wformat-nonliteral -Wformat-security -Wundef -Wwrite-strings -Werror -O3 -D_GNU_SOURCE -o eal_platform_uio.o -c /root/lixu/lib/librte_eal/linuxapp/eal/eal_platform_uio.c
| JerryLX/DPDK | arm64-armv8a-linuxapp-gcc/build/lib/librte_eal/linuxapp/eal/.eal_platform_uio.o.cmd | bat | gpl-2.0 | 743 |
rem "compare" - image magick compare program
set SRC=mmrest-1,bravura-mmrest,mmrest-2,mmrest-4,mmrest-5,mmrest-6,mmrest-7,mmrest-8,mmrest-9, ^
fmrest-1,fmrest-2,fmrest-3,fmrest-4,fmrest-5,fmrest-6,measure-repeat-1, ^
noteheadposition-1,valign-1,emmentaler-1,bravura-1,emmentaler-2,bravura-2, ^
emmentaler-3,bravura-3,emmentaler-4,bravura-4,emmentaler-5,bravura-5, ^
emmentaler-6,bravura-6,emmentaler-7,bravura-7, ^
emmentaler-8,bravura-8,emmentaler-9,bravura-9,emmentaler-10,bravura-10, ^
chord-layout-1,chord-layout-2,chord-layout-3,chord-layout-4,chord-layout-5,chord-layout-6, ^
chord-layout-7,chord-layout-8,chord-layout-9,chord-layout-10,chord-layout-11,chord-layout-12, ^
accidental-1,accidental-2,accidental-3,accidental-4, ^
accidental-5,accidental-6,accidental-7,accidental-8, ^
tie-1,grace-1,grace-2,grace-3,harmony-1,beams-1,beams-2,user-offset-1,user-offset-2, ^
chord-space-1
set MSCORE=..\win32install\bin\mscore.exe
set DPI=130
set F=vtest.html
rd /s/q html
md html
cd html
FOR /D %%a IN (%SRC%) DO (
echo process %%a
xcopy ..\%%a-ref.png .
..\%MSCORE% ..\%%a.mscz -r %DPI% -o %%a.png
compare -metric AE -fuzz 50%% %%a-1.png %%a-ref.png %%a-diff.png
)
xcopy ..\style.css .
del /q %F%
echo ^<html^> >> %F%
echo ^<head^> >> %F%
echo ^<link rel="stylesheet" type="text/css" href="style.css"^> >> %F%
echo ^<head^> >> %F%
echo ^<body^> >> %F%
echo ^<div id="topbar"^> >> %F%
echo ^<span^>Current^</span^> >> %F%
echo ^<span^>Reference^</span^> >> %F%
echo ^<span^>Comparison^</span^> >> %F%
echo ^</div^> >> %F%
echo ^<div id="topmargin"^>^</div^> >> %F%
FOR /D %%a IN (%SRC%) DO (
echo ^<h2 id="%%a"^>%%a ^<a class="toc-anchor" href="#%%a"^>#^</a^>^</h2^> >> %F%
echo ^<div^> >> %F%
echo ^<img src="%%a-1.png"^> >> %F%
echo ^<img src="%%a-ref.png"^> >> %F%
echo ^<img src="%%a-diff.png"^> >> %F%
echo ^</div^> >> %F%
)
echo ^</body^> >> %F%
echo ^</html^> >> %F%
%F%
cd ..
| Igevorse/MuseScore | vtest/gen.bat | bat | gpl-2.0 | 2,040 |
cmd_arch/arm/mm/built-in.o := /home/playfulgod/Android/2.3.5/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o arch/arm/mm/built-in.o arch/arm/mm/dma-mapping.o arch/arm/mm/extable.o arch/arm/mm/fault.o arch/arm/mm/init.o arch/arm/mm/iomap.o arch/arm/mm/fault-armv.o arch/arm/mm/flush.o arch/arm/mm/ioremap.o arch/arm/mm/mmap.o arch/arm/mm/pgd.o arch/arm/mm/mmu.o arch/arm/mm/proc-syms.o arch/arm/mm/alignment.o arch/arm/mm/abort-ev6.o arch/arm/mm/pabort-v6.o arch/arm/mm/cache-v6.o arch/arm/mm/copypage-v6.o arch/arm/mm/context.o arch/arm/mm/tlb-v6.o arch/arm/mm/proc-v6.o arch/arm/mm/cache-l2x0.o
| Jewbie/Kernel-2.6.32 | arch/arm/mm/.built-in.o.cmd | bat | gpl-2.0 | 623 |
>>> ph = float(input('Enter the pH level: '))
Enter the pH level: 6.0
>>> if ph < 7.0:
... print(ph, "is acidic.")
... print("You should be careful with that!")
...
6.0 is acidic.
You should be careful with that!
| simontakite/sysadmin | pythonscripts/practicalprogramming/cond/if_multilinetrue.cmd | bat | gpl-2.0 | 222 |
cmd_fs/jbd2/jbd2.o := /home/dman3285/CM10/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/jbd2/jbd2.o fs/jbd2/transaction.o fs/jbd2/commit.o fs/jbd2/recovery.o fs/jbd2/checkpoint.o fs/jbd2/revoke.o fs/jbd2/journal.o
| AOSP-ZEUS/android_kernel_samsung_n1 | fs/jbd2/.jbd2.o.cmd | bat | gpl-2.0 | 245 |
cmd_rte_table_lpm.o = gcc -Wp,-MD,./.rte_table_lpm.o.d.tmp -pthread -march=armv8-a+crc -D__ARM_FEATURE_CRC32=1 -DRTE_MACHINE_CPUFLAG_NEON -DRTE_MACHINE_CPUFLAG_CRC32 -I/root/lixu/arm64-armv8a-linuxapp-gcc/include -include /root/lixu/arm64-armv8a-linuxapp-gcc/include/rte_config.h -O3 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition -Wpointer-arith -Wcast-align -Wnested-externs -Wcast-qual -Wformat-nonliteral -Wformat-security -Wundef -Wwrite-strings -Werror -o rte_table_lpm.o -c /root/lixu/lib/librte_table/rte_table_lpm.c
| JerryLX/DPDK | arm64-armv8a-linuxapp-gcc/build/lib/librte_table/.rte_table_lpm.o.cmd | bat | gpl-2.0 | 580 |
cmd_arch/arm/mm/cache-v7.o := /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/mm/.cache-v7.o.d -nostdinc -isystem /home/sunghun/arm-2009q3/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -Iinclude -I/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s5pv210/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/mm/cache-v7.o arch/arm/mm/cache-v7.S
deps_arch/arm/mm/cache-v7.o := \
arch/arm/mm/cache-v7.S \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/linkage.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/hwcap.h \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/unwind.h \
$(wildcard include/config/arm/unwind.h) \
arch/arm/mm/proc-macros.S \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/dcache/writethrough.h) \
include/asm/asm-offsets.h \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/media/5fbea9a5-212a-4618-914c-484220a5fb21/itb/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
arch/arm/mm/cache-v7.o: $(deps_arch/arm/mm/cache-v7.o)
$(deps_arch/arm/mm/cache-v7.o):
| sktjdgns1189/android_kernel_iriver_MX100 | arch/arm/mm/.cache-v7.o.cmd | bat | gpl-2.0 | 2,539 |
cmd_arch/x86/boot/compressed/vmlinux.lds := gcc -E -Wp,-MD,arch/x86/boot/compressed/.vmlinux.lds.d -nostdinc -isystem /usr/lib/gcc/x86_64-redhat-linux/4.8.3/include -I/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -P -C -Ux86_64 -D__ASSEMBLY__ -DLINKER_SCRIPT -o arch/x86/boot/compressed/vmlinux.lds arch/x86/boot/compressed/vmlinux.lds.S
deps_arch/x86/boot/compressed/vmlinux.lds := \
arch/x86/boot/compressed/vmlinux.lds.S \
$(wildcard include/config/output/format.h) \
$(wildcard include/config/x86/64.h) \
include/asm-generic/vmlinux.lds.h \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/pm/trace.h) \
$(wildcard include/config/blk/dev/initrd.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
$(wildcard include/config/x86/internode/cache/shift.h) \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/smp.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/linkage.h \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/stringify.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/page_types.h \
include/linux/const.h \
/home/exist/tmp/linux-2.6.35.14/linux-2.6.35/arch/x86/include/asm/page_64_types.h \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/flatmem.h) \
arch/x86/boot/compressed/vmlinux.lds: $(deps_arch/x86/boot/compressed/vmlinux.lds)
$(deps_arch/x86/boot/compressed/vmlinux.lds):
| Existed/kernel-2.6.35.14 | arch/x86/boot/compressed/.vmlinux.lds.cmd | bat | gpl-2.0 | 2,456 |
cmd_crypto/cryptomgr.o := ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ld -EL -r -o crypto/cryptomgr.o crypto/algboss.o crypto/testmgr.o
| spacecaker/CM7_Space_Kernel_Cooper | crypto/.cryptomgr.o.cmd | bat | gpl-2.0 | 146 |
py sqlmap.py -u "http://localhost:8080/api/mysql/search/city?q=Cop" --all
PAUSE | ERPedersen/Gutenberg | src/main/resources/injectSearchCity.bat | bat | gpl-3.0 | 79 |
.
:make
@pause
@nasm boot.asm -o boot.bin
@goto make
| AbdielNie/Operating-System-DIY | x86/boot/make boot.bat | bat | gpl-3.0 | 61 |
xgettext gui\*.h gui\*.cpp *.cpp *.h --keyword="_" --keyword="wxPLURAL:1,2" --from-code=utf-8
tx pull -l en
msgmerge -N translations\urbackup.frontend\en.po messages.po > translations\urbackup.frontend\en_new.po
| uroni/urbackup_frontend_wx | add_new_messages.bat | bat | agpl-3.0 | 215 |
mkdir build-x64-windows
cd build-x64-windows
cmake .. -DCMAKE_TOOLCHAIN_FILE="%VCPKG_ROOT%\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x64-windows -DCMAKE_GENERATOR_PLATFORM=x64
cmake --build . --config Release
cd Release
tell_me.exe
cd ..
cd ..
pause
| myd7349/Ongoing-Study | cpp/CMake/vcpkg/tiny_process_library_example/build-x64-windows.bat | bat | lgpl-3.0 | 265 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=daq-server
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
| ARM-software/daq-server | doc/make.bat | bat | apache-2.0 | 818 |
npm link express
npm link jade | donlee888/JsObjects | JavaScript/NodeCode/ExpressUser02/NpmLink.bat | bat | mit | 30 |
MEMORY
{
PAGE 0 : /* Program Memory */
/* Memory (RAM/FLASH) blocks can be moved to PAGE1 for data allocation */
/* BEGIN is used for the "boot to Flash" bootloader mode */
BEGIN : origin = 0x080000, length = 0x000002
RAMM0 : origin = 0x000122, length = 0x0002DE
RAMD0 : origin = 0x00B000, length = 0x000800
RAMLS0 : origin = 0x008000, length = 0x000800
RAMLS1 : origin = 0x008800, length = 0x000800
RAMLS2 : origin = 0x009000, length = 0x000800
RAMLS3 : origin = 0x009800, length = 0x000800
RAMLS4 : origin = 0x00A000, length = 0x000800
RAMGS14 : origin = 0x01A000, length = 0x001000 /* Only Available on , F28377S, F28375S devices. Remove line on other devices. */
RAMGS15 : origin = 0x01B000, length = 0x001000 /* Only Available on , F28377S, F28375S devices. Remove line on other devices. */
RESET : origin = 0x3FFFC0, length = 0x000002
/* Flash sectors */
FLASHA : origin = 0x080002, length = 0x001FFE /* on-chip Flash */
FLASHB : origin = 0x082000, length = 0x002000 /* on-chip Flash */
FLASHC : origin = 0x084000, length = 0x002000 /* on-chip Flash */
FLASHD : origin = 0x086000, length = 0x002000 /* on-chip Flash */
FLASHE : origin = 0x088000, length = 0x008000 /* on-chip Flash */
FLASHF : origin = 0x090000, length = 0x008000 /* on-chip Flash */
FLASHG : origin = 0x098000, length = 0x008000 /* on-chip Flash */
FLASHH : origin = 0x0A0000, length = 0x008000 /* on-chip Flash */
FLASHI : origin = 0x0A8000, length = 0x008000 /* on-chip Flash */
FLASHJ : origin = 0x0B0000, length = 0x008000 /* on-chip Flash */
FLASHK : origin = 0x0B8000, length = 0x002000 /* on-chip Flash */
FLASHL : origin = 0x0BA000, length = 0x002000 /* on-chip Flash */
FLASHM : origin = 0x0BC000, length = 0x002000 /* on-chip Flash */
FLASHN : origin = 0x0BE000, length = 0x002000 /* on-chip Flash */
PAGE 1 : /* Data Memory */
/* Memory (RAM/FLASH) blocks can be moved to PAGE0 for program allocation */
BOOT_RSVD : origin = 0x000002, length = 0x000120 /* Part of M0, BOOT rom will use this for stack */
RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
RAMD1 : origin = 0x00B800, length = 0x000800
RAMLS5 : origin = 0x00A800, length = 0x000800
RAMGS0 : origin = 0x00C000, length = 0x001000
RAMGS1 : origin = 0x00D000, length = 0x001000
RAMGS2_GS4 : origin = 0x00E000, length = 0x003000
/*
RAMGS2 : origin = 0x00E000, length = 0x001000
RAMGS3 : origin = 0x00F000, length = 0x001000
RAMGS4 : origin = 0x010000, length = 0x001000
*/
RAMGS5 : origin = 0x011000, length = 0x001000
RAMGS6 : origin = 0x012000, length = 0x001000
RAMGS7 : origin = 0x013000, length = 0x001000
RAMGS8 : origin = 0x014000, length = 0x001000
RAMGS9 : origin = 0x015000, length = 0x001000
RAMGS10 : origin = 0x016000, length = 0x001000
RAMGS11 : origin = 0x017000, length = 0x001000
RAMGS12 : origin = 0x018000, length = 0x001000 /* Only Available on , F28377S, F28375S devices. Remove line on other devices. */
RAMGS13 : origin = 0x019000, length = 0x001000 /* Only Available on , F28377S, F28375S devices. Remove line on other devices. */
CPU2TOCPU1RAM : origin = 0x03F800, length = 0x000400
CPU1TOCPU2RAM : origin = 0x03FC00, length = 0x000400
}
SECTIONS
{
/* Allocate program areas: */
.cinit : > FLASHB PAGE = 0, ALIGN(4)
.pinit : > FLASHB, PAGE = 0, ALIGN(4)
.text : >> FLASHB | FLASHC | FLASHD | FLASHE PAGE = 0, ALIGN(4)
codestart : > BEGIN PAGE = 0, ALIGN(4)
/* Allocate uninitalized data sections: */
.stack : > RAMGS1 PAGE = 1
.ebss : > RAMGS2_GS4 PAGE = 1
.esysmem : > RAMLS5 PAGE = 1
/* Initalized sections go in Flash */
.econst : >> FLASHF | FLASHG | FLASHH PAGE = 0, ALIGN(4)
.switch : > FLASHB PAGE = 0, ALIGN(4)
.reset : > RESET, PAGE = 0, TYPE = DSECT /* not used, */
Filter_RegsFile : > RAMGS0, PAGE = 1
.sysmem : > RAMGS1, PAGE = 1
.cio : > RAMGS1, PAGE = 1
#ifdef __TI_COMPILER_VERSION__
#if __TI_COMPILER_VERSION__ >= 15009000
.TI.ramfunc : {} LOAD = FLASHD,
RUN = RAMLS0 | RAMLS1 | RAMLS2 |RAMLS3,
LOAD_START(_RamfuncsLoadStart),
LOAD_SIZE(_RamfuncsLoadSize),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
RUN_SIZE(_RamfuncsRunSize),
RUN_END(_RamfuncsRunEnd),
PAGE = 0, ALIGN(4)
#else
ramfuncs : LOAD = FLASHD,
RUN = RAMLS0 | RAMLS1 | RAMLS2 |RAMLS3,
LOAD_START(_RamfuncsLoadStart),
LOAD_SIZE(_RamfuncsLoadSize),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
RUN_SIZE(_RamfuncsRunSize),
RUN_END(_RamfuncsRunEnd),
PAGE = 0, ALIGN(4)
#endif
#endif
/* The following section definitions are required when using the IPC API Drivers */
GROUP : > CPU1TOCPU2RAM, PAGE = 1
{
PUTBUFFER
PUTWRITEIDX
GETREADIDX
}
GROUP : > CPU2TOCPU1RAM, PAGE = 1
{
GETBUFFER : TYPE = DSECT
GETWRITEIDX : TYPE = DSECT
PUTREADIDX : TYPE = DSECT
}
}
/*
//===========================================================================
// End of file.
//===========================================================================
*/
| AdrianoRuseler/LAUNCHXL-F28377S | ControlSuite/F2837xS_common/cmd/2837xS_FLASH_TMU_lnk_cpu1.cmd | bat | mit | 6,259 |
@echo off
IF %COMPILER%==msvc2019 (
@echo on
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
mkdir build
cd build
cmake .. -DWITH_EXAMPLES=ON -DWITH_UNIT_TESTS=ON -DEIGEN3_INSTALL_DIR="c:\%EIGEN3_INSTALL_PATH%"
cmake --build . --target INSTALL
cd %APPVEYOR_BUILD_FOLDER%\examples\standalone
mkdir build
cd build
cmake .. -DEIGEN3_INSTALL_DIR="c:\%EIGEN3_INSTALL_PATH%"
msbuild -verbosity:minimal -m:8 standalone.sln
Debug\standalone.exe
cd %APPVEYOR_BUILD_FOLDER%/build
msbuild -verbosity:minimal -m:8 examples.vcxproj
msbuild -verbosity:minimal -m:8 unit_tests\unit_tests.vcxproj
)
IF %COMPILER%==msys2 (
@echo on
SET "PATH=C:\msys64\mingw64\bin;%PATH%"
cd %APPVEYOR_BUILD_FOLDER%
mkdir build
cd build
bash -lc "cmake .. -DWITH_EXAMPLES=ON -DWITH_UNIT_TESTS=ON -DEIGEN3_INSTALL_DIR=/c/%EIGEN3_INSTALL_PATH% -GNinja"
bash -lc "ninja install"
cd %APPVEYOR_BUILD_FOLDER%\examples\standalone
mkdir build
cd build
bash -lc "cmake .. -DEIGEN3_INSTALL_DIR=/c/%EIGEN3_INSTALL_PATH% -GNinja && ninja && ./standalone"
cd %APPVEYOR_BUILD_FOLDER%\build
bash -lc "ninja examples"
bash -lc "ninja unit_tests"
)
| vsoftco/qpp | .appveyor/appveyor_build.bat | bat | mit | 1,267 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_WOPI.MS_WOPI_S15_CreateFile.TestCase_S15_TC03_Download_UploadPartial /testcontainer:..\..\MS-WOPI\TestSuite\bin\Debug\MS-WOPI_TestSuite.dll /runconfig:..\..\MS-WOPI\MS-WOPI.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | FileSyncandWOPI/Source/Scripts/MS-WOPI/RunMSWOPI_S15_TC03.cmd | bat | mit | 293 |
cmd_sound/pci/ca0106/built-in.o := rm -f sound/pci/ca0106/built-in.o; /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-ar rcsD sound/pci/ca0106/built-in.o
| EPDCenter/android_kernel_archos_97_titan | sound/pci/ca0106/.built-in.o.cmd | bat | gpl-2.0 | 236 |
set CLASSPATH=%CLASSPATH%;bin;vrml97.jar;portfolio.jar
java ipKchat | 007Style/whiskeyDEM | ipKchat.bat | bat | gpl-2.0 | 68 |
runFlashGUI.cmd en
| hernol/ConuWar | Game/test/test_lang/runFlashGUI_en.cmd | bat | gpl-3.0 | 20 |
inject.exe --run "E:\Games\EVE\bin\exefile.exe" --inject --export Load --add-path --path-resolution --module cerberus.dll | geota/hadesmem | scripts/x86/eve.bat | bat | mit | 121 |
eggHTS /Go.enrichment.plot /in "./KOBAS-Gene Ontology.csv" /bubble /r "x/2" /Corrected /displays 10 /pvalue 0.05 /size 2000,1600 /tick 1 /go "D:\smartnucl_integrative\DATA\go.obo" | amethyst-asuka/GCModeller | GCModeller/test/GO_enrichment/KOBAS/plot-bubble.bat | bat | gpl-3.0 | 179 |
schtasks /End /TN "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
schtasks /Change /TN "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /DISABLE
| SharePointOscar/packer-windows | scripts/disable-tasks.bat | bat | mit | 204 |
::
:: Microsoft Azure SDK for Net - Generate library code
:: Copyright (C) Microsoft Corporation. All Rights Reserved.
::
@echo off
call %~dp0..\..\..\..\tools\generate.cmd recoveryservicessiterecovery/resource-manager %*
| ScottHolden/azure-sdk-for-net | src/SDKs/RecoveryServices.SiteRecovery/Management.RecoveryServices.SiteRecovery/generate.cmd | bat | mit | 223 |
Color 0A
mode con: cols=79 lines=55
TITLE CodeCombat.com - Development Environment Installation | lasershow/codecombat | scripts/windows/coco-dev-setup/batch/scripts/configuration_cmd.bat | bat | mit | 96 |
@echo off
rem
del /Q src\*.*
mkdir src\scmp
mkdir src\binaries
copy /Y ..\emulator\start.cpp src
copy /Y ..\emulator\sys_processor.* src
copy /Y ..\emulator\sys_debug_system.h src
copy /Y ..\emulator\hardware.cpp src
copy /Y ..\emulator\scmp\__scmp*.h src\scmp
copy /Y ..\emulator\binaries\* src\binaries
copy /Y ..\miscellany\ST7920Driver\src\ST7920*.* src
platformio run | paulscottrobson/wallpaper-one | hardware/build.bat | bat | mit | 375 |
@PUSHD "%~dp0" & "..\..\launcher.exe" /AUTO /USE prboom-plus /DEMO 30uv1936.lmp /CMPLVL 2 | Kroc/PortaDOOM | PortaDOOM/files/demos/30uv1936/playdemo.bat | bat | mit | 89 |
call "mexopts.bat"
nmake -f Model_justmodel_sfun.mak
| NTNU-MCS/CS_EnterpriseI | 10 prev work/2014 Orsten/Simulation files/slprj/_sfprj/Model_justmodel/_self/sfun/src/Model_justmodel_sfun.bat | bat | mit | 53 |
gcc -std=c99 -c "C Files\jaccard.c" -o "Object Files\jaccard.o"
gcc -std=c99 "Object Files\jaccard.o" "..\List-Library\Object Files\List.o" -o jaccard | Cjsheaf/Jaccard-Textual-Similarity | Jaccard/CompileAndRun.bat | bat | mit | 151 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=DiveIntoOpenstack
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
| hahaps/dive-into-openstack | make.bat | bat | mit | 825 |
@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. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\KivyInstaller.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\KivyInstaller.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
if "%1" == "dummy" (
%SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy
if errorlevel 1 exit /b 1
echo.
echo.Build finished. Dummy builder generates no files.
goto end
)
:end
| KeyWeeUsr/KivyInstaller | docs/make.bat | bat | mit | 7,474 |
gradle setupDecompWorkspace idea | GeckoTheGeek42/TheLawsOfPhysics | setupWorkspaceIdea.bat | bat | mit | 32 |
@echo off
where /q pwsh || (
echo ERROR: "pwsh" not found - please make sure powershell core is installed and in your PATH. https://github.com/PowerShell/powershell/releases
exit /b 1
)
set ROOT_DIR=%~dp0
set ROOT_DIR=%ROOT_DIR:~0,-1%
set OUT_DIR=%ROOT_DIR%\_out
set COMMON_FLAGS=-DCOUSCOUS_TESTS -luser32 -lgdi32
set DEBUG_FLAGS=-DDEBUG %COMMON_FLAGS%
set RELEASE_FLAGS=-DNDEBUG %COMMON_FLAGS%
pushd %ROOT_DIR%
call :build-script-template > build.bat
where /q fbuild && (
call :sln-script-template > sln.bat
) || (
echo WARNING: "fbuild" not found - sln.bat not generated. If you want this, pleast make sure FastBuild is installed and in your PATH. https://fastbuild.org
)
popd
goto :eof
:build-script-template
echo @echo off
echo pushd %ROOT_DIR%
echo.
echo rem move into out dir
echo md %OUT_DIR% 2^> NUL
echo cd %OUT_DIR%
echo.
echo rem code generation
echo pwsh "%ROOT_DIR%\tools\generate_code.ps1"
echo.
echo if "%%BUILD_RELEASE%%"=="" (
echo rem debug build
echo zig c++ "%ROOT_DIR%\src\win32_main.cpp" %DEBUG_FLAGS% -o "%OUT_DIR%\bin\couscous-d.exe" -g
echo zig c++ "%ROOT_DIR%\src\couscousc.cpp" %DEBUG_FLAGS% -o "%OUT_DIR%\bin\couscousc-d.exe" -g
echo ) else (
echo rem release build
echo zig c++ "%ROOT_DIR%\src\win32_main.cpp" %RELEASE_FLAGS% -o "%OUT_DIR%\bin\couscous.exe" -Ofast
echo zig c++ "%ROOT_DIR%\src\couscousc.cpp" %RELEASE_FLAGS% -o "%OUT_DIR%\bin\couscousc.exe" -Ofast
echo )
echo.
echo popd
goto :eof
:sln-script-template
echo @echo off
echo call :bff-template ^> %OUT_DIR%\sln.bff
echo fbuild -ide -config %OUT_DIR%\sln.bff
echo goto :eof
echo :bff-template
echo echo VCXProject("couscous-proj")
echo echo {
echo echo .ProjectOutput = "%OUT_DIR%\couscous.vcxproj"
echo echo .ProjectBuildCommand = "%ROOT_DIR%\build.bat"
echo echo .Output = "%OUT_DIR%\bin\couscous.exe"
echo echo .ProjectBasePath = "%ROOT_DIR%"
echo echo .ProjectInputPaths = "%ROOT_DIR%\src"
echo echo .PreprocessorDefinitions = "DEBUG;COUSCOUSC=1"
echo echo }
echo echo VSSolution("all")
echo echo {
echo echo .SolutionOutput = "%ROOT_DIR%\couscous.sln"
echo echo .SolutionProjects =
echo echo {
echo echo "couscous-proj"
echo echo }
echo echo }
goto :eof
| Manuzor/couscous | configure.bat | bat | mit | 2,336 |
@echo off
java -jar "%~dp0/NinjaPrinter.jar" %*
| Westwing-Home-and-Living/Ninja-Printer | chrome-extension/host/ninja-printer-host.bat | bat | mit | 49 |
@ECHO OFF
ECHO SSHHH
| testdouble/scripty | test/fixtures/custom-user-scripts-win/secret.cmd | bat | mit | 22 |
@ECHO OFF
net stop w3svc
net stop was
set path=d:\xampp\
%xampp_path%xampp_cli.exe start apache
%xampp_path%xampp_cli.exe start mysql
::%path%xampp_cli.exe start mercury | dev4s/old-batch-scripts | Public/Start Services.bat | bat | mit | 170 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=cookiecutterproject_name
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
| EVEprosper/ProsperCookiecutters | ProsperFlask/{{cookiecutter.project_name}}/docs/make.bat | bat | mit | 828 |
#Executable To Run main.py
C:\Python24\python.exe main.py
PAUSE | SVRobots/Minecraft | RUN.bat | bat | gpl-2.0 | 64 |
"%GBC%\fart.exe" "%DOLPH%.ini" [ROMPTH] "%GBG%\%GAM%\%CONS%\%WII%\%CSTM%"
"%GBC%\fart.exe" "%DOLPH%.ini" [ROM] "%WIIROM%" | HoodlumDTX/rom-jacket | Wiiinject.bat | bat | gpl-2.0 | 122 |
# ========== Copyright Header Begin ==========================================
#
# OpenSPARC T1 Processor File: sjm_5.cmd
# Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
#
# The above named program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License version 2 as published by the Free Software Foundation.
#
# The above named program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this work; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ========== Copyright Header End ============================================
CONFIG id=14
TIMEOUT 10000
WRITEBLK 0x010F4616340 +
0xE0E0E0E0 0xE1E1E1E1 0xE2E2E2E2 0xE3E3E3E3 +
0xE4E4E4E4 0xE5E5E5E5 0xE6E6E6E6 0xE7E7E7E7 +
0xE8E8E8E8 0xE9E9E9E9 0xEaEaEaEa 0xEbEbEbEb +
0xEcEcEcEc 0xEdEdEdEd 0xEeEeEeEe 0xEfEfEfEf
WAIT 100
WRITEMSK 0x010643205C0 0x00FF00FF00FF00FF +
0x7B9DE04E 0x97B77DFD 0x23CE8477 0x28C7CF90 +
0x552BEE7D 0xFABFBCC3 0xEF3042E5 0x2447B56C +
0x790B4CDB 0xB933E418 0x1C03B72c 0x5FECABF2 +
0xAD08D705 0xC1915904 0x42C81C80 0x6BD0F0F9
WAIT 50
#READBLK 0x010F4616340 +
# 0xE0E0E0E0 0xE1E1E1E1 0xE2E2E2E2 0xE3E3E3E3 +
# 0xE4E4E4E4 0xE5E5E5E5 0xE6E6E6E6 0xE7E7E7E7 +
# 0xE8E8E8E8 0xE9E9E9E9 0xEaEaEaEa 0xEbEbEbEb +
# 0xEcEcEcEc 0xEdEdEdEd 0xEeEeEeEe 0xEfEfEfEf
## 32-Byte aligned RDD
READBLK 0x010F4616360 +
0xE0E0E0E0 0xE1E1E1E1 0xE2E2E2E2 0xE3E3E3E3 +
0xE4E4E4E4 0xE5E5E5E5 0xE6E6E6E6 0xE7E7E7E7 +
0xE8E8E8E8 0xE9E9E9E9 0xEaEaEaEa 0xEbEbEbEb +
0xEcEcEcEc 0xEdEdEdEd 0xEeEeEeEe 0xEfEfEfEf
IFETCH 0x000AF3FC980 64 +
0xF1F1F1F1 0xF2F2F2F2 0xF3F3F3F3 0xF4F4F4F4 +
0xF5F5F5F5 0xF6F6F6F6 0xF7F7F7F7 0xF8F8F8F8 +
0xF9F9F9F9 0xFaFaFaFa 0xFbFbFbFb 0xFcFcFcFc +
0xFdFdFdFd 0xFeFeFeFe 0xFfFfFfFf 0xF0F0F0F0
WAIT 1000
| trivoldus28/pulsarch-verilog | verif/env/iss/pli/sjm/c/sjm_5.cmd | bat | gpl-2.0 | 2,147 |
cmd_drivers/i2c/built-in.o := /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/i2c/built-in.o drivers/i2c/i2c-boardinfo.o drivers/i2c/i2c-core.o drivers/i2c/i2c-dev.o drivers/i2c/busses/built-in.o drivers/i2c/chips/built-in.o drivers/i2c/algos/built-in.o
| MadRocker/experimental-2.6.29-MadRocker | drivers/i2c/.built-in.o.cmd | bat | gpl-2.0 | 304 |
cmd_drivers/misc/inv_mpu/accel/inv_mpu_bma250.o := arm-eabi-ld -EL -r -o drivers/misc/inv_mpu/accel/inv_mpu_bma250.o drivers/misc/inv_mpu/accel/bma250.o
| Jason-Choi/EastSea-Kernel | drivers/misc/inv_mpu/accel/.inv_mpu_bma250.o.cmd | bat | gpl-2.0 | 157 |
cmd_libbb/procps.o := gcc -Wp,-MD,libbb/.procps.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -Os -march=i386 -mpreferred-stack-boundary=2 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(procps)" -D"KBUILD_MODNAME=KBUILD_STR(procps)" -c -o libbb/procps.o libbb/procps.c
deps_libbb/procps.o := \
libbb/procps.c \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/fast/top.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/limits.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/i386-linux-gnu/bits/predefs.h \
/usr/include/i386-linux-gnu/sys/cdefs.h \
/usr/include/i386-linux-gnu/bits/wordsize.h \
/usr/include/i386-linux-gnu/gnu/stubs.h \
/usr/include/i386-linux-gnu/gnu/stubs-32.h \
/usr/include/i386-linux-gnu/bits/posix1_lim.h \
/usr/include/i386-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/i386-linux-gnu/bits/posix2_lim.h \
/usr/include/i386-linux-gnu/bits/xopen_lim.h \
/usr/include/i386-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/i386-linux-gnu/bits/byteswap.h \
/usr/include/endian.h \
/usr/include/i386-linux-gnu/bits/endian.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h \
/usr/include/stdint.h \
/usr/include/i386-linux-gnu/bits/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdbool.h \
/usr/include/unistd.h \
/usr/include/i386-linux-gnu/bits/posix_opt.h \
/usr/include/i386-linux-gnu/bits/environments.h \
/usr/include/i386-linux-gnu/bits/types.h \
/usr/include/i386-linux-gnu/bits/typesizes.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h \
/usr/include/i386-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/i386-linux-gnu/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/i386-linux-gnu/bits/dirent.h \
/usr/include/errno.h \
/usr/include/i386-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/i386-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/i386-linux-gnu/bits/fcntl.h \
/usr/include/i386-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/i386-linux-gnu/sys/select.h \
/usr/include/i386-linux-gnu/bits/select.h \
/usr/include/i386-linux-gnu/bits/sigset.h \
/usr/include/i386-linux-gnu/bits/time.h \
/usr/include/i386-linux-gnu/bits/select2.h \
/usr/include/i386-linux-gnu/sys/sysmacros.h \
/usr/include/i386-linux-gnu/bits/pthreadtypes.h \
/usr/include/i386-linux-gnu/bits/uio.h \
/usr/include/i386-linux-gnu/bits/stat.h \
/usr/include/i386-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/i386-linux-gnu/sys/socket.h \
/usr/include/i386-linux-gnu/sys/uio.h \
/usr/include/i386-linux-gnu/bits/socket.h \
/usr/include/i386-linux-gnu/bits/sockaddr.h \
/usr/include/i386-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/i386-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/i386-linux-gnu/bits/socket2.h \
/usr/include/i386-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/i386-linux-gnu/bits/siginfo.h \
/usr/include/i386-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/i386-linux-gnu/bits/setjmp.h \
/usr/include/i386-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/i386-linux-gnu/bits/signum.h \
/usr/include/i386-linux-gnu/bits/sigaction.h \
/usr/include/i386-linux-gnu/bits/sigcontext.h \
/usr/include/i386-linux-gnu/asm/sigcontext.h \
/usr/include/linux/types.h \
/usr/include/i386-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h \
/usr/include/asm-generic/int-ll64.h \
/usr/include/i386-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
$(wildcard include/config/64bit.h) \
/usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/i386-linux-gnu/asm/posix_types.h \
/usr/include/i386-linux-gnu/asm/posix_types_32.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/i386-linux-gnu/bits/sigstack.h \
/usr/include/i386-linux-gnu/sys/ucontext.h \
/usr/include/i386-linux-gnu/bits/sigthread.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h \
/usr/include/i386-linux-gnu/bits/sys_errlist.h \
/usr/include/i386-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/i386-linux-gnu/bits/waitflags.h \
/usr/include/i386-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/i386-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/i386-linux-gnu/bits/string3.h \
/usr/include/libgen.h \
/usr/include/poll.h \
/usr/include/i386-linux-gnu/sys/poll.h \
/usr/include/i386-linux-gnu/bits/poll.h \
/usr/include/i386-linux-gnu/sys/ioctl.h \
/usr/include/i386-linux-gnu/bits/ioctls.h \
/usr/include/i386-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/i386-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/i386-linux-gnu/bits/ioctl-types.h \
/usr/include/i386-linux-gnu/sys/ttydefaults.h \
/usr/include/i386-linux-gnu/sys/mman.h \
/usr/include/i386-linux-gnu/bits/mman.h \
/usr/include/i386-linux-gnu/sys/stat.h \
/usr/include/i386-linux-gnu/sys/time.h \
/usr/include/i386-linux-gnu/sys/wait.h \
/usr/include/i386-linux-gnu/sys/resource.h \
/usr/include/i386-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/i386-linux-gnu/bits/termios.h \
/usr/include/i386-linux-gnu/bits/timex.h \
/usr/include/i386-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/i386-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/i386-linux-gnu/sys/statfs.h \
/usr/include/i386-linux-gnu/bits/statfs.h \
/usr/include/utmp.h \
/usr/include/i386-linux-gnu/bits/utmp.h \
/usr/include/arpa/inet.h \
include/xatonum.h \
libbb/procps.o: $(deps_libbb/procps.o)
$(deps_libbb/procps.o):
| valentinthirion/android-tracebox-busybox | libbb/.procps.o.cmd | bat | gpl-2.0 | 10,198 |
cd MyBlog
bundle exec jekyll build --destination ".\_site_release" | alexandrugris/my-jekyll-tech-blog | build_release.bat | bat | gpl-2.0 | 67 |
cmd_fs/sync.o := /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/.sync.o.d -nostdinc -isystem /home/knesi/arm-2010q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Wno-pointer-sign -Wno-format-security -fno-delete-null-pointer-checks -O2 -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -O1 -mtune=cortex-a8 -ftree-vectorize -ffast-math -fsingle-precision-constant -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(sync)" -D"KBUILD_MODNAME=KBUILD_STR(sync)" -c -o fs/sync.o fs/sync.c
source_fs/sync.o := fs/sync.c
deps_fs/sync.o := \
$(wildcard include/config/have/syscall/wrappers.h) \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/knesi/arm-2010q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
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/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/system.h \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/microp/common.h) \
$(wildcard include/config/cpu/32v6k.h) \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/irqflags.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/hwcap.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/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/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/div64.h \
include/linux/file.h \
include/linux/fs.h \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/blk_types.h \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/mmu.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/hw_breakpoint.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/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/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) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/current.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/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/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/string.h \
include/linux/seqlock.h \
include/linux/completion.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/rcutiny.h \
include/linux/rculist_bl.h \
include/linux/list_bl.h \
include/linux/path.h \
include/linux/stat.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/pid.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/have/arch/mutex/cpu/relax.h) \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/errno.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/rwsem.h \
include/linux/percpu_counter.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/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/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/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) \
/home/knesi/HD2/tiamat-kernel-4.0.2/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/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/msm/soc/rev/a.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/arch/msm8x60.h) \
$(wildcard include/config/mach/sapphire.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/slab_def.h \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/trace/events/gfpflags.h \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/kmalloc_sizes.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/debug/set/module/ronx.h) \
include/linux/kmod.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/elf.h \
include/linux/elf-em.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/elf.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/sched/autogroup.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/rcu/boost.h) \
$(wildcard include/config/compat/brk.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/generic/hardirqs.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/have/unstable/sched/clock.h) \
$(wildcard include/config/irq/time/accounting.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
$(wildcard include/config/mm/owner.h) \
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/mmu/notifier.h) \
$(wildcard include/config/transparent/hugepage.h) \
include/linux/auxvec.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/ipcbuf.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/sigcontext.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/proportions.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/timerqueue.h \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
include/linux/key.h \
$(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/aio_abi.h \
include/linux/uio.h \
include/linux/writeback.h \
include/linux/syscalls.h \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/mips.h) \
include/linux/unistd.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/unistd.h \
$(wildcard include/config/oabi/compat.h) \
include/trace/syscall.h \
include/linux/ftrace_event.h \
include/linux/ring_buffer.h \
$(wildcard include/config/ring/buffer/allow/swap.h) \
include/linux/kmemcheck.h \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/hugetlbfs.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/range.h \
include/linux/bit_spinlock.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/proc-fns.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/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/huge_mm.h \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/seq_file.h \
include/linux/trace_seq.h \
include/linux/hardirq.h \
$(wildcard include/config/bkl.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/hardirq.h \
$(wildcard include/config/local/timers.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/mach/bravo.h) \
$(wildcard include/config/mach/bravoc.h) \
$(wildcard include/config/mach/incrediblec.h) \
$(wildcard include/config/mach/supersonic.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.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/perf_event.h \
$(wildcard include/config/perf/use/vmalloc.h) \
include/linux/pid_namespace.h \
$(wildcard include/config/pid/ns.h) \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/ftrace.h \
$(wildcard include/config/function/tracer.h) \
$(wildcard include/config/stack/tracer.h) \
$(wildcard include/config/dynamic/ftrace.h) \
$(wildcard include/config/frame/pointer.h) \
include/linux/trace_clock.h \
include/linux/kallsyms.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/ftrace.h \
$(wildcard include/config/old/mcount.h) \
include/linux/cpu.h \
$(wildcard include/config/arch/cpu/probe/release.h) \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/sysdev.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/node.h \
$(wildcard include/config/memory/hotplug/sparse.h) \
include/linux/irq_work.h \
include/linux/jump_label_ref.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/pagemap.h \
include/linux/highmem.h \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/debug/highmem.h) \
include/linux/uaccess.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/uaccess.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/smp/on/up.h) \
$(wildcard include/config/arm/errata/411920.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/shmparam.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/kmap_types.h \
/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/highmem.h \
include/linux/hugetlb_inline.h \
include/linux/quotaops.h \
include/linux/buffer_head.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
fs/internal.h \
include/linux/lglock.h \
fs/sync.o: $(deps_fs/sync.o)
$(deps_fs/sync.o):
| DrGrip/tiamat-2.6.38-LEO-Dr_Grip | fs/.sync.o.cmd | bat | gpl-2.0 | 28,397 |
cmd_arch/arm/lib/backtrace.o := /usr/local/arm/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.backtrace.o.d -nostdinc -isystem /usr/local/arm/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/miamo/android/kernel/miamOv/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-exynos/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/backtrace.o arch/arm/lib/backtrace.S
source_arch/arm/lib/backtrace.o := arch/arm/lib/backtrace.S
deps_arch/arm/lib/backtrace.o := \
$(wildcard include/config/cpu.h) \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/printk.h) \
/home/miamo/android/kernel/miamOv/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/miamo/android/kernel/miamOv/arch/arm/include/asm/linkage.h \
/home/miamo/android/kernel/miamOv/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/miamo/android/kernel/miamOv/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/miamo/android/kernel/miamOv/arch/arm/include/asm/hwcap.h \
/home/miamo/android/kernel/miamOv/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/lib/backtrace.o: $(deps_arch/arm/lib/backtrace.o)
$(deps_arch/arm/lib/backtrace.o):
| miamo/miamOv | arch/arm/lib/.backtrace.o.cmd | bat | gpl-2.0 | 2,151 |
@cd /d %~dp0
@echo start (%date% %time%)...
caller.exe -calltype psstool
@echo done (%date% %time%).
pause
| takke/pss-oald8-extractor | copytopss.bat | bat | gpl-2.0 | 109 |
cmd_drivers/base/firmware.o := arm-linux-gnueabi-gcc -Wp,-MD,drivers/base/.firmware.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(firmware)" -D"KBUILD_MODNAME=KBUILD_STR(firmware)" -c -o drivers/base/firmware.o drivers/base/firmware.c
deps_drivers/base/firmware.o := \
drivers/base/firmware.c \
include/linux/kobject.h \
$(wildcard include/config/hotplug.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/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 \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/32v6k.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) \
$(wildcard include/config/smp.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.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) \
/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) \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/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 \
include/asm-generic/cmpxchg-local.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.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 \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.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) \
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 \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/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/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/linux/kref.h \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.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/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/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/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/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/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/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 \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/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/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/completion.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/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) \
drivers/base/base.h \
$(wildcard include/config/sys/hypervisor.h) \
drivers/base/firmware.o: $(deps_drivers/base/firmware.o)
$(deps_drivers/base/firmware.o):
| b8e5n/KTG-kernel_es209ra | drivers/base/.firmware.o.cmd | bat | gpl-2.0 | 15,521 |
cmd_libbb/printable.o := gcc -Wp,-MD,libbb/.printable.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -Os -march=i386 -mpreferred-stack-boundary=2 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(printable)" -D"KBUILD_MODNAME=KBUILD_STR(printable)" -c -o libbb/printable.o libbb/printable.c
deps_libbb/printable.o := \
libbb/printable.c \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/limits.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/i386-linux-gnu/bits/predefs.h \
/usr/include/i386-linux-gnu/sys/cdefs.h \
/usr/include/i386-linux-gnu/bits/wordsize.h \
/usr/include/i386-linux-gnu/gnu/stubs.h \
/usr/include/i386-linux-gnu/gnu/stubs-32.h \
/usr/include/i386-linux-gnu/bits/posix1_lim.h \
/usr/include/i386-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/i386-linux-gnu/bits/posix2_lim.h \
/usr/include/i386-linux-gnu/bits/xopen_lim.h \
/usr/include/i386-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/i386-linux-gnu/bits/byteswap.h \
/usr/include/endian.h \
/usr/include/i386-linux-gnu/bits/endian.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h \
/usr/include/stdint.h \
/usr/include/i386-linux-gnu/bits/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdbool.h \
/usr/include/unistd.h \
/usr/include/i386-linux-gnu/bits/posix_opt.h \
/usr/include/i386-linux-gnu/bits/environments.h \
/usr/include/i386-linux-gnu/bits/types.h \
/usr/include/i386-linux-gnu/bits/typesizes.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h \
/usr/include/i386-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/i386-linux-gnu/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/i386-linux-gnu/bits/dirent.h \
/usr/include/errno.h \
/usr/include/i386-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/i386-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/i386-linux-gnu/bits/fcntl.h \
/usr/include/i386-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/i386-linux-gnu/sys/select.h \
/usr/include/i386-linux-gnu/bits/select.h \
/usr/include/i386-linux-gnu/bits/sigset.h \
/usr/include/i386-linux-gnu/bits/time.h \
/usr/include/i386-linux-gnu/bits/select2.h \
/usr/include/i386-linux-gnu/sys/sysmacros.h \
/usr/include/i386-linux-gnu/bits/pthreadtypes.h \
/usr/include/i386-linux-gnu/bits/uio.h \
/usr/include/i386-linux-gnu/bits/stat.h \
/usr/include/i386-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/i386-linux-gnu/sys/socket.h \
/usr/include/i386-linux-gnu/sys/uio.h \
/usr/include/i386-linux-gnu/bits/socket.h \
/usr/include/i386-linux-gnu/bits/sockaddr.h \
/usr/include/i386-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/i386-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/i386-linux-gnu/bits/socket2.h \
/usr/include/i386-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/i386-linux-gnu/bits/siginfo.h \
/usr/include/i386-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/i386-linux-gnu/bits/setjmp.h \
/usr/include/i386-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/i386-linux-gnu/bits/signum.h \
/usr/include/i386-linux-gnu/bits/sigaction.h \
/usr/include/i386-linux-gnu/bits/sigcontext.h \
/usr/include/i386-linux-gnu/asm/sigcontext.h \
/usr/include/linux/types.h \
/usr/include/i386-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h \
/usr/include/asm-generic/int-ll64.h \
/usr/include/i386-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
$(wildcard include/config/64bit.h) \
/usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/i386-linux-gnu/asm/posix_types.h \
/usr/include/i386-linux-gnu/asm/posix_types_32.h \
/usr/include/i386-linux-gnu/bits/sigstack.h \
/usr/include/i386-linux-gnu/sys/ucontext.h \
/usr/include/i386-linux-gnu/bits/sigthread.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h \
/usr/include/i386-linux-gnu/bits/sys_errlist.h \
/usr/include/i386-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/i386-linux-gnu/bits/waitflags.h \
/usr/include/i386-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/i386-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/i386-linux-gnu/bits/string3.h \
/usr/include/libgen.h \
/usr/include/poll.h \
/usr/include/i386-linux-gnu/sys/poll.h \
/usr/include/i386-linux-gnu/bits/poll.h \
/usr/include/i386-linux-gnu/sys/ioctl.h \
/usr/include/i386-linux-gnu/bits/ioctls.h \
/usr/include/i386-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/i386-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/i386-linux-gnu/bits/ioctl-types.h \
/usr/include/i386-linux-gnu/sys/ttydefaults.h \
/usr/include/i386-linux-gnu/sys/mman.h \
/usr/include/i386-linux-gnu/bits/mman.h \
/usr/include/i386-linux-gnu/sys/stat.h \
/usr/include/i386-linux-gnu/sys/time.h \
/usr/include/i386-linux-gnu/sys/wait.h \
/usr/include/i386-linux-gnu/sys/resource.h \
/usr/include/i386-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/i386-linux-gnu/bits/termios.h \
/usr/include/i386-linux-gnu/bits/timex.h \
/usr/include/i386-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/i386-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/i386-linux-gnu/sys/statfs.h \
/usr/include/i386-linux-gnu/bits/statfs.h \
/usr/include/utmp.h \
/usr/include/i386-linux-gnu/bits/utmp.h \
/usr/include/arpa/inet.h \
include/xatonum.h \
libbb/printable.o: $(deps_libbb/printable.o)
$(deps_libbb/printable.o):
| valentinthirion/android-tracebox-busybox | libbb/.printable.o (Valentin-Thirions-MacBook-Airs in Konflikt stehende Kopie 2014-05-21).cmd | bat | gpl-2.0 | 10,136 |
cmd_drivers/regulator/built-in.o := /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-ld -EL -r -o drivers/regulator/built-in.o drivers/regulator/core.o drivers/regulator/max8698.o
| dalinaum/studyak | drivers/regulator/.built-in.o.cmd | bat | gpl-2.0 | 200 |
cmd_/home/lijg/work/linux-3.10.83/_install/include/xen/.install := /bin/bash scripts/headers_install.sh /home/lijg/work/linux-3.10.83/_install/include/xen /home/lijg/work/linux-3.10.83/include/uapi/xen evtchn.h privcmd.h; /bin/bash scripts/headers_install.sh /home/lijg/work/linux-3.10.83/_install/include/xen /home/lijg/work/linux-3.10.83/include/xen ; /bin/bash scripts/headers_install.sh /home/lijg/work/linux-3.10.83/_install/include/xen /home/lijg/work/linux-3.10.83/include/generated/uapi/xen ; for F in ; do echo "\#include <asm-generic/$$F>" > /home/lijg/work/linux-3.10.83/_install/include/xen/$$F; done; touch /home/lijg/work/linux-3.10.83/_install/include/xen/.install
| ljgabc/lfs | tools/include/xen/..install.cmd | bat | gpl-2.0 | 680 |
@echo off
setlocal
rem Copyright (c) 1999, 2006 Tanuki Software Inc.
rem
rem Java Service Wrapper general NT service install script
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem
rem Find the application home.
rem
rem %~dp0 is location of current script under NT
set _REALPATH=%~dp0
rem Decide on the wrapper binary.
set _WRAPPER_BASE=wrapper
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%.exe
if exist "%_WRAPPER_EXE%" goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
echo %_REALPATH%%_WRAPPER_BASE%.exe
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
set _WRAPPER_CONF="%~f1"
if not %_WRAPPER_CONF%=="" goto startup
set _WRAPPER_CONF="%_REALPATH%..\config\wrapper.conf"
rem
rem Stop the service.
rem
:startup
"%_WRAPPER_EXE%" -p %_WRAPPER_CONF%
| luv/avis_zmqprx | server/packaging/windows/service/bin/stop_avis_service.cmd | bat | gpl-3.0 | 1,213 |
java -cp "build\classes" -enableassertions boxSearch boxSearch.in A_star
| X1011/state_space_search_engine | boxSearch.bat | bat | gpl-3.0 | 73 |
@echo off
@REM Version=1.0.0.0
pushd "%TMPDIR%\%1"
set BTMPLIB=%LIB%
set BTMPINCLUDE=%INCLUDE%
if "%PLATFORM%" == "x64" (
set PlatBUILD=;Platform=x64
) else (
set PlatBUILD=;Platform=Win32
)
IF EXIST "%2-%3.finished" GOTO ende
@REM msbuild /t:Rebuild /p:Configuration=Release %2
@REM msbuild /p:Configuration=Debug %2 /property:VCBuildOverride=AdditionalIncludeDirectories=..\..\SDL-1.2.15\include
set INCLUDE=%PINCLUDE%
set LIB=%PLIB%;..\..\%4\Debug;..\%4\Debug
if "%3" == "ALL" (
msbuild /p:Configuration=Debug%PlatBUILD% /p:"VCBuildAdditionalOptions= /useenv" %2
) else (
msbuild /p:Configuration=Debug%PlatBUILD% /p:"VCBuildAdditionalOptions= /useenv" /t:%3 %2
)
if %ERRORLEVEL% NEQ 0 goto error
set LIB=%PLIB%;..\..\%4\Release;..\%4\Release
if "%3" == "ALL" (
msbuild /p:Configuration=Release%PlatBUILD% /p:"VCBuildAdditionalOptions= /useenv" %2
) else (
msbuild /p:Configuration=Release%PlatBUILD% /p:"VCBuildAdditionalOptions= /useenv" /t:%3 %2
)
if %ERRORLEVEL% NEQ 0 goto error
echo "ready" > "%2-%3.finished"
goto ende
:error
echo ERROR: Cannot build %3 target of %2.
:ende
set LIB=%BTMPLIB%
set INCLUDE=%BTMPINCLUDE%
popd | Jedzia/Humbug | projects/build/scripts/builddependency.bat | bat | gpl-3.0 | 1,149 |
#intDualSub
flopoco -frequency=500 IntDualSub 26 0
flopoco -frequency=500 IntDualSub 26 1
flopoco -frequency=500 IntDualSub 216 0
flopoco -frequency=500 IntDualSub 216 1
flopoco -frequency=500 IntDualSub 1 0
flopoco -frequency=500 IntDualSub 1 1
flopoco -target=StratixII -frequency=500 IntDualSub 26 0
flopoco -target=StratixII -frequency=500 IntDualSub 26 1
flopoco -target=StratixII -frequency=500 IntDualSub 216 0
flopoco -target=StratixII -frequency=500 IntDualSub 216 1
flopoco -target=StratixII -frequency=500 IntDualSub 1 0
flopoco -target=StratixII -frequency=500 IntDualSub 1 1
| GSejas/Dise-o-ASIC-FPGA-FPU | Literature FPUs/flopoco-2.3.2/tools/tests/IntDualSub.cmd | bat | gpl-3.0 | 590 |
@echo off
rem /**
rem * Console.bat v0.1.3
rem * ------------------
rem * Powered by Francesco Bianco <[email protected]>
rem * Licensed with The GNU General Public License v3.0
rem */
rem set current version
set CONSOLE_VER=0.1.3
set CONSOLE_BAT=%~dpf0
set CONSOLE_DIR=%~dp0
set CONSOLE_SRC=https://raw.githubusercontent.com/Javanile/Console.bat/master/console.bat
set CONSOLE_VAR=%~dp0\console.var
rem cmd.exe preloaded settings
if "%1" == "__init__" goto :__init__
rem update
if "%1" == "update" goto :update
rem install
if "%1" == "install" goto :install
rem include
if "%1" == "include" goto :include
rem path
if "%1" == "path" goto :path
rem clear
if "%1" == "clear" goto :clear
rem home
if "%1" == "home" goto :home
rem open
if "%1" == "open" goto :cmdopen
rem cron
if "%1" == "cron" goto :cron
rem ls
if "%1" == "ls" goto :ls
rem rm
if "%1" == "rm" goto :rm
rem sync
if "%1" == "sync" goto :sync
rem wget
if "%1" == "wget" goto :wget
rem edit
if "%1" == "edit" goto :edit
rem edit command
if "%1" == "--help" (
echo.
echo Console.bat subcommands
echo -----------------------
echo console install ^<path^> Install console.bat to ^<path^> and create shortcut
echo console update Update console.bat to latest version
echo open ^<name^> ^[subname^] Open project folder with name and subname
echo home Open root projects folder
echo cron list List console.bat user created cron
echo.
echo Linux inspired commands
echo -----------------------
echo ls List file on directory
goto :eof
)
rem edit command
if "%1" == "--version" (
echo.
echo Console.bat v%CONSOLE_VER%
echo ------------------
echo Powered by Francesco Bianco ^<[email protected]^>
echo Licensed with The GNU General Public License v3.0
goto :eof
)
rem unknown subcommand
if not [%1] == [] (
echo.
echo Unknown subcommand: '%1'
echo Type 'console --help' for usage.
goto :eof
)
rem detect edit command
set CONSOLE_EDT=%ProgramFiles(x86)%\Notepad++\notepad++.exe
rem load environtment vars
if exist "%CONSOLE_VAR%" for /f "tokens=*" %%s in (%CONSOLE_VAR:)=^)%) do call :loadvar %%s
rem save old dos prompt
if [%PROMP0%] == [] set PROMP0=%PROMPT%
rem set new prompt
set PROMPT=#$S
rem enter in working dir
cd %CONSOLE_DIR%
rem launch indipend cmd.exe process
cmd.exe /k call "%CONSOLE_BAT%" __init__
rem restore dos prompt
set PROMPT=%PROMP0%
rem exit
goto :eof
rem loadvar
:loadvar
echo %* | findstr = > nul 2> nul
if errorlevel 1 (
set "PATH=%PATH%;%*"
) else (
set "%*"
)
goto :eof
rem __init__
:__init__
cls
doskey console="%CONSOLE_BAT%" $*
doskey clear="%CONSOLE_BAT%" clear
doskey edit="%CONSOLE_BAT%" edit $1
doskey wget="%CONSOLE_BAT%" wget $1 $2
doskey open="%CONSOLE_BAT%" open $1 $2
doskey home="%CONSOLE_BAT%" home
doskey cron="%CONSOLE_BAT%" cron $1 $2 $3 $4
doskey sync="%CONSOLE_BAT%" sync $1 $2
doskey ls="%CONSOLE_BAT%" ls $1
doskey rm="%CONSOLE_BAT%" rm $1 $2 $3
color
goto :eof
rem install script
:install
if [%2] == [] goto :syntaxerror
if not exist %2 goto :nodirerror
set NOQUOTE0=%2
set NOQUOTE1=%NOQUOTE0:"=%
bitsadmin.exe /transfer "install" %CONSOLE_SRC% %2\console.bat > nul 2> nul
echo set o = WScript.CreateObject("WScript.Shell"^).CreateShortcut("%HOMEDRIVE%%HOMEPATH%\Desktop\%~n2.lnk"^): o.TargetPath = "%NOQUOTE1%\console.bat": o.IconLocation = "cmd.exe": o.Save > %2\_.vbs
cscript %2\_.vbs > nul 2> nul
del %2\_.vbs
attrib -a +h +s %2\console.bat
echo.
echo Console.bat successfull installed!
echo Double-click on desktop icon to open.
goto :eof
rem update
:update
bitsadmin.exe /transfer "update" %CONSOLE_SRC% %CONSOLE_BAT% > nul 2> nul
attrib -a +h +s %CONSOLE_BAT%
echo.
echo Console.bat successfull updated!
echo Type 'exit' or close and reopen.
goto :eof
rem include
:include
set sync=call %CONSOLE_BAT% sync
set console=call %CONSOLE_BAT%
goto :eof
rem clear
:clear
cls
goto :eof
rem home
:home
cd %CONSOLE_DIR%
echo.
echo Opening root projects directory
echo -------------------------------
echo %CD%
goto :eof
rem open
:cmdopen
if [%2] == [] goto :syntaxerror
cd %CONSOLE_DIR%
for /d %%a in (%2*) do (
cd %%a
goto :subopen
)
for /d %%a in (*) do (
cd %%a
for /d %%b in (%2*) do (
cd %%b
goto :subopen
)
cd ..
)
for /d %%a in (*) do (
cd %%a
for /d %%b in (*) do (
cd %%b
for /d %%c in (%2*) do (
cd %%c
goto :subopen
)
cd ..
)
cd ..
)
for /d %%a in (*) do (
cd %%a
for /d %%b in (*) do (
cd %%b
for /d %%c in (*) do (
cd %%c
for /d %%d in (%2*) do (
cd %%d
goto :subopen
)
cd ..
)
cd ..
)
cd ..
)
echo.
echo Project directory not found: '%2*\%3*'
goto :eof
:subopen
if not [%3] == [] (
for /d %%a in (%3*) do (
cd %%a
goto :open
)
for /d %%a in (*) do (
cd %%a
for /d %%b in (%3*) do (
cd %%b
goto :open
)
cd ..
)
for /d %%a in (*) do (
cd %%a
for /d %%b in (*) do (
cd %%b
for /d %%c in (%3*) do (
cd %%c
goto :open
)
cd ..
)
cd ..
)
)
:open
echo.
echo Opening project directory
echo -------------------------
echo %CD%
goto :eof
rem path
:path
set PATH=%PATH%;%2
echo.%2 >> %CONSOLE_VAR%
attrib -a +h +s %CONSOLE_VAR%
goto :eof
rem ls
:ls
echo.
dir /w /o:gn %2 | findstr /c:"^[^ ]" /r
goto :eof
rem rm
:rm
if "%2" == "-fr" (
erase /s /q /f %3
rmdir /s /q %3
goto :eof
)
goto :syntaxerror
rem cron
:cron
if "%2" == "list" (
echo.
schtasks /query | findstr console.bat
goto :eof
)
if "%2" == "every" (
schtasks /create /sc %3 /tr %~dpf4 /tn "console.bat %2 %3 %~n4"
goto :eof
)
if "%2" == "weekly" (
schtasks /create /sc weekly /tr %~dpf3 /tn "console.bat %2 %~n3"
goto :eof
)
if "%2" == "delete" (
schtasks /delete /tn "console.bat %3 %4 %5" /f
goto :eof
)
goto :syntaxerror
rem sync
:sync
echo.
xcopy /c /d /e /h /i /r /y %2 %3
goto :eof
rem wget
:wget
bitsadmin.exe /transfer "wget" %2
goto :eof
rem edit
:edit
start /b "" "%CONSOLE_EDT%" %2
goto :eof
rem syntaxerror
:syntaxerror
echo.
echo Syntax error: missing argument
echo Type 'console --help' for usage.
goto :eof
rem nodirerror
:nodirerror
echo.
echo Error "%2" not is a directory.
goto :eof
| Javanile/Console.bat | console.bat | bat | gpl-3.0 | 6,249 |
mkdir build
cd build
REM Remove dot from PY_VER for use in library name
set MY_PY_VER=%PY_VER:.=%
REM Configure step
cmake -G "Ninja" -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_SYSTEM_PREFIX_PATH="%LIBRARY_PREFIX%" ^
-DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^
-DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ^
-DPYTHON_LIBRARY:FILEPATH="%PREFIX%"/libs/python%MY_PY_VER%.lib ^
-DPYTHONOCC_INSTALL_DIRECTORY=%SP_DIR%/OCC ^
-DPYTHONOCC_WRAP_DATAEXCHANGE=ON ^
-DPYTHONOCC_WRAP_OCAF=ON ^
-DPYTHONOCC_WRAP_VISU=ON ^
..
if errorlevel 1 exit 1
REM Build step
ninja
if errorlevel 1 exit 1
REM Install step
ninja install
if errorlevel 1 exit 1
REM copy the swig interface files. There are software projects
REM that might require these files to build own modules on top
REM of pythonocc-core
cd ..
xcopy src "%LIBRARY_PREFIX%\src\pythonocc-core\src" /s /e /i
if errorlevel 1 exit 1 | jf---/pythonocc-contrib | conda-pkg/pythonocc-core/bld.bat | bat | lgpl-2.1 | 964 |
@echo off
rem TODO: Detect processor architecture (also from WoW64) to select correct debugger path also on 32bit machines
start "Windows Debug" "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\windbg.exe" -k com:port=3,baud=912600 | emlid/Navio-SDK-Windows-IoT | Source/Tools/Scripts/Serial Debug.cmd | bat | apache-2.0 | 236 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=scar
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
| grycap/scar | docs/make.bat | bat | apache-2.0 | 812 |
@echo off
powershell -NoProfile -ExecutionPolicy Bypass -Command "& .\PDFTableSearchFromUploadedFile.ps1"
echo Script finished with errorlevel=%errorlevel%
pause | bytescout/ByteScout-SDK-SourceCode | PDF.co Web API/PDF Search Tables/PowerShell/PDF Table Search from Uploaded File/run.bat | bat | apache-2.0 | 163 |
set INCLUDE=%INCLUDE%;D:\Projects\GitHub\CPPWindowsTutorial\InsideWindowsDebugging\corelib | weliwita/CPPWindowsTutorial | InsideWindowsDebugging/Chapter2/setenv.bat | bat | apache-2.0 | 90 |
echo off
echo Set install parameter from ini file
for /f "delims=" %%x in (wikijournals.ini) do (set "%%x")
echo %date%-%time% - Install Semantic Mediawiki Extensions - >> %PROJECTDIR%\install\windows\wikijournals.log
cd %HTMLDIR%\%WIKIDIR%
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Changing to wikijournals directory failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
cd extensions
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Changing to extensions directory failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions/SemanticDrilldown.git
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Cloning Semantic Drilldown repository failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions/PageForms
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Cloning PageForms repository failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions/SemanticInternalObjects.git
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Cloning Semantic Internal Objects repository failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
cd ..
call composer require mediawiki/maps %MAPSVERSION%
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Install Maps using composer failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
call composer require mediawiki/semantic-result-formats %SMWRESULTFORMATVERSION%
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Install Semantic Result Formats using composer failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
call composer require mediawiki/semantic-compound-queries %SMWCOMPOUNDQUERIESVERSION%
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Install Semantic Compound Queries using composer failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
type LocalSettings.php %PROJECTDIR%\config\configSMWExtensions.txt > LocalSettings.bak
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Appending SMW Extensions Config to LocalSettings.php failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
del LocalSettings.php
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Deleting old Settings.php failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
ren LocalSettings.bak LocalSettings.php
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Rename new LocalSettings.php failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
cd maintenance
if %ERRORLEVEL% NEQ 0 (
echo Changing to maintenance directory failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
call php update.php
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Update Mediawiki failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
cd %PROJECTDIR%\install\windows
if %ERRORLEVEL% NEQ 0 (
echo %date%-%time% Changing to Project Directory failed >> %PROJECTDIR%\install\windows\wikijournals.log
exit 1
)
echo %date%-%time% Semantic Mediawiki Extensions installed successful >> %PROJECTDIR%\install\windows\wikijournals.log | swertschak/wikijournals | install/windows/install_smw_extensions.cmd | bat | apache-2.0 | 3,075 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.