code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
@echo off
@rem
@rem Copyright (C) 2019 Ceridwen Limited
@rem
@rem This program is free software: you can redistribute it and/or modify
@rem it under the terms of the GNU General Public License as published by
@rem the Free Software Foundation, either version 3 of the License, or
@rem (at your option) any later version.
@rem
@rem This program is distributed in the hope that it will be useful,
@rem but WITHOUT ANY WARRANTY; without even the implied warranty of
@rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@rem GNU General Public License for more details.
@rem
@rem You should have received a copy of the GNU General Public License
@rem along with this program. If not, see <http://www.gnu.org/licenses/>.
@rem
java -Xbootclasspath/a:conf -jar ceridwen-selfissue-configeditor.jar | ceridwen-com/ceridwen-selfissue | ceridwen-selfissue-bin/src/main/resources/ConfigEditor.bat | bat | gpl-3.0 | 809 |
@ECHO OFF
set DEPOT_TOOLS_PATH=%1%
set PATH=%PATH%;%DEPOT_TOOLS_PATH:"=%;%~dp2%
%2 %3 %4 %5 %6 %7 %8 %9 | desura/Desurium | cmake/scripts/depot_tools_wrapper.bat | bat | gpl-3.0 | 103 |
call DistroCreate.bat
call DistroZip.bat
timeout 2 | codedreality/Intrinsic | scripts_win32/DistroCreateAndZip.bat | bat | apache-2.0 | 51 |
@echo off
pushd %~dp0
setlocal
if exist bin goto build
mkdir bin
:Build
REM Find the most recent 32bit MSBuild.exe on the system. Require v12.0 (installed with VS2013) or later since .NET 4.0
REM is not supported. Also handle x86 operating systems, where %ProgramFiles(x86)% is not defined. Always quote the
REM %MSBuild% value when setting the variable and never quote %MSBuild% references.
set MSBuild="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe"
if not exist %MSBuild% @set MSBuild="%ProgramFiles%\MSBuild\12.0\Bin\MSBuild.exe"
if "%1" == "" goto BuildDefaults
%MSBuild% WebApiOData.msbuild /m /nr:false /t:%* /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
if %ERRORLEVEL% neq 0 goto BuildFail
goto BuildSuccess
:BuildDefaults
%MSBuild% WebApiOData.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
if %ERRORLEVEL% neq 0 goto BuildFail
goto BuildSuccess
:BuildFail
echo.
echo *** BUILD FAILED ***
goto End
:BuildSuccess
echo.
echo **** BUILD SUCCESSFUL ***
goto end
:End
popd
endlocal
| Terminator-Aaron/Katana | OData/build.cmd | bat | apache-2.0 | 1,113 |
@ruby noderbc %* | dig386/node-marshal | bin/noderbc.bat | bat | bsd-2-clause | 16 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\ligpy.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ligpy.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
| houghb/ligpy | doc/make.bat | bat | bsd-2-clause | 6,979 |
%PYTHON% -m pip install --no-deps --ignore-installed .
if errorlevel 1 exit 1
set SCRIPTS="%PREFIX%\Scripts"
if not exist %SCRIPTS% mkdir %SCRIPTS%
if errorlevel 1 exit 1
copy %SRC_DIR%\conda-recipe\post-link.bat %SCRIPTS%\.nb_conda_kernels-post-link.bat || exit 1
copy %SRC_DIR%\conda-recipe\pre-unlink.bat %SCRIPTS%\.nb_conda_kernels-pre-unlink.bat || exit 1
| jjhelmus/berryconda | recipes/nb_conda_kernels/bld.bat | bat | bsd-3-clause | 372 |
for %%f in (*.asm) do nasm -fbin %%f -o %%~nf.com
| uberset/L1-compiler | output/generator8086/assemble.bat | bat | gpl-2.0 | 50 |
cmd_src/arm/am335x-nano.dtb = cpp -Wp,-MD,src/arm/.am335x-nano.dtb.d.pre.tmp -nostdinc -Iinclude -Isrc/arm -Itestcase-data -undef -D__DTS__ -x assembler-with-cpp -o src/arm/.am335x-nano.dtb.dts.tmp src/arm/am335x-nano.dts ; dtc -O dtb -o src/arm/am335x-nano.dtb -b 0 -i src/arm -d src/arm/.am335x-nano.dtb.d.dtc.tmp src/arm/.am335x-nano.dtb.dts.tmp ; cat src/arm/.am335x-nano.dtb.d.pre.tmp src/arm/.am335x-nano.dtb.d.dtc.tmp > src/arm/.am335x-nano.dtb.d
am335x-nano.o: src/arm/am335x-nano.dts src/arm/am33xx.dtsi \
include/dt-bindings/gpio/gpio.h include/dt-bindings/pinctrl/am33xx.h \
include/dt-bindings/pinctrl/omap.h src/arm/skeleton.dtsi \
src/arm/tps65217.dtsi
src/arm/am335x-nano.dtb: src/arm/.am335x-nano.dtb.dts.tmp src/arm/am33xx-clocks.dtsi
| marklendering/dtb-rebuilder-modified | src/arm/.am335x-nano.dtb.cmd | bat | gpl-2.0 | 755 |
@echo off
rmdir /S /Q bin.2003
rmdir /S /Q bin.2005
rmdir /S /Q OutlookClient\Debug
rmdir /S /Q OutlookClient\Release
rmdir /S /Q OutlookExpressClient\Debug
rmdir /S /Q OutlookExpressClient\Release
rmdir /S /Q GoogleEmailUploader\obj
rmdir /S /Q ThunderbirdClient\obj
del /S /Q /F *.user
del /Q /F /A:H *.suo
del /Q /F *.ncb
| google-code-export/google-email-uploader | clean.cmd | bat | apache-2.0 | 329 |
cd /d %0\
start AldursLab.WurmAssistant.Launcher.exe -BuildCode stable-mac -WurmUnlimited | PeterAldur/WurmAssistant3 | src/Launchers/LauncherV2/WurmAssistant.Launcher/stable-mac-unlimited.bat | bat | gpl-3.0 | 92 |
@ECHO off
ECHO.
ECHO Test: Original size
"../../bin/wkhtmltoimage" http://google.com/ out/google-crop-orig.png
ECHO Test: 200x200 from origin
"../../bin/wkhtmltoimage" --crop-w 500 --crop-h 300 http://google.com/ out/google-crop-500x300.png
ECHO Test: 200x200 from 100x100
"../../bin/wkhtmltoimage" --crop-x 150 --crop-y 100 --crop-w 500 --crop-h 300 http://google.com/ out/google-crop-150x100x500x300.png
ECHO.
PAUSE | danmaz74/wkhtmltopdf-svg | scripts/test/test-cropping.bat | bat | lgpl-3.0 | 417 |
setlocal
pushd %~dp0
ysrunparallel.exe parallelbuild_win.txt
nmake -nologo
popd
endlocal
| ninkamat/CMU-24-681-CAD-MIProject | YsFramework/public/src/ysport/src/windows/parallelbuild.bat | bat | gpl-3.0 | 99 |
start /B "" cmd /C rmdir "%programfiles%\Oclgrind" /S /Q
| surround-io/oclgrind | src/install/uninstall.bat | bat | bsd-3-clause | 58 |
@echo off
setlocal
set DIRNAME=%~dp0
set PROGNAME=%~nx0%
pushd %DIRNAME%..
set JBOSS_HOME=%CD%
popd
set RUNJAR=%JBOSS_HOME%\bin\run.jar
if exist "%RUNJAR%" goto found_runjar
echo Could not locate %RUNJAR%. Please check that you are in the
echo bin directory when running this script.
goto eof
:found_runjar
if "%1" == "uninstall" goto uninstall
if "%1" == "server" goto install
if "%1" == "client" goto install
echo "Usage: %0 server|client|uninstall"
echo "Options:"
echo " client install DCM4CHEE Image Archive with client hotspot vm"
echo " server install DCM4CHEE Image Archive with server hotspot vm"
echo " uninstall uninstall DCM4CHEE Image Archive service"
goto eof
:install
if not "%JAVA_HOME%" == "" goto found_javahome
echo set JAVA_HOME to your JDK 1.5 installation directory
goto eof
:found_javahome
set VM=%JAVA_HOME%\bin\%1\jvm.dll
if exist "%VM%" goto found_vm
set VM=%JAVA_HOME%\jre\bin\%1\jvm.dll
if exist "%VM%" goto found_vm
echo Could not locate %VM%. Please check that JAVA_HOME is set to your
echo JDK 1.5 installation directory
goto eof
:found_vm
set TOOLS_JAR=%JAVA_HOME%\lib\tools.jar
if exist "%TOOLS_JAR%" goto install
echo Could not locate %TOOLS_JAR%. Unexpected results may occur.
echo Make sure that JAVA_HOME points to a JDK and not a JRE.
:install
rem Setup JBoss specific properties
set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name=%PROGNAME%
rem JVM memory allocation pool parameters. Modify as appropriate.
set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m
rem With Sun JVMs reduce the RMI GCs to once per hour
set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
rem Set java.library.path to find native jai-imageio components
set JAVA_OPTS=%JAVA_OPTS% -Djava.library.path=%JBOSS_HOME%\bin\native
rem Set app.name and app.pid used in emitted audit log messages
set JAVA_OPTS=%JAVA_OPTS% -Dapp.name=dcm4chee -Dapp.pid=%RANDOM%
rem Setup the java endorsed dirs
set JAVA_OPTS=%JAVA_OPTS% -Djava.endorsed.dirs=%JBOSS_HOME%\lib\endorsed
rem Enable remote access to jboss services and web interface
set START_PARAMS=-params -b 0.0.0.0
JavaService.exe -install "DCM4CHEE Media Creator" "%VM%"^
%JAVA_OPTS% "-Djava.class.path=%TOOLS_JAR%;%RUNJAR%"^
-start org.jboss.Main %START_PARAMS%^
-stop org.jboss.Main -method systemExit^
-out "%JBOSS_HOME%\bin\out.txt"^
-err "%JBOSS_HOME%\bin\err.txt"^
-current "%JBOSS_HOME%\bin"^
-path "%JBOSS_HOME%\bin"
goto eof
:uninstall
JavaService.exe -uninstall "DCM4CHEE Media Creator"
goto eof
:eof
endlocal
| medicayun/medicayundicom | dcm4jboss-cdw/tags/DCM4CHEE_CDW_2_14_3/src/etc/bin/install_service.bat | bat | apache-2.0 | 2,551 |
@ECHO OFF
SETLOCAL
cls
REM Batchfile inspired by the launchscript of http://autospinstaller.codeplex.com
SET command=Redeploy
SET verbosity=Verbose
SET type=All
SET saveEnvXml=-saveEnvXml
@TITLE -- SharePoint Solution Deployer --
FOR /F "tokens=2-4 delims=/ " %%i IN ('date /t') DO SET SHORTDATE=%%i-%%j-%%k
FOR /F "tokens=1-3 delims=: " %%i IN ('time /t') DO SET SHORTTIME=%%i-%%j%%k
SET LaunchedFromBAT=1
:START
:: Check for Powershell
IF NOT EXIST "%SYSTEMROOT%\system32\windowspowershell\v1.0\powershell.exe" (
COLOR 0C
ECHO - "powershell.exe" not found!
ECHO - This script requires PowerShell - install v2.0/3.0, then re-run this script.
COLOR
pause
EXIT
)
:: Check for Powershell v2.0 (minimum)
ECHO - Checking for Powershell 2.0 (minimum)...
"%SYSTEMROOT%\system32\windowspowershell\v1.0\powershell.exe" $host.Version.Major | find "1" >nul
IF %ERRORLEVEL% == 0 (
COLOR 0C
ECHO - This script requires a minimum PowerShell version of 2.0!
ECHO - Please uninstall v1.0, install v2.0/3.0, then re-run this script.
COLOR
pause
EXIT
)
ECHO - OK.
:: Get existing Powershell ExecutionPolicy
FOR /F "tokens=*" %%x in ('"%SYSTEMROOT%\system32\windowspowershell\v1.0\powershell.exe" Get-ExecutionPolicy') do (set ExecutionPolicy=%%x)
:: Set Bypass, in case we are running over a net share or UNC
IF NOT "%ExecutionPolicy%"=="Bypass" IF NOT "%ExecutionPolicy%"=="Unrestricted" (
ECHO - PS ExecutionPolicy is %ExecutionPolicy%, setting ExecutionPolicy to Bypass.
"%SYSTEMROOT%\system32\windowspowershell\v1.0\powershell.exe" -Command Start-Process "$PSHOME\powershell.exe" -Verb RunAs -ArgumentList "'-Command Set-ExecutionPolicy Bypass'"
)
GOTO LAUNCHSCRIPT
:LAUNCHSCRIPT
"%SYSTEMROOT%\system32\windowspowershell\v1.0\powershell.exe" -Command Start-Process "$PSHOME\powershell.exe" -Verb RunAs -ArgumentList "'Scripts\SPSD_Main.ps1 -Command %command% -Type %type% -Verbosity %verbosity% %saveEnvXml%'"
ENDLOCAL | Gergues/SPSF | SPALM.SPSF/Templates/Solutions/Projects/Deployment/Batches/Redeploy.bat | bat | apache-2.0 | 1,966 |
/*
// TI File $Revision: /main/3 $
// Checkin $Date: March 3, 2011 13:45:43 $
//###########################################################################
//
// FILE: 28PLC93_RAM_lnk.cmd
//
// TITLE: Linker Command File For F28PLC93 examples that run out of RAM
//
// This ONLY includes all SARAM blocks on the F28PLC93 device.
// This does not include flash or OTP.
//
// Keep in mind that L0,L1,L2,L3 and L4 are protected by the code
// security module.
//
// What this means is in most cases you will want to move to
// another memory map file which has more memory defined.
//
//###########################################################################
// $TI Release: $
// $Release Date: $
//###########################################################################
*/
/* ======================================================
// For Code Composer Studio V2.2 and later
// ---------------------------------------
// In addition to this memory linker command file,
// add the header linker command file directly to the project.
// The header linker command file is required to link the
// peripheral structures to the proper locations within
// the memory map.
//
// The header linker files are found in <base>\F2806x_headers\cmd
//
// For BIOS applications add: F2806x_Headers_BIOS.cmd
// For nonBIOS applications add: F2806x_Headers_nonBIOS.cmd
========================================================= */
/* ======================================================
// For Code Composer Studio prior to V2.2
// --------------------------------------
// 1) Use one of the following -l statements to include the
// header linker command file in the project. The header linker
// file is required to link the peripheral structures to the proper
// locations within the memory map */
/* Uncomment this line to include file only for non-BIOS applications */
/* -l F2806x_Headers_nonBIOS.cmd */
/* Uncomment this line to include file only for BIOS applications */
/* -l F2806x_Headers_BIOS.cmd */
/* 2) In your project add the path to <base>\F2806x_headers\cmd to the
library search path under project->build options, linker tab,
library search path (-i).
/*========================================================= */
/* Define the memory block start/length for the F2806x
PAGE 0 will be used to organize program sections
PAGE 1 will be used to organize data sections
Notes:
Memory blocks on F28PLC93 are uniform (ie same
physical memory) in both PAGE 0 and PAGE 1.
That is the same memory region should not be
defined for both PAGE 0 and PAGE 1.
Doing so will result in corruption of program
and/or data.
Contiguous SARAM memory blocks can be combined
if required to create a larger memory block.
*/
MEMORY
{
PAGE 0 :
/* BEGIN is used for the "boot to SARAM" bootloader mode */
BEGIN : origin = 0x000000, length = 0x000002
RAMM0 : origin = 0x000050, length = 0x0003B0
RAML0_L3 : origin = 0x008000, length = 0x002000 /* RAML0-3 combined for size of .text */
/* in Example_F2806xSWPrioritezedInterrupts */
RESET : origin = 0x3FFFC0, length = 0x000002
FPUTABLES : origin = 0x3FD860, length = 0x0006A0 /* FPU Tables in Boot ROM */
IQTABLES : origin = 0x3FDF00, length = 0x000B50 /* IQ Math Tables in Boot ROM */
IQTABLES2 : origin = 0x3FEA50, length = 0x00008C /* IQ Math Tables in Boot ROM */
IQTABLES3 : origin = 0x3FEADC, length = 0x0000AA /* IQ Math Tables in Boot ROM */
BOOTROM : origin = 0x3FF3B0, length = 0x000C10
PAGE 1 :
BOOT_RSVD : origin = 0x000002, length = 0x00004E /* Part of M0, BOOT rom will use this for stack */
RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
RAML4 : origin = 0x00A000, length = 0x002000 /* on-chip RAM block L4 */
RAML5 : origin = 0x00C000, length = 0x002000 /* on-chip RAM block L5 */
RAML6 : origin = 0x00E000, length = 0x002000 /* on-chip RAM block L6 */
RAML7 : origin = 0x010000, length = 0x002000 /* on-chip RAM block L7 */
RAML8 : origin = 0x012000, length = 0x002000 /* on-chip RAM block L8 */
USB_RAM : origin = 0x040000, length = 0x000800 /* USB RAM */
}
SECTIONS
{
/* Setup for "boot to SARAM" mode:
The codestart section (found in DSP28_CodeStartBranch.asm)
re-directs execution to the start of user code. */
codestart : > BEGIN, PAGE = 0
ramfuncs : > RAMM0, PAGE = 0
.text : > RAML0_L3, PAGE = 0
.cinit : > RAMM0, PAGE = 0
.pinit : > RAMM0, PAGE = 0
.switch : > RAMM0, PAGE = 0
.reset : > RESET, PAGE = 0, TYPE = DSECT /* not used, */
.stack : > RAMM1, PAGE = 1
.ebss : > RAML4, PAGE = 1
.econst : > RAML4, PAGE = 1
.esysmem : > RAML4, PAGE = 1
IQmath : > RAML0_L3, PAGE = 0
IQmathTables : > IQTABLES, PAGE = 0, TYPE = NOLOAD
/* Allocate FPU math areas: */
FPUmathTables : > FPUTABLES, PAGE = 0, TYPE = NOLOAD
DMARAML5 : > RAML5, PAGE = 1
DMARAML6 : > RAML6, PAGE = 1
DMARAML7 : > RAML7, PAGE = 1
DMARAML8 : > RAML8, PAGE = 1
/* Uncomment the section below if calling the IQNexp() or IQexp()
functions from the IQMath.lib library in order to utilize the
relevant IQ Math table in Boot ROM (This saves space and Boot ROM
is 1 wait-state). If this section is not uncommented, IQmathTables2
will be loaded into other memory (SARAM, Flash, etc.) and will take
up space, but 0 wait-state is possible.
*/
/*
IQmathTables2 : > IQTABLES2, PAGE = 0, TYPE = NOLOAD
{
IQmath.lib<IQNexpTable.obj> (IQmathTablesRam)
}
*/
/* Uncomment the section below if calling the IQNasin() or IQasin()
functions from the IQMath.lib library in order to utilize the
relevant IQ Math table in Boot ROM (This saves space and Boot ROM
is 1 wait-state). If this section is not uncommented, IQmathTables2
will be loaded into other memory (SARAM, Flash, etc.) and will take
up space, but 0 wait-state is possible.
*/
/*
IQmathTables3 : > IQTABLES3, PAGE = 0, TYPE = NOLOAD
{
IQmath.lib<IQNasinTable.obj> (IQmathTablesRam)
}
*/
}
/*
//===========================================================================
// End of file.
//===========================================================================
*/
| battosai30/Energia | hardware/c2000/cores/c2000/F2806x_common/cmd/28PLC93_RAM_lnk.cmd | bat | lgpl-2.1 | 6,980 |
@ECHO OFF
::: -- Prepare the processor --
@SETLOCAL ENABLEEXTENSIONS
@SETLOCAL ENABLEDELAYEDEXPANSION
:: -- Version History --
:: Version YYYYMMDD Author Description
SET "version=0.0.1" &:20120729 Phillip Clark initial version
SET "version=0.0.2" &:20131127 Phillip Clark updated to use specified VS environ, or fallback to the latest version installed
SET "title=Build (%~nx0) - %version%"
TITLE %title%
SET "DISPOSITION=DISPOSITION UNKNOWN"
SET "UNIQUE=unknown"
CALL:make_timestamp UNIQUE
IF "%~1" NEQ "" (
CALL :ParseCommandLineArg "%~1"
)
IF %ERRORLEVEL% NEQ 0 (
ECHO.Invalid argument: %~1
CALL:PrintUsage
GOTO :FAIL
)
IF "%~2" NEQ "" (
CALL :ParseCommandLineArg "%~2"
)
IF %ERRORLEVEL% NEQ 0 (
ECHO.Invalid argument: %~2
CALL:PrintUsage
GOTO :FAIL
)
IF "%~3" NEQ "" (
CALL :ParseCommandLineArg "%~3"
)
IF %ERRORLEVEL% NEQ 0 (
ECHO.Invalid argument: %~3
CALL:PrintUsage
GOTO :FAIL
)
IF "%CFG%" == "" (
SET "CFG=Release"
)
IF "%PLT%" == "" (
SET PLT="AnyCPU"
)
IF "%VRB%" == "" (
SET VRB="detailed"
)
IF "%VSE%" == "" (
SET VSE="11.0"
)
ECHO.%VSE%
IF "%VSE%" == "11.0" (
IF EXIST "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" (
GOTO:load_11_vars
)
)
GOTO:load_10_vars
:load_11_vars
CALL "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat"
GOTO:go_build
:load_10_vars
CALL "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat"
:go_build
FOR %%I IN (*.csproj) DO CALL :build_csproj "%%~nxI"
SET "DISPOSITION=Success!"
GOTO:EXIT
:build_csproj
SET F="%~1"
ECHO.%~p1
ECHO. %~1
SET "CL=msbuild %F% /p:Configuration=%CFG%;Platform=%PLT% /t:Clean;Build /v:%VRB% > build_%UNIQUE%.log"
%CL%
IF %ERRORLEVEL% NEQ 0 (
ECHO.Build failed...
GOTO:EXIT
)
GOTO:EOF
:ParseCommandLineArg -- Parses a command line argument and sets the corresponding variable
:: -- %~1: the argument
SETLOCAL
SET C=%~1
SET A=%C:~0,3%
SET V=%C:~3%
SET "G="
IF "%A%" == "/p:" (
SET "G=PLT"
) ELSE IF "%A%" == "/P:" (
SET "G=PLT"
) ELSE IF "%A%" == "/c:" (
SET "G=CFG"
) ELSE IF "%A%" == "/C:" (
SET "G=CFG"
) ELSE IF "%A%" == "/v:" (
SET "G=VRB"
) ELSE IF "%A%" == "/V:" (
SET "G=VRB"
) ELSE (
VERIFY OTHER 2> NUL
)
ENDLOCAL&SET "%G%=%V%"
GOTO:EOF
:make_timestamp -- creates a timestamp and returns it's value in the variable given
:: -- %~1: reference to a variable to hold the timestamp
FOR /f "tokens=2-8 delims=/:. " %%A IN ("%date%:%time: =0%") DO SET "%~1=%%C%%A%%B_%%D%%E%%F%%G"
GOTO:EOF
:FAIL
:: -- %1: the current log file
:: -- %2: a failure message
:: CALL:log %~1 "%~2"
SET "DISPOSITION=FAILED"
COLOR 47
GOTO :EXIT
:EXIT -- Displays the disposition and exits.
ECHO.
SET /P WAIT_RESULT=Script complete: %DISPOSITION% (enter to continue)
GOTO:EOF
| flitbit-org/fbrepresent | FlitBit.Represent/build-release.cmd | bat | mit | 2,805 |
bcp metamodel.dbo.sysdiagrams out metamodel.bcp -U sa -P sasa1234 -c -S localhost
| cjheath/activefacts-examples | images/DumpMetamodel.bat | bat | mit | 83 |
call _presetvars.bat
docker stop %ContainerName% | Koubek/dockerfiles-dynamics-nav | root/build/sql/_stop.bat | bat | mit | 49 |
@echo off
SETLOCAL
call "%~dp0environment.bat" %0 %*
%RUBY% -S -- service_manager.rb --restart
| Simspace/puppet-windows_mcollective | files/windows/restart_service.bat | bat | mit | 105 |
adb -d shell pm grant com.oasisfeng.greenify android.permission.WRITE_SECURE_SETTINGS
adb -d shell pm grant com.oasisfeng.greenify android.permission.DUMP
adb -d shell pm grant com.oasisfeng.greenify android.permission.READ_LOGS
pause | Jiangyiqun/android_background_ignore | greenify/Greenify授权.bat | bat | mit | 236 |
"..\packages\Google.ProtocolBuffers.2.4.1.555\tools\ProtoGen.exe" --include_imports -ignore_google_protobuf=true -namespace=Google.ProtocolBuffers.Compiler.PluginProto -file_extension=.Generated.cs google\protobuf\compiler\plugin.proto"
move /Y *.Generated.cs "..\protoc-gen-dts\"
| ngbrown/protoc-gen-dts | src/protos/run_protogen.cmd | bat | mit | 282 |
@if (@X)==(@Y) @end /* JScript comment
@echo off
cscript //E:JScript //nologo "%~nx0" %*
exit /b %errorlevel%
@if (@X)==(@Y) @end JScript comment */
// writes a string to the console without a new line at the end
if(WScript.Arguments.Count()>0) WScript.StdOut.Write(WScript.Arguments.Item(0));
| npocmaka/batch.scripts | hybrids/jscript/write.bat | bat | mit | 297 |
@echo off
@call 0.SetEnv.bat
@mkdir %WEIGHT%
"%BUILD%" test --model="%DEPLOY%" --weights "%WEIGHT%" | takuya-takeuchi/Demo | Caffe1/6.Test.bat | bat | mit | 102 |
setlocal enabledelayedexpansion
set VSBAT="C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\VsDevCmd.bat"
set SCRIPT="x_tmp_build_x.bat"
set BUILDS[0]="d:\proj\1.0"
set BUILDS[0]="d:\proj\1.5"
set BUILDS[0]="d:\proj\2.0"
for %%i in (0,1,2) do (
rem === Temp build file ===
type %VSBAT% > %SCRIPT%
echo pushd !BUILDS[%%i]! >> %SCRIPT%
echo svn update . >> %SCRIPT%
echo rem devenv my.sln /clean >> %SCRIPT%
echo devenv my.sln /build Debug >> %SCRIPT%
echo rem devenv my.sln /build Release >> %SCRIPT%
echo popd >> %SCRIPT%
rem === Temp build file end ===
call %SCRIPT%
del %SCRIPT%
)
| gvaduha/homebrew | winscripts/msvcnightbuilder.bat | bat | mit | 627 |
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"C:\RailsInstaller\Ruby2.1.0\bin\ruby.exe" "C:/temp/New_EC-Site-master/vendor/bundle/ruby/2.1.0/bin/tilt" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"C:\RailsInstaller\Ruby2.1.0\bin\ruby.exe" "%~dpn0" %*
| watanabe-kazunori/New_EC-Site | vendor/bundle/ruby/2.1.0/bin/tilt.bat | bat | mit | 252 |
-intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -o "G:/ceshi/lab3.3/test_for_alu_isim_beh.exe" -prj "G:/ceshi/lab3.3/test_for_alu_beh.prj" "work.test_for_alu" "work.glbl"
| chasingegg/Computer_Systems | CS334_computer organization lab/source/lab3_alu/fuseRelaunch.cmd | bat | mit | 218 |
mklink %HOMEPATH%\_vimrc %HOMEPATH%\dotfiles\_vimrc
mklink %HOMEPATH%\_gvimrc %HOMEPATH%\dotfiles\_gvimrc
pause
| ysfukumo/dotfiles | mklink_rc.bat | bat | mit | 115 |
set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_45
mvn clean install | Microsoft/vso-httpclient-java | Rest/compile.cmd | bat | mit | 65 |
cmd_fs/fuse/fuse.o := ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ld -EL -r -o fs/fuse/fuse.o fs/fuse/dev.o fs/fuse/dir.o fs/fuse/file.o fs/fuse/inode.o fs/fuse/control.o
| chrnueve/udooImaxdi | kernel_oficial_source/fs/fuse/.fuse.o.cmd | bat | gpl-2.0 | 182 |
cmd_arch/arm/boot/compressed/lib1funcs.o := /home/robin/toolchain/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/boot/compressed/.lib1funcs.o.d -nostdinc -isystem /home/robin/toolchain/bin/../lib/gcc/arm-none-eabi/4.6.1/include -I/home/robin/android/CM7_kernel_TA/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -mfpu=vfp -mtune=arm1136jf-s -Wa,-march=all -c -o arch/arm/boot/compressed/lib1funcs.o arch/arm/boot/compressed/lib1funcs.S
deps_arch/arm/boot/compressed/lib1funcs.o := \
arch/arm/boot/compressed/lib1funcs.S \
$(wildcard include/config/aeabi.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/linkage.h \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/hwcap.h \
arch/arm/boot/compressed/lib1funcs.o: $(deps_arch/arm/boot/compressed/lib1funcs.o)
$(deps_arch/arm/boot/compressed/lib1funcs.o):
| spacecaker/CM7_Space_Kernel_Cooper | arch/arm/boot/compressed/.lib1funcs.o.cmd | bat | gpl-2.0 | 1,862 |
powershell -NoProfile -ExecutionPolicy bypass -File MAKE.ps1
| emkael/jfrpary-bidding-data | MAKE.bat | bat | gpl-2.0 | 61 |
for /f "tokens=* delims= " %%a in ('dir /b/ad-h "%GBG%\%GAM%\%CONS%"') do (
set BE=%%a
CALL :RED
)
set CURNTA=conselect.set
if exist "%GBC%\conselect.ini" set CURNTA=conselect.ini
for /f "tokens=* delims= " %%a in ('type "%GBC%\%CURNTA%"') do (
set BE=%%a
CALL :RED
)
exit /b
:RED
if exist "%GBG%\%ROMJ%\%BE%.lnk" del /q "%GBG%\%ROMJ%\%BE%.lnk"
exit /b | HoodlumDTX/rom-jacket | delshort.bat | bat | gpl-2.0 | 369 |
@echo off
if not exist ..\win32\vs_tmpl\mkmsvc.exe goto missingmkmsvc
echo generating SDL2x MSVC12 project as win32-sdl2x-msvc12
if exist win32-sdl2x-msvc12 goto removedir
:makemsvcdir
mkdir win32-sdl2x-msvc12
cd ..\win32\vs_tmpl
mkmsvc.exe -sdl2 -12 vice
cd ..\..\sdl
copy msvc-files\make-bindist-sdl2x.bat.proto win32-sdl2x-msvc12\make-msvc-bindist.bat
copy msvc-files\debug.h win32-sdl2x-msvc12
copy msvc-files\dirent.h win32-sdl2x-msvc12
copy msvc-files\ide-config-sdl2.h win32-sdl2x-msvc12\ide-config.h
copy msvc-files\ide-siddefs.h win32-sdl2x-msvc12
copy msvc-files\ide-siddtvdefs.h win32-sdl2x-msvc12
copy msvc-files\inttypes.h win32-sdl2x-msvc12
copy msvc-files\stdint.h win32-sdl2x-msvc12
copy msvc-files\ffmpeg-config.h win32-sdl2x-msvc12
copy msvc-files\vice.manifest win32-sdl2x-msvc12
copy msvc-files\winid_arm.bat win32-sdl2x-msvc12
copy msvc-files\winid_x64.bat win32-sdl2x-msvc12
copy msvc-files\winid_x86.bat win32-sdl2x-msvc12
echo SDL2x MSVC12 project files generated in win32-sdl2x-msvc12
goto end
:missingmkmsvc
echo ..\win32\vs_tmpl\mkmsvc.exe is missing
goto end
:removedir
echo y | del win32-sdl2x-msvc12\*.* /S
rd win32-sdl2x-msvc12 /s /q
if exist win32-sdl2x-msvc12 goto cannotremovedir
goto makemsvcdir
:cannotremovedir
echo can't delete the win32-sdl2x-msvc12 directory, please remove win32-sdl2x-msvc12 manually and run this batch file again.
:end
pause
| AreaScout/vice-gles2 | src/arch/sdl/generate_msvc12_sdl2x.bat | bat | gpl-2.0 | 1,420 |
cmd_arch/arm/common/fiq_glue.o := /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/common/.fiq_glue.o.d -nostdinc -isystem /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/space/android/kernel/linux-2.6.39-tegra/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/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/common/fiq_glue.o arch/arm/common/fiq_glue.S
source_arch/arm/common/fiq_glue.o := arch/arm/common/fiq_glue.S
deps_arch/arm/common/fiq_glue.o := \
/space/android/kernel/linux-2.6.39-tegra/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) \
/space/android/kernel/linux-2.6.39-tegra/arch/arm/include/asm/linkage.h \
/space/android/kernel/linux-2.6.39-tegra/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/space/android/kernel/linux-2.6.39-tegra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/space/android/kernel/linux-2.6.39-tegra/arch/arm/include/asm/hwcap.h \
/space/android/kernel/linux-2.6.39-tegra/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/common/fiq_glue.o: $(deps_arch/arm/common/fiq_glue.o)
$(deps_arch/arm/common/fiq_glue.o):
| asopov/linux-tpt-2.6.39 | arch/arm/common/.fiq_glue.o.cmd | bat | gpl-2.0 | 2,088 |
cd ..\out
spectrum -file ..\bin\t65.tcl
move exemplar.log ..\log\t65_leo.srp
cd ..\run
t65 t65_leo.edf xc2s200-pq208-5
| 545/Atari7800 | core/t65/trunk/syn/xilinx/run/t65_leo.bat | bat | gpl-2.0 | 122 |
@echo off
echo.
echo Copying beta/debug Versions
echo.
echo -------- Configuration --------
echo CFG_DEB.DLL
copy \config\extra\CFG_DEB.DLL > NUL
echo -------- Spooler --------
echo SPL_DEB.PDR
copy \spooler\SPL_DEB.DLL COMi_SPL.PDR > NUL
echo -------- Utilities ----------
echo IOCTLDEB.DLL
copy \utility\extra\IOCTLDEB.DLL > NUL
echo PROFDEB.DLL
copy \utility\extra\PROFDEB.DLL > NUL
echo UTIL_DEB.DLL
copy \utility\extra\UTIL_DEB.DLL > NUL
echo -------- COMscope --------
echo CSBETA.EXE
copy \COMscope\extra\CSBETA.EXE > NUL
echo -------- Install --------
echo INSTBETA.EXE
copy \install\INSTBETA.EXE > NUL
echo.
| OS2World/APP-COMM-ComScope | DIST/DIST_3.8/mdb.cmd | bat | gpl-2.0 | 618 |
cmd_drivers/media/usb/gspca/gspca_spca561.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o drivers/media/usb/gspca/gspca_spca561.o drivers/media/usb/gspca/spca561.o
| avareldalton85/rpi2-linux-rt | drivers/media/usb/gspca/.gspca_spca561.o.cmd | bat | gpl-2.0 | 227 |
cmd_drivers/i2c/i2c-core.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,drivers/i2c/.i2c-core.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(i2c_core)" -D"KBUILD_MODNAME=KBUILD_STR(i2c_core)" -c -o drivers/i2c/i2c-core.o drivers/i2c/i2c-core.c
deps_drivers/i2c/i2c-core.o := \
drivers/i2c/i2c-core.c \
$(wildcard include/config/hotplug.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mmu.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/linkage.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/i2c.h \
$(wildcard include/config/i2c/boardinfo.h) \
include/linux/i2c-id.h \
include/linux/mod_devicetable.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/semaphore.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/idr.h \
include/linux/platform_device.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \
arch/arm/plat-pnx/include/mach/irqs.h \
$(wildcard include/config/arch/pnx67xx.h) \
include/linux/irq_cpustat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \
drivers/i2c/i2c-core.h \
drivers/i2c/i2c-core.o: $(deps_drivers/i2c/i2c-core.o)
$(deps_drivers/i2c/i2c-core.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | drivers/i2c/.i2c-core.o.cmd | bat | gpl-2.0 | 18,723 |
cmd_drivers/misc/eeprom/built-in.o := rm -f drivers/misc/eeprom/built-in.o; arm-linux-gnueabi-ar rcs drivers/misc/eeprom/built-in.o
| b8e5n/KTG-kernel_es209ra | drivers/misc/eeprom/.built-in.o.cmd | bat | gpl-2.0 | 133 |
define srv1 127.0.0.1:7611
define srv1-name irc-2.example.net
define srv2 127.0.0.2:7621
define srv2-name irc-3.example.net
define cl1-nick oper1
define cl2-nick oper2
define cl3-nick oper3
# Connect two clients to server 1, one to server 2, and oper them all up.
connect cl1 %cl1-nick% oper %srv1% :Oper 1
connect cl2 %cl2-nick% oper %srv1% :Oper 2
connect cl3 %cl3-nick% oper %srv2% :Oper 3
:cl1 oper oper oper
:cl2 oper oper oper
:cl3 oper oper oper
# Check that we get local privileges properly.
:cl1 wait cl2,cl3
:cl1 raw :privs %cl1-nick%
:cl1 expect %srv1-name% 270 %cl1-nick% :CHAN_LIMIT
:cl1 raw :privs %cl2-nick%
:cl1 expect %srv1-name% 270 %cl2-nick% :CHAN_LIMIT
# Bug 1674539 is that remote /privs do not get any response.
# Testing shows that the problem only shows up with a hub between.
:cl1 raw :privs %cl3-nick%
:cl1 expect %srv2-name% 270 %cl3-nick% :CHAN_LIMIT
# Synchronize everything
sync cl1,cl2,cl3
:cl1 quit done
:cl2 quit done
:cl3 quit done
| dnetcode/dnet-1.0 | tests/bug-1674539.cmd | bat | gpl-2.0 | 971 |
cmd_/opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/sound/.install := perl scripts/headers_install.pl /OpenSource/13_UExxF8xxx/binutils/arm-mips-src-20121018/build.arm.cortex-a8/sources/kernel-headers/include/sound /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/sound arm asequencer.h asound.h asound_fm.h emu10k1.h hdsp.h hdspm.h sb16_csp.h sfnt_info.h; perl scripts/headers_install.pl /OpenSource/13_UExxF8xxx/binutils/arm-mips-src-20121018/build.arm.cortex-a8/sources/kernel-headers/include/sound /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/sound arm ; for F in ; do echo "\#include <asm-generic/$$F>" > /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/sound/$$F; done; touch /opt/vd/arm-v7a8v3r1/arm-v7a8v3r1-linux-gnueabi/sys-root/./usr/include/sound/.install
| javilonas/NCam | cross/Toolchain-SamsungTV/arm-v7a8v3r1-linux-gnueabi/sys-root/usr/include/sound/..install.cmd | bat | gpl-3.0 | 861 |
@ECHO OFF
SETLOCAL enabledelayedexpansion
ECHO Dieser Batch erstellt Verknuepfungen zu den Batch Dateien in diesem Verzeichnis und benennt diese. Sie muss im Verzeichnis oberhalb von dos_ctrl_ec2_minecraft ausgefuehrt werden.
SET _DIR=%~dp0
REM Are we in the right directory?
IF EXIST %_DIR%ec2_mc_config.bat (
REM We dont need to use a subdirectory.
SET _BAT_DIR=
) ELSE (
IF NOT EXIST %_DIR%dos_ctrl_ec2_minecraft\ec2_mc_config.bat (
ECHO Konnte zu verknuepfende Dateien weder unter %_DIR% noch unter %_DIR%%_BAT_DIR% finden
ECHO Breche ab.
PAUSE
EXIT /B 1
)
SET _BAT_DIR=dos_ctrl_ec2_minecraft
)
ECHO Bitte geben Sie das Kuerzel der zu verwendenden dos_ctrl_ec2 Konfigurationsdatei ein.
SET /P _input=
REM This remove-unwanted-chars-in-string solution was shared by jeb on stack overflow. Thank you!
set "_output="
set "map=abcdefghijklmnopqrstuvwxyz1234567890_"
:loop
if not defined _input goto endLoop
for /F "delims=*~ eol=*" %%C in ("!_input:~0,1!") do (
if "!map:%%C=!" NEQ "!map!" set "_output=!_output!%%C"
)
set "_input=!_input:~1!"
goto loop
:endLoop
IF NOT DEFINED _output (
ECHO Sie haben keinen gültigen Wert fuer das Kuerzel eingegeben.
EXIT /B 1
PAUSE
)
REM ec2_mc_backup_map.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Backup der aktuellen Karte erstellen %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_backup_map.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%';$s.Save()"
REM ec2_mc_create_snap.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Snapshot erstellen %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_create_snap.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_kick.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Kick Spieler vom Server %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_kick.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_launch.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 STARTE Server %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_launch.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_punish.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Bestrafe Spieler %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_punish.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_terminate.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 BEENDE Server %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_terminate.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_whitelist_add.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Spieler zur Whitelist hinzufuegen %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_whitelist_add.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_whitelist_list.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Namen auf der Whitelist anzeigen %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_whitelist_list.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
REM ec2_mc_whitelist_remove.bat
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%_DIR%\AWS EC2 Namen von der Whitelist entfernen %_output%.lnk');$s.TargetPath='%_DIR%%_BAT_DIR%\ec2_mc_whitelist_remove.bat'; $s.Arguments='%_output%'; $s.WorkingDirectory='%_DIR%%_BAT_DIR%'; $s.Save()"
ECHO Verknuepfungen wurden erstellt und koennen jetzt ins Zielverzeichnis verschoben werden.
PAUSE
| rkelm/dos_ctrl_ec2_minecraft | setup_shortcuts.bat | bat | gpl-3.0 | 3,892 |
:: Turn off system messages
@echo off
:: Clear screen
cls;
:: Welcome message
echo.
echo **************************************************
echo * TerraMa2 Package Installer for Windows 64-bits *
echo **************************************************
echo.
:: ====
:: Where is script file
set "ROOT_DIR=%CD%"
:: TerraMa2 Paths
set "TERRALIB_DEPENDENCIES_DIR=C:\terralib5-3rdparty-msvc-2015-win64"
set "TERRAMA2_DEPENDENCIES_DIR=C:\terrama2-3rdparty-msvc-2015-win64"
set "TERRAMA2_CODEBASE_PATH=%ROOT_DIR%\..\.."
set "TERRAMA2_BUILD_PATH=%TERRAMA2_CODEBASE_PATH%\..\build-package-b4.0"
set "TERRAMA2_INSTALL_PATH=%TERRAMA2_DEPENDENCIES_DIR%\terrama2-install-b4.0"
set "TERRALIB_INSTALL_DIR=%TERRALIB_DEPENDENCIES_DIR%\terralib-install\lib\cmake\terralib-5.3.0"
:: Where is qmake.exe
set "QMAKE_FILEPATH=C:\Qt\Qt5.8.0\5.8\msvc2015_64\bin"
:: Where is Visual Studio
set "VCVARS_FILEPATH=%PROGRAMFILES(x86)%\Microsoft Visual Studio 14.0\VC"
:: Where is cmake.exe
set "CMAKE_FILEPATH=%PROGRAMFILES%\CMake\bin"
:: Environment Paths
set "PATH=%CMAKE_FILEPATH%;%QMAKE_FILEPATH%;%PATH%"
:: Setting visual studio environment
:: ==================================
set _CMAKE_GENERATOR="Visual Studio 14 2015 Win64"
echo | set /p="Configuring visual studio... "<nul
call "%VCVARS_FILEPATH%"\vcvarsall.bat %_config%
echo done.
echo.
:: Creating and configuring build folder
:: ======================================
echo | set /p="Configuring build folder... "<nul
IF NOT EXIST %TERRAMA2_BUILD_PATH% (
mkdir %TERRAMA2_BUILD_PATH% >nul 2>nul
)
xcopy terrama2.conf.cmake %TERRAMA2_BUILD_PATH% /S /Y >nul 2>nul
echo done.
echo.
IF EXIST %TERRAMA2_BUILD_PATH% (
cd /d %TERRAMA2_BUILD_PATH% >nul 2>nul
)
:: Configuring CMake and generating files
:: =======================================
echo | set /p="Configuring CMake... "<nul
cmake -G %_CMAKE_GENERATOR% -C ./terrama2.conf.cmake -DCMAKE_BUILD_TYPE="Release" %TERRAMA2_CODEBASE_PATH%\build\cmake
echo done.
echo.
:: Building Visual Studio Projects
:: ================================
echo | set /p="Building project... "<nul
msbuild /m /t:clean ALL_BUILD.vcxproj /p:Configuration=Release
msbuild /m ALL_BUILD.vcxproj /p:Configuration=Release
echo done.
echo.
:: Installing project in dependencies dir
:: =======================================
echo | set /p="Installing... "<nul
msbuild /m INSTALL.vcxproj /p:Configuration=Release
echo done.
echo.
:: Generating TerraLib NSIS package
:: =================================
echo | set /p="Packaging... "<nul
msbuild /m PACKAGE.vcxproj /p:Configuration=Release
echo done.
echo.
:: ====
echo.
echo.
echo ************************************************************
echo * TerraMa2 Package Installer for Windows 64-bits finished! *
echo ************************************************************
echo Finished!
echo.
exit /b 0
| jeansouza/terrama2 | packages/nsis-package/nsis-terrama2-msvc14.bat | bat | lgpl-3.0 | 2,861 |
@echo off
set JAVA_HOME=..\thirdpty\jre\win32\j2re1.4.2_09
set PATH=%JAVA_HOME%\bin;%JAVA_HOME%\bin\client;%PATH%
%JAVA_HOME%\bin\java.exe -Xms200M -Xmx300M -cp ..\bin\PitTrainer.jar com.gpl.pittrainer.PitTrainer
pause
| davecalkins/pit-trainer | pittrainer/scripts/run_debug.bat | bat | lgpl-3.0 | 222 |
@echo off
echo Setting up Qt 4.4.3...
set QTDIR=C:\Qt\4.4.3
set PATH=%QTDIR%\bin;%PATH%
set QMAKESPEC=win32-msvc2005
echo Setting up CMake 2.6...
set PATH=C:\Program Files\CMake 2.6\bin;%PATH%
rem See C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\SetEnv.Cmd
echo Setting up Microsoft Platform SDK...
set PLATFORMSDK=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2
set PATH=%PLATFORMSDK%\Bin;%PATH%
set INCLUDE=%PLATFORMSDK%\Include;%INCLUDE%
set LIB=%PLATFORMSDK%\Lib;%LIB%
rem See C:\Program Files\Microsoft DirectX SDK (November 2007)\Utilities\Bin\dx_setenv.cmd
echo Setting up Microsoft DirectX SDK...
set DXSDK_DIR=C:\Program Files\Microsoft DirectX SDK (November 2007)
set PATH=%DXSDK_DIR%\Utilities\Bin\x86;%PATH%
set INCLUDE=%DXSDK_DIR%\Include;%INCLUDE%
set LIB=%DXSDK_DIR%\Lib\x86;%LIB%
rem Must be the last line in this script: create a new shell/prompt
echo Setting up Microsoft Visual Studio 2005 (MSVC80)...
call "C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat"
| vilkov/phonon-vlc-mplayer | build/setenv_qt-4.4.3-msvc80.bat | bat | lgpl-3.0 | 1,044 |
@ "C:\Program Files\VeraCrypt\VeraCrypt.exe" /auto favorites /quit | dannytsang/veracrypt | mountFavourites.bat | bat | apache-2.0 | 66 |
set NUMBA_DEVELOPER_MODE=1
set NUMBA_DISABLE_ERROR_MESSAGE_HIGHLIGHTING=1
set PYTHONFAULTHANDLER=1
@rem Check Numba executables are there
pycc -h
numba -h
@rem Run system info tool
numba -s
@rem Check test discovery works
python -m numba.tests.test_runtests
@rem Run the whole test suite
python -m numba.runtests -m %CPU_COUNT% -b
if errorlevel 1 exit 1
| IntelLabs/hpat | buildscripts/numba-conda-recipe/recipe/run_test.bat | bat | bsd-2-clause | 359 |
echo "Generating FiringRateSim CodeBlocks Solution"
..\..\..\bin\premake4m --os=linux --file=Solution.lua codeblocks
TIMEOUT /T 2
..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/include" "../../../include"
TIMEOUT /T 2
..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/Libraries/StdUtils" "../../../Libraries/StdUtils"
TIMEOUT /T 2
..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/Libraries/AnimatSim" "../../../Libraries/AnimatSim"
TIMEOUT /T 2
..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/bin" "../../../bin"
TIMEOUT /T 2
..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/3rdParty/stlsoft-1.9.117/include" "../../../../3rdParty/stlsoft-1.9.117/include"
@pause | NeuroRoboticTech/AnimatLabPublicSource | Libraries/FiringRateSim/Projects_CodeBlocks/GenerateSolution.bat | bat | bsd-3-clause | 759 |
@echo off
:try_python
set PYTHON=python
%PYTHON% --version >NUL 2>NUL
if errorlevel 1 goto try_python_mcp
goto foundit
:try_python_mcp
set PYTHON=runtime\bin\python\python_mcp
%PYTHON% --version >NUL 2>NUL
if errorlevel 1 (
echo Unable to locate python.
pause
exit /b
)
:foundit
%PYTHON% runtime\reobfuscate.py conf\mcp.cfg
pause
| sehrgut/minecraft-smp-mocreatures | mcp3/reobfuscate.bat | bat | epl-1.0 | 365 |
python bayesian_adjust.py --prior arabia_prior.png --data triangulate_ArabiaFelix.csv --output triangulate_ArabiaFelix_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data triangulate_ArabiaDeserta.csv --output triangulate_ArabiaDeserta_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data triangulate_Syria.csv --output triangulate_Syria_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data triangulate_JudaeaPalestina.csv --output triangulate_JudaeaPalestina_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data triangulate_ArabiaPetraea.csv --output triangulate_ArabiaPetraea_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data flocking_ArabiaFelix.csv --output flocking_ArabiaFelix_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data flocking_ArabiaDeserta.csv --output flocking_ArabiaDeserta_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data flocking_Syria.csv --output flocking_Syria_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data flocking_JudaeaPalestina.csv --output flocking_JudaeaPalestina_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior arabia_prior.png --data flocking_ArabiaPetraea.csv --output flocking_ArabiaPetraea_adjust --lower_left_lon 30 --lower_left_lat 10 --upper_right_lon 60 --upper_right_lat 40
python bayesian_adjust.py --prior prior_India.png --data D:\repos\ptolemy\output\triangulate_India.csv --output D:\repos\ptolemy\output\triangulate_India_adjust --res 720 --lower_left_lat 5 --lower_left_lon 65 --upper_right_lat 35 --upper_right_lon 95
python bayesian_adjust.py --prior prior_Taprobane.png --data D:\repos\ptolemy\output\triangulate_Tabrobane.csv --output D:\repos\ptolemy\output\triangulate_Taprobane_adjust --res 720 --lower_left_lat 5 --lower_left_lon 78 --upper_right_lat 10 --upper_right_lon 83
| coreyabshire/ptolemy | python/adjust_all.bat | bat | gpl-2.0 | 2,574 |
cmd_net/bluetooth/hidp/built-in.o := arm-linux-gnueabihf-ld -EL -r -o net/bluetooth/hidp/built-in.o net/bluetooth/hidp/hidp.o
| Dee-UK/D33_KK_Kernel | net/bluetooth/hidp/.built-in.o.cmd | bat | gpl-2.0 | 131 |
cmd_sound/core/snd-page-alloc.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o sound/core/snd-page-alloc.o sound/core/memalloc.o
| jdlfg/Mecha-kernel-jdlfg | sound/core/.snd-page-alloc.o.cmd | bat | gpl-2.0 | 179 |
cmd_scripts/kconfig/kxgettext.o := gcc -Wp,-MD,scripts/kconfig/.kxgettext.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/kxgettext.o scripts/kconfig/kxgettext.c
deps_scripts/kconfig/kxgettext.o := \
scripts/kconfig/kxgettext.c \
/usr/include/stdlib.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-32.h \
/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/include/stddef.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/endian.h \
/usr/include/bits/endian.h \
/usr/include/bits/byteswap.h \
/usr/include/sys/types.h \
/usr/include/bits/types.h \
/usr/include/bits/typesizes.h \
/usr/include/time.h \
/usr/include/sys/select.h \
/usr/include/bits/select.h \
/usr/include/bits/sigset.h \
/usr/include/bits/time.h \
/usr/include/sys/sysmacros.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/alloca.h \
/usr/include/bits/stdlib.h \
/usr/include/string.h \
/usr/include/xlocale.h \
/usr/include/bits/string.h \
/usr/include/bits/string2.h \
/usr/include/bits/string3.h \
scripts/kconfig/lkc.h \
$(wildcard include/config/list.h) \
scripts/kconfig/expr.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio2.h \
/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/include/stdbool.h \
/usr/include/libintl.h \
/usr/include/locale.h \
/usr/include/bits/locale.h \
scripts/kconfig/lkc_proto.h \
scripts/kconfig/kxgettext.o: $(deps_scripts/kconfig/kxgettext.o)
$(deps_scripts/kconfig/kxgettext.o):
| beebingoo/linux-2.6.32.2 | scripts/kconfig/.kxgettext.o.cmd | bat | gpl-2.0 | 1,963 |
@echo off
setlocal
echo set the Visual Studio environment by calling vcvarsall.bat
call "%VCINSTALLDIR%"/vcvarsall.bat %PROCESSOR_ARCHITECTURE%
REM The express version of Visual Studio does not have devenv and
REM uses msbuild. Older versions of Visual Studio still need to
REM use devenv
set use_devenv=0
which devenv > nul 2>&1
if %ERRORLEVEL% == 0 set use_devenv=1
set projsfx=vcxproj
echo "%VCINSTALLDIR%" | findstr /C:"Studio 8" 1>nul
IF %ERRORLEVEL% == 0 set projsfx=vcproj
echo "%VCINSTALLDIR%" | findstr /C:"Studio 9.0" 1>nul
IF %ERRORLEVEL% == 0 set projsfx=vcproj
echo Building ISO_Cxx_V2_QueryCondition_types.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\DCPS_ISO_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\isocpp2\ISO_Cxx_V2_QueryCondition_types.%projsfx%"
) else (
msbuild ISO_Cxx_V2_QueryCondition_types.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
echo Building ISO_Cxx_V2_QueryCondition_Impl.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\DCPS_ISO_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\isocpp2\ISO_Cxx_V2_QueryCondition_Impl.%projsfx%"
) else (
msbuild ISO_Cxx_V2_QueryCondition_Impl.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
echo Building ISO_Cxx_V2_QueryCondition_Sub.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\DCPS_ISO_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\isocpp2\ISO_Cxx_V2_QueryCondition_Sub.%projsfx%"
) else (
msbuild ISO_Cxx_V2_QueryCondition_Sub.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
echo Building ISO_Cxx_V2_QueryCondition_Pub.%projsfx%
if %use_devenv% == 1 (
devenv "%OSPL_HOME%examples\DCPS_ISO_CPlusPlus.sln" /%1 Release /project "%OSPL_HOME%examples\dcps\QueryCondition\isocpp2\ISO_Cxx_V2_QueryCondition_Pub.%projsfx%"
) else (
msbuild ISO_Cxx_V2_QueryCondition_Pub.%projsfx% /p:Configuration=Release
)
IF NOT %ERRORLEVEL% == 0 (
ECHO:
ECHO *** Error building
ECHO:
GOTO error
)
cd %~dp0
GOTO end
:error
ECHO An error occurred, exiting now
:end
| PrismTech/opensplice | examples/dcps/QueryCondition/isocpp2/Build.bat | bat | gpl-3.0 | 2,399 |
@echo off
setlocal
pushd %~dp0
set "PLUGIN_SRC_DIR=src"
set "PLUGIN_NAME=main"
set "BUILD_DEST_DIR=build"
set "RELEASE_NAME=build\rotoblin"
set "SPCOMP=bin\sourcepawn\spcomp.exe"
echo --------------------------------------------
echo Building %PLUGIN_NAME%.sp ...
echo --------------------------------------------
if not exist %BUILD_DEST_DIR% (
mkdir %BUILD_DEST_DIR%
)
"%SPCOMP%" -D%PLUGIN_SRC_DIR% "%PLUGIN_NAME%.sp"
move /Y "%PLUGIN_SRC_DIR%\%PLUGIN_NAME%.smx" "%RELEASE_NAME%.smx"
echo --------------------------------------------
echo Built %PLUGIN_NAME%.sp as %RELEASE_NAME%.smx
echo --------------------------------------------
popd
endlocal | sof2er/rotoblin.dev | makefile.bat | bat | gpl-3.0 | 683 |
if "%2"=="" goto :not_defined
:defined
"%~dp0\ext\Python2.5\python.exe" %*
goto :end
:not_defined
cd "%~dp0\ext\mysql\bin\"
start mysqld.exe --verbose --datadir="%appdata%\..\BIANA"
echo not_defined
"%~dp0\ext\Python2.5\python.exe" -i
:end
| emreg00/biana | biana.bat | bat | gpl-3.0 | 265 |
@echo off
set GENERATOR="Visual Studio 14 2015 Win64"
set BUILD_TYPE=Release
cmake -G %GENERATOR% ^
-DCMAKE_INSTALL_PREFIX=C:\pdalbin ^
-DCMAKE_BUILD_TYPE=%BUILD_TYPE% ^
-DCMAKE_VERBOSE_MAKEFILE=OFF ^
-DBUILD_SHARED_LIBS=ON ^
-Dgtest_force_shared_crt=ON ^
.
| abellgithub/laz-perf | scripts/ci/appveyor/config.cmd | bat | lgpl-2.1 | 281 |
@rem Copyright 2009 Ramnivas Laddad
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
call ..\..\..\setHomes.bat
call ..\..\..\setEnvironment.bat
@echo on
call mvn clean package
call mvn tomcat:run | sobkowiak/aspectj-in-action-code | ch10/workspace/Section10.5.2UtilizingSpringAOPForTracing/run.bat | bat | apache-2.0 | 754 |
del *.orig /s /f /q
del *.nupkg /s /f /q
del *.nupkg.bak /s /f /q
del *..symbols.nupkg.bak /s /f /q
PAUSE | IncodingSoftware/Incoding-Framework | ClearOrig.bat | bat | apache-2.0 | 105 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\APOThetaUpsilonWebsiteUserGuide.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\APOThetaUpsilonWebsiteUserGuide.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
| rhololkeolke/apo-website-devin | docs/user_guide/make.bat | bat | bsd-3-clause | 5,155 |
cd "./debug/"
del /F /S /Q "./*.*"
cd "../"
del /F /S /Q "./vc90.pdb"
| laxathom/QxOrm | test/qxClientServer/qxService/tools/clean_debug.bat | bat | lgpl-2.1 | 70 |
@echo off
rem Run iMPACT to program the Spartan-3E device on the Starter Kit board.
impact -batch impact.run
del _impact.cmd
| sergev/vak-opensource | hardware/vga512x256/install.bat | bat | apache-2.0 | 129 |
@ECHO ON
cd C:\MyProjects\Deps\qt-everywhere-opensource-src-5.3.2-64
if %errorlevel% NEQ 0 goto ERRORCLEANUP
SET OLDPATH=%PATH%
set VisualStudioVersion=11.0
REM first change the debug compiler options
perl -pi.bak -e "s#QMAKE_CFLAGS_RELEASE = -O2 -MD#QMAKE_CFLAGS_RELEASE = -O2 -MT#g;" qtbase\mkspecs\win32-msvc2012\qmake.conf
perl -pi.bak -e "s#QMAKE_CFLAGS_DEBUG = -Zi -MDd#QMAKE_CFLAGS_DEBUG = -Z7 -MTd#g;" qtbase\mkspecs\win32-msvc2012\qmake.conf
REM Now do 64 bit by setting environment to MSVC 64 bit
call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" x86_amd64
call configure -debug-and-release -openssl-linked -opensource -confirm-license -platform win32-msvc2012 -nomake examples -nomake tests -static -I \MyProjects\Deps\openssl-1.0.1j\inc32 -L \MyProjects\Deps\openssl-1.0.1j\out64.dbg -L \MyProjects\Deps\openssl-1.0.1j\out64 -l gdi32 -no-opengl -qt-zlib -qt-libpng -qt-libjpeg
nmake
REM put back the path
set PATH=%OLDPATH%
echo All finished!
pause
goto EOF
:ERRORCLEANUP
echo Something went wrong, please check the directories in this batch file!
pause
:EOF | stamhe/novacoin | MSVC/build-helpers/buildqt64.bat | bat | mit | 1,112 |
@echo off
bundle install
| luckytianyiyan/tylauncher.com | script/bootstrap.bat | bat | mit | 26 |
@echo off
cls
IF NOT EXIST "tools/FAKE" (
"tools/nuget/nuget.exe" "install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion"
)
"tools/FAKE/tools/Fake.exe" "build/build.fsx"
pause
exit /b %errorlevel% | CDuke/FusionPInvoke | build.bat | bat | mit | 204 |
/* This is the command file to be used with the HEX conversion utility: dsphex.exe */
/* It reads the COFF output file "filt.out" and converts it to an ASCII hex file. */
/* */
/* Required by Labview for serial Versa-Filter updating */
/* */
/* Invoke with: "dsphex filt.cmd" */
/* */
filt.out /* input file */
-o c:\work\sps\filter\labview\filt.asc /* output file */
-map c:\work\sps\filter\labview\filt.txt /* report file */
-a /* generate ASCII-Hex format output */
-romwidth 16 /* put both bytes in same output file */
| mspenceree/Versa-Filter | firmware/filt.cmd | bat | mit | 957 |
@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\job_stream.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\job_stream.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
| wwoods/job_stream | sphinx/make.bat | bat | mit | 7,740 |
devcon.exe remove Root\ScpVBus | bayangan1991/PYXInput | pyxinput/ScpVBus-x64/uninstall.bat | bat | mit | 30 |
@echo off
set BASENAME=Geocache_Height
set BASEPATH=%HOMEPATH%\Documents\Dev\GitHub\userscripts\GeocacheHeight
cd "%BASEPATH%"
copy "src\%BASENAME%.meta.js" .
copy /b "src\%BASENAME%.meta.js" + src\header.js + "src\formatHeight.js" + "src\%BASENAME%.js" + src\footer.js ".\%BASENAME%.user.js"
copy "src\%BASENAME%_feet.meta.js" .
copy /b "src\%BASENAME%_feet.meta.js" + src\header.js + "src\formatHeight_feet.js" + "src\%BASENAME%.js" + src\footer.js ".\%BASENAME%_feet.user.js"
set BASENAME=
set BASEPATH= | JRInge/userscripts | GeocacheHeight/build.bat | bat | mit | 509 |
prog='dbmapreduce'
args='-M -S cat'
cmp='diff -cb '
| gitpan/Fsdb | TEST/dbmapreduce_cat.cmd | bat | gpl-2.0 | 53 |
cmd_crypto/crc32c.o := arm-none-linux-gnueabi-gcc -Wp,-MD,crypto/.crc32c.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(crc32c)" -D"KBUILD_MODNAME=KBUILD_STR(crc32c)" -c -o crypto/.tmp_crc32c.o crypto/crc32c.c
deps_crypto/crc32c.o := \
crypto/crc32c.c \
include/crypto/internal/hash.h \
include/crypto/algapi.h \
include/linux/crypto.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/generic/atomic64.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 \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/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) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/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/completion.h \
include/linux/rcutree.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/trace/events/kmem.h \
include/trace/events/gfpflags.h \
include/linux/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/crypto/hash.h \
crypto/crc32c.o: $(deps_crypto/crc32c.o)
$(deps_crypto/crc32c.o):
| srinugnt2000/linux-2.6.37 | crypto/.crc32c.o.cmd | bat | gpl-2.0 | 16,278 |
:: ------------------------------------------------------------------------
:: FusionInventory
:: Copyright (C) 2010-2013 by the FusionInventory Development Team.
::
:: http://www.fusioninventory.org/ http://forge.fusioninventory.org/
:: ------------------------------------------------------------------------
::
:: LICENSE
::
:: This file is part of FusionInventory project.
::
:: FusionInventory Agent Installer for Microsoft Windows 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 2 of the License, or (at your option) any later version.
::
::
:: FusionInventory Agent Installer for Microsoft Windows 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, write to the Free Software Foundation,
:: Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA,
:: or see <http://www.gnu.org/licenses/>.
::
:: ------------------------------------------------------------------------
::
:: @package FusionInventory Agent Installer for Microsoft Windows
:: @file .\Perl\Scripts\bourne-again-shell.bat
:: @author Tomas Abad <[email protected]>
:: @copyright Copyright (c) 2010-2013 FusionInventory Team
:: @license GNU GPL version 2 or (at your option) any later version
:: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
:: @link http://www.fusioninventory.org/
:: @link http://forge.fusioninventory.org/projects/fusioninventory-agent
:: @since 2012
::
:: ------------------------------------------------------------------------
@echo off
set MINGW_PATH=%SYSTEMDRIVE%\MinGW
if not exist "%MINGW_PATH%" goto not_installed
:: MinGW/MSYS is already installed
:: Load proxy environment
call .\load-proxy-environment.bat
:: Load gnu utilities environment
call .\load-gnu-utilities-environment.bat
:: Launch the bash shell script
"%MSYS_PATH%\bin\bash.exe"
:: Unload gnu utilities environment
call .\unload-gnu-utilities-environment.bat
:: Unload proxy environment
call .\unload-proxy-environment.bat
goto end_of_file
:not_installed
:: MinGW/MSYS is not installed
echo.
echo It seems that MinGW/MSYS is not installed into "%MINGW_PATH%".
echo Please, launch 'install-gnu-utilities-collection.bat' to install
echo MinGW/MSYS ^(www.mingw.org^) and try again.
echo.
:end_of_file
:: Unset environment variables
set MINGW_PATH=
| tabad/fusioninventory-agent-windows-installer | Perl/Scripts/bourne-again-shell.bat | bat | gpl-2.0 | 2,705 |
cmd_init/mounts.o := /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o init/mounts.o init/do_mounts.o init/do_mounts_rd.o
| MadRocker/experimental-2.6.29-MadRocker | init/.mounts.o.cmd | bat | gpl-2.0 | 161 |
cmd_fs/jbd2/journal.o := arm-eabi-gcc -Wp,-MD,fs/jbd2/.journal.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -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 -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(journal)" -D"KBUILD_MODNAME=KBUILD_STR(jbd2)" -D"DEBUG_HASH=17" -D"DEBUG_HASH2=5" -c -o fs/jbd2/journal.o fs/jbd2/journal.c
deps_fs/jbd2/journal.o := \
fs/jbd2/journal.c \
$(wildcard include/config/jbd2/debug.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/data/repos/kernels/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/repos/kernels/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
/data/repos/kernels/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/data/repos/kernels/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/data/repos/kernels/arch/arm/include/asm/hwcap.h \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/repos/kernels/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/data/repos/kernels/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) \
include/linux/typecheck.h \
/data/repos/kernels/arch/arm/include/asm/irqflags.h \
/data/repos/kernels/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/linux/stat.h \
/data/repos/kernels/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/repos/kernels/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/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/dynamic_debug.h \
/data/repos/kernels/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/repos/kernels/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/repos/kernels/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/data/repos/kernels/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/repos/kernels/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/repos/kernels/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/repos/kernels/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/data/repos/kernels/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(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/compaction.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/wait.h \
/data/repos/kernels/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/data/repos/kernels/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/data/repos/kernels/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) \
/data/repos/kernels/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) \
/data/repos/kernels/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/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/data/repos/kernels/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/errno.h \
/data/repos/kernels/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/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) \
/data/repos/kernels/arch/arm/include/asm/smp.h \
arch/arm/mach-msm/include/mach/smp.h \
/data/repos/kernels/arch/arm/include/asm/hardware/gic.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 \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/data/repos/kernels/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/data/repos/kernels/arch/arm/include/asm/elf.h \
/data/repos/kernels/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/data/repos/kernels/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/data/repos/kernels/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/percpu_counter.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/data/repos/kernels/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/jbd2.h \
include/linux/buffer_head.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/data/repos/kernels/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/vmsplit/2g.h) \
/data/repos/kernels/arch/arm/include/asm/pgtable-hwdef.h \
/data/repos/kernels/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
$(wildcard include/config/arm/errata/720789.h) \
$(wildcard include/config/arch/msm8x60.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.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/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
/data/repos/kernels/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/repos/kernels/arch/arm/include/asm/ipcbuf.h \
/data/repos/kernels/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/repos/kernels/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/data/repos/kernels/arch/arm/include/asm/sigcontext.h \
/data/repos/kernels/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 \
/data/repos/kernels/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/uaccess.h \
/data/repos/kernels/arch/arm/include/asm/uaccess.h \
/data/repos/kernels/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/data/repos/kernels/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/cpu/cache/vipt.h) \
$(wildcard include/config/arm/errata/411920.h) \
/data/repos/kernels/arch/arm/include/asm/shmparam.h \
/data/repos/kernels/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/data/repos/kernels/arch/arm/include/asm/kmap_types.h \
/data/repos/kernels/arch/arm/include/asm/highmem.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/data/repos/kernels/arch/arm/include/asm/hardirq.h \
/data/repos/kernels/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8960.h) \
arch/arm/mach-msm/include/mach/irqs-8x60.h \
include/linux/irq_cpustat.h \
include/linux/journal-head.h \
include/linux/bit_spinlock.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/linux/freezer.h \
$(wildcard include/config/freezer.h) \
$(wildcard include/config/cgroup/freezer.h) \
include/linux/kthread.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/magic.h \
include/linux/debugfs.h \
$(wildcard include/config/debug/fs.h) \
include/linux/seq_file.h \
include/linux/hash.h \
include/linux/vmalloc.h \
include/trace/events/jbd2.h \
include/trace/ftrace.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/trace_seq.h \
include/linux/perf_event.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/perf/use/vmalloc.h) \
/data/repos/kernels/arch/arm/include/asm/perf_event.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) \
$(wildcard include/config/ftrace/syscalls.h) \
include/linux/trace_clock.h \
include/linux/kallsyms.h \
/data/repos/kernels/arch/arm/include/asm/ftrace.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/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/node.h \
$(wildcard include/config/hugetlbfs.h) \
/data/repos/kernels/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
fs/jbd2/journal.o: $(deps_fs/jbd2/journal.o)
$(deps_fs/jbd2/journal.o):
| bigbiff/i717-GB-Kernel | fs/jbd2/.journal.o.cmd | bat | gpl-2.0 | 28,556 |
cmd_console-tools/lib.a := rm -f console-tools/lib.a; /home/simon/GIT/buildroot-k3-current/output/host/usr/bin/arm-none-linux-gnueabi-ar rcs console-tools/lib.a console-tools/chvt.o console-tools/clear.o console-tools/deallocvt.o console-tools/dumpkmap.o console-tools/loadfont.o console-tools/loadkmap.o console-tools/openvt.o console-tools/reset.o console-tools/resize.o console-tools/setconsole.o console-tools/setkeycodes.o console-tools/setlogcons.o
| twobob/buildroot-kindle | output/build/busybox-1.20.2/console-tools/.lib.a.cmd | bat | gpl-2.0 | 456 |
>>> black = Color() | simontakite/sysadmin | pythonscripts/practicalprogramming/oop/color_obj.cmd | bat | gpl-2.0 | 19 |
cmd_sound/core/hwdep.o := arm-eabi-gcc -Wp,-MD,sound/core/.hwdep.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -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 -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(hwdep)" -D"KBUILD_MODNAME=KBUILD_STR(snd_hwdep)" -D"DEBUG_HASH=16" -D"DEBUG_HASH2=42" -c -o sound/core/hwdep.o sound/core/hwdep.c
deps_sound/core/hwdep.o := \
sound/core/hwdep.c \
$(wildcard include/config/snd/ossemul.h) \
$(wildcard include/config/compat.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/major.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/debug/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/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/compaction.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/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
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) \
/data/repos/kernels/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/repos/kernels/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/repos/kernels/arch/arm/include/asm/bitops.h \
/data/repos/kernels/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/data/repos/kernels/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/data/repos/kernels/arch/arm/include/asm/irqflags.h \
/data/repos/kernels/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/data/repos/kernels/arch/arm/include/asm/hwcap.h \
/data/repos/kernels/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 \
/data/repos/kernels/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/repos/kernels/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/repos/kernels/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/emulate/domain/manager/v7.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 \
/data/repos/kernels/arch/arm/include/asm/processor.h \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/data/repos/kernels/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/repos/kernels/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/data/repos/kernels/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/wait.h \
/data/repos/kernels/arch/arm/include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/data/repos/kernels/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/data/repos/kernels/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) \
/data/repos/kernels/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) \
/data/repos/kernels/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/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/data/repos/kernels/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/errno.h \
/data/repos/kernels/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/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) \
/data/repos/kernels/arch/arm/include/asm/smp.h \
arch/arm/mach-msm/include/mach/smp.h \
/data/repos/kernels/arch/arm/include/asm/hardware/gic.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 \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/data/repos/kernels/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/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kref.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/sound/core.h \
$(wildcard include/config/snd/dynamic/minors.h) \
$(wildcard include/config/snd/major.h) \
$(wildcard include/config/pci.h) \
$(wildcard include/config/sysfs/deprecated.h) \
$(wildcard include/config/pm.h) \
$(wildcard include/config/snd/mixer/oss.h) \
$(wildcard include/config/isa/dma/api.h) \
$(wildcard include/config/snd/debug.h) \
$(wildcard include/config/snd/verbose/printk.h) \
$(wildcard include/config/snd/debug/verbose.h) \
$(wildcard include/config/gameport.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) \
include/linux/stat.h \
/data/repos/kernels/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/repos/kernels/arch/arm/include/asm/elf.h \
/data/repos/kernels/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) \
/data/repos/kernels/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/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.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) \
include/linux/auxvec.h \
/data/repos/kernels/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/data/repos/kernels/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/repos/kernels/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/repos/kernels/arch/arm/include/asm/ipcbuf.h \
/data/repos/kernels/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/repos/kernels/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/data/repos/kernels/arch/arm/include/asm/sigcontext.h \
/data/repos/kernels/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/repos/kernels/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(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/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
/data/repos/kernels/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/sound/control.h \
include/sound/asound.h \
include/linux/ioctl.h \
/data/repos/kernels/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/sound/minors.h \
include/sound/hwdep.h \
include/linux/poll.h \
/data/repos/kernels/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/data/repos/kernels/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
/data/repos/kernels/arch/arm/include/asm/uaccess.h \
/data/repos/kernels/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/sound/info.h \
sound/core/hwdep.o: $(deps_sound/core/hwdep.o)
$(deps_sound/core/hwdep.o):
| bigbiff/i717-GB-Kernel | sound/core/.hwdep.o.cmd | bat | gpl-2.0 | 24,182 |
cmd_drivers/media/rc/keymaps/rc-pixelview-002t.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/media/rc/keymaps/rc-pixelview-002t.ko drivers/media/rc/keymaps/rc-pixelview-002t.o drivers/media/rc/keymaps/rc-pixelview-002t.mod.o
| avareldalton85/rpi2-linux-rt | drivers/media/rc/keymaps/.rc-pixelview-002t.ko.cmd | bat | gpl-2.0 | 339 |
cmd_drivers/mtd/maps/built-in.o := rm -f drivers/mtd/maps/built-in.o; /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ar rcs drivers/mtd/maps/built-in.o
| damageless/linux-kernel-ican-tab | drivers/mtd/maps/.built-in.o.cmd | bat | gpl-2.0 | 199 |
cmd_sound/pci/oxygen/built-in.o := rm -f sound/pci/oxygen/built-in.o; /mnt/640/ubu/gtabkernelsrc/android_prebuilt_toolchains-master/arm-cortex_a15-linux-gnueabihf-linaro_4.9.1/bin/arm-cortex_a15-linux-gnueabihf-ar rcsD sound/pci/oxygen/built-in.o
| chase2534/gtab47.freekern | sound/pci/oxygen/.built-in.o.cmd | bat | gpl-2.0 | 248 |
@echo off
rem Copyright 2009-2020 Ping Identity Corporation
rem All Rights Reserved.
rem
rem -----
rem
rem Copyright 2009-2020 Ping Identity Corporation
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem
rem -----
rem
rem Copyright (C) 2009-2020 Ping Identity Corporation
rem This program is free software; you can redistribute it and/or modify
rem it under the terms of the GNU General Public License (GPLv2 only)
rem or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
rem as published by the Free Software Foundation.
rem
rem This program is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem Get the directory containing this batch file.
set BATDIR=%~dp0
rem Invoke a number of common script utility functions.
call "%BATDIR%\.script-util.bat"
rem Invoke the tool with the provided command-line arguments.
"%JAVA_CMD%" %JAVA_ARGS% -cp "%BATDIR%\..\unboundid-ldapsdk.jar" com.unboundid.ldap.sdk.unboundidds.examples.DumpDNs %*
| UnboundID/ldapsdk | dist-root/tools/dump-dns.bat | bat | gpl-2.0 | 1,733 |
cmd_net/netfilter/xt_connmark.ko := /home/ashishtanwer/goldfish3.10/../x86_64-linux-android-4.7/bin/x86_64-linux-android-ld -r -m elf_i386 -T /home/ashishtanwer/goldfish3.10/scripts/module-common.lds --build-id -o net/netfilter/xt_connmark.ko net/netfilter/xt_connmark.o net/netfilter/xt_connmark.mod.o
| ashishtanwer/NFTable-porting-on-Android-Goldfish | net/netfilter/.xt_connmark.ko.cmd | bat | gpl-2.0 | 304 |
java -Xms128M -Xmx256M -jar mmj2.jar RunParmsQL.txt Y "" c:\metamath ""
| digama0/mmj2 | mmj2jar/mmj2QL.bat | bat | gpl-2.0 | 72 |
cmd_drivers/video/omap2/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/video/omap2/built-in.o drivers/video/omap2/dss/built-in.o drivers/video/omap2/omapfb/built-in.o drivers/video/omap2/displays/built-in.o
| wujiku/superstar-kernel-shooter-2.3.4gb | drivers/video/omap2/.built-in.o.cmd | bat | gpl-2.0 | 258 |
:: simple script to call cmake-gui on windows
@echo off
:: check for cmake
cmake-gui --version
:: check if the command was successful
if errorlevel 1 (
echo.
echo CMake GUI was not found on your path.
echo.
echo.
echo If you don't have cmake, please read the README.md to see the requirements.
echo.
echo.
echo If you have cmake either add it to your path and try again,
echo or run it manually and set the following options:
echo.
echo Where is the source code: %cd%
echo Where to build the binaries: %cd%\build
echo.
echo It's also recommended to check Grouped and Advanced if you're having trouble
echo configuring the dependencies.
echo.
echo.
pause
) else (
cd build
start cmake-gui ..
cd ..
)
| roboime/ssl-vision | make_vcproj.bat | bat | gpl-3.0 | 725 |
@echo off
set ABSDIR=external-libs\ActionBarSherlock\actionbarsherlock
if not exist %ABSDIR% (
mkdir .git\modules\external-libs
mkdir external-libs
rem git submodule update --init --recursive
echo Initializing Module
git submodule add -f git://github.com/JakeWharton/ActionBarSherlock.git external-libs\ActionBarSherlock
echo Copy Android Studio configuration
cp actionbarsherlock.iml %ABSDIR%
) else (
echo Project already initialized
)
pause | oasis2008/GTalkSMS-1 | initProject.bat | bat | gpl-3.0 | 456 |
mingw-get --help
mingw-get source
mingw-get remove msys-libintl
mingw-get install msys-libintl
mingw-get --reinstall install msys-libintl
mingw-get update
mingw-get upgrade
cd %HOME%/local/tests
call test_openmp.bat
:: Manual extract
cd C:\MinGW\var\cache\mingw-get\packages
7z x libintl-0.18.3.2-1-mingw32-dll-8.tar.xz
7z x libintl-0.18.3.2-1-mingw32-dll-8.tar
mv bin/libintl-8.dll C:/MinGW/bin
rm -rf bin
| Erotemic/local | init/_freshstart-win/init_mingw.bat | bat | gpl-3.0 | 416 |
..\yafu-x64.exe factor(65453637459381111885198811211520302619172225361929424640503140562028284452523012121811111413242229967855624960451829383537598953548575881828345547330346069889322777641187811213598110111128995243111123109129752061651201762002867) -threads 4 -ecm_path ..\ecm\ecm.exe -ggnfs_dir ..\ggnfs\
pause | heliwave/QuranCode | PrimeCalculator/Tools/examples/C227.bat | bat | gpl-3.0 | 314 |
::arguements:registry key
@echo off
set key=%1%
::reg add %key% /v AUOptions /t REG_DWORD /d 3 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 3 /f
| pmanwatkar/puppetModules | actions/files/ProcessHandlingWindows/windows_update_check.bat | bat | gpl-3.0 | 235 |
START cmd /k "python .\bin\bzrflag --world=maps/four_ls.bzw --friendly-fire --red-port=50100 --green-port=50101 --purple-port=50102 --blue-port=50103 $@ &"
C:\Windows\System32\ping.exe 192.0.2.2 -n 1 -w 3000 > nul
START cmd /c "python bzagents\PFAgent.py localhost 50100"
START cmd /c "python bzagents\PFAgent.py localhost 50101"
START cmd /c "python bzagents\PFAgent.py localhost 50102"
START cmd /c "python bzagents\PFAgent.py localhost 50103"
| adamjchristiansen/CS470 | runGame_allPFs.bat | bat | gpl-3.0 | 448 |
@echo off
rem if you do not have UPX ( http://upx.sf.net ), just ignore
rem the UPX error messages. Binaries will be bigger but working.
rem uncomment the following line to get the debug version
rem goto debugv
goto normalv
rem Options mean:
rem DEBUGNB to see when cache becomes full
rem REDIRBUG if redirection of messages does not work on old FreeDOS kernels
rem FLOPCHGMSG to enable floppy "disk changed" message
rem SANE_A20 to suppress waiting for keyboard controller ready before XMS
rem copy - the waiting works around a Bochs 1.x BIOS bug.
rem FORCEFDD to allow caching even floppy drives without change line, like
rem in dosemu. You MUST do LBAcache flush after removing a floppy and before
rem inserting the next floppy manually in that case.
rem MUTEFDWRERR to suppress the message about cache flush after write error
rem on floppy disks - partial flush would be better, please contribute it...
rem BIGGERBINS... to select other bin sizes than 4096 bytes, see binsel.asm
rem ***** ***** please do not edit below this line ***** *****
:debugv
echo Now creating debug version lbacachD.com...
nasm -DDEBUGNB=1 -DSANE_A20=1 -DFORCEFDD=1 -DFLOPCHGMSG=1 -o lbacachd.com lbacache.asm
upx --8086 lbacachd.com
echo Debug version lbacachD.com has been updated.
goto made
:normalv
echo Now creating lbacache.com...
nasm -DBIGGERBINS -DSANE_A20=1 -DMUTEFDWRERR=1 -o lbacache.com lbacache.asm
upx --8086 lbacache.com
echo lbacache.com has been updated.
:made
rem uncache.com is deprecated and now part of lbacache.com ...
if not x%1==xinstall goto done
if exist lbacache.com copy lbacache.com c:\freedos\bin
if exist lbacachd.com copy lbacachd.com c:\freedos\bin
:done
echo To get a debug version with some extra messages and workarounds
echo please edit the top of this makefile.bat file as explained there.
echo VERSION is:
find "VERSION " lbacache.asm
| joyent/sdcboot | freedos/source/lbacache/makefile.bat | bat | mpl-2.0 | 1,928 |
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
:: Contact: http://www.qt-project.org/legal
::
:: This file is part of the tools applications of the Qt Toolkit.
::
:: $QT_BEGIN_LICENSE:LGPL$
:: Commercial License Usage
:: Licensees holding valid commercial Qt licenses may use this file in
:: accordance with the commercial license agreement provided with the
:: Software or, alternatively, in accordance with the terms contained in
:: a written agreement between you and Digia. For licensing terms and
:: conditions see http://qt.digia.com/licensing. For further information
:: use the contact form at http://qt.digia.com/contact-us.
::
:: GNU Lesser General Public License Usage
:: Alternatively, this file may be used under the terms of the GNU Lesser
:: General Public License version 2.1 as published by the Free Software
:: Foundation and appearing in the file LICENSE.LGPL included in the
:: packaging of this file. Please review the following information to
:: ensure the GNU Lesser General Public License version 2.1 requirements
:: will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
::
:: In addition, as a special exception, Digia gives you certain additional
:: rights. These rights are described in the Digia Qt LGPL Exception
:: version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
::
:: GNU General Public License Usage
:: Alternatively, this file may be used under the terms of the GNU
:: General Public License version 3.0 as published by the Free Software
:: Foundation and appearing in the file LICENSE.GPL included in the
:: packaging of this file. Please review the following information to
:: ensure the GNU General Public License version 3.0 requirements will be
:: met: http://www.gnu.org/copyleft/gpl.html.
::
::
:: $QT_END_LICENSE$
::
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@echo off
IF "%1" EQU "wincewm50pocket-msvc2005" (
checksdk.exe -sdk "Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 5.01 for Pocket PC selected, environment is set up
) ELSE IF "%1" EQU "wincewm50smart-msvc2005" (
checksdk.exe -sdk "Windows Mobile 5.0 Smartphone SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 5.01 for Smartphone for arm selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-x86-msvc2005" (
checksdk.exe -sdk "STANDARDSDK_500 (x86)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-armv4i-msvc2005" (
checksdk.exe -sdk "STANDARDSDK_500 (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for arm selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-mipsii-msvc2005" (
checksdk.exe -sdk "STANDARDSDK_500 (MIPSII)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for mips-ii selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-mipsiv-msvc2005" (
checksdk.exe -sdk "STANDARDSDK_500 (MIPSIV)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for mips-iv selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-sh4-msvc2005" (
checksdk.exe -sdk "STANDARDSDK_500 (SH4)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for sh4 selected, environment is set up
) ELSE IF "%1" EQU "wincewm60professional-msvc2005" (
checksdk.exe -sdk "Windows Mobile 6 Professional SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 6 Professional selected, environment is set up
) ELSE IF "%1" EQU "wincewm65professional-msvc2005" (
checksdk.exe -sdk "Windows Mobile 6 Professional SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 6 Professional selected, environment is set up
) ELSE IF "%1" EQU "wincewm60standard-msvc2005" (
checksdk.exe -sdk "Windows Mobile 6 Standard SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 6 Standard selected, environment is set up
) ELSE IF "%1" EQU "wincewm50pocket-msvc2008" (
checksdk.exe -sdk "Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 5.01 for Pocket PC selected, environment is set up
) ELSE IF "%1" EQU "wincewm50smart-msvc2008" (
checksdk.exe -sdk "Windows Mobile 5.0 Smartphone SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 5.01 for Smartphone for arm selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-x86-msvc2008" (
checksdk.exe -sdk "STANDARDSDK_500 (x86)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-armv4i-msvc2008" (
checksdk.exe -sdk "STANDARDSDK_500 (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for arm selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-mipsii-msvc2008" (
checksdk.exe -sdk "STANDARDSDK_500 (MIPSII)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for mips-ii selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-mipsiv-msvc2008" (
checksdk.exe -sdk "STANDARDSDK_500 (MIPSIV)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for mips-iv selected, environment is set up
) ELSE IF "%1" EQU "wince50standard-sh4-msvc2008" (
checksdk.exe -sdk "STANDARDSDK_500 (SH4)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Standard SDK for sh4 selected, environment is set up
) ELSE IF "%1" EQU "wincewm60professional-msvc2008" (
checksdk.exe -sdk "Windows Mobile 6 Professional SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 6 Professional selected, environment is set up
) ELSE IF "%1" EQU "wincewm65professional-msvc2008" (
checksdk.exe -sdk "Windows Mobile 6 Professional SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 6 Professional selected, environment is set up
) ELSE IF "%1" EQU "wincewm60standard-msvc2008" (
checksdk.exe -sdk "Windows Mobile 6 Standard SDK (ARMV4I)" -script tmp_created_script_setup.bat 1>NUL
tmp_created_script_setup.bat
del tmp_created_script_setup.bat
echo Windows Mobile 6 Standard selected, environment is set up
) ELSE (
echo no SDK to build Windows CE selected
echo.
echo Current choices are:
echo wincewm50pocket-msvc2005 - SDK for Windows Mobile 5.01 PocketPC
echo wincewm50smart-msvc2005 - SDK for Windows Mobile 5.01 Smartphone
echo wince50standard-x86-msvc2005 - Build for the WinCE standard SDK 5.0
echo with x86 platform preset
echo wince50standard-armv4i-msvc2005 - Build for the WinCE standard SDK 5.0
echo with armv4i platform preset
echo wince50standard-mipsiv-msvc2005 - Build for the WinCE standard SDK 5.0
echo with mips platform preset
echo wince50standard-sh4-msvc2005 - Build for the WinCE standard SDK 5.0
echo with sh4 platform preset
echo wincewm60professional-msvc2005 - SDK for Windows Mobile 6 professional
echo wincewm60standard-msvc2005 - SDK for Windows Mobile 6 Standard
echo and the corresponding versions for msvc2008.
echo.
)
| sicily/qt4.8.4 | bin/setcepaths.bat | bat | lgpl-2.1 | 8,489 |
@echo off
REM ********************************************************************
REM
REM newproject.bat
REM
REM This windows batch script generates a set of gameplay project files.
REM The new project will be based of the template project and
REM it will be generated with the name and location that is specified
REM as input parameters.
REM
REM IMPORTANT: This script must be run from the root of the gameplay
REM source tree.
REM
REM ********************************************************************
echo.
echo 1. Enter a name for the new project.
echo.
echo This name will be given to the project
echo executable and a folder with this name
echo will be created to store all project files.
echo Ex. foobar
echo.
set /p projName=Project name:
if "%projName%" == "" (
echo.
echo ERROR: No project name specified.
echo.
pause
goto done
)
echo.
echo.
echo 2. Enter a game title.
echo.
echo On some platforms, this title is used to
echo identify the game during installation and
echo on shortcuts/icons.
echo Ex. Foo Bar
echo.
set /p title=Title:
if "%title%" == "" (
echo.
echo ERROR: No game title specified.
echo.
pause
goto done
)
echo.
echo.
echo 3. Enter a unique identifier for your project.
echo.
echo This should be a human readable package name,
echo containing at least two words separated by a
echo period.
echo Ex. com.example.foobar
echo.
set /p uuid=Unique ID:
if "%uuid%" == "" (
echo.
echo ERROR: No uuid specified.
echo.
pause
goto done
)
echo.
echo.
echo 4. Enter your game's main class name.
echo.
echo Your initial game header and source file
echo will be given this name and a class with
echo this name will be created in these files.
echo Ex. FooBarGame
echo.
set /p className=Class name:
if "%className%" == "" (
echo.
echo ERROR: No class name specified.
echo.
pause
goto done
)
echo.
echo.
echo 5. Enter the project path.
echo.
echo This can be a relative path, absolute path,
echo or empty for the current folder. Note that
echo a project folder named %projName% will also
echo be created inside this folder.
echo Ex. ./samples
echo.
set /p location=Path:
if "%location%" == "" (
set projPath=%projName%
) else (
set projPath=%location%\%projName%
)
echo.
call:replacevar projPath "/" "\"
REM Does this path already exist?
if exist "%projPath%" (
echo.
echo ERROR: Path '%projPath%' already exists, aborting.
echo.
pause
goto done
REM Disabling following code which prompts to overwrite existing path,
REM since this could be potentially damaging if the user specifies
REM an important path and then types 'y', without thinking.
REM
REM set /p owd=Directory '%projPath%' exists, overwrite [Y,N]?
REM if not "!owd!" == "Y" (
REM if not "!owd!" == "y" (
REM echo Aborting.
REM pause
REM goto done
REM )
REM )
REM rmdir /S /Q %projPath%
)
REM Generate relative path from project folder to GamePlay folder
set gpPath=%cd%
call:makerelative gpPath "%projPath%\"
mkdir "%projPath%"
mkdir "%projPath%\src"
mkdir "%projPath%\res"
REM Copy Microsoft Visual Studio project files
copy template\template.vcxproj "%projPath%\%projName%.vcxproj"
call:replace "%projPath%\%projName%.vcxproj" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\%projName%.vcxproj" TemplateGame "%className%"
call:replace "%projPath%\%projName%.vcxproj" GAMEPLAY_PATH "%gpPath%"
copy template\template.vcxproj.filters "%projPath%\%projName%.vcxproj.filters"
call:replace "%projPath%\%projName%.vcxproj.filters" TemplateGame "%className%"
call:replacevar gpPath "\" "/"
REM Copy Apple XCode project files
mkdir "%projPath%\%projName%.xcodeproj"
copy template\template.xcodeproj\project.pbxproj "%projPath%\%projName%.xcodeproj\project.pbxproj"
call:replace "%projPath%\%projName%.xcodeproj\project.pbxproj" GAMEPLAY_PATH "%gpPath%"
call:replace "%projPath%\%projName%.xcodeproj\project.pbxproj" TemplateGame "%className%"
call:replace "%projPath%\%projName%.xcodeproj\project.pbxproj" TEMPLATE_PROJECT "%projName%"
copy template\TEMPLATE_PROJECT-macosx.plist "%projPath%\%projName%-macosx.plist"
call:replace "%projPath%\%projName%-macosx.plist" TEMPLATE_UUID "%uuid%"
copy template\TEMPLATE_PROJECT-ios.plist "%projPath%\%projName%-ios.plist"
copy template\[email protected] "%projPath%\[email protected]"
call:replace "%projPath%\%projName%-ios.plist" TEMPLATE_TITLE "%title%"
call:replace "%projPath%\%projName%-ios.plist" TEMPLATE_UUID "%uuid%"
REM Copy Android NDK project files
mkdir "%projPath%\android"
copy template\android\AndroidManifest.xml "%projPath%\android\AndroidManifest.xml"
call:replace "%projPath%\android\AndroidManifest.xml" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\android\AndroidManifest.xml" TEMPLATE_UUID "%uuid%"
copy template\android\build.xml "%projPath%\android\build.xml"
call:replace "%projPath%\android\build.xml" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\android\build.xml" GAMEPLAY_PATH "%gpPath%"
copy template\android\project.properties "%projPath%\android\project.properties"
mkdir "%projPath%\android\jni"
copy template\android\jni\Application.mk "%projPath%\android\jni\Application.mk"
copy template\android\jni\Android.mk "%projPath%\android\jni\Android.mk"
call:replace "%projPath%\android\jni\Android.mk" TemplateGame "%className%"
call:replace "%projPath%\android\jni\Android.mk" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\android\jni\Android.mk" GAMEPLAY_PATH "%gpPath%"
mkdir "%projPath%\android\res\drawable"
copy template\icon.png "%projPath%\android\res\drawable\icon.png"
mkdir "%projPath%\android\res\values"
copy template\android\res\values\template.strings.xml "%projPath%\android\res\values\strings.xml"
call:replace "%projPath%\android\res\values\strings.xml" TEMPLATE_TITLE "%title%"
REM Copy Eclipse files for Android
copy template\android\.cproject "%projPath%\android\.cproject"
call:replace "%projPath%\android\.cproject" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\android\.cproject" TEMPLATE_UUID "%uuid%"
call:replace "%projPath%\android\.cproject" GAMEPLAY_PATH "%gpPath%"
copy template\android\.project "%projPath%\android\.project"
call:replace "%projPath%\android\.project" TEMPLATE_PROJECT "%projName%"
copy template\android\.classpath "%projPath%\android\.classpath"
call:replace "%projPath%\android\.classpath" TEMPLATE_PROJECT "%projName%"
REM Copy Eclipse files for Linux
copy template\.cproject "%projPath%\.cproject"
call:replace "%projPath%\.cproject" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\.cproject" TEMPLATE_UUID "%uuid%"
call:replace "%projPath%\.cproject" GAMEPLAY_PATH "%gpPath%"
copy template\.project "%projPath%\.project"
call:replace "%projPath%\.project" TEMPLATE_PROJECT "%projName%"
REM Copy QtCreator files
copy template\TEMPLATE_PROJECT.pro "%projPath%\%projName%.pro"
call:replace "%projPath%\%projName%.pro" TEMPLATE_PROJECT "%projName%"
call:replace "%projPath%\%projName%.pro" GAMEPLAY_PATH "%gpPath%"
call:replace "%projPath%\%projName%.pro" TemplateGame %className%
REM Copy CMake files
mkdir "%projPath%\build"
copy "template\template-CMakeLists.txt" "%projPath%\CMakeLists.txt"
call:replace "%projPath%\CMakeLists.txt" TEMPLATE_PROJECT %projName%
call:replace "%projPath%\CMakeLists.txt" TemplateGame %className%
call:replace "%projPath%\CMakeLists.txt" GAMEPLAY_PATH %gpPath%
REM Copy source files
copy template\src\TemplateGame.h "%projPath%\src\%className%.h"
copy template\src\TemplateGame.cpp "%projPath%\src\%className%.cpp"
call:replace "%projPath%\src\%className%.h" TemplateGame "%className%"
call:replace "%projPath%\src\%className%.cpp" TemplateGame "%className%"
REM Copy resource files
copy template\res\* "%projPath%\res\"
REM Copy icon
copy template\icon.png "%projPath%\icon.png"
REM Copy config
copy template\game.config "%projPath%\game.config"
call:replace "%projPath%\game.config" TEMPLATE_TITLE "%title%"
REM Open new project folder
start "" "%projPath%"
goto done
:replace
set rtemp=%~1.rtemp
if exist "%rtemp%" del /Q "%rtemp%"
for /f "tokens=1* eol= delims=]" %%j in ('type "%~1" ^| %windir%\system32\find /V /N ""') do (
set line=%%k
setlocal EnableDelayedExpansion
if "!line!" == "" (
echo.>>"%rtemp%"
) else (
set linput=!line!
set loutput=!linput:%~2=%~3!
echo.!loutput!>>"%rtemp%"
)
endlocal
)
copy /Y "%rtemp%" "%~1"
del /Q "%rtemp%"
exit /b
goto done
:replacevar
setlocal EnableDelayedExpansion
echo !%~1!>.replacevar.tmp
endlocal
call:replace .replacevar.tmp "%~2" "%~3"
set /p replaced=<.replacevar.tmp
set %~1=%replaced%
del /Q .replacevar.tmp
exit /b
goto done
:makerelative
setlocal EnableDelayedExpansion
set src=%~1
if defined %1 set src=!%~1!
set bas=%~2
if not defined bas set bas=%cd%
for /f "tokens=*" %%a in ("%src%") do set src=%%~fa
for /f "tokens=*" %%a in ("%bas%") do set bas=%%~fa
set mat=&rem variable to store matching part of the name
set upp=&rem variable to reference a parent
for /f "tokens=*" %%a in ('echo.%bas:\=^&echo.%') do (
set sub=!sub!%%a\
call set tmp=%%src:!sub!=%%
if "!tmp!" NEQ "!src!" (set mat=!sub!)ELSE (set upp=!upp!..\)
)
set src=%upp%!src:%mat%=!
( endlocal & REM RETURN VALUES
IF defined %1 (SET %~1=%src%) ELSE ECHO.%src%
)
exit /b
goto done
:done
| reven86/GamePlay | newproject.bat | bat | apache-2.0 | 9,434 |
@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\webdlmon-backend.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\webdlmon-backend.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
| n1ywb/webdlmon-backend | doc/make.bat | bat | bsd-2-clause | 5,116 |
@echo off
REM Usage: TestPublish.bat [email protected] Passw0rd!
@rem Licensed Materials - Property of IBM
@rem
@rem Copyright IBM Corp. 2017, 2019 All Rights Reserved.
@rem
@rem US Government Users Restricted Rights - Use, duplication or
@rem disclosure restricted by GSA ADP Schedule Contract with
@rem IBM Corp.
@rem Author: Arnauld Desprets - [email protected]
@rem Version: 1.0 - June 2017
@rem Version: 2.0 - June 2019
@rem Add draft products and API in the list operation
@rem Important: supports only one organisation (well put everything as if it was one organisation)
@rem Test on Windows 7
set APIC_LOGIN=%1
set APIC_PASSWORD=%2
set APIC_SRV=%3
set SCRIPT_DEBUG=0
echo %DATE% - %TIME%
if [%1] == [] goto checkargs
:select_actions
choice /C abc /M "A) List products, B) Backup draft, C) Backup all catalogs"
if errorlevel 3 goto apic_backup_catalogs
if errorlevel 2 goto apic_backup_drafts
if errorlevel 1 goto apic_list
:apic_list
echo List of products and APIs in all catalogs and in draft
echo Login to %APIC_SRV%
cmd /c apic login -s %APIC_SRV% -u %APIC_LOGIN% -p %APIC_PASSWORD%
echo Getting the names of organizations
for /F %%i in ('apic organizations -s %APIC_SRV%') do (
echo Getting products and API in draft for %%i organization
for /F %%k in ('apic drafts -o %%i -s %APIC_SRV% --type product') do (
echo Product: %%k
)
for /F %%k in ('apic drafts -o %%i -s %APIC_SRV% --type api') do (
echo API: %%k
)
echo Getting catalogs for %%i organization
for /F %%j in ('apic catalogs -o %%i -s %APIC_SRV%') do (
if "%SCRIPT_DEBUG%"=="1" echo catalog %%j
for /f "tokens=6 delims=/" %%a in ("%%j") do (
echo Getting list of products from %%a catalog
for /F %%k in ('apic products -c %%a -o %%i -s %APIC_SRV%') do (
echo Product: %%k
)
for /F %%k in ('apic apis -c %%a -o %%i -s %APIC_SRV%') do (
echo API: %%k
)
)
)
)
goto end
:apic_backup_drafts
echo Performs a backup of drafts apis/products
echo Getting the names of organizations
for /F %%i in ('apic organizations -s %APIC_SRV%') do (
echo Extracts draft products and APIs for %%i organization
for /F "delims=" %%j in ('apic drafts:clone -o %%i -s %APIC_SRV%') do (
echo %%j
)
)
goto end
:apic_backup_catalogs
echo Performs a backup of all catalogs
echo Login to %APIC_SRV%
cmd /c apic login -s %APIC_SRV% -u %APIC_LOGIN% -p %APIC_PASSWORD%
echo Getting the names of organizations
for /F %%i in ('apic organizations -s %APIC_SRV%') do (
echo Getting catalogs for %%i organization
for /F %%j in ('apic catalogs -o %%i -s %APIC_SRV%') do (
@rem if "%SCRIPT_DEBUG%"=="1" echo catalog %%j
for /f "tokens=6 delims=/" %%a in ("%%j") do (
if not exist "%%a" mkdir %%a
pushd %%a
echo Extracting products from %%a catalog
cmd /c apic products:clone -c %%a -o %%i -s %APIC_SRV%
popd
)
)
)
goto end
:checkargs
REM Set default arguments
echo Info: set the arguments to the default values because no parameters have been given
set [email protected]
set APIC_PASSWORD=Passw0rd!
set APIC_SRV=management.fr.ibm
goto select_actions
:end
| ADesprets/apic_scripts | src/windows/V5/TestPublishV5.bat | bat | bsd-2-clause | 3,132 |
@echo off
"c:\l\j\play\play.bat" %*
| greenlaw110/winenv | alias/play.bat | bat | bsd-2-clause | 45 |
@echo off
SETLOCAL
IF #%1 == # GOTO :NOFILE
SET testID=%1
SET testName=test%testID%
IF #%2 NEQ # GOTO :BADCANRY
SET cppName=tests/%testName%.cpp
g++ --std=gnu++14 -I. -I./bits -DTEST_NAME=%testName% %cppName% && a
GOTO :EOF
:NOFILE
ECHO Should give a test name, e.g. test1
EXIT /B 255
:BADCANRY
ECHO Don't know what to do with so many parameters
EXIT /B 255
| alzwded/ConstExprShenanigans | test.bat | bat | bsd-2-clause | 365 |
set DISTUTILS_USE_SDK=1
set ZMQ=%LIBRARY_PREFIX%
"%PYTHON%" -m pip install . "--install-option=--zmq=%ZMQ%"
if errorlevel 1 exit 1
| jjhelmus/berryconda | recipes/pyzmq/bld.bat | bat | bsd-3-clause | 139 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.