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
|
---|---|---|---|---|---|
call getrev.cmd
cd zlib
mingw32-make -fwin32\makefile.gcc
cd ..
cd src
lrelease smplayer.pro
qmake DEFINES+=PORTABLE_APP
mingw32-make
| nE0sIghT/smpv | compile_windows_portable.cmd | bat | gpl-2.0 | 146 |
@ECHO OFF
title Simple Extractor
COLOR 0A
CLS
ECHO.
ECHO ______ __ __ __ __ ______ __ ______ ______
ECHO /\ ___\/\ \/ / /\ \_\ \/\ ___/\ \/\ __ \/\ ___\
ECHO \ \___ \ \ _'-\ \____ \ \ __\ \ \ \ \__ \ \ __\
ECHO \/\_____\ \_\ \_\/\_____\ \_\ \ \_\ \_\ \_\ \_____\
ECHO \/_____/\/_/\/_/\/_____/\/_/ \/_/\/_/ /_/\/_____/
ECHO.
ECHO.
ECHO Project SkyFireEmu 2012(c) Open-sourced Game Emulation
ECHO http://www.projectskyfire.org/
ECHO.
ECHO.
ECHO Simple Map/dbc/vmap/mmaps Extraction
ECHO.
ECHO.
PAUSE
CLS
COLOR 4f
ECHO.
ECHO.
ECHO Before Continuing, PLEASE check to ensure your
ECHO.
ECHO Config.wtf and Launcher.wtf are BOTH set at accounttype "CT"
ECHO.
ECHO (They should be located in: "\World of Warcraft\WTF\")
ECHO.
ECHO.
PAUSE
CLS
ECHO.
ECHO.
ECHO Please take this time to copy the file "libmysql.dll" from your
ECHO mysql installation directory to your wow client directory
ECHO (Usually located at: C:\Program Files\MySQL\MySQL Server 5.5\lib\)
ECHO.
ECHO NOTE: It will be C:\Program Files(x86)\ if 32bit MySQL installed on
ECHO 64bit system
ECHO.
ECHO.
PAUSE
CLS
COLOR FC
ECHO.
ECHO.
ECHO ***NOTE***
ECHO This entire process will take anywhere from 4 hours to 20 hours or MORE,
ECHO depending upon the speed of your machine.
ECHO.
ECHO To continue the extraction process, enter 1, else, enter X to exit.
SET /p v= Enter a char:
IF %v%==1 GOTO Extract
IF %v%==x GOTO EXIT
IF %v%==X GOTO EXIT
:Extract
CLS
COLOR 0A
ECHO.
ECHO Now extracting dbcs and maps, please do not exit the program!
ECHO.
RMDIR /s /q .\buildings
RMDIR /s /q .\vmaps
RMDIR /s /q .\maps
RMDIR /s /q .\mmaps
RMDIR /s /q .\dbc
extractor.exe
ECHO.
ECHO Dbcs and maps are finished extracting... Now extracting vmaps...
ECHO.
vmap3extractor.exe
ECHO.
ECHO Vmaps are now extracted... Now assembling vmaps...
ECHO.
MKDIR vmaps
vmap3assembler.exe Buildings vmaps
ECHO.
ECHO.
ECHO Vmaps are now assembled... Now ready to build mmaps...
ECHO.
ECHO.
MKDIR mmaps
MOVE .\buildings\* .\vmaps
mmaps_generator.exe
PAUSE
CLS
ECHO.
ECHO All maps/dbcs/vmaps/mmaps completed!
ECHO.
ECHO You will now need to move the folders dbc, vmaps, maps, and mmaps to your server directory.
ECHO.
ECHO NOTE: It is also a good idea to use the "libmysql.dll" file from your MySQL installation
ECHO directory in your server directory as it will likely work much better with less errors.
ECHO.
ECHO.
PAUSE
:EXIT | Crash911/RaptoredSkyFire | src/tools/mmaps_generator/complete_map_extractor.bat | bat | gpl-3.0 | 2,475 |
@echo off
:-
:- c.bat - Compile ANSI C program (MSVC multiplatform)
:-
:- Copyright (c) 1996-2010 iMatix Corporation
:-
:- This program is free software; you can redistribute it and/or modify
:- it under the terms of the GNU General Public License as published by
:- the Free Software Foundation; either version 2 of the License, or (at
:- your option) any later version.
:-
:- This program is distributed in the hope that it will be useful, but
:- WITHOUT ANY WARRANTY; without even the implied warranty of
:- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
:- General Public License for more details.
:-
:- For information on alternative licensing for OEMs, please contact
:- iMatix Corporation.
:-
:- Start CMD.EXE version detection
verify other 2>nul
setlocal enableextensions
if errorlevel 0 goto __cmd_ok
echo %0: This command requires command extensions version 2 in CMD.EXE.
echo %0: Please use a supported system (Windows 2000 or newer).
exit
:__cmd_ok
setlocal enabledelayedexpansion
:- End CMD.EXE version detection
goto init
:help
echo.
echo C script - iMatix C compile script for Win32
echo.
echo Syntax of script:
echo c filename... Compile ANSI C program(s)
echo c -c filename... (Backwards compatible: compile C programs)
echo c -l main... Compile and link main program(s)
echo c -L main... Link main program(s), no compile
echo c -C Report C compiler command syntax
echo c -r lib file... Replace object file(s) into library
echo -li path Local include path, additional to INCDIR
echo -ll path Local library path, additional to LIBDIR
echo -g Compile and link with debug information
echo -p Use C++ compiler instead of C
echo When linking, link with C++ runtime
echo When replacing, replace .opp file
echo -v (First arg prefix to above): be verbose
echo -q (First arg prefix to above): be quiet
echo -xxxx Arbitrary switch passed to compiler/linker
echo.
echo The current version of the script supports MSVC only. Support for
echo other compilers will be added back in as this script stabilises.
echo.
echo You can optionally set these environment variables:
echo.
echo CCDEFINES - options required for ANSI C compilation
echo CCNAME - compiler name, default is msvc
echo INCDIR - directory containing user include files, if defined
echo LIBDIR - directory containing user libraries, if defined
echo.
echo When using iMatix boom, if the IBASE environment variable is set
echo and conflicts with INCDIR or LIBDIR, c will issue a warning.
goto err_exit
:-
:- Subroutine: boom_model_init
:- Initialises BOOM_MODEL to default if not set
:- Expands BOOM_MODEL components into individual environment variables
:-
:boom_model_init
if "!BOOM_MODEL!"=="" (
set BOOM_MODEL=release,st
)
set BOOM_MODEL__PLACEHOLDER=1
for /f "usebackq delims==" %%v in (`set BOOM_MODEL_`) do set %%v=
set BOOM_MODEL__PLACEHOLDER=
for %%m in (!BOOM_MODEL!) do set BOOM_MODEL_%%m=1
:- If the user set BOOM_MODEL but did not include release/debug or st/mt
:- set these to defaults.
if not "!BOOM_MODEL_RELEASE!"=="1" (
if not "!BOOM_MODEL_DEBUG!"=="1" (
set BOOM_MODEL_RELEASE=1
set BOOM_MODEL=!BOOM_MODEL!,release
)
)
if not "!BOOM_MODEL_ST!"=="1" (
if not "!BOOM_MODEL_MT!"=="1" (
set BOOM_MODEL_ST=1
set BOOM_MODEL=!BOOM_MODEL!,st
)
)
if "!BOOM_MODEL_RELEASE!"=="1" set _DEBUG=0
if "!BOOM_MODEL_DEBUG!"=="1" set _DEBUG=1
if "!BOOM_MODEL_ST!"=="1" set _MT=0
if "!BOOM_MODEL_MT!"=="1" set _MT=1
goto :eof
:-
:- Clean-up symbols and directory
:-
:init
setlocal
if exist *.map del *.map
call :boom_model_init
:-
:- Parse command line
:-
set _QUIET=0
set _VERBOSE=0
set _USECPP=0
set _COMPILE=1
set _REPLACE=0
set _LINK=0
set _SYNTAX=0
if "%1"=="" goto help
:do_switch
set switch=%1
if "%1"=="-q" set _QUIET=1
if "%1"=="-q" goto shift_switch
if "%1"=="-v" set _VERBOSE=1
if "%1"=="-v" goto shift_switch
if "%1"=="-g" set _DEBUG=1
if "%1"=="-g" goto shift_switch
if "%1"=="-p" set _USECPP=1
if "%1"=="-p" goto shift_switch
if "%1"=="-C" set _SYNTAX=1
if "%1"=="-C" goto shift_switch
if "%1"=="-c" goto shift_switch
if "%1"=="-r" goto preplace
if "%1"=="-l" goto pclink
if "%1"=="-L" goto plink
if "%1"=="-ll" goto locallib
if "%1"=="-li" goto localinc
if "!switch:~0,1!"=="-" goto extra
goto ready
:shift_switch
shift
goto do_switch
:extra
set EXTRA=!EXTRA! /!switch:~1!
shift
goto do_switch
:locallib
set _LOCALLIBDIR=%2
shift
shift
goto do_switch
:localinc
set _LOCALINCDIR=%2
shift
shift
goto do_switch
:- Compile and link main programs
:pclink
set _LINK=1
shift
if "%1"=="" goto help
rem %1 is now first program to compile and link
goto ready
:- Link main programs without compilation
:plink
set _LINK=1
set _COMPILE=0
shift
if "%1"=="" goto help
rem %1 is now first program to link
goto ready
:- Replace compiled programs into library
:preplace
set _COMPILE=0
set _REPLACE=1
shift
if "%1"=="" goto help
set _LIB=%1
set _LIB=%_LIB:.lib=%.lib
shift
if "%1"=="" goto help
rem %1 is now first file to replace into _LIB
goto ready
:-
:- Determine compiler name and location, and directories to use
:-
:ready
if not !IBASE!.==. (
if !INCDIR!.==. (
set INCDIR=!IBASE!\include
) else (
if not !INCDIR!.==!IBASE!\include. (
echo W: INCDIR=!INCDIR! is in conflict with IBASE=!IBASE!
)
)
if !LIBDIR!.==. (
set LIBDIR=!IBASE!\lib
) else (
if not !LIBDIR!.==!IBASE!\lib. (
echo W: LIBDIR=!LIBDIR! is in conflict with IBASE=!IBASE!
)
)
)
if "!CCNAME!"=="" goto msvc_init
if "!CCNAME!"=="cl" goto msvc_init
echo Unknown compiler '!CCNAME!' defined - aborting
goto err_exit
:-
:- MS Visual C/C++
:- For MSVC to work from the command line, the vcvars32.bat script must be used.
:- This overrides any settings made to the CCDIR variable.
:-
:msvc_init
if exist "!VCINSTALLDIR!\bin\cl.exe" goto msvc_go
echo You have either not installed MSVC, or not configured it correctly.
echo During installation, make sure you register the environment variables
echo needed for command-line use of the compiler. Check the vcvars32.bat
echo script for correctness. In a console box, the VCINSTALLDIR variable must
echo point correctly to the MSVC application directory. You can set this
echo in the system environment variables, or autoexec.bat.
goto err_exit
:msvc_go
set CCDIR=!VCINSTALLDIR!
:- Detect MSVC version
if defined VS71COMNTOOLS (
set _MSVCVER=71
) else if defined VS80COMNTOOLS (
set _MSVCVER=80
) else if defined VS90COMNTOOLS (
set _MSVCVER=90
) else (
set _MSVCVER=60
)
:- Prepare commands for compilation, replacement, and linking
set CCOPTS=!CCDEFINES! !EXTRA!
if defined _LOCALINCDIR set CCOPTS=!CCOPTS! /I"!_LOCALINCDIR!"
if defined INCDIR set CCOPTS=!CCOPTS! /I"!INCDIR!"
set CCOPTS=!CCOPTS! /I"!CCDIR!\include"
set _CC="!CCDIR!\bin\cl" /nologo /c /W3 /D"WIN32" !CCOPTS!
set _LR="!CCDIR!\bin\lib" /nologo
set _LL="!CCDIR!\bin\link" /nologo /stack:128000 /subsystem:CONSOLE /opt:NOREF /incremental:NO
if !_DEBUG!==1 set _CC=!_CC! /MTd /Z7 /D"DEBUG" /Od
if !_DEBUG!==0 set _CC=!_CC! /MT
if !_MT!==1 set _CC=!_CC! /D"BASE_THREADSAFE"
if !_DEBUG!==1 set _LL=!_LL! /DEBUG
if !_USECPP!==1 set _CC=!_CC! /TP /GX
if !_MSVCVER! GEQ 71 (
set _CCLIBDIR=
set _CC=!_CC! /Y-
if !_DEBUG!==1 set _CC=!_CC! /RTC1
if !_DEBUG!==0 set _CC=!_CC! /Ox
if !_MSVCVER! GEQ 80 set _CC=!_CC! /D_CRT_SECURE_NO_DEPRECATE
) else (
set _CCLIBDIR="!CCDIR!\lib\"
set _LR=!_LR! /libpath="!CCDIR!\lib"
set _LL=!_LL! /libpath="!CCDIR!\lib" /PDB:NONE
if !_DEBUG!==1 set _CC=!_CC! /GZ
if !_DEBUG!==0 set _CC=!_CC! /Og
)
if !_SYNTAX!==1 goto msvc_syntax
:msvc_next
if "%1"=="" goto exit
set _BASE=%1
set _BASE=!_BASE:.c=!
set _BASE=!_BASE:.cpp=!
set _BASE=!_BASE:.obj=!
set _BASE=!_BASE:.opp=!
if !_USECPP!==0 (
set _SRC=!_BASE!.c
set _OBJ=!_BASE!.obj
) else (
set _SRC=!_BASE!.cpp
set _OBJ=!_BASE!.opp
set _CC=!_CC! /Fo!_OBJ!
)
:msvc_compile
if !_COMPILE!==0 goto msvc_replace
if not exist !_SRC! (
echo !_SRC! not found
goto err_exit
)
if !_QUIET!==0 echo Compiling !_SRC!...
if !_VERBOSE!==1 echo (!_CC! !_SRC!)
set SYNTAX=!_CC:"=!
set SYNTAX=!SYNTAX:\=/!
!_CC! /D CCOPTS="\"!SYNTAX!\"" !_SRC!
if errorlevel 1 (
echo Compile errors in !_SRC!
goto err_exit
)
:msvc_replace
if !_REPLACE!==0 goto msvc_link
if not exist !_OBJ! (
echo !_OBJ! not found
goto err_exit
)
if !_VERBOSE!==1 echo Replacing !_OBJ! into !_LIB!...
if !_VERBOSE!==1 echo (!_LR! !_LIB! !_OBJ!)
if exist !_LIB! (
!_LR! !_LIB! !_OBJ! >nul
) else (
echo Creating new library !_LIB!...
!_LR! /out:!_LIB! !_OBJ! >nul
)
:msvc_link
if !_LINK!==0 goto msvc_done
:- Build link library list
rem>library.lst
:- List all local libraries first
for %%a in (*.lib) do echo %%a>>library.lst
:- List libraries in _LOCALLIBDIR if defined
if defined _LOCALLIBDIR for %%a in (!_LOCALLIBDIR!\*.lib) do echo %%a>>library.lst
:- List libraries in LIBDIR if defined
if defined LIBDIR for %%a in (!LIBDIR!\*.lib) do echo %%a>>library.lst
:- List standard MSVC libraries needed for console programs
if !_DEBUG!==1 (
echo !_CCLIBDIR!libcmtd.lib >>library.lst
if !_USECPP!==1 echo !_CCLIBDIR!libcpmtd.lib >>library.lst
) else (
echo !_CCLIBDIR!libcmt.lib >>library.lst
if !_USECPP!==1 echo !_CCLIBDIR!libcpmt.lib >>library.lst
)
echo !_CCLIBDIR!ws2_32.lib >>library.lst
echo !_CCLIBDIR!kernel32.lib >>library.lst
echo !_CCLIBDIR!user32.lib >>library.lst
echo !_CCLIBDIR!gdi32.lib >>library.lst
echo !_CCLIBDIR!comdlg32.lib >>library.lst
echo !_CCLIBDIR!advapi32.lib >>library.lst
echo !_CCLIBDIR!netapi32.lib >>library.lst
echo !_CCLIBDIR!shell32.lib >>library.lst
echo !_CCLIBDIR!odbc32.lib >>library.lst
echo !_CCLIBDIR!user32.lib >>library.lst
echo !_CCLIBDIR!wsock32.lib >>library.lst
echo !_CCLIBDIR!winmm.lib >>library.lst
echo !_CCLIBDIR!oldnames.lib >>library.lst
echo !_CCLIBDIR!mpr.lib >>library.lst
echo !_CCLIBDIR!uuid.lib >>library.lst
echo !_CCLIBDIR!rpcrt4.lib >>library.lst
if not exist !_OBJ! (
echo !_OBJ! not found
goto err_exit
)
if !_QUIET!==0 echo Building !_BASE!.exe...
if !_VERBOSE!==1 echo (!_LL! !_OBJ!)
!_LL! !_OBJ! @library.lst
if errorlevel 1 (
echo Link errors in !_OBJ!
goto err_exit
)
if exist !_BASE!.map del !_BASE!.map
if exist !_BASE!.exp del !_BASE!.exp
:msvc_done
shift
goto msvc_next
:msvc_syntax
if !_SYNTAX!==0 goto msvc_done
echo Compiling using MS Visual C/C++ in !CCDIR!
echo Compiler: !_CC!
echo Library: !_LR!
echo Linker: !_LL! with these libraries
type library.lst
goto exit
:err_exit
if exist library.lst del library.lst
if exist c.lst del c.lst
endlocal
exit /b 1
:exit
if exist library.lst del library.lst
if exist c.lst del c.lst
endlocal
| asokoloski/gsl | src/c.bat | bat | gpl-3.0 | 11,974 |
@echo off
cls
setLocal EnableDelayedExpansion
set string=%~dp0
set string=%string:\=/%
set CLASSPATH="%string%app/bin";"%string%app/config"
for /R "%~dp0/app/lib" %%a in (*.jar) do (
set string=%%a
set string=!string:\=/!
set CLASSPATH=!CLASSPATH!;"!string!"
)
set CLASSPATH=!CLASSPATH!;
javac -version
if ERRORLEVEL 3 goto no_javac
java -version
if ERRORLEVEL 1 goto no_java
cls
java -Dapplication.basedir="%~dp0"" -classpath %CLASSPATH% com.sandwich.koan.runner.AppLauncher %1 %2 %3 %4 %5 %6 %7 %8 %9
goto end
:no_java
cls
@echo java is not bound to PATH variable.
goto end
:no_javac
cls
@echo javac is not bound to PATH variable.
goto end
:end | yottamoto/java-koans | koans/run.bat | bat | apache-2.0 | 656 |
@echo off
cls
"tools\nuget\nuget.exe" "install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion" | DigitalFlow/Open-Trace-Viewer | 00_boot.bat | bat | mit | 99 |
.\NuGet.exe pack .\CopyDllsAfterBuild.nuspec -NoPackageAnalysis -OutputDirectory .
| ufcpp/UnityTools | CopyDllsAfterBuild/pack.bat | bat | mit | 84 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=achallonge
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
| fp12/achallonge | docs/make.bat | bat | mit | 778 |
start "" ".\ServiceHost\ConsoleHost.exe"
#sleep for 4 seconds; this works for all windows versions.
ping -n <4> 127.0.0.1 > NUL
start "" ".\Client\Shell.exe"
#sleep for 2 seconds; this works for all windows versions.
ping -n <2> 127.0.0.1 > NUL
| artiso-solutions/samples | LiveUpdate/ServiceHost.ConsoleHost/StartClientAndService.bat | bat | mit | 245 |
@echo off
start call start_proxy.bat
start call start_server.bat
start call start_client.bat
| tobspr/P3D-ECS | p3d_ecs/python_prototype/start_1_server_1_clients.bat | bat | mit | 96 |
@echo off
rem
rem End to end tests for TypeProviders
rem To succeed it depends on both the coreclr compiler and the net40 desktop compiler being built
rem It only runs under ci_part3
rem
setlocal
set __scriptpath=%~dp0
pushd %__scriptpath%
rem
rem Build typeprovider package with desktop compiler
rem Test it with both desktop and coreclr compilers
rem
if not '%NUGET_PACKAGES%' == '' rd %NUGET_PACKAGES%\BasicProvider /s /q
@echo %__scriptpath%..\..\..\tools\dotnet20\dotnet.exe pack BasicProvider\BasicProvider.fsproj -o %~dp0artifacts -c release -v minimal -p:FSharpTestCompilerVersion=net40
%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe pack BasicProvider\BasicProvider.fsproj -o %~dp0artifacts -c release -v minimal -p:FSharpTestCompilerVersion=net40
@if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
@echo %__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=net461 -p:FSharpTestCompilerVersion=net40
%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=net461 -p:FSharpTestCompilerVersion=net40
@if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
@echo %__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=netcoreapp2.0 -p:FSharpTestCompilerVersion=coreclr
%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=netcoreapp2.0 -p:FSharpTestCompilerVersion=coreclr
@if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
rem
rem Build typeprovider package with coreclr compiler
rem Test it with both desktop and coreclr compilers
rem
if not '%NUGET_PACKAGES%' == '' rd %NUGET_PACKAGES%\BasicProvider /s /q
@echo %__scriptpath%..\..\..\tools\dotnet20\dotnet.exe pack BasicProvider\BasicProvider.fsproj -o %~dp0artifacts -c release -v minimal -p:FSharpTestCompilerVersion=coreclr
%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe pack BasicProvider\BasicProvider.fsproj -o %~dp0artifacts -c release -v minimal -p:FSharpTestCompilerVersion=coreclr
@if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
@echo%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=net461 -p:FSharpTestCompilerVersion=net40
%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=net461 -p:FSharpTestCompilerVersion=net40
@if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
@echo %__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=netcoreapp2.0 -p:FSharpTestCompilerVersion=coreclr
%__scriptpath%..\..\..\tools\dotnet20\dotnet.exe test BasicProvider.Tests\BasicProvider.Tests.fsproj -c release -v minimal -p:TestTargetFramework=netcoreapp2.0 -p:FSharpTestCompilerVersion=coreclr
@if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
:success
endlocal
echo Succeeded
popd
exit /b 0
:failure
endlocal
echo Failed
popd
exit /b 1
| syeerzy/visualfsharp | tests/EndToEndBuildTests/BasicProvider/TestBasicProvider.cmd | bat | mit | 3,383 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments t1 the 4NT Shell t1 JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| psychesworld/MapperGenerator | gradlew.bat | bat | mit | 2,400 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=backpackpy-docs
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.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
| Zwork101/backpack.py | docs/make.bat | bat | mit | 781 |
@echo off
cd ..\processor
call build
cd ..\emulator
mingw32-make
copy /Y elf.exe ..\build
| paulscottrobson/elf-replica | Emulator/build.bat | bat | mit | 90 |
set SDK_ROOT=%ANDROID_HOME%
path=%path%;%SDK_ROOT%\platform-tools
set XTS_ROOT=D:\
set JAR_HOME=%XTS_ROOT%\android-xts\tools
set JAR_PATH=%JAR_HOME%\xts-tradefed.jar;%JAR_HOME%\hosttestlib.jar;%JAR_HOME%\ddmlib-prebuilt.jar;%JAR_HOME%\tradefed-prebuilt.jar
java -Xmx512M -cp %JAR_PATH% -DXTS_ROOT=%XTS_ROOT% com.android.xts.tradefed.command.XtsConsole %* | TeaEntityLab/teaScriptUtils | xts-tradefed.bat | bat | mit | 355 |
set path=C:\Program Files\swipl\bin;%path%;C:\Program Files\Java\jdk1.7.0_45\bin;
cd Gui
javac -cp "C:\Program Files\swipl\lib\jpl.jar;." Board.java Game.java Menu.java Main.java
java -cp "C:\Program Files\swipl\lib\jpl.jar;." Main | rstancioiu/Checkers-AI | launch.bat | bat | mit | 231 |
@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% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\fincorrnet.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\fincorrnet.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
| mvaz/financial-correlation-networks | make.bat | bat | mit | 7,257 |
@SetLocal EnableDelayedExpansion
@call %~dp0\..\tools\set-common-dir-and-tools.bat
@set /a replacedCount=0
:: for /F "tokens=*" %f in ('lzmw -f "\.csproj$|^allSubmitingTest.sln$" -rp csharp -l -PAC') do @git checkout %f
:: lzmw -rp %~dp0 -f "\.csproj$|^allSubmitingTest.sln$" -it "\w+mobius"
lzmw -rp %~dp0 -f "\.csproj$|^allSubmitingTest.sln$" -it "[^<>]*(</MobiusCodeRoot>)" -o "..\\..\\..${1}" -R -c
@echo. & @set /a replacedCount+=%ERRORLEVEL%
lzmw -rp %~dp0 -f "\.csproj$|^allSubmitingTest.sln$" -it "(?<=\")\S+(?=\\csharp\\(?:Adapter^|Worker)\\Microsoft)" -o "$(MobiusCodeRoot)" -R -c
@echo. & @set /a replacedCount+=%ERRORLEVEL%
:: if %ERRORLEVEL% GTR 0 lzmw -rp %~dp0 -f "\.csproj$|^allSubmitingTest.sln$" -it "(?<=\")\S+(?=\\csharp\\(?:Adapter^|Worker)\\Microsoft)^s|(?<==)\s*\W*MobiusCodeRoot\W*" --nt "^\s*^<MobiusCodeRoot^|\s+Condition="
if %ERRORLEVEL% GTR 0 lzmw -rp %~dp0 -f "\.csproj$|^allSubmitingTest.sln$" -it "%%MobiusCodeRoot%%|\$\(MobiusCodeRoot\)|[^<>]*(</MobiusCodeRoot>)|(?<=\")\S+(?=\\csharp\\(?:Adapter^|Worker)\\Microsoft)" -e "^<MobiusCodeRoot\s*\w*"
@echo.
| qualiu/testMobius | csharp/restore-to-MobiusCodeRoot-in-project-files.bat | bat | mit | 1,091 |
@setlocal
@echo off
@if not "%ECHO%" == "" echo %ECHO%
@rem ???
if "%1" == "" set CALL_MAVEN_OPTS=verify
if not "%1" == "" set CALL_MAVEN_OPTS=%*
@call mvn -V -e %CALL_MAVEN_OPTS%
| mlehmannm/mlm-eclipse-ide-jsworkingset | build.cmd | bat | epl-1.0 | 191 |
del .\configurations\rules\proserv-custom.rules
del /Q /S .\configurations\rules\proserv.rules
del /Q /S .\configurations\rules\proserv-sonos-5z.rules
del /Q /S .\configurations\rules\proserv-custom.rules.bak
del /Q /S .\configurations\items\proserv.items
del /Q /S .\configurations\items\proserv-custom.items
del /Q /S .\configurations\persistence\db4o.persist
del /Q /S .\configurations\persistence\rrd4j.persist
del /Q /S .\configurations\sitemaps\proserv.sitemap
del /Q /S .\configurations\sitemaps\proserv-classic.sitemap
del /Q /S .\configurations\transform\proserv.map
del /Q /S .\configurations\ProservCronJobs.ser
del /Q /S .\configurations\openhab.cfg
del /Q /S .\etc\db4o\*.*
del /Q /S .\etc\rrd4j\*.*
del /Q /S .\etc\habmin\charts.xml
del /Q /S .\logs\*.*
del /Q /S .\webapps\static\*.*
rmdir .\webapps\static
del /Q /S .\webapps\proserv\langdir.js | jenskastensson/openhab | distribution/openhabhome/clean.bat | bat | epl-1.0 | 860 |
cmd_drivers/base/module.o := arm-eabi-gcc -Wp,-MD,drivers/base/.module.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(module)" -D"KBUILD_MODNAME=KBUILD_STR(module)" -D"DEBUG_HASH=52" -D"DEBUG_HASH2=10" -c -o drivers/base/module.o drivers/base/module.c
deps_drivers/base/module.o := \
drivers/base/module.c \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/devtmpfs.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/ioport.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/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/data/repos/kernels/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/repos/kernels/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.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 \
$(wildcard include/config/mmu.h) \
/data/repos/kernels/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/data/repos/kernels/arch/arm/include/asm/hwcap.h \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/repos/kernels/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/data/repos/kernels/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/data/repos/kernels/arch/arm/include/asm/irqflags.h \
/data/repos/kernels/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/linux/sysfs.h \
$(wildcard include/config/debug/lock/alloc.h) \
$(wildcard include/config/sysfs.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/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/prove/rcu.h) \
/data/repos/kernels/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/repos/kernels/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
/data/repos/kernels/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/repos/kernels/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/repos/kernels/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.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/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) \
include/linux/kref.h \
include/linux/wait.h \
/data/repos/kernels/arch/arm/include/asm/current.h \
include/linux/klist.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/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/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/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/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/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/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/repos/kernels/arch/arm/include/asm/smp.h \
arch/arm/mach-msm/include/mach/smp.h \
/data/repos/kernels/arch/arm/include/asm/hardware/gic.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/data/repos/kernels/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/data/repos/kernels/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/data/repos/kernels/arch/arm/include/asm/elf.h \
/data/repos/kernels/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/data/repos/kernels/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/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/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) \
drivers/base/base.h \
$(wildcard include/config/sys/hypervisor.h) \
drivers/base/module.o: $(deps_drivers/base/module.o)
$(deps_drivers/base/module.o):
| bigbiff/i717-GB-Kernel | drivers/base/.module.o.cmd | bat | gpl-2.0 | 18,152 |
cmd_kernel/notifier.o := arm-none-linux-gnueabi-gcc -Wp,-MD,kernel/.notifier.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(notifier)" -D"KBUILD_MODNAME=KBUILD_STR(notifier)" -c -o kernel/.tmp_notifier.o kernel/notifier.c
deps_kernel/notifier.o := \
kernel/notifier.c \
$(wildcard include/config/debug/notifiers.h) \
include/linux/kdebug.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/kdebug.h \
include/asm-generic/kdebug.h \
include/linux/kprobes.h \
$(wildcard include/config/kprobes.h) \
$(wildcard include/config/kretprobes.h) \
$(wildcard include/config/kprobes/sanity/test.h) \
$(wildcard include/config/optprobes.h) \
$(wildcard include/config/sysctl.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/mmu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/notifier.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/spinlock_types.h \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/debug/spinlock.h) \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/rwsem-spinlock.h \
include/linux/spinlock.h \
$(wildcard include/config/preempt.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
include/linux/srcu.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.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/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/completion.h \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/rcutree.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) \
$(wildcard include/config/sysfs.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/vmalloc.h \
include/linux/reboot.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/emergency-restart.h \
include/asm-generic/emergency-restart.h \
kernel/notifier.o: $(deps_kernel/notifier.o)
$(deps_kernel/notifier.o):
| srinugnt2000/linux-2.6.37 | kernel/.notifier.o.cmd | bat | gpl-2.0 | 16,034 |
taskkill -im freecad.exe /f
@echo OFF
echo cadquery-freecad-module required
@echo ON
cd %~p0
start "" "c:\FreeCAD\bin\freecad" export_conn_jst_xh.py B02B_XH_A
:: FreeCAD export_conn_jst_xh.py all
| metacollin/kicad-3d-models-in-freecad | cadquery/FCAD_script_generator/launch-cq-XH-export.bat | bat | gpl-2.0 | 196 |
cmd_net/core/utils.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/core/.utils.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(utils)" -D"KBUILD_MODNAME=KBUILD_STR(utils)" -c -o net/core/.tmp_utils.o net/core/utils.c
deps_net/core/utils.o := \
net/core/utils.c \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/mmu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/linkage.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/completion.h \
include/linux/rcutree.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/inet.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.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 \
/root/kernel-dev/linux-2.6.37/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/kernel-dev/linux-2.6.37/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/net.h \
include/linux/socket.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/socket.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/random.h \
include/linux/ioctl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/fcntl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/kmemcheck.h \
include/linux/sysctl.h \
include/linux/ratelimit.h \
include/net/sock.h \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/cgroups.h) \
include/linux/list_nulls.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/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/vlan/8021q.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/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/network/secmark.h) \
$(wildcard include/config/network/phy/timestamping.h) \
include/linux/textsearch.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) \
$(wildcard include/config/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/trace/events/kmem.h \
include/trace/events/gfpflags.h \
include/net/checksum.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/async/tx/enable/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) \
$(wildcard include/config/sysfs/deprecated.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/io.h \
arch/arm/mach-davinci/include/mach/io.h \
/root/kernel-dev/linux-2.6.37/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/if_link.h \
include/linux/netlink.h \
include/linux/capability.h \
include/linux/pm_qos_params.h \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/delay.h \
/root/kernel-dev/linux-2.6.37/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/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.h) \
$(wildcard include/config/ipv6/mroute/multiple/tables.h) \
include/net/dst_ops.h \
include/linux/percpu_counter.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.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/blk_types.h \
$(wildcard include/config/blk/dev/integrity.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/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/magic.h \
include/net/netns/conntrack.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/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/irq/time/accounting.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hardirq.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/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/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/proportions.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/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/trace/events/irq.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/fsnotify.h \
include/linux/fsnotify_backend.h \
$(wildcard include/config/fanotify/access/permissions.h) \
include/linux/idr.h \
include/linux/audit.h \
$(wildcard include/config/change.h) \
include/linux/binfmts.h \
include/linux/shm.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmparam.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/msgbuf.h \
include/linux/filter.h \
include/linux/rculist_nulls.h \
include/linux/poll.h \
/root/kernel-dev/linux-2.6.37/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 \
net/core/utils.o: $(deps_net/core/utils.o)
$(deps_net/core/utils.o):
| srinugnt2000/linux-2.6.37 | net/core/.utils.o.cmd | bat | gpl-2.0 | 30,551 |
cmd_fs/nls/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/nls/built-in.o fs/nls/nls_base.o fs/nls/nls_cp437.o fs/nls/nls_cp936.o fs/nls/nls_ascii.o fs/nls/nls_iso8859-1.o fs/nls/nls_iso8859-15.o fs/nls/nls_utf8.o
| jpsminix/minix5 | fs/nls/.built-in.o.cmd | bat | gpl-2.0 | 219 |
cmd_drivers/media/platform/mxc/subdev/ov5640_camera.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/media/platform/mxc/subdev/ov5640_camera.o drivers/media/platform/mxc/subdev/ov5640.o
| heyoufei2/yocto3.14.38_kernel | drivers/media/platform/mxc/subdev/.ov5640_camera.o.cmd | bat | gpl-2.0 | 190 |
@echo OFF
title win32
set GOROOT=d:\go
set GOPATH=%CD%
set _TOOLS=%~dp0
set CC=gcc.exe
set CXX=g++.exe
set BITS=
set INSTROOT=%_TOOLS%mingw%BITS%
set PKG_CONFIG_LIBDIR=%INSTROOT%\lib%BITS%\pkgconfig
set CGO_ENABLED=1
set GOHOSTOS=windows
set GOHOSTARCH=amd64
set GOOS=windows
set GOARCH=386
set TERM=msys
set PATH=%GOPATH%\bin;%PATH%;%GOROOT%\bin;%INSTROOT%\bin;%_TOOLS%Git\bin;%_TOOLS%SlikSvn\bin;%_TOOLS%Mercurial;%_TOOLS%bin;%_TOOLS%Bazaar | rupor-github/kindle | go_1.4.2/buildgo_win_x86.cmd | bat | gpl-2.0 | 470 |
md K:\4CCANopen
copy 4CCANopen_4ceng.kad K:\4CCANopen\4CCANopen_4ceng.kad
copy Setup_4CCANopen.bat K:\4CCANopen\Setup_4CCANopen.bat
copy I:\4Control_R\KADmerge.dll K:\4CCANopen\KADmerge.dll
copy I:\4Control_R\KADMerger.exe K:\4CCANopen\KADMerger.exe | MECTsrl/ATCMcontrol_Engineering | src/COM/softing/fc/CSET/Setups/4CCANopen/Build.bat | bat | gpl-3.0 | 278 |
net group %1% /domain | perl -ne "print if /^[A-Z]{2}/" | perl -pe "s/\s+/\n/g" | 0f27/wuCLI-tools | members.bat | bat | gpl-3.0 | 79 |
@echo off
set username=%1
set password=%2
set dbname=%3
set table=%4
echo use %dbname%;show columns from %table%; | "C:\Program Files\MySQL\bin\mysql.exe" -u%username% -p%password%
| pmanwatkar/puppetModules | actions/files/Database_mysql_windows/show_columns_in_a_table.bat | bat | gpl-3.0 | 182 |
@echo off
setlocal
set EXAMPLE_ENV_VAR1=value1
endlocal
set EXAMPLE_ENV_VAR2=value2
echo %1
| cpp-ftw/ccsh | test/var test.bat | bat | gpl-3.0 | 94 |
! A slightly fancier test of POINT-type (no ranges) subscripted names
add -name a -region=AREG
add -name b -region=BREG
add -name c -region=CREG
add -name a(1) -reg=AREG
add -name b(2,"efgh") -reg=BREG
add -name c(3,5,7,8,"zzz",10) -reg=CREG
exit
add -region AREG -dyn=AREG -stdnullcoll
add -segment AREG -file=AREG.dat
add -region BREG -dyn=BREG -stdnullcoll
add -segment BREG -file=BREG.dat
add -region CREG -dyn=CREG -stdnullcoll
add -segment CREG -file=CREG.dat
change -region DEFAULT -stdnullcoll
show -name
show -map
| nars1/YottaDBtest | spanning_regions/inref/gde38.cmd | bat | agpl-3.0 | 523 |
pip install jupyter
pip install ipywidgets
pip install numpy
pip install matplotlib
pip install seaborn
pip install pypbe | drericstrong/pypbe | pypbe-nb/install.bat | bat | agpl-3.0 | 121 |
rem ==========================
rem Generates the documentation
rem ==========================
rem
tools\nant\nant.exe -buildfile:GitSharp.build %1 -t:net-3.5 -D:build.config=release -D:build.vcs.number.1=%BUILD_VCS_NUMBER% compile-gitsharp
cd tools\docu
docu ..\..\build\net-3.5-release\bin\GitSharp.dll
rem The docs are generated into tools\docu\output | henon/GitSharp | generate-Docs.bat | bat | lgpl-2.1 | 355 |
rmdir "%~dp0Output" /s /q
del "%~dp0DeveMultiCompressor.7z"
del "%~dp0DeveMultiCompressor.zip" | devedse/DeveMultiCompressor | Scripts/Cleanup.cmd | bat | unlicense | 94 |
@echo off
pscp -l pi -pw !16root_ C:/github/rasp-pi-api/apache-server-scripts/*.php [email protected]:/var/www/html/
pscp -l pi -pw !16root_ C:/github/rasp-pi-api/apache-server-scripts/*.html [email protected]:/var/www/html/ | seayjohnny/rasp-pi-api | apache-server-scripts/batch/update_host.bat | bat | apache-2.0 | 219 |
@echo off
@rem Script for creating a new application
setlocal
mvn -B archetype:generate ^
-DarchetypeGroupId=org.apache.apex ^
-DarchetypeArtifactId=apex-app-archetype ^
-DarchetypeVersion=3.3.0-incubating ^
-DgroupId=com.example ^
-Dpackage=com.example.myapexapp ^
-DartifactId=myapexapp ^
-Dversion=1.0-SNAPSHOT
endlocal
| DataTorrent/examples | tutorials/topnwords/scripts/newapp.cmd | bat | apache-2.0 | 355 |
@echo off
java -Djava.library.path="C:\Program Files\hello\lib;..\lib" -cp "C:\Program Files\hello\lib\hello-java.jar;..\lib" net.cryp7.range.hello.Hello
| enkaskal/hello | hello-java/distrib/hello-java.bat | bat | apache-2.0 | 158 |
@echo off
rem CDDL HEADER START
rem
rem The contents of this file are subject to the terms of the
rem Common Development and Distribution License, Version 1.0 only
rem (the "License"). You may not use this file except in compliance
rem with the License.
rem
rem You can obtain a copy of the license at
rem trunk/opends/resource/legal-notices/OpenDS.LICENSE
rem or https://OpenDS.dev.java.net/OpenDS.LICENSE.
rem See the License for the specific language governing permissions
rem and limitations under the License.
rem
rem When distributing Covered Code, include this CDDL HEADER in each
rem file and include the License file at
rem trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
rem add the following below this CDDL HEADER, with the fields enclosed
rem by brackets "[]" replaced with your own identifying information:
rem Portions Copyright [yyyy] [name of copyright owner]
rem
rem CDDL HEADER END
rem
rem
rem Portions Copyright 2006-2007 Sun Microsystems, Inc.
setlocal
set OPENDS_INVOKE_CLASS="org.opends.server.tools.LDIFSearch"
set SCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=ldifsearch"
for %%i in (%~sf0) do call "%%~dPsi\..\lib\_server-script.bat" %*
| TremoloSecurity/MyVirtualDirectory | test/opends-1.0b7/bat/ldifsearch.bat | bat | apache-2.0 | 1,234 |
rem
rem Ant batch file
rem Antsoft Co.
rem
set JAVA_HOME=D:\jdk1.1.8
set path=%JAVA_HOME%\bin
set ANT_HOME=C:\Work\Ant
set classpath=%JAVA_HOME%\lib\classes.zip;
set classpath=%ClassPath%;%ANT_HOME%\classes;%ANT_HOME%\lib\ant.jar;%ANT_HOME%\lib\swingall.jar;%ANT_HOME%\lib\jh.jar
java.exe com.antsoft.ant.debugger.AntDebuggerPanel %1 %2 %3 %4 %5 %6 %7 %8 %9 | FJplant/AntIDE | bin/rundebugger.bat | bat | apache-2.0 | 370 |
python egolpy.py -x 80 -y 80 -W 800 -H 800 -r gol.rules -p -l gol1.txt -n 1
| bjodah/egolpy | gol1.cmd | bat | bsd-2-clause | 76 |
rmdir /S /Q vs17
mkdir vs17
cd vs17
cmake ..\.. -G "Visual Studio 15 2017" | JAJames/Jupiter-Bot | build/cmake_vs17.bat | bat | isc | 74 |
@echo off
bii find
pause
exit | ArduinoIDE/Arduino-PyQt-IDE | bii-ide/resources/script/win/find.bat | bat | mit | 29 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S03_OperationOnListItem.MSLISTSWS_S03_TC95_UpdateListItems_ValidListTitle /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique
pause | OfficeDev/Interop-TestSuites | SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S03_TC95_UpdateListItems_ValidListTitle.cmd | bat | mit | 318 |
cmd_drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o := arm-hisiv200-linux-gcc -Wp,-MD,drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/.vp6.o.d -nostdinc -isystem /opt/hisi-linux/x86-arm/arm-hisiv200-linux/bin/../lib/gcc/arm-hisiv200-linux-gnueabi/4.4.1/include -I/home/yhfeng/sdk/HiSTBLinuxV100R002C00SPC011/source/kernel/linux-3.4.y/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/yhfeng/sdk/HiSTBLinuxV100R002C00SPC011/source/kernel/linux-3.4.y/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s40/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.S
source_drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o := drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.S
deps_drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o := \
/home/yhfeng/sdk/HiSTBLinuxV100R002C00SPC011/source/kernel/linux-3.4.y/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o: $(deps_drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o)
$(deps_drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o):
| caps-liu/hisi-driverlibs | source/msp/drv/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/.vp6.o.cmd | bat | gpl-2.0 | 1,681 |
@echo off
rem -------------------------------------------------------------
rem Yii command line script for Windows.
rem
rem This is the bootstrap script for running yiic on Windows.
rem
rem @author Qiang Xue <[email protected]>
rem @link http://www.yiiframework.com/
rem @copyright Copyright © 2008 Yii Software LLC
rem @license http://www.yiiframework.com/license/
rem @version $Id$
rem -------------------------------------------------------------
@setlocal
set YII_PATH=%~dp0
if "%PHP_COMMAND%" == "" set PHP_COMMAND=C:\wamp\bin\php\php5.2.6\php.exe
"%PHP_COMMAND%" "%YII_PATH%yiic" %*
@endlocal | thu0ng91/yangung | yii/yiic.bat | bat | bsd-2-clause | 619 |
@ECHO OFF
set JAVAPROG=java
set savedCLASSPATH=%CLASSPATH%
set LOTUSXSLDIR=d:\xslt\testsuite\classes\
rem +++ This file is used to run embed01, embed02, embed07, embed08(4x) and paramtest. +++
rem +++ Set classpath based on the build you are testing +++
rem +++ This is for XALANJ build.
rem
rem set XCLASSPATH=%LOTUSXSLDIR%xerces.jar;%LOTUSXSLDIR%xalan.jar;d:\xslt\testsuite\conf\extend\;%LOTUSXSLDIR%js.jar;%LOTUSXSLDIR%bsf.jar;%LOTUSXSLDIR%bsfengines.jar;%CLASSPATH%
rem This is for LOTUSXSL build.
set XCLASSPATH=%LOTUSXSLDIR%xerces.jar;%LOTUSXSLDIR%lotusxsl.jar;%LOTUSXSLDIR%xalan.jar;d:\xslt\testsuite\conf\extend\;%LOTUSXSLDIR%js.jar;%LOTUSXSLDIR%bsf.jar;%LOTUSXSLDIR%bsfengines.jar;%CLASSPATH%
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -in embed01.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -in embed02.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -in embed07.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -MEDIA xxx -in embed08.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -MEDIA yyy -in embed08.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -MEDIA zzz -in embed08.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -MEDIA xyz -in embed08.xml
type blank.out
%JAVAPROG% -Djava.compiler=NONE -classpath %XCLASSPATH% org.apache.xalan.xslt.Process %2 %3 %4 %5 %6 -v -param pv1 'aa' -param pv2 'bb' -param pv3 'cc' -param pv4 'dd' -param pv5 'ee' -param pv6 'ff' -in paramtest.xml -xsl paramtest.xsl
| draekko/arabica | tests/XSLT/testsuite/TESTS/Xalan_Conformance_Tests/embed/testembed.bat | bat | bsd-3-clause | 1,969 |
copy ..\..\MoonSharp.Interpreter.Tests\bin\Release\*.dll Assets\Plugins
copy ..\..\MoonSharp.Interpreter.Tests\bin\Release\*.pdb Assets\Plugins
copy ..\..\MoonSharp.Interpreter.Tests\bin\Release\*.xml Assets\Plugins
pause
| RainsSoft/moonsharp | src/Unity/UnityTestBed/ResynchAssets.cmd | bat | bsd-3-clause | 223 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pydsa.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pydsa.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
| rehassachdeva/pydsa | docs/make.bat | bat | bsd-3-clause | 7,251 |
@echo off
if "%1" == "" goto paramErr
if "%VSINSTALLDIR%" == "" goto envErr
set COMPILER=%1
rem Determine CMake generator
if "%COMPILER%" == "vc71" set GENERATOR="Visual Studio 7 .NET 2003"
if "%COMPILER%" == "vc8" set GENERATOR="Visual Studio 8 2005"
if "%COMPILER%" == "vc8_x64" set GENERATOR="Visual Studio 8 2005 Win64"
if "%COMPILER%" == "vc9" set GENERATOR="Visual Studio 9 2008"
if "%COMPILER%" == "vc9_x64" set GENERATOR="Visual Studio 9 2008 Win64"
if "%COMPILER%" == "vc10" set GENERATOR="Visual Studio 10"
if "%COMPILER%" == "vc10_x64" set GENERATOR="Visual Studio 10 Win64"
if %GENERATOR% == "" goto paramErr
rem check 7z and dot
7z > NUL
if errorlevel 1 goto 7zerror
dot -V > NUL
if errorlevel 1 goto doterror
set BUILD_DIR=%COMPILER%
if "%2" == "clean" rmdir /Q/S %BUILD_DIR%
mkdir %BUILD_DIR%
pushd %BUILD_DIR%
rem call CMake
cmake -DOGRE_INSTALL_SAMPLES_SOURCE:BOOL=TRUE -DOGRE_INSTALL_DOCS:BOOL=TRUE -DOGRE_INSTALL_DEPENDENCIES:BOOL=TRUE -DCMAKE_INSTALL_PREFIX:PATH=%cd%\SDK -G%GENERATOR% ..\..\..
if errorlevel 1 goto cmakeerror
rem call twice to ensure all variables are set properly
cmake -DOGRE_INSTALL_SAMPLES_SOURCE:BOOL=TRUE -DOGRE_INSTALL_DOCS:BOOL=TRUE -DOGRE_INSTALL_DEPENDENCIES:BOOL=TRUE -DCMAKE_INSTALL_PREFIX:PATH=%cd%\SDK -G%GENERATOR% ..\..\..
if errorlevel 1 goto cmakeerror
rem Read OGRE version
set /p OGREVERSION=<version.txt
rem Detect whether we're using full version of VStudio or Express
devenv /? > NUL
if errorlevel 1 goto tryexpress
set DEVENV=devenv
goto detecteddevenv
:tryexpress
set DEVENV=VCExpress
:detecteddevenv
rem build docs explicitly since INSTALL doesn't include it
%DEVENV% OGRE.sln /build "Release" /project "doc"
if errorlevel 1 goto msvcerror
rem Delete unnecessary doc files
pushd api\html
del /Q/F *.hhk *.hhc *.map *.md5 *.dot *.hhp *.plist
popd
rem Build main binaries
%DEVENV% OGRE.sln /build "Debug" /project "INSTALL"
%DEVENV% OGRE.sln /build "Release" /project "INSTALL"
rem call CMake in sdk
pushd sdk
cmake -DBOOST_INCLUDEDIR:PATH=%cd%\boost -DBOOST_LIBRARYDIR=%cd%\boost\lib -DBoost_NO_SYSTEM_PATHS:BOOL=ON -G%GENERATOR% .\
if errorlevel 1 goto cmakeerror
rem delete cache (since it will include absolute paths)
del CMakeCache.txt
rmdir /S/Q CMakeFiles
rem Patch up absolute references to pdbs & debug directories
rem The former should be fixed in a future version of CMake, but the latter is because we configure these files in manually
dir /b /s *.vcproj *.vcproj.user *.vcxproj *.vcxproj.user > filestopatch.txt
for /F "delims=" %%f in ('type filestopatch.txt') do (
cscript //nologo ..\..\removeabsolutepaths.vbs "%%f"
)
del /Q/F filestopatch.txt
popd
popd
rem Package up
set SDKNAME=OgreSDK_%COMPILER%_v%OGREVERSION%
rmdir /S/Q %SDKNAME%
move %BUILD_DIR%\sdk %SDKNAME%
del /Q/F %SDKNAME%.exe
rem create self-extracting 7zip archive
7z a -r -y -sfx7z.sfx %SDKNAME%.exe %SDKNAME%
echo Done! Test %SDKNAME%.exe and then release
goto end
:paramErr
echo Required: Build tool (vc71, vc8, vc8x64, vc9, vc9x64, vc10, vc10x64)
set errorlevel=1
goto end
:envErr
echo You need to run this script after running vcvars32.bat
set errorlevel=1
goto end
:cmakeerror
popd
echo CMake not found on your path or CMake error - see above and correct
goto end
:7zerror
echo 7z.exe not found on your path, please add
goto end
:doterror
echo dot.exe not found on your path, please add
goto end
:msvcerror
popd
echo Neither devenv.exe nor VCExpress are on your path, use vcvars32.bat
goto end
:end
| jjenki11/blaze-chem-rendering | ogre/ogre_src_v1-8-1/SDK/Win32/buildsdk.bat | bat | mit | 3,478 |
@rem Copyright 2016 gRPC authors.
@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 Current package versions
set VERSION=1.7.0-dev
@rem Adjust the location of nuget.exe
set NUGET=C:\nuget\nuget.exe
set DOTNET=dotnet
set -ex
mkdir ..\..\artifacts
@rem Collect the artifacts built by the previous build step if running on Jenkins
mkdir nativelibs
powershell -Command "cp -r ..\..\platform=*\artifacts\csharp_ext_* nativelibs"
@rem Collect protoc artifacts built by the previous build step
mkdir protoc_plugins
powershell -Command "cp -r ..\..\platform=*\artifacts\protoc_* protoc_plugins"
%DOTNET% restore Grpc.sln || goto :error
@rem To be able to build, we also need to put grpc_csharp_ext to its normal location
xcopy /Y /I nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll ..\..\cmake\build\x64\Release\
%DOTNET% pack --configuration Release Grpc.Core --output ..\..\..\artifacts || goto :error
%DOTNET% pack --configuration Release Grpc.Core.Testing --output ..\..\..\artifacts || goto :error
%DOTNET% pack --configuration Release Grpc.Auth --output ..\..\..\artifacts || goto :error
%DOTNET% pack --configuration Release Grpc.HealthCheck --output ..\..\..\artifacts || goto :error
%DOTNET% pack --configuration Release Grpc.Reflection --output ..\..\..\artifacts || goto :error
%NUGET% pack Grpc.nuspec -Version %VERSION% -OutputDirectory ..\..\artifacts || goto :error
%NUGET% pack Grpc.Tools.nuspec -Version %VERSION% -OutputDirectory ..\..\artifacts
@rem copy resulting nuget packages to artifacts directory
xcopy /Y /I *.nupkg ..\..\artifacts\ || goto :error
@rem create a zipfile with the artifacts as well
powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('..\..\artifacts', 'csharp_nugets_windows_dotnetcli.zip');"
xcopy /Y /I csharp_nugets_windows_dotnetcli.zip ..\..\artifacts\ || goto :error
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
| yongni/grpc | src/csharp/build_packages_dotnetcli.bat | bat | apache-2.0 | 2,491 |
@echo off
Rem Configure Bison for DJGPP.
Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
Rem format, or else stock DOS/Windows shells will refuse to run it.
Rem Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
Rem This program is free software: you can redistribute it and/or modify
Rem it under the terms of the GNU General Public License as published by
Rem the Free Software Foundation, either version 3 of the License, or
Rem (at your option) any later version.
Rem
Rem This program is distributed in the hope that it will be useful,
Rem but WITHOUT ANY WARRANTY; without even the implied warranty of
Rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Rem GNU General Public License for more details.
Rem
Rem You should have received a copy of the GNU General Public License
Rem along with this program. If not, see <http://www.gnu.org/licenses/>.
echo Configuring Bison for DJGPP v2.x...
Rem The SmallEnv tests protect against fixed and too small size
Rem of the environment in stock DOS shell.
Rem Find out if NLS is wanted or not,
Rem if dependency-tracking is wanted or not,
Rem if caching is wanted or not
Rem and where the sources are.
Rem We always default to NLS support,
Rem no dependency tracking
Rem and to in place configuration.
set ARGS=
set NLS=enabled
if not "%NLS%" == "enabled" goto SmallEnv
set CACHING=enabled
if not "%CACHING%" == "enabled" goto SmallEnv
set DEPENDENCY_TRACKING=disabled
if not "%DEPENDENCY_TRACKING%" == "disabled" goto SmallEnv
set LIBICONV_PREFIX=disabled
if not "%LIBICONV_PREFIX%" == "disabled" goto SmallEnv
set LIBINTL_PREFIX=disabled
if not "%LIBINTL_PREFIX%" == "disabled" goto SmallEnv
set HTML=enabled
if not "%HTML%" == "enabled" goto SmallEnv
set XSRC=.
if not "%XSRC%" == "." goto SmallEnv
Rem Loop over all arguments.
Rem Special arguments are: NLS, XSRC, CACHE, STATIC_LIBS, LIBICONV_PREFIX, LIBINTL_PREFIX and DEPS.
Rem All other arguments are stored into ARGS.
:ArgLoop
if "%1" == "nls" goto NextArgument
if "%1" == "NLS" goto NextArgument
if "%1" == "no-nls" goto NoNLS
if "%1" == "no-NLS" goto NoNLS
if "%1" == "NO-NLS" goto NoNLS
goto CachingOption
:NoNLS
if "%1" == "no-nls" set NLS=disabled
if "%1" == "no-NLS" set NLS=disabled
if "%1" == "NO-NLS" set NLS=disabled
if not "%NLS%" == "disabled" goto SmallEnv
goto NextArgument
:CachingOption
if "%1" == "cache" goto NextArgument
if "%1" == "CACHE" goto NextArgument
if "%1" == "no-cache" goto NoCaching
if "%1" == "no-CACHE" goto NoCaching
if "%1" == "NO-CACHE" goto NoCaching
goto DependencyOption
:NoCaching
if "%1" == "no-cache" set CACHING=disabled
if "%1" == "no-CACHE" set CACHING=disabled
if "%1" == "NO-CACHE" set CACHING=disabled
if not "%CACHING%" == "disabled" goto SmallEnv
goto NextArgument
:DependencyOption
if "%1" == "no-dep" goto NextArgument
if "%1" == "no-DEP" goto NextArgument
if "%1" == "NO-DEP" goto NextArgument
if "%1" == "dep" goto DependecyTraking
if "%1" == "DEP" goto DependecyTraking
goto LibiconvPrefixOption
:DependecyTraking
if "%1" == "dep" set DEPENDENCY_TRACKING=enabled
if "%1" == "DEP" set DEPENDENCY_TRACKING=enabled
if not "%DEPENDENCY_TRACKING%" == "enabled" goto SmallEnv
goto NextArgument
:LibiconvPrefixOption
if "%1" == "no-libiconvprefix" goto NextArgument
if "%1" == "no-LIBICONVPREFIX" goto NextArgument
if "%1" == "NO-LIBICONVPREFIX" goto NextArgument
if "%1" == "libiconvprefix" goto WithLibiconvPrefix
if "%1" == "LIBICONVPREFIX" goto WithLibiconvPrefix
goto LibintlPrefixOption
:WithLibiconvPrefix
if "%1" == "libiconvprefix" set LIBICONV_PREFIX=enabled
if "%1" == "LIBICONVPREFIX" set LIBICONV_PREFIX=enabled
if not "%LIBICONV_PREFIX%" == "enabled" goto SmallEnv
goto NextArgument
:LibintlPrefixOption
if "%1" == "no-libiconvprefix" goto NextArgument
if "%1" == "no-LIBICONVPREFIX" goto NextArgument
if "%1" == "NO-LIBICONVPREFIX" goto NextArgument
if "%1" == "libintlprefix" goto _WithLibintlPrefix
if "%1" == "LIBINTLPREFIX" goto _WithLibintlPrefix
goto HTMLOption
:_WithLibintlPrefix
if "%1" == "libintlprefix" set LIBINTL_PREFIX=enabled
if "%1" == "LIBINTLPREFIX" set LIBINTL_PREFIX=enabled
if not "%LIBINTL_PREFIX%" == "enabled" goto SmallEnv
:HTMLOption
if "%1" == "withhtml" goto NextArgument
if "%1" == "withHTML" goto NextArgument
if "%1" == "WITHHTML" goto NextArgument
if "%1" == "withouthtml" goto _WithoutHTML
if "%1" == "withoutHTML" goto _WithoutHTML
if "%1" == "WITHOUTHTML" goto _WithoutHTML
goto SrcDirOption
:_WithoutHTML
if "%1" == "withouthtml" set HTML=disabled
if "%1" == "withoutHTML" set HTML=disabled
if "%1" == "WITHOUTHTML" set HTML=disabled
if not "%HTML%" == "disabled" goto SmallEnv
goto NextArgument
:SrcDirOption
echo %1 | grep -q "/"
if errorlevel 1 goto CollectArgument
set XSRC=%1
if not "%XSRC%" == "%1" goto SmallEnv
goto NextArgument
:CollectArgument
set _ARGS=%ARGS% %1
if not "%_ARGS%" == "%ARGS% %1" if not "%_ARGS%" == "%ARGS%%1" goto SmallEnv
echo %_ARGS% | grep -q "[^ ]"
if not errorlevel 0 set ARGS=%_ARGS%
set _ARGS=
:NextArgument
shift
if not "%1" == "" goto ArgLoop
Rem Create an arguments file for the configure script.
echo --srcdir=%XSRC% > args
if "%CACHING%" == "enabled" echo --cache-file=%XSRC%/djgpp/config.cache >> args
if "%DEPENDENCY_TRACKING%" == "enabled" echo --enable-dependency-tracking >> args
if "%DEPENDENCY_TRACKING%" == "disabled" echo --disable-dependency-tracking >> args
if "%LIBICONV_PREFIX%" == "enabled" echo --with-libiconv-prefix >> args
if "%LIBICONV_PREFIX%" == "disabled" echo --without-libiconv-prefix >> args
if "%LIBINTL_PREFIX%" == "enabled" echo --with-libintl-prefix >> args
if "%LIBINTL_PREFIX%" == "disabled" echo --without-libintl-prefix >> args
if "%HTML%" == "enabled" echo --enable-html >> args
if "%HTML%" == "disabled" echo --disable-html >> args
if not "%ARGS%" == "" echo %ARGS% >> args
set ARGS=
set CACHING=
set DEPENDENCY_TRACKING=
set LIBICONV_PREFIX=
set LIBINTL_PREFIX=
set HTML=
if "%XSRC%" == "." goto InPlace
:NotInPlace
redir -e /dev/null update %XSRC%/configure.org ./configure
test -f ./configure
if errorlevel 1 update %XSRC%/configure ./configure
:InPlace
Rem Update configuration files
echo Updating configuration scripts...
test -f ./configure.org
if errorlevel 1 update configure configure.org
sed -f %XSRC%/djgpp/config.sed configure.org > configure
if errorlevel 1 goto SedError
Rem Make sure they have a config.site file
set CONFIG_SITE=%XSRC%/djgpp/config.site
if not "%CONFIG_SITE%" == "%XSRC%/djgpp/config.site" goto SmallEnv
Rem inttypes_.h and inttypes.h map to the same 8.3 alias.
test -f %XSRC%/lib/inttypes_.h
if not errorlevel 1 mv -f %XSRC%/lib/inttypes_.h %XSRC%/lib/_inttypes.h
Rem Make sure crucial file names are not munged by unpacking
test -f %XSRC%/po/Makefile.in.in
if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in
test -f %XSRC%/po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/po/Makefile.in %XSRC%/po/Makefile.in-in
test -f %XSRC%/po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/po/Makefile.inin %XSRC%/po/Makefile.in-in
test -f %XSRC%/po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/po/Makefile.in_in %XSRC%/po/Makefile.in-in
test -f %XSRC%/po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/po/Makefile_in.in %XSRC%/po/Makefile.in-in
test -f %XSRC%/runtime-po/Makefile.in.in
if not errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in.in %XSRC%/runtime-po/Makefile.in-in
test -f %XSRC%/runtime-po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in %XSRC%/runtime-po/Makefile.in-in
test -f %XSRC%/runtime-po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.inin %XSRC%/runtime-po/Makefile.in-in
test -f %XSRC%/runtime-po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in_in %XSRC%/runtime-po/Makefile.in-in
test -f %XSRC%/runtime-po/Makefile.in-in
if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile_in.in %XSRC%/runtime-po/Makefile.in-in
test -f %XSRC%/data/c++.m4
if not errorlevel 1 mv -f %XSRC%/data/c++.m4 %XSRC%/data/cxx.m4
test -f %XSRC%/data/cxx.m4
if errorlevel 1 mv -f %XSRC%/data/cpp.m4 %XSRC%/data/cxx.m4
test -f %XSRC%/data/c++-skel.m4
if not errorlevel 1 mv -f %XSRC%/data/c++-skel.m4 %XSRC%/data/cxx-skel.m4
test -f %XSRC%/data/cxx-skel.m4
if errorlevel 1 mv -f %XSRC%/data/cpp-skel.m4 %XSRC%/data/cxx-skel.m4
test -f %XSRC%/build-aux/javacomp.sh.in
if not errorlevel 1 mv -f %XSRC%/build-aux/javacomp.sh.in %XSRC%/build-aux/javacomp.sh-in
test -f %XSRC%/build-aux/javacomp.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javacomp.sh %XSRC%/build-aux/javacomp.sh-in
test -f %XSRC%/build-aux/javacomp.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javacomp.shin %XSRC%/build-aux/javacomp.sh-in
test -f %XSRC%/build-aux/javacomp.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javacomp.sh_in %XSRC%/build-aux/javacomp.sh-in
test -f %XSRC%/build-aux/javacomp.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javacomp.sh.in %XSRC%/build-aux/javacomp.sh-in
test -f %XSRC%/build-aux/javaexec.sh.in
if not errorlevel 1 mv -f %XSRC%/build-aux/javaexec.sh.in %XSRC%/build-aux/javaexec.sh-in
test -f %XSRC%/build-aux/javaexec.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javaexec.sh %XSRC%/build-aux/javaexec.sh-in
test -f %XSRC%/build-aux/javaexec.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javaexec.shin %XSRC%/build-aux/javaexec.sh-in
test -f %XSRC%/build-aux/javaexec.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javaexec.sh_in %XSRC%/build-aux/javaexec.sh-in
test -f %XSRC%/build-aux/javaexec.sh-in
if errorlevel 1 mv -f %XSRC%/build-aux/javaexec_sh.in %XSRC%/build-aux/javaexec.sh-in
test -f %XSRC%/doc/yacc.1.in
if not errorlevel 1 mv -f %XSRC%/doc/yacc.1.in %XSRC%/doc/yacc.1-in
test -f %XSRC%/doc/yacc.1-in
if errorlevel 1 mv -f %XSRC%/doc/yacc.1 %XSRC%/doc/yacc.1-in
test -f %XSRC%/doc/yacc.1-in
if errorlevel 1 mv -f %XSRC%/doc/yacc.1in %XSRC%/doc/yacc.1-in
test -f %XSRC%/doc/yacc.1-in
if errorlevel 1 mv -f %XSRC%/doc/yacc.1_in %XSRC%/doc/yacc.1-in
test -f %XSRC%/doc/yacc.1-in
if errorlevel 1 mv -f %XSRC%/doc/yacc_1.in %XSRC%/doc/yacc.1-in
test -f %XSRC%/etc/bench.pl.in
if not errorlevel 1 mv -f %XSRC%/etc/bench.pl.in %XSRC%/etc/bench.pl-in
test -f %XSRC%/etc/bench.pl-in
if errorlevel 1 mv -f %XSRC%/etc/bench.pl %XSRC%/etc/bench.pl-in
test -f %XSRC%/etc/bench.pl-in
if errorlevel 1 mv -f %XSRC%/etc/bench.plin %XSRC%/etc/bench.pl-in
test -f %XSRC%/etc/bench.pl-in
if errorlevel 1 mv -f %XSRC%/etc/bench.pl_in %XSRC%/etc/bench.pl-in
test -f %XSRC%/etc/bench.pl-in
if errorlevel 1 mv -f %XSRC%/etc/bench_pl.in %XSRC%/etc/bench.pl-in
:scan_gram_c_Test
test -f %XSRC%/src/c-scan-gram.c
if not errorlevel 1 goto scan_skel_c_Test
test -f %XSRC%/src/scan-gram-c.c
if not errorlevel 1 mv -f %XSRC%/src/scan-gram-c.c %XSRC%/src/c-scan-gram.c
:scan_skel_c_Test
test -f %XSRC%/src/c-scan-skel.c
if not errorlevel 1 goto FixFiles
test -f %XSRC%/src/scan-skel-c.c
if not errorlevel 1 mv -f %XSRC%/src/scan-skel-c.c %XSRC%/src/c-scan-skel.c
:FixFiles
Rem Fix data/lalr1.cc and data/location.cc to reflect the renaming of c++.m4
sed "s/c++\.m4/cxx.m4/" %XSRC%/data/lalr1.cc > lalr1.cc
if errorlevel 1 goto lalr1_ccFileError
mv ./lalr1.cc %XSRC%/data/lalr1.cc
sed "s/c++\.m4/cxx.m4/" %XSRC%/data/location.cc > location.cc
if errorlevel 1 goto location_ccFileError
mv ./location.cc %XSRC%/data/location.cc
sed "s/c++\.m4/cxx.m4/" %XSRC%/data/glr.cc > glr.cc
if errorlevel 1 goto glr_ccFileError
mv ./glr.cc %XSRC%/data/glr.cc
Rem Fix src/getargs.c to reflect the renaming of c++-skel.m4
sed "s/c++-skel\.m4/cxx-skel.m4/" %XSRC%/src/getargs.c > getargs.c
if errorlevel 1 goto getargs_cFileError
mv ./getargs.c %XSRC%/src/getargs.c
Rem Define DJGPP specific defs in config.hin
echo Editing config.hin...
test -f %XSRC%/lib/config_h.org
if errorlevel 1 update %XSRC%/lib/config.hin %XSRC%/lib/config_h.org
sed -f %XSRC%/djgpp/config_h.sed %XSRC%/lib/config_h.org > config.hin
if errorlevel 1 goto SedError2
mv -f config.hin %XSRC%/lib/config.hin
Rem Fixing ilicit testsuite file name.
test -f %XSRC%/tests/c++.at
if not errorlevel 1 mv -f %XSRC%/tests/c++.at %XSRC%/tests/cxx.at
test -f %XSRC%/tests/testsuite.org
if errorlevel 1 update %XSRC%/tests/testsuite %XSRC%/tests/testsuite.org
sed -f %XSRC%/djgpp/testsuite.sed %XSRC%/tests/testsuite.org > testsuite.tmp
if errorlevel 1 goto SedError3
mv -f ./testsuite.tmp %XSRC%/tests/testsuite
Rem Fixing ilicit calc++ file names in the calc++ directory.
test -d %XSRC%/examples/calc++
if not errorlevel 1 mv -f %XSRC%/examples/calc++ %XSRC%/examples/calcxx
test -d %XSRC%/examples/calcxx
if errorlevel 1 mv -f %XSRC%/examples/calcpp %XSRC%/examples/calcxx
test -f %XSRC%/examples/calcxx/calc++-scanner.cc
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc
test -f %XSRC%/examples/calcxx/calcxx-scanner.cc
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc
test -f %XSRC%/examples/calcxx/calc++-scanner.ll
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll
test -f %XSRC%/examples/calcxx/calcxx-scanner.ll
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll
test -f %XSRC%/examples/calcxx/calc++-driver.cc
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc
test -f %XSRC%/examples/calcxx/calcxx-driver.cc
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc
test -f %XSRC%/examples/calcxx/calc++-driver.hh
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh
test -f %XSRC%/examples/calcxx/calcxx-driver.hh
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh
test -f %XSRC%/examples/calcxx/calc++-parser.cc
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc
test -f %XSRC%/examples/calcxx/calcxx-parser.cc
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc
test -f %XSRC%/examples/calcxx/calc++-parser.hh
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh
test -f %XSRC%/examples/calcxx/calcxx-parser.hh
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh
test -f %XSRC%/examples/calcxx/calc++-parser.stamp
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.stamp %XSRC%/examples/calcxx/calcxx-parser.stamp
test -f %XSRC%/examples/calcxx/calcxx-parser.stamp
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.stamp %XSRC%/examples/calcxx/calcxx-parser.stamp
test -f %XSRC%/examples/calcxx/calc++-parser.yy
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy
test -f %XSRC%/examples/calcxx/calcxx-parser.yy
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy
test -f %XSRC%/examples/calcxx/calc++.cc
if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++.cc %XSRC%/examples/calcxx/calcxx.cc
test -f %XSRC%/examples/calcxx/calcxx.cc
if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp.cc %XSRC%/examples/calcxx/calcxx.cc
Rem Fixing #include lines in calcxx files.
sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx.cc > calcxx.cc
if errorlevel 1 goto calcxxFileError
mv ./calcxx.cc %XSRC%/examples/calcxx/calcxx.cc
sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-driver.cc > calcxx-driver.cc
if errorlevel 1 goto calcxxFileError
mv ./calcxx-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc
sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-driver.hh > calcxx-driver.hh
if errorlevel 1 goto calcxxFileError
mv ./calcxx-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh
sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.cc > calcxx-parser.cc
if errorlevel 1 goto calcxxFileError
mv ./calcxx-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc
sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.hh > calcxx-parser.hh
if errorlevel 1 goto calcxxFileError
mv ./calcxx-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh
:sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.yy > calcxx-parser.yy
:if errorlevel 1 goto calcxxFileError
:mv ./calcxx-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy
sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-scanner.cc > calcxx-scanner.cc
if errorlevel 1 goto calcxxFileError
mv ./calcxx-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc
:sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-scanner.ll > calcxx-scanner.ll
:if errorlevel 1 goto calcxxFileError
:mv ./calcxx-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll
sed "s/calc++/calcxx/" %XSRC%/examples/calcxx/test > test
if errorlevel 1 goto calcxxFileError
mv ./test %XSRC%/examples/calcxx/test
Rem Fixing the scanner files to make file names 8.3 valid.
Rem Use only if you want to change the scan-gram.l and scan-skel.l files.
: sed "/outfile=/s/\.yy/yy/" %XSRC%/src/scan-gram.l > scan-gram.l
: if errorlevel 1 goto ScannerFileError
: mv ./scan-gram.l %XSRC%/src/scan-gram.l
: sed "/outfile=/s/\.yy/yy/" %XSRC%/src/scan-skel.l > scan-skel.l
: if errorlevel 1 goto ScannerFileError
: mv ./scan-skel.l %XSRC%/src/scan-skel.l
Rem This is required because DOS/Windows are case-insensitive
Rem to file names, and "make install" will do nothing if Make
Rem finds a file called `install'.
if exist INSTALL ren INSTALL INSTALL.txt
Rem Set SHELL to a sane default or some configure tests stop working
Rem if the package is configured across partitions.
if not "%SHELL%" == "" goto HomeName
set SHELL=/bin/sh
if not "%SHELL%" == "/bin/sh" goto SmallEnv
echo No SHELL found in the environment, using default value
:HomeName
Rem Set HOME to a sane default so configure stops complaining.
if not "%HOME%" == "" goto HostName
set HOME=%XSRC%/djgpp
if not "%HOME%" == "%XSRC%/djgpp" goto SmallEnv
echo No HOME found in the environment, using default value
:HostName
Rem Set HOSTNAME so it shows in config.status
if not "%HOSTNAME%" == "" goto hostdone
if "%windir%" == "" goto msdos
set OS=MS-Windows
if not "%OS%" == "MS-Windows" goto SmallEnv
goto haveos
:msdos
set OS=MS-DOS
if not "%OS%" == "MS-DOS" goto SmallEnv
:haveos
if not "%USERNAME%" == "" goto haveuname
if not "%USER%" == "" goto haveuser
echo No USERNAME and no USER found in the environment, using default values
set HOSTNAME=Unknown PC
if not "%HOSTNAME%" == "Unknown PC" goto SmallEnv
goto userdone
:haveuser
set HOSTNAME=%USER%'s PC
if not "%HOSTNAME%" == "%USER%'s PC" goto SmallEnv
goto userdone
:haveuname
set HOSTNAME=%USERNAME%'s PC
if not "%HOSTNAME%" == "%USERNAME%'s PC" goto SmallEnv
:userdone
set _HOSTNAME=%HOSTNAME%, %OS%
if not "%_HOSTNAME%" == "%HOSTNAME%, %OS%" goto SmallEnv
set HOSTNAME=%_HOSTNAME%
:hostdone
set _HOSTNAME=
set OS=
Rem install-sh is required by the configure script but clashes with the
Rem various Makefile install-foo targets, so we MUST have it before the
Rem script runs and rename it afterwards
test -f %XSRC%/install-sh
if not errorlevel 1 goto NoRen0
test -f %XSRC%/install-sh.sh
if not errorlevel 1 mv -f %XSRC%/install-sh.sh %XSRC%/install-sh
:NoRen0
if "%NLS%" == "disabled" goto WithoutNLS
:WithNLS
Rem Check for the needed libraries and binaries.
test -x /dev/env/DJDIR/bin/msgfmt.exe
if errorlevel 1 goto MissingNLSTools
test -x /dev/env/DJDIR/bin/xgettext.exe
if errorlevel 1 goto MissingNLSTools
test -f /dev/env/DJDIR/include/libcharset.h
if errorlevel 1 goto MissingNLSTools
test -f /dev/env/DJDIR/lib/libcharset.a
if errorlevel 1 goto MissingNLSTools
test -f /dev/env/DJDIR/include/iconv.h
if errorlevel 1 goto MissingNLSTools
test -f /dev/env/DJDIR/lib/libiconv.a
if errorlevel 1 goto MissingNLSTools
test -f /dev/env/DJDIR/include/libintl.h
if errorlevel 1 goto MissingNLSTools
test -f /dev/env/DJDIR/lib/libintl.a
if errorlevel 1 goto MissingNLSTools
Rem Recreate the files in the %XSRC%/po subdir with our ported tools.
redir -e /dev/null rm %XSRC%/po/*.gmo
redir -e /dev/null rm %XSRC%/po/bison.pot
redir -e /dev/null rm %XSRC%/po/cat-id-tbl.c
redir -e /dev/null rm %XSRC%/po/stamp-cat-id
Rem Update the arguments file for the configure script.
Rem We prefer without-included-gettext because libintl.a from gettext package
Rem is the only one that is garanteed to have been ported to DJGPP.
echo --enable-nls --without-included-gettext >> args
goto ConfigurePackage
:MissingNLSTools
echo Needed libs/tools for NLS not found. Configuring without NLS.
:WithoutNLS
Rem Update the arguments file for the configure script.
echo --disable-nls >> args
:ConfigurePackage
echo Running the ./configure script...
sh ./configure @args
if errorlevel 1 goto CfgError
rm args
echo Done.
goto End
:lalr1_ccFileError
echo ./data/lalr1.cc file editing failed!
goto End
:glr_ccFileError
echo ./data/glr.cc file editing failed!
goto End
:getargs_cFileError
echo ./src/getargs.c file editing failed!
goto End
:location_ccFileError
echo ./data/location.cc file editing failed!
goto End
:calcxxFileError
echo ./examples/calcxx file editing failed!
goto End
:ScannerFileError
echo ./scanner file editing failed!
goto End
:SedError
echo ./configure script editing failed!
goto End
:SedError2
echo ./lib/config.hin editing failed!
goto End
:SedError3
echo ./tests/testsuite editing failed!
goto End
:CfgError
echo ./configure script exited abnormally!
goto End
:SmallEnv
echo Your environment size is too small. Enlarge it and run me again.
echo Configuration NOT done!
:End
test -f %XSRC%/install-sh.sh
if not errorlevel 1 goto NoRen1
test -f %XSRC%/install-sh
if not errorlevel 1 mv -f %XSRC%/install-sh %XSRC%/install-sh.sh
:NoRen1
if "%SHELL%" == "/bin/sh" set SHELL=
if "%HOME%" == "%XSRC%/djgpp" set HOME=
set CONFIG_SITE=
set HOSTNAME=
set NLS=
set XSRC=
| sgraham/nope | third_party/bison/src/bison/2.4.1/bison-2.4.1-src/djgpp/config.bat | bat | bsd-3-clause | 22,549 |
rem
rem This file is part of the LibreOffice project.
rem
rem This Source Code Form is subject to the terms of the Mozilla Public
rem License, v. 2.0. If a copy of the MPL was not distributed with this
rem file, You can obtain one at http://mozilla.org/MPL/2.0/.
rem
rem This file incorporates work covered by the following license notice:
rem
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed
rem with this work for additional information regarding copyright
rem ownership. The ASF licenses this file to you under the Apache
rem License, Version 2.0 (the "License"); you may not use this file
rem except in compliance with the License. You may obtain a copy of
rem the License at http://www.apache.org/licenses/LICENSE-2.0 .
rem
@echo off
set MYBOOTSTRAPTESTVALUE=0
echo 1
.\testbootstrap 1 -env:MYBOOTSTRAPTESTVALUE=1
echo 2
.\testbootstrap.exe file
echo 3
.\testbootstrap.Exe file
echo 4
.\testbootstrap.bin file
echo 5
.\testbootstrap.Bin file
echo 6
.\testbootstrap 0 -env:INIFILENAME=
echo 7
set MYBOOTSTRAPTESTVALUE=
rem simply ignore the file ....
.\testbootstrap default -env:INIFILENAME=
echo 8
.\testbootstrap default -env:MYBOOTSTRAPTESTVALUE2=1 -env:INIFILENAME=
echo
echo "macro tests"
echo
rem simple macro expansion
echo 9
.\testbootstrap _first_second_third_ -env:FIRST=first -env:SECOND=second -env:THIRD=third -env:MYBOOTSTRAPTESTVALUE=_${FIRST}_${SECOND}_${THIRD}_
rem simple quoting
echo 10
.\testbootstrap _${FIRST}_${SECOND}_${THIRD}_ -env:FIRST=first -env:SECOND=second -env:THIRD=third -env:MYBOOTSTRAPTESTVALUE=_\$\{FIRST\}_\$\{SECOND\}_\$\{THIRD\}_
rem simple ini access
echo 11
.\testbootstrap TheKeysValue -env:MYBOOTSTRAPTESTVALUE=${./bootstraptest.ini:TheSection:TheKey}
rem ini access with simple macro expansion
echo 12
.\testbootstrap TheKeysValue -env:ININAME=./bootstraptest.ini -env:SECTIONNAME=TheSection -env:KEYNAME=TheKey -env:MYBOOTSTRAPTESTVALUE=${$ININAME:$SECTIONNAME:$KEYNAME}
rem ini access with complex macro expansion
echo 13
.\testbootstrap TheKeysValue -env:ININAME=./bootstraptest.ini -env:MYBOOTSTRAPTESTVALUE=${$ININAME:${$ININAME:SecondSection:IndirectSection}:${$ININAME:SecondSection:IndirectKey}}
rem test no infinite recursion
echo 14
.\testbootstrap "***RECURSION DETECTED***" -env:MYBOOTSTRAPTESTVALUE=$MYBOOTSTRAPTESTVALUE
rem test unicode
echo 15
.\testbootstrap AAABBBCCC000 -env:MYBOOTSTRAPTESTVALUE=\u0041\u0041\u0041\u0042\u0042\u0042\u0043\u0043\u0043\u0030\u0030\u0030
@echo bootstrap test finished
| qt-haiku/LibreOffice | sal/test/bootstrap.bat | bat | gpl-3.0 | 2,588 |
%SystemDrive%\cygwin\bin\which.exe bash
if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
echo Preparing generator output directory...
set GeneratorDirectory=%CONFIGURATIONBUILDDIR%/obj32/WebKitExportGenerator
mkdir "%GeneratorDirectory%" 2>NUL
mkdir "%GeneratorDirectory%\DerivedSources" 2>NUL
echo Clearing old definition file...
del /F /Q "%GeneratorDirectory%\WebKitExports.def"
del /F /Q "%GeneratorDirectory%\DerivedSources\WebKitExportGenerator.cpp"
del /F /Q "%OUTDIR%\WebKitExportGenerator%DEBUGSUFFIX%.exe"
cmd /c
if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
if errorlevel 1 exit 1
echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
"%PROJECTDIR%\%PROJECTNAME%BuildCmd.cmd"
| CodeDJ/qt5-hidpi | qt/qtwebkit/Source/WebKit/WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPreBuild.cmd | bat | lgpl-2.1 | 770 |
@make --no-builtin-rules --no-builtin-variables -d >log_debug.txt 2>&1
| chcbaram/FPGA | zap-2.3.0-windows/papilio-zap-ide/hardware/arduino/sam/system/CMSIS/Examples/cmsis_example/gcc_atmel/build_debug.bat | bat | mit | 71 |
@echo off
call npm install
SETLOCAL
SET PATH=node_modules\.bin;node_modules\hubot\node_modules\.bin;%PATH%
node_modules\.bin\hubot.cmd --name "roobot" %*
| gpa-centex/roobot | bin/hubot.cmd | bat | mit | 157 |
type common.js store.js views.js edit_feats3.js edit_spells.js edit_equipment.js edit_weapons.js edit.js main.js log.js > all.js
| chambery/charmgrjs | merge_all.bat | bat | mit | 130 |
del temp\color_test.o
del temp\color_test.nes
cc65\bin\ca65 color_test.s -g -o temp\color_test.o
cc65\bin\ld65 -C nrom.cfg -o temp\color_test.nes temp\color_test.o -m temp\color_test_map.txt -Ln temp\color_test_labels.txt
@pause | encse/nes-emulator | packages/webapp/static/test/ppu/color_test/compile_color_test.bat | bat | mit | 232 |
@setlocal enabledelayedexpansion && python -x "%~f0" %* & exit /b !ERRORLEVEL!
import sys, subprocess
s = set([])
for arg in sys.argv[1:]:
s = s.union(set(subprocess.check_output("search_by_tag %s"%arg, shell=True).split()))
print '\n'.join(sorted(list(s)))
| ktan2020/legacy-automation | tools/search_by_tags.bat | bat | mit | 271 |
@ECHO OFF
REM Command file for Sphinx documentation
pushd %~dp0
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_elements.papersize=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_elements.papersize=%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 an HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 1 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.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\market.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\market.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
if "%1" == "dummy" (
%SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy
if errorlevel 1 exit /b 1
echo.
echo.Build finished. Dummy builder generates no files.
goto end
)
:end
popd
| ericdunham/farmers-market | docs/make.bat | bat | mit | 7,569 |
@echo off
set xv_path=C:\\Xilinx\\Vivado\\2016.4\\bin
echo "xvhdl -m64 --relax -prj svd_2x2_vhdl.prj"
call %xv_path%/xvhdl -m64 --relax -prj svd_2x2_vhdl.prj -log xvhdl.log
call type xvhdl.log > compile.log
if "%errorlevel%"=="1" goto END
if "%errorlevel%"=="0" goto SUCCESS
:END
exit 1
:SUCCESS
exit 0
| lasalvavida/Zybo-Open-Source-Video-IP-Toolbox | general_ip/svd_2x2/svd_2x2.sim/sim_1/behav/compile.bat | bat | mit | 304 |
nuget pack Dexiom.EPPlusExporter.nuspec -Properties version="0.0.1" | Dexiom/Dexiom.EPPlusExporter | Dexiom.EPPlusExporter/CreatePackage.bat | bat | mit | 67 |
#!/bin/bash
node ./node_modules/sails/bin/sails.js %*
| harindaka/node-mvc-starter | sails.bat | bat | mit | 54 |
;@echo off
;;;;; rem start of the batch part ;;;;;
; if "%~2" EQU "" (
; echo invalid arguments.For help use:
; echo %~nx0 /h
; exit /b 1
;)
;for %%a in (/h /help -h -help) do (
; if "%~1" equ "%%~a" (
; echo compressing directory to cab file
; echo %~nx0 directory cabfile
; echo to uncompress use:
; echo EXPAND cabfile -F:* .
; )
; )
;
; set "dir_to_cab=%~f1"
;
; set "path_to_dir=%~pn1"
; set "dir_name=%~n1"
; set "drive_of_dir=%~d1"
; set "cab_file=%~2"
;
; if not exist %dir_to_cab%\ (
; echo no valid directory passed
; exit /b 1
;)
;
;break>"%tmp%\makecab.dir.ddf"
;
;setlocal enableDelayedExpansion
;for /d /r "%dir_to_cab%" %%a in (*) do (
;
; set "_dir=%%~pna"
; set "destdir=%dir_name%!_dir:%path_to_dir%=!"
; (echo(.Set DestinationDir=!destdir!>>"%tmp%\makecab.dir.ddf")
; for %%# in ("%%a\*") do (
; (echo("%%~s#" /inf=no>>"%tmp%\makecab.dir.ddf")
; )
;)
;(echo(.Set DestinationDir=!dir_name!>>"%tmp%\makecab.dir.ddf")
; for %%# in ("%~f1\*") do (
;
; (echo("%%~s#" /inf=no>>"%tmp%\makecab.dir.ddf")
; )
;makecab /F "%~f0" /f "%tmp%\makecab.dir.ddf" /d DiskDirectory1=%cd% /d CabinetNameTemplate=%cab_file%.cab
;del /q /f "%tmp%\makecab.dir.ddf"
;exit /b %errorlevel%
;;
;;;; rem end of the batch part ;;;;;
;;;; directives part ;;;;;
;;
.New Cabinet
.set GenerateInf=OFF
.Set Cabinet=ON
.Set Compress=ON
.Set UniqueFiles=ON
.Set MaxDiskSize=1215751680;
.set RptFileName=nul
.set InfFileName=nul
.set MaxErrors=1
;;
;;;; end of directives part ;;;;;
| TheBigBear/batch.scripts | hybrids/makecab/cabdir.bat | bat | mit | 1,497 |
@echo off
REM cup -y checksum msbuild.communitytasks msbuild.extensionpack nuget.commandline wixtoolset
for /f "usebackq tokens=1* delims=: " %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -requires Microsoft.Component.MSBuild`) do (
if /i "%%i"=="installationPath" set InstallDir=%%j
)
if exist "%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" (
"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" build.proj -p:Configuration=Release
)
PAUSE | denxorz/HotChocolatey | build.bat | bat | mit | 475 |
@ECHO off
msg * welcome to the bot.net by virus zero
msg * to start to destroy websites/ips/devices/ you have bot folder
msg * then open every bot and copy paste this
start commands.txt
msg * then open the hacker.bat
msg * dont forget the max size of packages is 65500 so go and edit it in the bots | fadybinadnan/BOTNet-2017.4- | botnet v1/readbefore start.bat | bat | mit | 306 |
php ../extract_cmdb.php | Julien-SIMON/GobelinsLab | plugins/cmdb/bin/extract_cmdb.bat | bat | mit | 23 |
cmd_net/core/built-in.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-ld -EL -r -o net/core/built-in.o net/core/sock.o net/core/request_sock.o net/core/skbuff.o net/core/iovec.o net/core/datagram.o net/core/stream.o net/core/scm.o net/core/gen_stats.o net/core/gen_estimator.o net/core/net_namespace.o net/core/sysctl_net_core.o net/core/skb_dma_map.o net/core/dev.o net/core/ethtool.o net/core/dev_mcast.o net/core/dst.o net/core/netevent.o net/core/neighbour.o net/core/rtnetlink.o net/core/utils.o net/core/link_watch.o net/core/filter.o net/core/flow.o net/core/net-sysfs.o
| mjmccall/Kernel | net/core/.built-in.o.cmd | bat | gpl-2.0 | 591 |
setlocal enabledelayedexpansion
set MyprojectPath=%1
set MyProjectName=%2
set MybuildType=%3
set MystartAddr=%4
set MyName=%MyProjectName:~0,-4%
set MyFilePath=%MyprojectPath%\%MybuildType%\Exe
set MyComPort=%5
set MyComNum=%MyComPort:~3%
set MyCommand=pm reboot sysdfu
set /a regnum=0
set StressTest=true
set ToolVersion=4
goto ENTER_DFU
::IarBuild %MyprojectPath%\%MyProjectName% -build %MybuildType% -log all
IarBuild %MyprojectPath%\%MyProjectName% -make %MybuildType% -log errors
If errorlevel 1 (
Echo *******************************************
Echo %MyProjectName% %MybuildType% Build Failed!
Echo *******************************************
goto END
) Else (
Echo %MyProjectName% %MybuildType% Build succeed!
)
:START
mode %MyComPort% /STATUS > "state.txt"
::set /p var_state=<"state.txt"
for /f "delims=" %%i in (state.txt) do (set var_state=%%i)&(goto :next)
:next
del "state.txt"
set postfix=%var_state:~-1%
if "%postfix%" == ":" (
goto ENTER_DFU
) Else (
echo ******************************
echo Please close port: %MyComPort%
echo ******************************
echo=
pause
goto START
)
:ENTER_DFU
set MyBaudRate=115200
mode %MyComPort%:BAUD=%MyBaudRate% DATA=8 PARITY=N dtr=off rts=off
echo %MyCommand% > %MyComPort%
::set MyBaudRate=57600
if %ToolVersion%==1 (
echo Tool version: HTCFlashLoader v1.0.1
set MyDownloadPar=-c --pn %MyComNum% --br %MyBaudRate% -i STM32F4_11_512K
set MySector= -d --auto --v --a
.\FlashLoaderForUart\My\HTCFlashLoader.exe !MyDownloadPar! !MySector! %MystartAddr% --fn %MyFilePath%\%MyName%.bin -r --a 0x08000000
set MyReturn=!errorlevel!
)
if %ToolVersion%==2 (
echo Tool version: HTCFlashLoader v1.0.0
set MyDownloadPar=-c --pn %MyComNum% --br %MyBaudRate% -i STM32F4_11_512K
if %MystartAddr%==0x08000000 set MySector= -d --sec 1 0 --v --a
if %MystartAddr%==0x08008000 set MySector= -d --sec 3 2 3 4 --v --a
if %MystartAddr%==0x08040000 set MySector= -d --sec 2 6 7 --v --a
.\FlashLoaderForUart\HTC\HTCFlashLoader.exe !MyDownloadPar! !MySector! %MystartAddr% --fn %MyFilePath%\%MyName%.bin -r --a 0x08000000
set MyReturn=!errorlevel!
)
if %ToolVersion%==3 (
echo Tool version: STMFlashLoader
if %MystartAddr%==0x08000000 set MyDownloadPar=-c --pn %MyComNum% --br %MyBaudRate% -i STM32F4_11_512K -e --sec 1 0
if %MystartAddr%==0x08008000 set MyDownloadPar=-c --pn %MyComNum% --br %MyBaudRate% -i STM32F4_11_512K -e --sec 3 2 3 4
if %MystartAddr%==0x08040000 set MyDownloadPar=-c --pn %MyComNum% --br %MyBaudRate% -i STM32F4_11_512K -e --sec 2 6 7
set MySector= -d --v --a
.\FlashLoaderForUart\STM\STMFlashLoader.exe !MyDownloadPar! !MySector! %MystartAddr% --fn %MyFilePath%\%MyName%.bin -r --a 0x08000000
set MyReturn=!errorlevel!
)
if %ToolVersion%==4 (
echo Tool version: HTCFlashLoader v1.0.0
set MyDownloadPar=-c --pn %MyComNum% --br %MyBaudRate% -i STM32F4_11_512K
set MySector=-d --sec 1 0 --v --a 0x08000000 --fn %MyFilePath%\link_ctrl_bl0.bin
set MySector=!MySector! -d --sec 1 1 --v --a 0x08004000 --fn %MyFilePath%\misc.bin
set MySector=!MySector! -d --sec 3 2 3 4 --v --a 0x08008000 --fn %MyFilePath%\link_ctrl_bl1.bin
set MySector=!MySector! -d --sec 2 6 7 --v --a 0x08040000 --fn %MyFilePath%\link_ctrl_sys.bin
.\FlashLoaderForUart\HTC\HTCFlashLoader.exe !MyDownloadPar! !MySector! -r --a 0x08000000
set MyReturn=!errorlevel!
)
If %MyReturn%==0 (
if %StressTest%==true (
echo=
set /a regnum+=1
echo Test count : %regnum%
If %ToolVersion%==4 (
echo Please wait 8s to restart test ...
echo=
ping -n 7 127.0.0.1 > temp
) Else (
echo Please wait 5s to restart test ...
echo=
ping -n 4 127.0.0.1 > temp
)
del temp
goto ENTER_DFU
)
) Else (
echo=
echo ---------------------------------------
echo Flash loader failed! Error code: %MyReturn%
echo ---------------------------------------
echo=
pause
)
:END
| fangrui166/duf_tool | develop_uart.cmd | bat | gpl-2.0 | 3,850 |
cmd_fs/hfs/hfs.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o fs/hfs/hfs.ko fs/hfs/hfs.o fs/hfs/hfs.mod.o
| avareldalton85/rpi2-linux-rt | fs/hfs/.hfs.ko.cmd | bat | gpl-2.0 | 211 |
cmd_fs/dcache.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/.dcache.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dcache)" -D"KBUILD_MODNAME=KBUILD_STR(dcache)" -c -o fs/dcache.o fs/dcache.c
deps_fs/dcache.o := \
fs/dcache.c \
include/linux/syscalls.h \
$(wildcard include/config/ppc64.h) \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/have/syscall/wrappers.h) \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/ia64.h) \
include/linux/types.h \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.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/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/linux/aio_abi.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mmu.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/linkage.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/sem.h \
$(wildcard include/config/sysvipc.h) \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
include/linux/kref.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/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) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/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/percpu.h \
$(wildcard include/config/modules.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/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/time.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/key.h \
$(wildcard include/config/keys.h) \
$(wildcard include/config/sysctl.h) \
include/linux/rbtree.h \
include/linux/sysctl.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.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/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \
arch/arm/plat-pnx/include/mach/vmalloc.h \
/data/embedded/acer/acergit/linux/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/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/fdtable.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/fsnotify.h \
include/linux/dnotify.h \
include/linux/inotify.h \
include/linux/audit.h \
$(wildcard include/config/change.h) \
$(wildcard include/config/audit.h) \
include/linux/elf-em.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/signal.h \
include/linux/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/uio.h \
include/linux/hash.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
include/linux/kmod.h \
include/linux/elf.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
include/linux/marker.h \
include/linux/tracepoint.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/mount.h \
include/linux/file.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.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/embedded/acer/acergit/linux/arch/arm/include/asm/shmparam.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/shmbuf.h \
include/linux/msg.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/msgbuf.h \
include/linux/xfrm.h \
include/net/flow.h \
include/linux/in6.h \
include/linux/swap.h \
$(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \
include/linux/memcontrol.h \
$(wildcard include/config/cgroup/mem/cont.h) \
include/linux/cgroup.h \
include/linux/cgroupstats.h \
include/linux/taskstats.h \
include/linux/prio_heap.h \
include/linux/node.h \
include/linux/sysdev.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.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) \
$(wildcard include/config/x86/64.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/dma.h \
$(wildcard include/config/isa/dma/api.h) \
$(wildcard include/config/pci.h) \
fs/internal.h \
fs/dcache.o: $(deps_fs/dcache.o)
$(deps_fs/dcache.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | fs/.dcache.o.cmd | bat | gpl-2.0 | 22,284 |
cmd_drivers/md/dm-kcopyd.o := gcc -Wp,-MD,drivers/md/.dm-kcopyd.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dm_kcopyd)" -D"KBUILD_MODNAME=KBUILD_STR(dm_mod)" -c -o drivers/md/dm-kcopyd.o drivers/md/dm-kcopyd.c
deps_drivers/md/dm-kcopyd.o := \
drivers/md/dm-kcopyd.c \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/asm/posix_types.h \
$(wildcard include/config/x86/32.h) \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/paravirt.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/cmov.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
include/asm/alternative.h \
include/asm/asm.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/debug/lock/alloc.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/errno.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/asm-generic/atomic.h \
include/linux/blkdev.h \
$(wildcard include/config/block.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
$(wildcard include/config/mmu.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/split/ptlock/cpus.h) \
$(wildcard include/config/keys.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/user/sched.h) \
$(wildcard include/config/sysfs.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/preempt/notifiers.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/lockdep.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/compat.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
include/linux/preempt.h \
include/linux/thread_info.h \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/math64.h \
include/asm/div64.h \
include/asm/timex.h \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/x86/rdc321x.h) \
include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/jiffies.h \
include/linux/rbtree.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/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/completion.h \
include/linux/wait.h \
include/asm/mmu.h \
include/linux/mutex.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
include/asm-x86/mach-default/mach_apicdef.h \
include/linux/sem.h \
include/linux/ipc.h \
include/asm/ipcbuf.h \
include/linux/kref.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
include/asm-generic/signal.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slabinfo.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/linux/rcuclassic.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/asm/seccomp.h \
include/asm/seccomp_32.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/asm/unistd_32.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/kdev_t.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/compat/vdso.h) \
include/asm/user.h \
include/asm/user_32.h \
include/asm/vdso.h \
include/asm/desc.h \
include/asm/ldt.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/asm/local.h \
include/asm/module.h \
$(wildcard include/config/m486.h) \
$(wildcard include/config/m586.h) \
$(wildcard include/config/m586tsc.h) \
$(wildcard include/config/m586mmx.h) \
$(wildcard include/config/mcore2.h) \
$(wildcard include/config/m686.h) \
$(wildcard include/config/mpentiumii.h) \
$(wildcard include/config/mpentiumiii.h) \
$(wildcard include/config/mpentiumm.h) \
$(wildcard include/config/mpentium4.h) \
$(wildcard include/config/mk6.h) \
$(wildcard include/config/mk8.h) \
$(wildcard include/config/mcrusoe.h) \
$(wildcard include/config/mefficeon.h) \
$(wildcard include/config/mwinchipc6.h) \
$(wildcard include/config/mwinchip2.h) \
$(wildcard include/config/mwinchip3d.h) \
$(wildcard include/config/mcyrixiii.h) \
$(wildcard include/config/mviac3/2.h) \
$(wildcard include/config/mviac7.h) \
$(wildcard include/config/mgeodegx1.h) \
$(wildcard include/config/mgeode/lx.h) \
include/linux/semaphore.h \
include/asm/device.h \
$(wildcard include/config/dmar.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.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/asm/pgtable.h \
include/asm/pgtable_32.h \
$(wildcard include/config/highpte.h) \
include/asm/paravirt.h \
include/asm/pgtable-2level-defs.h \
include/asm/pgtable-2level.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
include/linux/uaccess.h \
include/asm/uaccess.h \
include/asm/uaccess_32.h \
$(wildcard include/config/x86/intel/usercopy.h) \
$(wildcard include/config/x86/wp/works/ok.h) \
include/asm/cacheflush.h \
$(wildcard include/config/debug/rodata.h) \
$(wildcard include/config/debug/rodata/test.h) \
include/asm/highmem.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/asm/hardirq.h \
include/asm/hardirq_32.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
include/asm/irq_32.h \
include/asm-x86/mach-default/irq_vectors.h \
include/asm-x86/mach-default/irq_vectors_limits.h \
include/asm/irq_regs.h \
include/asm/irq_regs_32.h \
include/asm/hw_irq.h \
include/asm/hw_irq_32.h \
include/linux/profile.h \
include/asm/sections.h \
include/asm-generic/sections.h \
include/linux/irq_cpustat.h \
include/asm/tlbflush.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
include/asm/io.h \
include/asm/io_32.h \
include/asm-generic/iomap.h \
include/linux/vmalloc.h \
include/linux/bsg.h \
include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/linux/elevator.h \
include/linux/dm-kcopyd.h \
include/linux/dm-io.h \
drivers/md/dm.h \
include/linux/device-mapper.h \
$(wildcard include/config/dm/debug.h) \
include/linux/hdreg.h \
include/linux/ata.h \
drivers/md/dm-kcopyd.o: $(deps_drivers/md/dm-kcopyd.o)
$(deps_drivers/md/dm-kcopyd.o):
| namgk/kernel-tut | drivers/md/.dm-kcopyd.o.cmd | bat | gpl-2.0 | 21,581 |
cmd_drivers/char/built-in.o := /opt/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/char/built-in.o drivers/char/mem.o drivers/char/random.o drivers/char/tty_io.o drivers/char/n_tty.o drivers/char/tty_ioctl.o drivers/char/tty_ldisc.o drivers/char/tty_buffer.o drivers/char/tty_port.o drivers/char/pty.o drivers/char/misc.o drivers/char/vt_ioctl.o drivers/char/vc_screen.o drivers/char/selection.o drivers/char/keyboard.o drivers/char/consolemap.o drivers/char/consolemap_deftbl.o drivers/char/vt.o drivers/char/defkeymap.o drivers/char/sysrq.o drivers/char/bcom_vibrator.o drivers/char/broadcom/built-in.o
| sembre/kernel_totoro_update3 | common/drivers/char/.built-in.o.cmd | bat | gpl-2.0 | 613 |
call "setup_mssdk71.bat"
cd .
if "%1"=="" (nmake -f hdlcodercpu_eml.mk all) else (nmake -f hdlcodercpu_eml.mk %1)
@if errorlevel 1 goto error_exit
exit /B 0
:error_exit
echo The make command returned an error of %errorlevel%
An_error_occurred_during_the_call_to_make
| sandeshghimire/model-based-fpga-desing | matlab_model/hdlcodercpu_eml_grt_rtw/hdlcodercpu_eml.bat | bat | gpl-2.0 | 271 |
cmd_security/built-in.o := ld -m elf_i386 -r -o security/built-in.o security/commoncap.o
| namgk/kernel-tut | security/.built-in.o.cmd | bat | gpl-2.0 | 93 |
cmd_net/netfilter/xt_connmark.o := arm-linux-gnueabi-gcc -Wp,-MD,net/netfilter/.xt_connmark.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(xt_connmark)" -D"KBUILD_MODNAME=KBUILD_STR(xt_connmark)" -c -o net/netfilter/xt_connmark.o net/netfilter/xt_connmark.c
deps_net/netfilter/xt_connmark.o := \
net/netfilter/xt_connmark.c \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/32v6k.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock_api_up.h \
include/linux/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/benoit/kernel_android/32/es209ra/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/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/percpu.h \
$(wildcard include/config/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/kmemcheck.h \
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/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/net.h \
$(wildcard include/config/sysctl.h) \
include/linux/socket.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/socket.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/random.h \
include/linux/ioctl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/sysctl.h \
include/linux/textsearch.h \
include/linux/err.h \
include/net/checksum.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/uaccess.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
$(wildcard include/config/async/tx/dma.h) \
$(wildcard include/config/async/tx/disable/channel/switch.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/semaphore.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/scatterlist.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/mach/es209ra.h) \
$(wildcard include/config/vmsplit/2g.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/pgtable-hwdef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ipcbuf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sigcontext.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/have/mlocked/page/bit.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/dma-mapping.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/net/netfilter/nf_conntrack.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/conntrack/mark.h) \
$(wildcard include/config/nf/conntrack/secmark.h) \
$(wildcard include/config/net/ns.h) \
include/linux/netfilter/nf_conntrack_common.h \
include/linux/netfilter/nf_conntrack_tcp.h \
include/linux/netfilter/nf_conntrack_dccp.h \
include/net/netfilter/nf_conntrack_tuple.h \
include/linux/netfilter/x_tables.h \
$(wildcard include/config/x86/64.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/if_packet.h \
include/linux/delay.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/delay.h \
include/linux/ethtool.h \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/pimsm/v1.h) \
$(wildcard include/config/ip/pimsm/v2.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/pimsm/v2.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/radix-tree.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
$(wildcard include/config/debug/shirq.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hardirq.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8x60.h) \
arch/arm/mach-msm/include/mach/irqs-8x50.h \
arch/arm/mach-msm/include/mach/sirc.h \
$(wildcard include/config/msm/soc/rev/a.h) \
arch/arm/mach-msm/include/mach/msm_iomap.h \
arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \
$(wildcard include/config/msm/debug/uart.h) \
include/linux/irq_cpustat.h \
include/linux/netfilter_ipv4.h \
include/linux/netfilter/nf_conntrack_tuple_common.h \
include/linux/netfilter/nf_conntrack_sctp.h \
include/linux/netfilter/nf_conntrack_proto_gre.h \
include/net/netfilter/ipv6/nf_conntrack_icmpv6.h \
include/linux/netfilter/nf_conntrack_ftp.h \
include/linux/netfilter/nf_conntrack_pptp.h \
include/linux/netfilter/nf_conntrack_h323.h \
include/linux/netfilter/nf_conntrack_h323_asn1.h \
include/linux/netfilter/nf_conntrack_h323_types.h \
include/linux/netfilter/nf_conntrack_sane.h \
include/linux/netfilter/nf_conntrack_sip.h \
include/net/netfilter/ipv4/nf_conntrack_ipv4.h \
include/net/netfilter/ipv6/nf_conntrack_ipv6.h \
include/linux/netfilter/xt_connmark.h \
net/netfilter/xt_connmark.o: $(deps_net/netfilter/xt_connmark.o)
$(deps_net/netfilter/xt_connmark.o):
| b8e5n/KTG-kernel_es209ra | net/netfilter/.xt_connmark.o.cmd | bat | gpl-2.0 | 29,979 |
cmd_drivers/media/video/mhl/built-in.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/media/video/mhl/built-in.o drivers/media/video/mhl/sii9234.o
| PrestigeMod/SHW-M440S | drivers/media/video/mhl/.built-in.o.cmd | bat | gpl-2.0 | 213 |
@echo off
SET PERLPATH=%CD%\64\perl
SET PATH=C:\Windows\system32
SET PATH=%PERLPATH%\perl\site\bin;%PATH%
SET PATH=%PERLPATH%\perl\bin;%PATH%
SET PATH=%PERLPATH%\c\bin;%PATH%
cmd | mgreter/webmerge | pack/win/app/99-cmd-64.bat | bat | gpl-3.0 | 182 |
rem START BATCH COMMANDS
rem PLEASE MAKE SURE THAT USER ACCOUNT CONTROL (UAC) IS TURNED OFF AND PC HAS BEEN REBOOTED FIRST!
rem If you are using VISTA x32 version, then edit this file first by adding rem in front of every line that contains the phrase syswow64?. Then run the acript again.
@echo off
PAUSE
takeown /f c:\windows\syswow64\notepad.exe
cacls c:\windows\syswow64\notepad.exe /G Administrators:F
takeown /f c:\windows\system32\notepad.exe
cacls c:\windows\system32\notepad.exe /G Administrators:F
takeown /f c:\windows\notepad.exe
cacls c:\windows\notepad.exe /G Administrators:F
copy c:\windows\syswow64\notepad.exe c:\windows\syswow64\notepad.exe.backup
copy c:\windows\system32\notepad.exe c:\windows\system32\notepad.exe.backup
copy c:\windows\notepad.exe c:\windows\notepad.exe.backup
copy "%VIM_BIN%\gvim.exe" c:\windows\syswow64\notepad.exe
copy "%VIM_BIN%\gvim.exe" c:\windows\system32\notepad.exe
copy "%VIM_BIN%\gvim.exe" c:\windows\notepad.exe
copy "%VIM_BIN%\..\_vimrc" c:\windows\syswow64\_vimrc
copy "%VIM_BIN%\..\_vimrc" c:\windows\system32\_vimrc
copy "%VIM_BIN%\..\_vimrc" c:\windows\_vimrc
@echo on
rem END BATCH COMMANDS
| Erotemic/local | vim/grave/replace_notepad_with_vim.bat | bat | gpl-3.0 | 1,163 |
java -Xmx512M -cp .;lib/*;lib/uncommons-maths-1.2.3/uncommons-maths-1.2.3.jar;lib/batik/* core.DTNSim %* | DSG-UniFE/ICeDiM | one.bat | bat | gpl-3.0 | 104 |
rem msvc writes all objects to CWD, so we need do some renames to resolve conflicts
move common\common.c common\host_common.c
move common\soundlib\libmpg\common.c common\soundlib\libmpg\mpg_common.c
cl -Dvsnprintf=_vsnprintf -o xash_sdl.dll /DEBUG /Zi /DLL /W3 /Gm /GD /G6 /LD /O2 /MD /O2 /D_USRDLL /DXASH_FORCEINLINE /DXASH_FASTSTR /D_WINDLL common\*.c client\*.c server\*.c client\vgui\*.c common\soundlib\*.c common\soundlib\libmpg\*.c common\imagelib\*.c platform\sdl\*.c platform\win32\*.c -I ../msvc6/ -I ../SDL2-2.0.5/include/ -Icommon -I../common -I. -I../pm_shared -Iclient -Iserver -Iclient/vgui -Icommon/sdl -DXASH_VGUI -DXASH_SDL -Dsnprintf=_snprintf -DDBGHELP /link /DLL /LIBPATH:..\msvc6 user32.lib shell32.lib gdi32.lib msvcrt.lib winmm.lib /nodefaultlib:"libc.lib" /subsystem:windows ../SDL2-2.0.5/lib/x86/SDL2.lib kernel32.lib winspool.lib comdlg32.lib advapi32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /DEBUG
move common\host_common.c common\common.c
move common\soundlib\libmpg\mpg_common.c common\soundlib\libmpg\common.c
| ShaunNoWay/xash3d | msvc6/build.bat | bat | gpl-3.0 | 1,061 |
@echo off
cd %~dp0
powershell -Command "& {Import-Module .\packages\psake.4.3.2\tools\psake.psm1; Invoke-psake .\scripts\default.ps1 License -parameters @{"buildConfiguration"='Release';} }"
| flumbee/netwatch | license.cmd | bat | agpl-3.0 | 193 |
git stash
git svn rebase
git svn dcommit
git stash pop
| Refuge89/Arc_Mind | gitcommit.bat | bat | agpl-3.0 | 56 |
@echo off
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
rem :: WLA DX compiling batch file v2 ::
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
rem :: You have to edit this file before it will work! ::
rem :: Edit the line below, starting with "SET WLAPATH=", so ::
rem :: the bit after the = is the directory where you've put ::
rem :: WLA DX. It *must* have a backslash "\" at the end but ::
rem :: *not* contain any quotes. It's not a problem to have ::
rem :: long filenames with spaces. If you put WLA DX in ::
rem :: C:\Program Files\WLA DX\ then of course you don't need ::
rem :: to edit it. ::
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
SET WLAPATH=C:\Haroldo\backword\
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
rem :: Do not edit anything below here unless you know what ::
rem :: you're doing! ::
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
rem Cleanup to avoid confusion
if exist object.o del object.o
rem Compile
"%WLAPATH%wla-z80.exe" -o %1 object.o
rem Make linkfile
echo [objects]>linkfile
echo object.o>>linkfile
rem Link
"%WLAPATH%wlalink.exe" -drvs linkfile output.sms
rem Fixup for eSMS
if exist output.sms.sym del output.sms.sym
ren output.sym output.sms.sym
rem Cleanup to avoid mess
if exist linkfile del linkfile
if exist object.o del object.o
| haroldo-ok/really-old-stuff | mastersystem/backword/Compile.bat | bat | apache-2.0 | 1,523 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\INSALATA.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\INSALATA.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
| tumi8/INSALATA | docs/make.bat | bat | apache-2.0 | 7,262 |
@ECHO OFF
REM Command file for Sphinx documentation
set SPHINXBUILD=sphinx-build
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/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. pdf to make PDF 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 (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "pdf" (
%SPHINXBUILD% -b pdf %ALLSPHINXOPTS% %BUILDDIR%/pdf
@echo.
@echo. "Build finished. The PDF files are in %BUILDDIR%/pdf."
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
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
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\django-excel.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-excel.ghc
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
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
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| rhouse2/django-rest2pdf | docs/make.bat | bat | bsd-3-clause | 3,287 |
@echo off
cd ../..
SET INPUT_SCHEMA_FILE_PATH=resources/IFC2X3_TC1.exp
SET INPUT_MODEL_FILE_PATH=C:\DRUM\!git_local\DRUM\Test\Models\drumbeat.cs.hut.fi\linked\TS-Linked-1\Structural.ifc
SET OUTPUT_MODEL_FILE_PATH=C:\DRUM\!git_local\DRUM\Test\Models\drumbeat.cs.hut.fi\linked\TS-Linked-1\Structural
rem sample formats: TURTLE, TURTLE.GZ, NQUADS, NQUADS.GZ, NTRIPLES, NTRIPLES.GZ, JSONLD, RDFXML, etc.
SET FORMAT=TURTLE
SET CONVERSION_OPTION=Standard
bin/export-ifc2rdf.bat -lcf config/log4j.xml -cf config/ifc2rdf-config.xml -isf %INPUT_SCHEMA_FILE_PATH% -imf %INPUT_MODEL_FILE_PATH% -omf %OUTPUT_MODEL_FILE_PATH% -off %FORMAT% -oln %CONVERSION_OPTION%
pause
| Web-of-Building-Data/Ifc2Rdf | software/distributives/export-ifc2rdf/1.5.3-SNAPSHOT/samples/scripts/export-structural-model-TURTLE-Standard-to-file-001.bat | bat | mit | 663 |
@echo off
if "%1"=="javadate" date /t & goto end
if "%1"=="javatime" time /t & goto end
for /f "tokens=1-4 eol=/ DELIMS=/ " %%i in ('date /t') do set BUILD=%%l%%j%%k
echo %BUILD%
:end
| AudriusButkevicius/TurboVNC | java/cmake/getdate.bat | bat | gpl-2.0 | 188 |
:: Script for migrating saved games in Windows 2000/XP/Vista/7
::
:: Put this batch file into the ScummVM directory
:: This script will copy any saved games located in the
:: old default location, to the new default location.
::
:: (c) 2012 ScummVM Team
::
@echo off
echo ScummVM Saved Games Migration Script
echo The default location for saved games changed
echo in Windows NT4/2000/XP/Vista/7 for ScummVM 1.5.0
echo This script will copy any saved games stored in
echo the old default location, to the new default location
pause
if defined APPDATA goto :test2
echo.
echo Unable to access the Application Data variable!
pause
goto :eof
:test2
if exist "%APPDATA%" goto :test3
echo.
echo Application Data directory doesn't exist!
pause
goto :eof
:test3
if exist "%APPDATA%\ScummVM\" goto :test4
echo.
echo ScummVM Application Data directory doesn't exist!
pause
goto :eof
:test4
if exist "%APPDATA%\ScummVM\Saved Games\" goto :copyfiles
echo.
echo ScummVM Saved Games directory doesn't exist!
pause
goto :eof
:copyfiles
echo Copying ScummVM Saved Games...
xcopy /EXCLUDE:migration.txt /F /-Y * "%APPDATA%\ScummVM\Saved Games"
echo.
echo All saved games have been copied to the new location of "%APPDATA%\ScummVM\Saved Games"
pause
| klusark/scummvm | dists/win32/migration.bat | bat | gpl-2.0 | 1,238 |
cmd_init/mounts.o := arm-linux-gnueabi-ld -EL -r -o init/mounts.o init/do_mounts.o init/do_mounts_initrd.o
| b8e5n/KTG-kernel_es209ra | init/.mounts.o.cmd | bat | gpl-2.0 | 111 |
@echo off
setlocal ENABLEEXTENSIONS
set MPI=Microsoft HPC Pack 2008 SDK
set MPI=DeinoMPI
set MPI=MPICH2
set PATH="%ProgramFiles%\%MPI%\bin";%PATH%
set MPIEXEC=mpiexec
set NP_FLAG=-n
set NP=5
set PYTHON=C:\Python25\python.exe
set PYTHON=C:\Python26\python.exe
set PYTHON=C:\Python27\python.exe
set PYTHON=C:\Python30\python.exe
set PYTHON=C:\Python31\python.exe
set PYTHON=C:\Python32\python.exe
set PYTHON=python
@echo on
set MPIEXEC=
set NP_FLAG=
set NP=
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.01.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.08.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.16.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.29.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.32.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.34.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-2.35.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.01.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.02.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.03.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.04.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.05.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.06.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.07.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.08.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.09.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.11.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.12.py
%MPIEXEC% %NP_FLAG% %NP% %PYTHON% ex-3.13.py
| capoe/espressopp.soap | contrib/mpi4py/mpi4py-1.3/demo/mpi-ref-v1/runtests.bat | bat | gpl-3.0 | 1,358 |
:: iKeyHelper
:: Copyright (C) 2012 Callum Jones
:: See attached license
:: if you get all the tools, pop them in resources\tools\
@ECHO OFF
title iKeyHelper
::------------------------------------------------------------------------------------
setlocal enableextensions enabledelayedexpansion
:beginning
set tools=%appdata%\iKeyHelper\bin
set logdir=%appdata%\iKeyHelper\logs
set tempdir=%temp%\iKeyHelper
if not exist %appdata%\iKeyHelper mkdir %appdata%\iKeyHelper >NUL
if not exist %tools% mkdir %tools% >NUL
if not exist %tempdir% mkdir %tempdir% >NUL
if not exist %logdir% mkdir %logdir% >NUL
if "%uuid%"=="" (
set uuid=iKeyHelper~git
set version=%uuid%
)
call :log #############################################################################
call :log Starting iKeyHelper v%version% on %date%
call :log #############################################################################
if "%uuid%"=="iKeyHelper~git" (
REM check for tools
call :toolcheck 7za.exe
call :toolcheck binmay.exe
call :toolcheck curl.exe
call :toolcheck dmg.exe
call :toolcheck genpass.exe
call :toolcheck hfsplus.exe
call :toolcheck iconv.dll
call :toolcheck ideviceinfo.exe
call :toolcheck injectpois0n.exe
call :toolcheck intl.dll
call :toolcheck irecovery.exe
call :toolcheck libcurl.dll
call :toolcheck libeay32.dll
call :toolcheck libglib-2.0-0.dll
call :toolcheck libpng12.dll
call :toolcheck libssl32.dll
call :toolcheck libxml2.dll
call :toolcheck readline5.dll
call :toolcheck ssr.exe
call :toolcheck xpwntool.exe
call :toolcheck zlib1.dll
)
title iKeyHelper v%version% - (c) 2012 cj
cls
if not exist %UserProfile%\iKeyHelper mkdir %UserProfile%\iKeyHelper >NUL
if not exist "%UserProfile%\iKeyHelper\iKeyHelper.settings.bat" (
echo Cannot find settings file.
echo Downloading new settings file.
pushd %UserProfile%\iKeyHelper
call %tools%\curl -LO https://github.com/cj123/iKeyHelper/raw/master/resources/iKeyHelper.settings.bat --progress-bar
popd
)
:: parse the settings
call %UserProfile%\iKeyHelper\iKeyHelper.settings.bat this-is-meant-to-be-run
if not exist %tempdir% mkdir %tempdir% >NUL
:: Run on startup
color 0%fontcolour%
cd %tempdir%
:: delete me some stuffs
if exist * del * /S /Q >> %logme%
if exist dlipsw rmdir dlipsw /S /Q >> %logme%
if exist IPSW rmdir IPSW /S /Q >> %logme%
if exist tools rmdir tools /S /Q >> %logme%
if exist decrypted rmdir decrypted /S /Q >> %logme%
if exist *.txt del *.txt /S /Q >> %logme%
cls
cd %tools%
if not exist %appdata%\iKeyHelper\bin\genpass.exe (
echo Extracting Files...
:: Extract the tools
if not exist %tempdir% mkdir %tempdir% >nul
if not exist %tools% mkdir %tools% >nul
copy %MYFILES%\7za.exe %tools%\7za.exe >nul
call 7za.exe x -y -mmt %appdata%\iKeyHelper\tools.zip >> %logme%
)
if "%viewlog%"=="yes" (
if exist %tools%\baretail.exe (
taskkill /F /IM "baretail.exe" 2>NUL >NUL
start "" %tools%\baretail "%logme%"
)
)
:: check for old files and remove them
call :log Clearing existing files
if exist %tempdir%\kbags rmdir /S /Q %tempdir%\kbags >> %logme%
if exist %tempdir%\IPSW rmdir /S /Q %tempdir%\IPSW >> %logme%
if exist %tempdir%\ipad-bb rmdir /S /Q %tempdir%\ipad-bb >> %logme%
if exist %tempdir%\dlipsw rmdir /S /Q %tempdir%\dlipsw >> %logme%
if exist %tempdir%\keys.txt del /S /Q if exist %tempdir%\keys.txt >> %logme%
if exist %tempdir%\kbags.txt del /S /Q %tempdir%\kbags.txt >> %logme%
cls
goto top
:top
cd %tempdir%
cls
set IPSW=
echo [v=%version%]
echo.
echo iKeyHelper
echo --------------
echo ________________________________________________________________________________
echo Drag in an...
echo.
echo $$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$\
echo \_$$ _^|$$ __$$\ $$ __$$\ $$ ^| $\ $$ ^|
echo $$ ^| $$ ^| $$ ^|$$ / \__^|$$ ^|$$$\ $$ ^|
echo $$ ^| $$$$$$$ ^|\$$$$$$\ $$ $$ $$\$$ ^|
echo $$ ^| $$ ____/ \____$$\ $$$$ _$$$$ ^|
echo $$ ^| $$ ^| $$\ $$ ^|$$$ / \$$$ ^|
echo $$$$$$\ $$ ^| \$$$$$$ ^|$$ / \$$ ^|
echo \______^|\__^| \______/ \__/ \__^|
echo.
echo.
echo ...or type "x" to download from Apple.
if not exist "\Windows\System32\libusb0.dll" (
echo ^|______________________________________________________________________________^|
echo ^| Error: You do not have libusb. Please take care when installing it. ^|
CALL :log error Unable to find LibUSB. Please install it.
)
if not exist "%ProgramFiles%\iTunes\" (
echo ^|______________________________________________________________________________^|
echo ^| Error: You do not have iTunes. Please install it from apple.com/itunes ^|
CALL :log error Unable to find iTunes. Please install it.
)
echo.
echo ________________________________________________________________________________
:: open readme (once)
if not exist %appdata%\iKeyHelper\readme.txt (
call :log Opening README
start "http://www.icj.me/iKeyHelper"
echo read >%appdata%\iKeyHelper\readme.txt
)
set /P quotedinfile=- File: %=%
:: Remove quotes from infile if they exist, then put them back ;)
CALL :dequote quotedinfile
set IPSW="%quotedinfile%"
if %IPSW%=="x" (
goto downloadme
) else if %IPSW%=="dl" (
goto downloadme
)
goto checkloop
:downloadme
call :log Opening IPSW downloader...
cls
echo.
echo Download an...
echo.
echo $$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$\
echo \_$$ _^|$$ __$$\ $$ __$$\ $$ ^| $\ $$ ^|
echo $$ ^| $$ ^| $$ ^|$$ / \__^|$$ ^|$$$\ $$ ^|
echo $$ ^| $$$$$$$ ^|\$$$$$$\ $$ $$ $$\$$ ^|
echo $$ ^| $$ ____/ \____$$\ $$$$ _$$$$ ^|
echo $$ ^| $$ ^| $$\ $$ ^|$$$ / \$$$ ^|
echo $$$$$$\ $$ ^| \$$$$$$ ^|$$ / \$$ ^|
echo \______^|\__^| \______/ \__/ \__^|
echo.
echo --------------------------------------------------------------------------------
echo - You have chosen to download an IPSW file.
echo - Which device are you downloading for? (e.g. iPhone3,1)
set /P dldevice=- Device: %=%
echo - Which firmware do you wish to download? (e.g. 5.0.1)
set /P dlfw=- Firmware: %=%
if exist %tempdir%\dlipsw rmdir %tempdir%\dlipsw >NUL
if not exist %tempdir%\dlipsw mkdir %tempdir%\dlipsw >NUL
cd %tempdir%\dlipsw
if exist url.txt del url.txt /S /Q >NUL
echo - Fetching Link...
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent http://api.ios.icj.me/v2/%dldevice%/%dlfw%/url -I>response.txt
:: check for multiple buildids
findstr "300 Multiple Choices" response.txt > nul
if errorlevel 1 (
set downloadlink=http://api.ios.icj.me/v2/%dldevice%/%dlfw%
goto downloadipsw
)
<nul set /p "= - Multiple BuildIDs Found: "
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent http://api.ios.icj.me/v2/%dldevice%/%dlfw%/buildid>choices.txt
:: clean up the text file
ssr 0 """ "" choices.txt
ssr 0 "," "" choices.txt
ssr 0 "{" "" choices.txt
ssr 0 "}" "" choices.txt
ssr 0 "[" "" choices.txt
ssr 0 "]" "" choices.txt
for %%a in ("choices.txt") do (
for /f "tokens=2 delims=:" %%B in ('find "buildid" ^< %%a') do (
call :addtovar %%B
)
)
echo %buildids%
set /P dlid=- Choose one BuildID: %=%
set downloadlink=http://api.ios.icj.me/v2/%dldevice%/%dlid%
goto downloadipsw
:downloadipsw
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent %downloadlink%/url -I>response.txt
findstr "200 OK" response.txt > nul
if errorlevel 1 (
echo - Error: Link not found.
echo - Press any key to return to the IPSW downloader.
call :log error Unable to find IPSW link
pause >NUL
goto downloadme
)
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent %downloadlink%/filename>ipsw_name.txt
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent %downloadlink%/url>url.txt
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent %downloadlink%/filesize>filesize.txt
set /p ipswName=<ipsw_name.txt
set /p downloadlink=<url.txt
set /p filesize=<filesize.txt
echo - Downloading %ipswName%... [%filesize%MB]
call :log downloading IPSW from %downloadlink%
echo --------------------------------------------------------------------------------
call %tools%\curl -LO %downloadlink% --progress-bar
call :log IPSW Name: %ipswName%
:: check for my HDD for IPSWs :P
if exist "G:\Apple Firmware" (
call :log moving %ipswName% to "%UserProfile%\Desktop\%ipswName%"
if not exist "G:\Apple Firmware\%dldevice%" mkdir "G:\Apple Firmware\%dldevice%" >NUL
if not exist "G:\Apple Firmware\%dldevice%\Official" mkdir "G:\Apple Firmware\%dldevice%\Official" >NUL
move /y "%ipswName%" "G:\Apple Firmware\%dldevice%\Official\%ipswName%" >> %logme%
if not exist "G:\Apple Firmware\%dldevice%\Official\%ipswName%" (
call :log error IPSW move failed
) else (
call :log IPSW move succeeded
)
set IPSW="G:\Apple Firmware\%dldevice%\Official\%ipswName%"
cls
echo - IPSW download finished^^! Saved to "G:\Apple Firmware\%dldevice%\Official\%ipswName%"
) else (
call :log moving %ipswName% to "%UserProfile%\Desktop\%ipswName%"
move /y "%ipswName%" "%UserProfile%\Desktop\%ipswName%" >> %logme%
if not exist "%UserProfile%\Desktop\%ipswName%" (
call :log error IPSW move failed
) else (
call :log IPSW move succeeded
)
set IPSW="%UserProfile%\Desktop\%ipswName%"
cls
echo - IPSW download finished^^! Saved to "%UserProfile%\Desktop\%ipswName%"
)
echo - Press any key to continue...
pause >NUL
:checkloop
echo.
echo --------------------------------------------------------------------------------
echo.
cls
echo [v=%version%]
echo Running iKeyHelper
echo ----------------------
echo.
echo.
call :log Detected input file as %IPSW%
:: start the timer
set starttime=%time%
:: create userside directory
if not exist "%bundledir%" (
mkdir "%bundledir%" >NUL
call :log Making directory: %bundledir%
)
:: check whether this is infact an IPSW...
echo %IPSW% | findstr ".ipsw" >NUL
if not "%ERRORLEVEL%"=="0" (
CALL :log error This isn't an IPSW.
echo -^^!- Error^^! This is not an IPSW. Try again, but use some brain cells next time?
echo -^^!- Press any key to go back to the menu...
pause >NUL
goto beginning
)
:: get the short file name of the IPSW.
call :sfn %IPSW%
<nul set /p "= - Extracting Files... "
cd %tempdir%
:: extract ipsw except RootFS and Ramdisks
call :log Unzipping %IPSW%...
call %tools%\7za.exe e -oIPSW -mmt %IPSW% kernel* Firmware/* *.plist >> %logme%
echo Done^^!
<nul set /p "= - IPSW Info: "
call :parse %tempdir%\IPSW\Restore.plist ProductVersion
call :parse %tempdir%\IPSW\Restore.plist MarketingVersion
if not %ProductVersion%==%MarketingVersion% (
set marketingversionexists=yes
set MarketingVersiontitle= [%MarketingVersion%]
) else (
set marketingversionexists=no
)
<nul set /p "= iOS %ProductVersion%%MarketingVersiontitle% "
call :parse %tempdir%\IPSW\Restore.plist Platform
call :parse %tempdir%\IPSW\BuildManifest.plist BuildTrain
call :parse %tempdir%\IPSW\Restore.plist ProductType
call :parse %tempdir%\IPSW\BuildManifest.plist BuildNumber
<nul set /p "= (%BuildNumber%) "
if exist %tempdir%\temp.txt del %tempdir%\temp.txt /S /Q >> %logme%
if exist %tempdir%\sha1.txt del %tempdir%\sha1.txt /S /Q >> %logme%
for %%a in (%IPSW%) do (
set /a sizeofipsw=%%~za / 1048576
)
call :log %shortipsw% size: %sizeofipsw%MB
set bdid=%ProductType:,=%
call :tolowercase %bdid%
call :log Getting Device Definitions...
pushd %UserProfile%\iKeyHelper
call %tools%\curl -LO --silent https://github.com/cj123/iKeyHelper/raw/master/resources/device_definitions.bat >> %logme%
popd
call %UserProfile%\iKeyHelper\device_definitions.bat %bdid%
<nul set /p "= for %deviceid% "
if exist %tempdir%\boardid rmdir %tempdir%\boardid /S /Q >NUL
call :log Device recognized as %deviceid%
title iKeyHelper v%version% running %deviceid%, iOS %ProductVersion%%MarketingVersiontitle% (%BuildNumber%) - (c) 2012 cj
:: ipsw name
set ipswname=%shortipsw:_Restore.ipsw=%
set ipswname=%ipswname: =%
:: baseband version detection
call :log Detecting Baseband version
pushd %tempdir%\IPSW
if exist baseband.txt del baseband.txt /S /Q >NUL
if "%boardid%"=="n90" (
dir /B /OS *.Release.bbfw >>baseband.txt
%tools%\ssr.exe 0 "ICE3_" "Baseband:" baseband.txt
%tools%\ssr.exe 0 "_BOOT_" /SSR_NL/ baseband.txt
:: yay a fun bit
FOR /F "tokens=2 delims=:" %%a IN ('find "Baseband" ^<baseband.txt') DO set baseband=%%a
) else if "%boardid%"=="n90b" (
dir /B /OS *.Release.bbfw >>baseband.txt
%tools%\ssr.exe 0 "ICE3_" "Baseband:" baseband.txt
%tools%\ssr.exe 0 "_BOOT_" /SSR_NL/ baseband.txt
:: yay a fun bit
FOR /F "tokens=2 delims=:" %%a IN ('find "Baseband" ^<baseband.txt') DO set baseband=%%a
) else if "%boardid%"=="n94" (
dir /B /OS Trek-*.Release.bbfw >>baseband.txt
%tools%\ssr.exe 0 "Trek-" "Baseband:" baseband.txt
%tools%\ssr.exe 0 ".Release.bbfw" /SSR_NL/ baseband.txt
:: yay a fun bit
FOR /F "tokens=2 delims=:" %%a IN ('find "Baseband" ^<baseband.txt') DO set baseband=%%a
) else if "%boardid%"=="n92" (
:: should be Phoenix-VE.RS.ION.Release.bbfw ?
::del Phoenix* /S /Q >NUL 2>NUL
dir /B /OS *.Release.bbfw >>baseband.txt
%tools%\ssr.exe 0 "Phoenix-" "Baseband:" baseband.txt
%tools%\ssr.exe 0 ".Release" /SSR_NL/ baseband.txt
:: yay a fun bit
FOR /F "tokens=2 delims=:" %%a IN ('find "Baseband" ^<baseband.txt') DO set baseband=%%a
) else (
call :log This device does not have a baseband^^! [or-baseband-detection-is-not-supported]
set baseband=
)
popd
if "%boardid%"=="n90" (
echo - Baseband %baseband%
) else if "%boardid%"=="n92" (
echo - Baseband %baseband%
) else if "%boardid%"=="n90b" (
echo - Baseband %baseband%
) else (
REM yes this is important
echo.
)
if "%requiresdevice%"=="yes" (
echo - This firmware requires you to be using an %deviceid% to get keys.
<nul set /p "= - Please plug in your %deviceid% in NORMAL mode... "
goto devicecheck
) else (
echo - Use any A4 device to get keys for this firmware.
goto nodevicecheck
)
:devicecheck
set detectedDevice=
for /F "tokens=2 delims=: " %%t in ('%tools%\ideviceinfo.exe ^| findstr "HardwareModel"') do set detectedDevice=%%t
set detectedDevice=%detectedDevice: =%
set detectedID=
for /F "tokens=2 delims=: " %%v in ('%tools%\ideviceinfo.exe ^| findstr "ProductType"') do set detectedID=%%v
%tools%\ideviceinfo.exe | find /I /N "No device found">NUL
if "%ERRORLEVEL%"=="1" (
echo Found device^^!
call :log Device found in NORMAL mode.
) else (
ping localhost -n 6 >nul
CALL :log error No NORMAL device found. Rechecking...
goto devicecheck
)
call :log if not "%detectedDevice%"=="%boardid%ap"
call :log Device is %detectedDevice%.
if /I not "%detectedDevice%"=="%boardid%ap" (
echo -^^!- Error: You have not plugged in a %deviceid%^^! This is an %detectedID%.
echo - Press any key to return to main screen...
pause >NUL
goto beginning
)
goto nodevicecheck
:nodevicecheck
:: get the file names from manifest
for /f "tokens=*" %%a IN ('find "applelogo" ^<%tempdir%\IPSW\manifest') do set applelogo=%%a
for /f "tokens=*" %%a IN ('find "batterylow0" ^<%tempdir%\IPSW\manifest') do set batterylow0=%%a
for /f "tokens=*" %%a IN ('find "batterylow1" ^<%tempdir%\IPSW\manifest') do set batterylow1=%%a
for /f "tokens=*" %%a IN ('find "glyphcharging" ^<%tempdir%\IPSW\manifest') do set glyphcharging=%%a
for /f "tokens=*" %%a IN ('find "batterycharging0" ^<%tempdir%\IPSW\manifest') do set batterycharging0=%%a
for /f "tokens=*" %%a IN ('find "batterycharging1" ^<%tempdir%\IPSW\manifest') do set batterycharging1=%%a
for /f "tokens=*" %%a IN ('find "glyphplugin" ^<%tempdir%\IPSW\manifest') do set glyphplugin=%%a
for /f "tokens=*" %%a IN ('find "batteryfull" ^<%tempdir%\IPSW\manifest') do set batteryfull=%%a
for /f "tokens=*" %%a IN ('find "LLB" ^<%tempdir%\IPSW\manifest') do set LLB=%%a
for /f "tokens=*" %%a IN ('find "iBoot" ^<%tempdir%\IPSW\manifest') do set iBoot=%%a
for /f "tokens=*" %%a IN ('find "DeviceTree" ^<%tempdir%\IPSW\manifest') do set DeviceTree=%%a
for /f "tokens=*" %%a IN ('find "recoverymode" ^<%tempdir%\IPSW\manifest') do set RecoveryMode=%%a
set iBSS=iBSS.%boardid%ap.RELEASE.dfu
set iBEC=iBEC.%boardid%ap.RELEASE.dfu
set kernel=kernelcache.RELEASE.%boardid%
cd IPSW
<nul set /p "= - Getting Ramdisk Information... "
if exist %tempdir%\IPSW\oldstyle.txt del %tempdir%\IPSW\oldstyle.txt /S /Q >> %logme%
:: Ramdisk identification, Done properly :)
:: edit out un-needed strings using hex.
%tools%\binmay.exe -i %tempdir%\IPSW\Restore.plist -o %tempdir%\Restore.txt -s 0A 09 09 2>NUL
%tools%\binmay.exe -i %tempdir%\Restore.txt -o %tempdir%\Restore1.txt -s 09 09 09 2>NUL
:: then add a space before + after </string>
%tools%\ssr.exe 0 "</string>" " </string> " %tempdir%\Restore1.txt >NUL
:: then add a space after <key>Update</key><string>
%tools%\ssr.exe 0 "<key>Update</key><string>" "/SSR_NL/Update:" %tempdir%\Restore1.txt >NUL
:: and after <key>User</key><string>
%tools%\ssr.exe 0 "<key>User</key><string>" "/SSR_NL/User:" %tempdir%\Restore1.txt >NUL
:: remove 3C 2F 73 74 72 69 6E 67 3E (</string>) -- yes, i know, couldve just Done this above, who cares --- it works
%tools%\binmay.exe -i %tempdir%\Restore1.txt -o %tempdir%\Restore2.txt -s "3C 2F 73 74 72 69 6E 67 3E" 2>NUL
:: replace User with restore, for easier identification
%tools%\ssr.exe 1 "User" "Restore" %tempdir%\Restore2.txt
%tools%\ssr.exe 1 "User" "NotherRD" %tempdir%\Restore2.txt
%tools%\ssr.exe 1 "User" "RootFS" %tempdir%\Restore2.txt
%tools%\binmay.exe -i %tempdir%\Restore2.txt -o %tempdir%\Restore4.txt -s 20 20 20 2>NUL
%tools%\ssr.exe 0 ".dmg" ".dmg/SSR_NL/" %tempdir%\Restore4.txt >NUL
:: set restore as the word after Restore:
FOR /F "tokens=2 delims=:" %%a IN ('find "Restore" ^<%tempdir%\Restore4.txt') DO set restore=%%a
FOR /F "tokens=2 delims=:" %%a IN ('find "NotherRD" ^<%tempdir%\Restore4.txt') DO set notherRD=%%a
if "%notherRD%"=="%restore%" (
FOR /F "tokens=2 delims=:" %%a IN ('find "RootFS" ^<%tempdir%\Restore4.txt') DO set rootfilesystem=%%a
) else (
set rootfilesystem=%notherRD%
)
:: same as above but for update
FOR /F "tokens=2 delims=:" %%a IN ('find "Update" ^<%tempdir%\Restore4.txt') DO set update=%%a
FOR /F "tokens=2 delims=:" %%a IN ('find "Update" ^<%tempdir%\Restore4.txt') DO set updateishere=yes
if exist %tempdir%\Restore4.txt del %tempdir%\Restore4.txt /S /Q >NUL
:: checking ramdisk numbers!!!
set update=%update: =%
set restore=%restore: =%
set rootfilesystem=%rootfilesystem: =%
if "%updateishere%"=="yes" (
echo %update%> dmgs.txt
set updateishere=yes
)
echo %restore%>> dmgs.txt
echo %rootfilesystem%>> dmgs.txt
::%tools%\binmay.exe -i %tempdir%\IPSW\dmgs.txt -o %tempdir%\IPSW\dmgs-f.txt -s 20 20 20 2>NUL
::ping -n 3 localhost >NUL
REM for /f "tokens=* delims= " %%a in (%tempdir%\IPSW\dmgs.txt) do (
REM set /a n+=1
REM set ramdisk!n!=%%a
REM )
REM if not "%updateishere%"=="yes" (
REM CALL :log error No Update Ramdisk. Continuing...
REM set restore=%ramdisk1%
REM set rootfilesystem=%ramdisk2%
REM ) else (
REM :: assume all 3 ramdisks are there.
REM set update=%ramdisk1%
REM set restore=%ramdisk2%
REM set rootfilesystem=%ramdisk3%
REM )
echo Done^^!
call :log Ramdisks-Update-%update%-Restore-%restore%-Rootfs-%rootfilesystem%
%tools%\7za.exe e -o%tempdir%\IPSW -mmt %IPSW% %update% %restore% >> %logdir%\%timestamp%
echo bgcolor 0 0 0 >>%tempdir%\kbags.txt
echo go fbecho iKeyHelper v%version% by Callum Jones ^<[email protected]^> >>%tempdir%\kbags.txt
echo go fbecho ========================================>>%tempdir%\kbags.txt
echo go fbecho - Loading iOS %ProductVersion%%MarketingVersiontitle% (%BuildNumber%) >>%tempdir%\kbags.txt
echo go fbecho ^> for %ProductType% (%url_parsing_device%) >>%tempdir%\kbags.txt
echo go fbecho ========================================>>%tempdir%\kbags.txt
if exist *.txt del *.txt /S /Q >NUL
if exist *asr del *asr /S /Q >NUL
call :log Getting KBAGs...
:: delete the files
if exist %tempdir%\Restore.txt del %tempdir%\Restore.txt /S /Q >NUL
if exist %tempdir%\Restore1.txt del %tempdir%\Restore1.txt /S /Q >NUL
if exist %tempdir%\Restore2.txt del %tempdir%\Restore2.txt /S /Q >NUL
:kbags
<nul set /p "= - Grabbing KBAGs... "
call :grabkbag %LLB% >>%tempdir%\kbags.txt
call :grabkbag %iBoot% >>%tempdir%\kbags.txt
call :grabkbag %devicetree% >>%tempdir%\kbags.txt
call :grabkbag %applelogo% >>%tempdir%\kbags.txt
call :grabkbag %recoverymode% >>%tempdir%\kbags.txt
call :grabkbag %batterylow0% >>%tempdir%\kbags.txt
call :grabkbag %batterylow1% >>%tempdir%\kbags.txt
call :grabkbag %glyphcharging% >>%tempdir%\kbags.txt
call :grabkbag %glyphplugin% >>%tempdir%\kbags.txt
call :grabkbag %batterycharging0% >>%tempdir%\kbags.txt
call :grabkbag %batterycharging1% >>%tempdir%\kbags.txt
call :grabkbag %batteryfull% >>%tempdir%\kbags.txt
call :grabkbag %ibss% >>%tempdir%\kbags.txt
call :grabkbag %ibec% >>%tempdir%\kbags.txt
call :grabkbag %kernel% >>%tempdir%\kbags.txt
pushd %tempdir%\IPSW\
:: run this TWICE.
if exist %tempdir%\IPSW\%restore% (
%tools%\xpwntool.exe %tempdir%\IPSW\%restore% %tempdir%\IPSW\%restore%.dec >NUL 2>NUL
%tools%\hfsplus %tempdir%\IPSW\%restore%.dec extract /usr/sbin/asr %restore:~0,-4%_asr >NUL 2>NUL
if not exist %restore:~0,-4%_asr (
::echo doing RESTORE
set restoreenc=y
call :log Restore is encrypted
call :grabkbag %restore% >>%tempdir%\kbags.txt
) else (
set restoreenc=n
call :log Restore not encrypted
echo go echo %restore% >>%tempdir%\kbags.txt
echo go echo *Not_Encrypted >>%tempdir%\kbags.txt
)
)
if "%updateishere%"=="yes" (
%tools%\xpwntool.exe %tempdir%\IPSW\%update% %tempdir%\IPSW\%update%.dec >NUL 2>NUL
%tools%\hfsplus %tempdir%\IPSW\%update%.dec extract /usr/sbin/asr %update:~0,-4%_asr >NUL 2>NUL
if not exist %update:~0,-4%_asr (
::echo DOING UPDATE
set updateenc=y
call :log Update is encrypted
call :grabkbag %update% >>%tempdir%\kbags.txt
) else (
set updateenc=n
call :log Update is not encrypted
echo go echo %update% >>%tempdir%\kbags.txt
echo go echo *Not_Encrypted >>%tempdir%\kbags.txt
)
)
:: remove files
if exist %update:~0,-4%_asr del %update:~0,-4%_asr /S /Q >NUL
if exist %restore:~0,-4%_asr del %restore:~0,-4%_asr /S /Q >NUL
if exist %update%.dec del %update%.dec /S /Q >NUL
if exist %restore%.dec del %restore%.dec /S /Q >NUL
popd
echo go fbecho ===================================>>%tempdir%\kbags.txt
echo go fbecho - Done>>%tempdir%\kbags.txt
echo go fbecho - Rebooting...>>%tempdir%\kbags.txt
echo go fbecho ===================================>>%tempdir%\kbags.txt
echo Done^^!
echo /exit >>%tempdir%\kbags.txt
:: close open iTunes windows (if they exist)
tasklist /FI "IMAGENAME eq iTunes.exe" 2>NUL | find /I /N "iTunes.exe">NUL
if "%ERRORLEVEL%"=="0" (
echo - Closing iTunes
taskkill /F /IM "iTunes.exe" >nul
)
:: close open iTunesHelper (if it is open)
tasklist /FI "IMAGENAME eq iTunesHelper.exe" 2>NUL | find /I /N "iTunesHelper.exe">NUL
if "%ERRORLEVEL%"=="0" (
echo - Closing iTunesHelper
taskkill /F /IM "iTunesHelper.exe" >nul
)
::checking for dfu
<nul set /p "= - Please Enter DFU mode... "
goto dfucheck
:dfucheck
%tools%\irecovery.exe -c | find /I /N "DFU">> %logme%
if "%ERRORLEVEL%"=="0" (
echo Found device^^!
call :log Device found in DFU mode.
) else (
ping localhost -n 6 >nul
CALL :log error No DFU device found. Rechecking...
goto dfucheck
)
:found-recovery
call %tools%\irecovery.exe -c "setenv boot-args 2" >> %logme%
call %tools%\irecovery.exe -c "saveenv" >> %logme%
call :log Extracting RootFS
start /B "" %tools%\7za.exe e -o%tempdir%\IPSW -mmt %IPSW% %rootfilesystem% >NUL
cd %tempdir%
:: injectpois0n
call :log Starting Injectpois0n.
<nul set /p "= - Running injectpois0n... "
call %tools%\injectpois0n.exe -2 >> %logdir%\%timestamp% 2>NUL
call :log Injectpois0n finished.
if exist %tempdir%\iBSS* del %tempdir%\iBSS* /S /Q >> %logme%
echo Done^^!
goto elsewhere
:elsewhere
:: run irecovery -s to get rid of unneeded junk :)
start /B %tools%\irecovery -s >> %logme%
ping localhost -n 5 >nul
taskkill /F /IM "irecovery.exe" 2>NUL >nul
cd %tempdir%\IPSW\
:: call %tools%\irecovery -c "bgcolor 0 100 100" >nul
:: close open irecovery windows (if they exist)
tasklist /FI "IMAGENAME eq irecovery.exe" 2>NUL | find /I /N "irecovery.exe">NUL
if "%ERRORLEVEL%"=="0" (
echo - Closing any open iRecovery command windows
taskkill /F /IM "irecovery.exe" >nul
)
cd %tempdir%
<nul set /p "= - Getting keys... "
%tools%\irecovery -s gp-keys.txt < kbags.txt >> %logme%
cd %tempdir%\IPSW\
goto loop1
:loop1
tasklist /FI "IMAGENAME eq irecovery.exe" 2>NUL | find /I /N "irecovery.exe">NUL
if "%ERRORLEVEL%"=="0" (
goto loop1
)
:: reboot
call :log Rebooting Device.
<nul set /p "= Rebooting... "
%tools%\irecovery -c "setenv auto-boot true" >> %logme%
%tools%\irecovery -c "saveenv" >> %logme%
%tools%\irecovery -c "reboot" >> %logme%
echo Done^^!
call :log formatting text file.
pushd %tempdir%
%tools%\binmay.exe -i gp-keys.txt -o keys.txt -s 00 2>NUL
%tools%\ssr.exe 0 """ "'" keys.txt
%tools%\ssr.exe 0 " " "" keys.txt
%tools%\ssr.exe 0 "-iv" "* /SSR_QUOTE//SSR_QUOTE//SSR_QUOTE/IV/SSR_QUOTE//SSR_QUOTE//SSR_QUOTE/: " keys.txt
%tools%\ssr.exe 0 "-k" "/SSR_NL/* /SSR_QUOTE//SSR_QUOTE//SSR_QUOTE/Key/SSR_QUOTE//SSR_QUOTE//SSR_QUOTE/: " keys.txt
%tools%\ssr.exe 0 "Not_Encrypted" "Not Encrypted" keys.txt
:: rootfs key grabbing
:: parse all iv's to ivs.txt
echo 1 >ivs.txt
echo 2 >>ivs.txt
for %%a in ("%tempdir%\keys.txt") do (
for /f "tokens=3" %%B in ('find "'''IV''': " ^< %%a') do (
echo %%B >>ivs.txt
)
)
if exist temp.txt del temp.txt /S /Q >NUL
move ivs.txt temp.txt >NUL
%tools%\binmay.exe -i temp.txt -o ivs.txt -s 20 0D 0A 2>NUL
if exist temp.txt del temp.txt /S /Q >NUL
for /f "tokens=* delims= " %%a in (ivs.txt) do (
set /a ivz+=1
set iv!ivz!=%%a
)
:: parse all keys to key.txt
echo 1 >key.txt
echo 2 >>key.txt
for %%a in ("%tempdir%\keys.txt") do (
for /f "tokens=3" %%B in ('find "'''Key''': " ^< %%a') do (
echo %%B >>key.txt
)
)
if exist temp.txt del temp.txt /S /Q >NUL
move key.txt temp.txt >NUL
%tools%\binmay.exe -i temp.txt -o key.txt -s 20 0D 0A 2>NUL
if exist temp.txt del temp.txt /S /Q >NUL
for /f "tokens=* delims= " %%a in (key.txt) do (
set /a keyz+=1
set key!keyz!=%%a
)
goto back-to-me
:back-to-me
if %boardid%==n94 (
echo - Extracting RootFS...
%tools%\7za.exe e -o%tempdir%\IPSW -mmt %IPSW% %rootfilesystem% >> %logme%
)
if not exist %tempdir%\decrypted mkdir %tempdir%\decrypted\ >NUL
cd %tempdir%
if exist %tempdir%\decrypted\%update%.dec del %tempdir%\decrypted\%update%.dec /S /Q >NUL
if exist %tempdir%\decrypted\%restore%.dec del %tempdir%\decrypted\%restore%.dec /S /Q >NUL
call :log Update Ramdisk Shiz
if not "%update%"=="" (
if not "%updateenc%"=="n" (
%tools%\xpwntool %tempdir%\IPSW\%update% %tempdir%\decrypted\%update%.dec -iv %iv19% -k %key19% >NUL
) else (
%tools%\xpwntool %tempdir%\IPSW\%update% %tempdir%\decrypted\%update%.dec >NUL
)
)
call :log Restore Ramdisk Shiz
if not "%restore%"=="" (
if not "%restoreenc%"=="n" (
%tools%\xpwntool %tempdir%\IPSW\%restore% %tempdir%\decrypted\%restore%.dec -iv %iv18% -k %key18% >NUL
) else (
%tools%\xpwntool %tempdir%\IPSW\%restore% %tempdir%\decrypted\%restore%.dec >NUL
)
)
goto rootfs-check
:rootfs-check
if not exist %tempdir%\IPSW\%rootfilesystem% (
call :log error No RootFS extracted!
goto rootfs-check
) else (
call :log Found extracted RootFS
)
<nul set /p "= - Getting RootFS Key... "
call :log Getting RootFS Key using restore
%tools%\genpass.exe -p %platform% -r decrypted/%restore%.dec -f IPSW/%rootfilesystem% >%tempdir%\IPSW\genpass.txt 2>NUL
findstr /C:"vfdecrypt key" %tempdir%\IPSW\genpass.txt >NUL
if not "%ERRORLEVEL%"=="0" (
CALL :log error RootFS key not found -trying update
%tools%\genpass.exe -p %platform% -r decrypted/%update%.dec -f IPSW/%rootfilesystem% >%tempdir%\IPSW\genpass.txt 2>NUL
)
call :log Decrypting RootFS TEST
%tools%\dmg.exe extract %tempdir%\IPSW\%rootfilesystem% %tempdir%\decrypted\%rootfilesystem%.dec -k %rtkey% 2>decryptedcheck.txt
findstr /C:"readUDIFResourceFile - signature incorrect" decryptedcheck.txt >NUL
if "%errorlevel%"=="0" (
call :log error Genpass and vfdecrypt key failed-tryingupdate
%tools%\genpass.exe -p %platform% -r decrypted/%update%.dec -f IPSW/%rootfilesystem% >%tempdir%\IPSW\genpass.txt 2>NUL
)
findstr /C:"vfdecrypt key" %tempdir%\IPSW\genpass.txt >NUL
if "%errorlevel%"=="0" (
for %%a in ("%tempdir%\IPSW\genpass.txt") do (
for /f "tokens=3" %%B in ('find "vfdecrypt key: " ^< %%a') do (
echo %%B >>pass.txt
move pass.txt temp.txt >NUL
%tools%\binmay.exe -i temp.txt -o pass.txt -s 20 0D 0A 2>NUL
if exist temp.txt del temp.txt /S /Q >NUL
)
)
for /f "tokens=* delims= " %%a in (pass.txt) do set rtkey=%%a
echo Done^^!
) else (
call :log error Genpass and vfdecrypt key failed
echo FAILED^^!
)
if "%bdid%"=="ipad11" goto ipadbb
if "%bdid%"=="iphone21" goto ipadbb
goto noipadbb
:ipadbb
:: Get the baseband for iPad from ramdisk
if exist %tempdir%\ipad-bb rmdir %tempdir%\ipad-bb /S /Q >NUL
call :log Getting iPad/3G[S] Baseband
if not exist %tempdir%\ipad-bb mkdir %tempdir%\ipad-bb
pushd %tempdir%\ipad-bb
:: hfsplus to the rescue! (lol)
%tools%\hfsplus "%tempdir%\decrypted\%restore%.dec" extractall /usr/local/standalone/firmware/ >NUL 2>NUL
:: check if its wrapped in a BBFW file
if exist ICE2.Release.bbfw (
call :log BBFW EXISTS
%tools%\7za x -y -mmt ICE2.Release.bbfw >NUL
) else (
call :log BBFW NO EXISTY
)
dir /OS /B %tempdir%\ipad-bb\*.eep > %tempdir%\bb.txt 2>&1
%tools%\ssr 0 "ICE2_" "" %tempdir%\bb.txt
%tools%\ssr 0 ".eep" "" %tempdir%\bb.txt
if "%bdid%"=="ipad11" (
set /p baseband=< %tempdir%\bb.txt
)
if "%bdid%"=="iphone21" (
for /f "tokens=* delims= " %%a in (%tempdir%\bb.txt) do (
set /a v+=1
if "!v!"=="2" (
set baseband=%%a
)
)
)
call :log iPad/3G[S]Baseband: %baseband%
popd
goto noipadbb
:noipadbb
:: i'm sure there's a reason behind this but at the moment it looks absolutely stupid.
echo . >NUL
pushd %temp%\iKeyHelper
:: get url for firmware
%tools%\curl -A "iKeyHelper - %uuid% - %version%" --silent http://api.ios.icj.me/v2/%boardid%ap/%BuildNumber%/url >url.txt
set /p downloadurl=<url.txt
popd
echo iKeyHelper %version% by cj>iphonewikikeys.txt
if "%username%"=="Callum" (
echo %ipswname% Keys and IV's Grabbed by cj ^<[email protected]^> on %date%>>iphonewikikeys.txt
) else (
echo %ipswname% Keys and IV's Grabbed by %username% on %date%>>iphonewikikeys.txt
)
echo.>>iphonewikikeys.txt
echo ------------------------------------------- KEYS ------------------------------------------->>iphonewikikeys.txt
echo.>>iphonewikikeys.txt
echo {{keys>>iphonewikikeys.txt
if not %MarketingVersion%==%ProductVersion% (
if not "%downloadurl%"=="" (
echo ^| version = %ProductVersion% ^(%MarketingVersion%^)>>iphonewikikeys.txt
) else (
echo ^| version = %ProductVersion% ^(%MarketingVersion%^) b[number]>>iphonewikikeys.txt
)
) else (
if not "%downloadurl%"=="" (
echo ^| version = %ProductVersion%>>iphonewikikeys.txt
) else (
echo ^| version = %ProductVersion%b[number]>>iphonewikikeys.txt
)
)
echo ^| build = %BuildNumber%>>iphonewikikeys.txt
echo ^| device = %bdid%>>iphonewikikeys.txt
echo ^| codename = %BuildTrain%>>iphonewikikeys.txt
if not "%baseband%"=="" (
echo ^| baseband = %baseband%>>iphonewikikeys.txt
)
if not "%downloadurl%"=="" (
echo ^| downloadurl = %downloadurl%>>iphonewikikeys.txt
)
echo. >>iphonewikikeys.txt
echo ^| rootfsdmg = %rootfilesystem:~0,-4%>>iphonewikikeys.txt
echo ^| rootfskey = %rtkey%>>iphonewikikeys.txt
if "%update%"=="" (
echo. >>iphonewikikeys.txt
echo ^| noupdateramdisk = true>>iphonewikikeys.txt
)
if "%restoreenc%"=="n" (
echo. >>iphonewikikeys.txt
echo ^| ramdisknotencrypted = true>>iphonewikikeys.txt
)
if not "%update%"=="" (
echo. >>iphonewikikeys.txt
echo ^| updatedmg = %update:~0,-4%>>iphonewikikeys.txt
if not "%updateenc%"=="n" (
echo ^| updateiv = %iv19%>>iphonewikikeys.txt
echo ^| updatekey = %key19%>>iphonewikikeys.txt
)
)
echo. >>iphonewikikeys.txt
echo ^| restoredmg = %restore:~0,-4%>>iphonewikikeys.txt
if not "%restoreenc%"=="n" (
echo ^| restoreiv = %iv18%>>iphonewikikeys.txt
echo ^| restorekey = %key18%>>iphonewikikeys.txt
)
echo. >>iphonewikikeys.txt
echo ^| AppleLogoIV = %iv6%>>iphonewikikeys.txt
echo ^| AppleLogoKey = %key6%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| BatteryCharging0IV = %iv12%>>iphonewikikeys.txt
echo ^| BatteryCharging0Key = %key12%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| BatteryCharging1IV = %iv13%>>iphonewikikeys.txt
echo ^| BatteryCharging1Key = %key13%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| BatteryFullIV = %iv14%>>iphonewikikeys.txt
echo ^| BatteryFullKey = %key14%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| BatteryLow0IV = %iv8%>>iphonewikikeys.txt
echo ^| BatteryLow0Key = %key8%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| BatteryLow1IV = %iv9%>>iphonewikikeys.txt
echo ^| BatteryLow1Key = %key9%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| DeviceTreeIV = %iv5%>>iphonewikikeys.txt
echo ^| DeviceTreeKey = %key5%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| GlyphChargingIV = %iv10%>>iphonewikikeys.txt
echo ^| GlyphChargingKey = %key10%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| GlyphPluginIV = %iv11%>>iphonewikikeys.txt
echo ^| GlyphPluginKey = %key11%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| iBECIV = %iv16%>>iphonewikikeys.txt
echo ^| iBECKey = %key16%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| iBootIV = %iv4%>>iphonewikikeys.txt
echo ^| iBootKey = %key4%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| iBSSIV = %iv15%>>iphonewikikeys.txt
echo ^| iBSSKey = %key15%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| KernelcacheIV = %iv17%>>iphonewikikeys.txt
echo ^| KernelcacheKey = %key17%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| LLBIV = %iv3%>>iphonewikikeys.txt
echo ^| LLBKey = %key3%>>iphonewikikeys.txt
echo. >>iphonewikikeys.txt
echo ^| RecoveryModeIV = %iv7%>>iphonewikikeys.txt
echo ^| RecoveryModeKey = %key7%>>iphonewikikeys.txt
echo }}>>iphonewikikeys.txt
if not exist "%bundledir%\%url_parsing_device%" mkdir "%bundledir%\%url_parsing_device%"
copy iphonewikikeys.txt "%bundledir%\%url_parsing_device%\%ipswname%.txt" >nul
start "" notepad "%bundledir%\%url_parsing_device%\%ipswname%.txt"
:: create a plist file for this.
if not exist %MYFILES%\Template.plist.txt (
call :log error No Template.plist.txt... skipping
goto urlopen
)
move /y %MYFILES%\Template.plist.txt %tempdir%\Template.plist.txt >nul
%tools%\ssr.exe 0 "[BoardConfig]" "%boardid%ap" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBSSName]" "%ibss%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBSSIV]" "%iv15%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBSSKey]" "%key15%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RecoveryModeName]" "%recoverymode%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RecoveryModeIV]" "%iv7%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RecoveryModeKey]" "%key7%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[DeviceTreeName]" "%devicetree%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[DeviceTreeIV]" "%iv5%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[DeviceTreeKey]" "%key5%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[GlyphChargingName]" "%glyphcharging%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[GlyphChargingIV]" "%iv10%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[GlyphChargingKey]" "%key10%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryCharging1Name]" "%batterycharging1%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryCharging1IV]" "%iv13%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryCharging1Key]" "%key13%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBootName]" "%iboot%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBootIV]" "%iv4%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBootKey]" "%key4%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryCharging0Name]" "%batterycharging0%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryCharging0IV]" "%iv12%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryCharging0Key]" "%key12%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryLow0Name]" "%batterylow0%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryLow0IV]" "%iv8%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryLow0Key]" "%key8%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[LLBName]" "%llb%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[LLBIV]" "%iv3%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[LLBKey]" "%key3%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBECName]" "%ibec%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBECIV]" "%iv16%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[iBECKey]" "%key16%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[KernelCacheName]" "%kernel%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[KernelCacheIV]" "%iv17%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[KernelCacheKey]" "%key17%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RootFileSystemDMG]" "%rootfilesystem%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RootFileSystemKey]" "%rtkey%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[AppleLogoName]" "%applelogo%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[AppleLogoIV]" "%iv6%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[AppleLogoKey]" "%key6%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[UpdateRamdiskDMG]" "%update%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[UpdateRamdiskIV]" "%iv19%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[UpdateRamdiskKey]" "%key19%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RestoreRamdiskDMG]" "%restore%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RestoreRamdiskIV]" "%iv18%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[RestoreRamdiskKey]" "%key18%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[GlyphPluginName]" "%glyphplugin%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[GlyphPluginIV]" "%iv11%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[GlyphPluginKey]" "%key11%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryLow1Name]" "%batterylow1%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryLow1IV]" "%iv9%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BatteryLow1Key]" "%key9%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[FirmwareVersion]" "%ProductVersion%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[FirmwareURL]" "%downloadurl%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BuildID]" "%BuildNumber%" %tempdir%\Template.plist.txt
%tools%\ssr.exe 0 "[BuildTrain]" "%BuildTrain%" %tempdir%\Template.plist.txt
move /y "%tempdir%\Template.plist.txt" "%bundledir%\%url_parsing_device%\%ipswname%.plist" >nul
echo - Saved Keys and Plist files to "%bundledir%"
:urlopen
echo - Opening theiphonewiki page for %BuildTrain% %BuildNumber% (%url_parsing_device%)...
call :log Opening theiphonewiki page for %BuildTrain%_%BuildNumber% ...
start http://theiphonewiki.com/wiki/index.php?title=%BuildTrain%_%BuildNumber%_(%deviceidw%)^&action=edit
cd %tempdir%
if not "%rtkey%"=="" (
<nul set /p "= - Decrypting Root Filesystem... "
if exist "%tempdir%\decrypted\%rootfilesystem%.dec" del "%tempdir%\decrypted\%rootfilesystem%.dec" /S /Q >NUL
%tools%\dmg.exe extract %tempdir%\IPSW\%rootfilesystem% %tempdir%\decrypted\%rootfilesystem%.dec -k %rtkey% >NUL
echo Done^^!
) else (
call :log error Cannot decrypt RootFS
echo - Unable to decrypt Root Filesystem :(
)
pushd %tempdir%\decrypted
<nul set /p "= - Decrypting other files... "
call :log Decrypting %applelogo%
%tools%\xpwntool.exe %tempdir%\IPSW\%applelogo% %applelogo%.dec -iv %iv6% -k %key6% >> %logdir%\%timestamp%
call :log Decrypting %LLB%
%tools%\xpwntool.exe %tempdir%\IPSW\%LLB% %LLB%.dec -iv %iv3% -k %key3% >> %logdir%\%timestamp%
call :log Decrypting %iBoot%
%tools%\xpwntool.exe %tempdir%\IPSW\%iBoot% %iBoot%.dec -iv %iv4% -k %key4% >> %logdir%\%timestamp%
call :log Decrypting %devicetree%
%tools%\xpwntool.exe %tempdir%\IPSW\%devicetree% %devicetree%.dec -iv %iv5% -k %key5% >> %logdir%\%timestamp%
call :log Decrypting %recoverymode%
%tools%\xpwntool.exe %tempdir%\IPSW\%recoverymode% %recoverymode%.dec -iv %iv7% -k %key7% >> %logdir%\%timestamp%
call :log Decrypting %batterylow0%
%tools%\xpwntool.exe %tempdir%\IPSW\%batterylow0% %batterylow0%.dec -iv %iv8% -k %key8% >> %logdir%\%timestamp%
call :log Decrypting %batterylow1%
%tools%\xpwntool.exe %tempdir%\IPSW\%batterylow1% %batterylow1%.dec -iv %iv9% -k %key9% >> %logdir%\%timestamp%
call :log Decrypting %glyphcharging%
%tools%\xpwntool.exe %tempdir%\IPSW\%glyphcharging% %glyphcharging%.dec -iv %iv10% -k %key10% >> %logdir%\%timestamp%
call :log Decrypting %glyphplugin%
%tools%\xpwntool.exe %tempdir%\IPSW\%glyphplugin% %glyphplugin%.dec -iv %iv11% -k %key11% >> %logdir%\%timestamp%
call :log Decrypting %batterycharging0%
%tools%\xpwntool.exe %tempdir%\IPSW\%batterycharging0% %batterycharging0%.dec -iv %iv12% -k %key12% >> %logdir%\%timestamp%
call :log Decrypting %batterycharging1%
%tools%\xpwntool.exe %tempdir%\IPSW\%batterycharging1% %batterycharging1%.dec -iv %iv13% -k %key13% >> %logdir%\%timestamp%
call :log NOT Decrypting %batteryfull%
:: This doesn't work, and I don't care why.
:: %tools%\xpwntool.exe %tempdir%\IPSW\%batteryfull% %batteryfull%.dec -iv %iv14% -k %key14% >> %logdir%\%timestamp%
call :log Decrypting %ibss%
%tools%\xpwntool.exe %tempdir%\IPSW\%ibss% %ibss%.dec -iv %iv15% -k %key15% >> %logdir%\%timestamp%
call :log Decrypting %ibec%
%tools%\xpwntool.exe %tempdir%\IPSW\%ibec% %ibec%.dec -iv %iv16% -k %key16% >> %logdir%\%timestamp%
call :log Decrypting %kernel%
%tools%\xpwntool.exe %tempdir%\IPSW\%kernel% %kernel%.dec -iv %iv17% -k %key17% >> %logdir%\%timestamp%
echo Done^^!
popd
<nul set /p "= - Extracting files from DMGs... "
call :log Extracting files from the DMGs
if not "%rtkey%"=="" (
%tools%\hfsplus %tempdir%\decrypted\%rootfilesystem%.dec extract /etc/fstab %tempdir%\decrypted\fstab >NUL
call :log - fstab
%tools%\hfsplus %tempdir%\decrypted\%rootfilesystem%.dec extract /System/Library/Lockdown/Services.plist %tempdir%\decrypted\Services.plist >NUL
call :log - Services.plist
%tools%\hfsplus %tempdir%\decrypted\%rootfilesystem%.dec extract /usr/libexec/lockdownd %tempdir%\decrypted\lockdownd
call :log - lockdownd
)
%tools%\hfsplus %tempdir%\decrypted\%restore%.dec extract /usr/sbin/asr %tempdir%\decrypted\asr >NUL
call :log - asr
echo Done^^!
cd %tempdir%
if exist *.bundle rmdir *.bundle /S /Q >> %logme%
mkdir "%ipswname%.bundle" >NUL
mkdir "%ipswname%.bundle\to-patch" >NUL
if exist decrypted\Info.plist move /y decrypted\Info.plist "%ipswname%.bundle\Info.plist" >NUL
if exist decrypted\asr move /y decrypted\asr "%ipswname%.bundle\to-patch\asr" >NUL
if exist decrypted\Services.plist move /y decrypted\Services.plist "%ipswname%.bundle\to-patch\Services.plist" >NUL
if exist decrypted\fstab move /y decrypted\fstab "%ipswname%.bundle\to-patch\fstab" >NUL
if exist decrypted\%ibss%.dec move /y decrypted\%ibss%.dec "%ipswname%.bundle\to-patch\%ibss%.dec" >NUL
if exist decrypted\%kernel%.dec move /y decrypted\%kernel%.dec "%ipswname%.bundle\to-patch\%kernel%.dec" >NUL
if exist IPSW\%kernel% move /y IPSW\%kernel% "%ipswname%.bundle\to-patch\%kernel%.orig" >NUL
if exist IPSW\%ibss% move /y IPSW\iBSS.%boardid%ap.RELEASE.dfu "%ipswname%.bundle\to-patch\%ibss%.orig" >NUL
if exist decrypted\lockdownd move /y decrypted\lockdownd "%ipswname%.bundle\to-patch\lockdownd" >NUL
if exist "%bundledir%\%ipswname%.bundle" rmdir "%bundledir%\%ipswname%.bundle" /S /Q >NUL
move "%ipswname%.bundle" "%bundledir%\%url_parsing_device%\%ipswname%.bundle" >nul
goto tehend
:tehend
::stop timer
set endtime=%time%
set /a hrs=%endtime:~0,2% >NUL 2>NUL
set /a hrs=%hrs%-%starttime:~0,2% >NUL 2>NUL
set /a mins=%endtime:~3,2% >NUL 2>NUL
set /a mins=%mins%-%starttime:~3,2% >NUL 2>NUL
set /a secs=%endtime:~6,2% >NUL 2>NUL
set /a secs=%secs%-%starttime:~6,2% >NUL 2>NUL
if %secs% lss 0 (
set /a secs=!secs!+60 >NUL 2>NUL
set /a mins=!mins!-1 >NUL 2>NUL
)
if %mins% lss 0 (
set /a mins=!mins!+60 >NUL 2>NUL
set /a hrs=!hrs!-1 >NUL 2>NUL
)
if %hrs% lss 0 (
set /a hrs=!hrs!+24 >NUL 2>NUL
)
set /a tot=%secs%+%mins%cmdln%60+%hrs%cmdln%3600 >NUL 2>NUL
echo - Took %hrs% hours, %mins% mins and %secs% seconds to complete^^!
call :log Finished.
call :log ----------------------------------------------------------------------------------------------
echo - Press any key to exit..
echo ran > %tempdir%\finished.Done
pause >nul
goto end
:clean
cls
echo - Deleting un-needed files
cd %tempdir%
rmdir IPSW /S /Q >nul
rmdir kbags /S /Q >nul
del tools\iBSS* /S /Q >nul
del %tempdir%\*.txt /S /Q
echo - Cleaned - press any key to return to menu
pause >nul
goto both
:end
cls
cd %tempdir%
if exist IPSW\ rmdir IPSW /S /Q >nul
if exist rmdir kbags /S /Q >nul
del %tempdir%\*.txt /S /Q >NUL
exit
::---------------------------------------------------------------------------
:: down here are the large spammy bits that aren't changed often but take up
:: lots of space.
::---------------------------------------------------------------------------
:grabkbag
set filename=%~f1
for /F "tokens=5 delims=: " %%z in ('%tools%\xpwntool.exe %filename% %temp%\iKeyHelper\#') do set kbag=%%z 2>NUL >NUL
echo go fbecho - %~n1%~x1
echo go echo %~n1%~x1
echo go aes dec %kbag%
if exist %temp%\iKeyHelper\# del %temp%\iKeyHelper\# /S /Q >NUL
goto :EOF
:DeQuote
set _DeQuoteVar=%1
call set _DeQuoteString=%%!_DeQuoteVar!%%
if [!_DeQuoteString:~0^,1!]==[^"] (
if [!_DeQuoteString:~-1!]==[^"] (
set _DeQuoteString=!_DeQuoteString:~1,-1!
) else (goto :eof)
) else (goto :eof)
set !_DeQuoteVar!=!_DeQuoteString!
set _DeQuoteVar=
set _DeQuoteString=
goto :eof
:sfn
set bundlename=%~n1.bundle
set shortipsw=%~n1.ipsw
goto :eof
:log
:: log messages
if not exist %logdir% mkdir %logdir% >NUL
set timestamp=iKeyHelper_%version%.log
set logme=%logdir%\%timestamp%
if not exist %logme% echo. >%logme%
if not "%1"=="" (
if "%1"=="error" (
echo [%time:~0,8%] [ERROR] %2 %3 %4 %5 %6 %7 %8 %9 >>%logme%
) else (
echo [%time:~0,8%] [INFO] %1 %2 %3 %4 %5 %6 %7 %8 %9 >>%logme%
)
) else (
echo Usage: log ^[error^]
)
goto eof
:: parse.bat - pretty epic really.
:parse
if exist %temp%\plistparse\ rmdir %temp%\plistparse /S /Q
if %1.==. goto plistparseusage
if %2.==. goto plistparseusage
set plist=%~f1
set string=%2
::echo You want me to parse "%string%" from "%plist%".
:: delete temp files
if exist %temp%\plistparse\ rmdir %temp%\plistparse /S /Q >NUL
if not exist %temp%\plistparse\ mkdir %temp%\plistparse >NUL
%tools%\binmay.exe -i %plist% -o %temp%\plistparse\tmp1 -s 0A 09 09 2>NUL
%tools%\binmay.exe -i %temp%\plistparse\tmp1 -o %temp%\plistparse\tmp2 -s 09 09 09 2>NUL
%tools%\ssr.exe 0 "</string>" "/SSR_NL/</string> " %temp%\plistparse\tmp2 >NUL
%tools%\ssr.exe 0 "<key>%string%</key><string>" "/SSR_NL/%string%:" %temp%\plistparse\tmp2 >NUL
FOR /F "tokens=2 delims=:" %%a IN ('find "%string%" ^<%temp%\plistparse\tmp2') DO set data1=%%a
echo %data1% >%temp%\plistparse\tmp3
set thedata1=
set data=
%tools%\binmay.exe -i %temp%\plistparse\tmp3 -o %temp%\plistparse\tmp4 -s 20 20 20 2>NUL
set /p data=<%temp%\plistparse\tmp4
if "%data%"=="ECHOisoff." (
set errorlevel=1
) else (
if "%3"=="echo" (
echo %data%
)
set %string%=%data%
)
if exist %temp%\plistparse\ rmdir %temp%\plistparse /S /Q >> %logme%
goto eof
:plistparseusage
echo usage: %0 ^<plist file^> ^<string^>
echo.
goto eof
:tolowercase
:: thanks to http://www.robvanderwoude.com/battech_convertcase.php
set %~1=!%1:A=a!
set %~1=!%1:B=b!
set %~1=!%1:C=c!
set %~1=!%1:D=d!
set %~1=!%1:E=e!
set %~1=!%1:F=f!
set %~1=!%1:G=g!
set %~1=!%1:H=h!
set %~1=!%1:I=i!
set %~1=!%1:J=j!
set %~1=!%1:K=k!
set %~1=!%1:L=l!
set %~1=!%1:M=m!
set %~1=!%1:N=n!
set %~1=!%1:O=o!
set %~1=!%1:P=p!
set %~1=!%1:Q=q!
set %~1=!%1:R=r!
set %~1=!%1:S=s!
set %~1=!%1:T=t!
set %~1=!%1:U=u!
set %~1=!%1:V=v!
set %~1=!%1:W=w!
set %~1=!%1:X=x!
set %~1=!%1:Y=y!
set %~1=!%1:Z=z!
goto eof
:addtovar
if "%buildids%"=="" (
set buildids=%1
) else (
set buildids=%buildids%, %1
)
goto eof
:toolcheck
if not exist resources\tools\%1 (
if not exist %tools%\%1 (
call :log error tool: %1 not found
echo Error: %1 not found
pause
)
) else (
call :log Found tool: %1
if not exist "%tools%\%1" (
copy /y resources\tools\%1 %tools%\%1 >> %logme%
)
)
goto eof
:eof | 1000tip/iKeyHelper | iKeyHelper.bat | bat | gpl-3.0 | 49,624 |
"..\.nuget\nuget.exe" pack "..\Sources\Nuget.Server.AzureStorage\Nuget.Server.AzureStorage.csproj"
pause | SzymonSasin/Nuget.Server.AzureStorage | Automation/Create nuget package.cmd | bat | apache-2.0 | 104 |
@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\Pizco.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Pizco.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
| pombredanne/pizco | docs/make.bat | bat | bsd-3-clause | 5,094 |
cmd_scripts/mod/file2alias.o := gcc -Wp,-MD,scripts/mod/.file2alias.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o scripts/mod/file2alias.o scripts/mod/file2alias.c
deps_scripts/mod/file2alias.o := \
scripts/mod/file2alias.c \
scripts/mod/modpost.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-64.h \
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/include/stddef.h \
/usr/include/bits/types.h \
/usr/include/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/endian.h \
/usr/include/bits/endian.h \
/usr/include/bits/byteswap.h \
/usr/include/sys/types.h \
/usr/include/time.h \
/usr/include/sys/select.h \
/usr/include/bits/select.h \
/usr/include/bits/sigset.h \
/usr/include/bits/time.h \
/usr/include/sys/sysmacros.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/alloca.h \
/usr/include/bits/stdlib.h \
/usr/include/string.h \
/usr/include/xlocale.h \
/usr/include/bits/string.h \
/usr/include/bits/string2.h \
/usr/include/bits/string3.h \
/usr/include/sys/stat.h \
/usr/include/bits/stat.h \
/usr/include/sys/mman.h \
/usr/include/bits/mman.h \
/usr/include/fcntl.h \
/usr/include/bits/fcntl.h \
/usr/include/bits/fcntl2.h \
/usr/include/unistd.h \
/usr/include/bits/posix_opt.h \
/usr/include/bits/environments.h \
/usr/include/bits/confname.h \
/usr/include/getopt.h \
/usr/include/bits/unistd.h \
/usr/include/elf.h \
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/include/stdint.h \
/usr/include/stdint.h \
/usr/include/bits/wchar.h \
scripts/mod/elfconfig.h \
/usr/include/ctype.h \
scripts/mod/../../include/linux/mod_devicetable.h \
scripts/mod/file2alias.o: $(deps_scripts/mod/file2alias.o)
$(deps_scripts/mod/file2alias.o):
| Jewbie/Kernel-2.6.32 | scripts/mod/.file2alias.o.cmd | bat | gpl-2.0 | 2,301 |
REM Run the script from the command line
cscript.exe PdfToXls-CommandLine.vbs "../../sample3.pdf" "output.xlsx"
pause
| bytescout/ByteScout-SDK-SourceCode | Premium Suite/VBScript/Convert pdf to xls with pdf extractor sdk/PdfToXls.bat | bat | apache-2.0 | 120 |
@REM
@REM Copyright (c) 2012-2016 Codenvy, S.A.
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://www.eclipse.org/legal/epl-v10.html
@REM
@REM Contributors:
@REM Codenvy, S.A. - initial API and implementation
@REM
@echo off
REM Check to ensure bash is installed
CALL bash --help > nul 2>&1
IF %ERRORLEVEL% NEQ 0 goto setup
REM Launch Che and any associated docker machines, if necessary
CALL bash --login -i "%~dp0\che-install-plugin.sh" %*
goto end
:setup
echo.
echo REQUIRED: Git bash. Please re-run Docker Toolbox Installer and add bash.exe to your PATH.
echo This is typically located at c:\Program Files\Git\bin.
echo.
:end
| dhuebner/che | assembly/assembly-main/src/assembly/bin/che-install-plugin.bat | bat | epl-1.0 | 817 |
@setlocal EnableExtensions EnableDelayedExpansion
@echo off
set "current-path=%~dp0"
set build-clean=0
if "%2" neq "" call :usage && exit /b 1
if "%1" equ "" goto args-done
if "%1" equ "-c" goto arg-build-clean
if "%1" equ "--clean" goto arg-build-clean
call :usage && exit /b 1
:arg-build-clean
set build-clean=1
:args-done
set "msbuild-args=/m "/p:Configuration=Release;Platform=Any CPU" "%current-path%\compilembed.sln""
if %build-clean%==1 (
msbuild /t:Clean %msbuild-args%
if not %errorlevel%==0 exit /b %errorlevel%
)
msbuild %msbuild-args%
if not %errorlevel%==0 exit /b %errorlevel%
goto :eof
:usage
echo Build compilembed.exe. Usage:
echo build.cmd [options]
echo options:
echo -c, --clean delete artifacts from previous build before building
goto :eof
| 5e8a91/Azure_C_Library_new | c/tools/compilembed/build.cmd | bat | mit | 797 |
@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\Yolapy.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Yolapy.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
| yola/yolapy | docs/make.bat | bat | mit | 7,244 |
@echo off
cd Source/NetCore2
SET OUTPUT=../../../Binaries
SET PARAMS=/consoleloggerparameters:ErrorsOnly /m
dotnet restore
dotnet msbuild /target:ReBuild /property:Configuration=Debug /property:OutputPath=%OUTPUT%\DebugCore2 %PARAMS%
dotnet msbuild /target:ReBuild /property:Configuration=Release /property:OutputPath=%OUTPUT%\ReleaseCore2 %PARAMS%
cd ../.. | amironov73/ManagedIrbis | compilecore2.cmd | bat | mit | 366 |
@rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto endofperl
:WinNT
perl -x -S %0 %*
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
goto endofperl
@rem ';
#!/usr/bin/perl -w
#line 15
# Simple mirror utility using LWP
=head1 NAME
lwp-mirror - Simple mirror utility
=head1 SYNOPSIS
lwp-mirror [-v] [-t timeout] <url> <local file>
=head1 DESCRIPTION
This program can be used to mirror a document from a WWW server. The
document is only transfered if the remote copy is newer than the local
copy. If the local copy is newer nothing happens.
Use the C<-v> option to print the version number of this program.
The timeout value specified with the C<-t> option. The timeout value
is the time that the program will wait for response from the remote
server before it fails. The default unit for the timeout value is
seconds. You might append "m" or "h" to the timeout value to make it
minutes or hours, respectively.
Because this program is implemented using the LWP library, it only
supports the protocols that LWP supports.
=head1 SEE ALSO
L<lwp-request>, L<LWP>
=head1 AUTHOR
Gisle Aas <[email protected]>
=cut
use LWP::Simple qw(mirror is_success status_message $ua);
use Getopt::Std;
use Encode;
use Encode::Locale;
$progname = $0;
$progname =~ s,.*/,,; # use basename only
$progname =~ s/\.\w*$//; #strip extension if any
$VERSION = "6.00";
$opt_h = undef; # print usage
$opt_v = undef; # print version
$opt_t = undef; # timeout
unless (getopts("hvt:")) {
usage();
}
if ($opt_v) {
require LWP;
my $DISTNAME = 'libwww-perl-' . LWP::Version();
die <<"EOT";
This is lwp-mirror version $VERSION ($DISTNAME)
Copyright 1995-1999, Gisle Aas.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
EOT
}
$url = decode(locale => shift) or usage();
$file = encode(locale_fs => decode(locale => shift)) or usage();
usage() if $opt_h or @ARGV;
if (defined $opt_t) {
$opt_t =~ /^(\d+)([smh])?/;
die "$progname: Illegal timeout value!\n" unless defined $1;
$timeout = $1;
$timeout *= 60 if ($2 eq "m");
$timeout *= 3600 if ($2 eq "h");
$ua->timeout($timeout);
}
$rc = mirror($url, $file);
if ($rc == 304) {
print STDERR "$progname: $file is up to date\n"
}
elsif (!is_success($rc)) {
print STDERR "$progname: $rc ", status_message($rc), " ($url)\n";
exit 1;
}
exit;
sub usage
{
die <<"EOT";
Usage: $progname [-options] <url> <file>
-v print version number of program
-t <timeout> Set timeout value
EOT
}
__END__
:endofperl
| amidoimidazol/bio_info | Beginning Perl for Bioinformatics/bin/lwp-mirror.bat | bat | mit | 2,792 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.