code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
@echo off
if [%1]==[] (
set base_path=%USERPROFILE%\Pictures\Spotlight
) else (
set base_path=%1
)
if not exist "%base_path%" mkdir "%base_path%"
mkdir "%base_path%\Temp"
cd /D %USERPROFILE%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager*\LocalState\Assets\
@echo on
for %%e in ("*") do copy /Y %%e "%base_path%\Temp\"
@echo off
rem "Go to the Temp directory to rename all the files to *.jpg"
cd /D "%base_path%\Temp\"
for %%f in ("*") do ren %%f %%f.jpg
rem "Move all the renamed files from the Temp directory to the Target directory"
@echo on
for %%g in ("*") do move %%g ../
cd ..
rmdir Temp
| hashhar/Windows-Hacks | scheduled-tasks/save-windows-spotlight-lockscreens/save-spotlight.bat | bat | mit | 614 |
call zig4.exe -r 03_caz_wgt/03_caz_wgt.dat 03_caz_wgt/03_caz_wgt.spp 03_caz_wgt/03_caz_wgt_out/03_caz_wgt.txt 0 0 1 0 --grid-output-formats=compressed-tif --image-output-formats=png
| VUEG/priocomp | analyses/zonation/priocomp/03_caz_wgt.bat | bat | mit | 182 |
@ECHO OFF
REM setting info box
@ECHO ############################################################################
@ECHO ## ##
@ECHO ## please install MS Visual Studio Express 2012 for Windows Desktop ##
@ECHO ## http://www.microsoft.com/en-us/download/details.aspx?id=34673 ##
@ECHO ## ##
@ECHO ############################################################################
@ECHO.
REM setting PHP version
SET PHPVERSION=5.6.30
SET PHPMAJOR=%PHPVERSION:~0,3%
REM setting full path of current directory to %DIR&
SET DIR=%~dp0
SET DIR=%Dir:~0,-1%
REM check for .\downloads directory
IF NOT EXIST "%DIR%\downloads" (
@ECHO.
@ECHO creating .\downloads directory
MD %DIR%\downloads
)
REM adding current directory and ./downloads to path
SET PATH=%PATH%;%DIR%;%DIR%\downloads;%DIR%\bin;
REM -----------------------------------------------------------
REM --- CHECK EXTENSIONS TO BUILD
REM -----------------------------------------------------------
@ECHO.
SET /P BUILDEXT_EXCEL=Do you want to build the excel extension? [y/n]
@ECHO.
SET /P BUILDEXT_LZ4=Do you want to build the lz4 extension? [y/n]
REM -----------------------------------------------------------
REM --- TOOLS CHECK
REM -----------------------------------------------------------
REM check for wget availability
wget >nul 2>&1
IF %ERRORLEVEL%==9009 (
REM since wget is not available look if PHP is available and try to download wget from web with PHP
php -v >nul 2>&1
IF NOT %ERRORLEVEL%==9009 (
REM download wget with php
@ECHO.
@ECHO loading wget...
php -r "file_put_contents('%DIR%\downloads\wget.exe',file_get_contents('https://eternallybored.org/misc/wget/current/wget.exe'));"
)
REM if wget download with PHP failed try to download with bitsadmin.exe
IF NOT EXIST "%DIR%\downloads\wget.exe" (
REM checking for bitsadmin.exe to download wget.exe from web source
IF NOT EXIST "%SYSTEMROOT%\System32\bitsadmin.exe" (
@ECHO.
@ECHO wget.exe not available
@ECHO failed to download wget.exe automatically
@ECHO please download wget from https://eternallybored.org/misc/wget/current/wget.exe
@ECHO manually and put the wget.exe file in .\downloads folder
@ECHO it is also available from the php-sdk-binary-tools zip archive
PAUSE
EXIT
)
REM bitsadmin.exe is available but wget.exe is not - so download it from web
@ECHO.
@ECHO loading wget for Windows from...
@ECHO https://eternallybored.org/misc/wget/current/wget.exe
bitsadmin.exe /transfer "WgetDownload" "https://eternallybored.org/misc/wget/current/wget.exe" "%DIR%\downloads\wget.exe"
)
REM if download of wget failed stop script
IF NOT EXIST "%DIR%\downloads\wget.exe" (
@ECHO.
@ECHO loading wget failed. Please re-run script or
@ECHO install .\downloads\wget.exe manually
PAUSE
EXIT
)
)
REM check for 7-zip cli tool
7za >nul 2>&1
IF %ERRORLEVEL%==9009 (
@ECHO.
@ECHO loading 7-zip cli tool from web...
wget http://downloads.sourceforge.net/sevenzip/7za920.zip -O %DIR%\downloads\7za920.zip -N
REM if wget download of 7za failed stop script
IF NOT EXIST "%DIR%\downloads\7za920.zip" (
@ECHO.
@ECHO failed to download 7za920.zip - please re-run this script
PAUSE
EXIT
)
REM if php is available try unpacking 7za with php
php -v >nul 2>&1
IF NOT %ERRORLEVEL%==9009 (
@ECHO.
@ECHO unpacking 7za.exe...
php -r "file_put_contents('%DIR%\downloads\7za.exe',file_get_contents('zip://%DIR%/downloads/7za920.zip#7za.exe'));"
)
REM if unpacking 7za with PHP failed try to unpacking with unzip
IF NOT EXIST "%DIR%\downloads\7za.exe" (
REM check if unzip.exe is available to unpack 7-zip
unzip >nul 2>&1
IF %ERRORLEVEL%==9009 (
REM check for unzip tool in Git\bin
IF EXIST "%PROGRAMFILES(X86)%\Git\bin\unzip.exe" (
@ECHO.
@ECHO copying unzip.exe from Git...
COPY "%PROGRAMFILES(X86)%\Git\bin\unzip.exe" "%DIR%\downloads\"
)
IF NOT EXIST "%DIR%\downloads\unzip.exe" (
@ECHO.
@ECHO please unpack .\downloads\7za920.zip manually and re-run this file
PAUSE
EXIT
)
)
REM unpacking 7za920.zip
@ECHO.
@ECHO unpacking 7-zip cli tool...
CD %DIR%\downloads
unzip -C 7za920.zip 7za.exe
CD %DIR%
)
)
7za >nul 2>&1
IF %ERRORLEVEL%==9009 (
@ECHO.
@ECHO 7za.exe not found - please re-run this script
PAUSE
EXIT
)
REM -----------------------------------------------------------
REM --- PHP SDK PREPARATION
REM -----------------------------------------------------------
IF NOT EXIST "%DIR%\downloads\php-sdk-binary-tools-20110915.zip" (
@ECHO.
@ECHO loading php-sdk-binary tools...
wget http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip -O %DIR%\downloads\php-sdk-binary-tools-20110915.zip -N
)
IF NOT EXIST "%DIR%\downloads\php-sdk-binary-tools-20110915.zip" (
@ECHO.
@ECHO php-sdk-binary tools zip file not found in .\downloads please re-run this script
PAUSE
EXIT
)
@ECHO.
@ECHO unpacking php-sdk-binary tools...
7za x %DIR%\downloads\php-sdk-binary-tools-20110915.zip -o%DIR% -y
@ECHO.
@ECHO building directory structure...
MD phpdev
CD phpdev
MD vc11
CD vc11
MD x64
CD x64
MD obj_5.6.30
IF NOT EXIST "%DIR%\downloads\deps-5.6-vc11-x64.7z" (
@ECHO.
@ECHO loading php dependencies...
wget http://windows.php.net/downloads/php-sdk/deps-5.6-vc11-x64.7z -O %DIR%\downloads\deps-5.6-vc11-x64.7z -N
)
IF NOT EXIST "%DIR%\downloads\deps-5.6-vc11-x64.7z" (
@ECHO.
@ECHO php dependencies not found in .\downloads please re-run this script
PAUSE
EXIT
)
@ECHO.
@ECHO unpacking php dependencies...
7za x %DIR%\downloads\deps-5.6-vc11-x64.7z -o%DIR%\phpdev\vc11\x64 -y
IF NOT EXIST "%SystemRoot%\System32\msvcr110.dll" (
@ECHO.
@ECHO MS visual c redistributable dll not found in system path
@ECHO possible problem for compiling
@ECHO grab an up-2-date version of msvcr110.dll from MS
@ECHO http://www.microsoft.com/en-us/download/details.aspx?id=30679
PAUSE
)
IF EXIST "%SystemRoot%\System32\msvcr110.dll" (
@ECHO.
@ECHO copying ms visual c redistributable dll from system path...
COPY "%SystemRoot%\System32\msvcr110.dll" "%DIR%\phpdev\vc11\x64\deps\bin\"
)
IF NOT EXIST "%SystemRoot%\System32\msvcr110d.dll" (
@ECHO.
@ECHO MS visual c redistributable dll not found in system path
@ECHO possible problem for compiling
@ECHO grab an up-2-date version of msvcr110d.dll from MS
@ECHO http://www.microsoft.com/en-us/download/details.aspx?id=30679
PAUSE
)
IF EXIST "%SystemRoot%\System32\msvcr110d.dll" (
@ECHO.
@ECHO copying ms visual c redistributable dll from system path...
COPY "%SystemRoot%\System32\msvcr110d.dll" "%DIR%\phpdev\vc11\x86\deps\bin\"
)
IF NOT EXIST "%DIR%\downloads\php-5.6.30.tar.bz2" (
@ECHO.
@ECHO loading php source code...
wget http://php.net/get/php-5.6.30.tar.bz2/from/this/mirror -O %DIR%\downloads\php-5.6.30.tar.bz2 -N
)
IF NOT EXIST "%DIR%\downloads\php-5.6.30.tar.bz2" (
@ECHO.
@ECHO php source code not found in .\downloads please re-run this script
PAUSE
EXIT
)
IF NOT EXIST "%DIR%\downloads\php-5.6.30.tar" (
7za x %DIR%\downloads\php-5.6.30.tar.bz2 -o%DIR%\downloads -y
)
IF NOT EXIST "%DIR%\downloads\php-5.6.30.tar" (
@ECHO.
@ECHO php source code not found in .\downloads please re-run this script
PAUSE
EXIT
)
@ECHO.
@ECHO unpacking php source code...
7za x %DIR%\downloads\php-5.6.30.tar -o%DIR%\phpdev\vc11\x64 -y
REM @ECHO cloning php-src repository from github...
REM git clone -b "PHP-5.6.30" https://github.com/php/php-src.git php-5.6.30
CD %DIR%
REM SET CFLAGS=--disable-all --enable-cli --enable-snapshot-build --enable-debug-pack --enable-object-out-dir=../obj_5.6.30/ --disable-isapi --disable-nsapi
SET CFLAGS=--disable-all --enable-cli --enable-snapshot-build --enable-object-out-dir=../obj_5.6.30/ --disable-isapi --disable-nsapi
REM -----------------------------------------------------------
REM --- PHP_EXCEL / LIBXL EXTENSION
REM -----------------------------------------------------------
IF /I %BUILDEXT_EXCEL%==Y (
call %DIR%\ext\php_excel_5.6.x_x64.bat
SET CFLAGS=%CFLAGS% --with-excel=shared --with-xml --with-libxml --with-iconv
)
REM -----------------------------------------------------------
REM --- LZ4 EXTENSION
REM -----------------------------------------------------------
IF /I %BUILDEXT_LZ4%==Y (
call %DIR%\ext\php_lz4_5.6.x_x64.bat
SET CFLAGS=%CFLAGS% --enable-lz4=shared
)
REM -----------------------------------------------------------
REM --- BUILDING COMPILE.BAT files
REM -----------------------------------------------------------
CD %DIR%
@ECHO @ECHO OFF> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO ####################################################>> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO ## Attention ##>> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO ## please call this batch file with ##>> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO ## Visual Studio 2012 Native Tools Command Prompt ##>> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO ## the standard Windows CLI will not work ##>> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO ####################################################>> compile-php-5.6.30-nts-x64.bat
@ECHO.>>compile-php-5.6.30-nts-x64.bat
@ECHO PAUSE>> compile-php-5.6.30-nts-x64.bat
@ECHO call .\bin\phpsdk_setvars.bat>> compile-php-5.6.30-nts-x64.bat
@ECHO CD .\phpdev\vc11\x64\php-5.6.30>> compile-php-5.6.30-nts-x64.bat
@ECHO nmake clean>> compile-php-5.6.30-nts-x64.bat
@ECHO call buildconf.bat --force>> compile-php-5.6.30-nts-x64.bat
@ECHO call configure %CFLAGS% --disable-zts>> compile-php-5.6.30-nts-x64.bat
@ECHO nmake snap>> compile-php-5.6.30-nts-x64.bat
@ECHO CD .\..\..\..\..\>> compile-php-5.6.30-nts-x64.bat
@ECHO PAUSE>> compile-php-5.6.30-nts-x64.bat
@ECHO @ECHO OFF> compile-php-5.6.30-ts-x64.bat
@ECHO @ECHO ####################################################>> compile-php-5.6.30-ts-x64.bat
@ECHO @ECHO ## Attention ##>> compile-php-5.6.30-ts-x64.bat
@ECHO @ECHO ## please call this batch file with ##>> compile-php-5.6.30-ts-x64.bat
@ECHO @ECHO ## Visual Studio 2012 Native Tools Command Prompt ##>> compile-php-5.6.30-ts-x64.bat
@ECHO @ECHO ## the standard Windows CLI will not work ##>> compile-php-5.6.30-ts-x64.bat
@ECHO @ECHO ####################################################>> compile-php-5.6.30-ts-x64.bat
@ECHO.>>compile-php-5.6.30-ts-x64.bat
@ECHO PAUSE>> compile-php-5.6.30-ts-x64.bat
@ECHO call .\bin\phpsdk_setvars.bat>> compile-php-5.6.30-ts-x64.bat
@ECHO CD .\phpdev\vc11\x64\php-5.6.30>> compile-php-5.6.30-ts-x64.bat
@ECHO nmake clean>> compile-php-5.6.30-ts-x64.bat
@ECHO call buildconf.bat --force>> compile-php-5.6.30-ts-x64.bat
@ECHO call configure %CFLAGS%>> compile-php-5.6.30-ts-x64.bat
@ECHO nmake snap>> compile-php-5.6.30-ts-x64.bat
@ECHO CD .\..\..\..\..\>> compile-php-5.6.30-ts-x64.bat
@ECHO PAUSE>> compile-php-5.6.30-ts-x64.bat
PAUSE | johmue/win-php-sdk-builder | build-php-5.6.x-win64-sdk.bat | bat | mit | 11,664 |
javac -d c text2/*.java | liucong3/chen | c/cp.bat | bat | mit | 23 |
@if "%~1" == "" (
echo Usage : %0 directory. recursive add '-r' , replace add '-R'; preview without '-R'. more options see usage of %~dp0..\lzmw
echo Example-preview : %0 %CD%
echo Example-replace : %0 %CD% -R
echo Example-preview-sub-directory : %0 %CD% -r
echo Example-replace-sub-directory : %0 %CD% -r -R
echo Example-filter-directory : %0 %CD% --nd "^(softwares|logs|data|target|bin|obj|Debug|Release)$" -r -R
echo Example-filter-directory : %0 . --nd "^(softwares|logs|data|target|bin|obj|Debug|Release)$" -r -R
echo Example-filter-directory : %0 %%CD%% --nd "^(softwares|logs|data|target|bin|obj|Debug|Release)$" -r -R
exit /b 5
)
:: first argument must be the path, just like above examples.
%~dp0..\lzmw -it "^(\s*@\s*echo)\s+off\b" -o "$1 on" -f "\.(bat|cmd)$" -p %*
| qualiu/testMobius | tools/bat/turn-on-bat-debug-in-dir.bat | bat | mit | 815 |
cmd_net/ipv6/protocol.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/ipv6/.protocol.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 -DMODULE -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(protocol)" -D"KBUILD_MODNAME=KBUILD_STR(ipv6)" -c -o net/ipv6/.tmp_protocol.o net/ipv6/protocol.c
deps_net/ipv6/protocol.o := \
net/ipv6/protocol.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/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/rps.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/fcoe.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/vlan/8021q.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/if.h \
include/linux/socket.h \
/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/hdlc/ioctl.h \
include/linux/if_ether.h \
$(wildcard include/config/sysctl.h) \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/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) \
$(wildcard include/config/network/phy/timestamping.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/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/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) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/net.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/sysctl.h \
include/linux/ratelimit.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) \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.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) \
/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/security.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/inet.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
include/linux/list_nulls.h \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(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/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
/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/net/protocol.h \
include/linux/ipv6.h \
$(wildcard include/config/ipv6/privacy.h) \
$(wildcard include/config/ipv6/router/pref.h) \
$(wildcard include/config/ipv6/route/info.h) \
$(wildcard include/config/ipv6/optimistic/dad.h) \
$(wildcard include/config/ipv6/mip6.h) \
$(wildcard include/config/ipv6/subtrees.h) \
include/linux/icmpv6.h \
include/linux/tcp.h \
$(wildcard include/config/tcp/md5sig.h) \
include/net/sock.h \
include/linux/security.h \
$(wildcard include/config/security/path.h) \
$(wildcard include/config/security/network.h) \
$(wildcard include/config/security/network/xfrm.h) \
$(wildcard include/config/securityfs.h) \
include/linux/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 \
include/net/inet_connection_sock.h \
include/net/inet_sock.h \
include/linux/jhash.h \
include/net/request_sock.h \
include/net/netns/hash.h \
include/net/inet_timewait_sock.h \
include/net/tcp_states.h \
include/net/timewait_sock.h \
include/linux/udp.h \
net/ipv6/protocol.o: $(deps_net/ipv6/protocol.o)
$(deps_net/ipv6/protocol.o):
| srinugnt2000/linux-2.6.37 | net/ipv6/.protocol.o.cmd | bat | gpl-2.0 | 31,312 |
cmd_drivers/usb/gadget/g_ether.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/usb/gadget/g_ether.o drivers/usb/gadget/ether.o
| heyoufei2/yocto3.14.38_kernel | drivers/usb/gadget/.g_ether.o.cmd | bat | gpl-2.0 | 132 |
cmd_drivers/rtc/rtc-core.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o drivers/rtc/rtc-core.o drivers/rtc/class.o drivers/rtc/interface.o drivers/rtc/rtc-dev.o drivers/rtc/rtc-proc.o drivers/rtc/rtc-sysfs.o
| emwno/android_kernel_U8500 | drivers/rtc/.rtc-core.o.cmd | bat | gpl-2.0 | 234 |
@echo off
:network
ipconfig /renew
ipconfig /flushdns
echo Done...
pause >nul | sithsiri/fixme | FixMe/FixMe/fixnet.bat | bat | gpl-2.0 | 79 |
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/pluto_step.o := ld -m elf_i386 -r -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/pluto_step.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/objects/hal/drivers/pluto_step.o
| CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver | src/.pluto_step.o.cmd | bat | gpl-2.0 | 234 |
:: 3dworld with textures and moving "enemy" : Mikael Sollenborn 2016
@echo off
cd ..
setlocal ENABLEDELAYEDEXPANSION
cls & cmdwiz setfont 0
set /a W=180,H=110
mode %W%,%H%
mode con rate=0 delay=10000
for /F "Tokens=1 delims==" %%v in ('set') do if not %%v==H if not %%v==W if /I not %%v==PATH set "%%v="
cmdgfx.exe "text 8 0 0 Generating_world...\n\n\n___(H_for_help) 82,50"
set /a XMID=%W%/2, YMID=%H%/2-4
set /a DIST=0, DRAWMODE=5, GROUNDCOL=2, MULVAL=250, YMULVAL=125"
set ASPECT=0.69259
set /a RX=0, RY=720, RZ=0
::set CUBECOLS=0 4 b1 0 4 b1 0 4 b1 0 4 b1 0 4 b0 0 4 b0 0 1 b1 0 1 b1 0 1 b1 0 1 b1 0 1 b0 0 1 b0
set CUBECOLS=0 0 b2 0 0 b2 0 0 b1 0 0 b1 0 0 b0 0 0 b0
set GROUNDCOLS=0 0 b2 0 0 b0
set /A CNT=0, SLOTS=0
set FWORLD=data\3dworld2.dat
if not "%~1" == "" if exist %1 set FWORLD=%1
for /F "tokens=*" %%i in (%FWORLD%) do (if !SLOTS!==0 cmdwiz stringlen "%%i"&set SLOTS=!ERRORLEVEL!)& set WRLD!CNT!=%%i&set /A CNT+=1
set YSLOTS=%CNT%
set FN=objects\3dworld.obj
set FN2=objects\3dworld-ground.obj
set /A PLX=%SLOTS%/2,PLZ=%YSLOTS%/2
set /A XC=-%SLOTS%
set /A SLOTM=%SLOTS%-1
set /A YC=-%YSLOTS%
set /A YSLOTM=%YSLOTS%-1
set /A CNT=0 & for /L %%i in (0,1,%YSLOTM%) do set SS=!WRLD%%i!& for /L %%j in (0,1,%SLOTM%) do set S=!SS:~%%j,1!&if not "!S!"=="-" for %%a in (!CNT!) do set t%%a=!S!&set sx%%a=1&set sz%%a=1&set sy%%a=!S!&set /A dx%%a = %XC%+%%j*2 & set /A dy%%a=3 & set /A dz%%a = %YC%+%%i*2 & set /A CNT+=1&(if "!S!"=="o" set /A CNT-=1&set /A PLX=%%j*2&set /A PLZ=%%i*2)&(if "!S!"=="M" set /A sy%%a=9)&(if "!S!"=="N" set /A sy%%a=6)
set /A TX=(%XC%+%PLX%)*%MULVAL%&set TY=0&set /A TZ=(%YC%+%PLZ%)*%MULVAL%*-1
set NOF_OBJECTS=%CNT%
set /A NOF_V=%NOF_OBJECTS%*8
set /A NOF_F=%NOF_OBJECTS%*6
if exist %FN% if exist %FN2% set /A TX=(%XC%+%PLX%)*%MULVAL%&set TY=0&set /A TZ=(%YC%+%PLZ%)*%MULVAL%*-1 & goto SKIPGEN
echo usemtl img\tile_door.pcx >%FN%
echo vt 0 0 >>%FN%
echo vt 0 1 >>%FN%
echo vt 1 1 >>%FN%
echo vt 1 0 >>%FN%
set Vx0=-1&set Vy0=-1&set Vz0=-1
set Vx1=1& set Vy1=-1&set Vz1=-1
set Vx2=1& set Vy2=1& set Vz2=-1
set Vx3=-1&set Vy3=1& set Vz3=-1
set Vx4=-1&set Vy4=-1&set Vz4=1
set Vx5=1& set Vy5=-1&set Vz5=1
set Vx6=1& set Vy6=1& set Vz6=1
set Vx7=-1&set Vy7=1& set Vz7=1
set F0_0=0&set F0_1=3&set F0_2=2&set F0_3=1
set F1_0=5&set F1_1=6&set F1_2=7&set F1_3=4
set F2_0=6&set F2_1=5&set F2_2=1&set F2_3=2
set F3_0=3&set F3_1=0&set F3_2=4&set F3_3=7
set F4_0=7&set F4_1=6&set F4_2=2&set F4_3=3
set F5_0=5&set F5_1=4&set F5_2=0&set F5_3=1
set /A NOF_O=%NOF_OBJECTS%-1
set CNT=1&for /L %%a in (0,1,%NOF_O%) do for /L %%b in (0,1,7) do set /a vx=!Vx%%b!&(if not "!sx%%a!"=="" set /a vx*=!sx%%a!)&set /a vx-=!dx%%a!&set /a vx*=%MULVAL% & set /a vy=!Vy%%b!&(if not "!sy%%a!"=="" if !vy! lss 0 set /a vy*=!sy%%a!)&set /a vy+=!dy%%a!&set /a vy*=%YMULVAL% & set /a vz=!Vz%%b!&(if not "!sz%%a!"=="" set /a vz*=!sz%%a!)&set /a vz+=!dz%%a!&set /a vz*=%MULVAL%&echo v !vx! !vy! !vz!>>%FN%&set /A CNT+=1
for /L %%a in (0,1,%NOF_O%) do for /L %%b in (0,1,5) do if not !t%%a!==M if not !t%%a!==N set /a f0=!F%%b_0!+%%a*8+1&set /a f1=!F%%b_1!+%%a*8+1&set /a f2=!F%%b_2!+%%a*8+1&set /a f3=!F%%b_3!+%%a*8+1&echo f !f0!/1/ !f1!/2/ !f2!/3/ !f3!/4/ >>%FN%
echo usemtl img\dos_shade4.pcx >>%FN%
for /L %%a in (0,1,%NOF_O%) do for /L %%b in (0,1,5) do if !t%%a!==M set /a f0=!F%%b_0!+%%a*8+1&set /a f1=!F%%b_1!+%%a*8+1&set /a f2=!F%%b_2!+%%a*8+1&set /a f3=!F%%b_3!+%%a*8+1&echo f !f0!/1/ !f1!/2/ !f2!/3/ !f3!/4/ >>%FN%
echo usemtl img\dos_shade2.pcx >>%FN%
for /L %%a in (0,1,%NOF_O%) do for /L %%b in (0,1,5) do if !t%%a!==N set /a f0=!F%%b_0!+%%a*8+1&set /a f1=!F%%b_1!+%%a*8+1&set /a f2=!F%%b_2!+%%a*8+1&set /a f3=!F%%b_3!+%%a*8+1&echo f !f0!/1/ !f1!/2/ !f2!/3/ !f3!/4/ >>%FN%
for /L %%a in (0,1,7) do set Vx%%a=&set Vy%%a=&set Vz%%a=&set F%%a_0=&set F%%a_1=&set F%%a_2=&set F%%a_3=
for /L %%a in (0,1,%CNT%) do set sx%%a=&set sy%%a=&set sz%%a=&set dx%%a=&set dy%%a=&set dz%%a=&set t%%a=
echo usemtl img\tile_ground.pcx >%FN2%
echo vt 0 0 >>%FN2%
echo vt 0 1 >>%FN2%
echo vt 1 1 >>%FN2%
echo vt 1 0 >>%FN2%
set TILESIZE=1000
set /A CNT=1, CNT2=0
for /L %%a in (-20000,%TILESIZE%,20000) do for /L %%b in (-20000,%TILESIZE%,20000) do set /A V1=%%a,V2=%%a+%TILESIZE%,V3=%%b,V4=%%b+%TILESIZE% & echo v !V1! 500 !V3! >>%FN2% & echo v !V2! 500 !V3! >>%FN2% & echo v !V2! 500 !V4! >>%FN2% & echo v !V1! 500 !V4! >>%FN2%&set /A CNT2+=1
for /L %%a in (1,1,%CNT2%) do set /a f0=!CNT!&set /a f1=!CNT!+1&set /a f2=!CNT!+2&set /a f3=!CNT!+3 & echo f !f0!/1/ !f1!/2/ !f2!/3/ !f3!/4/ >>%FN2% & set /A CNT+=4
set TILESIZE=&set vx=&set vy=&set vz=&set PLX=&set PLZ=&set CNT2=&for /L %%a in (0,1,4) do set f%%a=&set V%%a=
:SKIPGEN
set BKSTR="fbox 0 1 b1 0,0,%W%,30 & fbox 0 1 20 0,30,%W%,10 & fbox 9 1 b1 0,40,%W%,6 & fbox 9 1 db 0,46,%W%,4 & fbox 0 0 20 0,51,%W%,5 & fbox 0 %GROUNDCOL% b2 0,53,%W%,5 & fbox 0 %GROUNDCOL% b1 0,57,%W%,10 & fbox 0 %GROUNDCOL% b0 0,64,%W%,22 & fbox 8 %GROUNDCOL% 20 0,80,%W%,100 "
set /A MAP=0,ZMOD=0,XMOD=0
set MAPTXT=image data/3dworld2.dat e 0 0 - 146,2
set HELPT=box c 0 fe 3,106,173,2^& text 7 0 0 \e0_LEFT/RIGHT/J/K/MOUSE-X\r_ROTATE___\e0UP/DOWN/W/S\r_MOVE___\e0A/D\r_STRAFE___\e0PGUP/PGDWN\r_RISE/SINK___\e0HOME/END/MOUSE-Y\r_LOOK_UP/DOWN___\e0SPACE_\rRESET_Y___\e0M\r_MAP___\e0E\r_ENEMY___\e0H\r_HELP___\e0ESC\r_QUIT_ 4,107
set HELP=&set /a HLP=0
set RENDERER=_gdi&set REND=0
set STOP=
cmdwiz gettime&set ORGT=!errorlevel!
set FN3=wrld-temp.obj
set ENEMY=1
set /A "f0=%NOF_V%+1,f1=%NOF_V%+1+1,f2=%NOF_V%+1+2,f3=%NOF_V%+1+3"
set /A XP1=0,XP2=500,DELT=300, CNT=0, BOUNDSCHECK=1
copy /Y %FN% %FN3%>nul
:LOOP
for /L %%1 in (1,1,30) do if not defined STOP for /L %%2 in (1,1,10) do if not defined STOP (
if !MAP!==1 set /A "XP=(!TX!+!XMOD!)/(%MULVAL%*2)+%SLOTS%/2+146, ZP=(%YSLOTS%)/2-(!TZ!+!ZMOD!)/(%MULVAL%*2)+2" & set MAPP=pixel c 0 db !XP!,!ZP!
if !ENEMY! == 1 (
copy /Y %FN% %FN3%>nul
set /A "XP1+=!DELT!, XP2+=!DELT!"
if !XP1! gtr 3500 set DELT=-300
if !XP1! lss -5000 set DELT=300
echo v 250 -100 !XP1! >>%FN3%
echo v 750 -100 !XP1! >>%FN3%
echo v 750 500 !XP1! >>%FN3%
echo v 250 500 !XP1! >>%FN3%
set /A "CNT+=1,FRM=(!CNT!/8) %% 2"
echo usemtl img\ugly!FRM!.pcx e>>%FN3%
echo f !f0!/1/ !f1!/4/ !f2!/3/ !f3!/2/>>%FN3%
echo f !f0!/1/ !f3!/2/ !f2!/3/ !f1!/4/>>%FN3%
)
cmdgfx!RENDERER! "%BKSTR:~1,-1% & 3d %FN2% !DRAWMODE!,-1 !RX!,!RY!,!RZ! 0,0,0 1,1,1,!TX!,!TY!,!TZ! 1,300,0,300 %XMID%,!YMID!,%DIST%,%ASPECT% %GROUNDCOLS% & 3d %FN3% !DRAWMODE!,-1 !RX!,!RY!,!RZ! 0,0,0 1,1,1,!TX!,!TY!,!TZ! 1,1,0,300 %XMID%,!YMID!,%DIST%,%ASPECT% !CUBECOLS! & !MAPT! & !MAPP! & !HELP!" M0uf0Z300
set RET=!errorlevel!
if not !RET! == -1 (
set /a "ME=!RET! & 1,ML=(!RET!&2)>>1, MR=(!RET!&4)>>2, MWD=MT=(!RET!&8)>>3, MWU=(!RET!&16)>>4, MX=(!RET!>>5)&511, MY=(!RET!>>14)&127"
if not "!OLDMX!"=="" if !ME!==1 if !ML!==0 if !MWD!==0 if !MWU!==0 set /a "RY+=(!OLDMX!-!MX!),TY-=(!OLDMY!-!MY!),YMID+=(!OLDMY!-!MY!)"&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !MWD!==1 set /A RY+=720&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !MWU!==1 set /A RY+=720&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !ME!==1 if !MWD!==0 if !MWU!==0 set /a OLDMX=!MX!,OLDMY=!MY!
set /a "NKEY=!RET!>>22, NKD=(!RET!>>21) & 1"
if not !NKEY!==0 (
if !NKD!==0 (
set KEY=!NKEY!
if !KEY! == 109 set MAPP=&set /A MAP=1-!MAP!&(if !MAP!==0 set MAPT=)&(if !MAP!==1 set MAPT=%MAPTXT%)
if !KEY! == 104 set /A HLP=1-!HLP! & (if !HLP!==1 set HELP=!HELPT!)&(if !HLP!==0 set HELP=)
if !KEY! == 114 set /A REND=1-!REND! & (if !REND!==0 set RENDERER=_gdi)&(if !REND!==1 set RENDERER=)
if !KEY! == 112 cmdwiz getch
if !KEY! == 101 set /A ENEMY=1-!ENEMY! & copy /Y %FN% %FN3%>nul
if !KEY! == 32 set /a YMID=%H%/2-4 & set TY=0&set BOUNDSCHECK=1
rem if !KEY! == 13 set /a DRAWTMP=!DRAWMODE! & (if !DRAWTMP! == 0 set DRAWMODE=5) & (if !DRAWTMP! == 5 set DRAWMODE=0)
if !KEY! == 27 set STOP=1
set KEY=0
)
if !NKD!==1 set KEY=!NKEY!
)
)
if not !KEY! == 0 (
if !KEY! == 331 set /A RY+=8&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !KEY! == 333 set /A RY-=8&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !KEY! == 106 set /A RY+=8&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !KEY! == 107 set /A RY-=8&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)
if !KEY! == 97 set ORY=!RY!&set /A RY+=360&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)&call :MOVE 1 2&set RY=!ORY!
if !KEY! == 100 set ORY=!RY!&set /A RY+=360&(if !RY! gtr 1440 set /A RY=!RY!-1440)&(if !RY! lss 0 set /A RY=1440+!RY!)&call :MOVE -1 2&set RY=!ORY!
if !KEY! == 328 call :MOVE 1 1
if !KEY! == 336 call :MOVE -1 1
if !KEY! == 119 call :MOVE 1 1
if !KEY! == 115 call :MOVE -1 1
if !KEY! == 337 set /A TY-=30&set BOUNDSCHECK=0
if !KEY! == 329 set /A TY+=30&set BOUNDSCHECK=0
if !KEY! == 335 set /A TY+=30&set /A YMID-=12
if !KEY! == 327 set /A TY-=30&set /A YMID+=12
)
)
if not defined STOP goto LOOP
::cmdwiz gettime&set /A TLAPSE=(!errorlevel!-%ORGT%)/100&echo !TLAPSE! cs&pause&pause
del /Q %FN3%
endlocal
mode 80,50
mode con rate=31 delay=0
cls
cmdwiz setfont 6
goto :eof
:MOVE <direction> <div>
if !RY! lss 360 set /A AZ=-(360-!RY!)&set /A AX=360-(-!AZ!)
if !RY! geq 360 if !RY! lss 720 set /A AZ=360-(720-!RY!)&set /A AX=360-!AZ!
if !RY! geq 720 if !RY! lss 1080 set /A AZ=360-(!RY!-720)&set /A AX=-(360-!AZ!)
if !RY! geq 1080 set /A AZ=360-(!RY!-720)&set /A AX=-(360-(-!AZ!))
set /a TTZ=%TZ%, TTX=%TX%
set /A ZMOD=%MULVAL% & if !TTZ! lss 0 set /A ZMOD=-%MULVAL%
set /A XMOD=%MULVAL% & if !TTX! lss 0 set /A XMOD=-%MULVAL%
if %BOUNDSCHECK% == 1 for /L %%a in (1,1,4) do set /A TTZ+=%AZ%*%1/%2,TTX+=%AX%*%1/%2 & set /A XP=(!TTX!+%XMOD%)/(%MULVAL%*2)+%SLOTS%/2, ZP=(%YSLOTS%)/2-(!TTZ!+%ZMOD%)/(%MULVAL%*2) & if !ZP! geq 0 if !XP! geq 0 if !ZP! lss %YSLOTS% if !XP! lss %SLOTS% for %%x in (!XP!) do for %%z in (!ZP!) do set SS=!WRLD%%z! & set S=!SS:~%%x,1!& if not "!S!"=="-" if not "!S!"=="0" if not "!S!"=="o" goto :eof
set /a TZ+=%AZ%*%1/%2,TX+=%AX%*%1/%2
| misol1/cmdgfx | legacy/3dworld3.bat | bat | gpl-2.0 | 10,219 |
prog='dbmapreduce'
args='-k experiment -f TEST/dbmapreduce_external_file.pl -C make_reducer'
cmp='diff -cb '
in=TEST/dbmapreduce_ex.in
altcmp='dbfilediff --quiet -E --exit '
altcmp_needs_input_flags=true
| gitpan/Fsdb | TEST/dbmapreduce_external_file.cmd | bat | gpl-2.0 | 204 |
cmd_drivers/video/backlight/built-in.o := /root/Kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/video/backlight/built-in.o drivers/video/backlight/lcd.o drivers/video/backlight/backlight.o
| garwynn/D710SPR_GB27_Kernel | drivers/video/backlight/.built-in.o.cmd | bat | gpl-2.0 | 221 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\purify-css\bin\purifycss" %*
) ELSE (
node "%~dp0\..\purify-css\bin\purifycss" %*
) | alvarpoon/evie | wp-content/themes/evie/node_modules/grunt-purifycss/node_modules/.bin/purifycss.cmd | bat | gpl-2.0 | 145 |
cmd_kernel/exit.o := ppc_4xx-gcc -m32 -Wp,-MD,kernel/.exit.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(exit)" -D"KBUILD_MODNAME=KBUILD_STR(exit)" -c -o kernel/.tmp_exit.o kernel/exit.c
deps_kernel/exit.o := \
kernel/exit.c \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/futex.h) \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/errno.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/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/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \
$(wildcard include/config/phys/64bit.h) \
include/asm-generic/int-ll64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \
$(wildcard include/config/power4/only.h) \
$(wildcard include/config/ibm405/err77.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \
$(wildcard include/config/ppc/e500mc.h) \
$(wildcard include/config/e500.h) \
include/linux/stringify.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \
$(wildcard include/config/ppc64.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.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/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
include/linux/linkage.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \
include/linux/byteorder/big_endian.h \
include/linux/swab.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \
include/linux/byteorder/generic.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \
include/asm-generic/div64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \
$(wildcard include/config/8xx.h) \
$(wildcard include/config/403gcx.h) \
$(wildcard include/config/ppc32.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \
$(wildcard include/config/vsx.h) \
$(wildcard include/config/ppc/prep.h) \
$(wildcard include/config/task/size.h) \
$(wildcard include/config/kernel/start.h) \
$(wildcard include/config/4xx.h) \
$(wildcard include/config/booke.h) \
$(wildcard include/config/altivec.h) \
$(wildcard include/config/spe.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \
$(wildcard include/config/40x.h) \
$(wildcard include/config/fsl/emb/perfmon.h) \
$(wildcard include/config/ppc/book3s/64.h) \
$(wildcard include/config/ppc/book3s/32.h) \
$(wildcard include/config/ppc/book3e/64.h) \
$(wildcard include/config/e200.h) \
$(wildcard include/config/ppc/cell.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \
$(wildcard include/config/mpc10x/bridge.h) \
$(wildcard include/config/ppc/83xx.h) \
$(wildcard include/config/8260.h) \
$(wildcard include/config/ppc/mpc52xx.h) \
$(wildcard include/config/bdi/switch.h) \
$(wildcard include/config/power3.h) \
$(wildcard include/config/power4.h) \
$(wildcard include/config/44x.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \
$(wildcard include/config/ppc/64k/pages.h) \
$(wildcard include/config/ppc/16k/pages.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/relocatable.h) \
$(wildcard include/config/ppc/std/mmu/64.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/ppc/smlpar.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \
$(wildcard include/config/crash/dump.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/not/coherent/cache.h) \
$(wildcard include/config/pte/64bit.h) \
include/asm-generic/getorder.h \
include/asm-generic/memory_model.h \
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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \
$(wildcard include/config/debugger.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/6xx.h) \
$(wildcard include/config/booke/wdt.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \
$(wildcard include/config/ppc/book3e.h) \
include/asm-generic/cmpxchg-local.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/wait.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/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/mmu/notifier.h) \
include/linux/auxvec.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable-ppc32.h \
$(wildcard include/config/consistent/size.h) \
$(wildcard include/config/fsl/booke.h) \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/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/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/blk/dev/io/trace.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/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/group/sched.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \
include/linux/jiffies.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io.h \
$(wildcard include/config/ra.h) \
$(wildcard include/config/rd.h) \
$(wildcard include/config/ppc/indirect/io.h) \
$(wildcard include/config/eeh.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/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \
$(wildcard include/config/spu/base.h) \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \
$(wildcard include/config/dynamic/ftrace.h) \
include/trace/events/module.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/semaphore.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \
$(wildcard include/config/swiotlb.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \
$(wildcard include/config/ppc/iseries.h) \
$(wildcard include/config/power.h) \
$(wildcard include/config/8xx/cpu6.h) \
include/asm-generic/iomap.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \
$(wildcard include/config/ppc/std/mmu.h) \
$(wildcard include/config/kgdb.h) \
$(wildcard include/config/xmon.h) \
$(wildcard include/config/kprobes.h) \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hardirq.h \
include/asm-generic/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumasks/offstack.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq.h \
$(wildcard include/config/nr/irqs.h) \
$(wildcard include/config/irqstacks.h) \
include/linux/radix-tree.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
include/linux/irq_cpustat.h \
include/linux/personality.h \
include/linux/tty.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/major.h \
include/linux/termios.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/termios.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctls.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/termbits.h \
include/asm-generic/termios-base.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \
include/linux/tty_driver.h \
$(wildcard include/config/console/poll.h) \
include/linux/cdev.h \
include/linux/tty_ldisc.h \
include/linux/iocontext.h \
$(wildcard include/config/blk/cgroup.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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/shmparam.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/shmbuf.h \
include/linux/msg.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/msgbuf.h \
include/linux/xfrm.h \
include/net/flow.h \
include/linux/in6.h \
include/linux/cpu.h \
$(wildcard include/config/arch/cpu/probe/release.h) \
$(wildcard include/config/pm/sleep/smp.h) \
include/linux/sysdev.h \
include/linux/node.h \
$(wildcard include/config/memory/hotplug/sparse.h) \
$(wildcard include/config/hugetlbfs.h) \
include/linux/acct.h \
$(wildcard include/config/m68k.h) \
$(wildcard include/config/bsd/process/acct/v3.h) \
include/linux/tsacct_kern.h \
include/linux/taskstats.h \
include/linux/file.h \
include/linux/fdtable.h \
include/linux/nsproxy.h \
$(wildcard include/config/cgroup/ns.h) \
include/linux/pid_namespace.h \
$(wildcard include/config/pid/ns.h) \
include/linux/ptrace.h \
include/linux/profile.h \
$(wildcard include/config/profiling.h) \
include/linux/mount.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/magic.h \
include/linux/kthread.h \
include/linux/mempolicy.h \
$(wildcard include/config/tmpfs.h) \
include/linux/pagemap.h \
include/linux/highmem.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/uaccess.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cacheflush.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kmap_types.h \
include/linux/taskstats_kern.h \
include/linux/delayacct.h \
include/linux/freezer.h \
$(wildcard include/config/freezer.h) \
$(wildcard include/config/cgroup/freezer.h) \
include/linux/cgroup.h \
include/linux/cgroupstats.h \
include/linux/prio_heap.h \
include/linux/idr.h \
include/linux/syscalls.h \
$(wildcard include/config/event/profile.h) \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/mips.h) \
$(wildcard include/config/have/syscall/wrappers.h) \
include/trace/syscall.h \
include/linux/ftrace_event.h \
include/linux/ring_buffer.h \
$(wildcard include/config/ring/buffer/allow/swap.h) \
include/linux/kmemcheck.h \
include/linux/seq_file.h \
include/linux/trace_seq.h \
include/linux/posix-timers.h \
include/linux/cn_proc.h \
$(wildcard include/config/proc/events.h) \
include/linux/futex.h \
include/linux/pipe_fs_i.h \
include/linux/audit.h \
$(wildcard include/config/change.h) \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
$(wildcard include/config/blk/dev/integrity.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/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/writeback.h \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/linux/bsg.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma.h \
include/linux/elevator.h \
include/linux/task_io_accounting_ops.h \
include/linux/tracehook.h \
include/linux/fs_struct.h \
include/linux/init_task.h \
include/linux/utsname.h \
$(wildcard include/config/uts/ns.h) \
include/linux/ftrace.h \
$(wildcard include/config/function/tracer.h) \
$(wildcard include/config/stack/tracer.h) \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/hw/branch/tracer.h) \
include/linux/trace_clock.h \
include/linux/kallsyms.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ftrace.h \
include/linux/user_namespace.h \
$(wildcard include/config/user/ns.h) \
include/linux/securebits.h \
include/net/net_namespace.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/wext/core.h) \
$(wildcard include/config/net.h) \
$(wildcard include/config/net/ns.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
$(wildcard include/config/ip/mroute.h) \
$(wildcard include/config/ip/pimsm/v1.h) \
$(wildcard include/config/ip/pimsm/v2.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/pimsm/v2.h) \
include/net/dst_ops.h \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
$(wildcard include/config/bridge/nf/ebtables.h) \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/skbuff.h \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/net.h \
include/linux/socket.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/socket.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/random.h \
include/linux/ratelimit.h \
include/linux/textsearch.h \
include/net/checksum.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/checksum.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/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/dma-attrs.h \
include/linux/bug.h \
include/linux/scatterlist.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/dma-mapping.h \
include/linux/dma-debug.h \
$(wildcard include/config/dma/api/debug.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swiotlb.h \
include/linux/swiotlb.h \
include/asm-generic/dma-mapping-common.h \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/in.h \
include/net/netns/xfrm.h \
include/linux/seq_file_net.h \
include/linux/perf_event.h \
$(wildcard include/config/have/hw/breakpoint.h) \
$(wildcard include/config/perf/use/vmalloc.h) \
include/trace/events/sched.h \
include/linux/hw_breakpoint.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu_context.h \
include/asm-generic/mm_hooks.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputhreads.h \
kernel/cred-internals.h \
kernel/exit.o: $(deps_kernel/exit.o)
$(deps_kernel/exit.o):
| mattkelly/linux-2.6-xlnx | kernel/.exit.o.cmd | bat | gpl-2.0 | 32,971 |
# This file should be used with EPICS base 3.15.4 and mrfioc2 2.7.13
# With current EEE 1.8.2, the proper command is
# $ iocsh cpci-evg-230_0.cmd
# or
# $ iocsh -3.15.4 cpci-evg-230_0.cmd
require mrfioc2,2.7.13
epicsEnvSet("SYS" "ICS-CPCIEVG-230")
epicsEnvSet("EVG" "EVG0")
epicsEnvSet("EVG_PCIBUS" "0x16")
epicsEnvSet("EVG_PCIDEVICE" "0x09")
epicsEnvSet("EVG_PCIFUNCTION" "0x0")
mrmEvgSetupPCI($(EVG), $(EVG_PCIBUS), $(EVG_PCIDEVICE), $(EVG_PCIFUNCTION))
dbLoadRecords("evg-cpci.db", "DEVICE=$(EVG), SYS=$(SYS)")
dbLoadRecords("evgSoftSeq.template", "DEVICE=$(EVG), SYS=$(SYS), SEQNUM=1, NELM=3")
| icshwi/icsem_scripts | cpci-evg-230/cpci-evg-230b_2.cmd | bat | gpl-2.0 | 635 |
cmd_arch/arm/lib/backtrace.o := /home/robin/toolchain/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/lib/.backtrace.o.d -nostdinc -isystem /home/robin/toolchain/bin/../lib/gcc/arm-none-eabi/4.6.1/include -I/home/robin/android/CM7_kernel_TA/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -mfpu=vfp -mtune=arm1136jf-s -c -o arch/arm/lib/backtrace.o arch/arm/lib/backtrace.S
deps_arch/arm/lib/backtrace.o := \
arch/arm/lib/backtrace.S \
$(wildcard include/config/cpu.h) \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/printk.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/linkage.h \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/robin/android/CM7_kernel_TA/arch/arm/include/asm/hwcap.h \
arch/arm/lib/backtrace.o: $(deps_arch/arm/lib/backtrace.o)
$(deps_arch/arm/lib/backtrace.o):
| spacecaker/CM7_Space_Kernel_Cooper | arch/arm/lib/.backtrace.o.cmd | bat | gpl-2.0 | 1,828 |
cmd_drivers/net/ethernet/dec/built-in.o := rm -f drivers/net/ethernet/dec/built-in.o; /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar rcsD drivers/net/ethernet/dec/built-in.o
| livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel | drivers/net/ethernet/dec/.built-in.o.cmd | bat | gpl-2.0 | 260 |
@echo off
if "%1"=="dbg" goto dbg
bochs -q -f set/bochsrc.bxrc
exit
:dbg
bochsdbg -q -f set/DBG_bochsrc.bxrc
exit
| LastAvenger/OS67 | script/_bochs.bat | bat | gpl-3.0 | 124 |
@echo off
set OPT=-XprintProcessorInfo -XprintRounds
set CP=c:\projects\deors.demos\annotations\deors.demos.annotations.velocity\target\deors.demos.annotations.velocity-1.0-SNAPSHOT.jar
set PROC=%CP%;c:\projects\deors.demos\annotations\com.luckyend.generators.metamodel.processors\target\com.luckyend.generators.metamodel.processors-1.0-SNAPSHOT.jar
set PROC=%PROC%;%HOME%\.m2\repository\org\apache\velocity\velocity\1.6.4\velocity-1.6.4.jar
set PROC=%PROC%;%HOME%\.m2\repository\commons-collections\commons-collections\3.2.1\commons-collections-3.2.1.jar
set PROC=%PROC%;%HOME%\.m2\repository\commons-lang\commons-lang\2.4\commons-lang-2.4.jar
set PROC=%PROC%;%HOME%\.m2\repository\org\apache\velocity\velocity-tools\2.0\velocity-tools-2.0.jar
set SRC=src\main\java\deors\demos\annotations\velocity\client\Article.java
set GEN_SRC=target\generated-sources\annotations
set GEN_CLS=target\classes
mkdir %GEN_SRC%
mkdir %GEN_CLS%
javac %OPT% -classpath %CP% -processorpath %PROC% %SRC% -s %GEN_SRC% -d %GEN_CLS%
| arielcarrera/bean-metamodel-generator | bean-metamodel-generator-client/build-with-javac.bat | bat | gpl-3.0 | 1,010 |
@Echo off & SetLocal EnableDelayedExpansion & Mode con:cols=100 lines=10 & Color 0B
Title Build XISO
Set "SourceDirectory=Extras Disc"
Set "OutputISOName=Xbox Softmodding Tool Extras Disc.iso"
Echo About to create an Xbox ISO.
Echo:
Echo Source Directory
Echo %SourceDirectory%
Echo:
Echo Output ISO Name.
Echo %OutputISOName%
Timeout /t 3 >NUL
Call "Build Disc Save.bat"
"Other\Tools\XDVDFS Tools\bin\windows\xdvdfs_maker.exe" "%SourceDirectory%" "%OutputISOName%"
RD /Q /S "%SourceDirectory%\softmod files\Softmod Files" | Rocky5/2016-Softmodding-Tool | Build XISO.bat | bat | gpl-3.0 | 545 |
@echo off
color 0a
cls
echo This script is meant for Win7 and higher. Lower ones will not have Features/Firewall report functional.
mkdir %userprofile%\Desktop\reports
set basedpath=%userprofile%\Desktop\reports
del /q %basedpath%\*.*
echo Collecting Information...
echo This Information run through %username% on %computername% at %time% %date% > %basedpath%\sysinforeport.txt
echo -------------------------------------------------------------------------- >> %basedpath%\sysinforeport.txt
systeminfo >> %basedpath%\sysinforeport.txt
echo System Info Report Compiled
echo This Information run through %username% on %computername% at %time% %date% >> %basedpath%\tasksreport.txt
tasklist /svc >> %basedpath%\tasksreport.txt
echo. >> %basedpath%\tasksreport.txt
echo ------VERBOSE REPORT BELOW------ >> %basedpath%\tasksreport.txt
tasklist /v >> %basedpath%\tasksreport.txt
echo Tasks/Processes Report Compiled
schtasks >> %basedpath%\scheduledtasksreport.txt
echo Scheduled Tasks Report Compiled
net users > %basedpath%\usersreport.txt
(
for /F %%h in (%basedpath%\usersreport.txt) do (
net user %%h >NUL
if %errorlevel%==0 net user %%h >> %basedpath%\usersreport.txt
)
)
echo. >> %basedpath%\usersreport.txt
echo Below is the administrators group: >> %basedpath%\usersreport.txt
net localgroup Administrators >> %basedpath%\usersreport.txt
echo. >> %basedpath%\usersreport.txt
echo Below is the account lockout policy
net accounts >> %basedpath%\usersreport.txt
echo Users Report Compiled
net share >> %basedpath%\sharesreport.txt
echo Shares Report Compiled
dism /online /get-features >> %basedpath%\featuresreport.txt
echo Features Report Compiled
netsh advfirewall firewall show rule name=all > %basedpath%\firewallreport.txt
echo --Port Information Below-- >> %basedpath%\firewallreport.txt
netstat -ano >> %basedpath%\firewallreport.txt
dir /r /s C:\*.* | findstr /v "AM" | findstr /v "PM" | findstr /v "File(s)" | findstr /v "Dir(s)" | findstr /v "Directory of" | findstr /v "Zone.Identifier" > basedads.txt
echo ADS Report Generated
echo Done Compiling, go to the reports folder on your desktop
pause
| hexidecimals/cyberpatriot | Create_Reports.bat | bat | gpl-3.0 | 2,120 |
AAScriptCompiler.exe S102.SRC S102.SRP | cabbruzzese/AmuletsAndArmorUserMaps | l102/buildscript.bat | bat | gpl-3.0 | 38 |
@echo off
set PWD=%~dp0
java -cp "%PWD%bin;%PWD%lib\jewelcli-0.6.jar" arden.MainClass %*
pause
| luiswolff/arden2bytecode | run.bat | bat | gpl-3.0 | 95 |
@echo off
echo Windows | christianspecht/scm-backup | src/ScmBackup.Tests.Integration/Scm/FakeCommandLineScmTools/FakeCommandLineScm-Command-Windows.bat | bat | gpl-3.0 | 22 |
@ECHO OFF
cmdkey /delete:git:https//github.com
CD PTNigeria
git init
git config --local user.name PTNigeria
git config --local user.password iykesMan22
git config --local user.email [email protected]
git remote add Local https://github.com/PTNigeria/CDN
git remote set-url --add Local https://github.com/PTNigeria/CDN
git pull Local master --allow-unrelated-histories
git remote -v
git add --all ./
git commit -m "PT NG Auto commits By Date:- %Date% %TIME%" ./
git push Local master
PAUSE
| PTNigeria/CDN | PTNigeria.bat | bat | mpl-2.0 | 495 |
@echo off
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "YYYY=%dt:~0,4%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set "HH=%dt:~8,2%" & set "Min=%dt:~10,2%" & set "Sec=%dt:~12,2%"
REM set "datestamp=%YYYY%%MM%%DD%" & set "timestamp=%HH%%Min%%Sec%"
set "fullstamp=%YY%%MM%%DD%%HH%%Min%"
REM echo datestamp: "%datestamp%"
REM echo timestamp: "%timestamp%"
REM echo fullstamp: "%fullstamp%"
set "build=build%fullstamp%"
echo build: "%build%"
dotnet restore ..\src\Spreads.IPC
dotnet pack ..\src\Spreads.IPC -c RELEASE -o C:\tools\LocalNuget --version-suffix "%build%"
rmdir /s /q ..\src\Spreads.IPC\obj
pause | Spreads/Spreads.IPC | nuget/local_pack_release.bat | bat | mpl-2.0 | 675 |
REM TODO: need way to specify serial port.
cd ..
tools\avr\bin\uisp -dpart=ATmega8 -dprog=stk500 -dserial=com1 -dspeed=115200 --wr_lock=0xFF
tools\avr\bin\uisp -dpart=ATmega8 -dprog=stk500 -dserial=com1 -dspeed=115200 --wr_fuse_l=0xdf --wr_fuse_h=0xca
tools\avr\bin\uisp -dpart=ATmega8 -dprog=stk500 -dserial=com1 -dspeed=115200 --erase --upload --verify if=bootloader\ATMegaBOOT.hex
tools\avr\bin\uisp -dpart=ATmega8 -dprog=stk500 -dserial=com1 -dspeed=115200 --wr_lock=0xCF
cd bootloader
| electricFeel/antipasto_arduino | build/windows/dist/bootloader/burn.bat | bat | lgpl-2.1 | 491 |
REM Run this cmd from the sln folder to copy all generated images over the originals.
REM Only do this if you have checked that the generated images are correct.
REM todo: run unit tests C:\Program Files (x86)\NUnit.org\nunit-console\nunit3-console.exe
xcopy .\Tests\Mapsui.Rendering.Skia.Tests\bin\Debug\Resources\Images\Generated .\Tests\Mapsui.Rendering.Skia.Tests\Resources\Images\Original /Y
xcopy .\Tests\Mapsui.Rendering.Xaml.Tests\bin\Debug\Resources\Images\Generated .\Tests\Mapsui.Rendering.Xaml.Tests\Resources\Images\Original /Y | tebben/Mapsui | Scripts/test-image-copier.cmd | bat | lgpl-2.1 | 544 |
mkdir build32 & pushd build32
cmake -G "Visual Studio 15 2017" ..
popd
mkdir build64 & pushd build64
cmake -G "Visual Studio 15 2017 Win64" ..
popd
cmake --build build32 --config Release
cmake --build build64 --config Release
build32\FilterAPITest\Release\FilterAPITest.exe
build64\FilterAPITest\Release\FilterAPITest.exe
pause
:: References:
:: [How to build x86 and/or x64 on Windows from command line with CMAKE?](https://stackoverflow.com/questions/28350214/how-to-build-x86-and-or-x64-on-windows-from-command-line-with-cmake?rq=1)
| myd7349/Ongoing-Study | c#/Console/PInvoke/FilterAPITest/build.bat | bat | lgpl-3.0 | 537 |
call compile tree
call compile tercursor
call compile rock_1
call compile popcan
call compile army
call compile bench | jeffrey-io/wall-of-shame | 2000/AntColony/AntColonyPre/static_models/source/makeall.bat | bat | unlicense | 122 |
::
:: Copyright 2014-2019 Real Logic Ltd.
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
::
@echo off
"%JAVA_HOME%\bin\java" ^
-cp ..\..\build\libs\samples.jar ^
%JVM_OPTS% io.aeron.samples.archive.SegmentInspector %* | galderz/Aeron | aeron-samples/scripts/archive/segment-inspector.bat | bat | apache-2.0 | 733 |
net stop ScadaAgentService
| RapidScada/scada | ScadaAgent/ScadaAgentSvc/Script/svc_stop.bat | bat | apache-2.0 | 27 |
pushd ..
if [%1] == [] (
rem === BUILDING JavaSDK ===
node generate.js java=..\sdks\JavaSDK -apiSpecPath
) else (
rem === BUILDING JavaSDK with params %* ===
node generate.js java=..\sdks\JavaSDK %*
)
popd
| JoshuaStrunk/SDKGenerator | SDKBuildScripts/java_build.bat | bat | apache-2.0 | 206 |
@echo off
cd %~dp0
if /i "%1"=="help" goto help
if /i "%1"=="--help" goto help
if /i "%1"=="-help" goto help
if /i "%1"=="/help" goto help
if /i "%1"=="?" goto help
if /i "%1"=="-?" goto help
if /i "%1"=="--?" goto help
if /i "%1"=="/?" goto help
@rem Process arguments.
set config=Release
set target=Build
set target_arch=x86
set noprojgen=
set nobuild=
set nosign=
set nosnapshot=
set test_args=
set msi=
set upload=
set licensertf=
set jslint=
set buildnodeweak=
set noetw=
set noetw_msi_arg=
set noperfctr=
set noperfctr_msi_arg=
set i18n_arg=
set download_arg=
set release_urls_arg=
set build_release=
set enable_vtune_profiling=
set configure_flags=
:next-arg
if "%1"=="" goto args-done
if /i "%1"=="debug" set config=Debug&goto arg-ok
if /i "%1"=="release" set config=Release&goto arg-ok
if /i "%1"=="clean" set target=Clean&goto arg-ok
if /i "%1"=="ia32" set target_arch=x86&goto arg-ok
if /i "%1"=="x86" set target_arch=x86&goto arg-ok
if /i "%1"=="x64" set target_arch=x64&goto arg-ok
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
if /i "%1"=="nosign" set nosign=1&goto arg-ok
if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
if /i "%1"=="noetw" set noetw=1&goto arg-ok
if /i "%1"=="noperfctr" set noperfctr=1&goto arg-ok
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok
if /i "%1"=="test" set test_args=%test_args% sequential parallel message -J&set jslint=1&goto arg-ok
if /i "%1"=="test-ci" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap message sequential parallel&goto arg-ok
if /i "%1"=="test-simple" set test_args=%test_args% sequential parallel -J&goto arg-ok
if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok
if /i "%1"=="test-gc" set test_args=%test_args% gc&set buildnodeweak=1&goto arg-ok
if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok
if /i "%1"=="test-pummel" set test_args=%test_args% pummel&goto arg-ok
if /i "%1"=="test-all" set test_args=%test_args% sequential parallel message gc internet pummel&set buildnodeweak=1&set jslint=1&goto arg-ok
if /i "%1"=="jslint" set jslint=1&goto arg-ok
if /i "%1"=="msi" set msi=1&set licensertf=1&set download_arg="--download=all"&set i18n_arg=small-icu&goto arg-ok
if /i "%1"=="build-release" set build_release=1&goto arg-ok
if /i "%1"=="upload" set upload=1&goto arg-ok
if /i "%1"=="small-icu" set i18n_arg=%1&goto arg-ok
if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok
if /i "%1"=="intl-none" set i18n_arg=%1&goto arg-ok
if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
if /i "%1"=="ignore-flaky" set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok
if /i "%1"=="enable-vtune" set enable_vtune_profiling="--enable-vtune-profiling"&goto arg-ok
echo Warning: ignoring invalid command line option `%1`.
:arg-ok
:arg-ok
shift
goto next-arg
:args-done
if defined build_release (
set config=Release
set msi=1
set licensertf=1
set download_arg="--download=all"
set i18n_arg=small-icu
)
if "%config%"=="Debug" set configure_flags=%configure_flags% --debug
if defined nosnapshot set configure_flags=%configure_flags% --without-snapshot
if defined noetw set configure_flags=%configure_flags% --without-etw& set noetw_msi_arg=/p:NoETW=1
if defined noperfctr set configure_flags=%configure_flags% --without-perfctr& set noperfctr_msi_arg=/p:NoPerfCtr=1
if defined release_urlbase set release_urlbase_arg=--release-urlbase=%release_urlbase%
if defined download_arg set configure_flags=%configure_flags% %download_arg%
if "%i18n_arg%"=="full-icu" set configure_flags=%configure_flags% --with-intl=full-icu
if "%i18n_arg%"=="small-icu" set configure_flags=%configure_flags% --with-intl=small-icu
if "%i18n_arg%"=="intl-none" set configure_flags=%configure_flags% --with-intl=none
if defined config_flags set configure_flags=%configure_flags% %config_flags%
if not exist "%~dp0deps\icu" goto no-depsicu
if "%target%"=="Clean" echo deleting %~dp0deps\icu
if "%target%"=="Clean" rmdir /S /Q %~dp0deps\icu
:no-depsicu
call :getnodeversion || exit /b 1
@rem Set environment for msbuild
@rem Look for Visual Studio 2015
echo Looking for Visual Studio 2015
if not defined VS140COMNTOOLS goto vc-set-2013
if not exist "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat" goto vc-set-2013
echo Found Visual Studio 2015
if defined msi (
echo Looking for WiX installation for Visual Studio 2015...
if not exist "%WIX%\SDK\VS2015" (
echo Failed to find WiX install for Visual Studio 2015
echo VS2015 support for WiX is only present starting at version 3.10
goto vc-set-2013
)
)
if "%VCVARS_VER%" NEQ "140" (
call "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat"
SET VCVARS_VER=140
)
if not defined VCINSTALLDIR goto vc-set-2013
set GYP_MSVS_VERSION=2015
set PLATFORM_TOOLSET=v140
goto msbuild-found
:vc-set-2013
@rem Look for Visual Studio 2013
echo Looking for Visual Studio 2013
if not defined VS120COMNTOOLS goto msbuild-not-found
if not exist "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found
echo Found Visual Studio 2013
if defined msi (
echo Looking for WiX installation for Visual Studio 2013...
if not exist "%WIX%\SDK\VS2013" (
echo Failed to find WiX install for Visual Studio 2013
echo VS2013 support for WiX is only present starting at version 3.8
goto vc-set-2012
)
)
if "%VCVARS_VER%" NEQ "120" (
call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat"
SET VCVARS_VER=120
)
if not defined VCINSTALLDIR goto msbuild-not-found
set GYP_MSVS_VERSION=2013
set PLATFORM_TOOLSET=v120
goto msbuild-found
:msbuild-not-found
echo Failed to find Visual Studio installation.
goto exit
:wix-not-found
echo Build skipped. To generate installer, you need to install Wix.
goto run
:msbuild-found
:project-gen
@rem Skip project generation if requested.
if defined noprojgen goto msbuild
@rem Generate the VS project.
echo configure %configure_flags% %enable_vtune_profiling% --dest-cpu=%target_arch% --tag=%TAG%
python configure %configure_flags% %enable_vtune_profiling% --dest-cpu=%target_arch% --tag=%TAG%
if errorlevel 1 goto create-msvs-files-failed
if not exist node.sln goto create-msvs-files-failed
echo Project files generated.
:msbuild
@rem Skip build if requested.
if defined nobuild goto sign
@rem Build the sln with msbuild.
msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
if errorlevel 1 goto exit
if "%target%" == "Clean" goto exit
:sign
@rem Skip signing if the `nosign` option was specified.
if defined nosign goto licensertf
signtool sign /a /d "Node.js" /du "https://nodejs.org" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\node.exe
if errorlevel 1 echo Failed to sign exe&goto exit
:licensertf
@rem Skip license.rtf generation if not requested.
if not defined licensertf goto msi
%config%\node tools\license2rtf.js < LICENSE > %config%\license.rtf
if errorlevel 1 echo Failed to generate license.rtf&goto exit
:msi
@rem Skip msi generation if not requested
if not defined msi goto run
:msibuild
echo Building node-v%FULLVERSION%-%target_arch%.msi
msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:PlatformToolset=%PLATFORM_TOOLSET% /p:GypMsvsVersion=%GYP_MSVS_VERSION% /p:Configuration=%config% /p:Platform=%target_arch% /p:NodeVersion=%NODE_VERSION% /p:FullVersion=%FULLVERSION% /p:DistTypeDir=%DISTTYPEDIR% %noetw_msi_arg% %noperfctr_msi_arg% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
if errorlevel 1 goto exit
if defined nosign goto upload
signtool sign /a /d "Node.js" /du "https://nodejs.org" /t http://timestamp.globalsign.com/scripts/timestamp.dll node-v%FULLVERSION%-%target_arch%.msi
if errorlevel 1 echo Failed to sign msi&goto exit
:upload
@rem Skip upload if not requested
if not defined upload goto run
if not defined SSHCONFIG (
echo SSHCONFIG is not set for upload
exit /b 1
)
if not defined STAGINGSERVER set STAGINGSERVER=node-www
ssh -F %SSHCONFIG% %STAGINGSERVER% "mkdir -p nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%"
scp -F %SSHCONFIG% Release\node.exe %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.exe
scp -F %SSHCONFIG% Release\node.lib %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.lib
scp -F %SSHCONFIG% node-v%FULLVERSION%-%target_arch%.msi %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/
ssh -F %SSHCONFIG% %STAGINGSERVER% "touch nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%.done && chmod -R ug=rw-x+X,o=r+X nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi* nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%*"
:run
@rem Run tests if requested.
:build-node-weak
@rem Build node-weak if required
if "%buildnodeweak%"=="" goto run-tests
"%config%\node" deps\npm\node_modules\node-gyp\bin\node-gyp rebuild --directory="%~dp0test\gc\node_modules\weak" --nodedir="%~dp0."
if errorlevel 1 goto build-node-weak-failed
goto run-tests
:build-node-weak-failed
echo Failed to build node-weak.
goto exit
:run-tests
if "%test_args%"=="" goto jslint
if "%config%"=="Debug" set test_args=--mode=debug %test_args%
if "%config%"=="Release" set test_args=--mode=release %test_args%
echo running 'cctest'
"%config%\cctest"
echo running 'python tools\test.py %test_args%'
python tools\test.py %test_args%
goto jslint
:jslint
if not defined jslint goto exit
echo running jslint
%config%\node tools\eslint\bin\eslint.js src lib test tools\eslint-rules --rulesdir tools\eslint-rules --reset --quiet
goto exit
:create-msvs-files-failed
echo Failed to create vc project files.
goto exit
:help
echo vcbuild.bat [debug/release] [msi] [test-all/test-uv/test-internet/test-pummel/test-simple/test-message] [clean] [noprojgen] [small-icu/full-icu/intl-none] [nobuild] [nosign] [x86/x64] [download-all] [enable-vtune]
echo Examples:
echo vcbuild.bat : builds release build
echo vcbuild.bat debug : builds debug build
echo vcbuild.bat release msi : builds release build and MSI installer package
echo vcbuild.bat test : builds debug build and runs tests
echo vcbuild.bat build-release : builds the release distribution as used by nodejs.org
echo vcbuild.bat enable-vtune : builds nodejs with Intel Vtune profiling support to profile JavaScript
goto exit
:exit
goto :EOF
rem ***************
rem Subroutines
rem ***************
:getnodeversion
set NODE_VERSION=
set TAG=
set FULLVERSION=
for /F "usebackq tokens=*" %%i in (`python "%~dp0tools\getnodeversion.py"`) do set NODE_VERSION=%%i
if not defined NODE_VERSION (
echo Cannot determine current version of Node.js
exit /b 1
)
if not defined DISTTYPE set DISTTYPE=release
if "%DISTTYPE%"=="release" (
set FULLVERSION=%NODE_VERSION%
goto exit
)
if "%DISTTYPE%"=="custom" (
if not defined CUSTOMTAG (
echo "CUSTOMTAG is not set for DISTTYPE=custom"
exit /b 1
)
set TAG=%CUSTOMTAG%
)
if not "%DISTTYPE%"=="custom" (
if not defined DATESTRING (
echo "DATESTRING is not set for nightly"
exit /b 1
)
if not defined COMMIT (
echo "COMMIT is not set for nightly"
exit /b 1
)
if not "%DISTTYPE%"=="nightly" (
if not "%DISTTYPE%"=="next-nightly" (
echo "DISTTYPE is not release, custom, nightly or next-nightly"
exit /b 1
)
)
set TAG=%DISTTYPE%%DATESTRING%%COMMIT%
)
set FULLVERSION=%NODE_VERSION%-%TAG%
:exit
if not defined DISTTYPEDIR set DISTTYPEDIR=%DISTTYPE%
goto :EOF
| dreamllq/node | vcbuild.bat | bat | apache-2.0 | 11,727 |
cd detectionParking\bin
"C:\Program Files (x86)\Java\jdk1.8.0_25\bin\java" -cp .;./../lib/httpcore-4.4.1.jar;./../lib/httpclient-4.5.jar;./../lib/gson-2.3.1.jar detectionParking.Main true | mathieupassenaud/robocorp2-CarPark | camera/lancer.bat | bat | apache-2.0 | 187 |
@echo off
set PP=%~dp0
%PP%as %*
| goriy/sif | misc/x86_64-w64-mingw32-as.bat | bat | mit | 33 |
npm install
pause | dmsovetov/necromancer.js | install.bat | bat | mit | 17 |
@echo off
rem THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
rem ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
rem THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
rem PARTICULAR PURPOSE.
rem
rem Copyright (c) Microsoft Corporation. All rights reserved.
setlocal
set error=0
rem set FX_PATH=C:\devtools\DirectX_SDK\Utilities\bin\x86
set FX_PATH=C:\devtools\DirectX\Utilities\bin\x86
rem Particles
call :CompileShader%1 Particles Particles vs VS_Main
call :CompileShader%1 Particles Particles ps PS_Main
echo.
if %error% == 0 (
echo Shaders compiled ok
) else (
echo There were shader compilation errors!
)
endlocal
exit /b
:CompileShader
set fxc=%FX_PATH%\fxc /nologo %1.hlsl /T%3_4_0 /Zi /Zpc /Qstrip_reflect /Qstrip_debug /E%4 /Fh%1_%4.h /Vn%2_%4
echo.
echo %fxc%
%fxc% || set error=1
exit /b
| amecky/ds_arena | src/particles/compile_shader.bat | bat | cc0-1.0 | 865 |
cmd_drivers/media/common/tuners/tea5761.ko := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -T /home/gjdlfg/kernel/omap/scripts/module-common.lds --build-id -o drivers/media/common/tuners/tea5761.ko drivers/media/common/tuners/tea5761.o drivers/media/common/tuners/tea5761.mod.o
| jdlfg/Mecha-kernel | drivers/media/common/tuners/.tea5761.ko.cmd | bat | gpl-2.0 | 321 |
@echo off
call unc ISR_GCC_HC12B.c
call unc ISR_GCC_HC12Dx128.c
| brahimalaya/K-OS--Driver-Kit | InstallISR/gcc/hc12/proc.bat | bat | gpl-2.0 | 64 |
set pythonexe=""
FOR /d %%f in ("C:\Python*" "C:\Program Files (x86)\Python*" "C:\Anaconda2") DO (
if exist "%%f\python.exe" (
set pythondir=%%f
set pythonexe="%%f\python.exe"
rem exit /b
)
)
| bopjesvla/BCI | utilities/findPython.bat | bat | gpl-3.0 | 206 |
git fetch origin & git checkout origin/windows
| timbertson/gup | update-win.bat | bat | lgpl-2.1 | 47 |
@echo off
rem
rem Copyright (c) 1999-2011 Luca Garulli @www.orientechnologies.com
rem
rem Guess ORIENTDB_HOME if not defined
set CURRENT_DIR=%cd%
if exist "%JAVA_HOME%\bin\java.exe" goto setJavaHome
set JAVA="java"
goto okJava
:setJavaHome
set JAVA="%JAVA_HOME%\bin\java"
:okJava
if not "%ORIENTDB_HOME%" == "" goto gotHome
set ORIENTDB_HOME=%CURRENT_DIR%
if exist "%ORIENTDB_HOME%\bin\console.bat" goto okHome
cd ..
set ORIENTDB_HOME=%cd%
cd %CURRENT_DIR%
:gotHome
if exist "%ORIENTDB_HOME%\bin\console.bat" goto okHome
echo The ORIENTDB_HOME environment variable is not defined correctly
echo This environment variable is needed to run this program
goto end
:okHome
rem Get remaining unshifted command line arguments and save them in the
set CMD_LINE_ARGS=
:setArgs
if ""%1""=="""" goto doneSetArgs
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto setArgs
:doneSetArgs
call %JAVA% -client -Dorientdb.build.number=@BUILD@ -cp "%ORIENTDB_HOME%\lib\*" com.orientechnologies.orient.graph.console.OGremlinConsole %CMD_LINE_ARGS%
:end
| cloudsmith/orientdb | graphdb/script/console.bat | bat | apache-2.0 | 1,082 |
@echo off
setlocal
rem Use dynamic shaders to build .inc files only
rem set dynamic_shaders=0
rem == Setup path to nmake.exe, from vc 2005 common tools directory ==
call "%VS100COMNTOOLS%vsvars32.bat"
rem ================================
rem ==== MOD PATH CONFIGURATIONS ===
rem == Set the absolute path to your mod's game directory here ==
rem == Note that this path needs does not support long file/directory names ==
rem == So instead of a path such as "C:\Program Files\Steam\steamapps\mymod" ==
rem == you need to find the 8.3 abbreviation for the directory name using 'dir /x' ==
rem == and set the directory to something like C:\PROGRA~2\Steam\steamapps\sourcemods\mymod ==
set GAMEDIR=E:\STEAMA~1\SOURCE~1\shelter
rem == Set the relative path to SourceSDK\bin\orangebox\bin ==
rem == As above, this path does not support long directory names or spaces ==
rem == e.g. ..\..\..\..\..\PROGRA~2\Steam\steamapps\<USER NAME>\sourcesdk\bin\orangebox\bin ==
set SDKBINDIR=..\..\..\..\..\..\STEAMA~1\common\ALIENS~1\bin
rem == Set the Path to your mods root source code ==
rem this should already be correct, accepts relative paths only!
set SOURCEDIR=..\..
rem ==== MOD PATH CONFIGURATIONS END ===
rem ====================================
set TTEXE=..\..\devtools\bin\timeprecise.exe
if not exist %TTEXE% goto no_ttexe
goto no_ttexe_end
:no_ttexe
set TTEXE=time /t
:no_ttexe_end
rem echo.
rem echo ~~~~~~ buildsdkshaders %* ~~~~~~
%TTEXE% -cur-Q
set tt_all_start=%ERRORLEVEL%
set tt_all_chkpt=%tt_start%
set BUILD_SHADER=call buildshaders.bat
set ARG_EXTRA=
%BUILD_SHADER% deferred_shaders -game %GAMEDIR% -source %SOURCEDIR% -dx9_30 -force30
rem echo.
if not "%dynamic_shaders%" == "1" (
rem echo Finished full buildallshaders %*
) else (
rem echo Finished dynamic buildallshaders %*
)
rem %TTEXE% -diff %tt_all_start% -cur
rem echo.
| jonathonracz/swarm-deferred | materialsystem/swarmshaders/bdef.bat | bat | apache-2.0 | 1,859 |
@echo off
setlocal enableextensions
set config=%1
if "%config%" == "" (
set config=Release
)
set version=
if not "%PackageVersion%" == "" (
set version=-Version %PackageVersion%
)
REM Clean
echo Cleaning...
del /q src\NuPeek\bin\Release\*
REM Build DotPeek 1.0 version
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\NuPeek.1.0.sln /p:Configuration="%config%" /t:Clean,Rebuild /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
mkdir install\NuPeek.1.0 2> NUL
copy /y src\NuPeek\bin\Release\*.1.0.dll install\NuPeek.1.0\
copy /y src\NuPeek\bin\Release\NuGet.Core.dll install\NuPeek.1.0\
REM Clean
echo Cleaning...
del /q src\NuPeek\bin\Release\*
REM Build DotPeek 1.1 version
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\NuPeek.1.1.sln /p:Configuration="%config%" /t:Clean,Rebuild /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
mkdir install\NuPeek.1.1 2> NUL
copy /y src\NuPeek\bin\Release\*.1.1.dll install\NuPeek.1.1\
copy /y src\NuPeek\bin\Release\NuGet.Core.dll install\NuPeek.1.1\
REM Clean
echo Cleaning...
del /q src\NuPeek\bin\Release\*
REM Build DotPeek 1.2 version
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\NuPeek.1.2.sln /p:Configuration="%config%" /t:Clean,Rebuild /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
mkdir install\NuPeek.1.2 2> NUL
copy /y src\NuPeek\bin\Release\*.1.2.dll install\NuPeek.1.2\
copy /y src\NuPeek\bin\Release\NuGet.Core.dll install\NuPeek.1.2\
REM Build DotPeek 1.3 version
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\NuPeek.1.2.sln /p:Configuration="%config%" /t:Clean,Rebuild /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
mkdir install\NuPeek.1.3 2> NUL
copy /y src\NuPeek\bin\Release\*.1.3.dll install\NuPeek.1.3\
copy /y src\NuPeek\bin\Release\NuGet.Core.dll install\NuPeek.1.3\ | modulexcite/dotpeek-nupeek | build.bat | bat | apache-2.0 | 1,847 |
@echo off
rem Set Quartz to the base directory of the Quartz Distribution
@SET WD=%~d0%~p0
@SET QUARTZ=%WD%..\..
@rem setup the class path...
CALL "%WD%"..\bin\buildcp.bat
SET QUARTZ_CP=%TMP_CP%
rem !!!!!!! Please read important information. !!!!!!
rem If "java" is not in your path, please set the path
rem for Java 2 Runtime Environment in the path variable below
rem for example :
rem @SET PATH=D:\jdk1.6.0_18;%PATH%
rem
rem a configuration file for log4j logging
@SET LOG4J_PROPS="-Dlog4j.configuration=file:%WD%log4j.xml"
"java" -cp %QUARTZ_CP% %LOG4J_PROPS% org.quartz.examples.example4.JobStateExample
| suthat/signal | vendor/quartz-2.2.0/examples/example4/example4.bat | bat | apache-2.0 | 637 |
@echo off
rem
rem
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem
if not "%ECHO%" == "" echo %ECHO%
setlocal
set DIRNAME=%~dp0%
set PROGNAME=%~nx0%
set ARGS=%*
rem Sourcing environment settings for karaf similar to tomcats setenv
SET KARAF_SCRIPT="shell.bat"
if exist "%DIRNAME%setenv.bat" (
call "%DIRNAME%setenv.bat"
)
rem Check console window title. Set to Karaf by default
if not "%KARAF_TITLE%" == "" (
title %KARAF_TITLE%
) else (
title Karaf
)
rem Check/Set up some easily accessible MIN/MAX params for JVM mem usage
if "%JAVA_MIN_MEM%" == "" (
set JAVA_MIN_MEM=128M
)
if "%JAVA_MAX_MEM%" == "" (
set JAVA_MAX_MEM=512M
)
goto BEGIN
:warn
echo %PROGNAME%: %*
goto :EOF
:BEGIN
rem # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
if not "%KARAF_HOME%" == "" (
call :warn Ignoring predefined value for KARAF_HOME
)
set KARAF_HOME=%DIRNAME%..
if not exist "%KARAF_HOME%" (
call :warn KARAF_HOME is not valid: "%KARAF_HOME%"
goto END
)
if not "%KARAF_BASE%" == "" (
if not exist "%KARAF_BASE%" (
call :warn KARAF_BASE is not valid: "%KARAF_BASE%"
goto END
)
)
if "%KARAF_BASE%" == "" (
set "KARAF_BASE=%KARAF_HOME%"
)
if not "%KARAF_DATA%" == "" (
if not exist "%KARAF_DATA%" (
call :warn KARAF_DATA is not valid: "%KARAF_DATA%"
goto END
)
)
if "%KARAF_DATA%" == "" (
set "KARAF_DATA=%KARAF_BASE%\data"
)
if not "%KARAF_ETC%" == "" (
if not exist "%KARAF_ETC%" (
call :warn KARAF_ETC is not valid: "%KARAF_ETC%"
goto END
)
)
if "%KARAF_ETC%" == "" (
set "KARAF_ETC=%KARAF_BASE%\etc"
)
set DEFAULT_JAVA_OPTS=
set DEFAULT_JAVA_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
rem Support for loading native libraries
set PATH=%PATH%;%KARAF_BASE%\lib;%KARAF_HOME%\lib
rem Setup the Java Virtual Machine
if not "%JAVA%" == "" goto :Check_JAVA_END
set JAVA=java
if "%JAVA_HOME%" == "" call :warn JAVA_HOME not set; results may vary
if not "%JAVA_HOME%" == "" set JAVA=%JAVA_HOME%\bin\java
if not exist "%JAVA_HOME%" (
call :warn JAVA_HOME is not valid: "%JAVA_HOME%"
goto END
)
:Check_JAVA_END
if "%JAVA_OPTS%" == "" set JAVA_OPTS=%DEFAULT_JAVA_OPTS%
if "%EXTRA_JAVA_OPTS%" == "" goto :KARAF_EXTRA_JAVA_OPTS_END
set JAVA_OPTS="%JAVA_OPTS% %EXTRA_JAVA_OPTS%"
:KARAF_EXTRA_JAVA_OPTS_END
if "%KARAF_DEBUG%" == "" goto :KARAF_DEBUG_END
rem Use the defaults if JAVA_DEBUG_OPTS was not set
if "%JAVA_DEBUG_OPTS%" == "" set JAVA_DEBUG_OPTS=%DEFAULT_JAVA_DEBUG_OPTS%
set JAVA_OPTS="%JAVA_DEBUG_OPTS% %JAVA_OPTS%"
call :warn Enabling Java debug options: %JAVA_DEBUG_OPTS%
:KARAF_DEBUG_END
set CLASSPATH=%KARAF_HOME%\system\org\apache\karaf\shell\org.apache.karaf.shell.console\2.4.0\org.apache.karaf.shell.console-2.4.0.jar
set CLASSPATH=%CLASSPATH%;%KARAF_HOME%\system\org\ops4j\pax\logging\pax-logging-api\1.7.4\pax-logging-api-1.7.4.jar
:EXECUTE
if "%SHIFT%" == "true" SET ARGS=%2 %3 %4 %5 %6 %7 %8
if not "%SHIFT%" == "true" SET ARGS=%1 %2 %3 %4 %5 %6 %7 %8
rem Execute the Java Virtual Machine
"%JAVA%" %JAVA_OPTS% %OPTS% -classpath "%CLASSPATH%" -Dkaraf.instances="%KARAF_HOME%\instances" -Dkaraf.home="%KARAF_HOME%" -Dkaraf.base="%KARAF_BASE%" -Dkaraf.data="%KARAF_DATA%" -Dkaraf.etc="%KARAF_ETC%" -Djava.io.tmpdir="%KARAF_DATA%\tmp" -Djava.util.logging.config.file="%KARAF_ETC%\java.util.logging.properties" %KARAF_OPTS% org.apache.karaf.shell.console.Main --classpath="%KARAF_HOME%\system" %ARGS%
rem # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
:END
endlocal
| davsclaus/jube | images/fabric8/karaf-2.4/src/main/overlay/bin/shell.bat | bat | apache-2.0 | 4,493 |
SET JVM_OPT=-XX:MaxMetaspaceSize=256M
START javaw %JVM_OPT% -jar logbook-kai.jar
| Sdk0815/logbook-kai | dist-includes/launch.bat | bat | mit | 83 |
@SET WIRESHARKVERSION=1.4.4
@SET WIRESHARKSOURCEDIR=D:\workspace\wireshark-1.4.4
@SET WIRESHARKINSTALLDIR=C:\Program Files\Wireshark
@SET WIRESHARKDEFINITIONSDIR=D:\workspace\converter\install\asterix
@SET ASTERIXSOURCEDIR=D:\workspace\converter\src\asterix
@SET ASTERIXSOURCEDIR=D:\workspace\converter\src\asterix
cd /d %WIRESHARKSOURCEDIR%/plugins
mkdir asterix
cd asterix
cp %ASTERIXSOURCEDIR%/wireshark-plugin/* %WIRESHARKSOURCEDIR%/plugins/asterix
cp %ASTERIXSOURCEDIR%/expat/* %WIRESHARKSOURCEDIR%/plugins/asterix
cp %ASTERIXSOURCEDIR%/* %WIRESHARKSOURCEDIR%/plugins/asterix
rem call "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
@SET VSINSTALLDIR=C:\Program Files\Microsoft Visual Studio 9.0
@SET VCINSTALLDIR=C:\Program Files\Microsoft Visual Studio 9.0\VC
@SET FrameworkDir=C:\WINDOWS\Microsoft.NET\Framework
@SET FrameworkVersion=v2.0.50727
@SET Framework35Version=v3.5
@if "%VSINSTALLDIR%"=="" goto error_no_VSINSTALLDIR
@if "%VCINSTALLDIR%"=="" goto error_no_VCINSTALLDIR
@echo Setting environment for using Microsoft Visual Studio 2008 x86 tools.
@call :GetWindowsSdkDir
@if not "%WindowsSdkDir%" == "" (
set "PATH=%WindowsSdkDir%bin;%PATH%"
set "INCLUDE=%WindowsSdkDir%include;%INCLUDE%"
set "LIB=%WindowsSdkDir%lib;%LIB%"
)
@rem
@rem Root of Visual Studio IDE installed files.
@rem
@set DevEnvDir=C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE
@set PATH=C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE;C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN;C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools;C:\WINDOWS\Microsoft.NET\Framework\v3.5;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727;C:\Program Files\Microsoft Visual Studio 9.0\VC\VCPackages;%PATH%
@set INCLUDE=C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE;%INCLUDE%
@set LIB=C:\Program Files\Microsoft Visual Studio 9.0\VC\LIB;%LIB%
@set LIBPATH=C:\WINDOWS\Microsoft.NET\Framework\v3.5;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727;C:\Program Files\Microsoft Visual Studio 9.0\VC\LIB;%LIBPATH%
@goto end
:GetWindowsSdkDir
@call :GetWindowsSdkDirHelper HKLM > nul 2>&1
@if errorlevel 1 call :GetWindowsSdkDirHelper HKCU > nul 2>&1
@if errorlevel 1 set WindowsSdkDir=%VCINSTALLDIR%\PlatformSDK\
@exit /B 0
:GetWindowsSdkDirHelper
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Microsoft\Microsoft SDKs\Windows" /v "CurrentInstallFolder"') DO (
if "%%i"=="CurrentInstallFolder" (
SET "WindowsSdkDir=%%k"
)
)
@if "%WindowsSdkDir%"=="" exit /B 1
@exit /B 0
:error_no_VSINSTALLDIR
@echo ERROR: VSINSTALLDIR variable is not set.
@goto end
:error_no_VCINSTALLDIR
@echo ERROR: VCINSTALLDIR variable is not set.
@goto end
:end
nmake -f Makefile.nmake clean
nmake -f Makefile.nmake all
cp asterix.dll "%WIRESHARKINSTALLDIR%\plugins\%WIRESHARKVERSION%"
cp %WIRESHARKDEFINITIONSDIR%/asterix*.xml "%WIRESHARKINSTALLDIR%\plugins"
cp %WIRESHARKDEFINITIONSDIR%/asterix.ini "%WIRESHARKINSTALLDIR%\plugins"
pause | nabilbendafi/asterix | src/asterix/wireshark-plugin/1.8.4/copy_and_build.bat | bat | gpl-3.0 | 2,961 |
cmd_kernel/power/built-in.o := arm-eabi-ld -EL -r -o kernel/power/built-in.o kernel/power/main.o kernel/power/console.o kernel/power/process.o kernel/power/suspend.o kernel/power/nvs.o kernel/power/wakelock.o kernel/power/userwakelock.o kernel/power/earlysuspend.o kernel/power/fbearlysuspend.o kernel/power/poweroff.o
| NooNameR/Sense4.0-kernel | kernel/power/.built-in.o.cmd | bat | gpl-2.0 | 324 |
"..\tool\Jssor.Compress.exe" -HTML:Js -HTML:Css -HTML:Comment -HTML:Blank -JSSORONLY -AWRAP -OVERWRITE -ENCOUT:UTF-8 "responsive-slider-full-width.source.html" -OUT "responsive-slider-full-width.html"
| Rmalnoult/slider-wp | wp-content/plugins/slider-wp/jssor/themes-no-jquery/responsive-slider-full-width.compress.bat | bat | gpl-2.0 | 201 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
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. 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. 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\python-scss.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\python-scss.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" == "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
| n6g7/django_markdown | docs/make.bat | bat | lgpl-3.0 | 4,521 |
start windiff *.exp *.txt
| MavenRain/reko | src/tools/wd.cmd | bat | gpl-2.0 | 26 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\wellknown\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\wellknown\cli.js" %*
) | cdeerr/esportsMKE | web/node_modules/sequelize/node_modules/.bin/wellknown.cmd | bat | mit | 174 |
@REM SBT launcher script
@REM
@REM Envioronment:
@REM JAVA_HOME - location of a JDK home dir (mandatory)
@REM SBT_OPTS - JVM options (optional)
@REM Configuration:
@REM sbtconfig.txt found in the SBT_HOME.
@REM ZOMG! We need delayed expansion to build up CFG_OPTS later
@setlocal enabledelayedexpansion
@echo off
set SBT_HOME=%~dp0
set ERROR_CODE=0
rem FIRST we load the config file of extra options.
set FN=%SBT_HOME%sbtconfig.txt
set CFG_OPTS=
FOR /F "tokens=* eol=# usebackq delims=" %%i IN ("%FN%") DO (
set DO_NOT_REUSE_ME=%%i
rem ZOMG (Part #2) WE use !! here to delay the expansion of
rem CFG_OPTS, otherwise it remains "" for this loop.
set CFG_OPTS=!CFG_OPTS! !DO_NOT_REUSE_ME!
)
rem We use the value of the JAVACMD environment variable if defined
set _JAVACMD=%JAVACMD%
if "%_JAVACMD%"=="" (
if not "%JAVA_HOME%"=="" (
if exist "%JAVA_HOME%\bin\java.exe" set "_JAVACMD=%JAVA_HOME%\bin\java.exe"
)
)
if "%_JAVACMD%"=="" set _JAVACMD=java
rem We use the value of the JAVA_OPTS environment variable if defined, rather than the config.
set _JAVA_OPTS=%JAVA_OPTS%
if "%_JAVA_OPTS%"=="" set _JAVA_OPTS=%CFG_OPTS%
:run
"%_JAVACMD%" %_JAVA_OPTS% %SBT_OPTS% -cp "%SBT_HOME%jansi.jar;%SBT_HOME%sbt-launch.jar;%SBT_HOME%classes" SbtJansiLaunch %*
if ERRORLEVEL 1 goto error
goto end
:error
set ERROR_CODE=1
:end
@endlocal
exit /B %ERROR_CODE%
| sameeragarwal/blinkdb_dev | sbt/sbt.bat | bat | apache-2.0 | 1,376 |
SET PATH=%PATH%;..\..\lib
Debug\qt_example.exe
| batmancn/MyLife | works/SipWrapper/sipstack/resiprocate-1.7/tfm/contrib/cppunit/examples/qt/run.bat | bat | gpl-3.0 | 47 |
svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
| apierz/fipp | source/build/exe.macosx-10.12-x86_64-3.6/lib/python3.6/ctypes/macholib/fetch_macholib.bat | bat | gpl-2.0 | 75 |
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at
@REM
@REM https://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------
@REM ----------------------------------------------------------------------------
@REM Maven Start Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a JDK home dir
@REM
@REM Optional ENV vars
@REM M2_HOME - location of maven2's installed home dir
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
@REM e.g. to debug Maven itself, use
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
@REM ----------------------------------------------------------------------------
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
@echo off
@REM set title of command window
title %0
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
@REM Execute a user defined script before this one
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
:skipRcPre
@setlocal
set ERROR_CODE=0
@REM To isolate internal variables from possible post scripts, we use another setlocal
@setlocal
@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome
echo.
echo Error: JAVA_HOME not found in your environment. >&2
echo Please set the JAVA_HOME variable in your environment to match the >&2
echo location of your Java installation. >&2
echo.
goto error
:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto init
echo.
echo Error: JAVA_HOME is set to an invalid directory. >&2
echo JAVA_HOME = "%JAVA_HOME%" >&2
echo Please set the JAVA_HOME variable in your environment to match the >&2
echo location of your Java installation. >&2
echo.
goto error
@REM ==== END VALIDATION ====
:init
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
@REM Fallback to current working directory if not found.
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
set EXEC_DIR=%CD%
set WDIR=%EXEC_DIR%
:findBaseDir
IF EXIST "%WDIR%"\.mvn goto baseDirFound
cd ..
IF "%WDIR%"=="%CD%" goto baseDirNotFound
set WDIR=%CD%
goto findBaseDir
:baseDirFound
set MAVEN_PROJECTBASEDIR=%WDIR%
cd "%EXEC_DIR%"
goto endDetectBaseDir
:baseDirNotFound
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
cd "%EXEC_DIR%"
:endDetectBaseDir
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
@setlocal EnableExtensions EnableDelayedExpansion
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
:endReadAdditionalConfig
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
)
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
if exist %WRAPPER_JAR% (
if "%MVNW_VERBOSE%" == "true" (
echo Found %WRAPPER_JAR%
)
) else (
if not "%MVNW_REPOURL%" == "" (
SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
)
if "%MVNW_VERBOSE%" == "true" (
echo Couldn't find %WRAPPER_JAR%, downloading it ...
echo Downloading from: %DOWNLOAD_URL%
)
powershell -Command "&{"^
"$webclient = new-object System.Net.WebClient;"^
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
"}"^
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
"}"
if "%MVNW_VERBOSE%" == "true" (
echo Finished downloading %WRAPPER_JAR%
)
)
@REM End of extension
@REM Provide a "standardized" way to retrieve the CLI args that will
@REM work with both Windows and non-Windows executions.
set MAVEN_CMD_LINE_ARGS=%*
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
if ERRORLEVEL 1 goto error
goto end
:error
set ERROR_CODE=1
:end
@endlocal & set ERROR_CODE=%ERROR_CODE%
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
@REM check for post script, once with legacy .bat ending and once with .cmd ending
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
:skipRcPost
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
if "%MAVEN_BATCH_PAUSE%" == "on" pause
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
exit /B %ERROR_CODE%
| painless-software/painless-continuous-delivery | {{cookiecutter.project_slug}}/_/frameworks/SpringBoot/mvnw.cmd | bat | apache-2.0 | 6,608 |
/* load all RexxUtil functions */
Call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
Call SysLoadFuncs
'@echo off'
/* invoke test program */
CurrentDirectory = directory()
CurrentDirectory'\hybrid.exe /a8/e81/nSNX$'
if rc \=0 then do
/* obtain and issue error message */
say SysGetMessage(rc, 'OSO001.MSG')
say 'ReturnCode:' rc
end
/* wait */
'@pause'
| OS2World/DRV-USBECD | hybrid/hybrid.cmd | bat | isc | 370 |
@if (@X)==(@Y) @end /* JScript comment
@echo off
setlocal
for /f "tokens=* delims=" %%v in ('dir /b /s /a:-d /o:-n "%SystemRoot%\Microsoft.NET\Framework\*jsc.exe"') do (
set "jsc=%%v"
)
if not exist "%~n0.exe" (
"%jsc%" /nologo /out:"%~n0.exe" "%~dpsfnx0"
)
"%~n0.exe" %*
del "%~n0.exe"
endlocal & exit /b %errorlevel%
end of jscript comment*/
import System;
import System.Threading;
import System.Diagnostics;
var arguments:String[] = Environment.GetCommandLineArgs();
function printHelp( ) {
print(arguments[0] + " pid prio");
}
if ( arguments.length == 1 || arguments[1].toLowerCase() == "-h" || arguments[1].toLowerCase() == "-help" ) {
printHelp();
Environment.Exit(0);
}
if ( arguments.length != 3) {
print("wrong number of arguments");
Environment.Exit(1);
}
try {
var pid= Int32.Parse(arguments[1]);
}catch(err){
print("process must be a number");
Environment.Exit(2);
}
var prio=arguments[2].toLowerCase();
var proc="";
try{
proc=Process.GetProcessById(pid);
}catch(err){
print("process " + pid + " not found");
Environment.Exit(3);
}
switch(prio) {
case "abovenormal":
proc.PriorityClass = ProcessPriorityClass.AboveNormal;
break;
case "belownormal":
proc.PriorityClass = ProcessPriorityClass.AboveNormal;
break;
case "high":
proc.PriorityClass = ProcessPriorityClass.High;
break;
case "idle":
proc.PriorityClass = ProcessPriorityClass.Idle;
break;
case "normal":
proc.PriorityClass = ProcessPriorityClass.Normal;
break;
case "realTime":
proc.PriorityClass = ProcessPriorityClass.RealTime;
break;
default:
print("invalid prio: " + prio + " given");
Environment.Exit(5);
}
| npocmaka/batch.scripts | hybrids/.net/setPrio.bat | bat | mit | 1,738 |
xst -intstyle ise -ifn "C:/dropbox/GadgetFactory/GadgetFactory_Engineering/Papilio-Schematic-Library/Papilio_Schematic_Projects/Template_Wishbone_Example/500K/Papilio_One_500K.xst" -ofn "C:/dropbox/GadgetFactory/GadgetFactory_Engineering/Papilio-Schematic-Library/Papilio_Schematic_Projects/Template_Wishbone_Example/500K/Papilio_One_500K.syr"
ngdbuild -intstyle ise -dd _ngo -aul -nt timestamp -uc C:/dropbox/GadgetFactory/GadgetFactory_Engineering/Papilio-Schematic-Library/Libraries/ZPUino_1/board_Papilio_One_500k/papilio_one.ucf -p xc3s500e-vq100-5 Papilio_One_500K.ngc Papilio_One_500K.ngd
map -intstyle ise -p xc3s500e-vq100-5 -cm area -ir off -pr off -c 100 -o Papilio_One_500K_map.ncd Papilio_One_500K.ngd Papilio_One_500K.pcf
par -w -intstyle ise -ol high -t 1 Papilio_One_500K_map.ncd Papilio_One_500K.ncd Papilio_One_500K.pcf
trce -intstyle ise -v 3 -s 5 -n 3 -fastpaths -xml Papilio_One_500K.twx Papilio_One_500K.ncd -o Papilio_One_500K.twr Papilio_One_500K.pcf
bitgen -intstyle ise -f Papilio_One_500K.ut Papilio_One_500K.ncd
| chcbaram/FPGA | zap-2.3.0-windows/papilio-zap-ide/examples/00.Papilio_Schematic_Library/examples/Template_Wishbone_Example/500K/Papilio_One_500K.cmd | bat | mit | 1,047 |
@pushd "%~dp0"
@set location=%~dp0
@set EXIT_CODE=0
@call log a a a
@setx script_a a
@goto :SUCCESS
:ERROR
@set EXIT_CODE=1
@call log %~n0: exited with error %1
:SUCCESS
@popd
echo %DATE% %TIME% %~n0
@exit /b %EXIT_CODE%
| mvw684/Experiments | BatchFile/a.cmd | bat | mit | 224 |
rmdir /s /q tmp
rmdir /s /q debug
del Makefile
del Makefile.Release
del Makefile.Debug
| horsicq/nfdx64dbg | clear.bat | bat | mit | 94 |
java ^
-Djava.library.path=../.. ^
-classpath ../../aparapi.jar;info.jar ^
com.amd.aparapi.sample.info.Main
| sadikovi/spark-gpu | aparapi/samples/info/info.bat | bat | mit | 112 |
cd C:\wamp64\www\frenchtech
php bin/console cache:clear --no-warmup | paoudom/frenchtech2 | cacheclear.bat | bat | mit | 67 |
@echo off
call %LOCAL_SETUP%
call %LOCAL%\etc\fstab.bat
call logging.bat PCðN®µÜµ½
taskkill /f /im explorer.exe & start explorer
REM RC_INIT
set FOLD=%LOCAL%\sched\rc.init
if exist %FOLD% (
CD /d %FOLD%\
for /f "usebackq" %%i in (`dir /b /a-d`) do (
call start cmd /c "%%i"
call wait 3
)
)
REM RC_INIT2
set FOLD=%LOCAL%\sched\rc.init2
if exist %FOLD% (
CD /d %FOLD%\
for /f "usebackq" %%i in (`dir /b /a-d`) do (
call start cmd /c "%%i"
call wait 3
)
)
call wait 3
cd /d C:
if exist %LOCAL%\sched\rc.init2 REN %LOCAL%\sched\rc.init2 _rc.init2
| kunst1080/BatLibrary | bin/Startup.bat | bat | mit | 598 |
C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild ..\src\AssertProperties\AssertProperties.csproj /p:Configuration=Release
| lfreneda/AssertProperties | build/build.bat | bat | mit | 127 |
@echo off
start "" "C:\Program Files (x86)\LOVE\love" . | RadioactiveMonkey/InflateGame | Inflate/run.bat | bat | mit | 56 |
@echo off
cd bin
if "%1"=="debug" (
:: run debug
Main-Debug.exe _input/ _output/
) else (
:: run release
Main.exe _input/ _output/
)
pause | larsiusprime/tdrpg-tools | DQDialogue/Run.bat | bat | mit | 146 |
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
call msbuild
call "C:\Program Files (x86)\NUnit 2.5.10\bin\net-2.0\nunit-x86.exe" /run %1 | jaquadro/Treefrog | Treefrog.Framework.Tests/test.bat | bat | mit | 171 |
cmd_sound/pci/emu10k1/built-in.o := rm -f sound/pci/emu10k1/built-in.o; /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD sound/pci/emu10k1/built-in.o
| RittikBhowmik/Project-Crater-Kernel-GT-i9152 | sound/pci/emu10k1/.built-in.o.cmd | bat | gpl-2.0 | 184 |
SET AMSTRHDD=
SET AMSTRDSK=
SET AMSTRDSK1=
SET AMSTRDSK2=
SET AMSTRDSK3=
SET AMSTRDSK4=
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk 1*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK1=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk1*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK1=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK1=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk 2*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK2=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk2*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK2=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK2=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk 3*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK3=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk3*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK3=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK3=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk 4*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK4=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%\*Disk4*"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".dsk" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".arc" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".cpr" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".crt" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".cdt" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".tzx" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".czx" SET AMSTRDSK4=%%~a
if /I "%%~xa"==".voc" SET AMSTRDSK4=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%AMSTR%\%CSTM%"') do (
if /I "%%~xa"==".dsc" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".tzx" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".dsk" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".arc" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".cpr" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".crt" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".cdt" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".czx" SET AMSTRDSK=%%~a
CALL :disking
if /I "%%~xa"==".voc" SET AMSTRDSK=%%~a
CALL :disking
)
goto :injecAMSTRs
:disking
if /I "%AMSTRDSK%"=="%AMSTRDSK2%" SET AMSTRDSK=
exit /b
if /I "%AMSTRDSK%"=="%AMSTRDSK3%" SET AMSTRDSK=
exit /b
if /I "%AMSTRDSK%"=="%AMSTRDSK4%" SET AMSTRDSK=
exit /b
if /I "%AMSTRDSK%"=="" exit /b
:injecAMSTRs
"%GBC%\inifile.exe" "WinAPE.ini" [Drives] Drive(0)=%GBG%\%GAM%\%CONS%\%CSTM%\%AMSTRDSK%"
if "%AMSTRDSK2%" NEQ "" "%GBC%\inifile.exe" "WinAPE.ini" [Drives] Drive(1)=%GBG%\%GAM%\%CONS%\%CSTM%\%AMSTRDSK2%"
if "%AMSTRDSK3%" NEQ "" "%GBC%\inifile.exe" "WinAPE.ini" [Drives] Drive(2)=%GBG%\%GAM%\%CONS%\%CSTM%\%AMSTRDSK3%"
if "%AMSTRDSK4%" NEQ "" "%GBC%\inifile.exe" "WinAPE.ini" [Drives] Drive(3)=%GBG%\%GAM%\%CONS%\%CSTM%\%AMSTRDSK4%"
goto :AMSTRend
:AMSTRend
exit /b | HoodlumDTX/rom-jacket | Amstrinject.bat | bat | gpl-2.0 | 5,272 |
"C:\Program Files\Java\jre1.5.0_11\bin\java" -jar dist\mw.jar local
| concord-consortium/mw | run5.bat | bat | gpl-2.0 | 69 |
cmd_drivers/staging/ab5500_sim/built-in.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o drivers/staging/ab5500_sim/built-in.o drivers/staging/ab5500_sim/ab5500-sim.o
| emwno/android_kernel_U8500 | drivers/staging/ab5500_sim/.built-in.o.cmd | bat | gpl-2.0 | 192 |
cmd_net/bluetooth/bnep/bnep.o := /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o net/bluetooth/bnep/bnep.o net/bluetooth/bnep/core.o net/bluetooth/bnep/sock.o net/bluetooth/bnep/netdev.o
| DrGrip/tiamat-2.6.38-LEO-Dr_Grip | net/bluetooth/bnep/.bnep.o.cmd | bat | gpl-2.0 | 206 |
"C:\Program Files\MySQL\MySQL Server 5.6\bin\mysql.exe" -h localhost -udayz -ppass4dayz dayz -e "call removeDamagedVehicles" | rmnelson/dayz | scripts/maintenance/dbfunctions.bat | bat | gpl-2.0 | 124 |
cmd_ipc/built-in.o := /home/beto/toolchain/bin/arm-eabi-ld -EL -r -o ipc/built-in.o ipc/util.o ipc/msgutil.o ipc/msg.o ipc/sem.o ipc/shm.o ipc/ipcns_notifier.o ipc/syscall.o ipc/ipc_sysctl.o
| IndieBeto/StockLP | ipc/.built-in.o.cmd | bat | gpl-2.0 | 196 |
cmd_arch/arm/lib/lib1funcs.o := arm-linux-gcc -Wp,-MD,arch/arm/lib/.lib1funcs.o.d -nostdinc -isystem /opt/FriendlyARM/toolschain/4.4.3/lib/gcc/arm-none-linux-gnueabi/4.4.3/include -Iinclude -I/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s3c2410/include -Iarch/arm/mach-s3c2400/include -Iarch/arm/mach-s3c2412/include -Iarch/arm/mach-s3c2440/include -Iarch/arm/mach-s3c2442/include -Iarch/arm/mach-s3c2443/include -Iarch/arm/plat-s3c24xx/include -Iarch/arm/plat-s3c/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=4 -march=armv4t -mtune=arm9tdmi -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/lib1funcs.o arch/arm/lib/lib1funcs.S
deps_arch/arm/lib/lib1funcs.o := \
arch/arm/lib/lib1funcs.S \
$(wildcard include/config/aeabi.h) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/linkage.h \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/hwcap.h \
arch/arm/lib/lib1funcs.o: $(deps_arch/arm/lib/lib1funcs.o)
$(deps_arch/arm/lib/lib1funcs.o):
| kaylorchen/Linux_for_mini2440 | arch/arm/lib/.lib1funcs.o.cmd | bat | gpl-2.0 | 1,945 |
cmd_drivers/bluetooth/bthid/built-in.o := rm -f drivers/bluetooth/bthid/built-in.o; /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ar rcs drivers/bluetooth/bthid/built-in.o
| dizgustipated/BOCA-2.6.35.14 | drivers/bluetooth/bthid/.built-in.o.cmd | bat | gpl-2.0 | 172 |
@echo off
..\CekaCli.exe -m=arff -i=uhs_evol3 -f=removeUnusedValues
pause | krystianity/ceka-cli | Examples/win32/4_remove_unused_values.cmd | bat | gpl-2.0 | 73 |
cmd_drivers/usb/storage/usb-libusual.o := /root/adam/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/usb/storage/usb-libusual.o drivers/usb/storage/libusual.o drivers/usb/storage/usual-tables.o
| DJSteve/StreakKernel | drivers/usb/storage/.usb-libusual.o.cmd | bat | gpl-2.0 | 228 |
cmd_drivers/hid/hid.o := /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/hid/hid.o drivers/hid/hid-debug.o drivers/hid/hid-core.o drivers/hid/hid-input.o
| asopov/linux-tpt-2.6.39 | drivers/hid/.hid.o.cmd | bat | gpl-2.0 | 210 |
@echo off
color A
title Half-Life1
set DIR="%CD%"
set PWD=%CD%\wine\data\drive_c\Juegos\Inukaze\Half-Life-EE
set key1=HKEY_CURRENT_USER\Software\Valve
set key2=HKEY_CURRENT_USER\Software\Valve\Half-Life
set key3=HKEY_CURRENT_USER\Software\Valve\Half-Life\Settings
set key4=HKEY_CURRENT_USER\Software\Valve\Half-Life\valve
set key5=HKEY_CURRENT_USER\Software\Valve\Half-Life\valve\Settings
set key6=HKEY_CURRENT_USER\Software\Valve\Steam
REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v Desktop
FOR /F "tokens=2*" %%i in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v Desktop^|findstr /C:"REG_SZ" /C:"REG_EXPAND_SZ"') DO SET "DEEE=%%j"
FOR /F "usebackq delims=" %%i in (`ECHO %DEEE%`) DO SET DEEE=%%i
set DEEEDHL1EE=%DEEE%\Half-Life1
echo ===========Configurando el Software=========
echo.
echo Borrando Entradas de Registro
echo Anteriores para evitar Conflictos
(reg delete "%key6%" /f)
(reg delete "%key5%" /f)
(reg delete "%key4%" /f)
(reg delete "%key3%" /f)
(reg delete "%key2%" /f)
(reg delete "%key1%" /f)
echo.
echo ============================================
echo.
echo Agregando Entradas de Registro
echo Para que el Software Funcione Correctamente
(reg add "%key1%" /f)
(reg add "%key2%" /f)
(reg add "%key3%" /f)
(reg add "%key4%" /f)
(reg add "%key5%" /f)
(reg add "%key6%" /f)
(reg add "%key3%" /t REG_DWORD /v CrashInitializingVideoMode /d 0 /f)
(reg add "%key3%" /t REG_DWORD /v EngineD3D /d 0 /f)
(reg add "%key3%" /t REG_SZ /v EngineDLL /d hw.dll /f)
(reg add "%key3%" /t REG_SZ /v io /d "" /f)
(reg add "%key3%" /t REG_DWORD /v ScreenBPP /d 32 /f)
(reg add "%key3%" /t REG_DWORD /v ScreenHeight /d 600 /f)
(reg add "%key3%" /t REG_DWORD /v ScreenWidth /d 800 /f)
(reg add "%key3%" /t REG_DWORD /v ScreenWindowed /d 0 /f)
(reg add "%key3%" /t REG_SZ /v "User Token 2" /d "" /f)
(reg add "%key3%" /t REG_SZ /v "User Token 3" /d "" /f)
(reg add "%key3%" /t REG_SZ /v ValveKey /d AAAAA-AAAAA-AAAAA-AAAAA-AAAAA /f)
(reg add "%key3%" /t REG_SZ /v yeK1 /d A0B8FF7E9183788F769199CA89976F05705483F7CEDBBEE8693B8FA228C58EF63F8BA37D480A765A7DB49811E5BA386B6D214CD687AD585FCD837BD523D8A86410ABC84CC2D0EECF0EFB6820DB3664C2ED313B5FF40A577775E8B96C8B187EC362EF8EC4729864A544849EF39173AB1C30B88803612D2B66A390096322534B /f)
(reg add "%key3%" /t REG_SZ /v yeK2 /d C3A53B015287AC10FA40BA8A80BB7C978BCD3C76804288AB164EC591FE37EDB3E7D401ADC30483F42280D228D9DE74EFA4A15C8206D0 /f)
(reg add "%key5%" /t REG_SZ /v "User Token 2" /d "" /f)
(reg add "%key5%" /t REG_SZ /v "User Token 3" /d "" /f)
(reg add "%key6%" /t REG_SZ /v Language /d spanish /f)
(reg add "%key6%" /t REG_SZ /v Rate /d 3500 /f)
(reg add "%key6%" /t REG_SZ /v Skin /d "" /f)
echo.
echo ============================================
cd "%DEEE%"
if exist "%DEEEDHL1EE%" ( echo "Verificando que existen los Accesos Directos"
if not exist "%DEEEDHL1EE%\Half-Life 1 - Original.lnk" goto crear_hl1o
if not exist "%DEEEDHL1EE%\Half-Life 1 - Opposing Force.lnk" goto crear_hl1of
if not exist "%DEEEDHL1EE%\Half-Life 1 - Blue Shift.lnk" goto crear_hl1bs
if not exist "%DEEEDHL1EE%\Half-Life 1 - Ricochet.lnk" goto crear_hl1r
if not exist "%DEEEDHL1EE%\Half-Life 1 - Team Fortress Classic.lnk" goto crear_hl1tfc
if not exist "%DEEEDHL1EE%\Half-Life 1 - Deathmatch Classic.lnk" goto crear_hl1dc
if not exist "%DEEEDHL1EE%\Half-Life 1 - Counter Strike.lnk" goto crear_hl1cs
if not exist "%DEEEDHL1EE%\Half-Life 1 - Decay.lnk" goto crear_hl1d
if not exist "%DEEEDHL1EE%\Half-Life 1 - Zombie.lnk" goto crear_hl1z
)
:AccesosDirectos
echo.
cd "%DEEE%"
If NOT exist "%DEEEDHL1EE%" ( echo "Creando Accesos Directos"
md "%DEEEDHL1EE%"
cd "%DEEEDHL1EE%"
goto AccesosDirectos
echo.
)
echo.
:crear_hl1o
echo "Half-Life 1 - Original"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Original.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\hl.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1of
echo "Half-Life 1 - Opposing Force"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Opposing Force.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game gearbox" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\gearbox\game.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1bs
echo "Half-Life 1 - Blue Shift"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Blue Shift.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game bshift" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\bshift\game.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1r
echo "Half-Life 1 - Ricochet"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Ricochet.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = " -nomaster -game ricochet" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\ricochet\game.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
:crear_hl1tfc
echo "Half-Life 1 - Team Fortress Classic"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Team Fortress Classic.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game tfc" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\tfc\game.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1dc
echo "Half-Life 1 - Deathmatch Classic"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Deathmatch Classic.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game dmc" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\dmc\game.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1cs
echo "Half-Life 1 - Counter Strike"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Counter Strike.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game cstrike" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\cstrike\cstrike.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1d
echo "Half-Life 1 - Decay"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Decay.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game decay" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\decay\Decay.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
:crear_hl1z
echo "Half-Life 1 - Zombie"
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT%
echo sLinkFile = "%DEEEDHL1EE%\Half-Life 1 - Zombie.lnk" >> %SCRIPT%
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT%
echo oLink.TargetPath = "%PWD%\hl.exe" >> %SCRIPT%
echo oLink.Arguments = "-nomaster -game zombie" >> %SCRIPT%
echo oLink.IconLocation = "%PWD%\zombie\zombielogo.ico, 0" >> %SCRIPT%
echo oLink.WorkingDirectory = "%PWD%" >> %SCRIPT%
echo oLink.Save >> %SCRIPT%
cscript /nologo %SCRIPT%
del %SCRIPT%
echo.
echo ===========Configurando el Software=========
goto deeedhl1ee
:deeedhl1ee
echo.
start /b %windir%\explorer.exe "%DEEEDHL1EE%"
cd %DIR%
| inukaze/maestro | Videojuegos/Guion/Windows/Configurar_en_Windows_HalfLifeEE.bat | bat | gpl-2.0 | 9,522 |
cmd_drivers/ieee1394/built-in.o := rm -f drivers/ieee1394/built-in.o; /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ar rcs drivers/ieee1394/built-in.o
| spacecaker/Stock_spacecaker_kernel | drivers/ieee1394/.built-in.o.cmd | bat | gpl-2.0 | 191 |
cmd_sound/drivers/built-in.o := /home/flint/android/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-ld -EL -r -o sound/drivers/built-in.o sound/drivers/opl3/built-in.o sound/drivers/opl4/built-in.o sound/drivers/mpu401/built-in.o sound/drivers/vx/built-in.o sound/drivers/pcsp/built-in.o ; scripts/mod/modpost sound/drivers/built-in.o
| lindsaytheflint/stone | sound/drivers/.built-in.o.cmd | bat | gpl-2.0 | 371 |
REM Copies files necessary for deployment. Used by Qt Creator
REM Usage: deploy.bat
xcopy /Y /I /E assets .\debug\.
xcopy /Y /I /E assets .\release\.
| Andlon/spark | deploy.bat | bat | gpl-3.0 | 151 |
@echo off
setlocal
echo.
echo WARNING: YOU ARE GOING TO DO A BRUTE FORCE REINTEGRATION
pause
echo.
echo I hope you know what you're doing
pause
if .%1.==.. goto usage
if not .%2.==.. set client_flag=-c %2
if .%2.==.pause. set pause_end=pause
if .%3.==.pause. set pause_end=pause
if .%4.==.pause. set pause_end=pause
set to_main_mergeflags=-at
if .%2.==.mutex. set to_main_mergeflags=-at
if .%3.==.mutex. set to_main_mergeflags=-at
if .%4.==.mutex. set to_main_mergeflags=-at
set dir=from_main
p4 %client_flag% info | grep "Client name" | grep -q "main"
if not errorlevel 1 set dir=to_main
if .%dir%.==.to_main. set reverse_flag=-r
if .%dir%.==.to_main. set from_to=to
if .%dir%.==.to_main. set merge_flags=%to_main_mergeflags%
if .%dir%.==.from_main. set from_to=from
if .%dir%.==.from_main. set merge_flags=-at
echo Integrate %from_to% main, client:
p4 %client_flag% info | grep "Client name" | sed "s/Client name: / /"
echo Using branchspec:
echo %1
echo.
echo.
echo Checking if integration needed...
p4 %client_flag% integrate %reverse_flag% -n -f -d -i -b %1 ... 2>&1 | grep -q "All revision(s) already integrated"
if not errorlevel 1 goto nothing_to_do
echo.
echo Starting integration...
p4 %client_flag% opened 2>&1 | grep -q "File(s) not opened on this client"
if not errorlevel 1 goto prep_changelist
echo.
echo WARNING: You have files opened on this client. It is recommended you submit
echo changes prior to doing an integraton.
echo.
pause
:prep_changelist
p4 %client_flag% opened 2>&1 | grep -q "edit default"
if errorlevel 1 goto integrate
echo.
echo Moving files in default changelist to new changelist...
p4 %client_flag% change -o | sed -e "s/<enter description here>/Pre-merge default/g" | p4 %client_flag% change -i
:integrate
echo.
echo Syncing...
p4 %client_flag% sync
echo.
echo Integrating...
p4 %client_flag% integrate %reverse_flag% -f -d -i -b %1 ...
p4 %client_flag% opened 2>&1 | grep -q "integrate default"
if errorlevel 1 goto nofiles
echo.
echo Creating new changlist, description "Forced reintegration %from_to% main (%1)"
p4 %client_flag% change -o | sed -e "s/<enter description here>/Forced reintegration %from_to% main (%1)/g" | p4 %client_flag% change -i
echo.
echo Resolving...
p4 %client_flag% resolve -n 2>&1 | grep -q "No file(s) to resolve."
if not errorlevel 1 goto end
p4 %client_flag% resolve %merge_flags%
p4 %client_flag% resolve -at .../*.lib
p4 %client_flag% resolve -at .../*.exe
p4 %client_flag% resolve -at .../*.dll
echo.
echo.
echo Pause carefully examine results before submitting
echo.
echo.
pause
p4 %client_flag% resolve -n 2>&1 | grep -q "No file(s) to resolve."
if not errorlevel 1 goto end
echo.
echo.
echo ** The following files still require resolving:
echo.
p4 %client_flag% resolve -n | sed -e "s/ - merging.*//g"
goto end
:nothing_to_do
echo All revision(s) already integrated.
goto end
:usage
echo p4mf [branch] [clientname]
echo Merge from specified branch
goto end
:nofiles
Echo no files to integrate?
:end
echo Done.
%pause_end% | RaisingTheDerp/raisingthebar | root/devtools/bin/p4reint.bat | bat | gpl-3.0 | 3,042 |
java -jar -server -Dcom.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump=false -Dfile.encoding=UTF-8 -Xms256m -Xmx1024m -XX:MaxPermSize=512M -XX:-HeapDumpOnOutOfMemoryError -Dsun.rmi.dgc.client.gcInterval=1800000 -Dsun.rmi.dgc.server.gcInterval=1800000 -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC target/project-1.0-SNAPSHOT.jar %1 %2 | diegolovison/master-degree | heuristic_and_meta-heuristic_search/project/run.cmd | bat | gpl-3.0 | 370 |
:: Shuts down the system
echo Shutting down...
shutdown /s /f /t 0
| redpois0n/usbwatcher | scripts/shutdown_win.bat | bat | gpl-3.0 | 68 |
perl jopply-sys.pl
perl jopply-sys.pl --lanid
perl jopply-sys.pl --n=lrare,cad --lanid=12
perl jopply-sys.pl --nyckelord=lrare,cad --lanid=12 --epost --verbose
perl jopply-sys.pl --n=lrare,cad --lanid=12 --w
perl jopply-sys.pl --n=lrare,cad --lanid=12 --w --e
perl jopply-sys.pl --ann=2621881
perl jopply-sys.pl --help | mobluse/jopply | test/test-sys.bat | bat | agpl-3.0 | 329 |
nuget.exe pack CA.Blocks.DataAccess.csproj -Prop Platform=AnyCPU | KevinBosch/CA.Blocks.DataAccess | CA.Blocks.DataAccess/PrepNugetPackage.bat | bat | apache-2.0 | 64 |
(clear)
(unwatch compilations)
(watch statistics)
(set-strategy depth)
(load clipsfiles/waltz/waltz.clp)
(reset)
(load-facts clipsfiles/waltz/waltz37.fct)
(run)
| RWTH-i5-IDSG/jamocha | clipsfiles/waltz/waltz37.bat | bat | apache-2.0 | 161 |
echo three
pause
| wolispace/cow_windows_server | oldcow_on_apache/test3.bat | bat | apache-2.0 | 17 |
brc32 ractl.rc -r -foractl.dcr
brc32 radb.rc -r -foradb.dcr
brc32 rai.rc -r -forai.dcr | tavultesoft/keymanweb | windows/src/ext/jedi/jvcl/tests/RALib/Images/MakeDCR.bat | bat | apache-2.0 | 86 |
npm install
git clone https://github.com/xiangming/landscape-plus.git themes/landscape-plus
| PingHackers/blog | init.bat | bat | apache-2.0 | 92 |
rem @ECHO OFF
set COPYRIGHT="Copyright 2012 GWTAO"
set LICENSE="APACHE"
set ROOT=%~dp0..
set GEN="%~dp0\genheader.pl"
FOR /f %%a in ('dir /B /A:D %ROOT%\gwtao-*') do %GEN% -M %ROOT%\%%a\src -R -C %COPYRIGHT% -L %LICENSE%
set ROOT=
set GEN=
set COPYRIGHT=
set LICENSE=
pause | mhueb/gwtao | etc/genheader.cmd | bat | apache-2.0 | 292 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyradiomics.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyradiomics.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
| Radiomics/pyradiomics | docs/make.bat | bat | bsd-3-clause | 7,742 |
@ruby "%~dpn0" %*
| raphaelr/convolution | bin/convolution.bat | bat | bsd-3-clause | 18 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\RPython.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\RPython.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
| oblique-labs/pyVM | rpython/doc/make.bat | bat | mit | 5,098 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.