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
|
---|---|---|---|---|---|
choco install -y --allow-empty-checksums vim unxutils 7zip googlechrome atom virtualbox vlc jre8 googledrive putty mobaxterm winscp jbs keepass git sudo nmap curl
pause
| thobianchi/dotfiles | windows/Work-programs.bat | bat | mit | 169 |
@echo off
rem Author: Andrey Dibrov (andry at inbox dot ru)
rem Script remounts Cygwin paths in the registry by path read from "cygwin.vars".
rem To remount Cygwin by this script you should properly set variables
rem "CYGWIN_PATH" and "CYGWIN_REGKEY_PATH" before.
rem Restart shell if x64 mode
if not "%PROCESSOR_ARCHITECTURE%" == "AMD64" goto NOTX64
rem To avoid potential recursion in case of wrong PROCESSOR_ARCHITECTURE value
if defined PROCESSOR_ARCHITEW6432 goto NOTX64
"%SystemRoot%\Syswow64\cmd.exe" /C ^(%0 %*^)
exit /b
:NOTX64
rem Drom last error level
call;
rem Save all variables to stack
setlocal
call "%%~dp0__init__.bat" || exit /b
rem make all paths canonical
call :CANONICAL_PATH CONTOOLS_ROOT "%%CONTOOLS_ROOT%%"
set "CONTOOLS_ROOT_NATIVE=%CONTOOLS_ROOT%"
call :CANONICAL_PATH CONFIG_PATH "%%~dp0..\Config"
rem Update variables pointing temporary directories
call :CANONICAL_PATH TEMP "%%~dp0..\Temp"
set "TMP=%TEMP%"
rem Save all variables to stack
setlocal
:CHECK_CMD
call "%%CONTOOLS_ROOT%%\isnativecmd.bat"
if %ERRORLEVEL% NEQ 0 (
echo %~nx0: error: ^(%ERRORLEVEL%^) Script doesn't support not native Command Interpreter.>&2
exit /b 1
)
:CHECK_CYGWIN_VARS
rem Load variables from cygwin.vars.
if not exist "%CONFIG_PATH%\cygwin.vars" (
echo %~nx0: error: "cygwin.vars" not found.>&2
exit /b 3
)
call "%%CONTOOLS_ROOT%%\setvarsfromfile.bat" "%%CONFIG_PATH%%\cygwin.vars"
rem Replace all "/" characters to "\" characters
set "CYGWIN_PATH=%CYGWIN_PATH:/=\%"
rem remove back slash
if "%CYGWIN_PATH:~-1%" == "\" set "CYGWIN_PATH=%CYGWIN_PATH:~0,-1%"
if not exist "%CYGWIN_PATH%\bin\cygwin?.dll" (
echo %~nx0: CYGWIN_PATH: "%CYGWIN_PATH%">&2
echo %~nx0: error: Cygwin installation directory doesn't exist or incorrect.>&2
exit /b 4
)
rem Run cygcheck to check main cygwin dll version.
call "%%CONTOOLS_ROOT%%\cygver.bat" cygwin "%%CYGWIN_PATH%%"
if %ERRORLEVEL% NEQ 0 (
echo %~nx0: error: ^(%ERRORLEVEL%^) Failed to run cygcheck utility to detect cygwin dll version.>&2
exit /b 6
)
set CYGWIN_VER_1_7_X=0
if defined CYGWIN_VER_STR (
for /F "eol= tokens=1,2,* delims=." %%i in ("%CYGWIN_VER_STR%") do (
rem If Cygwin version is 1.7 or higher, then no need to check registry installation,
rem because the Cygwin with version 1.7 and higher implements mingw style of working.
if %%i0 GTR 10 (
set CYGWIN_VER_1_7_X=1
) else if %%i0 GEQ 10 if %%j0 GEQ 70 (
set CYGWIN_VER_1_7_X=1
)
)
) else (
echo %~nx0: warning: Cygcheck utility not reported version of cygwin dll, cygwin installation may be corrupted. Continue as Cygwin has 1.6.x version and older.>&2
)
if %CYGWIN_VER_1_7_X% EQU 0 goto REMOUNT_CYGWIN_1_6_X
rem Nothing needs remount.
echo %~nx0: info: Remount destination is Cygwin version 1.7.x or higher and doesn't need to be remounted.>&2
exit /b 7
:REMOUNT_CYGWIN_1_6_X
rem Make remount in the Windows registry.
if not defined CYGWIN_REGKEY_PATH (
echo %~nx0: error: Variable CYGWIN_REGKEY_PATH doesn't set properly by "cygwin.vars" ^(required for cygwin version 1.6.x and older^).>&2
exit /b 8
)
rem Replace all "/" characters to "\" characters
set "CYGWIN_REGKEY_PATH=%CYGWIN_REGKEY_PATH:/=\%"
rem remove back slash
if "%CYGWIN_REGKEY_PATH:~-1%" == "\" set "CYGWIN_REGKEY_PATH=%CYGWIN_REGKEY_PATH:~0,-1%"
rem For cygwin versions 1.6.x and older test if cygwin at least was installed.
call "%%CONTOOLS_ROOT%%/registry/regquery.bat" "%%CYGWIN_REGKEY_PATH%%\/" "native"
if %ERRORLEVEL% NEQ 0 (
echo %~nx0: error: ^(%ERRORLEVEL%^) Cygwin was not installed properly or registry key not found.>&2
exit /b 9
)
rem Replace all "/" characters to "\" characters
set "__CURRENT_CYGWIN_PATH=%REGQUERY_VALUE:/=\%"
rem Drop last slash/back-slash character.
if "%__CURRENT_CYGWIN_PATH:~-1%" == "\" set "__CURRENT_CYGWIN_PATH=%__CURRENT_CYGWIN_PATH:~0,-1%"
call "%%CONTOOLS_ROOT%%/std/strlen.bat" "" "%%__CURRENT_CYGWIN_PATH%%"
set __CURRENT_CYGWIN_PATH_LEN=%ERRORLEVEL%
call "%%CONTOOLS_ROOT%%/std/strlen.bat" "" "%%CYGWIN_REGKEY_PATH%%"
set __CYGWIN_REGKEY_PATH_LEN=%ERRORLEVEL%
set /A __CYGWIN_REGKEY_PATH_LEN+=1
set __OVERALL_PATHS=0
set __REMOUNTED_PATHS=0
echo Remounting Cygwin installation...
rem Read each subkey of registry key and process it.
for /F "usebackq eol= tokens=*" %%i in (`call "%%CONTOOLS_ROOT%%/registry/regenum.bat" "%%CYGWIN_REGKEY_PATH%%\"`) do (
if not "%%i" == "" (
call :PROCESS_CYGWIN_MOUNT_REGKEY "%%i"
)
)
echo. %__REMOUNTED_PATHS% of %__OVERALL_PATHS% paths is remounted.
goto EXIT
:PROCESS_CYGWIN_MOUNT_REGKEY
rem Ignore root path, because it is path to registry key.
set "__VALUE=%~1"
call set "__VALUE=%%__VALUE:~%__CYGWIN_REGKEY_PATH_LEN%%%"
if not defined __VALUE exit /b
if "%__VALUE%" == "~%__CYGWIN_REGKEY_PATH_LEN%" exit /b
set /A __OVERALL_PATHS+=1
call "%%CONTOOLS_ROOT%%/registry/regquery.bat" "%%CYGWIN_REGKEY_PATH%%\%%__VALUE%%" "native"
rem Ignore empty mounts.
if %ERRORLEVEL% NEQ 0 exit /b
call set "__VALUE2_1=%%REGQUERY_VALUE:~0,%__CURRENT_CYGWIN_PATH_LEN%%%"
call set "__VALUE2_2=%%REGQUERY_VALUE:~%__CURRENT_CYGWIN_PATH_LEN%%%"
rem Replace all "/" characters to "\" characters
set "__VALUE2_1=%__VALUE2_1:/=\%"
rem Ignore already correct mounts.
if /i "%CYGWIN_PATH%" == "%__VALUE2_1%" exit /b
rem Change only mounts which paths begins from root mount minus drive.
if /i not "%__CURRENT_CYGWIN_PATH:~1%" == "%__VALUE2_1:~1%" exit /b
set "__VALUE2_2_1=%__VALUE2_2:\=/%"
if defined __VALUE2_2 if not "%__VALUE2_2_1:~0,1%" == "/" exit /b
rem Write new value to registry.
reg.exe add "%CYGWIN_REGKEY_PATH%\%__VALUE%" /v "native" /d "%CYGWIN_PATH%%__VALUE2_2%" /f >nul 2>&1
echo %__VALUE% -^> "%CYGWIN_PATH%%__VALUE2_2%"
set /A __REMOUNTED_PATHS+=1
exit /b
:REMOUNT_CYGWIN_1_7_X
rem Make remount in the local /etc/fstab file.
echo %~nx0: warning: /etc/fstab should be manually remounted.>&2
exit /b
:CANONICAL_PATH
setlocal DISABLEDELAYEDEXPANSION
for /F "eol= tokens=* delims=" %%i in ("%~2\.") do set "RETURN_VALUE=%%~fi"
rem set "RETURN_VALUE=%RETURN_VALUE:\=/%"
(
endlocal
set "%~1=%RETURN_VALUE%"
)
exit /b 0
:EXIT
exit /b 0
| andry81/contools | Scripts/Build/remount_cygwin_reg.bat | bat | mit | 6,315 |
@echo off
setlocal EnableDelayedExpansion
set __ProjectDir=%~dp0
set __DotNet=%__ProjectDir%\Tools\dotnetcli\dotnet.exe
set __MSBuild=%__ProjectDir%\Tools\MSBuild.exe
:: Initialize the MSBuild Tools
call "%__ProjectDir%\init-tools.cmd"
:: Restore dependencies mainly to obtain runtime.json
pushd "%__ProjectDir%\deps"
"%__DotNet%" restore --configfile "%__ProjectDir%\..\NuGet.Config" --packages "%__ProjectDir%\packages"
popd
:: Clean up existing nupkgs
if exist "%__ProjectDir%\bin" (rmdir /s /q "%__ProjectDir%\bin")
:: Package the assets using Tools
"%__DotNet%" "%__MSBuild%" "%__ProjectDir%\projects\packages.builds" /p:TargetsWindows=true /verbosity:minimal
if not ERRORLEVEL 0 goto :Error
exit /b 0
:Error
echo An error occurred during packing.
exit /b 1
| schellap/core-setup | pkg/pack.cmd | bat | mit | 771 |
hmset tcm:13141282050 num 13141282050 point 2050 bonus 100 date 2014-01-20
hmset tcm:13141282052 num 13141282052 point 20 bonus 100 date 2014-01-20
hmset tcm:12345678902 num 12345678902 point 192 bonus 0 date 2017-02-05
hmset tcm:12345678903 num 12345678903 point 250 bonus 50 date 2010-09-09
hmset tcm:12345678901 num 12345678901 point 200 bonus 20 date 2010-03-01
hmset tcm:12345678911 num 12345678911 point 500 bonus 1000 date 2014-10-10 | flyfax/huawei_metis | sql/redis_test.cmd | bat | mit | 440 |
@echo off
echo Linking Utils...
mklink /J "H:\GitHub\SAssemblies\SPackages\SHealths\Utils\" "H:\Visual Studio 2012\Projects\SAwareness\SAwareness\Utils\"
echo Creating Resource folder...
mkdir "H:\GitHub\SAssemblies\SPackages\SHealths\Resources"
echo Linking Dll's...
mklink /J "H:\GitHub\SAssemblies\SPackages\SHealths\Resources\DLL\" "H:\Visual Studio 2012\Projects\SAwareness\SAwareness\Resources\DLL\"
echo Linking Translations...
mklink /J "H:\GitHub\SAssemblies\SPackages\SHealths\Resources\TRANSLATIONS\" "H:\Visual Studio 2012\Projects\SAwareness\SAwareness\Resources\TRANSLATIONS\"
echo Linking Miscs...
mklink /J "H:\GitHub\SAssemblies\SPackages\SHealths\Healths\" "H:\Visual Studio 2012\Projects\SAwareness\SAwareness\Healths\"
echo Finished
Pause | Screeder/SAssemblies | SPackages/SHealths/Install.bat | bat | mit | 773 |
..\bin\RubberPlant.App\Release\RubberPlant.App.exe -l5 -r30 hogeweg_b.ls
| joce/RubberPlant | examples/hogeweg_b.cmd | bat | mit | 73 |
@echo off
@rd /S /Q packages
@mkdir packages
nuget restore ..\src\DoddleReport.sln
nuget pack ..\src\DoddleReport\DoddleReport.csproj -prop Configuration=Release -Build -Symbols -OutputDirectory .\packages
nuget pack ..\src\DoddleReport.AbcPdf\DoddleReport.AbcPdf.csproj -prop Configuration=Release -Build -Symbols -OutputDirectory .\packages
nuget pack ..\src\DoddleReport.iTextSharp\DoddleReport.iTextSharp.csproj -prop Configuration=Release -Build -Symbols -OutputDirectory .\packages
nuget pack ..\src\DoddleReport.OpenXml\DoddleReport.OpenXml.csproj -prop Configuration=Release -Build -Symbols -OutputDirectory .\packages
nuget pack ..\src\DoddleReport.Web\DoddleReport.Web.csproj -prop Configuration=Release -Build -Symbols -OutputDirectory .\packages
nuget pack ..\src\DoddleReport.Sample.Web\DoddleReport.Sample.Mvc.nuspec -OutputDirectory .\packages
| matthidinger/DoddleReport | nuget/CreatePackages.bat | bat | mit | 864 |
setlocal
set WOOCOMMERCE_PLUGIN=C:\projects\channelengine-woocommerce
set WOOCOMMERCE_ROOT=C:\projects\woocommerce
echo %WOOCOMMERCE_PLUGIN%
echo %WOOCOMMERCE_ROOT%
mklink /D "%WOOCOMMERCE_ROOT%\wp-content\plugins\channelengine" "%WOOCOMMERCE_PLUGIN%" | channelengine/woocommerce | create-symlinks.bat | bat | mit | 253 |
cd C:\Program Files (x86)\Resolume Arena 4.1.7
| nosuchtim/VizBench | bin/cdarena.bat | bat | mit | 47 |
cmd_lib/lzo/built-in.o := /home/lupohirp/Scrivania/android-toolchain-eabi/bin/arm-eabi-ld -EL -r -o lib/lzo/built-in.o lib/lzo/lzo_compress.o lib/lzo/lzo_decompress.o
| lupohirp/Acer_Liquid_Glow_Kernel | lib/lzo/.built-in.o.cmd | bat | gpl-2.0 | 172 |
cmd_drivers/input/misc/gpio_axis.ko := /home/algesat/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -T /home/algesat/kernel/scripts/module-common.lds --build-id -o drivers/input/misc/gpio_axis.ko drivers/input/misc/gpio_axis.o drivers/input/misc/gpio_axis.mod.o
| Algesat/BladeApex2 | drivers/input/misc/.gpio_axis.ko.cmd | bat | gpl-2.0 | 253 |
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/scale.o := ld -m elf_i386 -r -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/scale.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/objects/hal/components/scale.o
| CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver | src/.scale.o.cmd | bat | gpl-2.0 | 222 |
cmd_drivers/media/video/s3c2440camera.o := arm-linux-ld -EL -r -o drivers/media/video/s3c2440camera.o drivers/media/video/s3c2440_ov9650.o drivers/media/video/sccb.o drivers/media/video/s3c2440camif.o
| heyoufei/mini2440_kernel | drivers/media/video/.s3c2440camera.o.cmd | bat | gpl-2.0 | 205 |
@echo off
rem **********************
rem .BAT file to compile Lex/Yacc with Virtual Pascal for Win32
rem Output is a 32-bit protected mode Windows program.
rem Assumes fPrint's VP command-line compiler 'vpc' is in %VP2BASE%
rem **********************
rem A quick hack by Antony T Curtis
if "%VP2BASE%"=="" SET VP2BASE=\VP20
SET PFLAGS=-co -m -$R- -$Q- -$S- -$I- -$M65536 -U%VP2BASE%\UNITS.W32 -L%VP2BASE%\LIB.W32
%VP2BASE%\BIN.W32\vpc %PFLAGS% lex
%VP2BASE%\BIN.W32\vpc %PFLAGS% lexlib
%VP2BASE%\BIN.W32\vpc %PFLAGS% yacc
| OS2World/DEV-PASCAL-UTIL-TPLY | makevpw.bat | bat | gpl-2.0 | 533 |
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/clarkeinv.ko := ld -r -m elf_i386 -T /usr/src/linux-headers-2.6.32-122-rtai/scripts/module-common.lds --build-id -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/clarkeinv.ko /home/yutingkao23/linuxcnc-add-hal-ethercat/src/clarkeinv.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/clarkeinv.mod.o
| CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver | src/.clarkeinv.ko.cmd | bat | gpl-2.0 | 353 |
cmd_fs/notify/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/notify/built-in.o fs/notify/fsnotify.o fs/notify/notification.o fs/notify/group.o fs/notify/inode_mark.o fs/notify/dnotify/built-in.o fs/notify/inotify/built-in.o
| b8e5n/KTG-kernel_es209ra | fs/notify/.built-in.o.cmd | bat | gpl-2.0 | 230 |
SET FMTOWNSDSK=
SET FMTOWNSDSK1=
SET FMTOWNSDSK2=
for /f "tokens=* delims= " %%a in ('dir /b /a-d "*Disk 1*"') do (
if /I "%%~xa"==".d88" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".d77" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".bin" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".imd" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".td0" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".1dd" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".cqm" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".fdi" SET FMTOWNSDSK1=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "*Disk1*"') do (
if /I "%%~xa"==".d88" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".d77" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".bin" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".imd" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".td0" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".wav" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".cqm" SET FMTOWNSDSK1=%%~a
if /I "%%~xa"==".fdi" SET FMTOWNSDSK1=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "*Disk 2*"') do (
if /I "%%~xa"==".d88" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".d77" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".bin" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".imd" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".1dd" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".wav" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".cqm" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".fdi" SET FMTOWNSDSK2=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "*Disk2*"') do (
if /I "%%~xa"==".d88" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".d77" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".bin" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".imd" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".td0" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".1dd" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".cqm" SET FMTOWNSDSK2=%%~a
if /I "%%~xa"==".fdi" SET FMTOWNSDSK2=%%~a
)
for /f "tokens=* delims= " %%a in ('dir /b /a-d "%GBG%\%GAM%\%CONS%\%FMTOWNS%\%CSTM%"') do (
if /I "%%~xa"==".d88" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".d77" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".bin" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".tap" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".imd" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".td0" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".cqm" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".fdi" SET FMTOWNSDSK=%%~a
CALL :disking
if /I "%%~xa"==".1dd" SET FMTOWNSDSK=%%~a
CALL :disking
)
goto :injec1s
:disking
if /I "%FMTOWNSDSK%"=="%FMTOWNSDSK2%" exit /b
if /I "%FMTOWNSDSK%"=="" exit /b
:injec1s
"%GBC%\fart.exe" "*.bat" [ROMPTH] "%GBG%\%GAM%\%CONS%\%FMTOWNS%\%CSTM%"
if /i "%FMTOWNSDSK1%" NEQ "" %GBC%\fart.exe" "*.bat" [DSK] "%FMTOWNSDSK1%"
"%GBC%\fart.exe" "*.bat" [DSK] "%FMTOWNSDSK%"
"%GBC%\fart.exe" "*.bat" [DSK1] "%FMTOWNSDSK2%" | HoodlumDTX/rom-jacket | Fmtownsinject.bat | bat | gpl-2.0 | 2,726 |
cmd_lib/devres.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-gcc -Wp,-MD,lib/.devres.o.d -nostdinc -isystem /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include -Iinclude -I/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-goldfish/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(devres)" -D"KBUILD_MODNAME=KBUILD_STR(devres)" -c -o lib/devres.o lib/devres.c
deps_lib/devres.o := \
lib/devres.c \
$(wildcard include/config/has/ioport.h) \
$(wildcard include/config/pci.h) \
include/linux/pci.h \
$(wildcard include/config/pcieaspm.h) \
$(wildcard include/config/pci/msi.h) \
$(wildcard include/config/pci/legacy.h) \
$(wildcard include/config/ht/irq.h) \
$(wildcard include/config/pci/domains.h) \
$(wildcard include/config/pci/mmconfig.h) \
include/linux/pci_regs.h \
include/linux/mod_devicetable.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
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 \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/posix_types.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/ioport.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hwcap.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
include/linux/linkage.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/errno.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/linux/kref.h \
include/linux/wait.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/current.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/klist.h \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
include/linux/stat.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/stat.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/math64.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/div64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
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/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-goldfish/include/mach/memory.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/elf.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/module.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/semaphore.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/io.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/io.h \
arch/arm/mach-goldfish/include/mach/io.h \
include/linux/pci_ids.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pci.h \
$(wildcard include/config/pci/host/ite8152.h) \
include/asm-generic/pci-dma-compat.h \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
include/linux/err.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/dma-mapping.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/scatterlist.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-goldfish/include/mach/vmalloc.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
arch/arm/mach-goldfish/include/mach/hardware.h \
lib/devres.o: $(deps_lib/devres.o)
$(deps_lib/devres.o):
| mjmccall/Kernel | lib/.devres.o.cmd | bat | gpl-2.0 | 18,394 |
cmd_drivers/mtd/chips/cfi_probe.ko := ld -r -m elf_i386 -T /home/madhwang/Development/linuxSource/linux-2.6.34.7/scripts/module-common.lds --build-id -o drivers/mtd/chips/cfi_probe.ko drivers/mtd/chips/cfi_probe.o drivers/mtd/chips/cfi_probe.mod.o
| madhwang/linuxKernel | drivers/mtd/chips/.cfi_probe.ko.cmd | bat | gpl-2.0 | 248 |
java -cp %cd%/target/serial.jar;%cd%/lib/rxtx-2.1.7.jar org.gagauz.playground.serial.MainWindow
pause | gagauz/grapx | run.bat | bat | gpl-2.0 | 101 |
cmd_drivers/net/ethernet/built-in.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/net/ethernet/built-in.o drivers/net/ethernet/arc/built-in.o drivers/net/ethernet/cadence/built-in.o drivers/net/ethernet/cirrus/built-in.o drivers/net/ethernet/freescale/built-in.o drivers/net/ethernet/smsc/built-in.o drivers/net/ethernet/via/built-in.o drivers/net/ethernet/wiznet/built-in.o
| FEDEVEL/tmp-imx6-tiny-rex-linux | drivers/net/ethernet/.built-in.o.cmd | bat | gpl-2.0 | 476 |
@echo off
IF EXIST C:\Python27\lib\site-packages\ copy /y src\OpenOPC.py C:\Python27\lib\site-packages\
IF NOT "%1"=="" REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_GATE_HOST /d %1 /f
IF NOT "%2"=="" REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_INACTIVE_TIMEOUT /d %2 /f
IF NOT "%3"=="" REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_MAX_CLIENTS /d %3 /f
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_CLASS
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_CLASS /d "Matrikon.OPC.Automation;Graybox.OPC.DAWrapper;HSCOPC.Automation;RSI.OPCAutomation;OPC.Automation"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_CLIENT
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_CLIENT /d "OpenOPC"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_MODE
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_MODE /d "dcom"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_HOST
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_HOST /d "localhost"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_SERVER
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_SERVER /d "Hci.TPNServer;HwHsc.OPCServer;opc.deltav.1;AIM.OPC.1;Yokogawa.ExaopcDAEXQ.1;OSI.DA.1;OPC.PHDServerDA.1;Aspen.Infoplus21_DA.1;National Instruments.OPCLabVIEW;RSLinx OPC Server;KEPware.KEPServerEx.V4;Matrikon.OPC.Simulation;Prosys.OPC.Simulation"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_GATE_HOST
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_GATE_HOST /d "0.0.0.0"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_GATE_PORT
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_GATE_PORT /d "7766"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_INACTIVE_TIMEOUT
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_INACTIVE_TIMEOUT /d "60"
REG QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_MAX_CLIENTS
if ERRORLEVEL 1 REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v OPC_MAX_CLIENTS /d "25"
regsvr32 /s lib\gbda_aut.dll
net stop zzzOpenOpcService
bin\OpenOPCService remove
bin\OpenOPCService.exe --startup auto install
net start zzzOpenOpcService
| bapowell/OpenOPC | scripts/INSTALL.bat | bat | gpl-2.0 | 2,878 |
cmd_fs/ramfs/built-in.o := /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o fs/ramfs/built-in.o fs/ramfs/ramfs.o
| freebsdmax/gsmart1315_kernel | fs/ramfs/.built-in.o.cmd | bat | gpl-2.0 | 180 |
cmd_fs/partitions/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o fs/partitions/built-in.o fs/partitions/check.o fs/partitions/msdos.o
| wujiku/superstar-kernel-shooter-2.3.4gb | fs/partitions/.built-in.o.cmd | bat | gpl-2.0 | 177 |
cmd_fs/debugfs/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o fs/debugfs/built-in.o fs/debugfs/debugfs.o
| wujiku/superstar-kernel-shooter-2.3.4gb | fs/debugfs/.built-in.o.cmd | bat | gpl-2.0 | 148 |
:: USERDOMAIN=Ooo
MKLINK /D Dropbox C:\Users\jon.crall\Dropbox
CreateShortcut "C:\Program Files (x86)\Cisco\Cisco AnyConnect Secure Mobility Client\vpnui.exe" %STARTUP%
CreateShortcut %PORT_KEYS%\%USERDOMAIN%\ssh_priv.ppk %STARTUP%
AddToPath %PORT_APPS%\putty
export GIT_SSH=plink.exe
| Erotemic/local | rob/rob/win32/setup_win.bat | bat | gpl-3.0 | 299 |
call _build.bat
%ISCC% /dBUILD_MODE=32 Web-Accessibility-Toolbar.iss
pause
| ThePacielloGroup/WebAccessibilityToolbar | build32.bat | bat | gpl-3.0 | 75 |
C:\Users\mabe\AppData\Local\Programs\Python\Python36-32\Scripts\lizard -l cpp -x"../.git/*" -x"../build/*" -x"../buildClang/*" -x"../tests/*" -x"../script/*" .. >complexity.txt | elcabesa/vajolet | script/calcComplexity.bat | bat | gpl-3.0 | 178 |
@echo off
rem generic compile batch file for most console compilers
rem pause after each compiler if %1 not empty
rem call self on low env space condition
rem (c) 2003-2009 W.Ehrhardt
rem test file
rem =========
set SRC=t_bitar3
rem log file (may be con or nul)
rem ============================
::set LOG=nul
set LOG=%SRC%.LOG
rem parameters for test file
rem ========================
::set PARA=
rem build options
rem ========================
::set OPT=
rem test whether enaough space in environment
rem =========================================
set PCB=A_rather_long_environment_string_for_testing
if (%PCB%)==(A_rather_long_environment_string_for_testing) goto OK
rem call self with 4096 byte env
rem ============================
set PCB=
%COMSPEC% /E:4096 /C %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
goto ende
:OK
echo Test %SRC% for most compilers >%LOG%
ver >>%LOG%
set PCB=bpc -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=bpc -CP -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc1 -B -TGO32V2
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc2 -B
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc22 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc222 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe >>%LOG%
set PCB=call fpc224 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe >>%LOG%
set PCB=call fpc240 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc242 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc244 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc260 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc262 -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call fpc262d -B
del %SRC%.exe >nul
%PCB% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call vpc -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call p5 -b -l
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call p55 -b -l
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=call p6 -b -l
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M2\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M3\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M4\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M5\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M6\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M7\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M9\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
call wdosx %SRC%.exe
echo. >>%LOG%
echo Results for WDOSX >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M10\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M12\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M17\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
set PCB=D:\DMX\M18\DCC32.EXE -b
del %SRC%.exe >nul
%PCB% %OPT% %SRC%.pas
if not (%1%)==() pause
echo. >>%LOG%
echo Results for %PCB% >>%LOG%
%SRC%.exe %PARA% >>%LOG%
echo.
echo **** Log file: %LOG%
:ende
set PCB=
set SRC=
set LOG=
set PARA=
set OPT=
| compvid30/strongcrypt-fe | lib/util/#c_tbita.bat | bat | gpl-3.0 | 5,495 |
@rem default builds static library.
@rem you can pass the following arguments (case insensitive):
@rem - "DLL" to build a DLL instead of a static library
@rem - "/MT" to build a static library compatible with MSVC's /MT option (LIBCMT vs MSVCRT)
@echo off
if Test%BUILD_ALT_DIR%==Test goto usage
rem process commandline parameters
set TARGET=LIBRARY
set STATIC_LIBC=
set version=1.0
if "%1" == "" goto no_more_args
rem /I for case insensitive
if /I Test%1==TestDLL set TARGET=DYNLINK
if /I Test%1==Test/MT set STATIC_LIBC=1
:no_more_args
cd ..\libusb\os
echo TARGETTYPE=%TARGET% > target
copy target+..\..\msvc\libusb_sources sources >NUL 2>&1
del target
@echo on
build -cwgZ
@echo off
if errorlevel 1 goto builderror
cd ..\..
set cpudir=i386
set destType=Win32
if %_BUILDARCH%==x86 goto isI386
set cpudir=amd64
set destType=x64
:isI386
set srcPath=libusb\os\obj%BUILD_ALT_DIR%\%cpudir%
set dstPath=%destType%\Debug
if %DDKBUILDENV%==chk goto isDebug
set dstPath=%destType%\Release
:isDebug
if exist %destType% goto md2
mkdir %destType%
:md2
if exist %dstPath% goto md3
mkdir %dstPath%
:md3
if exist %dstPath%\dll goto md4
mkdir %dstPath%\dll
:md4
if exist %dstPath%\lib goto md5
md %dstPath%\lib
:md5
if exist %dstPath%\examples goto md6
md %dstPath%\examples
:md6
@echo on
@if NOT Test%1==TestDLL goto copylib
copy %srcPath%\libusb-%version%.dll %dstPath%\dll
copy %srcPath%\libusb-%version%.pdb %dstPath%\dll
:copylib
copy %srcPath%\libusb-%version%.lib %dstPath%\lib
@echo off
if exist examples\lsusb_ddkbuild goto md7
md examples\lsusb_ddkbuild
:md7
cd examples\lsusb_ddkbuild
copy ..\..\msvc\lsusb_sources sources >NUL 2>&1
@echo on
build -cwgZ
@echo off
if errorlevel 1 goto buildlsusberror
cd ..\..
set srcPath=examples\lsusb_ddkbuild\obj%BUILD_ALT_DIR%\%cpudir%
@echo on
copy %srcPath%\lsusb.exe %dstPath%\examples
copy %srcPath%\lsusb.pdb %dstPath%\examples
cd msvc
goto done
:builderror
cd ..\..\msvc
echo Build failed
goto done
:buildlsusberror
cd ..\..\msvc
echo lsusb build failed
goto done
:usage
echo ddk_build must be run in a WDK build environment
pause
goto done
:done
| vlovich/libusb | msvc/ddk_build.cmd | bat | lgpl-2.1 | 2,108 |
@rem Copyright 2021 Google LLC
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
set root=%~dp0%
call %root%\build_protos.bat
pushd %root%
go build .\environment\... .\libs\... .\build\... .\tools\...
popd
| google/sge-monorepo | build_all.bat | bat | apache-2.0 | 744 |
@echo off
::----------------------------------------------------------------------
:: Specify the location of Sun JRE/JDK 1.6.x, 1.5.x or 1.4.x here
::----------------------------------------------------------------------
set JAVA_HOME=C:\jre1.6
::----------------------------------------------------------------------
:: Specify the location of DocFlex/XML (Kit) home directory.
::
:: NOTE: This command file has been prepared in assumption that it will
:: be started from its parent directory (i.e. that directory is selected
:: as the Windows current directory).
::
:: If you encounter an error like:
:: 'Exception in thread "main" java.lang.NoClassDefFoundError: com/docflex/xml/Generator'
:: apparently, you are running this file from a different location.
::
:: In that case, please specify the absolute pathname of your
:: DocFlex/XML installation here, e.g.
::
:: set DFH=C:\docflex-xml-kit
::----------------------------------------------------------------------
set DFH=.
::----------------------------------------------------------------------
:: -Xmx option sets the maximum heap size allocated by JVM.
::
:: Check this option when you need to process large quantities of data!
::
:: Note: DocFlex/XML generator may be especially hungry for memory
:: as it stores lots of temporary data in hash-tables in order to boost
:: performance. However, according to our tests, even when processing
:: such a heavy template application as XSDDoc on the Eclipse UML2 schemas,
:: the largest we've seen so far, the 512 MB memory heap was quite enough
::----------------------------------------------------------------------
set OPTIONS=-Xms256m -Xmx512m
::----------------------------------------------------------------------
:: DocFlex/XML (Kit) class path
::----------------------------------------------------------------------
set OPTIONS=%OPTIONS% -cp %DFH%\lib\xml-apis.jar;%DFH%\lib\xercesImpl.jar;%DFH%\lib\docflex-xml-kit.jar
::----------------------------------------------------------------------
:: Running generator with all settings taken from generator.config file
::----------------------------------------------------------------------
%JAVA_HOME%\bin\java %OPTIONS% com.docflex.xml.Generator | qafedev/qafe-platform | src/xsd-documentation/docflex/generator.bat | bat | apache-2.0 | 2,220 |
@echo off
REM Convenience lqt driver script.
set dir=%~dp0
for /f "delims=" %%i in (%dir%target\classpath.txt) do set tmp_cp=%%i
set CP=%dir%;%dir%target\classes;%tmp_cp%
if exist %dir%\target\classes\com\basistech\lucene\tools\LuceneQueryTool.class (
"%JAVA_HOME%bin\java.exe" %JVM_ARGS% -Dfile.encoding=UTF-8 -cp %CP% com.basistech.lucene.tools.LuceneQueryTool %*
) else (
echo Please run 'mvn compile' first.
)
| joelb-git/lqt | lqt.bat | bat | apache-2.0 | 418 |
@rem EXPORT INTERFACE BATCH FILE
if [%1]==[] (
mkdir "../exportedInterfaces"
XComponent.XCTools.exe --Debug --exportInterface -env=Dev -output="../exportedInterfaces" -project="../RestConsumerApi_Model.xcml"
) else (
XComponent.XCTools.exe --Debug --exportInterface -env=Dev -output=%1 -project="../RestConsumerApi_Model.xcml"
) | Invivoo-software/xcomponent | Examples/xc.restapiclient/RestConsumerApi/Scripts/exportInterface.bat | bat | apache-2.0 | 337 |
start "" /B "%~dp0bin\%~n0.exe" %*
| MITK/MITK | CMake/RunInstalledWin32App.bat | bat | bsd-3-clause | 36 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_CPSWS.S04_ResolveToEntities.MSCPSWS_S04_TC04_ResolveMultipleStrings_SomeValid /testcontainer:..\..\MS-CPSWS\TestSuite\bin\Debug\MS-CPSWS_TestSuite.dll /runconfig:..\..\MS-CPSWS\MS-CPSWS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-CPSWS/RunMSCPSWS_S04_TC04_ResolveMultipleStrings_SomeValid.cmd | bat | mit | 306 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=LightGBM
set SPHINXOPTS=-W
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| Allardvm/LightGBM | docs/make.bat | bat | mit | 794 |
%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\InstallUtil /i PhotonDashboard.exe
| ShuaiPointChen/def | Deploy/bin_tools/dashboard/_service.install.bat | bat | mit | 83 |
redis-benchmark.exe -h 115.28.134.193 -p 8888 -n 10 -c 60
@pause | chenleijava/springJredisCache | redis2/redis_benchMark.bat | bat | apache-2.0 | 64 |
cmd_scripts/basic/docproc := gcc -Wp,-MD,scripts/basic/.docproc.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/basic/docproc scripts/basic/docproc.c
deps_scripts/basic/docproc := \
scripts/basic/docproc.c \
/usr/include/stdc-predef.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/xlocale.h \
/usr/include/x86_64-linux-gnu/bits/string.h \
/usr/include/x86_64-linux-gnu/bits/string2.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/ctype.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
scripts/basic/docproc: $(deps_scripts/basic/docproc)
$(deps_scripts/basic/docproc):
| madhwang/linuxKernel | scripts/basic/.docproc.cmd | bat | gpl-2.0 | 3,241 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\TravisPy.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\TravisPy.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| rkh/travispy | docs/make.bat | bat | gpl-3.0 | 6,705 |
curl -X POST -d "{\"role\": \"serialize\", \"cmd\": \"write\", \"sensorId\": \"1\", \"temperature\": 123}" --header "Content-Type:application/json" http://localhost:10000/act
| nearform/micro-services-tutorial-iot | step5/services/serializer/testWrite.bat | bat | mit | 177 |
setPreference -pref UserLevel:NOVICE
setPreference -pref MessageLevel:DETAILED
setPreference -pref ConcurrentMode:FALSE
setPreference -pref UseHighz:FALSE
setPreference -pref ConfigOnFailure:STOP
setPreference -pref StartupCLock:AUTO_CORRECTION
setPreference -pref AutoSignature:FALSE
setPreference -pref KeepSVF:FALSE
setPreference -pref svfUseTime:FALSE
setPreference -pref UserLevel:NOVICE
setPreference -pref MessageLevel:DETAILED
setPreference -pref ConcurrentMode:FALSE
setPreference -pref UseHighz:FALSE
setPreference -pref ConfigOnFailure:STOP
setPreference -pref StartupCLock:AUTO_CORRECTION
setPreference -pref AutoSignature:FALSE
setPreference -pref KeepSVF:FALSE
setPreference -pref svfUseTime:FALSE
setMode -bs
setCable -port auto
Identify
setAttribute -position 3 -attr configFileName -value "gr-xc3s-1500.bit"
Program -p 3 -e -v
quit
| elkhadiy/xph-leons | grlib-gpl-1.4.1-b4156/boards/gr-xc3s-1500/fpga.cmd | bat | gpl-2.0 | 850 |
::!/bin/csh -f
::*****************************************************************************
:: (c) Copyright 2009 Xilinx, Inc. All rights reserved.
::
:: This file contains confidential and proprietary information
:: of Xilinx, Inc. and is protected under U.S. and
:: international copyright and other intellectual property
:: laws.
::
:: DISCLAIMER
:: This disclaimer is not a license and does not grant any
:: rights to the materials distributed herewith. Except as
:: otherwise provided in a valid license issued to you by
:: Xilinx, and to the maximum extent permitted by applicable
:: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
:: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
:: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
:: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
:: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
:: (2) Xilinx shall not be liable (whether in contract or tort,
:: including negligence, or under any other theory of
:: liability) for any loss or damage of any kind or nature
:: related to, arising under or in connection with these
:: materials, including for any direct, or any indirect,
:: special, incidental, or consequential loss or damage
:: (including loss of data, profits, goodwill, or any type of
:: loss or damage suffered as a result of any action brought
:: by a third party) even if such damage or loss was
:: reasonably foreseeable or Xilinx had been advised of the
:: possibility of the same.
::
:: CRITICAL APPLICATIONS
:: Xilinx products are not designed or intended to be fail-
:: safe, or for use in any application requiring fail-safe
:: performance, such as life-support or safety devices or
:: systems, Class III medical devices, nuclear facilities,
:: applications related to the deployment of airbags, or any
:: other applications that could lead to death, personal
:: injury, or severe property or environmental damage
:: (individually and collectively, "Critical
:: Applications"). Customer assumes the sole risk and
:: liability of any use of Xilinx products in Critical
:: Applications, subject only to applicable laws and
:: regulations governing limitations on product liability.
::
:: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
:: PART OF THIS FILE AT ALL TIMES.
::
:: ****************************************************************************
:: ____ ____
:: / /\/ /
:: /___/ \ / Vendor : Xilinx
:: \ \ \/ Version : 3.92
:: \ \ Application : MIG
:: / / Filename : ise_flow.bat
:: /___/ /\ Date Last Modified : $Date: 2011/06/02 07:16:55 $
:: \ \ / \ Date Created : Fri Feb 06 2009
:: \___\/\___\
::
:: Device : Spartan-6
:: Design Name : DDR/DDR2/DDR3/LPDDR
:: Purpose : Batch file to run PAR through ISE batch mode
:: Reference :
:: Revision History :
:: ****************************************************************************
call rem_files.bat
echo Synthesis Tool: XST
mkdir "../synth/__projnav" > ise_flow_results.txt
mkdir "../synth/xst" >> ise_flow_results.txt
mkdir "../synth/xst/work" >> ise_flow_results.txt
xst -ifn ise_run.txt -ofn mem_interface_top.syr -intstyle ise >> ise_flow_results.txt
ngdbuild -intstyle ise -dd ../synth/_ngo -uc example_top.ucf -p xc6slx45csg324-3 example_top.ngc example_top.ngd >> ise_flow_results.txt
map -intstyle ise -detail -w -pr off -c 100 -o example_top_map.ncd example_top.ngd example_top.pcf >> ise_flow_results.txt
par -w -intstyle ise -ol std example_top_map.ncd example_top.ncd example_top.pcf >> ise_flow_results.txt
trce -e 100 example_top.ncd example_top.pcf >> ise_flow_results.txt
bitgen -intstyle ise -f mem_interface_top.ut example_top.ncd >> ise_flow_results.txt
echo done!
| mithro/HDMI2USB | ipcore_dir/ddr2ram/example_design/par/ise_flow.bat | bat | bsd-2-clause | 3,845 |
@echo off
powershell -noprofile -executionpolicy bypass -Command "& { Import-Module AWSDevTools; Initialize-AWSElasticBeanstalkRepository }" | DennisDenuto/puppet-commonscripts | files/aws_cli/AWS-ElasticBeanstalk-CLI-2.6.3/AWSDevTools/Windows/AWSDevTools-RepositorySetup.bat | bat | mit | 140 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=-Xmx1024m -Dfile.encoding=UTF-8
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| alex1632/tokens-app | tokens/android/gradlew.bat | bat | gpl-3.0 | 2,207 |
c:\projects\sharphdf\src\sharpHDF\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe ^
-register:user ^
-output:c:\projects\sharphdf\sharphdf-coverage.xml ^
"-filter:+[sharpHDF]* -[sharpHDF]sharpHDF.Properties.*" ^
-excludebyattribute:"System.CodeDom.Compiler.GeneratedCodeAttribute" ^
"-target:c:\projects\sharphdf\test.bat" | sharpHDF/sharpHDF | cover.bat | bat | mit | 335 |
REM clear existing code
rmdir /S /Q TestSite\App_Data\TEMP\ClientDependency
rmdir /S /Q TestSite\App_Data\TEMP\DistCache
rmdir /S /Q TestSite\App_Plugins\whodunit
REM copy in new code
mkdir TestSite\App_Plugins\whodunit
copy /Y Whodunit\content\App_Plugins\whodunit\* TestSite\App_Plugins\whodunit
copy /Y Whodunit\bin\Debug\Whodunit.* TestSite\bin
REM touch web.config to force app restart
copy /B TestSite\web.config+,,TestSite\web.config
pause | rhythmagency/whodunit | src/copy-to-site.bat | bat | mit | 446 |
echo "Don't forget to run 'npm install' before building"
echo "It is important to install gulp globally before building"
gulp | mushtat/savory.js | build.bat | bat | mit | 125 |
nuget pack Woopsa.csproj -Build -Prop Configuration=Release -Symbols -OutputDirectory .\bin\Release | fabien-chevalley/Woopsa | Sources/DotNet/Woopsa/nuget-windows.bat | bat | mit | 99 |
@echo off
echo.
echo.
echo This program will detect if you are a system administrator, and if so, will open Notepad at your system hosts file, where you can manually set DNS records that only your PC will understand.
echo.
echo.
pause
::Check Administrator permissions
net session >nul 2>&1
if %errorLevel% == 0 (
::We're an administrator, so now we'll skip to the edit procedure
:execute_host_edit
) else (
echo You must be an Administator to run this file.
pause
exit
)
::Open Notepad at host file location
:execute_host_edit
if exist %systemroot%\System32\Drivers\etc\hosts (
start notepad %systemroot%\System32\Drivers\etc\hosts
) else (
echo Could not find hosts file.
pause
exit
) | zenOSmosis/EditWinHosts | EditWinHosts.bat | bat | mit | 741 |
venv\Scripts\activate | Cephlin/tdd-test-project | activate.bat | bat | mit | 21 |
@echo off
REM Windows script for running e2e tests
REM You have to run server and capture some browser first
REM
REM Requirements:
REM - NodeJS (http://nodejs.org/)
REM - Karma (npm install -g karma)
set BASE_DIR=%~dp0
karma start "%BASE_DIR%\..\test\config\karma-e2e.conf.js" %* | feanz/BlogNodeAngular | scripts/e2e-test.bat | bat | mit | 281 |
call "%VS100COMNTOOLS%vsvars32.bat"
msbuild CSteamworks.sln /t:build /p:Configuration=Release;Platform=Win32
msbuild CSteamworks.sln /t:build /p:Configuration=Release;Platform=x64 | rlabrecque/CSteamworks | build/win/build.bat | bat | mit | 180 |
del /S *.gscache
del /S *.pscache
del /S *.vscache | yorung/fastbirdEngine | es/clearcache.bat | bat | mit | 51 |
python ..\..\..\Code\RawDataProcessing\raw_data_processing.py playexp experiment2.config | glmcdona/FoosAI | TrainingData/Processed/AmateurDefenderLonger/view2.cmd | bat | mit | 88 |
cd /d %~dp0
"..\output\ServiceLifeControllerService\ServiceLifeControllerService.exe"
pause | Behzadkhosravifar/ServiceLifeController | Solution Items/Auto Run Service.bat | bat | mit | 93 |
:a
jsonrpc.exe 80 vizpuddle.get_LR1_pipeline
jsonrpc.exe 80 vizpuddle.get_LR2_pipeline
jsonrpc.exe 80 vizpuddle.get_LR3_pipeline
jsonrpc.exe 80 vizpuddle.get_LL1_pipeline
jsonrpc.exe 80 vizpuddle.get_LL2_pipeline
jsonrpc.exe 80 vizpuddle.get_LL3_pipeline
jsonrpc.exe 80 vizpuddle.get_UR1_pipeline
jsonrpc.exe 80 vizpuddle.get_UR2_pipeline
jsonrpc.exe 80 vizpuddle.get_UR3_pipeline
jsonrpc.exe 80 vizpuddle.get_LR1_pipeline
jsonrpc.exe 80 vizpuddle.get_LR2_pipeline
jsonrpc.exe 80 vizpuddle.get_LR3_pipeline
goto a:
| nosuchtim/VizBench | bin/stress.bat | bat | mit | 515 |
@echo off
bin\run.cmd -r
| logaan/responsive-db | vendor/datomic-free-0.9.4572/bin/repl.cmd | bat | epl-1.0 | 25 |
@echo off
set /p file="File name: "
call lein run %file%
java -jar ../jasmin/jasmin.jar output2
del output1
del output2
set /p class="Class name: "
java %class%
pause | CattleOfRa/RaLang | compile.bat | bat | epl-1.0 | 166 |
cmd_drivers/misc/built-in.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/misc/built-in.o drivers/misc/ad525x_dpot.o drivers/misc/ad525x_dpot-i2c.o drivers/misc/apds9802als.o drivers/misc/uid_stat.o drivers/misc/eeprom/built-in.o drivers/misc/cb710/built-in.o drivers/misc/ti-st/built-in.o drivers/misc/lis3lv02d/built-in.o drivers/misc/carma/built-in.o drivers/misc/nct1008.o drivers/misc/sec_jack.o drivers/misc/tegra-cryptodev.o drivers/misc/fsa9480.o drivers/misc/sec_misc.o drivers/misc/modem_if/built-in.o drivers/misc/vibetonz/built-in.o
| TeamGlide/LiteKernel | drivers/misc/.built-in.o.cmd | bat | gpl-2.0 | 572 |
rem gcc -g -w -c -nostdinc -D__WIN32__ -DHAVE_CONFIG_H -I ../../pdos/pdpclib -I . -I ../inc %1 %2 %3 %4 %5 %6 %7 %8 %9
rem gcc -w -c -ansi -DHAVE_CONFIG_H -I . %1 %2 %3 %4 %5 %6 %7 %8 %9
rem bcc32 -w- -A -c -DHAVE_CONFIG_H=1 -I. %1 %2 %3 %4 %5 %6 %7 %8 %9
rem wcl386 -3s -zq -e=1 -za -w- -c -Dopen=xxopen -DHAVE_CONFIG_H -I. %1 %2 %3 %4 %5 %6 %7 %8 %9
gccmvs -Os -S -DHAVE_CONFIG_H -I ../../pdos/pdpclib -I . -I ../inc %1 %2 %3 %4 %5 %6 %7 %8 %9
| vlachoudis/brexx | mvs/stdcomp.bat | bat | gpl-2.0 | 451 |
cmd_drivers/media/tuners/tuner-xc2028.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/media/tuners/tuner-xc2028.ko drivers/media/tuners/tuner-xc2028.o drivers/media/tuners/tuner-xc2028.mod.o
| avareldalton85/rpi2-linux-rt | drivers/media/tuners/.tuner-xc2028.ko.cmd | bat | gpl-2.0 | 303 |
cmd_sound/drivers/mpu401/built-in.o := rm -f sound/drivers/mpu401/built-in.o; /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ar rcs sound/drivers/mpu401/built-in.o
| dizgustipated/BOCA-2.6.35.14 | sound/drivers/mpu401/.built-in.o.cmd | bat | gpl-2.0 | 163 |
cmd_drivers/usb/gadget/usb_f_ecm_subset.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/usb/gadget/usb_f_ecm_subset.o drivers/usb/gadget/f_subset.o
| heyoufei2/yocto3.14.38_kernel | drivers/usb/gadget/.usb_f_ecm_subset.o.cmd | bat | gpl-2.0 | 153 |
cmd_fs/nfsd/nfsd.ko := arm-none-linux-gnueabi-ld -EL -r -T /root/kernel-dev/linux-2.6.37/scripts/module-common.lds --build-id -o fs/nfsd/nfsd.ko fs/nfsd/nfsd.o fs/nfsd/nfsd.mod.o
| srinugnt2000/linux-2.6.37 | fs/nfsd/.nfsd.ko.cmd | bat | gpl-2.0 | 181 |
dir /b /s c:\folder >foldertree.txt | SyntonyAustria/Syntony.Framework | CommonProperties/SharedBinaries/Tools/SaveFolderStructureToTextFile.bat | bat | gpl-2.0 | 35 |
cmd_drivers/cpufreq/built-in.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/cpufreq/built-in.o drivers/cpufreq/cpufreq.o drivers/cpufreq/cpufreq_stats.o drivers/cpufreq/cpufreq_performance.o drivers/cpufreq/cpufreq_powersave.o drivers/cpufreq/cpufreq_userspace.o drivers/cpufreq/cpufreq_ondemand.o drivers/cpufreq/cpufreq_conservative.o drivers/cpufreq/cpufreq_interactive.o drivers/cpufreq/freq_table.o
| JoinTheRealms/TF700-dualboot-stockbased | drivers/cpufreq/.built-in.o.cmd | bat | gpl-2.0 | 481 |
cmd_sound/soc/snd-soc-core.o := /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ld -EL -r -o sound/soc/snd-soc-core.o sound/soc/soc-core.o sound/soc/soc-dapm.o sound/soc/soc-jack.o sound/soc/soc-cache.o sound/soc/soc-utils.o sound/soc/soc-pcm.o sound/soc/soc-compress.o sound/soc/soc-io.o
| livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel | sound/soc/.snd-soc-core.o.cmd | bat | gpl-2.0 | 374 |
cmd_drivers/pci/access.o := gcc -Wp,-MD,drivers/pci/.access.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.6/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -fno-optimize-sibling-calls -mtune=generic -m64 -mno-red-zone -mcmodel=kernel -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -maccumulate-outgoing-args -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(access)" -D"KBUILD_MODNAME=KBUILD_STR(access)" -c -o drivers/pci/access.o drivers/pci/access.c
deps_drivers/pci/access.o := \
drivers/pci/access.c \
include/linux/pci.h \
$(wildcard include/config/pci/msi.h) \
$(wildcard include/config/pci.h) \
$(wildcard include/config/ht/irq.h) \
$(wildcard include/config/pci/domains.h) \
include/linux/pci_regs.h \
include/linux/mod_devicetable.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/types.h \
include/linux/ioport.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/x86/vsmp.h) \
include/asm/segment.h \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/asm/page.h \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/flatmem.h) \
include/linux/const.h \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/sigcontext.h \
include/asm/cpufeature.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm-i386/msr-index.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/asm/current.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/linux/cache.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/bitops.h \
include/asm/bitops.h \
include/asm/alternative.h \
$(wildcard include/config/paravirt.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/system.h \
$(wildcard include/config/unordered/io.h) \
include/asm/cmpxchg.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
include/asm/processor-flags.h \
include/asm-i386/processor-flags.h \
include/asm/mmsegment.h \
include/asm/percpu.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/asm/thread_info.h \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/stacktrace.h \
$(wildcard include/config/stacktrace.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_smp.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/user.h \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
$(wildcard include/config/acpi/numa.h) \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm/8253pit.h \
include/asm/vsyscall.h \
$(wildcard include/config/generic/time.h) \
include/asm/hpet.h \
$(wildcard include/config/hpet/emulate/rtc.h) \
include/asm/tsc.h \
include/asm-i386/tsc.h \
$(wildcard include/config/x86/tsc.h) \
$(wildcard include/config/x86/generic.h) \
include/asm/module.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/semaphore.h \
include/asm/rwlock.h \
include/asm/device.h \
$(wildcard include/config/acpi.h) \
include/linux/pci_ids.h \
include/linux/dmapool.h \
include/asm/io.h \
include/linux/vmalloc.h \
include/asm-generic/iomap.h \
include/asm/scatterlist.h \
include/asm/pci.h \
$(wildcard include/config/iommu.h) \
$(wildcard include/config/calgary/iommu.h) \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/capability.h \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/asm-generic/pci-dma-compat.h \
include/linux/dma-mapping.h \
include/asm/dma-mapping.h \
include/asm/swiotlb.h \
$(wildcard include/config/swiotlb.h) \
include/asm-generic/pci.h \
include/linux/sched.h \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/blk/dev/io/trace.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/compat.h) \
$(wildcard include/config/fault/injection.h) \
include/asm/mmu.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
include/asm-generic/signal.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/securebits.h \
include/linux/fs_struct.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/futex.h \
$(wildcard include/config/futex.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
drivers/pci/pci.h \
drivers/pci/access.o: $(deps_drivers/pci/access.o)
$(deps_drivers/pci/access.o):
| dnh34/proj1 | drivers/pci/.access.o.cmd | bat | gpl-2.0 | 13,671 |
cmd_drivers/media/video/videodev.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/media/video/videodev.o drivers/media/video/v4l2-dev.o drivers/media/video/v4l2-ioctl.o drivers/media/video/v4l2-device.o drivers/media/video/v4l2-fh.o drivers/media/video/v4l2-event.o drivers/media/video/videobuf-core.o drivers/media/video/videobuf-pmem.o drivers/media/video/videobuf-dma-contig.o
| dagnarf/sgh-i717-dagkernel | drivers/media/video/.videodev.o.cmd | bat | gpl-2.0 | 421 |
cmd_coreutils/uname.o := gcc -Wp,-MD,coreutils/.uname.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(uname)" -D"KBUILD_MODNAME=KBUILD_STR(uname)" -c -o coreutils/uname.o coreutils/uname.c
deps_coreutils/uname.o := \
coreutils/uname.c \
$(wildcard include/config/long/opts.h) \
include/libbb.h \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/busybox/exec/path.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/bits/predefs.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \
/usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/x86_64-linux-gnu/sys/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/x86_64-linux-gnu/sys/resource.h \
/usr/include/x86_64-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
/usr/include/x86_64-linux-gnu/sys/utsname.h \
/usr/include/x86_64-linux-gnu/bits/utsname.h \
coreutils/uname.o: $(deps_coreutils/uname.o)
$(deps_coreutils/uname.o):
| muthumani2/Muthu-busybox | coreutils/.uname.o.cmd | bat | gpl-2.0 | 9,464 |
cmd_drivers/gpu/drm/vivante/built-in.o := rm -f drivers/gpu/drm/vivante/built-in.o; ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ar rcsD drivers/gpu/drm/vivante/built-in.o
| chrnueve/udooImaxdi | kernel_oficial_source/drivers/gpu/drm/vivante/.built-in.o.cmd | bat | gpl-2.0 | 179 |
>>> difference
74.0
| simontakite/sysadmin | pythonscripts/practicalprogramming/basic/variable2.cmd | bat | gpl-2.0 | 20 |
cmd_net/sched/built-in.o := /root/aokp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/sched/built-in.o net/sched/sch_generic.o net/sched/sch_mq.o net/sched/sch_api.o net/sched/sch_blackhole.o net/sched/cls_api.o net/sched/act_api.o net/sched/act_police.o net/sched/act_gact.o net/sched/act_mirred.o net/sched/sch_fifo.o net/sched/sch_htb.o net/sched/sch_ingress.o net/sched/cls_u32.o net/sched/ematch.o net/sched/em_u32.o
| yncconsulting/HTC_Express_Kernel | net/sched/.built-in.o.cmd | bat | gpl-2.0 | 454 |
cmd_kernel/time/built-in.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o kernel/time/built-in.o kernel/time/timekeeping.o kernel/time/ntp.o kernel/time/clocksource.o kernel/time/jiffies.o kernel/time/timer_list.o kernel/time/timecompare.o kernel/time/timeconv.o kernel/time/posix-clock.o kernel/time/clockevents.o kernel/time/tick-common.o kernel/time/tick-broadcast.o kernel/time/tick-oneshot.o kernel/time/tick-sched.o kernel/time/timer_stats.o
| PrestigeMod/SHW-M440S | kernel/time/.built-in.o.cmd | bat | gpl-2.0 | 506 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\logrotate-stream\bin\logrotate-stream" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\logrotate-stream\bin\logrotate-stream" %*
) | a97001/comp2222prototype | node_modules/.bin/logrotate-stream.cmd | bat | gpl-3.0 | 222 |
@echo off
cls
set classpath=
javac.exe -d ./bin ./src/ru/mail/teodorgig/mididermi/base/*.java -classpath ./bin
javac.exe -d ./bin ./src/ru/mail/teodorgig/mididermi/common/*.java -classpath ./bin
javac.exe -d ./bin ./src/ru/mail/teodorgig/mididermi/database/*.java -classpath ./bin
javac.exe -d ./bin ./src/ru/mail/teodorgig/mididermi/providers/*.java -classpath ./bin
javac.exe -d ./bin ./src/ru/mail/teodorgig/mididermi/server/*.java -classpath ./bin
javac.exe -d ./bin ./src/ru/mail/teodorgig/mididermi/client/*.java -classpath ./bin
copy .\src\client.html .\bin\client.html
copy .\src\database.properties .\bin\database.properties
cd ./bin
start rmiregistry.exe
echo RMI registry started ...
start java.exe -cp .;../lib/postgresql-8.3-603.jdbc4.jar -Djava.rmi.server.codebase=file:/C:/TEMP/ -Djava.rmi.server.hostname=127.0.0.1 -Djava.security.policy=../wideopen.policy eu.veldsoft.basakaza.umculo.server.MIDIDERMIServer -MINPOOL 2 -MAXPOOL 30 -MINEPOCHS 1 -MAXEPOCHS 5 -LR 1 -LT 1 -LD -LF -SD -SF
echo RMI server application registered ...
pause
start appletviewer.exe -J-Djava.rmi.server.codebase=http://127.0.0.1/ -J-Djava.security.policy=../wideopen.policy client.html
echo RMI clinet application(s) started ...
pause
cd ./ru/mail/teodorgig/mididermi/client
del *.class
cd..
rd client
cd server
del *.class
cd..
rd server
cd common
del *.class
cd..
rd common
cd providers
del *.class
cd..
rd providers
cd database
del *.class
cd..
rd database
cd base
del *.class
cd..
rd base
cd ..
rd mididermi
cd ..
rd teodorgig
cd ..
rd mail
cd ..
rd ru
del client.html
del database.properties
cd ..
echo Binary directory clean ...
@echo on
| TodorBalabanov/BasakazaUmculo | build.bat | bat | gpl-3.0 | 1,735 |
@echo off
REM not quotes here
set PYTHON_PATH=D:\Programs\IntelPython3
set PDF_LATEX_PATH=D:\Programs\texlive\bin\win32
REM Change console encoding scheme to UTF8
chcp 65001
set PATH_BACKUP=%PATH%
set PATH=%PDF_LATEX_PATH%;%PATH%;
REM echo %PATH%
"%PYTHON_PATH%\python" %~dp0/pdftools.py %*
set PATH=%PATH_BACKUP% | raffamaiden/pdftools | pdftools.bat | bat | gpl-3.0 | 323 |
rem if "%VS160COMNTOOLS%"=="" goto end
rem call "%VS160COMNTOOLS%vsdevcmd.bat"
cd /d "%~dp0"
echo y | rd /s tmp
msbuild /t:Rebuild /p:WindowsTargetPlatformVersion=10.0.18362.0 /p:PlatformToolset=v141 /m /p:"Configuration=Release (MOD)" /p:Platform=Win32
if errorlevel 1 goto end
msbuild /t:Rebuild /p:WindowsTargetPlatformVersion=10.0.18362.0 /p:PlatformToolset=v141 /m /p:"Configuration=Release (MOD)" /p:Platform=x64
if errorlevel 1 goto end
mkdir tmp
mkdir tmp\x86
mkdir tmp\x64
copy "bin\Win32\VSFilter\Release (MOD)\VSFilterMod.dll" "tmp\x86\VSFilterMod.dll"
copy "bin\x64\VSFilter\Release (MOD)\VSFilterMod.dll" "tmp\x64\VSFilterMod.dll"
del VSFilterMod_bin.7z
cd tmp
..\7zr.exe a -r -mx=9 -myx=9 ..\VSFilterMod_bin.7z .
cd ..
:end
| sorayuki/VSFilterMod | publish.bat | bat | gpl-3.0 | 746 |
: # If you want to use a local build of rav1e, you must clone the rav1e repo in this directory first, then enable CMake's AVIF_CODEC_RAV1E and AVIF_LOCAL_RAV1E options.
: # The git SHA below is known to work, and will occasionally be updated. Feel free to use a more recent commit.
: # The odd choice of comment style in this file is to try to share this script between *nix and win32.
: # cargo must be in your PATH. (use rustup or brew to install)
: # If you're running this on Windows targeting Rust's windows-msvc, be sure you've already run this (from your VC2019 install dir):
: # "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvars64.bat"
: #
: # Also, the error that "The target windows-msvc is not supported yet" can safely be ignored provided that rav1e/target/release
: # contains rav1e.h and rav1e.lib.
git clone -b 0.4 --depth 1 https://github.com/xiph/rav1e.git
cd rav1e
cargo install cargo-c
cargo cbuild --release --library-type=staticlib
cd ..
| AlienCowEatCake/ImageViewer | src/ThirdParty/libavif/libavif-0.9.0/ext/rav1e.cmd | bat | gpl-3.0 | 1,011 |
@Echo off & SetLocal EnableDelayedExpansion & Mode con:cols=100 lines=10 & Color 0B
Title Build Softmod zip
Set "root=%~dp0"
if not exist "..\Other Stuff\dev.bin" Call :Download & Exit
::Build Release build.
Set "ZipName=Xbox Softmodding Tool.zip"
Del /Q "%ZipName%" 2>NUL
Del "Files.rar" 2>NUL
Set "Winrar=%CD%\Other\Tools\Winrar\winrar.exe"
::Build Files.rar
If not exist "Files.rar" Call "Build Files.rar.bat" 2>NUL
::Build Softmod Save.zip
md "temp"
CD "temp"
::Copy
XCopy /s /y /e "..\Save Folder\*" "UDATA\21585554\000000000000\"
XCopy /s /y "..\Other\Game Saves\Softmod\*" "UDATA\21585554\"
XCopy /s /y "..\Other\Game Saves\Zipped\*.zip" "Softmod Package\"
XCopy /s /y "..\Documents\Installation Guide" "Installation Guide\"
::Move
Move "..\Files.rar" "UDATA\21585554\000000000000\softmod files\"
::Delete
RD /Q /S "UDATA\21585554\000000000000\nkpatcher settings"
::Rar softmod save
"%Winrar%" a -x*.db -afzip "..\temp\Softmod Package\Softmod Save.zip" "UDATA\21585554"
::Build Xbox Softmodding Tool.zip
::Copy
Copy "..\Documents\ReadMe.url" "ReadMe.url"
::Rar Xbox Softmodding Tool.zip
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "Installation Guide
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "Softmod Package"
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "..\Documents\Troubleshooting.txt"
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "..\Documents\How to run the exploit save.txt"
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "ReadMe.url"
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "..\Changes.txt"
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "..\Utilites\PC\Open FTP Window.bat"
"%Winrar%" a -x*.db -afzip "..\%ZipName%" "..\Utilites\PC\OpenDash Dualboot.Settings"
CD "..\"
RD /Q /S "temp" 2>NUL
CD "Installer Variants\UDDAE\"
"%Winrar%" a -x*.db -afzip "..\..\Extras Disc\Softmod\Dashboards\msdash\other\UDDAE-C.zip" "resoftmod dash"
CD %root%
:Download
if not exist "..\Other Stuff\dev.bin" (
Echo:
Echo This is intended for people that know what they are doing.
Echo If you do not please hit enter to be taken to the Pre-Build versions of the files.
Set /p "tmp="
start "" https://drive.google.com/file/d/1_7Ra-2cKSYBjT1pVWuCRTHvDGYuxKhKk/view?usp=sharing
) | Rocky5/Xbox-Softmodding-Tool | Build Softmod zip.bat | bat | gpl-3.0 | 2,218 |
@REM This Source Code Form is subject to the terms of the Mozilla Public
@REM License, v. 2.0. If a copy of the MPL was not distributed with this
@REM file, You can obtain one at http://mozilla.org/MPL/2.0/.
@REM
@REM Copyright 2008-2015 MonetDB B.V.
@python "%~dpn0" %*
| zyzyis/monetdb | testing/Mtest.py.bat | bat | mpl-2.0 | 273 |
@echo off
set CFDISTRO_HOME=%userprofile%\cfdistro
set FILE_URL="http://cfmlprojects.org/artifacts/cfdistro/latest/cfdistro.zip"
set FILE_DEST=%CFDISTRO_HOME%\cfdistro.zip
set buildfile=build/build.xml
set ANT_HOME=%CFDISTRO_HOME%\ant
set ANT_CMD=%CFDISTRO_HOME%\ant\bin\ant.bat
if not exist "%CFDISTRO_HOME%" (
mkdir "%CFDISTRO_HOME%"
)
REM if build file does not exist
if not exist "%CFDISTRO_HOME%\build.xml" (
REM Try to download cfdistro file
if not exist "%FILE_DEST%" (
echo Downloading with powershell: %FILE_URL% to %FILE_DEST%
powershell.exe -command "$webclient = New-Object System.Net.WebClient; $url = \"%FILE_URL%\"; $file = \"%FILE_DEST%\"; $webclient.DownloadFile($url,$file);"
REM if error encountered, try another method to download
REM using file existence check as errorlevel does not get reset properly
if not exist "%FILE_DEST%" (
echo Powershell download failed. Trying with ActiveXObject
cscript /nologo build/resource/wget.js %FILE_URL% %FILE_DEST%
if not exist "%FILE_DEST%" (
echo 2nd Download attempt failed.
echo Try to manually download from %FILE_URL%
echo and expand in %FILE_DEST%
EXIT /B
) else (
echo Download successful
)
)
)
)
REM if build file does not exist
if not exist "%CFDISTRO_HOME%\build.xml" (
if exist "%FILE_DEST%" (
echo Expanding with powershell to: %CFDISTRO_HOME%
powershell -command "$shell_app=new-object -com shell.application; $zip_file = $shell_app.namespace(\"%FILE_DEST%\"); $destination = $shell_app.namespace(\"%CFDISTRO_HOME%\"); $destination.Copyhere($zip_file.items())"
REM remove zip file
del %FILE_DEST%
)
)
REM must have build file for remainder of file, so check it exists
if not exist "%CFDISTRO_HOME%\build.xml" (
echo Build file does not exist at %CFDISTRO_HOME%\build.xml
echo Exiting.
EXIT /B
)
if "%1" == "" goto MENU
set args=%1
SHIFT
:Loop
IF "%1" == "" GOTO Continue
SET args=%args% -D%1%
SHIFT
IF "%1" == "" GOTO Continue
SET args=%args%=%1%
SHIFT
GOTO Loop
:Continue
if not exist %buildfile% (
set buildfile="%CFDISTRO_HOME%\build.xml"
)
call "%ANT_CMD%" -nouserlib -f %buildfile% %args%
goto end
:MENU
cls
echo.
echo box-cli menu
REM echo usage: box-cli.bat [start|stop|{target}]
echo.
echo 0. Build
echo 1. Start server and open browser
echo 2. Stop server
echo 3. List available targets
echo 4. Update project
echo 5. Run Target
echo 6. Quit
echo.
set choice=
set /p choice= Enter option 0, 1, 2, 3, 4, 5 or 6 :
echo.
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='0' goto build
if '%choice%'=='1' goto startServer
if '%choice%'=='2' goto stopServer
if '%choice%'=='3' goto listTargets
if '%choice%'=='4' goto updateProject
if '%choice%'=='5' goto runTarget
if '%choice%'=='6' goto end
::
echo.
echo.
echo "%choice%" is not a valid option - try again
echo.
pause
goto MENU
::
:startServer
cls
call "%ANT_CMD%" -nouserlib -f %buildfile% build.start.launch
echo to stop the server, run this again or run: box-cli.bat stop
goto end
::
:stopServer
call "%ANT_CMD%" -nouserlib -f %buildfile% server.stop
goto end
::
:listTargets
call "%ANT_CMD%" -nouserlib -f %buildfile% help
echo press any key ...
pause > nul
goto MENU
::
:build
call "%ANT_CMD%" -nouserlib -f %buildfile% build
echo press any key ...
pause > nul
goto MENU
::
:updateProject
call "%ANT_CMD%" -nouserlib -f %buildfile% project.update
echo press any key ...
pause > nul
goto MENU
::
:runTarget
set target=
set /p target= Enter target name:
if not "%target%"=="" call %0 %target%
echo press any key ...
pause > nul
goto MENU
::
:end
set choice=
echo press any key ...
pause
REM EXIT
| Ortus-Solutions/commandbox | box-cli.bat | bat | lgpl-3.0 | 3,761 |
cd goulib
rem for %%i in (*.py) do pythoscope -q -t nose %%i
cd ..
nosetests -c nose.cfg tests
| goulu/Goulib | _tests.bat | bat | lgpl-3.0 | 99 |
cls
REM Limpar CLASSPATH :
set CLASSPATH=
set path=%path%;C:\Program Files\Java\jdk1.8.0_66\bin
REM http://stackoverflow.com/questions/23730887/why-is-rt-jar-not-part-of-the-class-path-system-property :
REM "rt.jar doesn't need to be in the classpath, since it is already in the bootclasspath of the JVM. It is safe to remove it from your classpath."
REM set CLASSPATH=%CLASSPATH%;C:\Program Files\Java\jre1.8.0_92\lib\rt.jar
set CLASSPATH=%CLASSPATH%;Instalador/Windows/Arquivos de Programas PC/Integração Fornecedor - Portal Cronos/lib/jersey-bundle-1.12.jar
set CLASSPATH=%CLASSPATH%;Instalador/Windows/Arquivos de Programas PC/Integração Fornecedor - Portal Cronos/lib/jersey-core-1.12.jar
set CLASSPATH=%CLASSPATH%;Instalador/Windows/Arquivos de Programas PC/Integração Fornecedor - Portal Cronos/lib/jersey-multipart-1.12.jar
set CLASSPATH=%CLASSPATH%;Instalador/Windows/Arquivos de Programas PC/Integração Fornecedor - Portal Cronos/lib/jdbc-oracle-10.2.0.5.0.jar
set CLASSPATH=%CLASSPATH%;Instalador/Windows/Arquivos de Programas PC/Integração Fornecedor - Portal Cronos/lib/jaybird-full-2.2.10.jar
set CLASSPATH=%CLASSPATH%;./target/classes
set CLASSPATH=%CLASSPATH%;.
@echo %classpath%
cd\
cd PCronos
cd "Integração Fornecedor - Portal Cronos"
REM javac src/pcronos/integracao/fornecedor/TestadorSnippets.java
REM javac src/pcronos/integracao/fornecedor/IntegracaoFornecedorCompleta.java
javac -d target/classes src/pcronos/integracao/fornecedor/*.java
REM http://docs.oracle.com/javase/7/docs/technotes/tools/windows/java.html :
REM "-classpath or -cp overrides any setting of the CLASSPATH environment variable"
REM Então o seguinte dá erro "Class not found" (jersey) :
REM java -cp ./target/classes pcronos.integracao.fornecedor.IntegracaoFornecedorCompleta
REM java pcronos.integracao.fornecedor.TestesComponentes REM (java TestesComponentes.class dá erro !)
java pcronos.integracao.fornecedor.IntegracaoFornecedorCompleta
| EricJoosse/Integrador-Sistemas-com-PortalCronos-para-Fornecedores | Compilar_Contingência_Problemas_Eclipse.bat | bat | unlicense | 1,993 |
@echo off
rem Change directory and drive to script location:
cd /d %~dp0
set "SCRIPT_HOME=%CD%"
wildfly-8.0.0.CR1\bin\standalone.bat ^
-P phones.properties ^
-Dphone.config.dir=%SCRIPT_HOME%\config ^
-Djboss.bind.address=0.0.0.0
| andrewkroh/cisco-spa500-utilities | server/war/src/main/scripts/start.bat | bat | apache-2.0 | 244 |
@echo off
set hostname=%1
set port=%2
cd %~dp0
nc -z %hostname% %port%
if %errorlevel% equ 0 (
echo target=%hostname% port=%port% status=open
) else (
echo target=%hostname% port=%port% status=closed
)
| liquidtelecom/splunk-port-tester | port-tester/bin/porttester.bat | bat | apache-2.0 | 213 |
@call ..\munge_world.bat @#$ %1
| marth8880/SWBF2-AutomationTool | ZeroMunge/ZeroMunge/templates/WorldMungeFolder/munge.bat | bat | bsd-3-clause | 32 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=msoffcrypto-tool
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| nolze/msoffcrypto-tool | docs/make.bat | bat | mit | 820 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXWSCORE.S01_ManageBaseItems.MSOXWSCORE_S01_TC02_CopyItemSuccessfully /testcontainer:..\..\MS-OXWSCORE\TestSuite\bin\Debug\MS-OXWSCORE_TestSuite.dll /runconfig:..\..\MS-OXWSCORE\MS-OXWSCORE.testsettings /unique
pause | OfficeDev/Interop-TestSuites | ExchangeWebServices/Source/Scripts/MS-OXWSCORE/RunMSOXWSCORE_S01_TC02_CopyItemSuccessfully.cmd | bat | mit | 310 |
@ECHO OFF
:Loop
IF "%1"=="" GOTO Continue
"%~dp0\multimarkdown" -b -t odf %1
SHIFT
GOTO Loop
:Continue
| fletcher/MultiMarkdown-5 | scripts/mmd2odf.bat | bat | mit | 115 |
start "" http://localhost:8080
set NODE_CAPTURE=false
set NODE_ENV=production
npm start
| anmonite/wows-stats-plus | run_nocapture.bat | bat | mit | 92 |
echo "Running npm install in online-hub folder"
npm install
echo "Renaming public_securityCredentials.js to securityCredentials.js"
rename public_securityCredentials.js securityCredentials.js | digideskio/OpenSmartHub | online-hub/install.bat | bat | gpl-2.0 | 192 |
@ECHO OFF
ECHO Server Kicker - Kicking the server.
IF "%1"=="tag" GOTO Tag
IF "%1"=="allsrv" GOTO AllSrv
IF "%1"=="lobby" GOTO Lobby
GOTO End
:Lobby
ECHO Restarting the lobby.
sc stop "TAGService"
sc stop "AllSrv"
sc stop "AllLobby"
sc start "AllLobby"
choice /T 5 /C Y /CS /D Y /M "Waiting for Lobby to warm up. Continue "
sc start "AllSrv"
choice /T 5 /C Y /CS /D Y /M "Waiting for AllSrv to warm up. Continue "
sc start "TAGService"
GOTO End
:AllSrv
ECHO Restarting AllSrv.
sc stop "TAGService"
sc stop "AllSrv"
sc start "AllSrv"
choice /T 5 /C Y /CS /D Y /M "Waiting for AllSrv to warm up. Continue "
sc start "TAGService"
GOTO End
:Tag
ECHO Restarting TAG.
sc stop "TAGService"
sc start "TAGService"
:End | FreeAllegiance/Allegiance-Community-Security-System | Deployment/Output/Utilities/RestartServices.bat | bat | gpl-2.0 | 732 |
REM goto current directory
cd /d %~dp0
REM set node environment
call "%ProgramFiles%\nodejs\nodevars.bat"
set NODE_ENV=test
REM -------------------------
karma start sauce.conf.js
| Memba/Memba-Widgets | sauce.conf.cmd | bat | agpl-3.0 | 180 |
@echo off
AltovaXML /xslt1 "MappingMapToMETA-SHARE-Resource.xslt" /in "C:/develop/metashare/transform/schemaTransform/toBeTransformed - Copy/CorporaAll/Corpus/UP10_7.4.xml" /out "C:/develop/metashare/transform/schemaTransform/output/outTest.xml" %*
IF ERRORLEVEL 1 EXIT/B %ERRORLEVEL%
| JuliBakagianni/CEF-ELRC | misc/tools/ILSPConverters/corpora/DoTransform.bat | bat | bsd-3-clause | 286 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyftpdlib.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyftpdlib.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| giampaolo/psutil | docs/make.bat | bat | bsd-3-clause | 6,707 |
@ECHO OFF
SETLOCAL
rem batch file to compile mingw libs via BuildSetup
SET WORKDIR=%WORKSPACE%
rem set M$ env
call "%VS140COMNTOOLS%\..\..\VC\bin\vcvars32.bat" || exit /b 1
SET PROMPTLEVEL=prompt
SET BUILDMODE=clean
SET opt=mintty
SET build32=yes
SET build64=no
SET msys2=msys64
SET tools=mingw
FOR %%b in (%1, %2, %3) DO (
IF %%b==noprompt SET PROMPTLEVEL=noprompt
IF %%b==clean SET BUILDMODE=clean
IF %%b==noclean SET BUILDMODE=noclean
IF %%b==sh SET opt=sh
IF %%b==build64 (
SET build64=yes
SET build32=no
)
IF %%b==msvc SET tools=msvc
)
IF "%WORKDIR%"=="" (
SET WORKDIR=%~dp0\..\..\..
)
REM Prepend the msys and mingw paths onto %PATH%
SET MSYS_INSTALL_PATH=%WORKDIR%\project\BuildDependencies\msys
SET PATH=%MSYS_INSTALL_PATH%\mingw\bin;%MSYS_INSTALL_PATH%\bin;%PATH%
SET ERRORFILE=%WORKDIR%\project\Win32BuildSetup\errormingw
SET BS_DIR=%WORKDIR%\project\Win32BuildSetup
rem cd %BS_DIR%
IF EXIST %ERRORFILE% del %ERRORFILE% > NUL
rem compiles a bunch of mingw libs and not more
IF %opt%==sh (
IF EXIST %WORKDIR%\project\BuildDependencies\%msys2%\usr\bin\sh.exe (
ECHO starting sh shell
%WORKDIR%\project\BuildDependencies\%msys2%\usr\bin\sh.exe --login -i /xbmc/tools/buildsteps/win32/make-mingwlibs.sh --prompt=%PROMPTLEVEL% --mode=%BUILDMODE% --build32=%build32% --build64=%build64% --tools=%tools%
GOTO END
) ELSE (
GOTO ENDWITHERROR
)
)
IF EXIST %WORKDIR%\project\BuildDependencies\%msys2%\usr\bin\mintty.exe (
ECHO starting mintty shell
%WORKDIR%\project\BuildDependencies\%msys2%\usr\bin\mintty.exe -d -i /msys2.ico /usr/bin/bash --login /xbmc/tools/buildsteps/win32/make-mingwlibs.sh --prompt=%PROMPTLEVEL% --mode=%BUILDMODE% --build32=%build32% --build64=%build64% --tools=%tools%
GOTO END
)
GOTO ENDWITHERROR
:ENDWITHERROR
ECHO msys environment not found
ECHO bla>%ERRORFILE%
EXIT /B 1
:END
ECHO exiting msys environment
IF EXIST %ERRORFILE% (
ECHO failed to build mingw libs
EXIT /B 1
)
EXIT /B 0
ENDLOCAL
| surkovalex/xbmc | tools/buildsteps/win32/make-mingwlibs.bat | bat | gpl-2.0 | 2,013 |
rem We have to use the absolute path because there is no "shebang line" in Windows
python "%PREFIX%\Scripts\test-script-setup.py"
if errorlevel 1 exit 1
python "%PREFIX%\Scripts\test-script-setup.py" | grep "Test script setup\.py"
if errorlevel 1 exit 1
test-script-manual
if errorlevel 1 exit 1
test-script-manual | grep "Manual entry point"
if errorlevel 1 exit 1
| sandhujasmine/conda-build | tests/test-recipes/metadata/entry_points/run_test.bat | bat | bsd-3-clause | 367 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.