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 |
|---|---|---|---|---|---|
@rem ---------------------------------------------------------------------------------
@rem Copyright 2008 Microsoft Corporation. All rights reserved.
@rem This is provided as sample to deploy the package using msdeploy.exe
@rem For information about IIS Web Deploy technology,
@rem please visit http://go.microsoft.com/?linkid=9278654
@rem Note: This batch file assumes the package and setparametsrs.xml are in the same folder with this file
@rem ---------------------------------------------------------------------------------
@if %_echo%!==! echo off
setlocal
@rem ---------------------------------------------------------------------------------
@rem Please Make sure you have Web Deploy install in your machine.
@rem Alternatively, you can explicit set the MsDeployPath to the location it is on your machine
@rem set MSDeployPath="C:\Program Files\IIS\Microsoft Web Deploy V3\"
@rem ---------------------------------------------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem if user does not set MsDeployPath environment variable, we will try to retrieve it from registry.
@rem ---------------------------------------------------------------------------------
if "%MSDeployPath%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IIS Extensions\MSDeploy" /s ^| findstr -i "InstallPath"`) do (
if /I "%%h" == "InstallPath" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
if "%%~dpj" == "%%j" (
set MSDeployPath=%%j
))))))
@rem ------------------------------------------
@rem ------------------------------------------
if not exist "%MSDeployPath%msdeploy.exe" (
echo. msdeploy.exe is not found on this machine. Please install Web Deploy before execute the script.
echo. Please visit http://go.microsoft.com/?linkid=9278654
goto :usage
)
set RootPath=%~dp0
if /I "%_DeploySetParametersFile%" == "" (
set _DeploySetParametersFile=%RootPath%Orchard.Warmup.SetParameters.xml
)
@rem ------------------------------------------
@rem ------------------------------------------
set _ArgTestDeploy=
set _ArgDestinationType=auto
set _ArgComputerNameWithQuote=""
set _ArgUserNameWithQuote=""
set _ArgPasswordWithQuote=""
set _ArgEncryptPasswordWithQuote=""
set _ArgIncludeAclsWithQuote="False"
set _ArgAuthTypeWithQuote=""
set _ArgtempAgentWithQuote=""
set _ArgLocalIIS=
set _ArgLocalIISVersion=
set _HaveArgMSDeployAdditonalFlags=
@rem ---------------------------------------------------------------------------------
@rem Simple Parse the arguments
@rem ---------------------------------------------------------------------------------
:NextArgument
set _ArgCurrent=%~1
set _ArgFlagFirst=%_ArgCurrent:~0,1%
set _ArgFlag=%_ArgCurrent:~0,3%
set _ArgValue=%_ArgCurrent:~3%
if /I "%_ArgFlag%" == "" goto :GetStarted
if /I "%_ArgFlag%" == "~0,3" goto :GetStarted
if /I "%_ArgFlag%" == "/T" set _ArgTestDeploy=true&goto :ArgumentOK
if /I "%_ArgFlag%" == "/Y" set _ArgTestDeploy=false&goto :ArgumentOK
if /I "%_ArgFlag%" == "/L" set _ArgLocalIIS=true&goto :ArgumentOK
if /I "%_ArgFlag%" == "/M:" set _ArgComputerNameWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/U:" set _ArgUserNameWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/P:" set _ArgPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/E:" set _ArgEncryptPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/I:" set _ArgIncludeAclsWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/A:" set _ArgAuthTypeWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/G:" set _ArgtempAgentWithQuote="%_ArgValue%"&goto :ArgumentOK
@rem Any addition flags, pass through to the msdeploy
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
goto :Assign_ArgMsDeployAdditionalFlags
)
set _ArgMsDeployAdditionalFlags=%_ArgMsDeployAdditionalFlags:&=^&% %_ArgCurrent:&=^&%
set _HaveArgMSDeployAdditonalFlags=1
goto :ArgumentOK
:Assign_ArgMsDeployAdditionalFlags
set _ArgMsDeployAdditionalFlags=%_ArgCurrent:&=^&%
set _HaveArgMSDeployAdditonalFlags=1
goto :ArgumentOK
:ArgumentOK
shift
goto :NextArgument
:GetStarted
@rem ------------------------------------------
@rem ------------------------------------------
if /I "%_ArgTestDeploy%" == "" goto :usage
if /I "%_ArgDestinationType%" == "" goto :usage
set _Destination=%_ArgDestinationType%
if not %_ArgComputerNameWithQuote% == "" set _Destination=%_Destination%,computerName=%_ArgComputerNameWithQuote%
if not %_ArgUserNameWithQuote% == "" set _Destination=%_Destination%,userName=%_ArgUserNameWithQuote%
if not %_ArgPasswordWithQuote% == "" set _Destination=%_Destination%,password=%_ArgPasswordWithQuote%
if not %_ArgAuthTypeWithQuote% == "" set _Destination=%_Destination%,authtype=%_ArgAuthTypeWithQuote%
if not %_ArgEncryptPasswordWithQuote% == "" set _Destination=%_Destination%,encryptPassword=%_ArgEncryptPasswordWithQuote%
if not %_ArgIncludeAclsWithQuote% == "" set _Destination=%_Destination%,includeAcls=%_ArgIncludeAclsWithQuote%
if not %_ArgtempAgentWithQuote% == "" set _Destination=%_Destination%,tempAgent=%_ArgtempAgentWithQuote%
@rem ------------------------------------------
@rem ------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem add -whatif when -T is specified
@rem ---------------------------------------------------------------------------------
if /I "%_ArgTestDeploy%" NEQ "false" (
set _MsDeployAdditionalFlags=-whatif %_MsDeployAdditionalFlags%
)
@rem ------------------------------------------
@rem ------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem add flags for IISExpress when -L is specified
@rem ---------------------------------------------------------------------------------
if /I "%_ArgLocalIIS%" == "true" (
call :SetIISExpressArguments
)
if /I "%_ArgLocalIIS%" == "true" (
if not exist "%IISExpressPath%%IISExpressManifest%" (
echo. IISExpress is not found on this machine. Please install through Web Platform Installer before execute the script.
echo. or remove /L flag
echo. Please visit http://go.microsoft.com/?linkid=9278654
goto :usage
)
if not exist "%IISExpressUserProfileDirectory%" (
echo. %IISExpressUserProfileDirectory% is not exists
echo. IISExpress is found on the machine. But the user have run IISExpress at least once.
echo. Please visit http://go.microsoft.com/?linkid=9278654 for detail
goto :usage
)
set _MsDeployAdditionalFlags=%_MsDeployAdditionalFlags% -appHostConfigDir:%IISExpressUserProfileDirectory% -WebServerDir:"%IISExpressPath%" -webServerManifest:"%IISExpressManifest%"
)
@rem ---------------------------------------------------------------------------------
@rem check the existence of the package file
@rem ---------------------------------------------------------------------------------
if not exist "%RootPath%Orchard.Warmup.zip" (
echo "%RootPath%Orchard.Warmup.zip" does not exist.
echo This batch file relies on this deploy source file^(s^) in the same folder.
goto :usage
)
@rem ---------------------------------------------
@rem ---------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem Execute msdeploy.exe command line
@rem ---------------------------------------------------------------------------------
call :CheckParameterFile
echo. Start executing msdeploy.exe
echo -------------------------------------------------------
if not exist "%_DeploySetParametersFile%" (
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%Orchard.Warmup.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension
) else (
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%Orchard.Warmup.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -setParamFile:"%_DeploySetParametersFile%"
)
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
goto :MSDeployWithOutArgMsDeployAdditionalFlag
)
goto :MSDeployWithArgMsDeployAdditionalFlag
goto :eof
@rem ---------------------------------------------------------------------------------
@rem MSDeployWithArgMsDeployAdditionalFlag
@rem ---------------------------------------------------------------------------------
:MSDeployWithArgMsDeployAdditionalFlag
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
%_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
goto :eof
@rem ---------------------------------------------------------------------------------
@rem MSDeployWithOutArgMsDeployAdditionalFlag
@rem ---------------------------------------------------------------------------------
:MSDeployWithOutArgMsDeployAdditionalFlag
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags%
%_MSDeployCommandline% %_MsDeployAdditionalFlags%
goto :eof
@rem ---------------------------------------------------------------------------------
@rem Find and set IISExpress argument.
@rem ---------------------------------------------------------------------------------
:SetIISExpressArguments
if "%IISExpressPath%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
if /I "%%h" == "InstallPath" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
if "%%~dpj" == "%%j" (
set IISExpressPath=%%j
))))))
if "%IISExpressPath%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
if /I "%%h" == "InstallPath" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
if "%%~dpj" == "%%j" (
set IISExpressPath=%%j
))))))
if "%PersonalDocumentFolder%" == "" (
for /F "usebackq tokens=2*" %%i in (`reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal`) do (
set PersonalDocumentFolder=%%j
))
if "%IISExpressManifest%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
if /I "%%h" == "Manifest" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
set IISExpressManifest=%%j
)))))
if "%IISExpressManifest%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
if /I "%%h" == "Manifest" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
set IISExpressManifest=%%j
)))))
set IISExpressUserProfileDirectory="%PersonalDocumentFolder%\IISExpress\config"
@rem ---------------------------------------------
@rem ---------------------------------------------
goto :eof
@rem ---------------------------------------------------------------------------------
@rem CheckParameterFile -- check if the package's setparamters.xml exists or not
@rem ---------------------------------------------------------------------------------
:CheckParameterFile
if exist "%_DeploySetParametersFile%" (
echo SetParameters from:
echo "%_DeploySetParametersFile%"
echo You can change IIS Application Name, Physical path, connectionString
echo or other deploy parameters in the above file.
) else (
echo SetParamterFiles does not exist in package location.
echo Use package embedded defaultValue to deploy.
)
echo -------------------------------------------------------
goto :eof
@rem ---------------------------------------------------------------------------------
@rem Usage
@rem ---------------------------------------------------------------------------------
:usage
echo =========================================================
if not exist "%RootPath%Orchard.Warmup.deploy-readme.txt" (
echo Usage:%~nx0 [/T^|/Y] [/M:ComputerName] [/U:userName] [/P:password] [/G:tempAgent] [additional msdeploy flags ...]
echo Required flags:
echo /T Calls msdeploy.exe with the "-whatif" flag, which simulates deployment.
echo /Y Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or destination server
echo Optional flags:
echo. By Default, this script deploy to the current machine where this script is invoked which will use current user credential without tempAgent.
echo. Only pass these arguments when in advance scenario.
echo /M: Msdeploy destination name of remote computer or proxy-URL. Default is local.
echo /U: Msdeploy destination user name.
echo /P: Msdeploy destination password.
echo /G: Msdeploy destination tempAgent. True or False. Default is false.
echo /A: specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic
otherwise, the default authentication type is NTLM.
echo /L: Deploy to Local IISExpress User Instance.
echo.[additional msdeploy flags]: note: " is required for passing = through command line.
echo "-skip:objectName=setAcl" "-skip:objectName=dbFullSql"
echo.Alternative environment variable _MsDeployAdditionalFlags is also honored.
echo.
echo. Please make sure MSDeploy is installed in the box http://go.microsoft.com/?linkid=9278654
echo.
echo In addition, you can change IIS Application Name, Physical path,
echo connectionString and other deploy parameters in the following file:
echo "%_DeploySetParametersFile%"
echo.
echo For more information about this batch file, visit http://go.microsoft.com/fwlink/?LinkID=183544
) else (
start notepad "%RootPath%Orchard.Warmup.deploy-readme.txt"
)
echo =========================================================
goto :eof
| gragarwa/orchard | src/Orchard.Web/Modules/Orchard.Warmup/obj/Release/Package/Orchard.Warmup.deploy.cmd | bat | bsd-3-clause | 14,097 |
cd jni
call ndk-build
if %ERRORLEVEL% EQU 0 (
echo ndk-build has failed, build cancelled
cd..
mkdir "assets\shaders\base"
xcopy "..\..\data\shaders\base\*.spv" "assets\shaders\base" /Y
mkdir "assets\shaders\computeshader"
xcopy "..\..\data\shaders\computeshader\*.spv" "assets\shaders\computeshader" /Y
mkdir "assets\textures"
xcopy "..\..\data\textures\het_kanonschot_rgba8.ktx" "assets\textures" /Y
mkdir "res\drawable"
xcopy "..\..\android\images\icon.png" "res\drawable" /Y
call ant debug -Dout.final.file=vulkanComputeshader.apk
) ELSE (
echo error : ndk-build failed with errors!
cd..
)
| martty/Vulkan | android/computeshader/build.bat | bat | mit | 615 |
cmd_arch/mips/math-emu/sp_mul.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,arch/mips/math-emu/.sp_mul.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(sp_mul)" -D"KBUILD_MODNAME=KBUILD_STR(sp_mul)" -c -o arch/mips/math-emu/sp_mul.o arch/mips/math-emu/sp_mul.c
deps_arch/mips/math-emu/sp_mul.o := \
arch/mips/math-emu/sp_mul.c \
arch/mips/math-emu/ieee754sp.h \
arch/mips/math-emu/ieee754int.h \
arch/mips/math-emu/ieee754.h \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips64/r2.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/types.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/byteorder/little_endian.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/asm/posix_types.h \
include/asm/sgidefs.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/linux/sched.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/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/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/compat.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/preempt.h) \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/cpu-features.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.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-generic/bitops/ext2-atomic.h \
include/asm-generic/bitops/minix.h \
include/asm/thread_info.h \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/8kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/processor.h \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/asm/current.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
include/linux/time.h \
include/linux/seqlock.h \
include/asm/timex.h \
include/asm-mips/mach-generic/timex.h \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/rbtree.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/linux/nodemask.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/asm/semaphore.h \
include/linux/wait.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/ptrace.h \
$(wildcard include/config/cpu/has/smartmips.h) \
include/asm/isadep.h \
include/asm/mmu.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/smp.h \
include/linux/sem.h \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.h \
include/linux/kref.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/securebits.h \
include/linux/fs_struct.h \
include/linux/completion.h \
include/linux/pid.h \
include/linux/rcupdate.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/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/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/asm/topology.h \
include/asm-mips/mach-generic/topology.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/kobject.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/asm/percpu.h \
include/asm-generic/percpu.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 \
arch/mips/math-emu/sp_mul.o: $(deps_arch/mips/math-emu/sp_mul.o)
$(deps_arch/mips/math-emu/sp_mul.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/arch/mips/math-emu/.sp_mul.o.cmd | bat | gpl-2.0 | 13,444 |
@more +1 "%~0" | "%~dp0..\nyagos.exe" - 2>nul & exit /b
lua_e "foo = 'OK'"
lua_e "nyagos.alias.xxx = function() assert(print(foo or 'NG')) end"
xxx | more
| tyochiai/nyagos | t/tst_luaclone.cmd | bat | bsd-3-clause | 159 |
:top
@echo off
echo.
color C
echo Please enter your MySQL info
echo.
set /p host= MySQL Server Address (Default = localhost):
if %host%. == . set host=localhost
set /p user= MySQL Username (Default = root):
if %user%. == . set user=root
set /p pass= MySQL Password (Default = ):
if %pass%. == . set pass=
set /p mangos= Mangos World Database (Default = mangos):
if %mangos%. == . set mangos=mangos
set /p arcemu= ArcEmu World Database (Default = arcemu):
if %arcemu%. == . set arcemu=arcemu
set /p trinity= Trinity World Database (Default = trinity):
if %trinity%. == . set trinity=trinity
set port=3306
set mysqlpath=.\mysql\
:begin
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3
echo / \ / \ Updated by Infinity_Project
echo / \ / \
echo /______\/______\
echo.
echo M - Mangos
echo A - ArcEmu
echo T - Trinity
echo.
set /p a= Enter a letter:
if %a%==* goto error
if %a%==m goto mangos
if %a%==M goto mangos
if %a%==a goto arcemu
if %a%==A goto arcemu
if %a%==t goto trinity
if %a%==T goto trinity
set a=
goto error
:mangos
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3 (Mangos)
echo / \ / \ Updated by Infinity_Project
echo / \ / \
echo /______\/______\
echo.
echo I - Import Vendor Data
echo S - Spawn Vendors
echo D - Despawn Vendors
echo E - Remove Everything
echo B - Back
echo.
set /p b= Enter a letter:
if %b%==* goto error
if %b%==i goto mangos_import
if %b%==I goto mangos_import
if %b%==s goto mangos_spawn
if %b%==S goto mangos_spawn
if %b%==d goto mangos_despawn
if %b%==D goto mangos_despawn
if %b%==e goto mangos_remove
if %b%==E goto mangos_remove
if %b%==b goto begin
if %b%==B goto begin
set b=
goto error
:mangos_import
CLS
echo.
echo Importing...
echo.
for %%C in (.\development\vendors_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
for %%C in (.\development\vendordata_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto mangos
:mangos_spawn
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3 (Mangos)
echo / \ / \ updated by infinity project
echo / \ / \
echo /______\/______\
echo.
echo 1 - GM Island
echo 2 - (Not implemented yet)
echo 3 - (Not implemented yet)
echo B - Back
echo.
set /p c= Enter a letter:
if %c%==* goto error
if %c%==1 goto mangos_spawn1
if %c%==2 goto mangos_spawn2
if %c%==3 goto mangos_spawn3
if %c%==b goto mangos
if %c%==B goto mangos
set c=
goto error
:mangos_spawn1
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto mangos_spawn
:mangos_spawn2
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto mangos_spawn
:mangos_spawn3
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto mangos_spawn
:mangos_despawn
CLS
echo.
echo Despawning Vendors...
echo.
for %%C in (.\development\despawn_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto mangos
:mangos_remove
CLS
echo.
echo Removing Triforce Mall...
echo.
for %%C in (.\development\removeall_mangos.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %mangos% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto mangos
:arcemu
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3 (ArcEmu)
echo / \ / \
echo / \ / \
echo /______\/______\
echo.
echo I - Import Vendor Data
echo S - Spawn Vendors
echo D - Despawn Vendors
echo E - Remove Everything
echo B - Back
echo.
set /p d= Enter a letter:
if %d%==* goto error
if %d%==i goto arcemu_import
if %d%==I goto arcemu_import
if %d%==s goto arcemu_spawn
if %d%==S goto arcemu_spawn
if %d%==d goto arcemu_despawn
if %d%==D goto arcemu_despawn
if %d%==e goto arcemu_remove
if %d%==E goto arcemu_remove
if %d%==b goto begin
if %d%==B goto begin
set d=
goto error
:arcemu_import
CLS
echo.
echo Importing...
echo.
for %%C in (.\development\vendors_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
for %%C in (.\development\vendordata_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto arcemu
:arcemu_spawn
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3 (ArcEmu)
echo / \ / \
echo / \ / \
echo /______\/______\
echo.
echo 1 - GM Island
echo 2 - (Not implemented yet)
echo 3 - (Not implemented yet)
echo B - Back
echo.
set /p e= Enter a letter:
if %e%==* goto error
if %e%==1 goto arcemu_spawn1
if %e%==2 goto arcemu_spawn2
if %e%==3 goto arcemu_spawn3
if %e%==b goto arcemu
if %e%==B goto arcemu
set e=
goto error
:arcemu_spawn1
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto arcemu_spawn
:arcemu_spawn2
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto arcemu_spawn
:arcemu_spawn3
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto arcemu_spawn
:arcemu_despawn
CLS
echo.
echo Despawning Vendors...
echo.
for %%C in (.\development\despawn_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto arcemu
:arcemu_remove
CLS
echo.
echo Removing Triforce Mall...
echo.
for %%C in (.\development\removeall_arcemu.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %arcemu% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto arcemu
:trinity
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3 (Trinity)
echo / \ / \
echo / \ / \
echo /______\/______\
echo.
echo I - Import Vendor Data
echo S - Spawn Vendors
echo D - Despawn Vendors
echo E - Remove Everything
echo B - Back
echo.
set /p f= Enter a letter:
if %f%==* goto error
if %f%==i goto trinity_import
if %f%==I goto trinity_import
if %f%==s goto trinity_spawn
if %f%==S goto trinity_spawn
if %f%==d goto trinity_despawn
if %f%==D goto trinity_despawn
if %f%==e goto trinity_remove
if %f%==E goto trinity_remove
if %f%==b goto begin
if %f%==B goto begin
set f=
goto error
:trinity_import
CLS
echo.
echo Importing...
echo.
for %%C in (.\development\vendors_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
for %%C in (.\development\vendordata_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity
:trinity_spawn
CLS
echo.
echo /\
echo / \
echo / \
echo /______\
echo /\ /\ Triforce Mall - Version 3 (Trinity)
echo / \ / \
echo / \ / \
echo /______\/______\
echo.
echo 1 - GM Island
echo 2 - (Not implemented yet)
echo 3 - (Not implemented yet)
echo B - Back
echo.
set /p g= Enter a letter:
if %g%==* goto error
if %g%==1 goto trinity_spawn1
if %g%==2 goto trinity_spawn2
if %g%==3 goto trinity_spawn3
if %g%==b goto trinity
if %g%==B goto trinity
set g=
goto error
:trinity_spawn1
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity_spawn
:trinity_spawn2
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity_spawn
:trinity_spawn3
CLS
echo.
echo Spawning Vendors...
echo.
for %%C in (.\development\spawn_gmisland_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity_spawn
:trinity_despawn
CLS
echo.
echo Despawning Vendors...
echo.
for %%C in (.\development\despawn_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity
:trinity_remove
CLS
echo.
echo Removing Triforce Mall...
echo.
for %%C in (.\development\removeall_trinity.sql) do (
echo Import: %%~nxC
%mysqlpath%\mysql --host=%host% --user=%user% --password=%pass% --port=%port% %trinity% < "%%~fC"
)
echo.
echo Done.
echo.
echo Press any key to exit.
pause >NUL
goto trinity
:error
CLS
echo.
echo Please enter a correct letter.
echo.
echo Press any key to exit.
pause >NUL
goto begin
| Kreegoth/Darkportalwow | sql_FULL_DB/_Optional SQL's (Customizations) !NON_BLIZZLIKE!/Triforce Mall 3.0/Install.bat | bat | gpl-2.0 | 11,186 |
@echo off
echo testing Code 11
zint -o bar01.png -b 1 --height=50 --border=10 -d 87654321
zint -o bar01.eps -b 1 --height=50 --border=10 -d 87654321
zint -o bar01.svg -b 1 --height=50 --border=10 -d 87654321
echo testing Code 2 of 5 Standard
zint -o bar02.png -b 2 --height=50 --border=10 -d 87654321
zint -o bar02.eps -b 2 --height=50 --border=10 -d 87654321
zint -o bar02.svg -b 2 --height=50 --border=10 -d 87654321
echo testing Interleaved 2 of 5
zint -o bar03.png -b 3 --height=50 --border=10 -d 87654321
zint -o bar03.eps -b 3 --height=50 --border=10 -d 87654321
zint -o bar03.svg -b 3 --height=50 --border=10 -d 87654321
echo testing Code 2 of 5 IATA
zint -o bar04.png -b 4 --height=50 --border=10 -d 87654321
zint -o bar04.eps -b 4 --height=50 --border=10 -d 87654321
zint -o bar04.svg -b 4 --height=50 --border=10 -d 87654321
echo testing Code 2 of 5 Data Logic
zint -o bar06.png -b 6 --height=50 --border=10 -d 87654321
zint -o bar06.eps -b 6 --height=50 --border=10 -d 87654321
zint -o bar06.svg -b 6 --height=50 --border=10 -d 87654321
echo testing Code 2 of 5 Industrial
zint -o bar07.png -b 7 --height=50 --border=10 -d 87654321
zint -o bar07.eps -b 7 --height=50 --border=10 -d 87654321
zint -o bar07.svg -b 7 --height=50 --border=10 -d 87654321
echo testing Code 39
zint -o bar08.png -b 8 --height=50 --border=10 -d CODE39
zint -o bar08.eps -b 8 --height=50 --border=10 -d CODE39
zint -o bar08.svg -b 8 --height=50 --border=10 -d CODE39
echo testing Extended Code 39
zint -o bar09.png -b 9 --height=50 --border=10 -d "Code 39e"
zint -o bar09.eps -b 9 --height=50 --border=10 -d "Code 39e"
zint -o bar09.svg -b 9 --height=50 --border=10 -d "Code 39e"
echo testing EAN8
zint -o bar10.png -b 13 --height=50 --border=10 -d 7654321
zint -o bar10.eps -b 13 --height=50 --border=10 -d 7654321
zint -o bar10.svg -b 13 --height=50 --border=10 -d 7654321
echo testing EAN8 - 2 digits add on
zint -o bar11.png -b 13 --height=50 --border=10 -d 7654321+21
zint -o bar11.eps -b 13 --height=50 --border=10 -d 7654321+21
zint -o bar11.svg -b 13 --height=50 --border=10 -d 7654321+21
echo testing EAN8 - 5 digits add-on
zint -o bar12.png -b 13 --height=50 --border=10 -d 7654321+54321
zint -o bar12.eps -b 13 --height=50 --border=10 -d 7654321+54321
zint -o bar12.svg -b 13 --height=50 --border=10 -d 7654321+54321
echo testing EAN13
zint -o bar13.png -b 13 --height=50 --border=10 -d 210987654321
zint -o bar13.eps -b 13 --height=50 --border=10 -d 210987654321
zint -o bar13.svg -b 13 --height=50 --border=10 -d 210987654321
echo testing EAN13 - 2 digits add-on
zint -o bar14.png -b 13 --height=50 --border=10 -d 210987654321+21
zint -o bar14.eps -b 13 --height=50 --border=10 -d 210987654321+21
zint -o bar14.svg -b 13 --height=50 --border=10 -d 210987654321+21
echo testing EAN13 - 5 digits add-on
zint -o bar15.png -b 13 --height=50 --border=10 -d 210987654321+54321
zint -o bar15.eps -b 13 --height=50 --border=10 -d 210987654321+54321
zint -o bar15.svg -b 13 --height=50 --border=10 -d 210987654321+54321
echo testing GS1-128
zint -o bar16.png -b 16 --height=50 --border=10 -d "[01]98898765432106[3202]012345[15]991231"
zint -o bar16.eps -b 16 --height=50 --border=10 -d "[01]98898765432106[3202]012345[15]991231"
zint -o bar16.svg -b 16 --height=50 --border=10 -d "[01]98898765432106[3202]012345[15]991231"
echo testing CodaBar
zint -o bar18.png -b 18 --height=50 --border=10 -d D765432C
zint -o bar18.eps -b 18 --height=50 --border=10 -d D765432C
zint -o bar18.svg -b 18 --height=50 --border=10 -d D765432C
echo testing Code 128
zint -o bar20.png -b 20 --height=50 --border=10 -d "Code 128"
zint -o bar20.eps -b 20 --height=50 --border=10 -d "Code 128"
zint -o bar20.svg -b 20 --height=50 --border=10 -d "Code 128"
echo testing Deutshe Post Leitcode
zint -o bar21.png -b 21 --height=50 --border=10 -d 3210987654321
zint -o bar21.eps -b 21 --height=50 --border=10 -d 3210987654321
zint -o bar21.svg -b 21 --height=50 --border=10 -d 3210987654321
echo testing Deutche Post Identcode
zint -o bar22.png -b 22 --height=50 --border=10 -d 10987654321
zint -o bar22.eps -b 22 --height=50 --border=10 -d 10987654321
zint -o bar22.svg -b 22 --height=50 --border=10 -d 10987654321
echo testing Code 16k
zint -o bar23.png -b 23 --height=50 --border=10 -d "Demonstration Code 16k symbol generated by libzint"
zint -o bar23.eps -b 23 --height=50 --border=10 -d "Demonstration Code 16k symbol generated by libzint"
zint -o bar23.svg -b 23 --height=50 --border=10 -d "Demonstration Code 16k symbol generated by libzint"
zint -o bar23a.png -b 23 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
zint -o bar23a.eps -b 23 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
zint -o bar23a.svg -b 23 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
echo testing Code 49
zint -o bar24.png -b 24 -d "Demonstration Code 49"
zint -o bar24.eps -b 24 -d "Demonstration Code 49"
zint -o bar24.svg -b 24 -d "Demonstration Code 49"
echo testing Code 93
zint -o bar25.png -b 25 --height=50 --border=10 -d "Code 93"
zint -o bar25.eps -b 25 --height=50 --border=10 -d "Code 93"
zint -o bar25.svg -b 25 --height=50 --border=10 -d "Code 93"
echo testing Flattermarken
zint -o bar28.png -b 28 --height=50 --border=10 -d 87654321
zint -o bar28.eps -b 28 --height=50 --border=10 -d 87654321
zint -o bar28.svg -b 28 --height=50 --border=10 -d 87654321
echo testing GS1 DataBar-14
zint -o bar29.png -b 29 --height=33 --border=10 -d 2001234567890
zint -o bar29.eps -b 29 --height=33 --border=10 -d 2001234567890
zint -o bar29.svg -b 29 --height=33 --border=10 -d 2001234567890
echo testing GS1 DataBar Limited
zint -o bar30.png -b 30 --height=50 --border=10 -w 2 -d 31234567890
zint -o bar30.eps -b 30 --height=50 --border=10 -w 2 -d 31234567890
zint -o bar30.svg -b 30 --height=50 --border=10 -w 2 -d 31234567890
echo testing GS1 DataBar Expanded
zint -o bar31.png -b 31 --height=50 --border=10 -d "[01]90012345678908[3103]001750"
zint -o bar31.eps -b 31 --height=50 --border=10 -d "[01]90012345678908[3103]001750"
zint -o bar31.svg -b 31 --height=50 --border=10 -d "[01]90012345678908[3103]001750"
echo testing Telepen Alpha
zint -o bar32.png -b 32 --height=50 --border=10 -d "Telepen"
zint -o bar32.eps -b 32 --height=50 --border=10 -d "Telepen"
zint -o bar32.svg -b 32 --height=50 --border=10 -d "Telepen"
echo testing UPC A
zint -o bar34.png -b 34 --height=50 --border=10 -d 10987654321
zint -o bar34.eps -b 34 --height=50 --border=10 -d 10987654321
zint -o bar34.svg -b 34 --height=50 --border=10 -d 10987654321
echo testing UPC A - 2 digit add-on
zint -o bar35.png -b 34 --height=50 --border=10 -d 10987654321+21
zint -o bar35.eps -b 34 --height=50 --border=10 -d 10987654321+21
zint -o bar35.svg -b 34 --height=50 --border=10 -d 10987654321+21
echo testing UPC A - 5 digit add-on
zint -o bar36.png -b 36 --height=50 --border=10 -d 10987654321+54321
zint -o bar36.eps -b 36 --height=50 --border=10 -d 10987654321+54321
zint -o bar36.svg -b 36 --height=50 --border=10 -d 10987654321+54321
echo testing UPC E
zint -o bar37.png -b 37 --height=50 --border=10 -d 654321
zint -o bar37.eps -b 37 --height=50 --border=10 -d 654321
zint -o bar37.svg -b 37 --height=50 --border=10 -d 654321
echo testing UPC E - 2 digit add-on
zint -o bar38.png -b 37 --height=50 --border=10 -d 654321+21
zint -o bar38.eps -b 37 --height=50 --border=10 -d 654321+21
zint -o bar38.svg -b 37 --height=50 --border=10 -d 654321+21
echo testing UPC E - 5 digit add-on
zint -o bar39.png -b 37 --height=50 --border=10 -d 654321+54321
zint -o bar39.eps -b 37 --height=50 --border=10 -d 654321+54321
zint -o bar39.svg -b 37 --height=50 --border=10 -d 654321+54321
echo testing PostNet-6
zint -o bar41.png -b 40 --border=10 -d 54321
zint -o bar41.eps -b 40 --border=10 -d 54321
zint -o bar41.svg -b 40 --border=10 -d 54321
echo testing PostNet-10
zint -o bar43.png -b 40 --border=10 -d 987654321
zint -o bar43.eps -b 40 --border=10 -d 987654321
zint -o bar43.svg -b 40 --border=10 -d 987654321
echo testing PostNet-12
zint -o bar45.png -b 40 --border=10 -d 10987654321
zint -o bar45.eps -b 40 --border=10 -d 10987654321
zint -o bar45.svg -b 40 --border=10 -d 10987654321
echo testing MSI Code
zint -o bar47.png -b 47 --height=50 --border=10 -d 87654321
zint -o bar47.eps -b 47 --height=50 --border=10 -d 87654321
zint -o bar47.svg -b 47 --height=50 --border=10 -d 87654321
echo testing FIM
zint -o bar49.png -b 49 --height=50 --border=10 -d D
zint -o bar49.eps -b 49 --height=50 --border=10 -d D
zint -o bar49.svg -b 49 --height=50 --border=10 -d D
echo testing LOGMARS
zint -o bar50.png -b 50 --height=50 --border=10 -d LOGMARS
zint -o bar50.eps -b 50 --height=50 --border=10 -d LOGMARS
zint -o bar50.svg -b 50 --height=50 --border=10 -d LOGMARS
echo testing Pharmacode One-Track
zint -o bar51.png -b 51 --height=50 --border=10 -d 123456
zint -o bar51.eps -b 51 --height=50 --border=10 -d 123456
zint -o bar51.svg -b 51 --height=50 --border=10 -d 123456
echo testing Pharmazentralnumber
zint -o bar52.png -b 52 --height=50 --border=10 -d 654321
zint -o bar52.eps -b 52 --height=50 --border=10 -d 654321
zint -o bar52.svg -b 52 --height=50 --border=10 -d 654321
echo testing Pharmacode Two-Track
zint -o bar53.png -b 53 --height=50 --border=10 -d 12345678
zint -o bar53.eps -b 53 --height=50 --border=10 -d 12345678
zint -o bar53.svg -b 53 --height=50 --border=10 -d 12345678
echo testing PDF417
zint -o bar55.png -b 55 --border=10 -d "Demonstration PDF417 symbol generated by libzint"
zint -o bar55.eps -b 55 --border=10 -d "Demonstration PDF417 symbol generated by libzint"
zint -o bar55.svg -b 55 --border=10 -d "Demonstration PDF417 symbol generated by libzint"
echo testing PDF417 Truncated
zint -o bar56.png -b 56 --border=10 -d "Demonstration PDF417 symbol generated by libzint"
zint -o bar56.eps -b 56 --border=10 -d "Demonstration PDF417 symbol generated by libzint"
zint -o bar56.svg -b 56 --border=10 -d "Demonstration PDF417 symbol generated by libzint"
echo testing Maxicode
zint -o bar57.png -b 57 --border=10 --primary="999999999840012" -d "Demonstration Maxicode symbol generated by libzint"
zint -o bar57.eps -b 57 --border=10 --primary="999999999840012" -d "Demonstration Maxicode symbol generated by libzint"
zint -o bar57.svg -b 57 --border=10 --primary="999999999840012" -d "Demonstration Maxicode symbol generated by libzint"
echo testing QR Code
zint -o bar58.png -b 58 --border=10 -d "Demonstration QR Code symbol generated by libzint"
zint -o bar58.eps -b 58 --border=10 -d "Demonstration QR Code symbol generated by libzint"
zint -o bar58.svg -b 58 --border=10 -d "Demonstration QR Code symbol generated by libzint"
zint -o bar58k.png -b 58 --kanji --border=10 -d "画像内の単語を非表示にする"
zint -o bar58k.eps -b 58 --kanji --border=10 -d "画像内の単語を非表示にする"
zint -o bar58k.svg -b 58 --kanji --border=10 -d "画像内の単語を非表示にする"
echo testing Code 128 Subset B
zint -o bar60.png -b 60 --height=50 --border=10 -d 87654321
zint -o bar60.eps -b 60 --height=50 --border=10 -d 87654321
zint -o bar60.svg -b 60 --height=50 --border=10 -d 87654321
echo testing Australian Post Standard Customer
zint -o bar63.png -b 63 --border=10 -d 87654321
zint -o bar63.eps -b 63 --border=10 -d 87654321
zint -o bar63.svg -b 63 --border=10 -d 87654321
echo testing Australian Post Customer 2
zint -o bar64.png -b 63 --border=10 -d 87654321AUSPS
zint -o bar64.eps -b 63 --border=10 -d 87654321AUSPS
zint -o bar64.svg -b 63 --border=10 -d 87654321AUSPS
echo testing Australian Post Customer 3
zint -o bar65.png -b 63 --border=10 -d "87654321 AUSTRALIA"
zint -o bar65.eps -b 63 --border=10 -d "87654321 AUSTRALIA"
zint -o bar65.svg -b 63 --border=10 -d "87654321 AUSTRALIA"
echo testing Australian Post Reply Paid
zint -o bar66.png -b 66 --border=10 -d 87654321
zint -o bar66.eps -b 66 --border=10 -d 87654321
zint -o bar66.svg -b 66 --border=10 -d 87654321
echo testing Australian Post Routing
zint -o bar67.png -b 67 --border=10 -d 87654321
zint -o bar67.eps -b 67 --border=10 -d 87654321
zint -o bar67.svg -b 67 --border=10 -d 87654321
echo testing Australian Post Redirection
zint -o bar68.png -b 68 --border=10 -d 87654321
zint -o bar68.eps -b 68 --border=10 -d 87654321
zint -o bar68.svg -b 68 --border=10 -d 87654321
echo testing ISBN Code
zint -o bar69.png -b 69 --height=50 --border=10 -d 0333638514
zint -o bar69.eps -b 69 --height=50 --border=10 -d 0333638514
zint -o bar69.svg -b 69 --height=50 --border=10 -d 0333638514
echo testing Royal Mail 4 State
zint -o bar70.png -b 70 --border=10 -d ROYALMAIL
zint -o bar70.eps -b 70 --border=10 -d ROYALMAIL
zint -o bar70.svg -b 70 --border=10 -d ROYALMAIL
echo testing Data Matrix
zint -o bar71.png -b 71 --border=10 -d "Demonstration Data Matrix symbol generated by libzint"
zint -o bar71.eps -b 71 --border=10 -d "Demonstration Data Matrix symbol generated by libzint"
zint -o bar71.svg -b 71 --border=10 -d "Demonstration Data Matrix symbol generated by libzint"
zint -o bar71a.png -b 71 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
zint -o bar71a.eps -b 71 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
zint -o bar71a.svg -b 71 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
echo testing EAN-14
zint -o bar72.png -b 72 --height=50 --border=10 -d 3210987654321
zint -o bar72.eps -b 72 --height=50 --border=10 -d 3210987654321
zint -o bar72.svg -b 72 --height=50 --border=10 -d 3210987654321
echo testing NVE-18
zint -o bar75.png -b 75 --height=50 --border=10 -d 76543210987654321
zint -o bar75.eps -b 75 --height=50 --border=10 -d 76543210987654321
zint -o bar75.svg -b 75 --height=50 --border=10 -d 76543210987654321
echo testing Japanese Post
zint -o bar76.png -b 76 --border=10 -d "10000131-3-2-503"
zint -o bar76.eps -b 76 --border=10 -d "10000131-3-2-503"
zint -o bar76.svg -b 76 --border=10 -d "10000131-3-2-503"
echo testing Korea Post
zint -o bar77.png -b 77 --height=50 --border=10 -d 123456
zint -o bar77.eps -b 77 --height=50 --border=10 -d 123456
zint -o bar77.svg -b 77 --height=50 --border=10 -d 123456
echo testing GS1 DataBar Truncated
zint -o bar78.png -b 29 --height=13 --border=10 -d 1234567890
zint -o bar78.eps -b 29 --height=13 --border=10 -d 1234567890
zint -o bar78.svg -b 29 --height=13 --border=10 -d 1234567890
echo testing GS1 DataBar Stacked
zint -o bar79.png -b 79 --border=10 -d 1234567890
zint -o bar79.eps -b 79 --border=10 -d 1234567890
zint -o bar79.svg -b 79 --border=10 -d 1234567890
echo testing GS1 DataBar Stacked Omnidirectional
zint -o bar80.png -b 80 --height=69 --border=10 -d 3456789012
zint -o bar80.eps -b 80 --height=69 --border=10 -d 3456789012
zint -o bar80.svg -b 80 --height=69 --border=10 -d 3456789012
echo testing GS1 DataBar Expanded Stacked
zint -o bar81.png -b 81 --border=10 -d "[01]98898765432106[3202]012345[15]991231"
zint -o bar81.eps -b 81 --border=10 -d "[01]98898765432106[3202]012345[15]991231"
zint -o bar81.svg -b 81 --border=10 -d "[01]98898765432106[3202]012345[15]991231"
echo testing Planet 12 Digit
zint -o bar82.png -b 82 --border=10 -d 10987654321
zint -o bar82.eps -b 82 --border=10 -d 10987654321
zint -o bar82.svg -b 82 --border=10 -d 10987654321
echo testing Planet 14 Digit
zint -o bar83.png -b 82 --border=10 -d 3210987654321
zint -o bar83.eps -b 82 --border=10 -d 3210987654321
zint -o bar83.svg -b 82 --border=10 -d 3210987654321
echo testing Micro PDF417
zint -o bar84.png -b 84 --border=10 -d "Demonstration MicroPDF417 symbol generated by libzint"
zint -o bar84.eps -b 84 --border=10 -d "Demonstration MicroPDF417 symbol generated by libzint"
zint -o bar84.svg -b 84 --border=10 -d "Demonstration MicroPDF417 symbol generated by libzint"
echo testing USPS OneCode 4-State Customer Barcode
zint -o bar85.png -b 85 --border=10 -d 01234567094987654321
zint -o bar85.eps -b 85 --border=10 -d 01234567094987654321
zint -o bar85.svg -b 85 --border=10 -d 01234567094987654321
echo testing Plessey Code with bidirectional reading support
zint -o bar86.png -b 86 --height=50 --border=10 -d 87654321
zint -o bar86.eps -b 86 --height=50 --border=10 -d 87654321
zint -o bar86.svg -b 86 --height=50 --border=10 -d 87654321
echo testing Telepen Numeric
zint -o bar87.png -b 87 --height=50 --border=10 -d 87654321
zint -o bar87.eps -b 87 --height=50 --border=10 -d 87654321
zint -o bar87.svg -b 87 --height=50 --border=10 -d 87654321
echo testing ITF-14
zint -o bar89.png -b 89 --height=50 --border=10 -d 3210987654321
zint -o bar89.eps -b 89 --height=50 --border=10 -d 3210987654321
zint -o bar89.svg -b 89 --height=50 --border=10 -d 3210987654321
echo testing KIX Code
zint -o bar90.png -b 90 --border=10 -d "1231FZ13Xhs"
zint -o bar90.eps -b 90 --border=10 -d "1231FZ13Xhs"
zint -o bar90.svg -b 90 --border=10 -d "1231FZ13Xhs"
echo testing Aztec Code
zint -o bar92.png -b 92 --border=10 -d "Demonstration Aztec Code symbol generated by libzint"
zint -o bar92.eps -b 92 --border=10 -d "Demonstration Aztec Code symbol generated by libzint"
zint -o bar92.svg -b 92 --border=10 -d "Demonstration Aztec Code symbol generated by libzint"
zint -o bar92a.png -b 92 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
zint -o bar92a.eps -b 92 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
zint -o bar92a.svg -b 92 --gs1 --border=10 -d "[01]98898765432106[02]13012345678909[10]1234567ABCDEFG[3202]012345[15]991231"
echo testing DAFT Code
zint -o bar93.png -b 93 --border=10 -d "daftdaftdaftdaftdaftdaftdaftdaftdaft"
zint -o bar93.eps -b 93 --border=10 -d "daftdaftdaftdaftdaftdaftdaftdaftdaft"
zint -o bar93.svg -b 93 --border=10 -d "daftdaftdaftdaftdaftdaftdaftdaftdaft"
echo testing Micro QR Code
zint -o bar97.png -b 97 --border=10 -d "MicroQR Code"
zint -o bar97.eps -b 97 --border=10 -d "MicroQR Code"
zint -o bar97.svg -b 97 --border=10 -d "MicroQR Code"
zint -o bar97k.png -b 97 --kanji --border=10 -d "小さい"
zint -o bar97k.eps -b 97 --kanji --border=10 -d "小さい"
zint -o bar97k.svg -b 97 --kanji --border=10 -d "小さい"
echo testing HIBC LIC 128
zint -o bar98.png -b 98 --border=10 -d "A99912345/9901510X3"
zint -o bar98.eps -b 98 --border=10 -d "A99912345/9901510X3"
zint -o bar98.svg -b 98 --border=10 -d "A99912345/9901510X3"
echo testing HIBC LIC 39
zint -o bar99.png -b 99 --border=10 -d "A123BJC5D6E71"
zint -o bar99.eps -b 99 --border=10 -d "A123BJC5D6E71"
zint -o bar99.svg -b 99 --border=10 -d "A123BJC5D6E71"
echo testing HIBC LIC Data Matrix
zint -o bar102.png -b 102 --border=10 -d "A99912345/9901510X3"
zint -o bar102.eps -b 102 --border=10 -d "A99912345/9901510X3"
zint -o bar102.svg -b 102 --border=10 -d "A99912345/9901510X3"
echo testing HIBC LIC QR-Code
zint -o bar104.png -b 104 --border=10 -d "A99912345/9901510X3"
zint -o bar104.eps -b 104 --border=10 -d "A99912345/9901510X3"
zint -o bar104.svg -b 104 --border=10 -d "A99912345/9901510X3"
echo testing HIBC LIC PDF417
zint -o bar106.png -b 106 --border=10 -d "A99912345/9901510X3"
zint -o bar106.eps -b 106 --border=10 -d "A99912345/9901510X3"
zint -o bar106.svg -b 106 --border=10 -d "A99912345/9901510X3"
echo testing HIBC LIC MicroPDF417
zint -o bar108.png -b 108 --border=10 -d "A99912345/9901510X3"
zint -o bar108.eps -b 108 --border=10 -d "A99912345/9901510X3"
zint -o bar108.svg -b 108 --border=10 -d "A99912345/9901510X3"
echo testing HIBC LIC Codablock F
zint -o bar110.png -b 110 --border=10 -d "A99912345/9901510X3"
zint -o bar110.eps -b 110 --border=10 -d "A99912345/9901510X3"
zint -o bar110.svg -b 110 --border=10 -d "A99912345/9901510X3"
echo testing Aztec Runes
zint -o bar128.png -b 128 --border=10 -d 125
zint -o bar128.eps -b 128 --border=10 -d 125
zint -o bar128.svg -b 128 --border=10 -d 125
echo testing Code 23
zint -o bar129.png -b 129 --border=10 -d "12345678"
zint -o bar129.eps -b 129 --border=10 -d "12345678"
zint -o bar129.svg -b 129 --border=10 -d "12345678"
echo testing EAN-8 Composite with CC-A
zint -o bar130.png -b 130 --height=100 --border=10 --mode=1 --primary=1234567 -d "[21]A12345678"
zint -o bar130.eps -b 130 --height=100 --border=10 --mode=1 --primary=1234567 -d "[21]A12345678"
zint -o bar130.svg -b 130 --height=100 --border=10 --mode=1 --primary=1234567 -d "[21]A12345678"
echo testing EAN-13 Composite with CC-A
zint -o bar130a.png -b 130 --height=100 --border=10 --mode=1 --primary=331234567890 -d "[99]1234-abcd"
zint -o bar130a.eps -b 130 --height=100 --border=10 --mode=1 --primary=331234567890 -d "[99]1234-abcd"
zint -o bar130a.svg -b 130 --height=100 --border=10 --mode=1 --primary=331234567890 -d "[99]1234-abcd"
echo testing UCC/EAN-128 Composite with CC-A
zint -o bar131.png -b 131 --height=100 --border=10 --mode=1 --primary="[01]03212345678906" -d "[10]1234567ABCDEFG"
zint -o bar131.eps -b 131 --height=100 --border=10 --mode=1 --primary="[01]03212345678906" -d "[10]1234567ABCDEFG"
zint -o bar131.svg -b 131 --height=100 --border=10 --mode=1 --primary="[01]03212345678906" -d "[10]1234567ABCDEFG"
echo testing UCC/EAN-128 Composite with CC-C
zint -o bar131a.png -b 131 --height=100 --border=10 --mode=3 --primary="[00]030123456789012340" -d "[02]13012345678909[10]1234567ABCDEFG"
zint -o bar131a.eps -b 131 --height=100 --border=10 --mode=3 --primary="[00]030123456789012340" -d "[02]13012345678909[10]1234567ABCDEFG"
zint -o bar131a.svg -b 131 --height=100 --border=10 --mode=3 --primary="[00]030123456789012340" -d "[02]13012345678909[10]1234567ABCDEFG"
echo testing RSS-14 Composite with CC-A
zint -o bar132.png -b 132 --height=100 --border=10 --mode=1 --primary=361234567890 -d "[11]990102"
zint -o bar132.eps -b 132 --height=100 --border=10 --mode=1 --primary=361234567890 -d "[11]990102"
zint -o bar132.svg -b 132 --height=100 --border=10 --mode=1 --primary=361234567890 -d "[11]990102"
echo testing RSS Limited Composite with CC-B
zint -o bar133.png -b 133 --height=100 --border=10 --mode=2 --primary=351234567890 -d "[21]abcdefghijklmnopqrstuv"
zint -o bar133.eps -b 133 --height=100 --border=10 --mode=2 --primary=351234567890 -d "[21]abcdefghijklmnopqrstuv"
zint -o bar133.svg -b 133 --height=100 --border=10 --mode=2 --primary=351234567890 -d "[21]abcdefghijklmnopqrstuv"
echo testing RSS Expanded Composite with CC-A
zint -o bar134.png -b 134 --height=100 --border=10 --mode=1 --primary="[01]93712345678904[3103]001234" -d "[91]1A2B3C4D5E"
zint -o bar134.eps -b 134 --height=100 --border=10 --mode=1 --primary="[01]93712345678904[3103]001234" -d "[91]1A2B3C4D5E"
zint -o bar134.svg -b 134 --height=100 --border=10 --mode=1 --primary="[01]93712345678904[3103]001234" -d "[91]1A2B3C4D5E"
echo testing UPC-A Composite with CC-A
zint -o bar135.png -b 135 --height=100 --border=10 --mode=1 --primary=10987654321 -d "[15]021231"
zint -o bar135.eps -b 135 --height=100 --border=10 --mode=1 --primary=10987654321 -d "[15]021231"
zint -o bar135.svg -b 135 --height=100 --border=10 --mode=1 --primary=10987654321 -d "[15]021231"
echo testing UPC-E Composite with CC-A
zint -o bar136.png -b 136 --height=100 --border=10 --mode=1 --primary=121230 -d "[15]021231"
zint -o bar136.eps -b 136 --height=100 --border=10 --mode=1 --primary=121230 -d "[15]021231"
zint -o bar136.svg -b 136 --height=100 --border=10 --mode=1 --primary=121230 -d "[15]021231"
echo testing RSS-14 Stacked Composite with CC-A
zint -o bar137.png -b 137 --border=10 --mode=1 --primary=341234567890 -d "[17]010200"
zint -o bar137.eps -b 137 --border=10 --mode=1 --primary=341234567890 -d "[17]010200"
zint -o bar137.svg -b 137 --border=10 --mode=1 --primary=341234567890 -d "[17]010200"
echo testing RSS-14 Stacked Omnidirectional Composite with CC-A
zint -o bar138.png -b 138 --border=10 --mode=1 --primary=341234567890 -d "[17]010200"
zint -o bar138.eps -b 138 --border=10 --mode=1 --primary=341234567890 -d "[17]010200"
zint -o bar138.svg -b 138 --border=10 --mode=1 --primary=341234567890 -d "[17]010200"
echo testing RSS Expanded Stacked Composite with CC-A
zint -o bar139.png -b 139 --height=150 --border=10 --mode=1 --primary="[01]00012345678905[10]ABCDEF" -d "[21]12345678"
zint -o bar139.eps -b 139 --height=150 --border=10 --mode=1 --primary="[01]00012345678905[10]ABCDEF" -d "[21]12345678"
zint -o bar139.svg -b 139 --height=150 --border=10 --mode=1 --primary="[01]00012345678905[10]ABCDEF" -d "[21]12345678"
echo testing Channel Code
zint -o bar140.png -b 140 --height=100 --border=10 -d "12345"
zint -o bar140.eps -b 140 --height=100 --border=10 -d "12345"
zint -o bar140.svg -b 140 --height=100 --border=10 -d "12345"
echo testing Code One
zint -o bar141.png -b 141 --border=10 -d "Demonstration Code One symbol generated by libzint"
zint -o bar141.eps -b 141 --border=10 -d "Demonstration Code One symbol generated by libzint"
zint -o bar141.svg -b 141 --border=10 -d "Demonstration Code One symbol generated by libzint"
echo testing PNG rotation
zint -o barrot0.png -b 130 --height=50 --border=10 --mode=1 --rotate=0 --primary=331234567890+01234 -d "[99]1234-abcd"
zint -o barrot90.png -b 130 --height=50 --border=10 --mode=1 --rotate=90 --primary=331234567890+01234 -d "[99]1234-abcd"
zint -o barrot180.png -b 130 --height=50 --border=10 --mode=1 --rotate=180 --primary=331234567890+01234 -d "[99]1234-abcd"
zint -o barrot270.png -b 130 --height=50 --border=10 --mode=1 --rotate=270 --primary=331234567890+01234 -d "[99]1234-abcd"
echo testing Extended ASCII support
zint -o barext.png --height=50 --border=10 -d "größer"
zint -o barext.svg --height=50 --border=10 -d "größer"
| woo-j/zint | win32/test.bat | bat | gpl-3.0 | 26,873 |
@echo off
rem filename : build.bat
rem author : huys
rem updated : 2008.11.21.
rem version : 0.1
echo **************************
echo ** ulib-win 0.1
echo ** author : huys
echo ** build : 200901
echo **************************
echo -------
echo -------
echo ==========================
echo Start building
echo ==========================
rem
make
echo ==========================
echo End building
echo ==========================
@pause
| pranav-pointer/ulib-win | build.bat | bat | apache-2.0 | 447 |
@echo off
java -Djava.ext.dirs=lib -Djava.library.path=lib MW_OSD_GUI
| dale3h/minimosd-flashpack-win64 | MW_OSD_GUI/MW_OSD_GUI_R1.4.1/MW_OSD_GUI.bat | bat | gpl-3.0 | 72 |
echo Process tree killer test : detached commands launcher
cd %~dp0
echo Running in : %CD%
start /B cmd.exe /C PTK_process2.bat
start /B cmd.exe /C PTK_process2.bat
start /B cmd.exe /C PTK_process2.bat
start /B cmd.exe /C PTK_process2.bat
echo waiting for 30 sec
ping -n 30 127.0.0.1
| ShatalovYaroslav/scheduling | scheduler/scheduler-server/src/test/resources/functionaltests/executables/PTK_launcher2.bat | bat | agpl-3.0 | 288 |
@echo off
REM *****************************************************************************
REM
REM Pentaho Data Integration
REM
REM Copyright (C) 2006 - ${copyright.year} by Hitachi Vantara : http://www.hitachivantara.com
REM
REM *****************************************************************************
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with
REM the License. You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
REM *****************************************************************************
setlocal
cd /D %~dp0
call "%~dp0set-pentaho-env.bat"
"%_PENTAHO_JAVA%" -Xmx2048m -classpath "%~dp0plugins\pdi-pur-plugin\*;%~dp0lib\*" com.pentaho.di.purge.RepositoryCleanupUtil %*
| wseyler/pentaho-kettle | assemblies/static/src/main/resources-filtered/purge-utility.bat | bat | apache-2.0 | 1,148 |
del libdhcps.a
md main.lib
cd main.lib
C:\Espressif\xtensa-lx106-elf\bin\xtensa-lx106-elf-ar x C:\Espressif\ESP8266_SDK\lib\liblwip.a
C:\Espressif\xtensa-lx106-elf\bin\xtensa-lx106-elf-ar ru ..\libdhcps.a dhcpserver.o
cd ..
rd /q /s main.lib
| pvvx/esp8266web | lib200/new_libdhcps.bat | bat | unlicense | 242 |
universe = vanilla
executable = x_perf_transfer_remote.pl
arguments = backdata
transfer_input_files = transfers/data
output = perf_xfer_deb_10_10_30_van.out
error = perf_xfer_deb_10_10_30_van.err
log = perf_xfer_deb_10_10_30_van.log
periodic_remove = (time() - QDate) > (24 * 60 * 60)
should_transfer_files = YES
when_to_transfer_output = ON_EXIT_OR_EVICT
Notification = NEVER
queue 30
| bbockelm/htcondor | src/condor_tests/perf_xfer_deb_10_10_30_van.cmd | bat | apache-2.0 | 389 |
@rem Copyright 2016 gRPC authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
setlocal
cd /d %~dp0\..\..\..\src\csharp
dotnet build --configuration %MSBUILD_CONFIG% Grpc.sln || goto :error
endlocal
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
| daniel-j-born/grpc | tools/run_tests/helper_scripts/build_csharp.bat | bat | apache-2.0 | 793 |
set APP_NAME=myAppName
REM Change the above for each new App.
REM use the foloowing if you want output to go to the xoutput.txt file
REM phonegap create %APP_NAME% com.mysite.&APP_NAME% %APP_NAME% > xoutput.txt 2>&1
phonegap create %APP_NAME% com.mysite.&APP_NAME% %APP_NAME%
| hpssjellis/j03-batch-cmd-windows-android-pgb-helloworld | haveAdminAccess/d-androidCreate.cmd | bat | mit | 286 |
copy ..\NemerleWeb.Macros\bin\Debug\NemerleWeb.* ..\NemerleWeb.NugetPackage\lib\net45
copy ..\NemerleWeb.TypedJS\bin\Debug\NemerleWeb.TypedJS.* ..\NemerleWeb.NugetPackage\lib\net45
copy ..\TSParser\bin\Debug\TSParser.* ..\NemerleWeb.NugetPackage\lib\net45
..\.nuget\nuget pack ..\NemerleWeb.NugetPackage\NemerleWeb.nuspec -OutputDirectory ..\NemerleWeb.NugetPackage\ | NemerleWeb/NemerleWeb | NemerleWeb/CreateNugetPackage.cmd | bat | mit | 366 |
c:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild META\test\run.msbuild | pombredanne/metamorphosys-desktop | metamorphosys/run_META_tests.cmd | bat | mit | 75 |
@echo off
setlocal
rem
rem Copyright (c) 1999, 2014 Tanuki Software, Ltd.
rem http://www.tanukisoftware.com
rem All rights reserved.
rem
rem This software is the proprietary information of Tanuki Software.
rem You shall use it only in accordance with the terms of the
rem license agreement you entered into with Tanuki Software.
rem http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html
rem
rem Java Service Wrapper general passthrough startup script.
rem
rem -----------------------------------------------------------------------------
rem These settings can be modified to fit the needs of your application
rem Optimized for use with version 3.5.24 of the Wrapper.
rem The base name for the Wrapper binary.
set _WRAPPER_BASE=wrapper
rem The directory where the Wrapper binary (.exe) file is located, this can be
rem either a absolute or relative path. If the path contains any special characters,
rem please make sure to quote the variable.
set _WRAPPER_DIR=
rem The name and location of the Wrapper configuration file. This will be used
rem if the user does not specify a configuration file as the first parameter to
rem this script. It will not be possible to specify a configuration file on the
rem command line if _PASS_THROUGH is set.
rem If a relative path is specified, please note that the location is based on the
rem location.
set _WRAPPER_CONF_DEFAULT="./%_WRAPPER_BASE%.conf"
rem Makes it possible to override the Wrapper configuration file by specifying it
rem as the first parameter.
rem set _WRAPPER_CONF_OVERRIDE=true
rem _PASS_THROUGH tells the script to pass all parameters through to the JVM as
rem is.
rem set _PASS_THROUGH=true
rem Do not modify anything beyond this point
rem -----------------------------------------------------------------------------
rem
rem Resolve the real path of the wrapper.exe
rem For non NT systems, the _REALPATH and _WRAPPER_CONF values
rem can be hard-coded below and the following test removed.
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem Find the application home.
rem if no path path specified do the default action
IF not DEFINED _WRAPPER_DIR goto dir_undefined
set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR:"=%"
if not "%_WRAPPER_DIR:~-2,1%" == "\" set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR_QUOTED:"=%\"
rem check if absolute path
if "%_WRAPPER_DIR_QUOTED:~2,1%" == ":" goto absolute_path
if "%_WRAPPER_DIR_QUOTED:~1,1%" == "\" goto absolute_path
rem everythig else means relative path
set _REALPATH="%~dp0%_WRAPPER_DIR_QUOTED:"=%"
goto pathfound
:dir_undefined
rem Use a relative path to the wrapper %~dp0 is location of current script under NT
set _REALPATH="%~dp0"
goto pathfound
:absolute_path
rem Use an absolute path to the wrapper
set _REALPATH="%_WRAPPER_DIR_QUOTED:"=%"
:pathfound
rem
rem Decide on the specific Wrapper binary to use (See delta-pack)
rem
if "%PROCESSOR_ARCHITEW6432%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="IA64" goto ia64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-32.exe"
goto search
:amd64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-64.exe"
goto search
:ia64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-ia-64.exe"
goto search
:search
set _WRAPPER_EXE="%_WRAPPER_L_EXE:"=%"
if exist %_WRAPPER_EXE% goto conf
set _WRAPPER_EXE="%_REALPATH:"=%%_WRAPPER_BASE%.exe"
if exist %_WRAPPER_EXE% goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_WRAPPER_L_EXE%
echo %_WRAPPER_EXE%
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
if not [%_WRAPPER_CONF_OVERRIDE%]==[] (
set _WRAPPER_CONF="%~f1"
if not [%_WRAPPER_CONF%]==[""] (
shift
goto :startup
)
)
set _WRAPPER_CONF="%_WRAPPER_CONF_DEFAULT:"=%"
rem
rem Start the Wrapper
rem
:startup
rem Collect an parameters
:parameters
set _PARAMETERS=%_PARAMETERS% %1
shift
if not [%1]==[] goto :parameters
if [%_PASS_THROUGH%]==[] (
%_WRAPPER_EXE% -c %_WRAPPER_CONF%
) else (
%_WRAPPER_EXE% -c %_WRAPPER_CONF% -- %_PARAMETERS%
)
if not errorlevel 1 goto :eof
pause
| ntatsumi/newrelic-postgresql | wrapper/plugin.bat | bat | mit | 4,328 |
REM force (f) clean on all files and directories (d), including ignored files (x)
git clean -fxd
pause | narfster/leopard_directshow | git_fresh.bat | bat | mit | 103 |
; echo off
set d=%CD%
set bd=win-vs2012-x86_64
set bits=32
set type=%1
set cmake_bt="Release"
set cmake_gen="Visual Studio 11 Win64"
set cmake_opt=""
if "%type%" == "" (
echo "Usage: build.bat [debug, release]"
exit /b 2
)
if "%bits%" == "32" (
set bd=win-vs2012-i386
set cmake_gen="Visual Studio 11"
set cmake_opt="-DPLAYER_USE_32BIT=1"
)
if "%type%" == "debug" (
set bd="%bd%d"
set cmake_bt="Debug"
)
if not exist "%d%\%bd%" (
mkdir %d%\%bd%
)
cd %d%\%bd%
cmake -DUSE_32BIT=1 -DCMAKE_BUILD_TYPE=%cmake_bt% -G %cmake_gen% %cmake_opt% ..
cmake --build . --target install --config %cmake_bt%
cd %d%
cd ..\install\%bd%\bin
rxp_glfw_player.exe
| roxlu/rxp_player | build/build.bat | bat | mit | 714 |
REM Copyright (c) .NET Foundation and contributors. All rights reserved.
REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
@echo off
REM Get absolute path
pushd %1
set BIN_DIR=%CD%\bin
popd
REM Replace with a robust method for finding the right crossgen.exe
set CROSSGEN_UTIL=%UserProfile%\.dnx\packages\runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR\1.0.1-beta-23504\tools\crossgen.exe
REM Crossgen currently requires itself to be next to mscorlib
copy %CROSSGEN_UTIL% /Y %BIN_DIR% > nul
pushd %BIN_DIR%
REM It must also be called mscorlib, not mscorlib.ni
if exist mscorlib.ni.dll (
copy /Y mscorlib.ni.dll mscorlib.dll > nul
)
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% System.Collections.Immutable.dll >nul 2>nul
if not %errorlevel% EQU 0 goto fail
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% System.Reflection.Metadata.dll >nul 2>nul
if not %errorlevel% EQU 0 goto fail
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.dll >nul 2>nul
if not %errorlevel% EQU 0 goto fail
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.CSharp.dll >nul 2>nul
if not %errorlevel% EQU 0 goto fail
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.VisualBasic.dll >nul 2>nul
if not %errorlevel% EQU 0 goto fail
crossgen /MissingDependenciesOK /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% csc.exe >nul 2>nul
if not %errorlevel% EQU 0 goto fail
crossgen /MissingDependenciesOK /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% vbc.exe >nul 2>nul
if not %errorlevel% EQU 0 goto fail
popd
goto end
:fail
popd
echo Crossgen failed...
exit /B 1
:end
| piotrpMSFT/cli-old | scripts/crossgen/crossgen_roslyn.cmd | bat | mit | 1,788 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\node_modules\@angular\compiler-cli\src\extract_i18n.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\node_modules\@angular\compiler-cli\src\extract_i18n.js" %*
) | batz91/Tlushi | tlushi-application-android/ng-xi18n.cmd | bat | mit | 244 |
@echo off
rem Copyright (c) Wave Coorporation 2018. All rights reserved.
setlocal
set error=0
set fxcpath="C:\Program Files (x86)\Windows Kits\8.1\bin\x86\fxc.exe"
call :CompileShader Fog ps psFog
call :CompileShader Fog ps psFogExp
call :CompileShader Fog ps psFogExp2
echo.
if %error% == 0 (
echo Shaders compiled ok
) else (
echo There were shader compilation errors!
)
endlocal
exit /b
:CompileShader
set fxc=%fxcpath% /nologo %1.fx /T %2_4_0_level_9_3 /E %3 /Fo %3.fxo
echo.
echo %fxc%
%fxc% || set error=1
exit /b
| WaveEngine/Extensions | WaveEngine.ImageEffects/Shared/Shaders/HLSL/FogMaterial/CompileShaders.cmd | bat | mit | 538 |
for /f %%f in ('dir /b %USERPROFILE%\documents\github\useful-javascript-functions\*.js') do %USERPROFILE%\documents\github\useful-javascript-functions\node_modules\.bin\jsdoc %USERPROFILE%\documents\GitHub\useful-javascript-functions\%%f -d %USERPROFILE%\documents\github\useful-javascript-functions\documentation\%%f | djhvscf/useful-javascript-functions | run.bat | bat | mit | 317 |
@echo off
setlocal
:: PROGRAM EXIT CODES
:: 0 - everything ok
:: 1 - no argument passed or file not found
:: 2 - not a .cs file
:: 3 - compilation error
:: Debug variables
set "me=%~n0"
set "parent=%~dp0"
set "bcd=%cd%"
set "errorlevel=0"
:: Application variables
set "CompanyName=Svetomech"
set "ProductName=cscCLI"
set "ProductVersion=1.9.5.0"
set "ProductRepository=https://github.com/Svetomech/cscCLI"
:: Global variables
set "DesiredAppDirectory=%LocalAppData%\%CompanyName%\%ProductName%"
set "MainConfig=%DesiredAppDirectory%\%ProductName%.txt"
set "VS2015RelativePath=MSBuild\14.0\Bin"
set "VS2017RelativePath=Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Roslyn"
set "CompilerOptions=/warn:0 /nologo"
:Main:
:: Some initialisation work
set "title=%ProductName% %ProductVersion% by %CompanyName%"
title %title%
color 07
cls
chcp 1252 >nul 2>&1
:: Read settings
if not exist "%DesiredAppDirectory%" mkdir "%DesiredAppDirectory%"
if exist "%MainConfig%" (
call :LoadSetting "ProductVersion" SettingsProductVersion
)
:: Check version
if "%SettingsProductVersion%" LSS "%ProductVersion%" (
call :WriteLog "Outdated version, updating now..."
call :SaveSetting "ProductVersion" "%ProductVersion%"
) else (
call :WriteLog "Up to date"
)
:: Handle console arguments
set "csFile=%~f1"
set "frameworkChoice=%~2"
set "compilerOptionsExtra=%~3"
if not defined csFile (
call :WriteLog "Please, drag and drop a C# source file onto me"
call :Exit "1"
)
call :IsFileValid "%csFile%"
if not "%errorlevel%"=="0" (
call :WriteLog "Not a C# source file"
call :Exit "%errorlevel%"
)
call :WriteLog "Found %csFile%"
:: Determine framework root
set "cscDirectory=%SystemRoot%\Microsoft.NET"
call :Is32bitOS
if "%errorlevel%"=="0" (
set "is32Bit=true"
)
set "errorlevel=0"
if defined is32Bit (
call :WriteLog "Detected that 32-bit OS is running"
set "cscDirectory=%cscDirectory%\Framework"
set "ProgramFiles(x86)=%ProgramFiles%"
) else (
call :WriteLog "Detected that 64-bit OS is running"
set "cscDirectory=%cscDirectory%\Framework64"
)
:: Choose framework version
call :PrintFrameworkVersions
if defined frameworkChoice (
call :WriteLog "Choose an option: %frameworkChoice%"
) else (
set /p "frameworkChoice= %me%: Choose an option: "
)
call :IsNumeric "%frameworkChoice%"
if not "%errorlevel%"=="0" (
call :WriteLineLog "Invalid choice! Enter a number"
call :Restart "%csFile%"
)
if %frameworkChoice% LSS 1 (
call :WriteLineLog "Invalid choice! No such option"
call :Restart "%csFile%"
)
if %frameworkChoice% GTR 5 (
call :WriteLineLog "Invalid choice! No such option"
call :Restart "%csFile%"
)
:: Handle user choice
if "%frameworkChoice%"=="1" set "cscDirectory=%cscDirectory%\v2.0.50727"
if "%frameworkChoice%"=="2" set "cscDirectory=%cscDirectory%\v3.5"
if "%frameworkChoice%"=="3" set "cscDirectory=%cscDirectory%\v4.0.30319"
if "%frameworkChoice%"=="4" (
if defined is32Bit (
set "cscDirectory=%ProgramFiles(x86)%\%VS2015RelativePath%"
) else (
set "cscDirectory=%ProgramFiles(x86)%\%VS2015RelativePath%\amd64"
)
)
if "%frameworkChoice%"=="5" set "cscDirectory=%ProgramFiles(x86)%\%VS2017RelativePath%"
if not exist "%cscDirectory%\csc.exe" (
call :WriteLineLog "Invalid choice! Framework not found"
call :Restart "%csFile%"
)
:: Compile source file
set "fullCompilerOptions=%CompilerOptions% %compilerOptionsExtra%"
call :GetCsFileName "%csFile%" "%fullCompilerOptions%" csFileName
"%cscDirectory%\csc.exe" %fullCompilerOptions% "%csFile%" >stdout.txt 2>&1 || set "errorlevel=3"
if not "%errorlevel%"=="3" (
erase stdout.txt
title %title% ^| SUCCESS
call :WriteLineLog "Produced %csFileName% in %cd%"
) else (
title %title% ^| FAILURE
call :WriteLineLog "Check stdout.txt in %cd%"
)
call :Exit "%errorlevel%"
exit
:: PRIVATE
:IsFileValid: "filePath"
set "errorlevel=0"
echo %~1 | find /i ".cs" >nul 2>&1 || set "errorlevel=2"
if not exist "%~1" set "errorlevel=1"
exit /b %errorlevel%
:PrintFrameworkVersions: ""
echo.
echo %me%: FRAMEWORK VERSION
echo %me%: 1. v2.0 (C# 2.0)
echo %me%: 2. v3.5 (C# 3.0)
echo %me%: 3. v4.0+ (C# 4.0 - C# 5.0)
echo %me%: 4. v4.6 (C# 6.0, VS 2015)
echo %me%: 5. v4.7 (C# 7.0, VS 2017)
echo.
exit /b
:GetCsFileName: "filePath" "compilerOptions" variableName
set "_compilerOptions=%~2"
if not "%_compilerOptions:/out:=%"=="%_compilerOptions%" (
set "%~3=%_compilerOptions:*/out:=%"
exit /b
)
if not "%_compilerOptions:/target:library=%"=="%_compilerOptions%" (
set "%~3=%~n1.dll"
) else (
set "%~3=%~n1.exe"
)
set "_compilerOptions="
exit /b
:: PUBLIC
:LoadSetting: "key" variableName
for /f "tokens=1 delims=[]" %%n in ('find /i /n "%~1" ^<"%MainConfig%"') do set /a "$n=%%n+1"
for /f "tokens=1* delims=[]" %%a in ('find /n /v "" ^<"%MainConfig%"^|findstr /b "\[%$n%\]"') do set "%~2=%%b"
exit /b
:SaveSetting: "key" "value"
echo %~1 %date% %time%>> "%MainConfig%"
echo %~2>> "%MainConfig%"
echo.>> "%MainConfig%"
exit /b
:WriteLog: "message"
echo %me%: %~1
exit /b
:WriteLineLog: "message"
echo.
echo %me%: %~1
exit /b
:Is32bitOS: ""
set "errorlevel=0"
reg query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" >nul 2>&1 || set "errorlevel=1"
exit /b %errorlevel%
:IsNumeric: "input"
set "errorlevel=0"
set "_input=%~1"
if "%_input:~0,1%"=="-" set "_input=%_input:~1%"
set "_var="&for /f "delims=0123456789" %%i in ("%_input%") do set "_var=%%i"
if defined _var set "errorlevel=1"
set "_var="
set "_input="
exit /b %errorlevel%
:Restart: "args="
timeout /t 2 >nul 2>&1
goto Main
:Exit: "errorCode"
timeout /t 2 /nobreak >nul 2>&1
exit %~1 | Svetomech/cscCLI | cscCLI.cmd | bat | mit | 5,703 |
@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\PedestrianTracking.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PedestrianTracking.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
| julierthanjulie/PedestrianTracking | doc/make.bat | bat | mit | 6,725 |
rscript document.R
pause | swharden/ROI-Analysis-Pipeline | boshROI/dev/document.bat | bat | mit | 24 |
cmd_drivers/gpu/stub/built-in.o := rm -f drivers/gpu/stub/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/gpu/stub/built-in.o
| asopov/linux-tpt-2.6.39 | drivers/gpu/stub/.built-in.o.cmd | bat | gpl-2.0 | 185 |
cmd_drivers/net/wireless/built-in.o := arm-linux-ld -EL -r -o drivers/net/wireless/built-in.o drivers/net/wireless/hostap/built-in.o drivers/net/wireless/zd1201.o
| beebingoo/linux-2.6.32.2 | drivers/net/wireless/.built-in.o.cmd | bat | gpl-2.0 | 168 |
cmd_sound/core/built-in.o := /home/flint/android/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-ld -EL -r -o sound/core/built-in.o sound/core/snd.o sound/core/snd-hwdep.o sound/core/snd-timer.o sound/core/snd-pcm.o sound/core/snd-page-alloc.o sound/core/snd-rawmidi.o ; scripts/mod/modpost sound/core/built-in.o
| lindsaytheflint/stone | sound/core/.built-in.o.cmd | bat | gpl-2.0 | 349 |
@echo off
set SRC_ROOT=%~dp0..
java -cp "%SRC_ROOT%\lib\javamop.jar;%SRC_ROOT%\lib\logicrepository.jar;%SRC_ROOT%\lib\plugins\*.jar;%SRC_ROOT%\lib\mysql-connector-java-3.0.9-stable-bin.jar" javamop.Main %*
| zhang123shuo/javamop | bin/javamop.bat | bat | gpl-2.0 | 211 |
@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\src.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\src.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
| edeposit/edeposit.amqp.serializers | docs/make.bat | bat | gpl-2.0 | 6,694 |
cmd_drivers/video/logo/built-in.o := ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ld -EL -r -o drivers/video/logo/built-in.o drivers/video/logo/logo.o drivers/video/logo/logo_linux_mono.o drivers/video/logo/logo_linux_vga16.o drivers/video/logo/logo_linux_clut224.o
| chrnueve/udooImaxdi | kernel_oficial_source/drivers/video/logo/.built-in.o.cmd | bat | gpl-2.0 | 277 |
cmd_drivers/crypto/built-in.o := rm -f drivers/crypto/built-in.o; mips-openwrt-linux-uclibc-ar rcsD drivers/crypto/built-in.o
| shizhai/wprobe | build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/drivers/crypto/.built-in.o.cmd | bat | gpl-2.0 | 127 |
cmd_/home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/hal_evoreg.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/ILC-with-LinuxCNC-ILCv1/src/hal_evoreg.ko /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/hal_evoreg.o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/hal_evoreg.mod.o
| CalvinHsu1223/LinuxCNC-HAL-EtherCAT-Driver-with-ILC | src/.hal_evoreg.ko.cmd | bat | gpl-2.0 | 349 |
>>> 'Computer Science'.swapcase().endswith('ENCE')
True
| simontakite/sysadmin | pythonscripts/practicalprogramming/modules/swap_endswith.cmd | bat | gpl-2.0 | 56 |
cmd_net/bridge/netfilter/ebtables.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/bridge/netfilter/ebtables.ko net/bridge/netfilter/ebtables.o net/bridge/netfilter/ebtables.mod.o
| avareldalton85/rpi2-linux-rt | net/bridge/netfilter/.ebtables.ko.cmd | bat | gpl-2.0 | 287 |
%PYTHON% setup.py install
if errorlevel 1 exit 1
del %SCRIPTS%\conda-init
if errorlevel 1 exit 1
%PYTHON% setup.py --version > __conda_version__.txt
| poppy-project/poppy-4dof-arm-mini | software/conda.recipe/bld.bat | bat | gpl-3.0 | 160 |
@echo off
"c:\Program Files\Puppet Labs\Puppet Enterprise\bin\facter" --puppet operatingsystem
| pmanwatkar/actionScripts | facterWindows/operatingsystem_Windows.bat | bat | gpl-3.0 | 95 |
@echo off
SETLOCAL
SET Ahk2Exe=.\Ahk2Exe.exe
if not exist "%Ahk2Exe%" SET Ahk2Exe=.\AutoHotkey\Ahk2Exe.exe
if not exist "%Ahk2Exe%" SET Ahk2Exe=.\.AutoHotkey\Ahk2Exe.exe
if exist "%Ahk2Exe%" (
taskkill /F /IM FB_TimeSaver.exe >nul 2>&1
"%Ahk2Exe%" /in FB_TimeSaver.ahk /out FB_TimeSaver.exe
start "" FB_TimeSaver.exe
::echo Done.
::pause
exit
) else (
if exist ".\Ahk2Exe_AIO.exe" (
start "" ".\Ahk2Exe_AIO.exe"
exit
) else (
echo.
echo - Download Ahk2Exe "recommended this version", to build the exe file, :
echo.
echo https://github.com/hossam-magdy/FB-TimeSaver/releases/download/Ahk2Exe-AIO/Ahk2Exe-AIO.zip
::echo Page: https://github.com/hossam-magdy/FB-TimeSaver/releases/tag/Ahk2Exe-AIO
echo.
echo - extract the zip file here then re-run this file
echo.
pause
)
)
| hossam-magdy/FB-TimeSaver | _GuideToBuildEXE_.bat | bat | gpl-3.0 | 809 |
::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::launches program in debug mode::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::
@Echo Off
START viewer.exe debug
EXIT
::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::::::: | s-cherepanov/objmodelviewer | bin/debug.bat | bat | gpl-3.0 | 355 |
#!/bin/bash
echo LIB2EXE.BAT $1 $BUILD_EXE
EXENAM=$1
LIBNAM=$2
TARGET=$BUILD_EXE/$EXENAM.exe
RSPLNK=$BUILD_OBJ/rsplink
rm $TARGET 2>/dev/null
rm $RSPLNK 2>/dev/null
rm error 2>/dev/null
echo -o $TARGET >$RSPLNK
for i in $BUILD_LPT; do echo -L$i >>$RSPLNK; done
# Solaris-8/9/10 rendszereken a linkelés a solarisos ld-vel történik,
# ezeken a rendszereken a --start-group opciót ki kell kommentezni.
# A NexentaOS a GNU linkerrel linkel: --start-group-ot benn kell hagyni.
#echo -Wl,--start-group >>$RSPLNK
echo $BUILD_OBJ/$EXENAM.obj >>$RSPLNK
echo $BUILD_OBJ/$LIBNAM.lib >>$RSPLNK
for i in $BUILD_LIB; do echo $i >>$RSPLNK; done
#echo -Wl,--end-group >>$RSPLNK
echo `cat $CCCDIR/usr/options/$CCCBIN/link.opt` >>$RSPLNK
if ! c++ `cat $RSPLNK` 2>outlnk; then
cp outlnk error;
rm $TARGET 2>/dev/null;
fi
echo ----------------------------------------------------------------
| mrev11/ccc3 | usr/build/solaris/lib2exe.bat | bat | lgpl-2.1 | 904 |
echo off
rem #####################################################################
rem This file is subject to the terms and conditions defined in the\n
rem files 'LICENSE' and 'NOTICE', which are part of this source\n
rem code package.
rem #####################################################################
%~d0
set OFBIZ_HOME=%~p0
rem ### Simple easy to read line
cd %OFBIZ_HOME%
echo on
"%JAVA_HOME%\bin\java" -jar ofbiz.jar -shutdown
echo off
rem ### If you would prefer the console output to be logged rather than displayed switch out the above line for this one
rem "%JAVA_HOME%\bin\java" -Xms128M -Xmx512M -XX:MaxPermSize=512m -jar ofbiz.jar > runtime\logs\console.log
| ilscipio/scipio-erp | stop.bat | bat | apache-2.0 | 683 |
@ECHO OFF
java -classpath "..\lib\*;" com.lewisd.ksp.craftstats.StageParts %*
| lewisd32/craftstats | craftstats-assembly/src/main/bin/stageparts.bat | bat | apache-2.0 | 79 |
setlocal
if EXIST build.ok DEL /f /q build.ok
call %~d0%~p0..\..\config.bat
@if ERRORLEVEL 1 goto Error
if NOT "%FSC:NOTAVAIL=X%" == "%FSC%" (
REM Skipping test for FSI.EXE
goto Skip
)
REM UNICODE test1-unicode
REM Regression test for FSB 1885
"%FSLEX%" repro1885.fsl
@if ERRORLEVEL 1 goto Error
"%FSLEX%" --light-off -o test1lex.fs test1lex.mll
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --light-off --module TestParser -o test1.fs test1.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test1%ILX_SUFFIX%.exe tree.ml test1.fsi test1.fs test1lex.fs main.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test1%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --light-off --module TestParser -o test2.fs test2.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test2%ILX_SUFFIX%.exe tree.ml test2.fsi test2.fs test1lex.fs main.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test2%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSLEX%" --light-off --unicode -o test1-unicode-lex.fs test1-unicode-lex.mll
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --light-off --module TestParser -o test1-unicode.fs test1-unicode.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test1-unicode%ILX_SUFFIX%.exe tree.ml test1-unicode.fsi test1-unicode.fs test1-unicode-lex.fs main-unicode.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test1-unicode%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSLEX%" -o test1lex.ml test1lex.mll
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --module TestParser -o test1.ml test1.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test1%ILX_SUFFIX%.exe tree.ml test1.mli test1.ml test1lex.ml main.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test1%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --module TestParser -o test1compat.ml --ml-compatibility test1.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test1compat%ILX_SUFFIX%.exe tree.ml test1compat.mli test1compat.ml test1lex.ml main.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test1compat%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --module TestParser -o test2.ml test2.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test2%ILX_SUFFIX%.exe tree.ml test2.mli test2.ml test1lex.ml main.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test2%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --module TestParser -o test2compat.ml --ml-compatibility test2.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test2compat%ILX_SUFFIX%.exe tree.ml test2compat.mli test2compat.ml test1lex.ml main.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test2compat%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
"%FSLEX%" --unicode -o test1-unicode-lex.ml test1-unicode-lex.mll
@if ERRORLEVEL 1 goto Error
"%FSYACC%" --module TestParser -o test1-unicode.ml test1-unicode.mly
@if ERRORLEVEL 1 goto Error
"%FSC%" %fsc_flags% -g -o:test1-unicode%ILX_SUFFIX%.exe tree.ml test1-unicode.mli test1-unicode.ml test1-unicode-lex.ml main-unicode.ml
@if ERRORLEVEL 1 goto Error
"%PEVERIFY%" test1-unicode%ILX_SUFFIX%.exe
@if ERRORLEVEL 1 goto Error
:Ok
echo Passed fsharp %~f0 ok.
echo. > build.ok
endlocal
exit /b 0
:Skip
echo Skipped %~f0
endlocal
exit /b 0
:Error
call %SCRIPT_ROOT%\ChompErr.bat %ERRORLEVEL% %~f0
endlocal
exit /b %ERRORLEVEL%
| fsprojects/powerpack-archive | workyard/tests/fsyacc/build.bat | bat | apache-2.0 | 3,412 |
"C:\Program Files\PostgreSQL\9.4\bin\psql.exe" -h localhost -U postgres -d report_manager_database -p 5432 -f ..\trig_log_state_history.sql 1> test_trig_log_state_history.log 2>&1
"C:\Program Files\PostgreSQL\9.4\bin\psql.exe" -h localhost -U postgres -d report_manager_database -p 5432 -f test_trig_log_state_history.sql 1>> test_trig_log_state_history.log 2>>&1
| james-cantrill/funda_components | system_user/system_user_database/utility_functions/test/test_trig_log_state_history.bat | bat | apache-2.0 | 375 |
@ECHO OFF
:USAGE
:START
:INITIALIZE
SETLOCAL ENABLEDELAYEDEXPANSION
SET BASE_DIR=%~DP0
SET IN_GLOBALS_FILE=%1
SET IN_VAR_NAME=%2
SET IN_VALUE=%3
:CODE
IF NOT EXIST "%IN_GLOBALS_FILE%" (
COPY /Y NUL "%IN_GLOBALS_FILE%" > NUL 2>&1
)
FOR /F %%I IN ("%IN_GLOBALS_FILE%") DO (
SET TEMP_GLOBALS_FILE=%TEMP%\%%~NXI
)
COPY /Y NUL "%TEMP_GLOBALS_FILE%" > NUL 2>&1
FOR /F "TOKENS=1,2*" %%I IN (%IN_GLOBALS_FILE%) DO (
IF NOT %%I == %IN_VAR_NAME% (
ECHO %%I %%J >> "%TEMP_GLOBALS_FILE%"
)
)
ECHO %IN_VAR_NAME% %IN_VALUE% >> "%TEMP_GLOBALS_FILE%"
TYPE "%TEMP_GLOBALS_FILE%" > "%IN_GLOBALS_FILE%"
DEL /S /Q "%TEMP_GLOBALS_FILE%" > NUL 2>&1
:RETURN
ENDLOCAL
:EOF
| phoenix-star/batch-gc | set-global.bat | bat | bsd-2-clause | 777 |
bcdedit /create {AA48ABEF-FF35-4f09-874F-4CFF92467DC4} /d "KolibriOS" /application BOOTSECTOR
bcdedit /set {AA48ABEF-FF35-4f09-874F-4CFF92467DC4} DEVICE PARTITION=C:
bcdedit /set {AA48ABEF-FF35-4f09-874F-4CFF92467DC4} PATH \mtldr
bcdedit /displayorder {AA48ABEF-FF35-4f09-874F-4CFF92467DC4} /addlast | devlato/kolibrios-llvm | programs/hd_load/mtldr/vista_install.bat | bat | mit | 299 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASRM.S05_SmartReply.MSASRM_S05_TC03_SmartReply_ExportAllowed_True /testcontainer:..\..\MS-ASRM\TestSuite\bin\Debug\MS-ASRM_TestSuite.dll /runconfig:..\..\MS-ASRM\MS-ASRM.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeActiveSync/Source/Scripts/MS-ASRM/RunMSASRM_S05_TC03_SmartReply_ExportAllowed_True.cmd | bat | mit | 290 |
set Project=Cordova04
set ProjectSmall=codova04
create g:\temp\%Project% com.elvenware.%ProjectSmall% %Project% | donlee888/JsObjects | Utilities/CreateCordova/CreateCordova.bat | bat | mit | 111 |
cmd_sound/core/snd-page-alloc.o := arm-linux-gnueabihf-ld -EL -r -o sound/core/snd-page-alloc.o sound/core/memalloc.o
| Dee-UK/D33_KK_Kernel | sound/core/.snd-page-alloc.o.cmd | bat | gpl-2.0 | 122 |
@echo off
@set path=%path%;c:\python27\
@echo ------------------------------------------------------------
@echo KICOM Anti-Virus II (for WIN32) Build Tool Ver 0.11
@echo Copyright (C) 1995-2017 Kei Choi. All rights reserved.
@echo ------------------------------------------------------------
@echo.
if "%1" == "erase" goto START
if "%1" == "build" goto START
@echo Usage : builder.bat [build][erase]
goto END
:START
@echo [*] Delete all files in Release
if exist Release (
@rd /Q /S Release > nul
)
if exist "key.skr" @del key.skr > nul
if exist "key.pkr" @del key.pkr > nul
if "%1" == "erase" (
@echo [*] Delete Success
goto END
)
:BUILD
@echo [*] Engine file copy to the Release folder...
@xcopy Engine\* Release\ /e > nul
if not exist "key.pkr" @python.exe Tools\mkkey.py
if not exist "key.skr" @python.exe Tools\mkkey.py
@copy key.* Release\plugins > nul
@rem copy Tools\kmake.py Release\plugins > nul
@cd Release\plugins
@echo [*] Build Engine files...
@python.exe ..\..\Tools\kmake.py kicom.lst
for %%f in (*.py) do (
if %%f neq kmake.py (
@python.exe ..\..\Tools\kmake.py %%f
)
)
@del /Q *.py > nul
@del kicom.lst > nul
@del key.skr > nul
@del __init__.kmd > nul
@cd ..
@echo [*] Build Success
:END
| hanul93/kicomav | build.bat | bat | gpl-2.0 | 1,266 |
cmd_arch/arm/lib/copy_to_user.o := /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.copy_to_user.o.d -nostdinc -isystem /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/../lib/gcc/arm-eabi/4.6.x-google/include -I/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/plat-rk/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/copy_to_user.o arch/arm/lib/copy_to_user.S
source_arch/arm/lib/copy_to_user.o := arch/arm/lib/copy_to_user.S
deps_arch/arm/lib/copy_to_user.o := \
$(wildcard include/config/thumb2/kernel.h) \
/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include/asm/linkage.h \
/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include/asm/hwcap.h \
/media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Archos/97b_Titan/kernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/lib/copy_template.S \
arch/arm/lib/copy_to_user.o: $(deps_arch/arm/lib/copy_to_user.o)
$(deps_arch/arm/lib/copy_to_user.o):
| EPDCenter/android_kernel_archos_97_titan | arch/arm/lib/.copy_to_user.o.cmd | bat | gpl-2.0 | 2,598 |
@echo OFF
set "AppVersion=8000"
set "AppVersionStrSmall=0.8"
set "AppVersionStr=0.8.0"
set "AppVersionStrFull=0.8.0.0"
set "DevChannel=0"
if %DevChannel% neq 0 goto preparedev
set "DevPostfix="
set "DevParam="
goto devprepared
:preparedev
set "DevPostfix=.dev"
set "DevParam=-dev"
:devprepared
echo.
echo Preparing version %AppVersionStr%%DevPostfix%..
echo.
if exist ..\Win32\Deploy\deploy\%AppVersionStr%\ goto error_exist1
if exist ..\Win32\Deploy\deploy\%AppVersionStr%.dev\ goto error_exist2
if exist ..\Win32\Deploy\tupdate%AppVersion% goto error_exist3
set "PATH=%PATH%;C:\Program Files\7-Zip;C:\Program Files (x86)\Inno Setup 5"
cd ..\Win32\Deploy
call ..\..\..\TelegramPrivate\Sign.bat Telegram.exe
if %errorlevel% neq 0 goto error1
call ..\..\..\TelegramPrivate\Sign.bat Updater.exe
if %errorlevel% neq 0 goto error1
iscc /dMyAppVersion=%AppVersionStrSmall% /dMyAppVersionZero=%AppVersionStr% /dMyAppFullVersion=%AppVersionStrFull% /dMyAppVersionForExe=%AppVersionStr%%DevPostfix% ..\..\Telegram\Setup.iss
if %errorlevel% neq 0 goto error1
call ..\..\..\TelegramPrivate\Sign.bat tsetup.%AppVersionStr%%DevPostfix%.exe
if %errorlevel% neq 0 goto error1
call Packer.exe -version %AppVersion% -path Telegram.exe -path Updater.exe %DevParam%
if %errorlevel% neq 0 goto error1
if not exist deploy mkdir deploy
mkdir deploy\%AppVersionStr%%DevPostfix%
mkdir deploy\%AppVersionStr%%DevPostfix%\Telegram
move Telegram.exe deploy\%AppVersionStr%%DevPostfix%\Telegram\
move Updater.exe deploy\%AppVersionStr%%DevPostfix%\
move Telegram.pdb deploy\%AppVersionStr%%DevPostfix%\
move Updater.pdb deploy\%AppVersionStr%%DevPostfix%\
move tsetup.%AppVersionStr%%DevPostfix%.exe deploy\%AppVersionStr%%DevPostfix%\
move tupdate%AppVersion% deploy\%AppVersionStr%%DevPostfix%\
cd deploy\%AppVersionStr%%DevPostfix%
7z a -mx9 tportable.%AppVersionStr%%DevPostfix%.zip Telegram\
if %errorlevel% neq 0 goto error2
echo .
echo Version %AppVersionStr%%DevPostfix% is ready for deploy!
echo .
cd ..\..\..\..\Telegram
goto eof
:error2
cd ..\..
:error1
cd ..\..\Telegram
echo ERROR occured!
exit /b %errorlevel%
:error_exist1
echo Deploy folder for version %AppVersionStr% already exists!
exit /b 1
:error_exist2
echo Deploy folder for version %AppVersionStr%.dev already exists!
exit /b 1
:error_exist3
echo Update file for version %AppVersion% already exists!
exit /b 1
:eof
| darongE/tdesktop | Telegram/PrepareWin.bat | bat | gpl-3.0 | 2,386 |
REM Flash EFR32MCU
commander.exe flash %1 --device EFR32 | hyller/GladiatorFirmware | Scripts/efr32flash.bat | bat | unlicense | 56 |
@ECHO OFF
rd /s /q packages
rd /s /q paket-files
rd /s /q build
call build.cmd %* | Tarmil/websharper | rebuild.cmd | bat | apache-2.0 | 81 |
@echo off
REM Runs wxWidgets CppUnit tests
REM This script is used to return the correct return value to the caller
REM which is required by Buildbot to recognize failures.
REM Note that in DOS error level is not the return code of the previous
REM command; it is for (some!) built-in DOS commands like FIND but
REM in general it's not. Thus to get the return code of the test utility
REM we need some hack; see the guide:
REM http://www.infionline.net/~wtnewton/batch/batguide.html
REM for general info about DOS batch files.
REM Author: Francesco Montorsi
rem set the path for running the tests if they use DLL build of wx
for /d %%x in ("..\lib\*_dll") do @set PATH=%%x;%PATH%
set failure=0
for /d %%x in (*) do @(
if exist %%x\test.exe (
echo.
echo ========================================================================
echo Running non-GUI unit test
echo ========================================================================
echo.
%%x\test.exe >tmp
REM show the output of the test in the buildbot log:
type tmp
REM hack to understand if the tests succeeded or not
REM (failure=1 is set if "OK" does not appear in the test output)
type tmp | find "OK" >NUL
if ERRORLEVEL 1 set failure=1
REM separe the output of the test we just executed from the next one
echo.
echo ========================================================================
echo Non-GUI test done
echo ========================================================================
echo.
)
if exist %%x\test_gui.exe (
echo.
echo ========================================================================
echo Running GUI unit test
echo ========================================================================
echo.
%%x\test_gui.exe >tmp
REM show the output of the test in the buildbot log:
type tmp
REM hack to understand if the tests succeeded or not
REM (failure=1 is set if "OK" does not appear in the test output)
type tmp | find "OK" >NUL
if ERRORLEVEL 1 set failure=1
echo.
echo ========================================================================
echo GUI test done
echo ========================================================================
echo.
)
)
REM exit with code 1 if any of the test failed
del tmp
if %failure% EQU 1 (
echo.
echo One or more test failed
echo.
exit 1
)
REM remove the failure env var:
set failure=
REM exit with code 0 (all tests passed successfully)
exit 0
| ric2b/Vivaldi-browser | update_notifier/thirdparty/wxWidgets/tests/runtests.bat | bat | bsd-3-clause | 2,728 |
@echo off
rem Copyright (C): 2001, 2002 Earnie Boyd
rem mailto:earnie@users.sf.net
rem This file is part of Minimal SYStem
rem http://www.mingw.org/msys.shtml
rem
rem File: msys.bat
rem Revision: 2.0
rem Revision Date: April 17th, 2002
rem ember to set the "Start in:" field of the shortcut.
rem A value similar to C:\msys\1.0\bin is what the "Start in:" field needs
rem to represent.
rem this should let run MSYS shell on x64
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
SET COMSPEC=%WINDIR%\SysWOW64\cmd.exe
)
rem ember value of GOTO: is used to know recursion has happened.
if "%1" == "GOTO:" goto %2
rem ember command.com only uses the first eight characters of the label.
set OS_VERSION="NT"
goto _WindowsNT
rem ember that we only execute here if we are in command.com.
:_Windows
set OS_VERSION="9x"
if "x%COMSPEC%" == "x" set COMSPEC=command.com
start %COMSPEC% /e:4096 /c %0 GOTO: _Resume %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
goto EOF
rem ember that we execute here if we recursed.
:_Resume
for %%F in (1 2 3) do shift
rem ember that we get here even in command.com.
:_WindowsNT
if "x%MSYSTEM%" == "x" set MSYSTEM=MINGW32
if "%1" == "MSYS" set MSYSTEM=MSYS
if NOT "x%DISPLAY%" == "x" set DISPLAY=
rem We here assume old behavior, to make sure that older platforms can still use
rem this batch file to start their MSys environment.
set BIN=""
if EXIST bin\nul set BIN=bin\
if EXIST %BIN%bash.exe goto startbash
if EXIST %BIN%rxvt.exe goto startrxvt
rem If we're not on win9x type OSs, lets try a little better at finding bash/rxvt
if "win%OS_VERSION%"=="win9x" goto failed
set BIN="%~dp0bin\"
if EXIST %BIN%bash.exe goto startbash
if EXIST %BIN%rxvt.exe goto startrxvt
:failed
echo Cannot find the rxvt.exe or bash.exe binary -- aborting.
pause
rem exit 1
rem we skip using exit 1 here, since it will close the console you were working on
rem which probably isn't what you wanted. If the bat file was run from a shortcut
rem the window will still close, like you would expect it to. Sorry, you cant test
rem for exit values anymore, but hey, you can just un-rem the line above then! :-)
goto EOF
rem If you don't want to use rxvt then rename the file rxvt.exe to something
rem else. Then bash.exe will be used instead.
:startrxvt
rem Setup the default colors for rxvt.
if "x%MSYSBGCOLOR%" == "x" set MSYSBGCOLOR=White
if "x%MSYSFGCOLOR%" == "x" set MSYSFGCOLOR=Black
if "x%MINGW32BGCOLOR%" == "x" set MINGW32BGCOLOR=LightYellow
if "x%MINGW32FGCOLOR%" == "x" set MINGW32FGCOLOR=Navy
if "%MSYSTEM%" == "MSYS" set BGCOLOR=%MSYSBGCOLOR%
if "%MSYSTEM%" == "MSYS" set FGCOLOR=%MSYSFGCOLOR%
if "%MSYSTEM%" == "MINGW32" set BGCOLOR=%MINGW32BGCOLOR%
if "%MSYSTEM%" == "MINGW32" set FGCOLOR=%MINGW32FGCOLOR%
start %COMSPEC% /c %BIN%rxvt -backspacekey -sl 2500 -fg %FGCOLOR% -bg %BGCOLOR% -sr -fn Courier-12 -tn msys -geometry 80x25 -e /bin/bash --login -i
exit
:startbash
call %COMSPEC% /c %BIN%bash --login -i
:EOF
rem ChangeLog:
rem 2002.03.07 Earnie Boyd mailto:earnie@users.sf.net
rem * Move the @echo off to the top.
rem * Change the binmode setting to nobinmode.
rem * Remove the angle brackets around email address to workaround MS
rem buggy command processor.
rem
rem 2002.03.12 Earnie Boyd mailto:earnie@users.sf.net
rem * Add filter logic to find rxvt.exe
rem
rem 2002.03.13 Earnie Boyd mailto:earnie@users.sf.net
rem * Revert the nobinmode change.
rem
rem 2002.03.20 Earnie Boyd mailto:earnie@users.sf.net
rem * Add logic for stating bash.
rem
rem 2002.04.11 Earnie Boyd mailto;earnie@users.sf.net
rem * Add logic for setting MSYSTEM value based on parameter.
rem
rem 2002.04.15 Olivier Gautherot mailto:olivier_gautherot@mentorg.com
rem * Reduce number test conditions for finding an executable.
rem
rem 2002.04.15 Earnie Boyd mailto:earnie@users.sf.net
rem * Unset DISPLAY if set before starting shell.
rem
rem 2002.04.16 Earnie Boyd mailto:earnie@users.sf.net
rem * Remove use of DEFINED in conditional statments for variables for
rem command.com support.
rem * Add check for nonexistance of USERNAME variable for Win9x support.
rem
rem 2002.04.17 Earnie Boyd mailto:earnie@users.sf.net
rem * Add foreground and background color defaults based on MSYSTEM value.
rem
rem 2002.04.22 Earnie Boyd mailto:earnie@users.sf.net
rem * More Win 9x changes.
rem
rem 2002.05.04 Earnie Boyd mailto:earnie@users.sf.net
rem * Remove the SET of USERNAME and HOME.
rem
rem 2002.11.18 Earnie Boyd mailto:earnie@users.sf.net
rem * Add command.com detection and restart with a larger environment to
rem avoid errors on w9x.
rem Many thanks to Randy W. Sims mailto:RandyS@ThePierianSpring.org.
rem See Randy's response to "RE: [Mingw-msys] Installation on WindowsME"
rem from 11/06/2002 in the archives of mingw-msys@lists.sf.net.
rem
rem 2002.11.19 Paul Garceau mailto:pgarceau@attbi.com
rem * Fix a typo: Change COMPSPEC to COMSPEC.
rem
rem 2002.11.25 Earnie Boyd mailto:earnie@users.sf.net
rem * Remove the SET CYGWIN since it doesn't matter any longer.
rem
rem 2003.02.03 Earnie Boyd mailto:earnie@users.sf.net
rem * Win9x doesn't like ``EXISTS dir'' so change it to ``EXISTS dir\nul''.
rem Thanks to Nicolas Weber mailto:nicolasweber@gmx.de.
rem
rem 2003.03.06 Earnie Boyd mailto:earnie@users.sf.net
rem * Add -backspacekey switch to rxvt startup.
rem * Move RXVT color setup to startrxvt label
rem
rem 2004.01.30 Earnie Boyd mailto:earnie@users.sf.net
rem * Add -geometry parameter to work around an off by one issue with
rem the default values.
rem Thanks to Dave Schuyler mailto:parameter@users.sf.net
| liyanippon/working | java开发资料/dataStu/Example/.metadata/.plugins/com.aptana.portablegit.win32/git-bash.bat | bat | apache-2.0 | 5,581 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\crab.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\crab.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| imouren/crab | doc/make.bat | bat | bsd-3-clause | 4,507 |
@echo off
REM
REM dex2jar - Tools to work with android .dex and java .class files
REM Copyright (c) 2009-2012 Panxiaobo
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
set CLASSPATH=
FOR %%i IN ("%~dp0lib\*.jar") DO CALL "%~dp0setclasspath.bat" "%%i"
java -Xms512m -Xmx1024m -cp %CLASSPATH% "com.googlecode.dex2jar.tools.DeObfInitCmd" %*
| xtiankisutsa/MARA_Framework | tools/qark/qark/lib/dex2jar/d2j-init-deobf.bat | bat | lgpl-3.0 | 893 |
setenv vram '16M'
setenv dvimode 'hd720-16 omapfb.vram=0:8M,1:4M,2:4M'
run loaduimage
run mmcboot
| wwright2/dcim3-angstrom1 | sources/meta-angstrom/recipes-angstrom/angstrom/angstrom-uboot-scripts/720p16bpp.cmd | bat | mit | 98 |
@echo off
rem Copyright 2014 Google Inc. All rights reserved.
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem Compile then run the Java test.
set batch_file_dir=%~d0%~p0
javac -g -classpath %batch_file_dir%\..\java;%batch_file_dir% JavaTest.java
java -classpath %batch_file_dir%\..\java;%batch_file_dir% JavaTest
| hryang/flatbuffers | tests/JavaTest.bat | bat | apache-2.0 | 842 |
call setupenv.bat
cd %BUILD_DIR%
if not exist openssl (
git clone -b OpenSSL_1_0_1-stable git://git.openssl.org/openssl.git
)
cd openssl
perl Configure VC-WIN64A --prefix=%DEPLOY_DIR%
call ms\do_win64a.bat
nmake -f ms\nt.mak
nmake -f ms\nt.mak install
cd %SCRIPTS_DIR% | Totopolis/monik.cpp | win_setup/build_openssl.bat | bat | mit | 269 |
rem NUnitÌCXg[æ
set nunit_home=C:\Program Files (x86)\NUnit.org
rem OpenCoverÌCXg[æ
set opencover_home=C:\Users\602293.JPN\AppData\Local\Apps\OpenCover
rem ReportGeneratorÌCXg[æ
set reportgen_dir=C:\Work\Tools\ReportGenerator_2.4.5.0\bin
rem pXÌÝè
set path=%path%;%opencover_home%;%reportgen_dir%\
rem Às·éeXgÌAZu
set target_test=STG_Test.dll
rem Às·éeXgÌAZuÌi[æ
set target_dir=C:\Work\Others\CS_Study\OOP_TDD_Study\STG\STG\Development\Source\STG_Test\bin\Test
rem OpenCoverÌÀs
OpenCover.Console -register:user -target:"%nunit_home%\nunit-console\nunit3-console.exe" -targetargs:"%target_test%" -targetdir:"%target_dir%" -output:Result\result.xml -mergebyhash
rem |[g̶¬
ReportGenerator "Result\result.xml" Result\html
rem |[gÌ\¦
start Result\html\index.htm | bosssanovar/STG | Documents/Coverage/OpenCover.bat | bat | mit | 854 |
@ECHO OFF
REM Example Visual Studio toolset version: 120
REM You can identify this from the project properties in a Vana project
REM e.g. Right click ChannelServer -> Properties -> General -> General -> Platform Toolset: Visual Studio 2013 (v120)
SET toolset=FIXME
IF "%toolset%"=="FIXME" (
ECHO Variables must be set before a directory structure can be compiled
PAUSE
GOTO:EOF
)
IF EXIST "%CD%\%toolset%" (
ECHO Development environment already set up
PAUSE
GOTO:EOF
)
REM Create registry key file to allow reverting of environment variables after a broken installation
reg export "HKEY_CURRENT_USER\Environment" "revert_registry.reg"
REM Create directory structure
mkdir %toolset%
cd %toolset%
mkdir lib
cd lib
mkdir Debug
mkdir Release
cd ..
cd ..
ECHO Operations successful, development environment ready
PAUSE
GOTO:EOF | VanaDev/LazurBeemz | generate_development_environment.bat | bat | mit | 838 |
@echo off
.\_log COFFEE
| mohorojo/proto_loq | bin/coffee.bat | bat | mit | 24 |
@echo off
set DB=ruian_test
set PATH=C:\Program Files (x86)\PostgreSQL\9.3\bin;%PATH%
IF "%1"=="ogr" (
set PGM=%1
set OPT=--format SQLite --dsn=%DB%.db
del "%DB%.db"
) ELSE (
set PGM=pg
set OPT=--dbname %DB% --user %USER%
set USER=postgres
set CONN=--username %USER%
psql -d %DB% -f cleandb.sql %CONN% 2>nul
)
echo "Using vfr2%PGM%..."
echo "1st PASS (empty DB...)"
call vfr2%PGM% --file ST_ZKSH.xml.gz %OPT%
echo "2nd PASS (apply changes...)"
call vfr2%PGM% --file ST_ZKSH.xml.gz %OPT%
| ctu-osgeorel/gdal-vfr | test_suite/test-changes.bat | bat | mit | 521 |
rem will create a coverity cov-int package ready to send to analysis
rmdir cov-int /s /q
del cov-int.zip /q
set cov_path=%~dp0
set sln_path=%~dp0..\
cov-build --dir %cov_path%cov-int devenv %sln_path%SeriousGameToolbox.sln /rebuild Release
7z a -tzip cov-int.zip cov-int\ | Groutcho/SeriousGameToolbox | SeriousGameToolbox/coverity/create_coverity_package.bat | bat | mit | 272 |
@echo off
REM BRouter standalone server
REM java -cp brouter.jar btools.brouter.RouteServer <segmentdir> <profile-map> <customprofiledir> <port> <maxthreads>
pushd %~dp0
REM maxRunningTime is the request timeout in seconds, set to 0 to disable timeout
set JAVA_OPTS=-Xmx128M -Xms128M -Xmn8M -DmaxRunningTime=300
REM First search in locations matching the directory structure as found in the official BRouter zip archive
set CLASSPATH=../brouter.jar
set SEGMENTSPATH=..\segments4
set PROFILESPATH=..\profiles2
set CUSTOMPROFILESPATH=..\customprofiles
REM Otherwise try to locate files inside the source checkout
if not exist "%CLASSPATH%" (
for /f "tokens=*" %%w in (
'where /R ..\..\..\brouter-server\build\libs brouter-*-all.jar'
) do (
set CLASSPATH=%%w
)
)
if not exist "%SEGMENTSPATH%" (
set SEGMENTSPATH=..\..\segments4
)
if not exist "%PROFILESPATH%" (
set PROFILESPATH=..\..\profiles2
)
if not exist "%CUSTOMPROFILESPATH%" (
set CUSTOMPROFILESPATH=..\..\customprofiles
)
java %JAVA_OPTS% -cp %CLASSPATH% btools.server.RouteServer "%SEGMENTSPATH%" "%PROFILESPATH%" "%CUSTOMPROFILESPATH%" 17777 1
popd
| abrensch/brouter | misc/scripts/standalone/server.cmd | bat | mit | 1,191 |
:outfile
:: Description: If out file is specifically set then uses that else uses supplied name.
:: Class: command - internal - pipeline- parameter
:: Required parameters:
:: testoutfile
:: defaultoutfile
if defined debugdefinefunc echo %beginfuncstring% %0 %debugstack% %beginfuncstringtail%
set testoutfile=%~1
set defaultoutfile=%~2
if defined testoutfile(
set outfile=%testoutfile%
) else if defined (
set outfile=%defaultoutfile%
) else (
set outfile=%projectpath%\xml\temp.xml
)
call :drivepath "%outfile%"
call :checkdir "%drivepath%"
if defined debugdefinefunc echo %endfuncstring% %0 %debugstack%
goto :eof
| SILAsiaPub/vimod-pub-combo | ref/pub/outfile.cmd | bat | mit | 648 |
cmd_net/sched/built-in.o := 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/sch_fifo.o net/sched/sch_htb.o net/sched/cls_u32.o net/sched/cls_flow.o net/sched/ematch.o net/sched/em_cmp.o net/sched/em_nbyte.o net/sched/em_u32.o net/sched/em_meta.o net/sched/em_text.o
| bigbiff/i717-GB-Kernel | net/sched/.built-in.o.cmd | bat | gpl-2.0 | 405 |
cmd_drivers/usb/misc/ftdi-elan.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/usb/misc/ftdi-elan.ko drivers/usb/misc/ftdi-elan.o drivers/usb/misc/ftdi-elan.mod.o
| avareldalton85/rpi2-linux-rt | drivers/usb/misc/.ftdi-elan.ko.cmd | bat | gpl-2.0 | 275 |
cmd_networking/ifenslave.o := arm-linux-musleabihf-gcc -Wp,-MD,networking/.ifenslave.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ifenslave)" -D"KBUILD_MODNAME=KBUILD_STR(ifenslave)" -c -o networking/ifenslave.o networking/ifenslave.c
deps_networking/ifenslave.o := \
networking/ifenslave.c \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/clean/up.h) \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/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/prefer/applets.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/if.h \
$(wildcard include/config/get/iface.h) \
$(wildcard include/config/get/proto.h) \
$(wildcard include/config/iface/v35.h) \
$(wildcard include/config/iface/v24.h) \
$(wildcard include/config/iface/x21.h) \
$(wildcard include/config/iface/t1.h) \
$(wildcard include/config/iface/e1.h) \
$(wildcard include/config/iface/sync/serial.h) \
$(wildcard include/config/iface/x21d.h) \
$(wildcard include/config/proto/hdlc.h) \
$(wildcard include/config/proto/ppp.h) \
$(wildcard include/config/proto/cisco.h) \
$(wildcard include/config/proto/fr.h) \
$(wildcard include/config/proto/fr/add/pvc.h) \
$(wildcard include/config/proto/fr/del/pvc.h) \
$(wildcard include/config/proto/x25.h) \
$(wildcard include/config/proto/hdlc/eth.h) \
$(wildcard include/config/proto/fr/add/eth/pvc.h) \
$(wildcard include/config/proto/fr/del/eth/pvc.h) \
$(wildcard include/config/proto/fr/pvc.h) \
$(wildcard include/config/proto/fr/eth/pvc.h) \
$(wildcard include/config/proto/raw.h) \
$(wildcard include/config/oper/unknown.h) \
$(wildcard include/config/oper/notpresent.h) \
$(wildcard include/config/oper/down.h) \
$(wildcard include/config/oper/lowerlayerdown.h) \
$(wildcard include/config/oper/testing.h) \
$(wildcard include/config/oper/dormant.h) \
$(wildcard include/config/oper/up.h) \
$(wildcard include/config/link/mode/default.h) \
$(wildcard include/config/link/mode/dormant.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/int-ll64.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/bitsperlong.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/bitsperlong.h \
$(wildcard include/config/64bit.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/posix_types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/stddef.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/posix_types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/posix_types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/hdlc/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/if_bonding.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/if_ether.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/sockios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/sockios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/sockios.h \
include/fix_u32.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/ethtool.h \
networking/ifenslave.o: $(deps_networking/ifenslave.o)
$(deps_networking/ifenslave.o):
| ThinkIntegrate/busybox | networking/.ifenslave.o.cmd | bat | gpl-2.0 | 15,138 |
@pushd %~dp0
@powershell "& { Start-Process PowerShell.exe -Wait -Verb RunAs -ArgumentList 'cd %~dp0\windows; . .\bootstrap.ps1; pause' }"
| Germanika/plover | bootstrap.bat | bat | gpl-2.0 | 141 |
@echo off
java -cp ".\" -jar -XX:+ForceTimeHighResolution -Xms512m -Xmx1024m loadtestio.jar
| inadarei/loadtestio | misc/run.bat | bat | gpl-2.0 | 97 |
cmd_miscutils/lib.a := rm -f miscutils/lib.a; arm-linux-musleabihf-ar rcs miscutils/lib.a miscutils/adjtimex.o miscutils/bbconfig.o miscutils/beep.o miscutils/chat.o miscutils/chrt.o miscutils/conspy.o miscutils/crond.o miscutils/crontab.o miscutils/dc.o miscutils/devfsd.o miscutils/devmem.o miscutils/eject.o miscutils/fbsplash.o miscutils/flash_eraseall.o miscutils/flash_lock_unlock.o miscutils/flashcp.o miscutils/hdparm.o miscutils/inotifyd.o miscutils/ionice.o miscutils/last_fancy.o miscutils/less.o miscutils/makedevs.o miscutils/man.o miscutils/microcom.o miscutils/mountpoint.o miscutils/mt.o miscutils/nandwrite.o miscutils/raidautorun.o miscutils/readahead.o miscutils/rfkill.o miscutils/runlevel.o miscutils/rx.o miscutils/setserial.o miscutils/setsid.o miscutils/strings.o miscutils/taskset.o miscutils/time.o miscutils/timeout.o miscutils/ttysize.o miscutils/ubi_tools.o miscutils/volname.o miscutils/wall.o miscutils/watchdog.o
| ThinkIntegrate/busybox | miscutils/.lib.a.cmd | bat | gpl-2.0 | 946 |
cmd_scripts/mod/file2alias.o := gcc -Wp,-MD,scripts/mod/.file2alias.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o scripts/mod/file2alias.o scripts/mod/file2alias.c
source_scripts/mod/file2alias.o := scripts/mod/file2alias.c
deps_scripts/mod/file2alias.o := \
/usr/include/stdc-predef.h \
scripts/mod/modpost.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/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.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/bits/mman-linux.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.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/elf.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/auxv.h \
scripts/mod/elfconfig.h \
/usr/include/ctype.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdbool.h \
scripts/mod/../../include/linux/mod_devicetable.h \
$(wildcard include/config/input/expanded/abs.h) \
scripts/mod/file2alias.o: $(deps_scripts/mod/file2alias.o)
$(deps_scripts/mod/file2alias.o):
| friedrich420/S5-G900F-AEL-Kernel-LOLLIPOP | scripts/mod/.file2alias.o.cmd | bat | gpl-2.0 | 3,360 |
cmd_drivers/cpuidle/governors/built-in.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/cpuidle/governors/built-in.o drivers/cpuidle/governors/ladder.o drivers/cpuidle/governors/menu.o
| heyoufei2/yocto3.14.38_kernel | drivers/cpuidle/governors/.built-in.o.cmd | bat | gpl-2.0 | 190 |
cmd_sound/drivers/vx/built-in.o := rm -f sound/drivers/vx/built-in.o; /home/flint/android/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-ar rcsD sound/drivers/vx/built-in.o
| lindsaytheflint/stone | sound/drivers/vx/.built-in.o.cmd | bat | gpl-2.0 | 207 |
cmd_drivers/char/broadcom/built-in.o := /opt/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/char/broadcom/built-in.o drivers/char/broadcom/cacheops.o drivers/char/broadcom/bcm_auxadc.o drivers/char/broadcom/bcm_i2sdai.o drivers/char/broadcom/i2s_drv_osdal.o drivers/char/broadcom/bcm_otp.o
| sembre/kernel_totoro_update3 | common/drivers/char/broadcom/.built-in.o.cmd | bat | gpl-2.0 | 298 |
cmd_scripts/kconfig/zconf.tab.o := gcc -Wp,-MD,scripts/kconfig/.zconf.tab.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -Iscripts/kconfig -c -o scripts/kconfig/zconf.tab.o scripts/kconfig/zconf.tab.c
source_scripts/kconfig/zconf.tab.o := scripts/kconfig/zconf.tab.c
deps_scripts/kconfig/zconf.tab.o := \
/usr/include/stdc-predef.h \
/usr/include/ctype.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/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.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/xlocale.h \
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/stdarg.h \
/usr/include/stdio.h \
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/stddef.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.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/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/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/lib/gcc/x86_64-linux-gnu/4.9/include/stdbool.h \
scripts/kconfig/lkc.h \
$(wildcard include/config/.h) \
$(wildcard include/config/list.h) \
scripts/kconfig/expr.h \
/usr/include/assert.h \
/usr/include/libintl.h \
/usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h \
scripts/kconfig/lkc_proto.h \
scripts/kconfig/zconf.hash.c \
scripts/kconfig/zconf.lex.c \
/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/lib/gcc/x86_64-linux-gnu/4.9/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.9/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/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 \
scripts/kconfig/util.c \
scripts/kconfig/confdata.c \
$(wildcard include/config/config.h) \
$(wildcard include/config/autoconfig.h) \
$(wildcard include/config/overwriteconfig.h) \
$(wildcard include/config/autoheader.h) \
$(wildcard include/config/tristate.h) \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
scripts/kconfig/expr.c \
scripts/kconfig/symbol.c \
/usr/include/regex.h \
/usr/include/x86_64-linux-gnu/gnu/option-groups.h \
/usr/include/x86_64-linux-gnu/sys/utsname.h \
/usr/include/x86_64-linux-gnu/bits/utsname.h \
scripts/kconfig/menu.c \
scripts/kconfig/zconf.tab.o: $(deps_scripts/kconfig/zconf.tab.o)
$(deps_scripts/kconfig/zconf.tab.o):
| vocoderism/android_kernel_hp_phobos | scripts/kconfig/.zconf.tab.o.cmd | bat | gpl-2.0 | 4,406 |
cmd_drivers/misc/cb710/built-in.o := rm -f drivers/misc/cb710/built-in.o; /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ar rcsD drivers/misc/cb710/built-in.o
| friedrich420/Note-3-Kernel | drivers/misc/cb710/.built-in.o.cmd | bat | gpl-2.0 | 169 |
:: (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
::
:: This file contains confidential and proprietary information
:: of Xilinx, Inc. and is protected under U.S. and
:: international copyright and other intellectual property
:: laws.
::
:: DISCLAIMER
:: This disclaimer is not a license and does not grant any
:: rights to the materials distributed herewith. Except as
:: otherwise provided in a valid license issued to you by
:: Xilinx, and to the maximum extent permitted by applicable
:: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
:: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
:: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
:: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
:: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
:: (2) Xilinx shall not be liable (whether in contract or tort,
:: including negligence, or under any other theory of
:: liability) for any loss or damage of any kind or nature
:: related to, arising under or in connection with these
:: materials, including for any direct, or any indirect,
:: special, incidental, or consequential loss or damage
:: (including loss of data, profits, goodwill, or any type of
:: loss or damage suffered as a result of any action brought
:: by a third party) even if such damage or loss was
:: reasonably foreseeable or Xilinx had been advised of the
:: possibility of the same.
::
:: CRITICAL APPLICATIONS
:: Xilinx products are not designed or intended to be fail-
:: safe, or for use in any application requiring fail-safe
:: performance, such as life-support or safety devices or
:: systems, Class III medical devices, nuclear facilities,
:: applications related to the deployment of airbags, or any
:: other applications that could lead to death, personal
:: injury, or severe property or environmental damage
:: (individually and collectively, "Critical
:: Applications"). Customer assumes the sole risk and
:: liability of any use of Xilinx products in Critical
:: Applications, subject only to applicable laws and
:: regulations governing limitations on product liability.
::
:: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
:: PART OF THIS FILE AT ALL TIMES.
rem -----------------------------------------------------------------------------
rem Script to synthesize and implement the Coregen FIFO Generator
rem -----------------------------------------------------------------------------
rmdir /S /Q results
mkdir results
cd results
copy ..\..\..\system_axi_vdma_0_wrapper_fifo_generator_v9_1_2.ngc .
planAhead -mode batch -source ..\planAhead_rdn.tcl
| CprE488/Final | system/implementation/system_axi_vdma_0_wrapper_fifo_generator_v9_1_2/implement/planAhead_rdn.bat | bat | gpl-3.0 | 2,614 |
@echo off
:: Print the path to the APK of the given package.
IF NOT "%1"=="-s" goto MAIN
IF "%1"=="-s" goto FORDEV
:MAIN
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /F "tokens=1,2 skip=1" %%A IN ('adb devices') DO (
SET IS_DEV=%%B
IF "!IS_DEV!" == "device" (
SET SERIAL=%%A
FOR /F "tokens=* delims= USEBACKQ" %%F IN (`devices -s !SERIAL!`) DO SET DEV=%%F
echo Path to apk of %1 on device: !DEV!
call adb -s !SERIAL! shell pm path %1
echo ========================================
)
)
ENDLOCAL
goto END
:FORDEV
:: Check if the second parameter exists
IF [%2]==[] echo Please provide the serial number of the device.
IF NOT [%2]==[] call adb -s %2 shell pm path %3
goto END
:END
echo Ready! | Thibstars/ThibTools | printPath.bat | bat | gpl-3.0 | 750 |
"C:\Program Files (x86)\SMA\Sunny Explorer\SunnyExplorer.exe" %1\SunnyExplorer.sx2 -userlevel user -password "0000" -exportdir %1 -exportrange %2-%2 -export energy5min | tectronics/pvbeancounter | PVRecords_pattern/Empty Databases/SunnyExplorerTest_x64.bat | bat | gpl-3.0 | 167 |
Whoami
Pause
Whoami
Whoami
Pause
cd c:\
cd "System Volume Information"
Pause | HossamHSakr/Windows-Utilities | Test Bot.bat | bat | gpl-3.0 | 83 |
@echo off
rem usage: buildAll.sh [-u <username>] [-p <password>]
rem optional args: [-u] Github username
rem [-p] Password
if [%1] == [-help] (
echo usage: buildAll.sh [-u <username>] [-p <password>]
exit 0
)
rem remove previous python compilation classes
pushd ..\tools\jython\lib\Lib\
del /q *.class
popd
rem install kernel 3rd party artifacts
pushd kernel
call mvn clean -P qtaste-install-3rd-artifacts
popd
echo Building qtaste ...
call mvn clean install -P qtaste-build-kernel-first
echo Compiling plugins ...
pushd plugins_src
call build.cmd
popd
echo Compiling demos ...
pushd demo
call build.cmd
popd
echo generating documentation ...
pushd doc
call generateDocs.cmd %*
popd
echo creation of the installer ...
pushd izpack
call createInstaller.cmd
popd
| remybaranx/qtaste | buildAll.cmd | bat | gpl-3.0 | 793 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=C:\PROGRA~1\Java\jdk1.8.0_65
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| zestone/honebiyori | gradlew.bat | bat | lgpl-2.1 | 2,328 |
echo Run this from the visual c++ commandline
REM @echo off
set visualStudioDir=D:\Program Files (x86)\Microsoft Visual Studio 10.0
set windowsSdkDir=D:\Program Files\Microsoft SDKs\Windows\v7.1
set jdkDir=C:\Program Files\Java\jdk1.7.0
mkdir build_WINx32
mkdir build_WINx64
cd build_WINx32
REM # 32-Bit version: #
REM ### set the path: ###
set LIB=%visualStudioDir%\VC\LIB;%windowsSdkDir%\Lib;
REM ### compile: ###
cl.exe /l "%windowsSdkDir%\Lib\uuid.lib" /EHcs -o mod_MumbleLink.dll ..\MumbleJniLinkDll.cpp /I "%windowsSdkDir%\Include" /I "%jdkDir%\include" /I "%jdkDir%\include\win32" /link /DLL
cd ..\build_WINx64
REM # 64-Bit version: #
REM ### set the path: ###
set LIB=%visualStudioDir%\VC\lib\amd64;%windowsSdkDir%\Lib\x64
REM ### compile: ###
"%visualStudioDir%\VC\bin\x86_amd64\cl.exe" /l "%windowsSdkDir%\Lib\x64\Uuid.lib" /EHcs -o mod_MumbleLink_x64.dll ..\MumbleJniLinkDll.cpp /I "%windowsSdkDir%\Include" /I "%visualStudioDir%\VC\include" /I "%jdkDir%\include" /I "%jdkDir%\include\win32" /link /DLL
cd ..
REM # Check the dependencies (if new LIBs need to be included): #
REM ### 32-Bit version: ###
"%visualStudioDir%\VC\bin\x86_amd64\dumpbin.exe" /IMPORTS "build_WINx32\mod_MumbleLink.dll"
REM ### 64-Bit version: ###
"%visualStudioDir%\VC\bin\x86_amd64\dumpbin.exe" /IMPORTS "build_WINx64\mod_MumbleLink_x64.dll"
| zsawyer/MumbleLink | natives/testVersion/make.bat | bat | lgpl-3.0 | 1,471 |
set f=src/test/toPhantom/testable.java
call jc %f%
call jpc -cbin;class test.toPhantom.Testable
| dzavalishin/phantomuserland | plib/java/compile.cmd | bat | lgpl-3.0 | 96 |
REM Cleaning obj, exe, and manifest files
del *.obj *.exe *.manifest *.lib
| gMitchell09/Rise | urg_library-1.1.8/windowsexe/cleanobj.bat | bat | lgpl-3.0 | 76 |
@setlocal EnableDelayedExpansion
@echo off
:init
set cmds=
set showname=
if not "%~1"=="" goto :parse
move /?
endlocal && exit /B 0
:parse
if "%~1"=="" goto :main
set arg=%~1
rem echo !arg:~0,1!
rem If the argument contains '~/' then replace it with %UserProfile%
rem if "!arg:~0,2!"=="~\" (
rem set arg=!arg:~/=%UserProfile%!
rem echo arg=!arg!
rem )
:: My common shorcut/replacements..
if "!arg:~0,2!"=="//" (
set arg=%UserProfile%\!arg:~2!
set showname=true
)
if "!arg:~0,3!"=="/b/" (
set arg=%BIN%\!arg:~3!
set showname=true
)
if "!arg:~0,3!"=="/w/" (
set arg=%UserProfile%\Desktop\!arg:~3!
set showname=true
)
if "!arg:~0,3!"=="/e/" (
set arg=%UserProfile%\Desktop\!arg:~3!
set showname=true
)
if "!arg:~0,3!"=="/d/" (
set arg=%UserProfile%\Documents\!arg:~3!
set showname=true
)
:: If the argument doesn't start with a '/' or '-' then
:: replace all '/' characters with '\'..
if not "!arg:~0,1!"=="/" (
if not "!arg:~0,1!"=="-" (
:: Replace dlb-backslashes with a single back-slash
set arg=!arg:\\=\!
:: Replace forward-slashes with back-slashes
set arg=!arg:/=\!
set showname=true
)
)
if /i "!arg!"=="-f" (
set arg=/Y
) else if /i "!arg!"=="--force" (
set arg=/Y
)
if /i "!arg!"=="-i" (
set arg=/-Y
) else if /i "!arg!"=="--interactive" (
set arg=/-Y
)
set cmds=%cmds% %arg%
shift
goto :parse
:main
rem left-trim the input
for /f "tokens=* delims= " %%a in ("!cmds!") do set cmds=%%a
if defined showname echo move !cmds! && set "showname="
move %cmds%
endlocal && exit /B %errorlevel%
| kodybrown/dos | mv.bat | bat | unlicense | 1,953 |
@echo off
java -classpath ".\*;libs\*" com.sap.integration.Main | sapanywhereai/anywhere-api-sample | IntegrationDemoApp/src/main/resources/run.bat | bat | apache-2.0 | 63 |
@echo off
call "%~dp0"Uninstall.bat
call "%~dp0"Install.bat
| y-code/softdojo | ShihanWinService/Install/Reinstall.bat | bat | apache-2.0 | 65 |
@echo off
if exist tasks/reportbug.bat (
@echo [Info] Loading the ReportBug Module... >> log.txt
) else (
exit
)
set startdir=%~dp0
cd %startdir%
set v=
for /f "delims=" %%i in ('type version.txt') do set v=%%i
title Running SpigotMC Updater v.%v% ReportBug Module
set content=..\Git\bin\bash.exe
cls
powershell.exe -command write-host "Use this only if you catch a bug. Snapshots and or descriptions will be more helpful." -f yellow
@echo [WARNING] Use this only if you catch a bug. Snapshots and or descriptions will be more helpful. >> ..\log.txt
%content% --login -i -c "sleep 15s"
@echo Launching your Browser and going back to menu.
@echo [Info] Launching your Browser and going back to menu. >> ..\log.txt
explorer "https://github.com/SpigotMC-Updater-Development/SpigotMC-Updater-Reloaded/issues"
%content% --login -i -c "sleep 5s"
cd ..\
exit
| SpigotMC-Updater-Development/SpigotMC-Updater-Reloaded | tasks/reportbug.bat | bat | apache-2.0 | 864 |
@echo off
pushd ..\builds\Asalennor
devenv main.exe
popd | RedThirdDivision/Asalennor | new_debug.bat | bat | apache-2.0 | 56 |
MKDIR test-results
ECHO ^<?xml version="1.0" ?^> > test-results/coverage.xml
ECHO ^<!DOCTYPE coverage SYSTEM 'http://cobertura.sourceforge.net/xml/coverage-03.dtd'^> >> test-results/coverage.xml
ECHO ^<coverage^>^</coverage^> >> test-results/coverage.xml
| mozy/mordor | buildtools/coverage.bat | bat | bsd-3-clause | 255 |
./schema
pause
del "%0"
pause
| rafalkowalski2/filmoteka | geany_run_script.bat | bat | bsd-3-clause | 38 |
@fasm end.asm end
@kpack end
@pause | devlato/kolibrios-llvm | programs/system/end/trunk/build.bat | bat | mit | 35 |
@echo off
setlocal
if not exist .\source cd ..\
if not defined ANDROID_HOME echo "*** You need to define ANDROID_HOME env var!" && exit /b 1
REM create symlink of assets folder
if not exist .\build\android-project\assets (
mkdir .\build\android-project\assets
REM a little verbose and ugly, but keeps resource paths unifor across platforms
mklink /D .\build\android-project\assets\assets ..\..\assets
if ERRORLEVEL 1 (
echo [WARNING] Assets folder symlink creation failed, probably not running this as admin...
)
)
set XCopyOptions=/h /y /s /i /q
xcopy .\source\android-project .\build\android-project %XCopyOptions%
set Excludes=.\build\android-project\xcopy-excludes.txt
echo \android-project\ > %Excludes%
echo build.bat >> %Excludes%
echo build-android.bat >> %Excludes%
xcopy .\source\* .\build\android-project\jni\ %XCopyOptions% /exclude:%Excludes%
call ndk-build -C .\build\android-project NDK_DEBUG=1
if ERRORLEVEL 1 (
echo [ERROR] NDK build failed!
exit /b 1
)
echo sdk.dir=%ANDROID_HOME%> .\build\android-project\local.properties
cd .\build\android-project
call ant debug
if ERRORLEVEL 1 (
echo [ERROR] APK build failed!
exit /b 1
)
call ant debug install
| shironecko/cinamon-engine | source/build_tool/build_android.bat | bat | mit | 1,220 |
python setup.py build
python setup.py bdist_wheel
pip uninstall -y arcade
for /r %%i in (dist\*) do pip install "%%i"
| mikemhenry/arcade | makefast.bat | bat | mit | 118 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.