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 |
|---|---|---|---|---|---|
node_modules/.bin/cover run alltests.js
node_modules/.bin/cover report
node_modules/.bin/cover report html | fe9lix/boxchareditor | cover.cmd | bat | mit | 106 |
@echo off
echo build start...
if exist "%~dp0build.log" (del /Q "%~dp0build.log")
%windir%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe "D:\U9\Project\Plug\Code\UFIDA.U9.Cust.XMJL.UpdateRcvPricePlugBE\UFIDA.U9.Cust.XMJL.UpdateRcvPricePlugBE.sln" /t:Clean;Rebuild /p:WarningLevel=0;Configuration=Release
echo build end | amazingbow/yonyou | 金龙/更改/UFIDA.U9.Cust.XMJL.UpdateRcvPricePlugBE/build.bat | bat | gpl-2.0 | 320 |
@echo off
set CONFIG=Release
if %1%a==a goto begin_config
set CONFIG=%1
if %CONFIG%==Release goto begin_config
if %CONFIG%==Debug goto begin_config
echo Configuration can either be 'Debug' or 'Release'!
goto end
:begin_config
set BUILDDIR=build_vs2012_t100_xp-%CONFIG%
if not exist "%BUILDDIR%" mkdir "%BUILDDIR%"
cd "%BUILDDIR%"
cmake -DCMAKE_BUILD_TYPE=%CONFIG% -DCRASH_REPORTING=OFF -DTARGET_ARCH="i386" -G"Visual Studio 11" -T"v110_xp" ..
:end | wavesoft/cernvm-webapi | prepare-vs2012-vt100_xp.bat | bat | gpl-3.0 | 450 |
blockMesh.exe
checkMesh.exe
rhoSimplecFoam.exe
//paraFoam | richelbilderbeek/OpenFoamExamples | ToolOpenFoamExample18/ToolOpenFoamExample18.bat | bat | gpl-3.0 | 57 |
cd %~dp0
java -Dfile.encoding=UTF-8 -Dfelix.system.properties=file:conf/config.properties -jar bin\felix.jar
| ascherer/deepamehta | modules/dm4-distribution/script/deepamehta-windows.bat | bat | gpl-3.0 | 111 |
@REM ----------------------------------------------------------------------------
@REM Copyright 2001-2006 The Apache Software Foundation.
@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 Copyright (c) 2001-2006 The Apache Software Foundation. All rights
@REM reserved.
@echo off
if "%DEBUG%"=="true" @echo on
set ERROR_CODE=0
:init
@REM Decide how to startup depending on the version of windows
@REM -- Win98ME
if NOT "%OS%"=="Windows_NT" goto Win9xArg
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" @setlocal
@REM -- 4NT shell
if "%eval[2+2]" == "4" goto 4NTArgs
@REM -- Regular WinNT shell
set CMD_LINE_ARGS=%*
goto WinNTGetScriptDir
@REM The 4NT Shell from jp software
:4NTArgs
set CMD_LINE_ARGS=%$
goto WinNTGetScriptDir
:Win9xArg
@REM Slurp the command line arguments. This loop allows for an unlimited number
@REM of arguments (up to the command line limit, anyway).
set CMD_LINE_ARGS=
:Win9xApp
if %1a==a goto Win9xGetScriptDir
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto Win9xApp
:Win9xGetScriptDir
set SAVEDIR=%CD%
%0\
cd %0\..
set PRGDIR=%CD%
cd %0\..\..
set BASEDIR=%CD%
cd %SAVEDIR%
set SAVE_DIR=
goto setup
:WinNTGetScriptDir
set BASEDIR=%~dp0\..
set PRGDIR=%~dp0
:setup
cmd /c "%PRGDIR%\@{assembler.name}" --version > nul
if %ERRORLEVEL% NEQ 0 (
echo %PRGDIR%\@{assembler.name} not working as expected
echo Please check Java installation and that java.exe path is present in PATH environment variable
exit /b 1
)
if NOT "%POSTGRES_HOME%"=="" (
set PSQL=%POSTGRES_HOME%\bin\psql.exe
) else (
set PSQL=psql
)
"%PSQL%" --version > nul
if %ERRORLEVEL% NEQ 0 (
echo %PSQL% not found
echo Please check PostgreSQL installation and that installation path match POSTGRES_HOME environment variable or psql.exe path is present in PATH environment variable
exit /b 1
)
FOR /F "tokens=* USEBACKQ" %%F IN (`cmd /c "%PRGDIR%\@{assembler.name}" %CMD_LINE_ARGS% -lp /backend/postgres/port`) DO ( SET POSTGRES_PORT=%%F )
set "POSTGRES_PORT=%POSTGRES_PORT:~0,-1%"
FOR /F "tokens=* USEBACKQ" %%F IN (`cmd /c "%PRGDIR%\@{assembler.name}" %CMD_LINE_ARGS% -lp /backend/postgres/user`) DO ( SET POSTGRES_USER=%%F )
set "POSTGRES_USER=%POSTGRES_USER:~0,-1%"
FOR /F "tokens=* USEBACKQ" %%F IN (`cmd /c "%PRGDIR%\@{assembler.name}" %CMD_LINE_ARGS% -lp /backend/postgres/host`) DO ( SET POSTGRES_HOST=%%F )
set "POSTGRES_HOST=%POSTGRES_HOST:~0,-1%"
FOR /F "tokens=* USEBACKQ" %%F IN (`cmd /c "%PRGDIR%\@{assembler.name}" %CMD_LINE_ARGS% -lp /backend/postgres/database`) DO ( SET POSTGRES_DATABASE=%%F )
set "POSTGRES_DATABASE=%POSTGRES_DATABASE:~0,-1%"
if "%TOROUSER%"=="" set TOROUSER=%USERNAME%
if "%TOROPASSFILE%"=="" set TOROPASSFILE=%HOMEDRIVE%%HOMEPATH%\.toropass
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
set alfanum=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
set torodb_password=
FOR /L %%b IN (0, 1, 10) DO (
SET /A rnd_num=!RANDOM! * 62 / 32768 + 1
for /F %%c in ('echo %%alfanum:~!rnd_num!^,1%%') do set torodb_password=!torodb_password!%%c
)
@REM Reaching here means variables are defined and arguments have been captured
:endInit
"%PSQL%" -U postgres -h %POSTGRES_HOST% -p %POSTGRES_PORT% --no-readline -c "SELECT 1" > nul
if %ERRORLEVEL% NEQ 0 goto PostgresNotRunnning
"%PSQL%" -U postgres -h %POSTGRES_HOST% -p %POSTGRES_PORT% --no-readline -d %POSTGRES_DATABASE% -c "SELECT 1" > nul
if %ERRORLEVEL% EQU 0 goto DatabaseAlreadyExists
echo Creating %POSTGRES_USER% user
"%PSQL%" -U postgres -h %POSTGRES_HOST% -p %POSTGRES_PORT% --no-readline -c "CREATE USER %POSTGRES_USER% WITH PASSWORD '%torodb_password%'"
echo Creating torod database
"%PSQL%" -U postgres -h %POSTGRES_HOST% -p %POSTGRES_PORT% --no-readline -c "CREATE DATABASE %POSTGRES_DATABASE% WITH OWNER %POSTGRES_USER%"
echo Creating %TOROPASSFILE% for user %TOROUSER%
echo %POSTGRES_HOST%:%POSTGRES_PORT%:%POSTGRES_DATABASE%:%POSTGRES_USER%:%torodb_password%> "%TOROPASSFILE%"
attrib +I +A "%TOROPASSFILE%"
set PGPASSWORD=%torodb_password%
"%PSQL%" -h %POSTGRES_HOST% -p %POSTGRES_PORT% --no-readline -U %POSTGRES_USER% -d %POSTGRES_DATABASE% -h %POSTGRES_HOST% -p 5432 -c "SELECT 1" > nul
if %ERRORLEVEL% NEQ 0 goto PostgresSecurityRestrictions
goto end
:error
if "%OS%"=="Windows_NT" @endlocal
set ERROR_CODE=%ERRORLEVEL%
:end
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" goto endNT
@REM For old DOS remove the set variables from ENV - we assume they were not set
@REM before we started - at least we don't leave any baggage around
set CMD_LINE_ARGS=
goto postExec
:endNT
@REM If error code is set to 1 then the endlocal was done already in :error.
if %ERROR_CODE% EQU 0 @endlocal
:postExec
if "%FORCE_EXIT_ON_ERROR%" == "on" (
if %ERROR_CODE% NEQ 0 exit %ERROR_CODE%
)
exit /b %ERROR_CODE%
:PostgresNotRunnning
echo PostgreSQL must be running to setup torodb
exit /b 1
:DatabaseAlreadyExists
echo Database %POSTGRES_DATABASE% already exists
exit /b 1
:PostgresSecurityRestrictions
echo Seem that we can not connect to PostgreSQL due to some security restrictions. Please add those lines to pg_hba.conf file:
echo
if "%POSTGRES_HOST%" == "localhost" (
echo host %POSTGRES_DATABASE% %POSTGRES_USER% ::1/128 md5
echo host %POSTGRES_DATABASE% %POSTGRES_USER% 127.0.0.1/32 md5
) else (
echo host %POSTGRES_DATABASE% %POSTGRES_USER% <PostgreSQL's machine IPv6> md5
echo host %POSTGRES_DATABASE% %POSTGRES_USER% <PostgreSQL's machine IP> md5
)
echo
echo ...and then restart PostgreSQL server
exit /b 1
| jerolba/torodb | stampede/main/src/main/dist/setup/torodb-stampede-setup.bat | bat | agpl-3.0 | 6,517 |
@echo off
set foldername=project
if exist %foldername% (
rd /s/q %foldername%
echo delete %foldername%
)
:setpackage
set packagename=null
set/p packagename=ÇëÊäÈëÃüÃû¿Õ¼äÃû³Æ²¢»Ø³µ£¨ÖÁÉÙʹÓÃÁ½¼¶Ãû³Æ£¬È磺com.supermap£©£º
if "%packagename:.=%"=="%packagename%" (
echo ÊäÈë²»ÕýÈ·¡£
goto setpackage
) else (
goto setproject
)
:create
echo run phonegap creat.bat
call .\phonegap\bin\create .\%foldername% %packagename% %projectname%
if %errorlevel%==1 (
goto error
)
goto copy2
:setproject
set projectname=null
set/p projectname=ÇëÊäÈ빤³ÌÃû²¢»Ø³µ£¨È磺iclient£©£º
if %projectname%==null (
echo ÊäÈë²»ÕýÈ·¡£
goto setproject
) else (
goto create
)
:copy2
echo copy cordova-2.7.0.js
md .\%foldername%\assets\www\js
copy .\%foldername%\assets\www\cordova-2.7.0.js .\%foldername%\assets\www\js
del .\%foldername%\assets\www\cordova-2.7.0.js
echo copy libs
xcopy ..\..\libs .\%foldername%\assets\www\libs /s/e/i/y
echo copy theme
xcopy ..\..\theme .\%foldername%\assets\www\theme /s/e/i/y
echo copy img
xcopy .\img .\%foldername%\assets\www\img /s/e/i/y
echo copy js
xcopy .\js .\%foldername%\assets\www\js /s/e/i/y
echo copy html
xcopy .\html .\%foldername%\assets\www /s/e/i/y
echo copy jar
xcopy .\libs .\%foldername%\libs /s/e/i/y
echo copy xml
copy .\xml\config.xml .\%foldername%\res\xml
goto end
::echo copy src
::xcopy .\src .\%foldername%\src /s/e/i/y
:error
pause
EXIT /B 1
:end
| SuperMap/iClient9 | src/classic/resource/Android/ProjectBuilder.bat | bat | apache-2.0 | 1,396 |
@ECHO OFF
pushd %~dp0
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=SpoofaxAPIdocumentation
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| hendrikvanantwerpen/declare-your-language | make.bat | bat | apache-2.0 | 748 |
@echo off
pushd .
7za x tools.7z -y
popd | galek/GraphicsDemo | extract-tools.cmd | bat | mit | 43 |
MB4HF-2Q8V3-W88WR-K7287-2H4CP
| mgiljum/Windows-7-Pro-Activator | Activator/Certs/AcerGatewayPackard/Home Basic B/OEM/slp.cmd | bat | mit | 33 |
/* ============================================================================ */
/* Copyright (c) 2014, Texas Instruments Incorporated */
/* All rights reserved. */
/* */
/* Redistribution and use in source and binary forms, with or without */
/* modification, are permitted provided that the following conditions */
/* are met: */
/* */
/* * Redistributions of source code must retain the above copyright */
/* notice, this list of conditions and the following disclaimer. */
/* */
/* * Redistributions in binary form must reproduce the above copyright */
/* notice, this list of conditions and the following disclaimer in the */
/* documentation and/or other materials provided with the distribution. */
/* */
/* * Neither the name of Texas Instruments Incorporated nor the names of */
/* its contributors may be used to endorse or promote products derived */
/* from this software without specific prior written permission. */
/* */
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" */
/* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, */
/* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
/* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR */
/* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */
/* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, */
/* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; */
/* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, */
/* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR */
/* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */
/* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
/* ============================================================================ */
/******************************************************************************/
/* lnk_msp430fr5969.cmd - LINKER COMMAND FILE FOR LINKING MSP430FR5969 PROGRAMS */
/* */
/* Usage: lnk430 <obj files...> -o <out file> -m <map file> lnk.cmd */
/* cl430 <src files...> -z -o <out file> -m <map file> lnk.cmd */
/* */
/*----------------------------------------------------------------------------*/
/* These linker options are for command line linking only. For IDE linking, */
/* you should set your linker options in Project Properties */
/* -c LINK USING C CONVENTIONS */
/* -stack 0x0100 SOFTWARE STACK SIZE */
/* -heap 0x0100 HEAP AREA SIZE */
/* */
/*----------------------------------------------------------------------------*/
/* Version: 1.145 */
/*----------------------------------------------------------------------------*/
/****************************************************************************/
/* Specify the system memory map */
/****************************************************************************/
MEMORY
{
SFR : origin = 0x0000, length = 0x0010
PERIPHERALS_8BIT : origin = 0x0010, length = 0x00F0
PERIPHERALS_16BIT : origin = 0x0100, length = 0x0100
RAM : origin = 0x1C00, length = 0x0800
INFOA : origin = 0x1980, length = 0x0080
INFOB : origin = 0x1900, length = 0x0080
INFOC : origin = 0x1880, length = 0x0080
INFOD : origin = 0x1800, length = 0x0080
FRAM : origin = 0x4400, length = 0xBB80
FRAM2 : origin = 0x10000,length = 0x4000
JTAGSIGNATURE : origin = 0xFF80, length = 0x0004, fill = 0xFFFF
BSLSIGNATURE : origin = 0xFF84, length = 0x0004, fill = 0xFFFF
IPESIGNATURE : origin = 0xFF88, length = 0x0008, fill = 0xFFFF
INT00 : origin = 0xFF90, length = 0x0002
INT01 : origin = 0xFF92, length = 0x0002
INT02 : origin = 0xFF94, length = 0x0002
INT03 : origin = 0xFF96, length = 0x0002
INT04 : origin = 0xFF98, length = 0x0002
INT05 : origin = 0xFF9A, length = 0x0002
INT06 : origin = 0xFF9C, length = 0x0002
INT07 : origin = 0xFF9E, length = 0x0002
INT08 : origin = 0xFFA0, length = 0x0002
INT09 : origin = 0xFFA2, length = 0x0002
INT10 : origin = 0xFFA4, length = 0x0002
INT11 : origin = 0xFFA6, length = 0x0002
INT12 : origin = 0xFFA8, length = 0x0002
INT13 : origin = 0xFFAA, length = 0x0002
INT14 : origin = 0xFFAC, length = 0x0002
INT15 : origin = 0xFFAE, length = 0x0002
INT16 : origin = 0xFFB0, length = 0x0002
INT17 : origin = 0xFFB2, length = 0x0002
INT18 : origin = 0xFFB4, length = 0x0002
INT19 : origin = 0xFFB6, length = 0x0002
INT20 : origin = 0xFFB8, length = 0x0002
INT21 : origin = 0xFFBA, length = 0x0002
INT22 : origin = 0xFFBC, length = 0x0002
INT23 : origin = 0xFFBE, length = 0x0002
INT24 : origin = 0xFFC0, length = 0x0002
INT25 : origin = 0xFFC2, length = 0x0002
INT26 : origin = 0xFFC4, length = 0x0002
INT27 : origin = 0xFFC6, length = 0x0002
INT28 : origin = 0xFFC8, length = 0x0002
INT29 : origin = 0xFFCA, length = 0x0002
INT30 : origin = 0xFFCC, length = 0x0002
INT31 : origin = 0xFFCE, length = 0x0002
INT32 : origin = 0xFFD0, length = 0x0002
INT33 : origin = 0xFFD2, length = 0x0002
INT34 : origin = 0xFFD4, length = 0x0002
INT35 : origin = 0xFFD6, length = 0x0002
INT36 : origin = 0xFFD8, length = 0x0002
INT37 : origin = 0xFFDA, length = 0x0002
INT38 : origin = 0xFFDC, length = 0x0002
INT39 : origin = 0xFFDE, length = 0x0002
INT40 : origin = 0xFFE0, length = 0x0002
INT41 : origin = 0xFFE2, length = 0x0002
INT42 : origin = 0xFFE4, length = 0x0002
INT43 : origin = 0xFFE6, length = 0x0002
INT44 : origin = 0xFFE8, length = 0x0002
INT45 : origin = 0xFFEA, length = 0x0002
INT46 : origin = 0xFFEC, length = 0x0002
INT47 : origin = 0xFFEE, length = 0x0002
INT48 : origin = 0xFFF0, length = 0x0002
INT49 : origin = 0xFFF2, length = 0x0002
INT50 : origin = 0xFFF4, length = 0x0002
INT51 : origin = 0xFFF6, length = 0x0002
INT52 : origin = 0xFFF8, length = 0x0002
INT53 : origin = 0xFFFA, length = 0x0002
INT54 : origin = 0xFFFC, length = 0x0002
RESET : origin = 0xFFFE, length = 0x0002
}
/****************************************************************************/
/* Specify the sections allocation into memory */
/****************************************************************************/
SECTIONS
{
GROUP(READ_WRITE_MEMORY)
{
.TI.persistent : {} /* For #pragma persistent */
.cio : {} /* C I/O Buffer */
.sysmem : {} /* Dynamic memory allocation area */
} PALIGN(0x0400), RUN_END(fram_rx_start) > 0x4400
.cinit : {} > FRAM /* Initialization tables */
.pinit : {} > FRAM /* C++ Constructor tables */
.init_array : {} > FRAM /* C++ Constructor tables */
.mspabi.exidx : {} > FRAM /* C++ Constructor tables */
.mspabi.extab : {} > FRAM /* C++ Constructor tables */
.const : {} >> FRAM | FRAM2 /* Constant data */
.text:_isr : {} > FRAM /* Code ISRs */
.text : {} >> FRAM2 | FRAM /* Code */
GROUP(IPENCAPSULATED_MEMORY)
{
.ipestruct : {} /* IPE Data structure */
.ipe : {} /* IPE */
.ipe:_isr : {} /* IPE ISRs */
} PALIGN(0x0400), RUN_START(fram_ipe_start) RUN_END(fram_ipe_end) > FRAM
.jtagsignature : {} > JTAGSIGNATURE /* JTAG Signature */
.bslsignature : {} > BSLSIGNATURE /* BSL Signature */
GROUP(SIGNATURE_SHAREDMEMORY)
{
.ipesignature : {} /* IPE Signature */
.jtagpassword : {} /* JTAG Password */
} > IPESIGNATURE
.bss : {} > RAM /* Global & static vars */
.data : {} > RAM /* Global & static vars */
.TI.noinit : {} > RAM /* For #pragma noinit */
.stack : {} > RAM (HIGH) /* Software system stack */
.infoA : {} > INFOA /* MSP430 INFO FRAM Memory segments */
.infoB : {} > INFOB
.infoC : {} > INFOC
.infoD : {} > INFOD
/* MSP430 Interrupt vectors */
.int00 : {} > INT00
.int01 : {} > INT01
.int02 : {} > INT02
.int03 : {} > INT03
.int04 : {} > INT04
.int05 : {} > INT05
.int06 : {} > INT06
.int07 : {} > INT07
.int08 : {} > INT08
.int09 : {} > INT09
.int10 : {} > INT10
.int11 : {} > INT11
.int12 : {} > INT12
.int13 : {} > INT13
.int14 : {} > INT14
.int15 : {} > INT15
.int16 : {} > INT16
.int17 : {} > INT17
.int18 : {} > INT18
.int19 : {} > INT19
.int20 : {} > INT20
.int21 : {} > INT21
.int22 : {} > INT22
.int23 : {} > INT23
.int24 : {} > INT24
.int25 : {} > INT25
.int26 : {} > INT26
.int27 : {} > INT27
.int28 : {} > INT28
.int29 : {} > INT29
AES256 : { * ( .int30 ) } > INT30 type = VECT_INIT
RTC : { * ( .int31 ) } > INT31 type = VECT_INIT
PORT4 : { * ( .int32 ) } > INT32 type = VECT_INIT
PORT3 : { * ( .int33 ) } > INT33 type = VECT_INIT
TIMER3_A1 : { * ( .int34 ) } > INT34 type = VECT_INIT
TIMER3_A0 : { * ( .int35 ) } > INT35 type = VECT_INIT
PORT2 : { * ( .int36 ) } > INT36 type = VECT_INIT
TIMER2_A1 : { * ( .int37 ) } > INT37 type = VECT_INIT
TIMER2_A0 : { * ( .int38 ) } > INT38 type = VECT_INIT
PORT1 : { * ( .int39 ) } > INT39 type = VECT_INIT
TIMER1_A1 : { * ( .int40 ) } > INT40 type = VECT_INIT
TIMER1_A0 : { * ( .int41 ) } > INT41 type = VECT_INIT
DMA : { * ( .int42 ) } > INT42 type = VECT_INIT
USCI_A1 : { * ( .int43 ) } > INT43 type = VECT_INIT
TIMER0_A1 : { * ( .int44 ) } > INT44 type = VECT_INIT
TIMER0_A0 : { * ( .int45 ) } > INT45 type = VECT_INIT
ADC12 : { * ( .int46 ) } > INT46 type = VECT_INIT
USCI_B0 : { * ( .int47 ) } > INT47 type = VECT_INIT
USCI_A0 : { * ( .int48 ) } > INT48 type = VECT_INIT
WDT : { * ( .int49 ) } > INT49 type = VECT_INIT
TIMER0_B1 : { * ( .int50 ) } > INT50 type = VECT_INIT
TIMER0_B0 : { * ( .int51 ) } > INT51 type = VECT_INIT
COMP_E : { * ( .int52 ) } > INT52 type = VECT_INIT
UNMI : { * ( .int53 ) } > INT53 type = VECT_INIT
SYSNMI : { * ( .int54 ) } > INT54 type = VECT_INIT
.reset : {} > RESET /* MSP430 Reset vector */
}
/****************************************************************************/
/* MPU/IPE Specific memory segment definitons */
/****************************************************************************/
#ifdef _IPE_ENABLE
#define IPE_MPUIPLOCK 0x0080
#define IPE_MPUIPENA 0x0040
#define IPE_MPUIPPUC 0x0020
// Evaluate settings for the control setting of IP Encapsulation
#if defined(_IPE_LOCK ) && (defined(_IPE_ASSERTPUC1) && (_IPE_ASSERTPUC1 == 0x08))
fram_ipe_enable_value = (IPE_MPUIPENA | IPE_MPUIPPUC | IPE_MPUIPLOCK);
#elif defined(_IPE_LOCK )
fram_ipe_enable_value = (IPE_MPUIPENA | IPE_MPUIPLOCK);
#elif (defined(_IPE_ASSERTPUC1) && (_IPE_ASSERTPUC1 == 0x08))
fram_ipe_enable_value = (IPE_MPUIPENA | IPE_MPUIPPUC);
#else
fram_ipe_enable_value = (IPE_MPUIPENA);
#endif
// Segment definitions
#ifdef _IPE_MANUAL // For custom sizes selected in the GUI
fram_ipe_border1 = (_IPE_SEGB1>>4);
fram_ipe_border2 = (_IPE_SEGB2>>4);
#else // Automated sizes generated by the Linker
fram_ipe_border2 = (fram_ipe_end + 0x400)>> 4;
fram_ipe_border1 = fram_ipe_start >> 4;
#endif
fram_ipe_settings_struct_address = Ipe_settingsStruct >> 4;
fram_ipe_checksum = ~((fram_ipe_enable_value & fram_ipe_border2 & fram_ipe_border1) | (fram_ipe_enable_value & ~fram_ipe_border2 & ~fram_ipe_border1) | (~fram_ipe_enable_value & fram_ipe_border2 & ~fram_ipe_border1) | (~fram_ipe_enable_value & ~fram_ipe_border2 & fram_ipe_border1));
#endif
#ifdef _MPU_ENABLE
#define MPUPW (0xA500) /* MPU Access Password */
#define MPUENA (0x0001) /* MPU Enable */
#define MPULOCK (0x0002) /* MPU Lock */
#define MPUSEGIE (0x0010) /* MPU Enable NMI on Segment violation */
__mpu_enable = 1;
// Segment definitions
#ifdef _MPU_MANUAL // For custom sizes selected in the GUI
mpu_segment_border1 = _MPU_SEGB1 >> 4;
mpu_segment_border2 = _MPU_SEGB2 >> 4;
mpu_sam_value = (_MPU_SAM0 << 12) | (_MPU_SAM3 << 8) | (_MPU_SAM2 << 4) | _MPU_SAM1;
#else // Automated sizes generated by Linker
mpu_segment_border1 = fram_rx_start >> 4;
mpu_segment_border2 = fram_rx_start >> 4;
mpu_sam_value = 0x1513; // Info R, Seg3 RX, Seg2 R, Seg1 RW
#endif
#ifdef _MPU_LOCK
#ifdef _MPU_ENABLE_NMI
mpu_ctl0_value = MPUPW | MPUENA | MPULOCK | MPUSEGIE;
#else
mpu_ctl0_value = MPUPW | MPUENA | MPULOCK;
#endif
#else
#ifdef _MPU_ENABLE_NMI
mpu_ctl0_value = MPUPW | MPUENA | MPUSEGIE;
#else
mpu_ctl0_value = MPUPW | MPUENA;
#endif
#endif
#endif
/****************************************************************************/
/* Include peripherals memory map */
/****************************************************************************/
-l msp430fr5969.cmd
| cculpepper/SpexHabSoftware | Examples/MSP430ExampleProjects/CCS Projects/TimerB_OneShot/lnk_msp430fr5969.cmd | bat | gpl-2.0 | 16,989 |
@setlocal
@set node_name=mzbench
@rem Get the absolute path to the parent directory,
@rem which is assumed to be the node root.
@for /F "delims=" %%I in ("%~dp0..") do @set node_root=%%~fI
@set releases_dir=%node_root%\releases
@rem Parse ERTS version and release version from start_erl.data
@for /F "usebackq tokens=1,2" %%I in ("%releases_dir%\start_erl.data") do @(
@call :set_trim erts_version %%I
@call :set_trim release_version %%J
)
@set vm_args=%releases_dir%\%release_version%\vm.args
@set sys_config=%releases_dir%\%release_version%\sys.config
@set node_boot_script=%releases_dir%\%release_version%\%node_name%
@set clean_boot_script=%releases_dir%\%release_version%\start_clean
@rem extract erlang cookie from vm.args
@for /f "usebackq tokens=1-2" %%I in (`findstr /b \-setcookie "%vm_args%"`) do @set erlang_cookie=%%J
@set erts_bin=%node_root%\erts-%erts_version%\bin
@set service_name=%node_name%_%release_version%
@set erlsrv="%erts_bin%\erlsrv.exe"
@set epmd="%erts_bin%\epmd.exe"
@set escript="%erts_bin%\escript.exe"
@set werl="%erts_bin%\werl.exe"
@set nodetool="%node_root%\%bin%\nodetool"
@if "%1"=="usage" @goto usage
@if "%1"=="install" @goto install
@if "%1"=="uninstall" @goto uninstall
@if "%1"=="start" @goto start
@if "%1"=="stop" @goto stop
@if "%1"=="restart" @call :stop && @goto start
@if "%1"=="console" @goto console
@if "%1"=="ping" @goto ping
@if "%1"=="query" @goto query
@if "%1"=="attach" @goto attach
@if "%1"=="upgrade" @goto upgrade
@echo Unknown command: "%1"
:usage
@echo Usage: %~n0 [install^|uninstall^|start^|stop^|restart^|console^|ping^|query^|attach^|upgrade]
@goto :EOF
:install
@set description=Erlang node %node_name% in %node_root%
@set start_erl=%node_root%\bin\start_erl.cmd
@set args= ++ %node_name% ++ %node_root%
@%erlsrv% add %service_name% -c "%description%" -sname %node_name% -w "%node_root%" -m "%start_erl%" -args "%args%" -stopaction "init:stop()."
@goto :EOF
:uninstall
@%erlsrv% remove %service_name%
@%epmd% -kill
@goto :EOF
:start
@%erlsrv% start %service_name%
@goto :EOF
:stop
@%erlsrv% stop %service_name%
@goto :EOF
:console
@start "%node_name% console" %werl% -boot "%node_boot_script%" -config "%sys_config%" -args_file "%vm_args%" -sname %node_name%
@goto :EOF
:ping
@%escript% %nodetool% ping -sname "%node_name%" -setcookie "%erlang_cookie%"
@exit %ERRORLEVEL%
@goto :EOF
:query
@%erlsrv% list %service_name%
@exit %ERRORLEVEL%
@goto :EOF
:attach
@for /f "usebackq" %%I in (`hostname`) do @set hostname=%%I
start "%node_name% attach" %werl% -boot "%clean_boot_script%" -remsh %node_name%@%hostname% -sname console -setcookie %erlang_cookie%
@goto :EOF
:upgrade
@if "%2"=="" (
@echo Missing upgrade package argument
@echo Usage: %~n0 upgrade {package base name}
@echo NOTE {package base name} MUST NOT include the .tar.gz suffix
@goto :EOF
)
@%escript% %node_root%\bin\install_upgrade.escript %node_name% %erlang_cookie% %2
@goto :EOF
:set_trim
@set %1=%2
@goto :EOF
| timofey-barmin/mzbench | node/rel/files/mzbench.cmd | bat | bsd-3-clause | 2,990 |
@echo off
cd /d "%~dp0"
call sleep.bat
exit
| unirita/cuto | _release/windows/jobscript/testscript/end.bat | bat | gpl-2.0 | 48 |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
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.
if not defined HADOOP_HOME (
set EXITCODE=5
goto :errorexit
)
if not defined HIVE_HOME (
set EXITCODE=6
goto :errorexit
)
if not defined TEZ_HOME (
set EXITCODE=7
goto :errorexit
)
set EXITCODE=0
if not exist %HIVE_HOME%\conf\hive-tez-configured (
%HADOOP_HOME%\bin\hadoop.cmd fs -mkdir /apps/tez
set EXITCODE=%ERRORLEVEL%
if %EXITCODE% neq 0 goto :errorexit
%HADOOP_HOME%\bin\hadoop.cmd fs -chmod -R 755 /apps/tez
set EXITCODE=%ERRORLEVEL%
if %EXITCODE% neq 0 goto :errorexit
%HADOOP_HOME%\bin\hadoop.cmd fs -chown -R hadoop:users /apps/tez
set EXITCODE=%ERRORLEVEL%
if %EXITCODE% neq 0 goto :errorexit
%HADOOP_HOME%\bin\hadoop.cmd fs -put %TEZ_HOME%\* /apps/tez
set EXITCODE=%ERRORLEVEL%
if %EXITCODE% neq 0 goto :errorexit
%HADOOP_HOME%\bin\hadoop.cmd fs -rm -r -skipTrash /apps/tez/conf
set EXITCODE=%ERRORLEVEL%
if %EXITCODE% neq 0 goto :errorexit
echo done > %HIVE_HOME%\conf\hive-tez-configured
)
goto :eof
:errorexit
exit /B %EXITCODE%
| zouzhberk/ambaridemo | demo-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/files/hiveTezSetup.cmd | bat | apache-2.0 | 1,816 |
echo off
SETLOCAL enabledelayedexpansion
cd ..
call setEnv.cmd
echo on
"%JAVA_HOME%\bin\java" %MEM_ARGS% -classpath "%CLASSPATH%" twitter4j.examples.list.GetUserListSubscriptions %*
ENDLOCAL
| jonathanmcelroy/DataCommunicationsProgram456 | twitter4j/bin/list/getUserListSubscriptions.cmd | bat | gpl-2.0 | 202 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\JSONStream\index.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\JSONStream\index.js" %*
) | oavasquez/ingeneria_software | web-project/node_modules/.bin/JSONStream.cmd | bat | mit | 180 |
@ECHO OFF
REM ============================================================================
REM Create a new blog post.
REM
REM If you don't specify a post name on the command line, you will be prompted
REM for one.
REM
REM USAGE
REM
REM post.bat You will be prompted for a post name
REM wnd a new post ill be created and put
REM in your post directory
REM
REM post.bat My Post Name A new post named [date]_My_Post_Name
REM will be created and put in your post
REM directory
REM ============================================================================
REM ==========================================
REM Get the post name portion of the file name
REM ==========================================
if "%*."=="." (
ECHO Name your post:
SET /p POST_NAME=
) else (
ECHO Creating post named %*
SET POST_NAME=%*
)
REM ==========================================
REM Get the date portion of the file name
REM ==========================================
SET DATE_dd=%date:~7,2%
SET DATE_mm=%date:~4,2%
SET DATE_yyyy=%date:~10,4%
SET DATE_STAMP=%DATE_yyyy%-%DATE_mm%-%DATE_dd%
REM Create the year folder if it doesn't exist
IF NOT EXIST "_posts\%DATE_yyyy%" MKDIR "_posts\%DATE_yyyy%"
REM ==========================================
REM Concat and normalize the file name
REM ==========================================
SET FILE_NAME=%DATE_yyyy%\%DATE_STAMP%-%POST_NAME%
SET FILE_NAME=%FILE_NAME: =-%
REM ==========================================
REM Create the post file if it doesn't exist
REM then open it.
REM ==========================================
IF NOT EXIST "_posts\%FILE_NAME%.md" (
ECHO creating post %FILE_NAME%...
COPY _posts\template.md _posts\%FILE_NAME%.md
)
ECHO opening post %FILE_NAME%
start _posts\%FILE_NAME%.md
REM ==========================================
REM Create the image folder if it doesn't exist
REM ==========================================
IF NOT EXIST "images\posts\%FILE_NAME%" (
ECHO creating image folders %FILE_NAME%...
MKDIR images\posts\%FILE_NAME%
MKDIR images\posts\%FILE_NAME%\thumbnails
)
| jquintus/jquintus.github.io | post.bat | bat | mit | 2,275 |
:: ========================================================================
::
:: This file is a helper script to simplify setting up of the %PATH% and
:: other needful environment variables.
::
:: ========================================================================
@echo off
:: ========================================================================
::
:: Escape double execution
::
:: ========================================================================
if defined CMD_ENV_LOADED goto :shellenv.integration
set "CMD_ENV_LOADED=1"
:: ========================================================================
::
:: Set up useful aliases
::
:: ========================================================================
doskey alias=if "$1" == "" ( doskey /macros ) else ( doskey $* )
doskey unalias=doskey $1=
doskey shellenv="%~f0"
doskey shellinfo="%~dp0shellinfo.bat" $*
:: ========================================================================
::
:: Tea-Set
::
:: ========================================================================
for /f "tokens=*" %%p in ( "%~dp0." ) do call :shellenv.set.home TEA_HOME "%%~fp"
:: ========================================================================
::
:: OpenLDAP
::
:: ========================================================================
call :shellenv.set.home OPENLDAP_HOME "%TEA_HOME%\opt\OpenLDAP"
:: ========================================================================
::
:: IUM Sandbox
::
:: ========================================================================
if exist "C:\IUM\etc\sandbox-release" (
for /f "usebackq eol=# delims=; tokens=1,2,*" %%a in (
"C:\IUM\etc\sandbox-release"
) do if not "%%~a" == "" (
rem 1. do attempt to assign to the sandbox drive
call :shellenv.set.home IUM_HOME "%%~a"
) else if not "%%~b" == "" (
rem 2. do attempt to assign to the sandbox path
call :shellenv.set.home IUM_HOME "%%~b"
)
)
:: ========================================================================
::
:: WWW (WebServers aka D.N.W.R.)
::
:: ========================================================================
call :shellenv.set.home WWW_HOME "%TEA_HOME%\vendors\WWW"
:: ========================================================================
::
:: Unix tools (Cygwin, GoW, GnuWin32, MSysGit, Git_Bash, UnixUtils, Win-Bash etc)
::
:: ========================================================================
set "UNIX_NAME=unxutils"
if exist "%~dp0vendors\identify.bat" call "%~dp0vendors\identify.bat" app Unix
if defined UNIX_NAME call :shellenv.set.home UNIX_HOME "%TEA_HOME%\vendors\%UNIX_NAME%" /P
:: What is the HOME directory?
:: http://gnuwin32.sourceforge.net/faq.html
:: set "HOME=%TEA_HOME%"
:: The program aborts with the message: cannot create file /tmp/...
:: http://gnuwin32.sourceforge.net/faq.html
:: set "TMPDIR=%TEMP%"
:: set "TMP=%TEMP%"
:: How can I disable native language support?
:: http://gnuwin32.sourceforge.net/faq.html
:: set "LANG=en"
:: set "LANGUAGE=en"
:: ========================================================================
::
:: Perl
:: (prepend in PATH to overrride other Perls from other places)
::
:: ========================================================================
if exist "%TEA_HOME%\opt\Perl" for %%f in (
"c"
"perl"
"perl\site"
) do call :shellenv.select.path "%TEA_HOME%\opt\Perl\%%~f" /P
:: ========================================================================
::
:: VirtualBox
::
:: ========================================================================
call :shellenv.select.path "%ProgramFiles%\Oracle\VirtualBox"
:: ========================================================================
::
:: Java
::
:: ========================================================================
call :shellenv.lookup.jdk
call :shellenv.lookup.jre
if defined JDK_HOME (
call :shellenv.set.home JAVA_HOME "%JDK_HOME%"
) else if defined JRE_HOME (
call :shellenv.set.home JAVA_HOME "%JRE_HOME%"
)
:: ========================================================================
::
:: Autoloading the rest of tools from %TEA_HOME%\opt
::
:: ========================================================================
for /d %%d in ( "%TEA_HOME%\opt\*" ) do call :shellenv.select.path "%%~d"
:: ========================================================================
::
:: Integration with ConEmu
::
:: ========================================================================
:shellenv.integration
:: reg query "HKCU\Console" /v VirtualTerminalLevel 2>nul | find "0x1" && echo:[99999;1H
if defined ConEmuANSI if /i "%ConEmuANSI%" == "ON" echo:[99999;1H
:: Make ConEmu's environment variables available for child processes
:: if defined ConEmuBaseDir if exist "%ConEmuBaseDir%\IsConEmu.cmd" (
:: call "%ConEmuBaseDir%\IsConEmu.cmd" >nul && "%ConEmuBaseDir%\ConEmuC.exe" /export
:: )
:: Colorize the command line prompt
:: if defined ConEmuBaseDir if exist "%ConEmuBaseDir%\ColorPrompt.cmd" (
:: call "%ConEmuBaseDir%\ColorPrompt.cmd"
:: )
:: ========================================================================
goto :EOF
:: ========================================================================
:: These routines look for the latest version of JDK or JRE installed on
:: the PC and set the environment variable (JDK_HOME or JRE_HOME,
:: respectively) to the appropriate path. Initially they look for paths in
:: Windows Registry. If nothing is found there, they try to find all Java
:: directories under %ProgramFiles% and %ProgramFiles(x86)% and set to the
:: latest one.
::
:: %~1 - variable name (JDK_HOME or JRE_HOME)
:: %~2 - engine name (jdk or jre)
:: %~3 - registry name ("Java Development Kit" or "Java Runtime Environment")
:shellenv.lookup.jdk
call :shellenv.lookup.java JDK_HOME jdk "Java Development Kit"
goto :EOF
:shellenv.lookup.jre
call :shellenv.lookup.java JRE_HOME jre "Java Runtime Environment"
goto :EOF
:shellenv.lookup.java
set "%~1="
for %%q in (
"HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\%~3"
"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\%~3"
) do for /f "tokens=1,2,*" %%a in ( '
reg query "%%~q" /v "JavaHome" /s 2^>nul ^| find "JavaHome"
' ) do if exist "%%~c" (
set "%~1=%%~c"
)
for /f %%d in ( '
dir /b "%ProgramFiles%\Java" "%ProgramFiles(x86)%\Java" 2^>nul ^| findstr /i "%~2" ^| sort
' ) do if exist "%ProgramFiles%\Java\%%d" (
set "%~1=%ProgramFiles%\Java\%%d"
) else (
set "%~1=%ProgramFiles(x86)%\Java\%%d"
)
goto :EOF
:: ========================================================================
:: This routine sets home name variable (looks like XXX_HOME) to the
:: directory's path and adds paths to %PATH%.
::
:: Do nothing, if the home variable is already defined.
::
:: The routine looks for binaries located in the subdirectories (listed
:: below) under the home directory and adds them to %PATH% in the case
:: binaries are found there.
::
:: Subdirectories are looked for binaries and all of then added to %PATH%:
:: "bin", "sbin", "usr\bin", ".".
::
:: By default, all the paths are appended to %PATH%. In the case when
:: paths should to be prepended, use "/P" option.
::
:: %~1 - home name variable (looks like XXX_HOME)
:: %~2 - the directory's path
:: %~3 - /P to force prepending to %PATH%, or empty
:shellenv.set.home
if defined %~1 goto :EOF
:: Set all provided paths to %PATH%
for %%p in (
"%~2\bin"
"%~2\sbin"
"%~2\usr\bin"
"%~2"
) do (
call :shellenv.set.path "%%~fp" "%~3" && set "%~1=%~2"
)
goto :EOF
:: ========================================================================
:: The routine looks for binaries located in the subdirectories (listed
:: below) and adds the first found subdirectory to %PATH%.
::
:: Subdirectories are looked for binaries and all of then added to %PATH%:
:: "bin", "usr\bin", "cmd", ".".
::
:: By default, all the paths are appended to %PATH%. In the case when
:: paths should to be prepended, use "/P" option.
::
:: %~1 - the directory's path
:: %~2 - /P to force prepending to %PATH%, or empty
:shellenv.select.path
:: Only one of these paths will be appended to %PATH%
for %%p in (
"%~1\bin"
"%~1\usr\bin"
"%~1\cmd"
"%~1"
) do (
call :shellenv.set.path "%%~fp" "%~2" && goto :EOF
)
goto :EOF
:: ========================================================================
:: Checks the provided directory if it is new and adds to %PATH%.
::
:: By default, all the paths are appended to %PATH%. In the case when
:: paths should to be prepended, use "/P" option.
::
:: %~1 - the directory's path
:: %~2 - /P to force prepending to %PATH%, or empty
:shellenv.set.path
:: Check if the path is not specified in %PATH% and contains executables
call :shellenv.check.path "%~1" || goto :EOF
:: Append or prepend new path to %PATH%
if /i "%~2" == "/P" set "PATH=%~1;%PATH%"
if /i not "%~2" == "/P" set "PATH=%PATH%;%~1"
goto :EOF
:: ========================================================================
:: Checks the provided directory if it is new in %PATH%.
::
:: Returns ERRORLEVEL == 1 if path is found in %PATH% or no executables in
:: the specified path, otherwise 0.
::
:: %~1 - the directory's path
:shellenv.check.path
:: Skip if the path is specified in %PATH%
for %%p in ( "%PATH:;=" "%" ) do if /i "%~1" == "%%~p" exit /b 1
:: Skip if no executables in the path
dir /b /a-d "%~1\*.exe" "%~1\*.bat" "%~1\*.cmd" >nul 2>nul
goto :EOF
:: ========================================================================
:: EOF
| ildar-shaimordanov/tea-set | shellenv.bat | bat | mit | 9,465 |
@echo off
set YEAR=%DATE:~-4%
set /p lol="What do you want to do? "
set lol=%lol:my=your%
set lol=%lol:me=you%
set lol=%lol:I want to=You%
set lol=%lol:i =you %
echo %lol%. The end.
echo.
echo Written by %username%.
echo © %year%
pause | Mysterypancake1/Source-Fun | batch/game.bat | bat | mit | 246 |
cmd_net/ipv4/route.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/ipv4/.route.o.d -nostdinc -isystem /opt/CodeSourcery/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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(route)" -D"KBUILD_MODNAME=KBUILD_STR(route)" -c -o net/ipv4/.tmp_route.o net/ipv4/route.c
deps_net/ipv4/route.o := \
net/ipv4/route.c \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/net/cls/route.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/ip/route/verbose.h) \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/route/multipath.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/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/posix_types.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/hwcap.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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 \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/stat.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/opt/CodeSourcery/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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/dynamic_debug.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/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) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/atomic.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/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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 \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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 \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/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) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/elf.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/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) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/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/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/trace/define_trace.h \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/linux/pfn.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/uaccess.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/mm.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/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/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/bootmem.h \
$(wildcard include/config/crash/dump.h) \
$(wildcard include/config/have/arch/bootmem/node.h) \
$(wildcard include/config/have/arch/alloc/remap.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/dma.h \
$(wildcard include/config/isa/dma/api.h) \
$(wildcard include/config/pci.h) \
include/linux/socket.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/socket.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/in.h \
include/linux/inet.h \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan/80211.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/kmemcheck.h \
include/linux/net.h \
include/linux/random.h \
include/linux/ioctl.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/sysctl.h \
include/linux/ratelimit.h \
include/linux/textsearch.h \
include/linux/err.h \
include/net/checksum.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/semaphore.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/scatterlist.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/io.h \
arch/arm/mach-davinci/include/mach/io.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/if_packet.h \
include/linux/delay.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/delay.h \
include/linux/rculist.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/pimsm/v1.h) \
$(wildcard include/config/ip/pimsm/v2.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/pimsm/v2.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/capability.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/magic.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/ipcbuf.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/sigcontext.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.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 \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/resource.h \
include/asm-generic/resource.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/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/hardirq.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/inetdevice.h \
include/linux/igmp.h \
include/linux/pkt_sched.h \
include/linux/mroute.h \
include/linux/pim.h \
include/net/sock.h \
include/linux/list_nulls.h \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/shmparam.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/msgbuf.h \
include/linux/filter.h \
include/linux/rculist_nulls.h \
include/linux/poll.h \
/home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/net/dst.h \
include/linux/rtnetlink.h \
include/linux/netlink.h \
include/linux/if_link.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/net/rtnetlink.h \
include/net/netlink.h \
include/linux/netfilter_ipv4.h \
include/linux/jhash.h \
include/linux/times.h \
include/net/protocol.h \
include/net/ip.h \
$(wildcard include/config/inet.h) \
include/linux/ip.h \
include/net/inet_sock.h \
include/net/request_sock.h \
include/net/netns/hash.h \
include/net/route.h \
include/net/inetpeer.h \
include/linux/in_route.h \
include/linux/route.h \
include/net/ip_fib.h \
include/net/fib_rules.h \
include/linux/fib_rules.h \
include/net/arp.h \
include/linux/if_arp.h \
include/net/tcp.h \
$(wildcard include/config/tcp/md5sig.h) \
include/linux/tcp.h \
include/net/inet_connection_sock.h \
include/net/inet_timewait_sock.h \
include/net/tcp_states.h \
include/net/timewait_sock.h \
include/linux/crypto.h \
include/linux/uaccess.h \
include/linux/cryptohash.h \
include/net/inet_hashtables.h \
include/linux/ipv6.h \
$(wildcard include/config/ipv6/privacy.h) \
$(wildcard include/config/ipv6/router/pref.h) \
$(wildcard include/config/ipv6/route/info.h) \
$(wildcard include/config/ipv6/optimistic/dad.h) \
$(wildcard include/config/ipv6/mip6.h) \
$(wildcard include/config/ipv6/subtrees.h) \
include/linux/icmpv6.h \
include/linux/udp.h \
include/linux/vmalloc.h \
include/net/inet_ecn.h \
include/net/dsfield.h \
include/net/icmp.h \
include/linux/icmp.h \
include/net/xfrm.h \
$(wildcard include/config/xfrm/sub/policy.h) \
$(wildcard include/config/xfrm/migrate.h) \
include/linux/pfkeyv2.h \
include/linux/ipsec.h \
include/linux/audit.h \
$(wildcard include/config/change.h) \
include/net/ipv6.h \
include/net/if_inet6.h \
include/net/ndisc.h \
include/net/ip6_fib.h \
include/linux/ipv6_route.h \
include/net/netevent.h \
net/ipv4/route.o: $(deps_net/ipv4/route.o)
$(deps_net/ipv4/route.o):
| EAVR/EV3.14 | ev3sources/extra/linux-03.20.00.13/net/ipv4/.route.o.cmd | bat | gpl-2.0 | 33,507 |
cmd_drivers/bluetooth/hci_uart.o := /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/bluetooth/hci_uart.o drivers/bluetooth/hci_ldisc.o drivers/bluetooth/hci_ath.o
| evan6200/cirrfy_pos | drivers/bluetooth/.hci_uart.o.cmd | bat | gpl-2.0 | 250 |
cmd_ipc/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o ipc/built-in.o ipc/util.o ipc/msgutil.o ipc/msg.o ipc/sem.o ipc/shm.o ipc/ipcns_notifier.o ipc/syscall.o ipc/ipc_sysctl.o
| sleshepic/epic_touch_kernel | ipc/.built-in.o.cmd | bat | gpl-2.0 | 226 |
@rem send commands from redis-zone-add.txt to redis server thru redis-cli
find /v "#" < \tmp\devel\negentropia\redis-zone-add.txt | \redis\redis-cli -x
@rem eof
| udhos/negentropia | win-zone-add.cmd | bat | gpl-2.0 | 163 |
cmd_crypto/ccm.ko := /home/adminuser/sgy1/arm-2009q3/bin/arm-none-eabi-ld -EL -r -T /home/adminuser/sgy1/kernel/common/scripts/module-common.lds --build-id -o crypto/ccm.ko crypto/ccm.o crypto/ccm.mod.o
| prototype-U/Hells-Fusion-SGYD | crypto/.ccm.ko.cmd | bat | gpl-2.0 | 204 |
cmd_sound/pci/rme9652/built-in.o := rm -f sound/pci/rme9652/built-in.o; /home/utkanos/android/ginger/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs sound/pci/rme9652/built-in.o
| utkanos/android_htc_mecha_kernel_5slot | sound/pci/rme9652/.built-in.o.cmd | bat | gpl-2.0 | 195 |
cmd_net/sunrpc/auth_unix.o := arm-eabi-gcc -Wp,-MD,net/sunrpc/.auth_unix.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(auth_unix)" -D"KBUILD_MODNAME=KBUILD_STR(sunrpc)" -D"DEBUG_HASH=49" -D"DEBUG_HASH2=61" -c -o net/sunrpc/auth_unix.o net/sunrpc/auth_unix.c
deps_net/sunrpc/auth_unix.o := \
net/sunrpc/auth_unix.c \
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 \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/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 \
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 \
/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/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/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/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/proc/fs.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/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/sunrpc/clnt.h \
$(wildcard include/config/ipv6.h) \
include/linux/socket.h \
/data/repos/kernels/arch/arm/include/asm/socket.h \
/data/repos/kernels/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/in.h \
include/linux/in6.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/sunrpc/sched.h \
include/linux/sunrpc/types.h \
include/linux/sunrpc/debug.h \
include/linux/sunrpc/xdr.h \
/data/repos/kernels/arch/arm/include/asm/unaligned.h \
include/linux/unaligned/le_byteshift.h \
include/linux/unaligned/be_byteshift.h \
include/linux/unaligned/generic.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/data/repos/kernels/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
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/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) \
/data/repos/kernels/arch/arm/include/asm/io.h \
$(wildcard include/config/sec/debug/regrw/log.h) \
arch/arm/mach-msm/include/mach/sec_debug.h \
$(wildcard include/config/sec/debug.h) \
$(wildcard include/config/sec/debug/sched/log.h) \
$(wildcard include/config/sec/debug/irq/exit/log.h) \
$(wildcard include/config/sec/debug/semaphore/log.h) \
$(wildcard include/config/sec/debug/dcvs/log.h) \
$(wildcard include/config/sec/debug/fuelgauge/log.h) \
$(wildcard include/config/sec/debug/mdp/log.h) \
$(wildcard include/config/sec/debug/sdio/log.h) \
include/linux/semaphore.h \
arch/arm/mach-msm/include/mach/io.h \
include/linux/sunrpc/xprt.h \
$(wildcard include/config/nfs/v4/1.h) \
include/linux/sunrpc/auth.h \
include/linux/sunrpc/stats.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/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/radix-tree.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/fcntl.h \
/data/repos/kernels/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/magic.h \
include/linux/sunrpc/timer.h \
include/net/ipv6.h \
include/linux/ipv6.h \
$(wildcard include/config/ipv6/privacy.h) \
$(wildcard include/config/ipv6/router/pref.h) \
$(wildcard include/config/ipv6/route/info.h) \
$(wildcard include/config/ipv6/optimistic/dad.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/mip6.h) \
$(wildcard include/config/ipv6/subtrees.h) \
include/linux/icmpv6.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/kmemcheck.h \
include/linux/net.h \
include/linux/random.h \
include/linux/irqnr.h \
include/linux/ratelimit.h \
include/linux/textsearch.h \
include/net/checksum.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/checksum.h \
include/linux/dmaengine.h \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.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 \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/data/repos/kernels/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
$(wildcard include/config/need/dma/map/state.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
/data/repos/kernels/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/if_packet.h \
include/linux/if_link.h \
include/linux/netlink.h \
include/linux/pm_qos_params.h \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/delay.h \
/data/repos/kernels/arch/arm/include/asm/delay.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/linux/u64_stats_sync.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/mroute/multiple/tables.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute/multiple/tables.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/net/flow.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/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/tcp.h \
$(wildcard include/config/tcp/md5sig.h) \
include/net/sock.h \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/data/repos/kernels/arch/arm/include/asm/shmparam.h \
/data/repos/kernels/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/data/repos/kernels/arch/arm/include/asm/msgbuf.h \
include/linux/filter.h \
include/linux/rculist_nulls.h \
include/linux/poll.h \
/data/repos/kernels/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/net/dst.h \
$(wildcard include/config/net/cls/route.h) \
include/linux/rtnetlink.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/net/rtnetlink.h \
include/net/netlink.h \
include/net/inet_connection_sock.h \
include/net/inet_sock.h \
include/linux/jhash.h \
include/net/request_sock.h \
include/net/netns/hash.h \
include/net/inet_timewait_sock.h \
include/net/tcp_states.h \
include/net/timewait_sock.h \
include/linux/udp.h \
include/net/if_inet6.h \
include/net/ndisc.h \
net/sunrpc/auth_unix.o: $(deps_net/sunrpc/auth_unix.o)
$(deps_net/sunrpc/auth_unix.o):
| bigbiff/i717-GB-Kernel | net/sunrpc/.auth_unix.o.cmd | bat | gpl-2.0 | 33,774 |
cmd_fs/lockd/svcproc.o := arm-eabi-gcc -Wp,-MD,fs/lockd/.svcproc.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(svcproc)" -D"KBUILD_MODNAME=KBUILD_STR(lockd)" -D"DEBUG_HASH=7" -D"DEBUG_HASH2=23" -c -o fs/lockd/svcproc.o fs/lockd/svcproc.c
deps_fs/lockd/svcproc.o := \
fs/lockd/svcproc.c \
$(wildcard include/config/lockd/v4.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 \
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 \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/smp.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/tracing.h) \
$(wildcard include/config/numa.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/linkage.h \
/data/repos/kernels/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/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/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/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 \
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 \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.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/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 \
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/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/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/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/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/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/hotplug/cpu.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) \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/timex.h \
include/linux/param.h \
/data/repos/kernels/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
$(wildcard include/config/arch/msm/scorpionmp.h) \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/cpumask.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/data/repos/kernels/arch/arm/include/asm/string.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/nodemask.h \
$(wildcard include/config/highmem.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/proc/fs.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/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/completion.h \
include/linux/wait.h \
/data/repos/kernels/arch/arm/include/asm/current.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/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/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) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.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/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.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/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/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/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.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/percpu.h \
$(wildcard include/config/modules.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 \
include/linux/init.h \
$(wildcard include/config/hotplug.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) \
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) \
$(wildcard include/config/have/memoryless/nodes.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/zone/dma32.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/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
include/linux/srcu.h \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.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/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/lockd/lockd.h \
$(wildcard include/config/ipv6.h) \
include/linux/in.h \
include/linux/socket.h \
/data/repos/kernels/arch/arm/include/asm/socket.h \
/data/repos/kernels/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/in6.h \
include/net/ipv6.h \
include/linux/ipv6.h \
$(wildcard include/config/ipv6/privacy.h) \
$(wildcard include/config/ipv6/router/pref.h) \
$(wildcard include/config/ipv6/route/info.h) \
$(wildcard include/config/ipv6/optimistic/dad.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/mip6.h) \
$(wildcard include/config/ipv6/subtrees.h) \
include/linux/icmpv6.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/kmemcheck.h \
include/linux/net.h \
include/linux/random.h \
include/linux/ioctl.h \
/data/repos/kernels/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/data/repos/kernels/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/ratelimit.h \
include/linux/textsearch.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/tracepoints.h) \
$(wildcard include/config/event/tracing.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/gfp.h \
$(wildcard include/config/debug/vm.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.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) \
include/linux/tracepoint.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/err.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/net/checksum.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/checksum.h \
include/linux/dmaengine.h \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.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 \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/data/repos/kernels/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
$(wildcard include/config/need/dma/map/state.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/data/repos/kernels/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
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/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) \
/data/repos/kernels/arch/arm/include/asm/io.h \
$(wildcard include/config/sec/debug/regrw/log.h) \
arch/arm/mach-msm/include/mach/sec_debug.h \
$(wildcard include/config/sec/debug.h) \
$(wildcard include/config/sec/debug/sched/log.h) \
$(wildcard include/config/sec/debug/irq/exit/log.h) \
$(wildcard include/config/sec/debug/semaphore/log.h) \
$(wildcard include/config/sec/debug/dcvs/log.h) \
$(wildcard include/config/sec/debug/fuelgauge/log.h) \
$(wildcard include/config/sec/debug/mdp/log.h) \
$(wildcard include/config/sec/debug/sdio/log.h) \
include/linux/semaphore.h \
arch/arm/mach-msm/include/mach/io.h \
/data/repos/kernels/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/if_packet.h \
include/linux/if_link.h \
include/linux/netlink.h \
include/linux/pm_qos_params.h \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/delay.h \
/data/repos/kernels/arch/arm/include/asm/delay.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/linux/u64_stats_sync.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/mroute/multiple/tables.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute/multiple/tables.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.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/tcp.h \
$(wildcard include/config/tcp/md5sig.h) \
include/net/sock.h \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/data/repos/kernels/arch/arm/include/asm/shmparam.h \
/data/repos/kernels/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/data/repos/kernels/arch/arm/include/asm/msgbuf.h \
include/linux/filter.h \
include/linux/rculist_nulls.h \
include/linux/poll.h \
/data/repos/kernels/arch/arm/include/asm/poll.h \
include/asm-generic/poll.h \
include/net/dst.h \
$(wildcard include/config/net/cls/route.h) \
include/linux/rtnetlink.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/net/rtnetlink.h \
include/net/netlink.h \
include/net/inet_connection_sock.h \
include/net/inet_sock.h \
include/linux/jhash.h \
include/net/request_sock.h \
include/net/netns/hash.h \
include/net/inet_timewait_sock.h \
include/net/tcp_states.h \
include/net/timewait_sock.h \
include/linux/udp.h \
include/net/if_inet6.h \
include/net/ndisc.h \
include/linux/utsname.h \
$(wildcard include/config/uts/ns.h) \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/nfsd/nfsfh.h \
$(wildcard include/config/nfsd/v3.h) \
include/linux/sunrpc/svc.h \
$(wildcard include/config/nfs/v4/1.h) \
include/linux/sunrpc/types.h \
include/linux/sunrpc/debug.h \
include/linux/sunrpc/xdr.h \
/data/repos/kernels/arch/arm/include/asm/unaligned.h \
include/linux/unaligned/le_byteshift.h \
include/linux/unaligned/be_byteshift.h \
include/linux/unaligned/generic.h \
include/linux/sunrpc/auth.h \
include/linux/sunrpc/sched.h \
include/linux/sunrpc/svcauth.h \
include/linux/sunrpc/cache.h \
include/linux/hash.h \
include/linux/nfsd/const.h \
$(wildcard include/config/nfsd/v4.h) \
include/linux/nfs2.h \
include/linux/nfs3.h \
include/linux/nfs4.h \
include/linux/lockd/bind.h \
include/linux/lockd/nlm.h \
include/linux/lockd/xdr.h \
include/linux/lockd/xdr4.h \
include/linux/lockd/debug.h \
include/linux/lockd/share.h \
fs/lockd/svcproc.o: $(deps_fs/lockd/svcproc.o)
$(deps_fs/lockd/svcproc.o):
| bigbiff/i717-GB-Kernel | fs/lockd/.svcproc.o.cmd | bat | gpl-2.0 | 34,356 |
cmd_net/netfilter/xt_connlimit.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_connlimit.ko net/netfilter/xt_connlimit.o net/netfilter/xt_connlimit.mod.o
| ashishtanwer/NFTable-porting-on-Android-Goldfish | net/netfilter/.xt_connlimit.ko.cmd | bat | gpl-2.0 | 308 |
:: (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
::
:: This file contains confidential and proprietary information
:: of Xilinx, Inc. and is protected under U.S. and
:: international copyright and other intellectual property
:: laws.
::
:: DISCLAIMER
:: This disclaimer is not a license and does not grant any
:: rights to the materials distributed herewith. Except as
:: otherwise provided in a valid license issued to you by
:: Xilinx, and to the maximum extent permitted by applicable
:: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
:: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
:: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
:: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
:: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
:: (2) Xilinx shall not be liable (whether in contract or tort,
:: including negligence, or under any other theory of
:: liability) for any loss or damage of any kind or nature
:: related to, arising under or in connection with these
:: materials, including for any direct, or any indirect,
:: special, incidental, or consequential loss or damage
:: (including loss of data, profits, goodwill, or any type of
:: loss or damage suffered as a result of any action brought
:: by a third party) even if such damage or loss was
:: reasonably foreseeable or Xilinx had been advised of the
:: possibility of the same.
::
:: CRITICAL APPLICATIONS
:: Xilinx products are not designed or intended to be fail-
:: safe, or for use in any application requiring fail-safe
:: performance, such as life-support or safety devices or
:: systems, Class III medical devices, nuclear facilities,
:: applications related to the deployment of airbags, or any
:: other applications that could lead to death, personal
:: injury, or severe property or environmental damage
:: (individually and collectively, "Critical
:: Applications"). Customer assumes the sole risk and
:: liability of any use of Xilinx products in Critical
:: Applications, subject only to applicable laws and
:: regulations governing limitations on product liability.
::
:: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
:: PART OF THIS FILE AT ALL TIMES.
rem Clean up the results directory
rmdir /S /Q results
mkdir results
rem Synthesize the VHDL Wrapper Files
#Synthesize the Wrapper Files
echo 'Synthesizing example design with XST';
xst -ifn xst.scr
copy txreg_exdes.ngc .\results\
rem Copy the netlist generated by Coregen
echo 'Copying files from the netlist directory to the results directory'
copy ..\..\txreg.ngc results\
rem Copy the constraints files generated by Coregen
echo 'Copying files from constraints directory to results directory'
copy ..\example_design\txreg_exdes.ucf results\
cd results
echo 'Running ngdbuild'
ngdbuild -p xc3s1600e-fg484-4 -sd ../../../ txreg_exdes
echo 'Running map'
map txreg_exdes -o mapped.ncd
echo 'Running par'
par mapped.ncd routed.ncd
echo 'Running trce'
trce -e 10 routed.ncd mapped.pcf -o routed
echo 'Running design through bitgen'
bitgen -w routed
echo 'Running netgen to create gate level Verilog model'
netgen -ofmt verilog -sim -tm txreg_exdes -pcf mapped.pcf -w -sdf_anno false routed.ncd routed.v
| gigglesninja/digital-system-design | spi/ipcore_dir/txreg/implement/implement.bat | bat | gpl-2.0 | 3,236 |
cmd_archival/dpkg_deb.o := arm-linux-musleabihf-gcc -Wp,-MD,archival/.dpkg_deb.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dpkg_deb)" -D"KBUILD_MODNAME=KBUILD_STR(dpkg_deb)" -c -o archival/dpkg_deb.o archival/dpkg_deb.c
deps_archival/dpkg_deb.o := \
archival/dpkg_deb.c \
$(wildcard include/config/dpkg/deb.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/clean/up.h) \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
include/bb_archive.h \
$(wildcard include/config/feature/tar/uname/gname.h) \
$(wildcard include/config/tar.h) \
$(wildcard include/config/dpkg.h) \
$(wildcard include/config/feature/tar/gnu/extensions.h) \
$(wildcard include/config/feature/tar/to/command.h) \
$(wildcard include/config/feature/tar/selinux.h) \
$(wildcard include/config/cpio.h) \
$(wildcard include/config/rpm2cpio.h) \
$(wildcard include/config/rpm.h) \
$(wildcard include/config/feature/ar/create.h) \
archival/dpkg_deb.o: $(deps_archival/dpkg_deb.o)
$(deps_archival/dpkg_deb.o):
| ThinkIntegrate/busybox | archival/.dpkg_deb.o.cmd | bat | gpl-2.0 | 11,935 |
rem @echo off
pushd "%~dp0"
if "%SOFTWARE%"=="" (set SOFTWARE=C:\software)
set TARGET=%SOFTWARE%\arkdasm
set PACKAGE=arkdasm-1.1.0.zip
if exist "%TARGET%" goto END
echo ==== Installing %~dp0%PACKAGE% to %TARGET%
7z x %PACKAGE% -o%SOFTWARE%
:END
popd
| malwarenights/rebox | packages/a/arkdasm/00_install.bat | bat | gpl-2.0 | 276 |
md mus
cd mus
bcut ..\RW_DM.DSK DRIVER.BIN 0x6E00 0x1E00
bcut ..\RW_DM.DSK FMUS00.BIN 0x08C00 0x0200
bcut ..\RW_DM.DSK PMUS00.BIN 0x08E00 0x0400
bcut ..\RW_DM.DSK FMUS01.BIN 0x09200 0x0A00
bcut ..\RW_DM.DSK PMUS01.BIN 0x09C00 0x0800
bcut ..\RW_DM.DSK FMUS02.BIN 0x22000 0x0800
bcut ..\RW_DM.DSK PMUS02.BIN 0x22800 0x0600
bcut ..\RW_DM.DSK FMUS03.BIN 0x22E00 0x0600
bcut ..\RW_DM.DSK PMUS03.BIN 0x23400 0x0400
bcut ..\RW_GA.DSK FMUS37.BIN 0x00200 0x0100
bcut ..\RW_GA.DSK FMUS38.BIN 0x00300 0x0100
bcut ..\RW_GA.DSK FMUS39.BIN 0x00400 0x0100
bcut ..\RW_GA.DSK FMUS40.BIN 0x00500 0x0100
bcut ..\RW_GA.DSK PMUS37.BIN 0x00600 0x0100
bcut ..\RW_GA.DSK PMUS38.BIN 0x00700 0x0100
bcut ..\RW_GA.DSK FMUS04.BIN 0x3B800 0x0200
bcut ..\RW_GA.DSK PMUS04.BIN 0x3BA00 0x0200
bcut ..\RW_GA.DSK FMUS05.BIN 0x3BC00 0x0400
bcut ..\RW_GA.DSK PMUS05.BIN 0x3C000 0x0400
bcut ..\RW_GA.DSK FMUS06.BIN 0x3C400 0x0800
bcut ..\RW_GA.DSK PMUS06.BIN 0x3CC00 0x0600
bcut ..\RW_GA.DSK FMUS07.BIN 0x3D200 0x0400
bcut ..\RW_GA.DSK PMUS07.BIN 0x3D600 0x0400
bcut ..\RW_GA.DSK FMUS08.BIN 0x3DA00 0x0600
bcut ..\RW_GA.DSK PMUS08.BIN 0x3E000 0x0400
bcut ..\RW_GA.DSK FMUS09.BIN 0x3E400 0x0600
bcut ..\RW_GA.DSK PMUS09.BIN 0x3EA00 0x0400
bcut ..\RW_GA.DSK FMUS10.BIN 0x3EE00 0x0600
bcut ..\RW_GA.DSK PMUS10.BIN 0x3F400 0x0600
bcut ..\RW_GA.DSK FMUS11.BIN 0x3FA00 0x0400
bcut ..\RW_GA.DSK PMUS11.BIN 0x3FE00 0x0200
bcut ..\RW_GA.DSK FMUS12.BIN 0x40000 0x0200
bcut ..\RW_GA.DSK PMUS12.BIN 0x40200 0x0200
bcut ..\RW_GA.DSK FMUS13.BIN 0x40400 0x0200
bcut ..\RW_GA.DSK PMUS13.BIN 0x40600 0x0200
bcut ..\RW_GA.DSK FMUS14.BIN 0x40800 0x0400
bcut ..\RW_GA.DSK PMUS14.BIN 0x40C00 0x0400
bcut ..\RW_GA.DSK FMUS15.BIN 0x41000 0x0400
bcut ..\RW_GA.DSK PMUS15.BIN 0x41400 0x0400
bcut ..\RW_GA.DSK FMUS16.BIN 0x41800 0x0400
bcut ..\RW_GA.DSK PMUS16.BIN 0x41C00 0x0400
bcut ..\RW_GA.DSK FMUS17.BIN 0x42000 0x0200
bcut ..\RW_GA.DSK PMUS17.BIN 0x42200 0x0200
bcut ..\RW_GA.DSK FMUS18.BIN 0x42400 0x0200
bcut ..\RW_GA.DSK PMUS18.BIN 0x42600 0x0200
bcut ..\RW_GA.DSK FMUS19.BIN 0x55A00 0x0800
bcut ..\RW_GA.DSK PMUS19.BIN 0x56200 0x0600
bcut ..\RW_GA.DSK FMUS20.BIN 0x56800 0x0600
bcut ..\RW_GA.DSK PMUS20.BIN 0x56E00 0x0400
bcut ..\RW_GA.DSK FMUS21.BIN 0x57200 0x0200
bcut ..\RW_GA.DSK PMUS21.BIN 0x57400 0x0200
bcut ..\RW_GA.DSK FMUS22.BIN 0x57600 0x0400
bcut ..\RW_GA.DSK PMUS22.BIN 0x57A00 0x0400
bcut ..\RW_GA.DSK FMUS23.BIN 0x57E00 0x0400
bcut ..\RW_GA.DSK PMUS23.BIN 0x58200 0x0200
bcut ..\RW_GA.DSK FMUS24.BIN 0x58400 0x0400
bcut ..\RW_GA.DSK PMUS24.BIN 0x58800 0x0400
bcut ..\RW_GA.DSK FMUS25.BIN 0x58C00 0x0400
bcut ..\RW_GA.DSK PMUS25.BIN 0x59000 0x0400
bcut ..\RW_GA.DSK FMUS26.BIN 0x59400 0x0400
bcut ..\RW_GA.DSK PMUS26.BIN 0x59800 0x0400
bcut ..\RW_GB.DSK FMUS27.BIN 0x4CA00 0x0400
bcut ..\RW_GB.DSK PMUS27.BIN 0x4CE00 0x0400
bcut ..\RW_GB.DSK FMUS28.BIN 0x4D200 0x0200
bcut ..\RW_GB.DSK PMUS28.BIN 0x4D400 0x0200
bcut ..\RW_GB.DSK FMUS29.BIN 0x4D600 0x0400
bcut ..\RW_GB.DSK PMUS29.BIN 0x4DA00 0x0400
bcut ..\RW_GB.DSK FMUS30.BIN 0x4DE00 0x0400
bcut ..\RW_GB.DSK PMUS30.BIN 0x4E200 0x0400
bcut ..\RW_GB.DSK FMUS31.BIN 0x4E600 0x0600
bcut ..\RW_GB.DSK PMUS31.BIN 0x4EC00 0x0400
bcut ..\RW_GB.DSK FMUS32.BIN 0x4F000 0x0400
bcut ..\RW_GB.DSK PMUS32.BIN 0x4F400 0x0400
bcut ..\RW_GB.DSK FMUS33.BIN 0x4F800 0x0400
bcut ..\RW_GB.DSK PMUS33.BIN 0x4FC00 0x0400
bcut ..\RW_GB.DSK FMUS34.BIN 0x50000 0x0600
bcut ..\RW_GB.DSK PMUS34.BIN 0x50600 0x0400
bcut ..\RW_GB.DSK FMUS35.BIN 0x50A00 0x0600
bcut ..\RW_GB.DSK PMUS35.BIN 0x51000 0x0600
bcut ..\RW_GB.DSK FMUS36.BIN 0x51600 0x0600
bcut ..\RW_GB.DSK PMUS36.BIN 0x51C00 0x0400
cd ..
| rururutan/hoot-patches | msx/t&e_soft/rune_worth/cut/cut.bat | bat | gpl-3.0 | 3,590 |
@echo off
:: AIR certificate generator
:: More information:
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959
:: http://livedocs.adobe.com/flex/3/html/distributing_apps_4.html#1037515
:: Path to Flex SDK binaries
set PATH=%PATH%;D:\shared\programme\Flex_sdk\bin
:: Certificate information
set NAME="avt-moteAir"
set PASSWORD=fd
set CERTIFICATE="avtmoteAir.pfx"
call adt -certificate -cn %NAME% 1024-RSA %CERTIFICATE% %PASSWORD%
if errorlevel 1 goto failed
echo.
echo Certificate created: %CERTIFICATE%
echo With password: %PASSWORD%
if "%PASSWORD%" == "fd" echo (WARNING: you did not change the default password)
echo.
echo Hint: you may have to wait a few minutes before using this certificate to build your AIR application setup.
echo.
goto end
:failed
echo.
echo Certificate creation FAILED.
echo.
echo Troubleshotting: did you configure the Flex SDK path in this Batch file?
echo.
:end
pause | LonghronShen/avt-mote | project/avt-mote/CreateCertificate.bat | bat | gpl-3.0 | 978 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\djreservation.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\djreservation.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| luisza/djreservation | docs/make.bat | bat | gpl-3.0 | 6,724 |
:: (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
::
:: This file contains confidential and proprietary information
:: of Xilinx, Inc. and is protected under U.S. and
:: international copyright and other intellectual property
:: laws.
::
:: DISCLAIMER
:: This disclaimer is not a license and does not grant any
:: rights to the materials distributed herewith. Except as
:: otherwise provided in a valid license issued to you by
:: Xilinx, and to the maximum extent permitted by applicable
:: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
:: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
:: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
:: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
:: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
:: (2) Xilinx shall not be liable (whether in contract or tort,
:: including negligence, or under any other theory of
:: liability) for any loss or damage of any kind or nature
:: related to, arising under or in connection with these
:: materials, including for any direct, or any indirect,
:: special, incidental, or consequential loss or damage
:: (including loss of data, profits, goodwill, or any type of
:: loss or damage suffered as a result of any action brought
:: by a third party) even if such damage or loss was
:: reasonably foreseeable or Xilinx had been advised of the
:: possibility of the same.
::
:: CRITICAL APPLICATIONS
:: Xilinx products are not designed or intended to be fail-
:: safe, or for use in any application requiring fail-safe
:: performance, such as life-support or safety devices or
:: systems, Class III medical devices, nuclear facilities,
:: applications related to the deployment of airbags, or any
:: other applications that could lead to death, personal
:: injury, or severe property or environmental damage
:: (individually and collectively, "Critical
:: Applications"). Customer assumes the sole risk and
:: liability of any use of Xilinx products in Critical
:: Applications, subject only to applicable laws and
:: regulations governing limitations on product liability.
::
:: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
:: PART OF THIS FILE AT ALL TIMES.
::--------------------------------------------------------------------------------
cp ..\..\..\rom_memory.mif .
echo "Compiling Core VHDL UNISIM/Behavioral model"
vhpcomp -work work ..\..\implement\results\routed.vhd
echo "Compiling Test Bench Files"
vhpcomp -work work ..\bmg_tb_pkg.vhd
vhpcomp -work work ..\addr_gen.vhd
vhpcomp -work work ..\bmg_stim_gen.vhd
vhpcomp -work work ..\rom_memory_synth.vhd
vhpcomp -work work ..\rom_memory_tb.vhd
fuse -L simprim work.rom_memory_tb -o rom_memory_tb.exe
.\rom_memory_tb.exe -sdftyp /rom_memory_tb/rom_memory_synth_inst/bmg_port=..\..\implement\results\routed.sdf -gui -tclbatch simcmds.tcl
| arthurbenemann/fpga-bits | undocumented/audioDac/ipcore_dir/rom_memory/simulation/timing/simulate_isim.bat | bat | gpl-3.0 | 2,884 |
@echo off
if not exist 4.com call build4.bat
echo Building step 5
4 5.4 5.com
| reenigne/reenigne | Bootstrap/build5.bat | bat | unlicense | 81 |
sc stop zookeeper2
pause
sc delete zookeeper2
pause | jior/cluster | zookeeper2/bin/zk-uninstallservice.bat | bat | apache-2.0 | 51 |
@echo off
rem -------------------------------------------------------------------------
rem dcm4che2/esoundex2 Launcher
rem -------------------------------------------------------------------------
rem $Id$
if not "%ECHO%" == "" echo %ECHO%
if "%OS%" == "Windows_NT" setlocal
set MAIN_CLASS=org.dcm4che2.soundex.ESoundex2
set MAIN_JAR=dcm4che-soundex-2.0.29.jar
set DIRNAME=.\
if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%
rem Read all command line arguments
set ARGS=
:loop
if [%1] == [] goto end
set ARGS=%ARGS% %1
shift
goto loop
:end
if not "%DCM4CHE_HOME%" == "" goto HAVE_DCM4CHE_HOME
set DCM4CHE_HOME=%DIRNAME%..
:HAVE_DCM4CHE_HOME
if not "%JAVA_HOME%" == "" goto HAVE_JAVA_HOME
set JAVA=java
goto SKIP_SET_JAVA_HOME
:HAVE_JAVA_HOME
set JAVA=%JAVA_HOME%\bin\java
:SKIP_SET_JAVA_HOME
set CP=%DCM4CHE_HOME%\lib\%MAIN_JAR%
"%JAVA%" %JAVA_OPTS% -cp "%CP%" %MAIN_CLASS% %ARGS%
| ppazos/cabolabs-mirth | dcm4che-2.0.29/bin/esoundex2.bat | bat | apache-2.0 | 969 |
REM Installation procedure for new Windows Desktop machine
echo Install chocolatey
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
echo Installing developer tools
choco install -y git
choco install -y sourcetree
choco install -y atom
choco install -y notepadplusplus.install
choco install -Y jdk8
choco install -Y maven
choco install -y intellijidea-community
choco install -y nodejs.install
choco install -y golang
REM choco install -y virtualbox
REM choco install -y vagrant
choco install -y googledrive
choco install -y putty.install
choco install -y paint.net
choco install -y slack
choco install -u adobereader | cruskit/util-scripts | windows/configureNewPc.bat | bat | apache-2.0 | 834 |
@echo off
SET PATH=%PATH%;%~dp0
"%~dp0node" "%~dp0..\packages\NoGit.0.0.7\node_modules\nogit\bin\git.js" %* | Zuehlke/quickstarts-angular | angular_vs_template/.bin/git.cmd | bat | apache-2.0 | 107 |
@echo off
mvn clean package jetty:run-forked -T 10 --projects simple-web-app
| uchicago/shibboleth-oidc | runclient.cmd | bat | apache-2.0 | 77 |
@ECHO OFF
REM Command file for Sphinx documentation
set SPHINXBUILD=sphinx-build
set ALLSPHINXOPTS=-d _build/doctrees %SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
)
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. 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. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
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 (_build\*) do rmdir /q /s %%i
del /q /s _build\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% _build/html
echo.
echo.Build finished. The HTML pages are in _build/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% _build/dirhtml
echo.
echo.Build finished. The HTML pages are in _build/dirhtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% _build/pickle
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% _build/json
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% _build/htmlhelp
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in _build/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% _build/qthelp
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in _build/qthelp, like this:
echo.^> qcollectiongenerator _build\qthelp\kokki.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile _build\qthelp\kokki.ghc
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% _build/latex
echo.
echo.Build finished; the LaTeX files are in _build/latex.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% _build/changes
echo.
echo.The overview file is in _build/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% _build/linkcheck
echo.
echo.Link check complete; look for any errors in the above output ^
or in _build/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% _build/doctest
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in _build/doctest/output.txt.
goto end
)
:end
| samuel/kokki | docs/make.bat | bat | bsd-3-clause | 2,957 |
@ECHO OFF
setlocal DISABLEDELAYEDEXPANSION
SET BIN_TARGET=%~dp0/../zendframework/zftool/zf.php
php "%BIN_TARGET%" %*
| lamkakyun/phpspider | vendor/bin/zf.php.bat | bat | bsd-3-clause | 121 |
@echo off
IF NOT DEFINED MSBUILD CALL findMsBuild.cmd
SET ToolsVersion=15.0
SET ProjectName=Msbuild.All
SET Configuration=Release
SET Platform="Mixed Platforms"
"%MSBUILD%" dirs.proj /nologo /m:1 /fl /toolsversion:%ToolsVersion% /flp:logfile=%ProjectName%.%Platform%.log;v=d /flp1:logfile=%ProjectName%.%Platform%.wrn;warningsonly /flp2:logfile=%ProjectName%.%Platform%.err;errorsonly /p:Configuration=%Configuration% /p:Platform=%Platform% /flp3:logfile=%ProjectName%.%Platform%.prf;performancesummary /flp4:logfile=%ProjectName%.%Platform%.exec.log;showcommandline /p:BuildSingleFilePackage=true
| pharring/ApplicationInsights-dotnet | WEB/buildReleaseFull.cmd | bat | mit | 603 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASCMD.S14_Search.MSASCMD_S14_TC26_Search_GAL_Status173 /testcontainer:..\..\MS-ASCMD\TestSuite\bin\Debug\MS-ASCMD_TestSuite.dll /runconfig:..\..\MS-ASCMD\MS-ASCMD.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeActiveSync/Source/Scripts/MS-ASCMD/RunMSASCMD_S14_TC26_Search_GAL_Status173.cmd | bat | mit | 283 |
bcc32 -S -v- -R- -6 -a4 -O2 -Og -Oi -Ov -OS -k- -D__MENUET__ -Iinclude life2.cpp
echo include "me_make.inc" > f_life2.asm
t2fasm < life2.asm >> f_life2.asm | devlato/kolibrios-llvm | programs/demos/life2/cpp2asm.bat | bat | mit | 155 |
call android.bat update project -p . -t android-23
| martty/Vulkan | android/_setup.bat | bat | mit | 51 |
java -jar build\\SwingOSC.jar -u 57111 -L -h 127.0.0.1:57120
| kn1kn1/overtone-workspace | scbook/code/Ch 10 SwingOSC/SwingOSC/SwingOSC_UDP.bat | bat | epl-1.0 | 61 |
cmd_drivers/power/built-in.o := arm-linux-gnueabihf-ld -EL -r -o drivers/power/built-in.o drivers/power/power_supply.o drivers/power/rk29_charger_display.o
| Dee-UK/D33_KK_Kernel | drivers/power/.built-in.o.cmd | bat | gpl-2.0 | 161 |
set CONFIG="C:\Projects\spark-mongodb-connector\src\config"
set MONGOBIN="c:\Program Files\MongoDB 2.6 Standard\bin"
set DBROOT="c:\mongoinst\data"
%MONGOBIN%\mongod.exe --config %CONFIG%\config1.cfg | shotishu/spark-mongodb-connector | src/scripts/run_config1.bat | bat | apache-2.0 | 202 |
setlocal EnableDelayedExpansion
if %ARCH% equ 64 (set SDKPLATFORM=x64) else (set SDKPLATFORM=x86)
call "C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\SetEnv.Cmd" /Release /%SDKPLATFORM%
if %ARCH% equ 64 (set PLATFORM=x64) else (set PLATFORM=win32)
cd %SRC_DIR%\lib
lib /def:libbiosig2.def
copy %SRC_DIR%\lib\libbiosig2.lib %LIBRARY_LIB%\
copy %SRC_DIR%\lib\libbiosig2.dll %LIBRARY_BIN%\
xcopy %SRC_DIR%\include\*.h %LIBRARY_INC%\
| JoseGuzman/stimfit | dist/conda/biosig/bld.bat | bat | gpl-2.0 | 435 |
@echo off
cls
.paket\paket.bootstrapper.exe
if errorlevel 1 (
exit /b %errorlevel%
)
.paket\paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)
.\packages\FAKE\tools\Fake %* | nausley/commandline | build.cmd | bat | mit | 202 |
"E:\Program Files\Unity\Editor\Unity.exe" -quit -batchmode -nographics -nolog -buildWindowsPlayer Builds\clients\windows\client.exe
"E:\Program Files\Unity\Editor\Unity.exe" -quit -batchmode -nographics -nolog -buildOSXUniversalPlayer Builds\clients\osx\client
"E:\Program Files\Unity\Editor\Unity.exe" -quit -batchmode -nographics -nolog -executeMethod BuildServer.PerformBuild
"E:\Program Files\Unity\Editor\Unity.exe" -quit -batchmode -nographics -nolog -buildLinuxUniversalPlayer Builds\clients\linux\client | krille90/unitystation | UnityProject/WINbuild.bat | bat | agpl-3.0 | 511 |
@ECHO OFF
@::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@:: THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY ::
@:: Read the zproject/README.md for information about making permanent changes. ::
@::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Usage: build.bat [Clean]
@setlocal
:: make sure our directory is correct for building
@pushd %~dp0%
:: supports passing in Clean as third argument if "make clean" behavior is desired
SET action=Building
SET target=%1
if NOT "%target%" == "" set target=/t:%target%&set action=Cleaning
SET solution=malamute.sln
SET version=10
SET log=build.log
SET tools=Microsoft Visual Studio %version%.0\VC\vcvarsall.bat
SET environment="%programfiles(x86)%\%tools%"
IF NOT EXIST %environment% SET environment="%programfiles%\%tools%"
IF NOT EXIST %environment% GOTO no_tools
SET packages=
IF EXIST "..\..\..\..\libzmq\builds/msvc/vs2010\libzmq.import.props" (
COPY /Y "..\..\..\..\libzmq\builds/msvc/vs2010\libzmq.import.props" . > %log%
IF errorlevel 1 GOTO error
) ELSE (
ECHO Did not find libzmq, aborting.
ECHO Please clone from https://github.com/zeromq/libzmq, and then build.
GOTO error
)
IF EXIST "..\..\..\..\czmq\builds/msvc/vs2010\czmq.import.props" (
COPY /Y "..\..\..\..\czmq\builds/msvc/vs2010\czmq.import.props" . > %log%
IF errorlevel 1 GOTO error
) ELSE (
ECHO Did not find czmq, aborting.
ECHO Please clone from https://github.com/zeromq/czmq, and then build.
GOTO error
)
ECHO %action% Malamute... (%packages%)
:: save original path
@set oldpath=%PATH%
:: set correct environment for build target
CALL %environment% x86 >> %log%
ECHO Platform=x86
ECHO Configuration=DynDebug
msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=DynRelease
msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=LtcgDebug
msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=LtcgRelease
msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=StaticDebug
msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=StaticRelease
msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
:: restore original path
@set PATH=%oldpath%
:: set correct environment for build target
CALL %environment% x86_amd64 >> %log%
ECHO Platform=x64
ECHO Configuration=DynDebug
msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=DynRelease
msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=x64 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=LtcgDebug
msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=x64 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=LtcgRelease
msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=x64 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=StaticDebug
msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=x64 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO Configuration=StaticRelease
msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=x64 %packages% %solution% %target% >> %log%
IF errorlevel 1 GOTO error
ECHO %action% complete: %packages% %solution%
GOTO end
:error
ECHO *** ERROR, build terminated early: see %log%
GOTO end
:no_tools
ECHO *** ERROR, build tools not found: %tools%
:end
:: restore original path
if NOT "%oldpath%" == "" @set PATH=%oldpath%
popd
@endlocal
| zeromq/malamute | builds/msvc/vs2010/build.bat | bat | mpl-2.0 | 4,188 |
cd "%RECIPE_DIR%\.."
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
| karanjeets/nutchpy | conda.recipe/bld.bat | bat | apache-2.0 | 74 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\autoprefixer\bin\autoprefixer" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\autoprefixer\bin\autoprefixer" %*
) | maxlyre/leasyluxe | node_modules/gulp-autoprefixer/node_modules/.bin/autoprefixer.cmd | bat | mit | 200 |
@ECHO OFF
SET BIN_TARGET=%~dp0/../zendframework/zendframework/bin/templatemap_generator.php
php "%BIN_TARGET%" %*
| arvindjha304/aadinathportal | vendor/bin/templatemap_generator.php.bat | bat | bsd-3-clause | 117 |
git clone git://github.com/zeromq/czmq.git
::cd czmq\builds\msvc
::configure.bat --without-zmakecert --disable-drafts --without-zsp --without-czmq_selftest
cd czmq\builds\msvc\vs2015
call build.bat
cd ..\..\..\..
pause | tsky1971/UEZeroMQPlugin | Plugins/UEZeroMQPlugin/Source/ThirdParty/build_libczmq.bat | bat | mit | 224 |
@echo off
echo.
echo Closing OneDrive process...
taskkill /f /im OneDrive.exe
timeout /t 5 /nobreak > NUL
echo.
echo Uninstalling OneDrive...
set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"
set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"
if exist %x86% %x86% /uninstall
if exist %x64% %x64% /uninstall
timeout /t 5 /nobreak > NUL
echo.
echo Removing OneDrive leftovers...
rd "%USERPROFILE%\OneDrive" /Q /S
rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S
rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S
rd "C:\OneDriveTemp" /Q /S
echo.
echo Removing OneDrive from the Explorer Side Panel...
reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
echo.
pause
| Arkq/dotfiles | windows/Win10-disable-onedrive.bat | bat | mit | 777 |
test_dataserver.exe --export_in input.csv --export_out export.sql --export_source source_mdf --export_dest dest_mdf | Totopolis/dataserver | test_scripts/export/export.bat | bat | mit | 115 |
@echo off
cd bazel-bin\test_main
start test_main.exe --rgp --vulkan
cd ..
cd .. | jgavert/Faze | runVulkan_RGP.bat | bat | mit | 79 |
@echo off
pushd x64-Debug
start embed-glsl.exe
popd
| darkedge/embed-glsl | vs/run.bat | bat | mit | 52 |
@echo off
cd bin
neko HStat.n
pause
| sciencePowerApp/HStat | Run.bat | bat | mit | 36 |
doxygen Doxyfile
xcopy theme html /s /i /y
copy ..\Assets\icon64.png html\icon64.png
: uEUÉ\¦·é
:CommonManual\html\index.html
| lriki/Lumino | docs/Doxygen/build_doc.bat | bat | mit | 147 |
cls
::"c:\Program Files\IIS Express\iisexpress.exe" /config:E:\Websites\testing.casperjs.presentation.vscode.50.Mins\Casper.Mvc\.vs\config\applicationhost.config /siteid:1
::"c:\Program Files\IIS Express\iisexpress.exe" /config:D:\projects\testing.casperjs.presentation.vscode.50Mins\Casper.Mvc\.vs\config\applicationhost.config /siteid:1
"c:\Program Files\IIS Express\iisexpress.exe" /config:d:\Projects\Presentations\testing.casperjs.presentation.vscode.50.Mins\Casper.Mvc\.vs\config\applicationhost.config /siteid:2
| rippo/testing.casperjs.presentation.vscode.50mins | iis.bat | bat | mit | 519 |
@echo off
echo python ..\manage.py runserver --settings=legendary.settings.dev
exit /B | DaveHynek/LegendaryOnline | scripts/runserver.bat | bat | mit | 86 |
cmd_net/ipv6/netfilter/ip6t_eui64.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/ipv6/netfilter/ip6t_eui64.ko net/ipv6/netfilter/ip6t_eui64.o net/ipv6/netfilter/ip6t_eui64.mod.o
| avareldalton85/rpi2-linux-rt | net/ipv6/netfilter/.ip6t_eui64.ko.cmd | bat | gpl-2.0 | 287 |
cmd_drivers/media/dvb-frontends/s5h1409.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/dvb-frontends/s5h1409.ko drivers/media/dvb-frontends/s5h1409.o drivers/media/dvb-frontends/s5h1409.mod.o
| avareldalton85/rpi2-linux-rt | drivers/media/dvb-frontends/.s5h1409.ko.cmd | bat | gpl-2.0 | 311 |
cmd_sound/pci/ali5451/built-in.o := rm -f sound/pci/ali5451/built-in.o; /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-ar rcsD sound/pci/ali5451/built-in.o
| evan6200/cirrfy_pos | sound/pci/ali5451/.built-in.o.cmd | bat | gpl-2.0 | 220 |
:: -*- coding: utf-8 -*-
:: Launch this script using the following command:
:: ./examples/khaling/run_khaling.bat
:: Results are available under examples/khaling/result/ folder.
:: LaTeX file is generated with sound records and with cross references
:: python examples/khaling/run_khaling.py
:: LaTeX file is generated without sound records and with cross references
::python examples/khaling/run_khaling.py -a
:: LaTeX file is generated with sound records and without cross references
::python examples/khaling/run_khaling.py -c
:: LaTeX file is generated without sound records and without cross references
python examples/khaling/run_khaling.py -a -c
:: Generate PDF: add xelatex binary location to your PATH environment variable
xelatex.exe -output-directory=examples/khaling/result/ examples/khaling/result/dictionary.tex --halt-on-error=N
xelatex.exe -output-directory=examples/khaling/result/ examples/khaling/result/dictionary.tex --halt-on-error=N
| buret/pylmflib | examples/khaling/run_khaling.bat | bat | gpl-2.0 | 963 |
@echo off
title Instalando Jars de Servicios siderQa
SETLOCAL
SET AWPROFILE=siderProd
SET DIR_MAIN=\\192.168.1.100\c\services-suministros
SET DIR_BIN=%DIR_MAIN%\bin
SET DIR_CONF=%DIR_MAIN%\conf
SET DIR_LIB=%DIR_MAIN%\lib
SET DIR_MAIN_A_COPIAR=\target\suministros-cron.dir
SET DIR_A_COPIAR_BIN=%DIR_MAIN_A_COPIAR%\bin
SET DIR_A_COPIAR_CONF=%DIR_MAIN_A_COPIAR%\conf
SET DIR_A_COPIAR_LIB=%DIR_MAIN_A_COPIAR%\lib
call servicesMvn.bat
pause | AlanGuerraQuispe/SisAtuxPerfumeria | atux-dist/cron/dist-service-siderProd.bat | bat | gpl-2.0 | 443 |
textureatlas.exe -I "images" --width 256 --height 256 -O out -P tex
xcopy /hrkysd out\tex_0.* ..\bin\64\Debug\overlay_atlas.*
xcopy /hrkysd out\tex_0.* ..\bin\64\Release\overlay_atlas.*
xcopy /hrkysd out\tex_0.* ..\bin\32\Debug\overlay_atlas.*
xcopy /hrkysd out\tex_0.* ..\bin\32\Release\overlay_atlas.*
xcopy /hrkysd out\tex_0.* ..\resource\overlay_atlas.*
| Falgern/ACTWebSocketOverlay | textures/gen_atlas.bat | bat | gpl-3.0 | 359 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=sheetparser
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| gcoffin/sheetparser | docs/make.bat | bat | gpl-3.0 | 779 |
@echo off
rem T_TF_WS with TF_DLL compile batch file for (most) console compilers
rem pause after each compiler if %1 not empty
rem call self on low env space condition
rem (c) 2003-2009 W.Ehrhardt
if exist TF_dll.dll goto dll_found
echo TF_DLL.DLL not found
goto ende
:dll_found
set SRC=T_TF_WS
rem log file (may be con or nul)
rem ============================
::set LOG=nul
set LOG=%SRC%.LOD
rem parameters for test file
rem ========================
set PARA=test
rem test whether enough space in environment
rem =========================================
set PCB=A_rather_long_environment_string_for_testing
if (%PCB%)==(A_rather_long_environment_string_for_testing) goto OK
rem call self with 4096 byte env
rem ============================
set PCB=
%COMSPEC% /E:4096 /C %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
goto ende
:OK
echo Test %SRC% for all win32 compilers >%LOG%
ver >>%LOG%
set PCB=call fpc2 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc22 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc222 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc224 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc240 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc242 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc244 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc260 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc262 -B -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call vpc -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M2\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M3\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M4\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M5\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M6\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M7\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M9\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M10\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M12\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M17\DCC32.EXE -b -dUSEDLL
del %SRC%.exe >nul
%PCB% %SRC%.pas
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
echo **** Log file: %LOG%
:ende
set PCB=
set SRC=
set LOG=
set PARA=
| compvid30/strongcrypt-fe | lib/tf/#ca_dll.bat | bat | gpl-3.0 | 4,220 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\yggdrasil.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\yggdrasil.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| Moguri/yggdrasil | docs/make.bat | bat | apache-2.0 | 6,465 |
start rmiregistry -J-Djava.rmi.server.useCodebaseOnly=false | JAT91011/IBO-server | registry.bat | bat | apache-2.0 | 59 |
@echo off
@setlocal ENABLEDELAYEDEXPANSION
rem Application startup script $Rev: 586 $
if "%1" == "-vm" goto setVmArg
call :setJavaHome "%JAVA_HOME%"
:checkJavaExec
set JAVA="%JAVA_HOME%\bin\javaw.exe"
if exist %JAVA% goto setClassPath
echo Missing %JAVA% application
goto end
:setClassPath
set MYDIR=%~dp0
set CLASSPATH=
rem accumulate any JAR found in "lib" or "bin" sub-folder(s)
for %%l in ("%MYDIR%\lib\*.jar") do set CLASSPATH=!CLASSPATH!;"%%l"
for %%b in ("%MYDIR%\bin\*.jar") do set CLASSPATH=!CLASSPATH!;"%%b"
rem slurp the command line arguments. This loop allows for an unlimited number
rem of arguments (up to the command line limit, anyway).
set SVNSYNC_CMD_LINE_ARG=
:slurpArgs
if {%1} == {} goto doneStart
set SVNSYNC_CMD_LINE_ARG=%SVNSYNC_CMD_LINE_ARG% %~1
shift
goto slurpArgs
:doneStart
rem invoke the GUI
start "svnsync" /I /B %JAVA% -classpath %CLASSPATH% net.community.apps.tools.svn.svnsync.Main %SVNSYNC_CMD_LINE_ARG%
:end
@endlocal
goto :EOF
:noArgOption
echo Missing %1 option argument
goto end
:setJavaHome
set JAVA_HOME=%~1
goto :EOF
:setAntHome
set ANT_HOME=%~1
goto :EOF | lgoldstein/communitychest | apps/tools/svnkit/svnsync/src/main/assembly/svnsync.bat | bat | apache-2.0 | 1,132 |
@echo off
rem #------------------------------------------------------------------------------
rem # Copyright 2014 Esri
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 # Name: InstallOpsServer.bat
rem #
rem # Purpose: This is the main Ops Server installation script.
rem #
rem #==============================================================================
title Operations Server Installer
REM ---------------------------------------------------------------------
REM Set user specified variables
REM ---------------------------------------------------------------------
Call InstallSettings.bat
REM ---------------------------------------------------------------------
REM Set other variables
REM ---------------------------------------------------------------------
set ops_AGSVersion=10.4
set ops_PortalVersion=10.4
REM Define ArcGIS Data Store Path
REM NOTE: must have "\" at end of path
set ops_agsDataStoreDIR=C:\arcgisdatastore\
REM Define PostgreSQL paths
set ops_postgresqlInstallDIR=C:\PostgreSQL\9.3
set ops_postgresqlDataDIR=%ops_postgresqlInstallDIR%\data
REM Define path to Esri SoftwareAuthorization.exe
set ops_softwareAuthExePath="C:\Program Files\Common Files\ArcGIS\bin\SoftwareAuthorization.exe"
REM Define path to ConfigureWebAdaptor.exe
set ops_ConfWebAdaptorExePath="C:\Program Files (x86)\Common Files\ArcGIS\WebAdaptor\IIS\Tools\ConfigureWebAdaptor.exe"
REM ---------------------------------------------------------------------
REM Set the names of ArcGIS Server Web Adaptor and Portal for ArcGIS Web Adaptor
set ops_WebAdaptor_AGS=ags
set ops_WebAdaptor_Portal=arcgis
set sectionBreak===================================================================================
set ops_tempInstallDir=C:\OpsServerInstallTemp
cls
REM ---------------------------------------------------------------------
REM Check if command prompt is running in elevated permissions mode
REM (i.e. "run as administrator)
REM ---------------------------------------------------------------------
echo.
echo --Checking if Windows Command window is running as administrator
echo by querying LOCAL SERVICE user registry entries...
echo.
reg query HKU\S-1-5-19
if "%ERRORLEVEL%"=="1" (
echo.
echo **********************************************************
echo ** ERROR:
echo ** You are _NOT_ running Windows Command window
echo ** in elevated administrator mode ^(i.e., the CMD.exe
echo ** must be "Run as administrator"^).
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
)
cls
REM ---------------------------------------------------------------------
REM Check if user "installed" configuration script in correct location
REM ---------------------------------------------------------------------
echo.
echo --Checking if installation scripts are installed in the correct location...
set ops_ScriptRootName=ops-server-config
set ops_ScriptRoot=C:\%ops_ScriptRootName%\
echo %~dp0 | find /I "%ops_ScriptRoot%"
if "%ERRORLEVEL%"=="1" (
echo.
echo **********************************************************
echo ** ERROR:
echo ** The '%ops_ScriptRootName%' folder is not installed in
echo ** the correct location. It should be located at:
echo ** %ops_ScriptRoot%
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
)
cls
REM ---------------------------------------------------------------------
REM Check if Software Root path exists and you have access to the folder
REM ---------------------------------------------------------------------
echo.
echo --Checking if specified software root path '%ops_softwareRoot%' exists...
if not exist %ops_softwareRoot% (
echo.
echo **********************************************************
echo ** ERROR:
echo ** The software root path ^(variable 'ops_softwareRoot'^)
echo ** '%ops_softwareRoot%'
echo ** you have specified does not exist or your account does
echo ** not have access to this location.
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
)
cls
echo.
echo --Checking if you have access to the software root path '%ops_softwareRoot%'...
dir %ops_softwareRoot%
if "%ERRORLEVEL%"=="1" (
echo.
echo **********************************************************
echo ** ERROR:
echo ** Your account does not have access to the sofware root
echo ** folder path '%ops_ScriptRoot%'
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
)
cls
REM ---------------------------------------------------------------------
REM Check software dependencies
REM ---------------------------------------------------------------------
REM Always call SetOverallErrorLevel.bat after running one of the "check"
REM batch files under the "Checks" folder.
REM Set error "flag" to initial "good" value of zero.
set ops_OverallErrLvl=0
REM Check if IIS is running/installed.
Call %~dp0..\SupportFiles\BatchFiles\Checks\IsInstalled_IIS.bat
Call %~dp0..\SupportFiles\BatchFiles\SetOverallErrorLevel.bat %ops_CheckErrLvl%
REM Check if .NET 3.5 is installed.
Call %~dp0..\SupportFiles\BatchFiles\Checks\IsInstalled_NETFramework3_5.bat
Call %~dp0..\SupportFiles\BatchFiles\SetOverallErrorLevel.bat %ops_CheckErrLvl%
REM Check if .NET 4.5 is installed
Call %~dp0..\SupportFiles\BatchFiles\Checks\IsInstalled_NETFramework4_5.bat
Call %~dp0..\SupportFiles\BatchFiles\SetOverallErrorLevel.bat %ops_CheckErrLvl%
REM Pause script execution if dependencies are not met.
Call %~dp0..\SupportFiles\BatchFiles\CheckErrorLevel.bat %ops_OverallErrLvl%
REM Clear screen
cls
:start
REM ---------------------------------------------------------------------
REM Start Block
REM ---------------------------------------------------------------------
echo *************************************************************************
echo * Operations Server Installation *
echo *************************************************************************
echo.
echo 1. Install
echo.
echo 0. Quit
echo.
set /p choice="Enter the number of your choice: "
if "%choice%"=="1" (
set opsServerInstallType=Install
REM was having problems with the IIS check on some systems;
REM for now, set variable to "NO" so that it does not run
REM the check. Not critical to run the check, since we do tell
REM users that they have to uninstall IIS if it is already installed.
set ops_Check_IIS_Existence=NO
set ops_Check_DriveExistence=YES
goto ValidationBeforeExecution
)
if "%choice%"=="0" exit
echo Invalid choice: %choice%
echo.
pause
cls
goto start
:ValidationBeforeExecution
REM ---------------------------------------------------------------------
REM Validate before executing the rest of the installation process
REM ---------------------------------------------------------------------
REM -------------------------------------------
REM Check if IIS is running
REM -------------------------------------------
if "%ops_Check_IIS_Existence%"=="YES" (
REM ERRORLEVEL values when using the following "sc query" statement...
REM If IIS service exists and is running: 0
REM If IIS service exists and is stopped: 1
REM If IIS service does not exist : 1
echo.
echo.
echo --Checking if IIS Web Server is running on this machine...
echo.
sc query W3SVC | find "RUNNING"
if "%ERRORLEVEL%"=="0" (
echo.
echo **********************************************************
echo ** ERROR:
echo ** You have choosen to install Portal on a machine where
echo ** IIS Web Server is also running. Please stop the IIS service
echo ** ^(i.e. World Wide Web Publishing Service^) and set the startup
echo ** type to "Manual", or uninstall IIS Web Server.
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
)
echo IIS Web Server is not running or is not installed.
echo.
)
REM -------------------------------------------
REM Check drives specified in cache and data
REM drive variables exist.
REM -------------------------------------------
if "%ops_Check_DriveExistence%"=="YES" (
REM More info about using 'EXIST' command to determine drive
REM existance can be found at: http://support.microsoft.com/kb/65994.
REM An alternate choice to determine drive existance is to use:
REM WMIC logicaldisk get name | find /I "%ops_cacheDrive%:"
REM Then check immediately afterward if "%ERRORLEVEL%"=="1",
REM which means drive letter does not exist.
echo.
echo --Checking if specified cache drive '%ops_cacheDrive%' exists...
if not exist %ops_cacheDrive%:\NUL (
echo.
echo **********************************************************
echo ** ERROR:
echo ** The cache drive you have specified '%ops_cacheDrive%'
echo ** does not exist. Either the 'ops_cacheDrive' variable in
echo ** the InstallOpsServer.bat file is set to an incorrect
echo ** drive letter or the drive is not mounted.
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
) else (
echo Cache drive '%ops_cacheDrive%' exists.
)
echo.
echo --Checking if specified data drive '%ops_dataDrive%' exists...
if not exist %ops_dataDrive%:\NUL (
echo.
echo **********************************************************
echo ** ERROR:
echo ** The data drive you have specified '%ops_dataDrive%'
echo ** does not exist. Either the 'ops_dataDrive' variable in
echo ** the InstallOpsServer.bat file is set to an incorrect
echo ** drive letter or the drive is not mounted.
echo ** Exiting InstallOpsServer.bat.
echo **********************************************************
echo.
goto end
) else (
echo Data drive '%ops_dataDrive%' exists.
)
)
if "%opsServerInstallType%"=="Install" goto Install
:Install
REM ---------------------------------------------------------------------
REM Install Software
REM ---------------------------------------------------------------------
echo.
echo Installation of Ops Server starting...
date /T
time /T
echo.
REM Install RDBMS
if "%ops_install_rdbms%"=="YES" (
Call %~dp0PostgreSQL\InstallPostgreSQL.bat
)
REM Install ArcGIS Server
if "%ops_install_server%"=="YES" (
Call %~dp0ArcGISServer\InstallArcGISServer.bat
)
REM Create ArcGIS Server site and data stores
if "%ops_create_ags_site%"=="YES" (
Call %~dp0ArcGISServer\CreateArcGISServerSite.bat
)
REM Install Web Adaptor
if "%ops_install_webadaptor%"=="YES" (
Call %~dp0WebAdaptorIIS\InstallWebAdaptor.bat
)
REM Change ArcGIS security configuration
if "%ops_change_ags_security%"=="YES" (
Call %~dp0ArcGISServer\SupportFiles\ChangeAGSSecurityConfig.bat
)
REM Register ArcGIS Server with the web adaptor as HTTPS
if "%ops_register_ags_https%"=="YES" (
Call %~dp0WebAdaptorIIS\RegisterAGSwithWebAdaptorHTTPS.bat
)
REM Install ArcGIS Data Store
if "%ops_install_ags_datastore%"=="YES" (
Call %~dp0ArcGISDataStore\InstallAGSDataStore.bat
)
REM Create ArcGIS Data Store
if "%ops_create_ags_datastore%"=="YES" (
Call %~dp0ArcGISDataStore\SupportFiles\CreateAGSDataStore.bat
)
REM Install Message Simulator - Copy Message Simulator files and
REM create a Windows Scheduled Task
if "%ops_install_message_simulator%"=="YES" (
Call %~dp0MessageSimulator\InstallMessageSimulator.bat
)
REM Install Portal Related Software
if "%ops_install_portal%"=="YES" (
Call %~dp0Portal\InstallPortal.bat
)
REM Install Esri Maps for Office Web Content
if "%ops_install_em4o_webcontent%"=="YES" (
Call %~dp0EsriMapsForOffice\WebContent\InstallEM4OWebContent.bat
)
REM Create Operations Dashboard ClickOnce Application and deploy to portal folders
if "%ops_create_opsdashboard_installer%"=="YES" (
Call %~dp0OpsDashboardUtility\CreateOneClickInstaller.bat
)
REM Create the portal primary administrator account
if "%ops_create_portal_admin_account%"=="YES" (
Call %~dp0Portal\Portal\CreatePortalAdminAccount.bat
)
REM Register portal with the webadaptor
if "%ops_register_portal%"=="YES" (
Call %~dp0WebAdaptorIIS\RegisterPortalwithWebAdaptor.bat
)
REM Federate ArcGIS Server site with portal, set hosted server,
REM set SSL properties, and reset Utility service URLs
if "%ops_federate_ags%"=="YES" (
Call %~dp0ArcGISServer\SupportFiles\FederateAGS.bat
)
REM Install ArcGIS GeoEvent Extension for ArcGIS Server
if "%ops_install_geoevent%"=="YES" (
Call %~dp0GeoEvent\InstallGeoEvent.bat
)
REM Install Geoevent Extension for ArcGIS Server Patches
if "%ops_install_geoevent_patches%"=="YES" (
Call %~dp0GeoEvent\InstallGeoEventPatches.bat
)
REM Install Predictive Analysis Web Services
if "%ops_install_predictive_analysis%"=="YES" (
Call %~dp0PredictiveAnalysis\InstallPredictiveAnalysis.bat
)
goto end
:end
REM ---------------------------------------------------------------------
REM End Block
REM ---------------------------------------------------------------------
echo.
echo.
echo %sectionBreak%
echo Clean Up...
REM ------------------------------------------
REM Remove temp install folder
REM ------------------------------------------
echo.
echo Removing temp OpsServer install folder if exists...
IF EXIST %ops_tempInstallDir% (
rmdir /S /Q %ops_tempInstallDir%
)
echo.
echo.
echo Execution of InstallOpsServer.bat script completed.
date /T
time /T
echo.
pause
REM exit | Esri/ops-server-config | Install/InstallOpsServer.bat | bat | apache-2.0 | 14,599 |
@ECHO OFF
java -Daktin.broker.password=CHANGEME -Djava.util.logging.config.file=logging.properties -cp lib\* org.aktin.broker.admin.standalone.HttpServer 8080
| aktin/broker | broker-admin-dist/src/main/scripts/run_broker.bat | bat | apache-2.0 | 160 |
@echo off
call "Build.cmd" Debug Q16 x64 | dlemstra/Magick.NET | src/Magick.Native/build/Debug-Q16-x64.cmd | bat | apache-2.0 | 40 |
mingw32-g++ -mwindows -mconsole -o TestXML.exe TestXML.o c:/xmlsoft_distro/lib/libxml2.lib c:/xmlsoft_distro/lib/zlib.lib c:/xmlsoft_distro/lib/iconv.lib -Wl,--start-group -Wl,--end-group
| dreamsxin/ultimatepp | uppdev/TestXML/vasilis.bat | bat | bsd-2-clause | 192 |
@ccp4-python %CCP4%\lib\py2\simbad\command_line\simbad_full.py %*
| rigdenlab/SIMBAD | bin/simbad-full.bat | bat | bsd-3-clause | 66 |
echo 'has compiled'
pause | bgarrels/Coedit | lazproj/test/coeditproj/post.bat | bat | mit | 25 |
cmd_drivers/media/built-in.o := /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-ld.bfd -EL -r -o drivers/media/built-in.o drivers/media/common/built-in.o drivers/media/rc/built-in.o drivers/media/video/built-in.o drivers/media/radio/built-in.o
| EPDCenter/android_kernel_archos_97_titan | drivers/media/.built-in.o.cmd | bat | gpl-2.0 | 330 |
setMode -bs
setCable -port auto
identify
identifyMPM
setAttribute -position 3 -attr configFileName -value "implementation/download.bit"
program -p 3
quit
| Lindem-Data-Acquisition-AS/TM4C129-discontinued | libraries/FreeRTOSv8.0.1/FreeRTOS/Demo/MicroBlaze/_impact.cmd | bat | gpl-2.0 | 155 |
@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\django-windows-tools.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-windows-tools.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
| abide/django-windows-tools | docs/make.bat | bat | bsd-2-clause | 5,124 |
@if not defined _echo @echo off
setlocal
set INIT_TOOLS_LOG=%~dp0init-tools.log
set PACKAGES_DIR=%~dp0packages\
set TOOLRUNTIME_DIR=%~dp0Tools
set DOTNET_PATH=%TOOLRUNTIME_DIR%\dotnetcli\
set DOTNET_CMD=%DOTNET_PATH%dotnet.exe
if [%BUILDTOOLS_SOURCE%]==[] set BUILDTOOLS_SOURCE=https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json
set /P BUILDTOOLS_VERSION=< "%~dp0BuildToolsVersion.txt"
set BUILD_TOOLS_PATH=%PACKAGES_DIR%Microsoft.DotNet.BuildTools\%BUILDTOOLS_VERSION%\lib\
set PROJECT_JSON_PATH=%TOOLRUNTIME_DIR%\%BUILDTOOLS_VERSION%
set PROJECT_JSON_FILE=%PROJECT_JSON_PATH%\project.json
set PROJECT_JSON_CONTENTS={ "dependencies": { "Microsoft.DotNet.BuildTools": "%BUILDTOOLS_VERSION%" , "Microsoft.DotNet.BuildTools.Coreclr": "1.0.4-prerelease"}, "frameworks": { "dnxcore50": { } } }
set BUILD_TOOLS_SEMAPHORE=%PROJECT_JSON_PATH%\init-tools.completed0
set TOOLS_INIT_RETURN_CODE=0
:: if force option is specified then clean the tool runtime and build tools package directory to force it to get recreated
if [%1]==[force] (
if exist "%TOOLRUNTIME_DIR%" rmdir /S /Q "%TOOLRUNTIME_DIR%"
if exist "%PACKAGES_DIR%Microsoft.DotNet.BuildTools" rmdir /S /Q "%PACKAGES_DIR%Microsoft.DotNet.BuildTools"
)
:: If sempahore exists do nothing
if exist "%BUILD_TOOLS_SEMAPHORE%" (
echo Tools are already initialized.
goto :DONE
)
if exist "%TOOLRUNTIME_DIR%" rmdir /S /Q "%TOOLRUNTIME_DIR%"
:: Download Nuget.exe
if NOT exist "%PACKAGES_DIR%NuGet.exe" (
if NOT exist "%PACKAGES_DIR%" mkdir "%PACKAGES_DIR%"
powershell -NoProfile -ExecutionPolicy unrestricted -Command "(New-Object Net.WebClient).DownloadFile('https://www.nuget.org/nuget.exe', '%PACKAGES_DIR%NuGet.exe')
)
if NOT exist "%PROJECT_JSON_PATH%" mkdir "%PROJECT_JSON_PATH%"
echo %PROJECT_JSON_CONTENTS% > "%PROJECT_JSON_FILE%"
echo Running %0 > "%INIT_TOOLS_LOG%"
set /p DOTNET_VERSION=< "%~dp0DotnetCLIVersion.txt"
if exist "%DOTNET_CMD%" goto :afterdotnetrestore
echo Installing dotnet cli...
if NOT exist "%DOTNET_PATH%" mkdir "%DOTNET_PATH%"
if [%PROCESSOR_ARCHITECTURE%]==[x86] (set DOTNET_ZIP_NAME=dotnet-dev-win-x86.%DOTNET_VERSION%.zip) else (set DOTNET_ZIP_NAME=dotnet-dev-win-x64.%DOTNET_VERSION%.zip)
set DOTNET_REMOTE_PATH=https://dotnetcli.blob.core.windows.net/dotnet/Sdk/%DOTNET_VERSION%/%DOTNET_ZIP_NAME%
set DOTNET_LOCAL_PATH=%DOTNET_PATH%%DOTNET_ZIP_NAME%
echo Installing '%DOTNET_REMOTE_PATH%' to '%DOTNET_LOCAL_PATH%' >> "%INIT_TOOLS_LOG%"
powershell -NoProfile -ExecutionPolicy unrestricted -Command "$retryCount = 0; $success = $false; do { try { (New-Object Net.WebClient).DownloadFile('%DOTNET_REMOTE_PATH%', '%DOTNET_LOCAL_PATH%'); $success = $true; } catch { if ($retryCount -ge 6) { throw; } else { $retryCount++; Start-Sleep -Seconds (5 * $retryCount); } } } while ($success -eq $false); Add-Type -Assembly 'System.IO.Compression.FileSystem' -ErrorVariable AddTypeErrors; if ($AddTypeErrors.Count -eq 0) { [System.IO.Compression.ZipFile]::ExtractToDirectory('%DOTNET_LOCAL_PATH%', '%DOTNET_PATH%') } else { (New-Object -com shell.application).namespace('%DOTNET_PATH%').CopyHere((new-object -com shell.application).namespace('%DOTNET_LOCAL_PATH%').Items(),16) }" >> "%INIT_TOOLS_LOG%"
if NOT exist "%DOTNET_LOCAL_PATH%" (
echo ERROR: Could not install dotnet cli correctly. See '%INIT_TOOLS_LOG%' for more details.
set TOOLS_INIT_RETURN_CODE=1
goto :DONE
)
:afterdotnetrestore
if exist "%BUILD_TOOLS_PATH%" goto :afterbuildtoolsrestore
echo Restoring BuildTools version %BUILDTOOLS_VERSION%...
echo Running: "%DOTNET_CMD%" restore "%PROJECT_JSON_FILE%" --packages "%PACKAGES_DIR% " --source "%BUILDTOOLS_SOURCE%" >> "%INIT_TOOLS_LOG%"
call "%DOTNET_CMD%" restore "%PROJECT_JSON_FILE%" --packages "%PACKAGES_DIR% " --source "%BUILDTOOLS_SOURCE%" >> "%INIT_TOOLS_LOG%"
if NOT exist "%BUILD_TOOLS_PATH%init-tools.cmd" (
echo ERROR: Could not restore build tools correctly. See '%INIT_TOOLS_LOG%' for more details.
set TOOLS_INIT_RETURN_CODE=1
goto :DONE
)
:afterbuildtoolsrestore
echo Initializing BuildTools ...
echo Running: "%BUILD_TOOLS_PATH%init-tools.cmd" "%~dp0" "%DOTNET_CMD%" "%TOOLRUNTIME_DIR%" >> "%INIT_TOOLS_LOG%"
call "%BUILD_TOOLS_PATH%init-tools.cmd" "%~dp0" "%DOTNET_CMD%" "%TOOLRUNTIME_DIR%" >> "%INIT_TOOLS_LOG%"
echo Updating CLI NuGet Frameworks map...
robocopy "%TOOLRUNTIME_DIR%" "%TOOLRUNTIME_DIR%\dotnetcli\sdk\%DOTNET_VERSION%" NuGet.Frameworks.dll /XO >> "%INIT_TOOLS_LOG%"
set UPDATE_CLI_ERRORLEVEL=%ERRORLEVEL%
if %UPDATE_CLI_ERRORLEVEL% GTR 1 (
echo ERROR: Failed to update Nuget for CLI {Error level %UPDATE_CLI_ERRORLEVEL%}. Please check '%INIT_TOOLS_LOG%' for more details. 1>&2
exit /b %UPDATE_CLI_ERRORLEVEL%
)
:: Create sempahore file
echo Done initializing tools.
echo Init-Tools.cmd completed for BuildTools Version: %BUILDTOOLS_VERSION% > "%BUILD_TOOLS_SEMAPHORE%"
:DONE
exit /b %TOOLS_INIT_RETURN_CODE%
| Dmitry-Me/coreclr | init-tools.cmd | bat | mit | 4,877 |
@echo off
CALL _env.bat
CALL make --file MyMakefile.txt
pause | flake123p/ProjectH | Make/A05_vpath/demo.bat | bat | gpl-3.0 | 64 |
@echo off
call ./set-env.cmd
start %SOLR5_HOME%\bin\solr.cmd start | seu-as-code/seu-as-code.packages | org.apache.lucene/solr/5.2.1/files/start-solr5.bat | bat | apache-2.0 | 67 |
@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\Invenio-OAuth2Server.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Invenio-OAuth2Server.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
| inveniosoftware/invenio-oauth2server | docs/make.bat | bat | mit | 7,009 |
@PUSHD "%~dp0" & "..\..\..\..\launcher.exe" "play-inncnx2.ini" | Kroc/PortaDOOM | PortaDOOM/files/wads/episodes/inncnx/inncnx2/play.bat | bat | mit | 62 |
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" VSGallery.AtomGenerator.sln /p:Configuration=Release
mkdir "%~dp0\Release"
xcopy /Y "%~dp0\VSGallery.AtomGenerator\bin\Release\VSGallery.AtomGenerator.exe" "%~dp0\Release"
pause | garrettpauls/VSGallery.AtomGenerator | build.bat | bat | mit | 231 |
:: CallRegParadigm.bat xmp_file
:: - call RegParadigmXmp.vbs
::
:: Author:
:: Attila Vizhanyo - viza@isis.vanderbilt.edu
::
:: Arguments:
:: 1: xmp_file: GME paradigm file
RegParadigmXmp.vbs %1 | pombredanne/metamorphosys-desktop | metamorphosys/META/externals/HCDDES/autobuild/CallRegParadigm.bat | bat | mit | 202 |
@ECHO OFF
DEL /F /Q "%APPDATA%\ConEmu.xml" 2>NUL
MKLINK "%APPDATA%\ConEmu.xml" "%SETTINGS%\conemu\ConEmu.xml"
| jeremejevs/jeremejevs-website | public/u/settings-conemu.bat | bat | mit | 115 |
DEL C:\temp\hkcu_shh_reg.tmp
reg export HKCU\Software\Hidemaruo\Hidemaru C:\temp\hkcu_shh_reg.tmp
RegExpToText.exe C:\temp\hkcu_shh_reg.tmp 1.txt
| stackprobe/Factory | SubTools/Hidemaru/Test01.bat | bat | mit | 146 |
@ECHO OFF
npm install
pause | AakayNet/anonymg.com | install.bat | bat | mit | 27 |
@echo off
set SolutionName=GrEmit
rem reset current directory to the location of this script
pushd "%~dp0"
if exist "./%SolutionName%/bin" (
rd "./%SolutionName%/bin" /Q /S || exit /b 1
)
dotnet build --force --no-incremental --configuration Release "./%SolutionName%.sln" || exit /b 1
dotnet pack --no-build --configuration Release "./%SolutionName%.sln" || exit /b 1
pause | homuroll/gremit | .rebuild-nuget-package.cmd | bat | mit | 384 |
@echo off
rem Update .ccls project file for ccls LPS and compile_flags.txt for clangd
if "%~1"=="" (
echo missing argument: the location of Qt's include directory
EXIT /B 0
)
set qt_inc=%~1
set qt_inc=%qt_inc:\=\\%
(
echo clang
echo -fcxx-exceptions
echo -std=c++14
echo -Isrc\\core
echo -Isrc
echo -Ilibs\\vtextedit\\src\\editor\\include
echo -Ilibs\\vtitlebar\\src
echo -I%qt_inc%
echo -I%qt_inc%\\QtCore
echo -I%qt_inc%\\QtWebEngineWidgets
echo -I%qt_inc%\\QtSvg
echo -I%qt_inc%\\QtPrintSupport
echo -I%qt_inc%\\QtWidgets
echo -I%qt_inc%\\QtWebEngineCore
echo -I%qt_inc%\\QtGui
echo -I%qt_inc%\\QtWebChannel
echo -I%qt_inc%\\QtNetwork
echo -I%qt_inc%\\QtTest
) > ".ccls"
copy /Y .ccls compile_flags.txt
| tamlok/vnote | scripts/coc_update.cmd | bat | mit | 790 |
java -mx500m -cp "/C:/Users/Compaq 6910p/Documents/R/win-library/3.4/dismo/java/maxent.jar;C:/Users/Compaq 6910p/Documents/R/win-library/3.4/rJava/java/boot;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\dismo.jar;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\maxent.jar" density.Explain -l E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\910881106839\species.lambdas -c E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\910881106839\species.asc E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\910881106839\absence
@if errorlevel 1 pause
| mauriciovancine/enm_r | data/temp/raster/maxent/910881106839/species_explain.bat | bat | mit | 650 |
..\python\python.exe fix_table_id.py
| Southpaw-TACTIC/Team | src/fixes/fix_table_id.bat | bat | epl-1.0 | 40 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.