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
@setlocal @set node_name=cake @rem Get the absolute path to the parent directory, @rem which is assumed to be the node root. @for /F "delims=" %%I in ("%~dp0..") do @set node_root=%%~fI @set releases_dir=%node_root%\releases @rem Parse ERTS version and release version from start_erl.data @for /F "tokens=1,2" %%I in (%releases_dir%\start_erl.data) do @( @call :set_trim erts_version %%I @call :set_trim release_version %%J ) @rem extract erlang cookie from vm.args @set vm_args=%releases_dir%\%release_version%\vm.args @for /f "usebackq tokens=1-2" %%I in (`findstr /b \-setcookie %vm_args%`) do @set erlang_cookie=%%J @set erts_bin=%node_root%\erts-%erts_version%\bin @set service_name=%node_name%_%release_version% @if "%1"=="usage" @goto usage @if "%1"=="install" @goto install @if "%1"=="uninstall" @goto uninstall @if "%1"=="start" @goto start @if "%1"=="stop" @goto stop @if "%1"=="restart" @call :stop && @goto start @if "%1"=="console" @goto console @if "%1"=="query" @goto query @if "%1"=="attach" @goto attach @if "%1"=="upgrade" @goto upgrade @echo Unknown command: "%1" :usage @echo Usage: %~n0 [install^|uninstall^|start^|stop^|restart^|console^|query^|attach^|upgrade] @goto :EOF :install @%erts_bin%\erlsrv.exe add %service_name% -c "Erlang node %node_name% in %node_root%" -sname %node_name% -w %node_root% -m %node_root%\bin\start_erl.cmd -args " ++ %node_name% ++ %node_root%" -stopaction "init:stop()." @goto :EOF :uninstall @%erts_bin%\erlsrv.exe remove %service_name% @%erts_bin%\epmd.exe -kill @goto :EOF :start @%erts_bin%\erlsrv.exe start %service_name% @goto :EOF :stop @%erts_bin%\erlsrv.exe stop %service_name% @goto :EOF :console @start %erts_bin%\werl.exe -boot %releases_dir%\%release_version%\%node_name% -config %releases_dir%\%release_version%\sys.config -args_file %vm_args% -sname %node_name% @goto :EOF :query @%erts_bin%\erlsrv.exe list %service_name% @exit /b %ERRORLEVEL% @goto :EOF :attach @for /f "usebackq" %%I in (`hostname`) do @set hostname=%%I start %erts_bin%\werl.exe -boot %releases_dir%\%release_version%\start_clean -remsh %node_name%@%hostname% -sname console -setcookie %erlang_cookie% @goto :EOF :upgrade @if "%2"=="" ( @echo Missing upgrade package argument @echo Usage: %~n0 upgrade {package base name} @echo NOTE {package base name} MUST NOT include the .tar.gz suffix @goto :EOF ) @%erts_bin%\escript.exe %node_root%\bin\install_upgrade.escript %node_name% %erlang_cookie% %2 @goto :EOF :set_trim @set %1=%2 @goto :EOF
pmembrey/cakedb
rel/files/cake.cmd
bat
bsd-3-clause
2,520
@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\DjangoDDP.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\DjangoDDP.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
django-ddp/django-ddp
docs/make.bat
bat
mit
6,707
@echo off rem ÇëÕâÀïÅäÖÃf2etestµÄÓòÃû set f2etestDomain=f2etest.xxx.com set appid=360chrome rem ÃüÁîÐвÎÊý set proxymode="%1" set proxyurl=%2 set url=%3 set apiKey=%4 rem ̽²â×ÀÃæÄ£Ê½ set isWeb=1 if %url% equ desktop ( set url="about:blank" set isWeb=0 ) rem ÉèÖôúÀí set proxypath="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" reg add %proxypath% /v "ProxyEnable" /t REG_DWORD /d 0 /f>nul set proxydef= if %proxyurl% equ "" set proxydef=1 if %proxyurl% equ default set proxydef=1 if %proxyurl% equ "default" set proxydef=1 if defined proxydef set proxyurl="http://%f2etestDomain%/getHosts.pac?name=%USERNAME%" if %proxymode% equ "noproxy" ( set proxyurl="" ) if %proxyurl% neq "" ( rem ¿ªÆô´úÀí reg add %proxypath% /v "AutoConfigURL" /d %proxyurl% /f >nul ) else ( rem ¹Ø±Õ´úÀí reg delete %proxypath% /v "AutoConfigURL" /f > nul ) rem ´ò¿ªÓ¦Óà start /MAX "" "C:\360\360Chrome\Chrome\Application\360chrome.exe" --allow-no-sandbox-job %url% --user-data-dir="%APPDATA%\360chrome\User Data" rem ´òµãͳ¼Æ start "" curl "http://%f2etestDomain%/applog?userid=%USERNAME%&appid=%appid%&isweb=%isWeb%"
alibaba/f2etest
f2etest-client/f2etest-browsers/app/特殊应用/360chrome.bat
bat
mit
1,171
cmd_fs/partitions/check.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,fs/partitions/.check.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(check)" -D"KBUILD_MODNAME=KBUILD_STR(check)" -c -o fs/partitions/check.o fs/partitions/check.c deps_fs/partitions/check.o := \ fs/partitions/check.c \ $(wildcard include/config/blk/dev/md.h) \ $(wildcard include/config/acorn/partition/ics.h) \ $(wildcard include/config/acorn/partition/powertec.h) \ $(wildcard include/config/acorn/partition/eesox.h) \ $(wildcard include/config/acorn/partition/cumana.h) \ $(wildcard include/config/acorn/partition/adfs.h) \ $(wildcard include/config/efi/partition.h) \ $(wildcard include/config/sgi/partition.h) \ $(wildcard include/config/ldm/partition.h) \ $(wildcard include/config/msdos/partition.h) \ $(wildcard include/config/osf/partition.h) \ $(wildcard include/config/sun/partition.h) \ $(wildcard include/config/amiga/partition.h) \ $(wildcard include/config/atari/partition.h) \ $(wildcard include/config/mac/partition.h) \ $(wildcard include/config/ultrix/partition.h) \ $(wildcard include/config/ibm/partition.h) \ $(wildcard include/config/karma/partition.h) \ $(wildcard include/config/sysv68/partition.h) \ $(wildcard include/config/fail/make/request.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/acpi/hotplug/memory.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/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/sysfs.h) \ include/linux/spinlock.h \ $(wildcard include/config/smp.h) \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ include/linux/thread_info.h \ include/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/asm/types.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/64bit/phys/addr.h) \ $(wildcard include/config/64bit.h) \ include/linux/bitops.h \ include/asm/bitops.h \ $(wildcard include/config/cpu/mipsr2.h) \ $(wildcard include/config/cpu/mips32.h) \ $(wildcard include/config/cpu/mips64.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/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/debug/bugverbose.h) \ include/asm/byteorder.h \ $(wildcard include/config/cpu/mips64/r2.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.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) \ $(wildcard include/config/numa.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/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/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.h \ include/linux/seqlock.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ include/linux/errno.h \ include/asm/errno.h \ include/asm-generic/errno-base.h \ include/linux/elf.h \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/linux/elf-em.h \ include/asm/elf.h \ $(wildcard include/config/mips32/n32.h) \ $(wildcard include/config/mips32/o32.h) \ $(wildcard include/config/mips32/compat.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/wait.h \ include/asm/current.h \ include/linux/moduleparam.h \ include/asm/local.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/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/asm/page.h \ $(wildcard include/config/build/elf64.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/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/smp.h \ include/asm/topology.h \ 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/jiffies.h \ include/linux/calc64.h \ include/asm/div64.h \ include/asm-generic/div64.h \ include/linux/timex.h \ $(wildcard include/config/time/interpolation.h) \ $(wildcard include/config/no/hz.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/asm/timex.h \ include/asm-mips/mach-generic/timex.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ include/asm/module.h \ $(wildcard include/config/cpu/mips32/r2.h) \ $(wildcard include/config/cpu/mips64/r1.h) \ $(wildcard include/config/cpu/r6000.h) \ include/asm/uaccess.h \ include/asm-generic/uaccess.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/rcupdate.h \ include/linux/namei.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/asm/semaphore.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/ctype.h \ fs/partitions/check.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ include/linux/capability.h \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/backing-dev.h \ include/linux/mm_types.h \ include/asm/pgtable.h \ include/asm/pgtable-32.h \ include/asm/fixmap.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/s390.h) \ $(wildcard include/config/swap.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ include/linux/uaccess.h \ include/asm/cacheflush.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/linux/blkdev.h \ $(wildcard include/config/blk/dev/io/trace.h) \ include/linux/sched.h \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/compat.h) \ $(wildcard include/config/fault/injection.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/sem.h \ include/linux/ipc.h \ $(wildcard include/config/ipc/ns.h) \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ $(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/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 \ include/linux/major.h \ include/linux/genhd.h \ $(wildcard include/config/solaris/x86/partition.h) \ $(wildcard include/config/bsd/disklabel.h) \ $(wildcard include/config/unixware/disklabel.h) \ $(wildcard include/config/minix/subpartition.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ include/asm/device.h \ include/asm-generic/device.h \ include/linux/mempool.h \ include/linux/bio.h \ include/linux/ioprio.h \ include/asm/scatterlist.h \ include/linux/elevator.h \ fs/partitions/acorn.h \ fs/partitions/amiga.h \ fs/partitions/atari.h \ fs/partitions/ldm.h \ include/asm/unaligned.h \ include/asm-generic/unaligned.h \ fs/partitions/mac.h \ fs/partitions/msdos.h \ fs/partitions/osf.h \ fs/partitions/sgi.h \ fs/partitions/sun.h \ fs/partitions/ibm.h \ fs/partitions/ultrix.h \ fs/partitions/efi.h \ include/linux/efi.h \ $(wildcard include/config/efi/pcdp.h) \ $(wildcard include/config/efi.h) \ include/linux/proc_fs.h \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/magic.h \ include/linux/rtc.h \ $(wildcard include/config/rtc/intf/dev/uie/emul.h) \ include/linux/interrupt.h \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/asm/hardirq.h \ include/linux/irq.h \ $(wildcard include/config/irq/per/cpu.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/generic/pending/irq.h) \ $(wildcard include/config/irqbalance.h) \ $(wildcard include/config/auto/irq/affinity.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ include/asm/irq.h \ $(wildcard include/config/i8259.h) \ include/asm/mipsmtregs.h \ include/asm-mips/mach-generic/irq.h \ $(wildcard include/config/irq/cpu/rm7k.h) \ $(wildcard include/config/irq/cpu/rm9k.h) \ include/asm/irq_regs.h \ include/asm/hw_irq.h \ include/linux/profile.h \ include/linux/irq_cpustat.h \ include/linux/seq_file.h \ include/linux/cdev.h \ include/linux/poll.h \ include/asm/poll.h \ fs/partitions/karma.h \ fs/partitions/sysv68.h \ fs/partitions/check.o: $(deps_fs/partitions/check.o) $(deps_fs/partitions/check.o):
smx-smx/dsl-n55u-bender
release/src-ra/linux/linux-2.6.21.x/fs/partitions/.check.o.cmd
bat
gpl-2.0
19,849
@ECHO OFF IF NOT EXIST BIN GOTO NOBIN SET EC_SYS_PATH=%CD% REM ---- q enviroment ---- IF EXIST %EC_SYS_PATH%\bin\q\w32\q.exe SET QHOME=%EC_SYS_PATH%\bin\q IF EXIST %EC_SYS_PATH%\bin\q\w64\q.exe SET QHOME=%EC_SYS_PATH%\bin\q SET PATH=%QHOME%\w64;%QHOME%\w32;%PATH% WHERE /q q.exe || GOTO NOQ REM in case of q64bit - it is recommended to SET QLIC as following: QLIC=%EC_SYS_PATH%\etc REM ---- ec enviroment ---- SET EC_QSL_PATH=%EC_SYS_PATH%/bin/ec/libraries/qsl/ SET EC_ETC_PATH=%EC_SYS_PATH%/bin/ec/components/hdb/test/etc/ SET EC_SYS_ID=hdbTest SET EC_SYS_TYPE=FUNC_TEST REM ---- yak enviroment ---- SET YAK_PATH=%EC_SYS_PATH%\bin\yak SET YAK_OPTS=-c %EC_ETC_PATH%/system.cfg -s %EC_SYS_PATH%/data/test/%EC_SYS_ID%/yak/yak.status -l %EC_SYS_PATH%/log/test/%EC_SYS_ID%/yak/yak.log SET PATH=%YAK_PATH%;%PATH% ECHO env for system %EC_SYS_ID%/%EC_SYS_TYPE% loaded GOTO END :NOBIN ECHO Expected to find %EC_SYS_PATH%\bin directory. Expecting to run env.bat from the top level ec system directory. GOTO END :NOQ ECHO Missing q binary. Please install q in %EC_SYS_PATH%\bin\q\ directory, see ec\tutorial\Installation.md for instructions. :END
exxeleron/enterprise-components
components/hdb/test/etc/env.bat
bat
apache-2.0
1,146
@echo off if not exist .instdist goto scons rm -rf .instdist :scons scons UNICODE=no NSIS_MAX_STRLEN=8196 NSIS_CONFIG_LOG=yes dist | tee mkr.out if exist .instdist goto copyfiles :copyfiles
jimpark/unsis
unicode-src/mkr.bat
bat
mit
190
@echo off setlocal :SetupArgs :: Initialize the args that will be passed to cmake set __sourceDir=%~dp0 set __binDir=%~dp0..\..\..\bin set __CMakeBinDir="" set __IntermediatesDir="" set __BuildArch=AnyCPU set __VCBuildArch=x86_amd64 set CMAKE_BUILD_TYPE=Debug :Arg_Loop :: Since the native build requires some configuration information before msbuild is called, we have to do some manual args parsing :: For consistency with building the managed components, args are taken in the msbuild style i.e. /p: if [%1] == [] goto :ToolsVersion if /i [%1] == [/p:ConfigurationGroup] ( if /i [%2] == [Release] (set CMAKE_BUILD_TYPE=Release&&shift&&shift&goto Arg_Loop) if /i [%2] == [Debug] (set CMAKE_BUILD_TYPE=Debug&&shift&&shift&goto Arg_Loop) echo Error: Invalid configuration args "%1 and %2" exit /b 1 ) if /i [%1] == [/p:Platform] ( if /i [%2] == [AnyCPU] (set __BuildArch=AnyCPU&&set __VCBuildArch=x86_amd64&&shift&&shift&goto Arg_Loop) if /i [%2] == [x86] (set __BuildArch=x86&&set __VCBuildArch=x86&&shift&&shift&goto Arg_Loop) if /i [%2] == [arm] (set __BuildArch=arm&&set __VCBuildArch=x86_arm&&shift&&shift&goto Arg_Loop) if /i [%2] == [x64] (set __BuildArch=x64&&set __VCBuildArch=x86_amd64&&shift&&shift&goto Arg_Loop) echo Error: Invalid platform args "%1 and %2" exit /b 1 ) if /i [%1] == [-intermediateDir] ( set __IntermediatesDir=%2 ) if /i [%1] == [-binDir] ( set __CMakeBinDir=%2 ) shift goto :Arg_Loop :ToolsVersion :: Determine the tools version to pass to cmake/msbuild if not defined VisualStudioVersion ( if defined VS140COMNTOOLS ( goto :VS2015 ) if defined VS120COMNTOOLS ( goto :VS2013 ) goto :MissingVersion ) if "%VisualStudioVersion%"=="14.0" ( goto :VS2015 ) if "%VisualStudioVersion%"=="12.0" ( goto :VS2013 ) :MissingVersion :: Can't find VS 2013+ echo Error: build.cmd requires Visual Studio 2013 or 2015. echo Please see https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md for build instructions. exit /b 1 :VS2013 :: Setup vars for VS2013 set __VSVersion=vs2013 set __PlatformToolset="v120" :: Set the environment for the native build call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %__VCBuildArch% goto :SetupDirs :VS2015 :: Setup vars for VS2015 set __VSVersion=vs2015 set __PlatformToolset="v140" :: Set the environment for the native build call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %__VCBuildArch% goto :SetupDirs :SetupDirs :: Setup to cmake the native components echo Commencing build of native components echo. if %__CMakeBinDir% == "" ( set "__CMakeBinDir=%__binDir%\Windows_NT.%__BuildArch%.%CMAKE_BUILD_TYPE%\Native" ) if %__IntermediatesDir% == "" ( set "__IntermediatesDir=%__binDir%\obj\Windows_NT.%__BuildArch%.%CMAKE_BUILD_TYPE%\Native" ) set "__CMakeBinDir=%__CMakeBinDir:\=/%" set "__IntermediatesDir=%__IntermediatesDir:\=/%" :: We wanted to allow AnyCPU for folder creation purposes, but it doesn't make sense for a native build. Default to something else for the actual building. if "%__BuildArch%" == "AnyCPU" ( set __BuildArch=x64 ) echo %__CMakeBinDir% :: Check that the intermediate directory exists so we can place our cmake build tree there if exist "%__IntermediatesDir%" rd /s /q "%__IntermediatesDir%" if not exist "%__IntermediatesDir%" md "%__IntermediatesDir%" if exist "%VSINSTALLDIR%DIA SDK" goto GenVSSolution echo Error: DIA SDK is missing at "%VSINSTALLDIR%DIA SDK". ^ This is due to a bug in the Visual Studio installer. It does not install DIA SDK at "%VSINSTALLDIR%" but rather ^ at VS install location of previous version. Workaround is to copy DIA SDK folder from VS install location ^ of previous version to "%VSINSTALLDIR%" and then resume build. :: DIA SDK not included in Express editions echo Visual Studio 2013 Express does not include the DIA SDK. ^ You need Visual Studio 2013+ (Community is free). echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1 :GenVSSolution :: Regenerate the VS solution pushd "%__IntermediatesDir%" call "%__sourceDir%\gen-buildsys-win.bat" %__sourceDir% %__VSVersion% %__BuildArch% popd :CheckForProj :: Check that the project created by Cmake exists if exist "%__IntermediatesDir%\install.vcxproj" goto BuildNativeProj goto :Failure :BuildNativeProj :: Build the project created by Cmake msbuild "%__IntermediatesDir%\install.vcxproj" /t:rebuild /nologo /p:Configuration=%CMAKE_BUILD_TYPE% /p:Platform=%__BuildArch% /maxcpucount /nodeReuse:false /p:PlatformToolset="%__PlatformToolset%" /fileloggerparameters:Verbosity=normal IF ERRORLEVEL 1 ( goto :Failure ) :Success :: Successful build echo Done building Native components EXIT /B 0 :Failure :: Build failed echo Failed to generate native component build project! exit /b 1
mellinoe/corefx
src/Native/Windows/build-native.cmd
bat
mit
4,926
bttrack.py --dfile statefile3 --port 83 --multitracker_enabled 1 --allowed_dir allowed --aggregate_forward http://localhost:80/announce,pwd --scrape_allowed none --show_infopage 0
jakesyl/BitTornado
test/multitracker/tracker3.bat
bat
mit
179
:: Copyright 2019 The TensorFlow Authors. All Rights Reserved. :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. :: ============================================================================= SET PYTHON_DIRECTORY=Python37 CALL tensorflow\tools\ci_build\release\common_win.bat call tensorflow\tools\ci_build\windows\cpu\pip\run.bat --release_build --extra_build_flags "--config=v2" --extra_test_flags "--test_env=TF2_BEHAVIOR=1" --project_name "tensorflow_cpu"
gunan/tensorflow
tensorflow/tools/ci_build/release/windows/cpu_py37_full/release.bat
bat
apache-2.0
973
@echo off build.cmd Test
Nerven/Bygge
source/Nerven.Bygge/Assets/build.test.cmd
bat
mit
25
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\password-hash\bin\nodepw" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\password-hash\bin\nodepw" %* )
mohamadir/15-minutes
temp/node_modules/.bin/nodepw.cmd
bat
mit
190
executable = ./job_dagman_final-F-node.pl output = job_dagman_final-F-nodeA.out error = job_dagman_final-F-nodeA.err arguments = "F_A 0 $(DAG_STATUS) $(FAILED_COUNT)" universe = scheduler notification = NEVER queue
htcondor/htcondor
src/condor_tests/job_dagman_final-F-nodeA.cmd
bat
apache-2.0
215
xcopy ..\..\build\thinktecture.identitymodel.owin.BasicAuthentication.* lib\net45 /y NuGet.exe pack Thinktecture.IdentityModel.Owin.BasicAuthentication.nuspec -exclude *.cmd -OutputDirectory ..\
hajirazin/Thinktecture.IdentityModel
nuget/Owin.BasicAuthentication/nugetPack.cmd
bat
bsd-3-clause
194
@..\solver\win32\create_projects.py ../../libs/ libbase StaticLibrary 5DF7F2A6-074B-4C87-9B3F-573E74825C08 @..\solver\win32\create_projects.py ../../libs/ libweb StaticLibrary 2BA30215-647C-45E0-B010-68C99684A674 @..\solver\win32\create_projects.py ../../libs/ libpersist StaticLibrary 59A765F1-F092-44AF-8452-56D33C3726B6 @..\solver\win32\create_projects.py ../../libs/ libenv StaticLibrary 78037AD4-D33B-4641-A9F7-D0A5E142B487 @..\solver\win32\create_projects.py ../../libs/ libremote StaticLibrary 76C6A49A-2917-49D0-9AC5-DFBF5C3983E0 @..\solver\win32\create_projects.py ../../libs/ libreedr StaticLibrary CD2FAB0F-3E45-4846-AEFE-EC7BE0C7D2D8 @..\solver\win32\create_projects.py ../../apps/ reedr Application 93A32A2E-A7A6-4ABF-9505-BB6A76A2F358 @..\solver\win32\create_projects.py ../../apps/ dbtool Application 1B38F6B4-1D10-4076-AB73-0F8B5B652ED8
mbits-os/aggregate
platforms/win32/projects.cmd
bat
mit
853
node TetrisServer.js
Saicheg/courses
materials/Archive/codenjoy/node.js/run-server.bat
bat
mit
20
@echo off IF "%1"=="" ( echo Usage: make ^<profile-name^> echo Example: make dev ) ELSE ( IF NOT EXIST profiles\%1.properties ( echo ERROR: file "profiles\profiles.%1.xml" not found pause ) ELSE ( call fm --properties=profiles/%1.properties pom.xml.ftl > pom.xml if errorlevel 1 pause call mvn clean package -Dmaven.test.skip=true -Dfile.encoding=UTF-8 ) ) if "%1"=="prod" ( copy /Y target\pbox.war P:\html\pbox.war )
MikeMirzayanov/pbox
src/site/make.bat
bat
mit
484
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\node_modules\pretty-bytes\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\node_modules\pretty-bytes\cli.js" %* )
johnson1994/Feed
pretty-bytes.cmd
bat
mit
200
@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\serverless_exceptions.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\serverless_exceptions.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
CloudHeads/serverless_exceptions
docs/make.bat
bat
mit
6,489
cmd_fs/splice.o := ppc_4xx-gcc -m32 -Wp,-MD,fs/.splice.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(splice)" -D"KBUILD_MODNAME=KBUILD_STR(splice)" -c -o fs/.tmp_splice.o fs/splice.c deps_fs/splice.o := \ fs/splice.c \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \ $(wildcard include/config/phys/64bit.h) \ include/asm-generic/int-ll64.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \ $(wildcard include/config/vsx.h) \ $(wildcard include/config/ppc32.h) \ $(wildcard include/config/ppc/prep.h) \ $(wildcard include/config/task/size.h) \ $(wildcard include/config/kernel/start.h) \ $(wildcard include/config/ppc64.h) \ $(wildcard include/config/4xx.h) \ $(wildcard include/config/booke.h) \ $(wildcard include/config/altivec.h) \ $(wildcard include/config/spe.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \ $(wildcard include/config/40x.h) \ $(wildcard include/config/fsl/emb/perfmon.h) \ $(wildcard include/config/8xx.h) \ $(wildcard include/config/ppc/book3s/64.h) \ $(wildcard include/config/ppc/book3s/32.h) \ $(wildcard include/config/ppc/book3e/64.h) \ $(wildcard include/config/e200.h) \ $(wildcard include/config/ppc/cell.h) \ include/linux/stringify.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \ $(wildcard include/config/mpc10x/bridge.h) \ $(wildcard include/config/ppc/83xx.h) \ $(wildcard include/config/8260.h) \ $(wildcard include/config/ppc/mpc52xx.h) \ $(wildcard include/config/bdi/switch.h) \ $(wildcard include/config/power3.h) \ $(wildcard include/config/power4.h) \ $(wildcard include/config/44x.h) \ $(wildcard include/config/e500.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \ $(wildcard include/config/power4/only.h) \ $(wildcard include/config/ibm405/err77.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \ $(wildcard include/config/403gcx.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \ $(wildcard include/config/ppc/e500mc.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \ $(wildcard include/config/debugger.h) \ $(wildcard include/config/kexec.h) \ $(wildcard include/config/6xx.h) \ $(wildcard include/config/booke/wdt.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/find.h \ include/asm-generic/bitops/sched.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/typecheck.h \ include/linux/dynamic_debug.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \ include/linux/byteorder/big_endian.h \ include/linux/swab.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \ include/linux/byteorder/generic.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \ include/asm-generic/div64.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \ $(wildcard include/config/ppc/book3e.h) \ $(wildcard include/config/perf/events.h) \ include/linux/errno.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/asm-generic/cmpxchg-local.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \ $(wildcard include/config/ppc/256k/pages.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \ $(wildcard include/config/ppc/64k/pages.h) \ $(wildcard include/config/ppc/16k/pages.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/physical/start.h) \ $(wildcard include/config/relocatable.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/ppc/std/mmu/64.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/ppc/smlpar.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \ $(wildcard include/config/crash/dump.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \ $(wildcard include/config/physical/align.h) \ $(wildcard include/config/not/coherent/cache.h) \ $(wildcard include/config/pte/64bit.h) \ include/asm-generic/getorder.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ include/linux/path.h \ include/linux/stat.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/kobject.h \ $(wildcard include/config/hotplug.h) \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/file.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \ $(wildcard include/config/pci.h) \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \ $(wildcard include/config/ppc/std/mmu/32.h) \ $(wildcard include/config/ppc/book3e/mmu.h) \ $(wildcard include/config/ppc/8xx.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \ $(wildcard include/config/ppc/early/debug/44x.h) \ $(wildcard include/config/ppc/early/debug/44x/physlow.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable-ppc32.h \ $(wildcard include/config/consistent/size.h) \ $(wildcard include/config/fsl/booke.h) \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/group/sched.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/linux/param.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \ include/linux/jiffies.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \ include/linux/signal.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/kmalloc_sizes.h \ include/linux/pfn.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \ include/linux/unistd.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io.h \ $(wildcard include/config/ra.h) \ $(wildcard include/config/rd.h) \ $(wildcard include/config/ppc/indirect/io.h) \ $(wildcard include/config/eeh.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/devtmpfs.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \ $(wildcard include/config/spu/base.h) \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \ $(wildcard include/config/dynamic/ftrace.h) \ include/trace/events/module.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \ $(wildcard include/config/swiotlb.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/io.h \ $(wildcard include/config/has/ioport.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \ $(wildcard include/config/ppc/iseries.h) \ $(wildcard include/config/power.h) \ $(wildcard include/config/8xx/cpu6.h) \ include/asm-generic/iomap.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \ $(wildcard include/config/ppc/std/mmu.h) \ $(wildcard include/config/kgdb.h) \ $(wildcard include/config/xmon.h) \ $(wildcard include/config/kprobes.h) \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ $(wildcard include/config/debug/highmem.h) \ include/linux/uaccess.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cacheflush.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kmap_types.h \ include/linux/hardirq.h \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hardirq.h \ include/asm-generic/hardirq.h \ include/linux/irq.h \ $(wildcard include/config/irq/per/cpu.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/intr/remap.h) \ $(wildcard include/config/generic/pending/irq.h) \ $(wildcard include/config/sparse/irq.h) \ $(wildcard include/config/numa/irq/desc.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ $(wildcard include/config/cpumasks/offstack.h) \ include/linux/irqreturn.h \ include/linux/irqnr.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq.h \ $(wildcard include/config/nr/irqs.h) \ $(wildcard include/config/irqstacks.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq_regs.h \ include/asm-generic/irq_regs.h \ include/linux/irq_cpustat.h \ include/linux/splice.h \ include/linux/pipe_fs_i.h \ include/linux/memcontrol.h \ $(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \ $(wildcard include/config/cgroup/mem/cont.h) \ include/linux/cgroup.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/idr.h \ include/linux/mm_inline.h \ include/linux/swap.h \ include/linux/node.h \ $(wildcard include/config/memory/hotplug/sparse.h) \ $(wildcard include/config/hugetlbfs.h) \ include/linux/sysdev.h \ include/linux/writeback.h \ include/linux/buffer_head.h \ include/linux/syscalls.h \ $(wildcard include/config/event/profile.h) \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/mips.h) \ $(wildcard include/config/have/syscall/wrappers.h) \ include/trace/syscall.h \ include/linux/ftrace_event.h \ include/linux/ring_buffer.h \ $(wildcard include/config/ring/buffer/allow/swap.h) \ include/linux/kmemcheck.h \ include/linux/seq_file.h \ include/linux/trace_seq.h \ include/linux/security.h \ $(wildcard include/config/security/path.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/securityfs.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/shmparam.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/shmbuf.h \ include/linux/msg.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/msgbuf.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/in6.h \ fs/splice.o: $(deps_fs/splice.o) $(deps_fs/splice.o):
mattkelly/linux-2.6-xlnx
fs/.splice.o.cmd
bat
gpl-2.0
26,534
cmd_sound/pci/ali5451/built-in.o := rm -f sound/pci/ali5451/built-in.o; /home/algesat/arm-eabi-4.7/bin/arm-eabi-ar rcsD sound/pci/ali5451/built-in.o
Algesat/BladeApex2
sound/pci/ali5451/.built-in.o.cmd
bat
gpl-2.0
150
cmd_coreutils/cut.o := arm-linux-musleabihf-gcc -Wp,-MD,coreutils/.cut.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(cut)" -D"KBUILD_MODNAME=KBUILD_STR(cut)" -c -o coreutils/cut.o coreutils/cut.c deps_coreutils/cut.o := \ coreutils/cut.c \ $(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/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ coreutils/cut.o: $(deps_coreutils/cut.o) $(deps_coreutils/cut.o):
ThinkIntegrate/busybox
coreutils/.cut.o.cmd
bat
gpl-2.0
11,331
cmd_arch/arm/lib/copy_to_user.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.copy_to_user.o.d -nostdinc -isystem /home/aashir/android/toolchain/linaro/bin/../lib/gcc/arm-eabi/4.6.2/include -I/home/aashir/android/2012/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-ux500/include -Iarch/arm/plat-nomadik/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) \ /home/aashir/android/2012/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) \ /home/aashir/android/2012/arch/arm/include/asm/linkage.h \ /home/aashir/android/2012/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/aashir/android/2012/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/aashir/android/2012/arch/arm/include/asm/hwcap.h \ /home/aashir/android/2012/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):
emwno/android_kernel_U8500
arch/arm/lib/.copy_to_user.o.cmd
bat
gpl-2.0
2,021
@rem Use with "Screen Launcher": http://www.softpedia.com/get/Desktop-Enhancements/Screensavers/Screen-Launcher.shtml @echo off cd /D "%~dp0" if defined __ goto :START cls & cmdwiz setfont 6 & cls & cmdwiz showcursor 0 mode 80,50 & cmdwiz showmousecursor 0 & cmdwiz fullscreen 1 if %ERRORLEVEL% lss 0 set TOP=U cmdwiz showcursor 0 & cmdwiz setmousecursorpos 10000 100 cmdwiz getdisplaydim w set /a W=%errorlevel%/7+1 cmdwiz getdisplaydim h set /a H=%errorlevel%/12+1 ::set /a W=(W*114)/100+2 set __=. call %0 %* | cmdgfx_gdi "" %TOP%m0OW16eSf5:0,0,310,165,155,55t6 set __= cmdwiz fullscreen 0 & cls & cmdwiz setfont 6 & cmdwiz showcursor 1 & mode 80,50 goto :eof :START setlocal ENABLEDELAYEDEXPANSION for /F "tokens=1 delims==" %%v in ('set') do if not "%%v"=="W" if not "%%v"=="H" set "%%v=" set /a WW=W*2, HHH=H*3 set /a HP=H+20, HP2=HP+1, HPP=HP+5, HPP2=HPP+1 set /a CNT=0 & for %%a in (0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f) do set /a HX!CNT!=%%a, CNT+=1 set IMG=img\myface.txt& if not "%~1" == "" set IMG=%1 set STREAM="??00=??00,??40=2?41,??41=2000,??80=2?81,??81=2000,??d0=2?d1,??d1=2000,????=??++" set PAL0=- set PAL1=000000,000000,022476,000000,000000,000000,000000,000000,000000,000000,0872ff set PAL2=000000,000000,793400,000000,000000,000000,000000,000000,000000,000000,f89200 set /a PALC=0 set /a IMGI=0 set IMG0=img\spiral\_.txt set IMG1=img\myface.txt set IMG2=img\-.txt set /a "XP=W/2-80/2-1,YP=H/2-48/2" set /a IMGC=0 ::set INI to 1 to show image immediately (as before) set /a INI=0 if !INI!==1 set INIT=fbox 2 0 00 :LOOP for /L %%1 in (1,1,300) do if not defined STOP ( set OUT="!INIT!&" set INIT= for /L %%a in (0,1,1) do set /a "X=!RANDOM! %% !W!+!W!,CH1=!RANDOM! %% 16,CH2=!RANDOM! %% 14 + 2"&set /a "CH3=!CH2!-1, CH4=!CH2!-2"&for %%e in (!CH1!) do for %%f in (!CH2!) do for %%g in (!CH3!) do for %%h in (!CH4!) do set C1=!HX%%e!&set C2=!HX%%f!&set C3=!HX%%g!&set C4=!HX%%h!&set OUT="!OUT:~1,-1!pixel f 0 !C1!!C2! !X!,0&pixel f 0 !C1!!C3! !X!,1&pixel e 0 !C1!!C2! !X!,2&" for /L %%a in (0,1,10) do set /a "X=!RANDOM! %% !W!+!W!"&set OUT="!OUT:~1,-1!pixel 2 0 00 !X!,0&pixel 2 0 00 !X!,1&" for /L %%a in (0,1,1) do set /a "X=!RANDOM! %% !W!+!W!,CH1=!RANDOM! %% 16,CH2=!RANDOM! %% 16"&for %%e in (!CH1!) do for %%f in (!CH2!) do set C1=!HX%%e!&set C2=!HX%%f!&set OUT="!OUT:~1,-1!pixel f 0 !C1!!C2! !X!,!HPP!" for /L %%a in (0,1,6) do set /a "X=!RANDOM! %% !W!+!W!"&set OUT="!OUT:~1,-1!pixel 2 0 00 !X!,!HPP!&" for %%c in (!PALC!) do for %%i in (!IMGI!) do for %%n in (!IMGCD!) do set IMAGE=!IMG%%i! & set IMAGE=!IMAGE:_=%%n! & echo "cmdgfx: !OUT:~1,-1! & block 0 !W!,0,!W!,!HP! !W!,2 -1 0 0 %STREAM:~1,-1% & block 0 !W!,!HPP!,!W!,!HP! !W!,!HPP2! -1 0 0 %STREAM:~1,-1% & block 0 !W!,!HPP!,!W!,!HP! 0,0 -1 0 0 2???=a???& block 0 !W!,2,!W!,!HP! 0,0 00 & fbox ? ? 20 0,0,!W!,!H! & image !IMAGE! ? ? 0 -1 !XP!,!YP! & block 0 !W!,!HPP!,!W!,!HP! 0,!HP2! -1 0 0 f???=2??? & block 0 !W!,2,!W!,!HP! 0,!HP2! 00 0 0 a???=2???,2???=2???,f???=2???,e???=a??? & block 0 0,0,!W!,!HP! 0,!HP2! 20 & block 0 0,!HP2!,!W!,!HP! 0,0" f5:0,0,!WW!,!HHH!,!W!,!H! !PAL%%c! if exist EL.dat set /p EVENTS=<EL.dat & del /Q EL.dat >nul 2>nul & set /a "KEY=!EVENTS!>>22, MOUSE_EVENT=!EVENTS!&1" if !KEY! == 112 set /a KEY=0 & cmdwiz getch if !KEY! neq 0 set STOP=1 if !MOUSE_EVENT! neq 0 set STOP=1 set /a KEY=0 set /a "IMGC=(!IMGC!+1) %% (10 * 5), IMGCD=IMGC/5" ) if not defined STOP goto LOOP cmdwiz delay 100 echo "cmdgfx: quit" endlocal
misol1/cmdgfx
ScreenSaver-Matrix.bat
bat
gpl-2.0
3,472
cmd_lib/zlib_inflate/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o lib/zlib_inflate/built-in.o lib/zlib_inflate/zlib_inflate.o
sleshepic/epic_touch_kernel
lib/zlib_inflate/.built-in.o.cmd
bat
gpl-2.0
177
cmd_drivers/cpufreq/built-in.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/cpufreq/built-in.o drivers/cpufreq/cpufreq.o drivers/cpufreq/cpufreq_stats.o drivers/cpufreq/cpufreq_performance.o drivers/cpufreq/cpufreq_powersave.o drivers/cpufreq/cpufreq_userspace.o drivers/cpufreq/cpufreq_ondemandx.o drivers/cpufreq/cpufreq_ondemand.o drivers/cpufreq/cpufreq_conservative.o drivers/cpufreq/cpufreq_smoothass.o drivers/cpufreq/cpufreq_greaselightning.o drivers/cpufreq/cpufreq_savagedzen.o drivers/cpufreq/cpufreq_interactivex.o drivers/cpufreq/cpufreq_smartass2.o drivers/cpufreq/cpufreq_scary.o drivers/cpufreq/cpufreq_lagfree.o drivers/cpufreq/cpufreq_darkside.o drivers/cpufreq/cpufreq_interactive.o drivers/cpufreq/freq_table.o
dizgustipated/BOCA-2.6.35.14
drivers/cpufreq/.built-in.o.cmd
bat
gpl-2.0
760
cmd_arch/arm/lib/csumipv6.o := /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.csumipv6.o.d -nostdinc -isystem /home/rittik/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/../lib/gcc/arm-eabi/4.6.2/include -I/home/rittik/android/kernel/crater/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-capri/include -Iarch/arm/plat-kona/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -mfpu=vfp3 -mfloat-abi=softfp -gdwarf-2 -c -o arch/arm/lib/csumipv6.o arch/arm/lib/csumipv6.S source_arch/arm/lib/csumipv6.o := arch/arm/lib/csumipv6.S deps_arch/arm/lib/csumipv6.o := \ /home/rittik/android/kernel/crater/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/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) \ /home/rittik/android/kernel/crater/arch/arm/include/asm/linkage.h \ /home/rittik/android/kernel/crater/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/rittik/android/kernel/crater/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/rittik/android/kernel/crater/arch/arm/include/asm/hwcap.h \ /home/rittik/android/kernel/crater/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/lib/csumipv6.o: $(deps_arch/arm/lib/csumipv6.o) $(deps_arch/arm/lib/csumipv6.o):
RittikBhowmik/Project-Crater-Kernel-GT-i9152
arch/arm/lib/.csumipv6.o.cmd
bat
gpl-2.0
2,082
cmd_scripts/kconfig/lxdialog/inputbox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.inputbox.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/inputbox.o scripts/kconfig/lxdialog/inputbox.c deps_scripts/kconfig/lxdialog/inputbox.o := \ scripts/kconfig/lxdialog/inputbox.c \ scripts/kconfig/lxdialog/dialog.h \ /usr/include/sys/types.h \ /usr/include/features.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/x86_64-redhat-linux/4.5.1/include/stddef.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/fcntl.h \ /usr/include/bits/fcntl.h \ /usr/include/bits/stat.h \ /usr/include/unistd.h \ /usr/include/bits/posix_opt.h \ /usr/include/bits/environments.h \ /usr/include/bits/confname.h \ /usr/include/getopt.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/stdlib.h \ /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/string.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ /usr/lib/gcc/x86_64-redhat-linux/4.5.1/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/bits/locale.h \ /usr/include/ncurses/ncurses.h \ /usr/include/ncurses/ncurses_dll.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-redhat-linux/4.5.1/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/include/ncurses/unctrl.h \ /usr/include/ncurses/curses.h \ scripts/kconfig/lxdialog/inputbox.o: $(deps_scripts/kconfig/lxdialog/inputbox.o) $(deps_scripts/kconfig/lxdialog/inputbox.o):
kodos96/backport
scripts/kconfig/lxdialog/.inputbox.o.cmd
bat
gpl-2.0
2,222
cmd_arch/arm/common/built-in.o := rm -f arch/arm/common/built-in.o; arm-linux-gnueabi-ar rcs arch/arm/common/built-in.o
b8e5n/KTG-kernel_es209ra
arch/arm/common/.built-in.o.cmd
bat
gpl-2.0
121
cmd_drivers/net/can/can-dev.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o drivers/net/can/can-dev.o drivers/net/can/dev.o
avareldalton85/rpi2-linux-rt
drivers/net/can/.can-dev.o.cmd
bat
gpl-2.0
187
cmd_util-linux/volume_id/lib.a := rm -f util-linux/volume_id/lib.a; arm-linux-musleabihf-ar rcs util-linux/volume_id/lib.a util-linux/volume_id/btrfs.o util-linux/volume_id/cramfs.o util-linux/volume_id/exfat.o util-linux/volume_id/ext.o util-linux/volume_id/f2fs.o util-linux/volume_id/fat.o util-linux/volume_id/get_devname.o util-linux/volume_id/hfs.o util-linux/volume_id/iso9660.o util-linux/volume_id/jfs.o util-linux/volume_id/linux_raid.o util-linux/volume_id/linux_swap.o util-linux/volume_id/luks.o util-linux/volume_id/nilfs.o util-linux/volume_id/ntfs.o util-linux/volume_id/ocfs2.o util-linux/volume_id/reiserfs.o util-linux/volume_id/romfs.o util-linux/volume_id/squashfs.o util-linux/volume_id/sysv.o util-linux/volume_id/udf.o util-linux/volume_id/util.o util-linux/volume_id/volume_id.o util-linux/volume_id/xfs.o
ThinkIntegrate/busybox
util-linux/volume_id/.lib.a.cmd
bat
gpl-2.0
832
echo off set binpath=..\..\..\misc\bins_win32 set lcc=%binpath%\q3lcc set asm=%binpath%\q3asm set compile=%lcc% -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui echo on mkdir vm cd vm %compile% ../g_main.c @if errorlevel 1 goto quit %compile% ../g_syscalls.c @if errorlevel 1 goto quit %compile% ../bg_misc.c @if errorlevel 1 goto quit %compile% ../bg_lib.c @if errorlevel 1 goto quit %compile% ../bg_pmove.c @if errorlevel 1 goto quit %compile% ../bg_slidemove.c @if errorlevel 1 goto quit %compile% ../../qcommon/q_math.c @if errorlevel 1 goto quit %compile% ../../qcommon/q_shared.c @if errorlevel 1 goto quit %compile% ../ai_dmnet.c @if errorlevel 1 goto quit %compile% ../ai_dmq3.c @if errorlevel 1 goto quit %compile% ../ai_main.c @if errorlevel 1 goto quit %compile% ../ai_chat.c @if errorlevel 1 goto quit %compile% ../ai_cmd.c @if errorlevel 1 goto quit %compile% ../ai_team.c @if errorlevel 1 goto quit %compile% ../g_active.c @if errorlevel 1 goto quit %compile% ../g_arenas.c @if errorlevel 1 goto quit %compile% ../g_bot.c @if errorlevel 1 goto quit %compile% ../g_client.c @if errorlevel 1 goto quit %compile% ../g_cmds.c @if errorlevel 1 goto quit %compile% ../g_combat.c @if errorlevel 1 goto quit %compile% ../g_gameinfo.c @if errorlevel 1 goto quit %compile% ../g_items.c @if errorlevel 1 goto quit %compile% ../g_mem.c @if errorlevel 1 goto quit %compile% ../g_misc.c @if errorlevel 1 goto quit %compile% ../g_missile.c @if errorlevel 1 goto quit %compile% ../g_mover.c @if errorlevel 1 goto quit %compile% ../g_session.c @if errorlevel 1 goto quit %compile% ../g_spawn.c @if errorlevel 1 goto quit %compile% ../g_svcmds.c @if errorlevel 1 goto quit %compile% ../g_target.c @if errorlevel 1 goto quit %compile% ../g_team.c @if errorlevel 1 goto quit %compile% ../g_trigger.c @if errorlevel 1 goto quit %compile% ../g_utils.c @if errorlevel 1 goto quit %compile% ../g_weapon.c @if errorlevel 1 goto quit %compile% ../ai_vcmd.c rem @if errorlevel 1 goto quit %compile% ../g_stations.c @if errorlevel 1 goto quit %compile% ../g_modifiers.c @if errorlevel 1 goto quit %compile% ../wopg_spstoryfiles.c @if errorlevel 1 goto quit %compile% ../wopg_sphandling.c @if errorlevel 1 goto quit %compile% ../g_ctlitems.c @if errorlevel 1 goto quit %asm% -v -f ../game :quit echo off cd .. rem PATH=%oldPATH% PAUSE
ptitSeb/WoP-Pandora
code/game/game.bat
bat
gpl-2.0
2,501
cmd_net/netfilter/netfilter.o := /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/netfilter/netfilter.o net/netfilter/core.o net/netfilter/nf_log.o net/netfilter/nf_queue.o net/netfilter/nf_sockopt.o
MadRocker/experimental-2.6.29-MadRocker
net/netfilter/.netfilter.o.cmd
bat
gpl-2.0
244
cmd_crypto/cryptomgr.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o crypto/cryptomgr.o crypto/algboss.o crypto/testmgr.o
PrestigeMod/SHW-M440S
crypto/.cryptomgr.o.cmd
bat
gpl-2.0
180
@set PSEUDO_CMDP=%* @set PSEUDO_PRG=%1 @mshta vbscript:Execute("set objWshProcessEnv = CreateObject(""WScript.Shell"").Environment(""PROCESS""):strCommandLine = objWshProcessEnv(""PSEUDO_CMDP""):strApplication = objWshProcessEnv(""PSEUDO_PRG""):CreateObject(""Shell.Application"").ShellExecute strApplication, right(strCommandLine, (len(strCommandLine) - len(strApplication))), """", ""runas"":close")
kasajian/pseudo
pseudo.bat
bat
gpl-2.0
402
%ChocolateyInstall%\tools\shimgen.exe --path="C:\software\7zip\7z.exe" --output="%ChocolateyInstall%\bin\7z.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\7zip\7zFM.exe" --output="%ChocolateyInstall%\bin\7zFM.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\7zip\7zG.exe" --output="%ChocolateyInstall%\bin\7zG.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\arkdasm\arkDasm.exe" --output="%ChocolateyInstall%\bin\arkDasm.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Au3Check.exe" --output="%ChocolateyInstall%\bin\Au3Check.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Au3Info.exe" --output="%ChocolateyInstall%\bin\Au3Info.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Au3Info_x64.exe" --output="%ChocolateyInstall%\bin\Au3Info_x64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Aut2Exe\Aut2exe.exe" --output="%ChocolateyInstall%\bin\Aut2exe.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Aut2Exe\Aut2exe_x64.exe" --output="%ChocolateyInstall%\bin\Aut2exe_x64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Aut2Exe\upx.exe" --output="%ChocolateyInstall%\bin\upx.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\AutoIt3.exe" --output="%ChocolateyInstall%\bin\AutoIt3.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\AutoIt3Help.exe" --output="%ChocolateyInstall%\bin\AutoIt3Help.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\AutoIt3_x64.exe" --output="%ChocolateyInstall%\bin\AutoIt3_x64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\Examples\Helpfile\Extras\MyProg.exe" --output="%ChocolateyInstall%\bin\MyProg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\autoit3\SciTE\SciTE.exe" --output="%ChocolateyInstall%\bin\SciTE.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\CFF Explorer.exe" --output="%ChocolateyInstall%\bin\CFF Explorer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\Extensions\CFF Explorer\UPX Utility\upx.exe" --output="%ChocolateyInstall%\bin\upx.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\PE Detective.exe" --output="%ChocolateyInstall%\bin\PE Detective.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\Signature Explorer.exe" --output="%ChocolateyInstall%\bin\Signature Explorer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\Task Explorer-x64.exe" --output="%ChocolateyInstall%\bin\Task Explorer-x64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\Task Explorer.exe" --output="%ChocolateyInstall%\bin\Task Explorer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\cffexplorer\Tools\DriverList.exe" --output="%ChocolateyInstall%\bin\DriverList.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\die\die.exe" --output="%ChocolateyInstall%\bin\die.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\die\diel.exe" --output="%ChocolateyInstall%\bin\diel.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\die\stuff\die.exe" --output="%ChocolateyInstall%\bin\die.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\die\stuff\diec.exe" --output="%ChocolateyInstall%\bin\diec.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\die\stuff\diel.exe" --output="%ChocolateyInstall%\bin\diel.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\dnspy\dnSpy-x86.exe" --output="%ChocolateyInstall%\bin\dnSpy-x86.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\dnspy\dnSpy.Console.exe" --output="%ChocolateyInstall%\bin\dnSpy.Console.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\dnspy\dnSpy.exe" --output="%ChocolateyInstall%\bin\dnSpy.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\far\Far.exe" --output="%ChocolateyInstall%\bin\Far.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\bin\bash.exe" --output="%ChocolateyInstall%\bin\bash.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\bin\git.exe" --output="%ChocolateyInstall%\bin\git.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\bin\sh.exe" --output="%ChocolateyInstall%\bin\sh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\cmd\git-gui.exe" --output="%ChocolateyInstall%\bin\git-gui.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\cmd\git.exe" --output="%ChocolateyInstall%\bin\git.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\cmd\gitk.exe" --output="%ChocolateyInstall%\bin\gitk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\git-bash.exe" --output="%ChocolateyInstall%\bin\git-bash.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\git-cmd.exe" --output="%ChocolateyInstall%\bin\git-cmd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\antiword.exe" --output="%ChocolateyInstall%\bin\antiword.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\bunzip2.exe" --output="%ChocolateyInstall%\bin\bunzip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\bzcat.exe" --output="%ChocolateyInstall%\bin\bzcat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\bzip2.exe" --output="%ChocolateyInstall%\bin\bzip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\bzip2recover.exe" --output="%ChocolateyInstall%\bin\bzip2recover.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\certtool.exe" --output="%ChocolateyInstall%\bin\certtool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\connect.exe" --output="%ChocolateyInstall%\bin\connect.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\create-shortcut.exe" --output="%ChocolateyInstall%\bin\create-shortcut.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\curl-winssl\curl.exe" --output="%ChocolateyInstall%\bin\curl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\curl.exe" --output="%ChocolateyInstall%\bin\curl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\edit_test.exe" --output="%ChocolateyInstall%\bin\edit_test.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\edit_test_dll.exe" --output="%ChocolateyInstall%\bin\edit_test_dll.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\envsubst.exe" --output="%ChocolateyInstall%\bin\envsubst.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\gettext.exe" --output="%ChocolateyInstall%\bin\gettext.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\git-lfs.exe" --output="%ChocolateyInstall%\bin\git-lfs.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\git-receive-pack.exe" --output="%ChocolateyInstall%\bin\git-receive-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\git-upload-archive.exe" --output="%ChocolateyInstall%\bin\git-upload-archive.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\git-upload-pack.exe" --output="%ChocolateyInstall%\bin\git-upload-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\git.exe" --output="%ChocolateyInstall%\bin\git.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\openssl.exe" --output="%ChocolateyInstall%\bin\openssl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\p11-kit.exe" --output="%ChocolateyInstall%\bin\p11-kit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\p11tool.exe" --output="%ChocolateyInstall%\bin\p11tool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\pdftotext.exe" --output="%ChocolateyInstall%\bin\pdftotext.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\pkcs1-conv.exe" --output="%ChocolateyInstall%\bin\pkcs1-conv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\psktool.exe" --output="%ChocolateyInstall%\bin\psktool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\recode-sr-latin.exe" --output="%ChocolateyInstall%\bin\recode-sr-latin.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\sexp-conv.exe" --output="%ChocolateyInstall%\bin\sexp-conv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\srptool.exe" --output="%ChocolateyInstall%\bin\srptool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\tclsh.exe" --output="%ChocolateyInstall%\bin\tclsh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\tclsh86.exe" --output="%ChocolateyInstall%\bin\tclsh86.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\trust.exe" --output="%ChocolateyInstall%\bin\trust.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\WhoUses.exe" --output="%ChocolateyInstall%\bin\WhoUses.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\wish.exe" --output="%ChocolateyInstall%\bin\wish.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\wish86.exe" --output="%ChocolateyInstall%\bin\wish86.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\x86_64-w64-mingw32-agrep.exe" --output="%ChocolateyInstall%\bin\x86_64-w64-mingw32-agrep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\x86_64-w64-mingw32-deflatehd.exe" --output="%ChocolateyInstall%\bin\x86_64-w64-mingw32-deflatehd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\x86_64-w64-mingw32-inflatehd.exe" --output="%ChocolateyInstall%\bin\x86_64-w64-mingw32-inflatehd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\bin\xmlwf.exe" --output="%ChocolateyInstall%\bin\xmlwf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-add.exe" --output="%ChocolateyInstall%\bin\git-add.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-am.exe" --output="%ChocolateyInstall%\bin\git-am.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-annotate.exe" --output="%ChocolateyInstall%\bin\git-annotate.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-apply.exe" --output="%ChocolateyInstall%\bin\git-apply.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-archive.exe" --output="%ChocolateyInstall%\bin\git-archive.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-askpass.exe" --output="%ChocolateyInstall%\bin\git-askpass.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-bisect--helper.exe" --output="%ChocolateyInstall%\bin\git-bisect--helper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-blame.exe" --output="%ChocolateyInstall%\bin\git-blame.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-branch.exe" --output="%ChocolateyInstall%\bin\git-branch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-bundle.exe" --output="%ChocolateyInstall%\bin\git-bundle.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-cat-file.exe" --output="%ChocolateyInstall%\bin\git-cat-file.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-check-attr.exe" --output="%ChocolateyInstall%\bin\git-check-attr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-check-ignore.exe" --output="%ChocolateyInstall%\bin\git-check-ignore.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-check-mailmap.exe" --output="%ChocolateyInstall%\bin\git-check-mailmap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-check-ref-format.exe" --output="%ChocolateyInstall%\bin\git-check-ref-format.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-checkout-index.exe" --output="%ChocolateyInstall%\bin\git-checkout-index.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-checkout.exe" --output="%ChocolateyInstall%\bin\git-checkout.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-cherry-pick.exe" --output="%ChocolateyInstall%\bin\git-cherry-pick.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-cherry.exe" --output="%ChocolateyInstall%\bin\git-cherry.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-clean.exe" --output="%ChocolateyInstall%\bin\git-clean.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-clone.exe" --output="%ChocolateyInstall%\bin\git-clone.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-column.exe" --output="%ChocolateyInstall%\bin\git-column.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-commit-tree.exe" --output="%ChocolateyInstall%\bin\git-commit-tree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-commit.exe" --output="%ChocolateyInstall%\bin\git-commit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-config.exe" --output="%ChocolateyInstall%\bin\git-config.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-count-objects.exe" --output="%ChocolateyInstall%\bin\git-count-objects.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-credential-manager.exe" --output="%ChocolateyInstall%\bin\git-credential-manager.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-credential-store.exe" --output="%ChocolateyInstall%\bin\git-credential-store.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-credential-wincred.exe" --output="%ChocolateyInstall%\bin\git-credential-wincred.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-credential.exe" --output="%ChocolateyInstall%\bin\git-credential.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-daemon.exe" --output="%ChocolateyInstall%\bin\git-daemon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-describe.exe" --output="%ChocolateyInstall%\bin\git-describe.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-diff-files.exe" --output="%ChocolateyInstall%\bin\git-diff-files.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-diff-index.exe" --output="%ChocolateyInstall%\bin\git-diff-index.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-diff-tree.exe" --output="%ChocolateyInstall%\bin\git-diff-tree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-diff.exe" --output="%ChocolateyInstall%\bin\git-diff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-difftool.exe" --output="%ChocolateyInstall%\bin\git-difftool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fast-export.exe" --output="%ChocolateyInstall%\bin\git-fast-export.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fast-import.exe" --output="%ChocolateyInstall%\bin\git-fast-import.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fetch-pack.exe" --output="%ChocolateyInstall%\bin\git-fetch-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fetch.exe" --output="%ChocolateyInstall%\bin\git-fetch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fmt-merge-msg.exe" --output="%ChocolateyInstall%\bin\git-fmt-merge-msg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-for-each-ref.exe" --output="%ChocolateyInstall%\bin\git-for-each-ref.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-format-patch.exe" --output="%ChocolateyInstall%\bin\git-format-patch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fsck-objects.exe" --output="%ChocolateyInstall%\bin\git-fsck-objects.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-fsck.exe" --output="%ChocolateyInstall%\bin\git-fsck.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-gc.exe" --output="%ChocolateyInstall%\bin\git-gc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-get-tar-commit-id.exe" --output="%ChocolateyInstall%\bin\git-get-tar-commit-id.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-grep.exe" --output="%ChocolateyInstall%\bin\git-grep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-hash-object.exe" --output="%ChocolateyInstall%\bin\git-hash-object.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-help.exe" --output="%ChocolateyInstall%\bin\git-help.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-http-backend.exe" --output="%ChocolateyInstall%\bin\git-http-backend.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-http-fetch.exe" --output="%ChocolateyInstall%\bin\git-http-fetch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-http-push.exe" --output="%ChocolateyInstall%\bin\git-http-push.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-imap-send.exe" --output="%ChocolateyInstall%\bin\git-imap-send.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-index-pack.exe" --output="%ChocolateyInstall%\bin\git-index-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-init-db.exe" --output="%ChocolateyInstall%\bin\git-init-db.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-init.exe" --output="%ChocolateyInstall%\bin\git-init.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-interpret-trailers.exe" --output="%ChocolateyInstall%\bin\git-interpret-trailers.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-log.exe" --output="%ChocolateyInstall%\bin\git-log.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-ls-files.exe" --output="%ChocolateyInstall%\bin\git-ls-files.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-ls-remote.exe" --output="%ChocolateyInstall%\bin\git-ls-remote.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-ls-tree.exe" --output="%ChocolateyInstall%\bin\git-ls-tree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-mailinfo.exe" --output="%ChocolateyInstall%\bin\git-mailinfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-mailsplit.exe" --output="%ChocolateyInstall%\bin\git-mailsplit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-base.exe" --output="%ChocolateyInstall%\bin\git-merge-base.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-file.exe" --output="%ChocolateyInstall%\bin\git-merge-file.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-index.exe" --output="%ChocolateyInstall%\bin\git-merge-index.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-ours.exe" --output="%ChocolateyInstall%\bin\git-merge-ours.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-recursive.exe" --output="%ChocolateyInstall%\bin\git-merge-recursive.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-subtree.exe" --output="%ChocolateyInstall%\bin\git-merge-subtree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge-tree.exe" --output="%ChocolateyInstall%\bin\git-merge-tree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-merge.exe" --output="%ChocolateyInstall%\bin\git-merge.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-mktag.exe" --output="%ChocolateyInstall%\bin\git-mktag.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-mktree.exe" --output="%ChocolateyInstall%\bin\git-mktree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-mv.exe" --output="%ChocolateyInstall%\bin\git-mv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-name-rev.exe" --output="%ChocolateyInstall%\bin\git-name-rev.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-notes.exe" --output="%ChocolateyInstall%\bin\git-notes.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-pack-objects.exe" --output="%ChocolateyInstall%\bin\git-pack-objects.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-pack-redundant.exe" --output="%ChocolateyInstall%\bin\git-pack-redundant.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-pack-refs.exe" --output="%ChocolateyInstall%\bin\git-pack-refs.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-patch-id.exe" --output="%ChocolateyInstall%\bin\git-patch-id.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-prune-packed.exe" --output="%ChocolateyInstall%\bin\git-prune-packed.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-prune.exe" --output="%ChocolateyInstall%\bin\git-prune.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-pull.exe" --output="%ChocolateyInstall%\bin\git-pull.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-push.exe" --output="%ChocolateyInstall%\bin\git-push.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-read-tree.exe" --output="%ChocolateyInstall%\bin\git-read-tree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-rebase--helper.exe" --output="%ChocolateyInstall%\bin\git-rebase--helper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-receive-pack.exe" --output="%ChocolateyInstall%\bin\git-receive-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-reflog.exe" --output="%ChocolateyInstall%\bin\git-reflog.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote-ext.exe" --output="%ChocolateyInstall%\bin\git-remote-ext.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote-fd.exe" --output="%ChocolateyInstall%\bin\git-remote-fd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote-ftp.exe" --output="%ChocolateyInstall%\bin\git-remote-ftp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote-ftps.exe" --output="%ChocolateyInstall%\bin\git-remote-ftps.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote-http.exe" --output="%ChocolateyInstall%\bin\git-remote-http.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote-https.exe" --output="%ChocolateyInstall%\bin\git-remote-https.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-remote.exe" --output="%ChocolateyInstall%\bin\git-remote.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-repack.exe" --output="%ChocolateyInstall%\bin\git-repack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-replace.exe" --output="%ChocolateyInstall%\bin\git-replace.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-rerere.exe" --output="%ChocolateyInstall%\bin\git-rerere.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-reset.exe" --output="%ChocolateyInstall%\bin\git-reset.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-rev-list.exe" --output="%ChocolateyInstall%\bin\git-rev-list.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-rev-parse.exe" --output="%ChocolateyInstall%\bin\git-rev-parse.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-revert.exe" --output="%ChocolateyInstall%\bin\git-revert.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-rm.exe" --output="%ChocolateyInstall%\bin\git-rm.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-send-pack.exe" --output="%ChocolateyInstall%\bin\git-send-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-sh-i18n--envsubst.exe" --output="%ChocolateyInstall%\bin\git-sh-i18n--envsubst.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-shortlog.exe" --output="%ChocolateyInstall%\bin\git-shortlog.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-show-branch.exe" --output="%ChocolateyInstall%\bin\git-show-branch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-show-index.exe" --output="%ChocolateyInstall%\bin\git-show-index.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-show-ref.exe" --output="%ChocolateyInstall%\bin\git-show-ref.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-show.exe" --output="%ChocolateyInstall%\bin\git-show.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-stage.exe" --output="%ChocolateyInstall%\bin\git-stage.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-status.exe" --output="%ChocolateyInstall%\bin\git-status.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-stripspace.exe" --output="%ChocolateyInstall%\bin\git-stripspace.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-submodule--helper.exe" --output="%ChocolateyInstall%\bin\git-submodule--helper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-symbolic-ref.exe" --output="%ChocolateyInstall%\bin\git-symbolic-ref.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-tag.exe" --output="%ChocolateyInstall%\bin\git-tag.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-unpack-file.exe" --output="%ChocolateyInstall%\bin\git-unpack-file.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-unpack-objects.exe" --output="%ChocolateyInstall%\bin\git-unpack-objects.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-update-index.exe" --output="%ChocolateyInstall%\bin\git-update-index.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-update-ref.exe" --output="%ChocolateyInstall%\bin\git-update-ref.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-update-server-info.exe" --output="%ChocolateyInstall%\bin\git-update-server-info.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-upload-archive.exe" --output="%ChocolateyInstall%\bin\git-upload-archive.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-upload-pack.exe" --output="%ChocolateyInstall%\bin\git-upload-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-var.exe" --output="%ChocolateyInstall%\bin\git-var.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-verify-commit.exe" --output="%ChocolateyInstall%\bin\git-verify-commit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-verify-pack.exe" --output="%ChocolateyInstall%\bin\git-verify-pack.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-verify-tag.exe" --output="%ChocolateyInstall%\bin\git-verify-tag.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-whatchanged.exe" --output="%ChocolateyInstall%\bin\git-whatchanged.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-worktree.exe" --output="%ChocolateyInstall%\bin\git-worktree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git-write-tree.exe" --output="%ChocolateyInstall%\bin\git-write-tree.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\git.exe" --output="%ChocolateyInstall%\bin\git.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\git-core\GitHub.Authentication.exe" --output="%ChocolateyInstall%\bin\GitHub.Authentication.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\libexec\p11-kit\p11-kit-remote.exe" --output="%ChocolateyInstall%\bin\p11-kit-remote.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\share\git\compat-bash.exe" --output="%ChocolateyInstall%\bin\compat-bash.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\mingw64\share\git\git-wrapper.exe" --output="%ChocolateyInstall%\bin\git-wrapper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\arch.exe" --output="%ChocolateyInstall%\bin\arch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\awk.exe" --output="%ChocolateyInstall%\bin\awk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\b2sum.exe" --output="%ChocolateyInstall%\bin\b2sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\base32.exe" --output="%ChocolateyInstall%\bin\base32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\base64.exe" --output="%ChocolateyInstall%\bin\base64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\basename.exe" --output="%ChocolateyInstall%\bin\basename.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\bash.exe" --output="%ChocolateyInstall%\bin\bash.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\bunzip2.exe" --output="%ChocolateyInstall%\bin\bunzip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\bzcat.exe" --output="%ChocolateyInstall%\bin\bzcat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\bzip2.exe" --output="%ChocolateyInstall%\bin\bzip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\bzip2recover.exe" --output="%ChocolateyInstall%\bin\bzip2recover.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\captoinfo.exe" --output="%ChocolateyInstall%\bin\captoinfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cat.exe" --output="%ChocolateyInstall%\bin\cat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\chcon.exe" --output="%ChocolateyInstall%\bin\chcon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\chgrp.exe" --output="%ChocolateyInstall%\bin\chgrp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\chmod.exe" --output="%ChocolateyInstall%\bin\chmod.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\chown.exe" --output="%ChocolateyInstall%\bin\chown.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\chroot.exe" --output="%ChocolateyInstall%\bin\chroot.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cksum.exe" --output="%ChocolateyInstall%\bin\cksum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\clear.exe" --output="%ChocolateyInstall%\bin\clear.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cmp.exe" --output="%ChocolateyInstall%\bin\cmp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\column.exe" --output="%ChocolateyInstall%\bin\column.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\comm.exe" --output="%ChocolateyInstall%\bin\comm.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cp.exe" --output="%ChocolateyInstall%\bin\cp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\csplit.exe" --output="%ChocolateyInstall%\bin\csplit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cut.exe" --output="%ChocolateyInstall%\bin\cut.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cygcheck.exe" --output="%ChocolateyInstall%\bin\cygcheck.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cygpath.exe" --output="%ChocolateyInstall%\bin\cygpath.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\cygwin-console-helper.exe" --output="%ChocolateyInstall%\bin\cygwin-console-helper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\d2u.exe" --output="%ChocolateyInstall%\bin\d2u.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\dash.exe" --output="%ChocolateyInstall%\bin\dash.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\date.exe" --output="%ChocolateyInstall%\bin\date.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\dd.exe" --output="%ChocolateyInstall%\bin\dd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\df.exe" --output="%ChocolateyInstall%\bin\df.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\diff.exe" --output="%ChocolateyInstall%\bin\diff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\diff3.exe" --output="%ChocolateyInstall%\bin\diff3.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\dir.exe" --output="%ChocolateyInstall%\bin\dir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\dircolors.exe" --output="%ChocolateyInstall%\bin\dircolors.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\dirname.exe" --output="%ChocolateyInstall%\bin\dirname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\dos2unix.exe" --output="%ChocolateyInstall%\bin\dos2unix.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\du.exe" --output="%ChocolateyInstall%\bin\du.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\echo.exe" --output="%ChocolateyInstall%\bin\echo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\env.exe" --output="%ChocolateyInstall%\bin\env.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ex.exe" --output="%ChocolateyInstall%\bin\ex.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\expand.exe" --output="%ChocolateyInstall%\bin\expand.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\expr.exe" --output="%ChocolateyInstall%\bin\expr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\factor.exe" --output="%ChocolateyInstall%\bin\factor.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\false.exe" --output="%ChocolateyInstall%\bin\false.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\file.exe" --output="%ChocolateyInstall%\bin\file.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\find.exe" --output="%ChocolateyInstall%\bin\find.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\fmt.exe" --output="%ChocolateyInstall%\bin\fmt.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\fold.exe" --output="%ChocolateyInstall%\bin\fold.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\funzip.exe" --output="%ChocolateyInstall%\bin\funzip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gawk-4.1.4.exe" --output="%ChocolateyInstall%\bin\gawk-4.1.4.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gawk.exe" --output="%ChocolateyInstall%\bin\gawk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gdbmtool.exe" --output="%ChocolateyInstall%\bin\gdbmtool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gdbm_dump.exe" --output="%ChocolateyInstall%\bin\gdbm_dump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gdbm_load.exe" --output="%ChocolateyInstall%\bin\gdbm_load.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\getconf.exe" --output="%ChocolateyInstall%\bin\getconf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\getfacl.exe" --output="%ChocolateyInstall%\bin\getfacl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\getopt.exe" --output="%ChocolateyInstall%\bin\getopt.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gkill.exe" --output="%ChocolateyInstall%\bin\gkill.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gpg.exe" --output="%ChocolateyInstall%\bin\gpg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gpgsplit.exe" --output="%ChocolateyInstall%\bin\gpgsplit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gpgv.exe" --output="%ChocolateyInstall%\bin\gpgv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\grep.exe" --output="%ChocolateyInstall%\bin\grep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\groups.exe" --output="%ChocolateyInstall%\bin\groups.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\gzip.exe" --output="%ChocolateyInstall%\bin\gzip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\head.exe" --output="%ChocolateyInstall%\bin\head.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\hostid.exe" --output="%ChocolateyInstall%\bin\hostid.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\hostname.exe" --output="%ChocolateyInstall%\bin\hostname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\iconv.exe" --output="%ChocolateyInstall%\bin\iconv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\id.exe" --output="%ChocolateyInstall%\bin\id.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\infocmp.exe" --output="%ChocolateyInstall%\bin\infocmp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\infotocap.exe" --output="%ChocolateyInstall%\bin\infotocap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\install.exe" --output="%ChocolateyInstall%\bin\install.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\join.exe" --output="%ChocolateyInstall%\bin\join.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\kill.exe" --output="%ChocolateyInstall%\bin\kill.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ldd.exe" --output="%ChocolateyInstall%\bin\ldd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ldh.exe" --output="%ChocolateyInstall%\bin\ldh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\less.exe" --output="%ChocolateyInstall%\bin\less.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\lessecho.exe" --output="%ChocolateyInstall%\bin\lessecho.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\lesskey.exe" --output="%ChocolateyInstall%\bin\lesskey.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\link.exe" --output="%ChocolateyInstall%\bin\link.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ln.exe" --output="%ChocolateyInstall%\bin\ln.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\locale.exe" --output="%ChocolateyInstall%\bin\locale.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\locate.exe" --output="%ChocolateyInstall%\bin\locate.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\logname.exe" --output="%ChocolateyInstall%\bin\logname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ls.exe" --output="%ChocolateyInstall%\bin\ls.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mac2unix.exe" --output="%ChocolateyInstall%\bin\mac2unix.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\md5sum.exe" --output="%ChocolateyInstall%\bin\md5sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\minidumper.exe" --output="%ChocolateyInstall%\bin\minidumper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mintty.exe" --output="%ChocolateyInstall%\bin\mintty.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mkdir.exe" --output="%ChocolateyInstall%\bin\mkdir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mkfifo.exe" --output="%ChocolateyInstall%\bin\mkfifo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mkgroup.exe" --output="%ChocolateyInstall%\bin\mkgroup.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mknod.exe" --output="%ChocolateyInstall%\bin\mknod.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mkpasswd.exe" --output="%ChocolateyInstall%\bin\mkpasswd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mktemp.exe" --output="%ChocolateyInstall%\bin\mktemp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mount.exe" --output="%ChocolateyInstall%\bin\mount.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\mv.exe" --output="%ChocolateyInstall%\bin\mv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\nice.exe" --output="%ChocolateyInstall%\bin\nice.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\nl.exe" --output="%ChocolateyInstall%\bin\nl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\nohup.exe" --output="%ChocolateyInstall%\bin\nohup.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\nproc.exe" --output="%ChocolateyInstall%\bin\nproc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\numfmt.exe" --output="%ChocolateyInstall%\bin\numfmt.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\od.exe" --output="%ChocolateyInstall%\bin\od.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\openssl.exe" --output="%ChocolateyInstall%\bin\openssl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\p11-kit.exe" --output="%ChocolateyInstall%\bin\p11-kit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\passwd.exe" --output="%ChocolateyInstall%\bin\passwd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\paste.exe" --output="%ChocolateyInstall%\bin\paste.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\patch.exe" --output="%ChocolateyInstall%\bin\patch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\pathchk.exe" --output="%ChocolateyInstall%\bin\pathchk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\perl.exe" --output="%ChocolateyInstall%\bin\perl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\perl5.24.1.exe" --output="%ChocolateyInstall%\bin\perl5.24.1.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\pinky.exe" --output="%ChocolateyInstall%\bin\pinky.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\pldd.exe" --output="%ChocolateyInstall%\bin\pldd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\pluginviewer.exe" --output="%ChocolateyInstall%\bin\pluginviewer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\pr.exe" --output="%ChocolateyInstall%\bin\pr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\printenv.exe" --output="%ChocolateyInstall%\bin\printenv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\printf.exe" --output="%ChocolateyInstall%\bin\printf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ps.exe" --output="%ChocolateyInstall%\bin\ps.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ptx.exe" --output="%ChocolateyInstall%\bin\ptx.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\pwd.exe" --output="%ChocolateyInstall%\bin\pwd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\readlink.exe" --output="%ChocolateyInstall%\bin\readlink.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\realpath.exe" --output="%ChocolateyInstall%\bin\realpath.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\rebase.exe" --output="%ChocolateyInstall%\bin\rebase.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\regtool.exe" --output="%ChocolateyInstall%\bin\regtool.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\reset.exe" --output="%ChocolateyInstall%\bin\reset.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\rm.exe" --output="%ChocolateyInstall%\bin\rm.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\rmdir.exe" --output="%ChocolateyInstall%\bin\rmdir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\runcon.exe" --output="%ChocolateyInstall%\bin\runcon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\rview.exe" --output="%ChocolateyInstall%\bin\rview.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\rvim.exe" --output="%ChocolateyInstall%\bin\rvim.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sasldblistusers2.exe" --output="%ChocolateyInstall%\bin\sasldblistusers2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\saslpasswd2.exe" --output="%ChocolateyInstall%\bin\saslpasswd2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\scp.exe" --output="%ChocolateyInstall%\bin\scp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sdiff.exe" --output="%ChocolateyInstall%\bin\sdiff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sed.exe" --output="%ChocolateyInstall%\bin\sed.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\seq.exe" --output="%ChocolateyInstall%\bin\seq.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\setfacl.exe" --output="%ChocolateyInstall%\bin\setfacl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\setmetamode.exe" --output="%ChocolateyInstall%\bin\setmetamode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sftp.exe" --output="%ChocolateyInstall%\bin\sftp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sh.exe" --output="%ChocolateyInstall%\bin\sh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sha1sum.exe" --output="%ChocolateyInstall%\bin\sha1sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sha224sum.exe" --output="%ChocolateyInstall%\bin\sha224sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sha256sum.exe" --output="%ChocolateyInstall%\bin\sha256sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sha384sum.exe" --output="%ChocolateyInstall%\bin\sha384sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sha512sum.exe" --output="%ChocolateyInstall%\bin\sha512sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\shred.exe" --output="%ChocolateyInstall%\bin\shred.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\shuf.exe" --output="%ChocolateyInstall%\bin\shuf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sleep.exe" --output="%ChocolateyInstall%\bin\sleep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sort.exe" --output="%ChocolateyInstall%\bin\sort.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\split.exe" --output="%ChocolateyInstall%\bin\split.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssh-add.exe" --output="%ChocolateyInstall%\bin\ssh-add.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssh-agent.exe" --output="%ChocolateyInstall%\bin\ssh-agent.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssh-keygen.exe" --output="%ChocolateyInstall%\bin\ssh-keygen.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssh-keyscan.exe" --output="%ChocolateyInstall%\bin\ssh-keyscan.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssh-pageant.exe" --output="%ChocolateyInstall%\bin\ssh-pageant.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssh.exe" --output="%ChocolateyInstall%\bin\ssh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sshd.exe" --output="%ChocolateyInstall%\bin\sshd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\ssp.exe" --output="%ChocolateyInstall%\bin\ssp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\stat.exe" --output="%ChocolateyInstall%\bin\stat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\stdbuf.exe" --output="%ChocolateyInstall%\bin\stdbuf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\strace.exe" --output="%ChocolateyInstall%\bin\strace.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\stty.exe" --output="%ChocolateyInstall%\bin\stty.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sum.exe" --output="%ChocolateyInstall%\bin\sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\sync.exe" --output="%ChocolateyInstall%\bin\sync.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tabs.exe" --output="%ChocolateyInstall%\bin\tabs.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tac.exe" --output="%ChocolateyInstall%\bin\tac.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tail.exe" --output="%ChocolateyInstall%\bin\tail.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tar.exe" --output="%ChocolateyInstall%\bin\tar.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tee.exe" --output="%ChocolateyInstall%\bin\tee.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\test.exe" --output="%ChocolateyInstall%\bin\test.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tic.exe" --output="%ChocolateyInstall%\bin\tic.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\timeout.exe" --output="%ChocolateyInstall%\bin\timeout.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\toe.exe" --output="%ChocolateyInstall%\bin\toe.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\touch.exe" --output="%ChocolateyInstall%\bin\touch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tput.exe" --output="%ChocolateyInstall%\bin\tput.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tr.exe" --output="%ChocolateyInstall%\bin\tr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\true.exe" --output="%ChocolateyInstall%\bin\true.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\truncate.exe" --output="%ChocolateyInstall%\bin\truncate.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\trust.exe" --output="%ChocolateyInstall%\bin\trust.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tset.exe" --output="%ChocolateyInstall%\bin\tset.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tsort.exe" --output="%ChocolateyInstall%\bin\tsort.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tty.exe" --output="%ChocolateyInstall%\bin\tty.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\tzset.exe" --output="%ChocolateyInstall%\bin\tzset.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\u2d.exe" --output="%ChocolateyInstall%\bin\u2d.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\umount.exe" --output="%ChocolateyInstall%\bin\umount.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\uname.exe" --output="%ChocolateyInstall%\bin\uname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\unexpand.exe" --output="%ChocolateyInstall%\bin\unexpand.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\uniq.exe" --output="%ChocolateyInstall%\bin\uniq.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\unix2dos.exe" --output="%ChocolateyInstall%\bin\unix2dos.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\unix2mac.exe" --output="%ChocolateyInstall%\bin\unix2mac.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\unlink.exe" --output="%ChocolateyInstall%\bin\unlink.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\unzip.exe" --output="%ChocolateyInstall%\bin\unzip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\unzipsfx.exe" --output="%ChocolateyInstall%\bin\unzipsfx.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\users.exe" --output="%ChocolateyInstall%\bin\users.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\vdir.exe" --output="%ChocolateyInstall%\bin\vdir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\view.exe" --output="%ChocolateyInstall%\bin\view.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\vim.exe" --output="%ChocolateyInstall%\bin\vim.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\vimdiff.exe" --output="%ChocolateyInstall%\bin\vimdiff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\wc.exe" --output="%ChocolateyInstall%\bin\wc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\which.exe" --output="%ChocolateyInstall%\bin\which.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\who.exe" --output="%ChocolateyInstall%\bin\who.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\whoami.exe" --output="%ChocolateyInstall%\bin\whoami.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\winpty-agent.exe" --output="%ChocolateyInstall%\bin\winpty-agent.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\winpty-debugserver.exe" --output="%ChocolateyInstall%\bin\winpty-debugserver.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\winpty.exe" --output="%ChocolateyInstall%\bin\winpty.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\xargs.exe" --output="%ChocolateyInstall%\bin\xargs.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\xmlwf.exe" --output="%ChocolateyInstall%\bin\xmlwf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\xxd.exe" --output="%ChocolateyInstall%\bin\xxd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\yes.exe" --output="%ChocolateyInstall%\bin\yes.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\zipinfo.exe" --output="%ChocolateyInstall%\bin\zipinfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\bin\[.exe" --output="%ChocolateyInstall%\bin\[.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\awk\grcat.exe" --output="%ChocolateyInstall%\bin\grcat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\awk\pwcat.exe" --output="%ChocolateyInstall%\bin\pwcat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\coreutils\libstdbuf.so.exe" --output="%ChocolateyInstall%\bin\libstdbuf.so.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\gnupg\gnupg\gpgkeys_curl.exe" --output="%ChocolateyInstall%\bin\gpgkeys_curl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\gnupg\gnupg\gpgkeys_finger.exe" --output="%ChocolateyInstall%\bin\gpgkeys_finger.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\gnupg\gnupg\gpgkeys_hkp.exe" --output="%ChocolateyInstall%\bin\gpgkeys_hkp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\p11-kit\p11-kit-remote.exe" --output="%ChocolateyInstall%\bin\p11-kit-remote.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\ssh\sftp-server.exe" --output="%ChocolateyInstall%\bin\sftp-server.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\ssh\ssh-keysign.exe" --output="%ChocolateyInstall%\bin\ssh-keysign.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\ssh\ssh-pkcs11-helper.exe" --output="%ChocolateyInstall%\bin\ssh-pkcs11-helper.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\lib\tar\rmt.exe" --output="%ChocolateyInstall%\bin\rmt.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\libexec\bigram.exe" --output="%ChocolateyInstall%\bin\bigram.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\libexec\code.exe" --output="%ChocolateyInstall%\bin\code.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\git\usr\libexec\frcode.exe" --output="%ChocolateyInstall%\bin\frcode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\ilspy\ILSpy.exe" --output="%ChocolateyInstall%\bin\ILSpy.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\immdbg\ImmunityDebugger.exe" --output="%ChocolateyInstall%\bin\ImmunityDebugger.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\immdbg\loaddll.exe" --output="%ChocolateyInstall%\bin\loaddll.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\LDS_Clients\CoolDump1.4\Cooldump.exe" --output="%ChocolateyInstall%\bin\Cooldump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\16Edit.exe" --output="%ChocolateyInstall%\bin\16Edit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\LordElf.exe" --output="%ChocolateyInstall%\bin\LordElf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\MetaPuck.exe" --output="%ChocolateyInstall%\bin\MetaPuck.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\PESnoop.exe" --output="%ChocolateyInstall%\bin\PESnoop.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\RunKMD.exe" --output="%ChocolateyInstall%\bin\RunKMD.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\RunVxD.exe" --output="%ChocolateyInstall%\bin\RunVxD.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\SoftSnoop\Plugins\TestMe.exe" --output="%ChocolateyInstall%\bin\TestMe.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\SoftSnoop\SoftSnoop.exe" --output="%ChocolateyInstall%\bin\SoftSnoop.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\Misc\yPER.exe" --output="%ChocolateyInstall%\bin\yPER.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\LordPE\LDS\Examples\LDSChat.exe" --output="%ChocolateyInstall%\bin\LDSChat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\LordPE\LDS\Examples\LDS_DmpTst.exe" --output="%ChocolateyInstall%\bin\LDS_DmpTst.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\LordPE\LDS\Examples\LDS_LoadDump.exe" --output="%ChocolateyInstall%\bin\LDS_LoadDump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\LordPE\LDS\Examples\LDS_TaskViewer.exe" --output="%ChocolateyInstall%\bin\LDS_TaskViewer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\LordPE\LDS\Examples\LDS_VerPid.exe" --output="%ChocolateyInstall%\bin\LDS_VerPid.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\procsDLL\examples\UseProcs1.exe" --output="%ChocolateyInstall%\bin\UseProcs1.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\SDK\procsDLL\examples\useprocs2.exe" --output="%ChocolateyInstall%\bin\useprocs2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\lordpe\TrapDll.exe" --output="%ChocolateyInstall%\bin\TrapDll.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\nmap\ncat.exe" --output="%ChocolateyInstall%\bin\ncat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\nmap\ndiff.exe" --output="%ChocolateyInstall%\bin\ndiff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\nmap\nmap-update.exe" --output="%ChocolateyInstall%\bin\nmap-update.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\nmap\nmap.exe" --output="%ChocolateyInstall%\bin\nmap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\nmap\nping.exe" --output="%ChocolateyInstall%\bin\nping.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\nmap\zenmap.exe" --output="%ChocolateyInstall%\bin\zenmap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\ollydbg2\ollydbg.exe" --output="%ChocolateyInstall%\bin\ollydbg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\ollydbg2\Test.exe" --output="%ChocolateyInstall%\bin\Test.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\pafish\pafish.exe" --output="%ChocolateyInstall%\bin\pafish.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\pestudio\pestudio.exe" --output="%ChocolateyInstall%\bin\pestudio.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\pestudio\pestudiox.exe" --output="%ChocolateyInstall%\bin\pestudiox.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\processhacker\x64\peview.exe" --output="%ChocolateyInstall%\bin\peview.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\processhacker\x64\ProcessHacker.exe" --output="%ChocolateyInstall%\bin\ProcessHacker.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\processhacker\x86\peview.exe" --output="%ChocolateyInstall%\bin\peview.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\processhacker\x86\ProcessHacker.exe" --output="%ChocolateyInstall%\bin\ProcessHacker.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\distutils\command\wininst-6.0.exe" --output="%ChocolateyInstall%\bin\wininst-6.0.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\distutils\command\wininst-7.1.exe" --output="%ChocolateyInstall%\bin\wininst-7.1.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\distutils\command\wininst-8.0.exe" --output="%ChocolateyInstall%\bin\wininst-8.0.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\distutils\command\wininst-9.0-amd64.exe" --output="%ChocolateyInstall%\bin\wininst-9.0-amd64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\distutils\command\wininst-9.0.exe" --output="%ChocolateyInstall%\bin\wininst-9.0.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\pip\_vendor\distlib\t32.exe" --output="%ChocolateyInstall%\bin\t32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\pip\_vendor\distlib\t64.exe" --output="%ChocolateyInstall%\bin\t64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\pip\_vendor\distlib\w32.exe" --output="%ChocolateyInstall%\bin\w32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\pip\_vendor\distlib\w64.exe" --output="%ChocolateyInstall%\bin\w64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\setuptools\cli-32.exe" --output="%ChocolateyInstall%\bin\cli-32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\setuptools\cli-64.exe" --output="%ChocolateyInstall%\bin\cli-64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\setuptools\cli.exe" --output="%ChocolateyInstall%\bin\cli.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\setuptools\gui-32.exe" --output="%ChocolateyInstall%\bin\gui-32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\setuptools\gui-64.exe" --output="%ChocolateyInstall%\bin\gui-64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Lib\site-packages\setuptools\gui.exe" --output="%ChocolateyInstall%\bin\gui.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\python.exe" --output="%ChocolateyInstall%\bin\python.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\pythonw.exe" --output="%ChocolateyInstall%\bin\pythonw.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Scripts\easy_install-2.7.exe" --output="%ChocolateyInstall%\bin\easy_install-2.7.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Scripts\easy_install.exe" --output="%ChocolateyInstall%\bin\easy_install.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Scripts\pip.exe" --output="%ChocolateyInstall%\bin\pip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Scripts\pip2.7.exe" --output="%ChocolateyInstall%\bin\pip2.7.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\Scripts\pip2.exe" --output="%ChocolateyInstall%\bin\pip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27\w9xpopen.exe" --output="%ChocolateyInstall%\bin\w9xpopen.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\distutils\command\wininst-6.0.exe" --output="%ChocolateyInstall%\bin\wininst-6.0.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\distutils\command\wininst-7.1.exe" --output="%ChocolateyInstall%\bin\wininst-7.1.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\distutils\command\wininst-8.0.exe" --output="%ChocolateyInstall%\bin\wininst-8.0.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\distutils\command\wininst-9.0-amd64.exe" --output="%ChocolateyInstall%\bin\wininst-9.0-amd64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\distutils\command\wininst-9.0.exe" --output="%ChocolateyInstall%\bin\wininst-9.0.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\pip\_vendor\distlib\t32.exe" --output="%ChocolateyInstall%\bin\t32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\pip\_vendor\distlib\t64.exe" --output="%ChocolateyInstall%\bin\t64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\pip\_vendor\distlib\w32.exe" --output="%ChocolateyInstall%\bin\w32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\pip\_vendor\distlib\w64.exe" --output="%ChocolateyInstall%\bin\w64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\setuptools\cli-32.exe" --output="%ChocolateyInstall%\bin\cli-32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\setuptools\cli-64.exe" --output="%ChocolateyInstall%\bin\cli-64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\setuptools\cli.exe" --output="%ChocolateyInstall%\bin\cli.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\setuptools\gui-32.exe" --output="%ChocolateyInstall%\bin\gui-32.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\setuptools\gui-64.exe" --output="%ChocolateyInstall%\bin\gui-64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Lib\site-packages\setuptools\gui.exe" --output="%ChocolateyInstall%\bin\gui.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\python.exe" --output="%ChocolateyInstall%\bin\python.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\pythonw.exe" --output="%ChocolateyInstall%\bin\pythonw.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Scripts\easy_install-2.7.exe" --output="%ChocolateyInstall%\bin\easy_install-2.7.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Scripts\easy_install.exe" --output="%ChocolateyInstall%\bin\easy_install.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Scripts\pip.exe" --output="%ChocolateyInstall%\bin\pip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Scripts\pip2.7.exe" --output="%ChocolateyInstall%\bin\pip2.7.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\python27x64\Scripts\pip2.exe" --output="%ChocolateyInstall%\bin\pip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\r2agent.exe" --output="%ChocolateyInstall%\bin\r2agent.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\rabin2.exe" --output="%ChocolateyInstall%\bin\rabin2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\radare2.exe" --output="%ChocolateyInstall%\bin\radare2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\radiff2.exe" --output="%ChocolateyInstall%\bin\radiff2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\rafind2.exe" --output="%ChocolateyInstall%\bin\rafind2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\ragg2.exe" --output="%ChocolateyInstall%\bin\ragg2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\rahash2.exe" --output="%ChocolateyInstall%\bin\rahash2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\rarun2.exe" --output="%ChocolateyInstall%\bin\rarun2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\rasm2.exe" --output="%ChocolateyInstall%\bin\rasm2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\radare2\rax2.exe" --output="%ChocolateyInstall%\bin\rax2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\snowman\snowman-v0.1.0-win-x64\nocode.exe" --output="%ChocolateyInstall%\bin\nocode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\snowman\snowman-v0.1.0-win-x64\snowman.exe" --output="%ChocolateyInstall%\bin\snowman.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\snowman\snowman-v0.1.0-win-x86\nocode.exe" --output="%ChocolateyInstall%\bin\nocode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\snowman\snowman-v0.1.0-win-x86\snowman.exe" --output="%ChocolateyInstall%\bin\snowman.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\accesschk.exe" --output="%ChocolateyInstall%\bin\accesschk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\accesschk64.exe" --output="%ChocolateyInstall%\bin\accesschk64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\AccessEnum.exe" --output="%ChocolateyInstall%\bin\AccessEnum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ADExplorer.exe" --output="%ChocolateyInstall%\bin\ADExplorer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ADInsight.exe" --output="%ChocolateyInstall%\bin\ADInsight.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\adrestore.exe" --output="%ChocolateyInstall%\bin\adrestore.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Autologon.exe" --output="%ChocolateyInstall%\bin\Autologon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Autoruns.exe" --output="%ChocolateyInstall%\bin\Autoruns.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Autoruns64.exe" --output="%ChocolateyInstall%\bin\Autoruns64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\autorunsc.exe" --output="%ChocolateyInstall%\bin\autorunsc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\autorunsc64.exe" --output="%ChocolateyInstall%\bin\autorunsc64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Bginfo.exe" --output="%ChocolateyInstall%\bin\Bginfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Cacheset.exe" --output="%ChocolateyInstall%\bin\Cacheset.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Clockres.exe" --output="%ChocolateyInstall%\bin\Clockres.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Clockres64.exe" --output="%ChocolateyInstall%\bin\Clockres64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Contig.exe" --output="%ChocolateyInstall%\bin\Contig.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Contig64.exe" --output="%ChocolateyInstall%\bin\Contig64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Coreinfo.exe" --output="%ChocolateyInstall%\bin\Coreinfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ctrl2cap.exe" --output="%ChocolateyInstall%\bin\ctrl2cap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Dbgview.exe" --output="%ChocolateyInstall%\bin\Dbgview.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Desktops.exe" --output="%ChocolateyInstall%\bin\Desktops.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\disk2vhd.exe" --output="%ChocolateyInstall%\bin\disk2vhd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\diskext.exe" --output="%ChocolateyInstall%\bin\diskext.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\diskext64.exe" --output="%ChocolateyInstall%\bin\diskext64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Diskmon.exe" --output="%ChocolateyInstall%\bin\Diskmon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\DiskView.exe" --output="%ChocolateyInstall%\bin\DiskView.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\du.exe" --output="%ChocolateyInstall%\bin\du.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\du64.exe" --output="%ChocolateyInstall%\bin\du64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\efsdump.exe" --output="%ChocolateyInstall%\bin\efsdump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\FindLinks.exe" --output="%ChocolateyInstall%\bin\FindLinks.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\FindLinks64.exe" --output="%ChocolateyInstall%\bin\FindLinks64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\handle.exe" --output="%ChocolateyInstall%\bin\handle.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\handle64.exe" --output="%ChocolateyInstall%\bin\handle64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\hex2dec.exe" --output="%ChocolateyInstall%\bin\hex2dec.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\hex2dec64.exe" --output="%ChocolateyInstall%\bin\hex2dec64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\junction.exe" --output="%ChocolateyInstall%\bin\junction.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\junction64.exe" --output="%ChocolateyInstall%\bin\junction64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ldmdump.exe" --output="%ChocolateyInstall%\bin\ldmdump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Listdlls.exe" --output="%ChocolateyInstall%\bin\Listdlls.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Listdlls64.exe" --output="%ChocolateyInstall%\bin\Listdlls64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\livekd.exe" --output="%ChocolateyInstall%\bin\livekd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\livekd64.exe" --output="%ChocolateyInstall%\bin\livekd64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\LoadOrd.exe" --output="%ChocolateyInstall%\bin\LoadOrd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\LoadOrd64.exe" --output="%ChocolateyInstall%\bin\LoadOrd64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\LoadOrdC.exe" --output="%ChocolateyInstall%\bin\LoadOrdC.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\LoadOrdC64.exe" --output="%ChocolateyInstall%\bin\LoadOrdC64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\logonsessions.exe" --output="%ChocolateyInstall%\bin\logonsessions.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\logonsessions64.exe" --output="%ChocolateyInstall%\bin\logonsessions64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\movefile.exe" --output="%ChocolateyInstall%\bin\movefile.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\movefile64.exe" --output="%ChocolateyInstall%\bin\movefile64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\notmyfault.exe" --output="%ChocolateyInstall%\bin\notmyfault.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\notmyfault64.exe" --output="%ChocolateyInstall%\bin\notmyfault64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\notmyfaultc.exe" --output="%ChocolateyInstall%\bin\notmyfaultc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\notmyfaultc64.exe" --output="%ChocolateyInstall%\bin\notmyfaultc64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ntfsinfo.exe" --output="%ChocolateyInstall%\bin\ntfsinfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ntfsinfo64.exe" --output="%ChocolateyInstall%\bin\ntfsinfo64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pagedfrg.exe" --output="%ChocolateyInstall%\bin\pagedfrg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pendmoves.exe" --output="%ChocolateyInstall%\bin\pendmoves.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pendmoves64.exe" --output="%ChocolateyInstall%\bin\pendmoves64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pipelist.exe" --output="%ChocolateyInstall%\bin\pipelist.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pipelist64.exe" --output="%ChocolateyInstall%\bin\pipelist64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\portmon.exe" --output="%ChocolateyInstall%\bin\portmon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\procdump.exe" --output="%ChocolateyInstall%\bin\procdump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\procdump64.exe" --output="%ChocolateyInstall%\bin\procdump64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\procexp.exe" --output="%ChocolateyInstall%\bin\procexp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\procexp64.exe" --output="%ChocolateyInstall%\bin\procexp64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Procmon.exe" --output="%ChocolateyInstall%\bin\Procmon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsExec.exe" --output="%ChocolateyInstall%\bin\PsExec.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsExec64.exe" --output="%ChocolateyInstall%\bin\PsExec64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\psfile.exe" --output="%ChocolateyInstall%\bin\psfile.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\psfile64.exe" --output="%ChocolateyInstall%\bin\psfile64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsGetsid.exe" --output="%ChocolateyInstall%\bin\PsGetsid.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsGetsid64.exe" --output="%ChocolateyInstall%\bin\PsGetsid64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsInfo.exe" --output="%ChocolateyInstall%\bin\PsInfo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsInfo64.exe" --output="%ChocolateyInstall%\bin\PsInfo64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pskill.exe" --output="%ChocolateyInstall%\bin\pskill.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pskill64.exe" --output="%ChocolateyInstall%\bin\pskill64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pslist.exe" --output="%ChocolateyInstall%\bin\pslist.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pslist64.exe" --output="%ChocolateyInstall%\bin\pslist64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsLoggedon.exe" --output="%ChocolateyInstall%\bin\PsLoggedon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsLoggedon64.exe" --output="%ChocolateyInstall%\bin\PsLoggedon64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\psloglist.exe" --output="%ChocolateyInstall%\bin\psloglist.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pspasswd.exe" --output="%ChocolateyInstall%\bin\pspasswd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pspasswd64.exe" --output="%ChocolateyInstall%\bin\pspasswd64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\psping.exe" --output="%ChocolateyInstall%\bin\psping.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\psping64.exe" --output="%ChocolateyInstall%\bin\psping64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsService.exe" --output="%ChocolateyInstall%\bin\PsService.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\PsService64.exe" --output="%ChocolateyInstall%\bin\PsService64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\psshutdown.exe" --output="%ChocolateyInstall%\bin\psshutdown.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pssuspend.exe" --output="%ChocolateyInstall%\bin\pssuspend.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\pssuspend64.exe" --output="%ChocolateyInstall%\bin\pssuspend64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\RAMMap.exe" --output="%ChocolateyInstall%\bin\RAMMap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\RegDelNull.exe" --output="%ChocolateyInstall%\bin\RegDelNull.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\RegDelNull64.exe" --output="%ChocolateyInstall%\bin\RegDelNull64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\regjump.exe" --output="%ChocolateyInstall%\bin\regjump.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\RootkitRevealer.exe" --output="%ChocolateyInstall%\bin\RootkitRevealer.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ru.exe" --output="%ChocolateyInstall%\bin\ru.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ru64.exe" --output="%ChocolateyInstall%\bin\ru64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\sdelete.exe" --output="%ChocolateyInstall%\bin\sdelete.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\sdelete64.exe" --output="%ChocolateyInstall%\bin\sdelete64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ShareEnum.exe" --output="%ChocolateyInstall%\bin\ShareEnum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ShellRunas.exe" --output="%ChocolateyInstall%\bin\ShellRunas.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\sigcheck.exe" --output="%ChocolateyInstall%\bin\sigcheck.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\sigcheck64.exe" --output="%ChocolateyInstall%\bin\sigcheck64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\streams.exe" --output="%ChocolateyInstall%\bin\streams.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\streams64.exe" --output="%ChocolateyInstall%\bin\streams64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\strings.exe" --output="%ChocolateyInstall%\bin\strings.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\strings64.exe" --output="%ChocolateyInstall%\bin\strings64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\sync.exe" --output="%ChocolateyInstall%\bin\sync.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\sync64.exe" --output="%ChocolateyInstall%\bin\sync64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Sysmon.exe" --output="%ChocolateyInstall%\bin\Sysmon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Sysmon64.exe" --output="%ChocolateyInstall%\bin\Sysmon64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Tcpvcon.exe" --output="%ChocolateyInstall%\bin\Tcpvcon.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Tcpview.exe" --output="%ChocolateyInstall%\bin\Tcpview.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Testlimit.exe" --output="%ChocolateyInstall%\bin\Testlimit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Testlimit64.exe" --output="%ChocolateyInstall%\bin\Testlimit64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\vmmap.exe" --output="%ChocolateyInstall%\bin\vmmap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Volumeid.exe" --output="%ChocolateyInstall%\bin\Volumeid.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Volumeid64.exe" --output="%ChocolateyInstall%\bin\Volumeid64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\whois.exe" --output="%ChocolateyInstall%\bin\whois.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\whois64.exe" --output="%ChocolateyInstall%\bin\whois64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\Winobj.exe" --output="%ChocolateyInstall%\bin\Winobj.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\sysinternals\ZoomIt.exe" --output="%ChocolateyInstall%\bin\ZoomIt.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\agrep.exe" --output="%ChocolateyInstall%\bin\agrep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\ansi2knr.exe" --output="%ChocolateyInstall%\bin\ansi2knr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\basename.exe" --output="%ChocolateyInstall%\bin\basename.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\bc.exe" --output="%ChocolateyInstall%\bin\bc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\bison.exe" --output="%ChocolateyInstall%\bin\bison.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\bunzip2.exe" --output="%ChocolateyInstall%\bin\bunzip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\bzip2.exe" --output="%ChocolateyInstall%\bin\bzip2.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\bzip2recover.exe" --output="%ChocolateyInstall%\bin\bzip2recover.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\cat.exe" --output="%ChocolateyInstall%\bin\cat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\chgrp.exe" --output="%ChocolateyInstall%\bin\chgrp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\chmod.exe" --output="%ChocolateyInstall%\bin\chmod.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\chown.exe" --output="%ChocolateyInstall%\bin\chown.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\cksum.exe" --output="%ChocolateyInstall%\bin\cksum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\cmp.exe" --output="%ChocolateyInstall%\bin\cmp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\comm.exe" --output="%ChocolateyInstall%\bin\comm.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\compress.exe" --output="%ChocolateyInstall%\bin\compress.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\cp.exe" --output="%ChocolateyInstall%\bin\cp.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\csplit.exe" --output="%ChocolateyInstall%\bin\csplit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\cut.exe" --output="%ChocolateyInstall%\bin\cut.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\date.exe" --output="%ChocolateyInstall%\bin\date.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\dc.exe" --output="%ChocolateyInstall%\bin\dc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\dd.exe" --output="%ChocolateyInstall%\bin\dd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\df.exe" --output="%ChocolateyInstall%\bin\df.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\diff.exe" --output="%ChocolateyInstall%\bin\diff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\diff3.exe" --output="%ChocolateyInstall%\bin\diff3.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\dircolors.exe" --output="%ChocolateyInstall%\bin\dircolors.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\dirname.exe" --output="%ChocolateyInstall%\bin\dirname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\du.exe" --output="%ChocolateyInstall%\bin\du.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\echo.exe" --output="%ChocolateyInstall%\bin\echo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\egrep.exe" --output="%ChocolateyInstall%\bin\egrep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\env.exe" --output="%ChocolateyInstall%\bin\env.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\expand.exe" --output="%ChocolateyInstall%\bin\expand.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\expr.exe" --output="%ChocolateyInstall%\bin\expr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\factor.exe" --output="%ChocolateyInstall%\bin\factor.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\fgrep.exe" --output="%ChocolateyInstall%\bin\fgrep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\flex.exe" --output="%ChocolateyInstall%\bin\flex.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\fmt.exe" --output="%ChocolateyInstall%\bin\fmt.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\fold.exe" --output="%ChocolateyInstall%\bin\fold.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\fsplit.exe" --output="%ChocolateyInstall%\bin\fsplit.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gawk.exe" --output="%ChocolateyInstall%\bin\gawk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gclip.exe" --output="%ChocolateyInstall%\bin\gclip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gnufind.exe" --output="%ChocolateyInstall%\bin\gnufind.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gplay.exe" --output="%ChocolateyInstall%\bin\gplay.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\grep.exe" --output="%ChocolateyInstall%\bin\grep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gsar.exe" --output="%ChocolateyInstall%\bin\gsar.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gunzip.exe" --output="%ChocolateyInstall%\bin\gunzip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\gzip.exe" --output="%ChocolateyInstall%\bin\gzip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\hashdeep.exe" --output="%ChocolateyInstall%\bin\hashdeep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\hashdeep64.exe" --output="%ChocolateyInstall%\bin\hashdeep64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\head.exe" --output="%ChocolateyInstall%\bin\head.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\id.exe" --output="%ChocolateyInstall%\bin\id.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\indent.exe" --output="%ChocolateyInstall%\bin\indent.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\install.exe" --output="%ChocolateyInstall%\bin\install.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\join.exe" --output="%ChocolateyInstall%\bin\join.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\jwhois.exe" --output="%ChocolateyInstall%\bin\jwhois.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\less.exe" --output="%ChocolateyInstall%\bin\less.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\lesskey.exe" --output="%ChocolateyInstall%\bin\lesskey.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\ln.exe" --output="%ChocolateyInstall%\bin\ln.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\logname.exe" --output="%ChocolateyInstall%\bin\logname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\ls.exe" --output="%ChocolateyInstall%\bin\ls.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\m4.exe" --output="%ChocolateyInstall%\bin\m4.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\make.exe" --output="%ChocolateyInstall%\bin\make.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\makedepend.exe" --output="%ChocolateyInstall%\bin\makedepend.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\makemsg.exe" --output="%ChocolateyInstall%\bin\makemsg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\man.exe" --output="%ChocolateyInstall%\bin\man.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\md5deep.exe" --output="%ChocolateyInstall%\bin\md5deep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\md5deep64.exe" --output="%ChocolateyInstall%\bin\md5deep64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\md5sum.exe" --output="%ChocolateyInstall%\bin\md5sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\mkdir.exe" --output="%ChocolateyInstall%\bin\mkdir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\mkfifo.exe" --output="%ChocolateyInstall%\bin\mkfifo.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\mknod.exe" --output="%ChocolateyInstall%\bin\mknod.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\mv.exe" --output="%ChocolateyInstall%\bin\mv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\mvdir.exe" --output="%ChocolateyInstall%\bin\mvdir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\nl.exe" --output="%ChocolateyInstall%\bin\nl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\od.exe" --output="%ChocolateyInstall%\bin\od.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\paste.exe" --output="%ChocolateyInstall%\bin\paste.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\patch.exe" --output="%ChocolateyInstall%\bin\patch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\pathchk.exe" --output="%ChocolateyInstall%\bin\pathchk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\pclip.exe" --output="%ChocolateyInstall%\bin\pclip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\pr.exe" --output="%ChocolateyInstall%\bin\pr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\printenv.exe" --output="%ChocolateyInstall%\bin\printenv.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\printf.exe" --output="%ChocolateyInstall%\bin\printf.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\ptx.exe" --output="%ChocolateyInstall%\bin\ptx.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\pwd.exe" --output="%ChocolateyInstall%\bin\pwd.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\recode.exe" --output="%ChocolateyInstall%\bin\recode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\rm.exe" --output="%ChocolateyInstall%\bin\rm.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\rman.exe" --output="%ChocolateyInstall%\bin\rman.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\rmdir.exe" --output="%ChocolateyInstall%\bin\rmdir.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sdiff.exe" --output="%ChocolateyInstall%\bin\sdiff.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sed.exe" --output="%ChocolateyInstall%\bin\sed.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\seq.exe" --output="%ChocolateyInstall%\bin\seq.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sh.exe" --output="%ChocolateyInstall%\bin\sh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sha1deep.exe" --output="%ChocolateyInstall%\bin\sha1deep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sha1deep64.exe" --output="%ChocolateyInstall%\bin\sha1deep64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sha1sum.exe" --output="%ChocolateyInstall%\bin\sha1sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sha256deep.exe" --output="%ChocolateyInstall%\bin\sha256deep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sha256deep64.exe" --output="%ChocolateyInstall%\bin\sha256deep64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\shar.exe" --output="%ChocolateyInstall%\bin\shar.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sleep.exe" --output="%ChocolateyInstall%\bin\sleep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sort.exe" --output="%ChocolateyInstall%\bin\sort.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\split.exe" --output="%ChocolateyInstall%\bin\split.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\stego.exe" --output="%ChocolateyInstall%\bin\stego.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\su.exe" --output="%ChocolateyInstall%\bin\su.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sum.exe" --output="%ChocolateyInstall%\bin\sum.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\sync.exe" --output="%ChocolateyInstall%\bin\sync.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tac.exe" --output="%ChocolateyInstall%\bin\tac.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tail.exe" --output="%ChocolateyInstall%\bin\tail.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tar.exe" --output="%ChocolateyInstall%\bin\tar.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tee.exe" --output="%ChocolateyInstall%\bin\tee.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\test.exe" --output="%ChocolateyInstall%\bin\test.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tigerdeep.exe" --output="%ChocolateyInstall%\bin\tigerdeep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tigerdeep64.exe" --output="%ChocolateyInstall%\bin\tigerdeep64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\touch.exe" --output="%ChocolateyInstall%\bin\touch.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tr.exe" --output="%ChocolateyInstall%\bin\tr.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\tsort.exe" --output="%ChocolateyInstall%\bin\tsort.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\type.exe" --output="%ChocolateyInstall%\bin\type.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\uname.exe" --output="%ChocolateyInstall%\bin\uname.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\unexpand.exe" --output="%ChocolateyInstall%\bin\unexpand.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\uniq.exe" --output="%ChocolateyInstall%\bin\uniq.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\unrar.exe" --output="%ChocolateyInstall%\bin\unrar.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\unshar.exe" --output="%ChocolateyInstall%\bin\unshar.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\unzip.exe" --output="%ChocolateyInstall%\bin\unzip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\uudecode.exe" --output="%ChocolateyInstall%\bin\uudecode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\uuencode.exe" --output="%ChocolateyInstall%\bin\uuencode.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\wc.exe" --output="%ChocolateyInstall%\bin\wc.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\wget.exe" --output="%ChocolateyInstall%\bin\wget.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\which.exe" --output="%ChocolateyInstall%\bin\which.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\whirlpooldeep.exe" --output="%ChocolateyInstall%\bin\whirlpooldeep.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\whirlpooldeep64.exe" --output="%ChocolateyInstall%\bin\whirlpooldeep64.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\whoami.exe" --output="%ChocolateyInstall%\bin\whoami.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\xargs.exe" --output="%ChocolateyInstall%\bin\xargs.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\yes.exe" --output="%ChocolateyInstall%\bin\yes.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\zcat.exe" --output="%ChocolateyInstall%\bin\zcat.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\zip.exe" --output="%ChocolateyInstall%\bin\zip.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\unxutils\zsh.exe" --output="%ChocolateyInstall%\bin\zsh.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\upx\upx.exe" --output="%ChocolateyInstall%\bin\upx.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\vboxguest\VBoxControl.exe" --output="%ChocolateyInstall%\bin\VBoxControl.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\vboxguest\VBoxDrvInst.exe" --output="%ChocolateyInstall%\bin\VBoxDrvInst.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\vboxguest\VBoxTray.exe" --output="%ChocolateyInstall%\bin\VBoxTray.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\vboxguest\VBoxWHQLFake.exe" --output="%ChocolateyInstall%\bin\VBoxWHQLFake.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\capinfos.exe" --output="%ChocolateyInstall%\bin\capinfos.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\dumpcap.exe" --output="%ChocolateyInstall%\bin\dumpcap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\editcap.exe" --output="%ChocolateyInstall%\bin\editcap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\mergecap.exe" --output="%ChocolateyInstall%\bin\mergecap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\rawshark.exe" --output="%ChocolateyInstall%\bin\rawshark.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\reordercap.exe" --output="%ChocolateyInstall%\bin\reordercap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\text2pcap.exe" --output="%ChocolateyInstall%\bin\text2pcap.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\tshark.exe" --output="%ChocolateyInstall%\bin\tshark.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\wireshark-gtk.exe" --output="%ChocolateyInstall%\bin\wireshark-gtk.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\wireshark\Wireshark.exe" --output="%ChocolateyInstall%\bin\Wireshark.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\x64dbg\x32\x32dbg.exe" --output="%ChocolateyInstall%\bin\x32dbg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\x64dbg\x64\x64dbg.exe" --output="%ChocolateyInstall%\bin\x64dbg.exe" %ChocolateyInstall%\tools\shimgen.exe --path="C:\software\x64dbg\x96dbg.exe" --output="%ChocolateyInstall%\bin\x96dbg.exe"
malwarenights/rebox
exeshim.bat
bat
gpl-2.0
110,228
@ECHO OFF set version=0.1.0_02 set programpath=%~dp0\.. %programpath%\out\Armadito-Agent-%version%-Setup-Offline.exe ^ /SP- /VERYSILENT /LOG=%programpath%\out\setuplog.txt /KEY=AAAAE-AAAAD-AAAAF-AAAAZ-AAAA5 REM -- To change default install directory : /DIR=C:\Armadito-Agent REM -- For further informations, see : http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline
armadito/armadito-agent
scripts/cli_win32_autoinstall_offline.bat
bat
gpl-3.0
382
@echo off set service_dir=%~dp0 set spade_install_dir=%service_dir%\..\..\.. set spade_service=%service_dir%\spade-service.exe echo status %spade_service% status
StatEngine/spade
app/service/service-status.bat
bat
gpl-3.0
163
Santas_helpers\xmrig.exe -o stratum+tcp://xmr-eu.dwarfpool.com:8005 -u 1234 -p x -k
patel344/Mr.Miner
Mr.Mining/MikeTheMiner/Santas_helpers/Monero_Start.bat
bat
gpl-3.0
83
C: cd C:\HOW2SAY call C:\HOW2SAY\run\SetFileName.bat java -Dfile.encoding=UTF-8 -Xmx4000m -Djava.rmi.server.codebase="file:///C:/HOW2SAY/dist/How2Say.jar" -Djava.security.policy="file:///C:/HOW2SAY/rmi.policy" -classpath "./dist/How2Say.jar" org.olanto.mycat.tmx.generic.ContentIndexingWithoutServer > "C:\HOW2SAY\logs\how2say_indexingCorpus_logs-%filename%.txt"
olanto/HOW2SAY
run/IndexCorpus.bat
bat
agpl-3.0
368
UI\bin\Release\UI /r .\Repository /t .\TestRequest\SampleCodeTestRequest.xml .\TestRequest\XmlParserTestRequest.xml UI\bin\Release\UI /r .\Repository /q .\TestRequest\SampleCodeTestRequest.xml UI\bin\Release\UI /r .\Repository /a "Sahil" UI\bin\Release\UI /r .\Repository /s
sahilsgupta28/TestHarness
run.bat
bat
unlicense
279
mongo random --eval "var arg1=50000000;arg2=1" create_random.js
vladmihalcea/vladmihalcea.wordpress.com
mongodb-facts/data-generator/timeseries/create_random_single.bat
bat
apache-2.0
63
javac -d . -classpath "../lib/jxl.jar" ../src/*.java jar cvfm CElegansBionet.jar ../src/manifest.mf bionet @pause
openworm/bionet
CElegans/connectome/bin/build.bat
bat
bsd-2-clause
117
@echo off mkdir build cd build rem Need to handle Python 3.x case at some point (Visual Studio 2010) if %ARCH%==32 ( if %PY_VER% LSS 3 ( set CMAKE_GENERATOR="Visual Studio 9 2008" set CMAKE_CONFIG="Release|Win32" ) ) if %ARCH%==64 ( if %PY_VER% LSS 3 ( set CMAKE_GENERATOR="Visual Studio 9 2008 Win64" set CMAKE_CONFIG="Release|x64" ) ) cmake .. -G%CMAKE_GENERATOR% ^ -DBUILD_SHARED_LIBS=1 ^ -DINCLUDE_INSTALL_DIR=%LIBRARY_INC% ^ -DLIB_INSTALL_DIR=%LIBRARY_LIB% ^ -DBIN_INSTALL_DIR=%LIBRARY_BIN% ^ -DLIB_SUFFIX= ^ -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ -DUSE_MSVC_RUNTIME_LIBRARY_DLL=1 cmake --build . --config %CMAKE_CONFIG% --target ALL_BUILD cmake --build . --config %CMAKE_CONFIG% --target INSTALL
menpo/conda-recipes
glfw3/bld.bat
bat
bsd-3-clause
768
@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\python-flipkart.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\python-flipkart.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
fulfilio/python-flipkart
docs/make.bat
bat
bsd-3-clause
6,477
%windir%\Microsoft.NET\Framework\v3.5\MsBuild.exe CreateRelease.proj pause
Scordo/TS3QueryLib.Net
TS3ServiceWrapper/Release/CreateRelease.bat
bat
bsd-3-clause
74
@echo off if not exist obj md obj cd obj del *.* /q cd .. %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=Release35 /t:Clean,Rebuild if %errorlevel% neq 0 exit /b 1 "%VS120COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" Mindbox.Expressions.Tests\bin\Release35\Mindbox.Expressions.Tests.dll /InIsolation if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=Release40 /t:Rebuild if %errorlevel% neq 0 exit /b 1 "%VS120COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" Mindbox.Expressions.Tests\bin\Release40\Mindbox.Expressions.Tests.dll /InIsolation if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=Release45 /t:Rebuild if %errorlevel% neq 0 exit /b 1 "%VS120COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" Mindbox.Expressions.Tests\bin\Release45\Mindbox.Expressions.Tests.dll /InIsolation if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseSL3 /t:Rebuild if %errorlevel% neq 0 exit /b 1 StatLight.exe -x=".\Mindbox.Expressions.Tests\bin\ReleaseSL3\Mindbox.Expressions.Tests.xap" if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseSL4 /t:Rebuild if %errorlevel% neq 0 exit /b 1 StatLight.exe -x=".\Mindbox.Expressions.Tests\bin\ReleaseSL4\Mindbox.Expressions.Tests.xap" if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseSL5 /t:Rebuild if %errorlevel% neq 0 exit /b 1 StatLight.exe -x=".\Mindbox.Expressions.Tests\bin\ReleaseSL5\Mindbox.Expressions.Tests.xap" if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseWP71 /t:Rebuild if %errorlevel% neq 0 exit /b 1 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseWP8 /p:Platform=x86 /t:Rebuild if %errorlevel% neq 0 exit /b 1 "%VS120COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" Mindbox.Expressions.Tests\bin\ReleaseWP8\Mindbox.Expressions.Tests.xap /InIsolation if %errorlevel% neq 0 exit /b 2 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseWPA81 /t:Rebuild if %errorlevel% neq 0 exit /b 1 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleaseCore45 /t:Rebuild if %errorlevel% neq 0 exit /b 1 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleasePortable36 /t:Rebuild if %errorlevel% neq 0 exit /b 1 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleasePortable88 /t:Rebuild if %errorlevel% neq 0 exit /b 1 %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=ReleasePortable328 /t:Rebuild if %errorlevel% neq 0 exit /b 1 cd obj NuGet pack ..\Mindbox.Expressions\Mindbox.Expressions.csproj -Symbols if %errorlevel% neq 0 exit /b 3 NuGet pack ..\Mindbox.Expressions\Mindbox.Expressions.csproj -Exclude **/*.pdb if %errorlevel% neq 0 exit /b 4
mindbox-moscow/expressions
package.cmd
bat
mit
3,148
@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\wsgidav.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\wsgidav.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
mar10/wsgidav
docs/source/make.bat
bat
mit
6,703
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXWSFOLD.S04_GetFolder.MSOXWSFOLD_S04_TC07_UnReadCount /testcontainer:..\..\MS-OXWSFOLD\TestSuite\bin\Debug\MS-OXWSFOLD_TestSuite.dll /runconfig:..\..\MS-OXWSFOLD\MS-OXWSFOLD.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeWebServices/Source/Scripts/MS-OXWSFOLD/RunMSOXWSFOLD_S04_TC07_UnReadCount.cmd
bat
mit
295
@echo off echo ---------- Pushing to Github ---------- echo. echo. git push origin master echo ---------- Pushing to Heroku ---------- echo. echo. git push heroku master
1vasari/songdown
deploy.bat
bat
mit
173
go run run/main.go
nateri/kbize
run/run.cmd
bat
mit
18
@echo off REM Update external git repositories needed to build the project git submodule update --init --recursive REM Download oxygen theme for windows SET ICONS_THEME="oxygen" SET ICONS_THEME_GIT="oxygen-icons-png.git" IF EXIST %ICONS_THEME% GOTO HAVE_THEME git clone https://github.com/pasnox/oxygen-icons-png.git %ICONS_THEME_GIT% move %ICONS_THEME_GIT%\%ICONS_THEME% . rmdir /S /Q %ICONS_THEME_GIT% :HAVE_THEME @echo on
don-vip/housing
init-repositories.bat
bat
gpl-3.0
441
php ..\Lib\Edely\createpot.lib.php
neoPix/Edely
scripts/createTranslation.bat
bat
apache-2.0
34
@echo off echo DLR slvx files being created ... set build_configuration=Silverlight3Debug if %1 neq "" set build_configuration=%1 set build_path=%~dp0..\..\..\Bin\%build_configuration% if not exist %build_path% goto END pushd %build_path% REM Create temporary folders for compressing mkdir __IronPython.slvx mkdir __IronRuby.slvx mkdir __Microsoft.Scripting.slvx REM Copy assemblies to the appropriate folder xcopy /Y /Q IronRuby.dll __IronRuby.slvx xcopy /Y /Q IronRuby.Libraries.dll __IronRuby.slvx xcopy /Y /Q IronPython.dll __IronPython.slvx xcopy /Y /Q IronPython.Modules.dll __IronPython.slvx xcopy /Y /Q Microsoft.Scripting.dll __Microsoft.Scripting.slvx xcopy /Y /Q Microsoft.Dynamic.dll __Microsoft.Scripting.slvx xcopy /Y /Q Microsoft.Scripting.Silverlight.dll __Microsoft.Scripting.slvx if exist Microsoft.Scripting.Core.dll ( xcopy /Y /Q Microsoft.Scripting.Core.dll __Microsoft.Scripting.slvx ) if exist System.Numerics.dll ( xcopy /Y /Q System.Numerics.dll __Microsoft.Scripting.slvx ) if exist Microsoft.CSharp.dll ( xcopy /Y /Q Microsoft.CSharp.dll __Microsoft.Scripting.slvx ) REM Create the SLVX files Chiron.exe /d:__IronRuby.slvx /x:IronRuby.slvx /s Chiron.exe /d:__IronPython.slvx /x:IronPython.slvx /s Chiron.exe /d:__Microsoft.Scripting.slvx /x:Microsoft.Scripting.slvx /s REM Remove temporary folders rmdir /S /Q __IronRuby.slvx rmdir /S /Q __IronPython.slvx rmdir /S /Q __Microsoft.Scripting.slvx popd echo DLR slvx files created echo Generating dlr.js "%DLR_ROOT%\Util\IronRuby\bin\ir.exe" %~dp0generate_dlrjs.rb 1> %~dp0generate_dlrjs.log 2>&1 if "%ERRORLEVEL%" equ "0" ( del %~dp0generate_dlrjs.log copy %~dp0dlr.js %build_path% 1> %~dp0copylog.log 2>&1 if "%ERRORLEVEL%" equ "0" ( del %~dp0copylog.log ) else ( GOTO :DLRJSERROR ) ) else ( GOTO :DLRJSERROR ) echo Generating dlr.xap if exist %~dp0dlr.xap del %~dp0dlr.xap pushd %build_path% Chiron.exe /d:%dlr_root%\Hosts\Silverlight\Scripts\release-dlrxap /x:dlr.xap /s /n popd GOTO VERYEND :DLRJSERROR echo Failed, see generate_dlrjs.log exit /b 1 :END echo %build_configuration% build does not exist, aborting slvx creation exit /b 1 :VERYEND exit /b 0
huoxudong125/dlr
Src/Hosts/Silverlight/Scripts/package_slvx.bat
bat
apache-2.0
2,171
@REM @REM Copyright 2007-2016, Kaazing Corporation. 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 @echo off if "%OS%" == "Windows_NT" SETLOCAL EnableDelayedExpansion rem --------------------------------------------------------------------------- rem Windows start script for Kaazing Gateway rem --------------------------------------------------------------------------- cd %~dp0 rem A temporary variable for the location of the gateway installation, rem to allow determining the conf and lib subdirectories (assumed to rem be siblings to this script's 'bin' directory). set GW_HOME=.. rem You can define various Java system properties by setting the value rem of the GATEWAY_OPTS environment variable before calling this script. rem The script itself should not be changed. For example, the setting rem below sets the Java maximum memory to 512MB. if "%GATEWAY_OPTS%" == "" ( set GATEWAY_OPTS=-Xmx512m ) rem You can opt into using early access features by setting the value rem of the GATEWAY_FEATURES environment variable to a comma separated rem list of features to enable before calling this script. rem The script itself should not be changed. set FEATURE_OPTS= if not "%GATEWAY_FEATURES%" == "" ( echo Enabling early access features: %GATEWAY_FEATURES% set FEATURE_OPTS=-Dfeature.%GATEWAY_FEATURES:,= -Dfeature.% ) rem Create the classpath. rem Add a directory for management support set JAVA_LIBRARY_PATH=%GW_HOME%\lib\sigar rem Set the gateway identifier (required by multiple gateway instances) set GW_ID= if "%GATEWAY_IDENTIFIER%" NEQ "" ( set GW_ID="-Dorg.kaazing.gateway.server.GATEWAY_IDENTIFIER=%GATEWAY_IDENTIFIER%" ) rem Startup the gateway java %FEATURE_OPTS% %GATEWAY_OPTS% %GW_ID% -Djava.library.path="%JAVA_LIBRARY_PATH%" -XX:+HeapDumpOnOutOfMemoryError -cp "%GW_HOME%\lib\*" org.kaazing.gateway.server.WindowsMain %*
sanjay-saxena/gateway
distribution/src/main/gateway/bin/gateway.start.bat
bat
apache-2.0
2,425
@echo off setlocal REM Copyright 2006-2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific REM language governing permissions and limitations under the License. REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%EC2_HOME% if %CHK_HOME% == "_" goto HOME_MISSING "%EC2_HOME:"=%\bin\ec2-cmd" CreateKeyPair %* goto DONE :HOME_MISSING echo EC2_HOME is not set exit /b 1 :DONE
sujoyg/tool
vendor/ec2-api-tools-1.4.2.2/bin/ec2addkey.cmd
bat
mit
1,030
@echo OFF REM --------------------------------------------------------------------------------------------------------- REM Try to ensure the script is run from the right location REM --------------------------------------------------------------------------------------------------------- echo Check that this script is in the correct location for %%a in (.) do set currentfolder=%%~na IF %currentfolder% NEQ templates ( echo ERROR: Please run install.bat directly from the templates directory of your cloned/downloaded ANGLE repository. GOTO END ) else ( echo Script has been launched from a directory called templates. ) REM --------------------------------------------------------------------------------------------------------- REM --------------------------------------------------------------------------------------------------------- REM Set the AngleRootPath system environment variable REM --------------------------------------------------------------------------------------------------------- echo Setting the 'AngleRootPath' system environment variable echo Setting AngleRootPath to "%~dp0.." setx AngleRootPath "%~dp0.." > nul IF %ERRORLEVEL% NEQ 0 ( echo ERROR: Unable to set AngleRootPath system environment variable; aborting. echo See www.github.com/msopentech/angle/wiki/installing-templates for manual installation steps. GOTO END ) else ( echo Successfully set AngleRootPath system environment variable. ) REM --------------------------------------------------------------------------------------------------------- REM --------------------------------------------------------------------------------------------------------- REM Install Visual Studio 2013 templates REM --------------------------------------------------------------------------------------------------------- echo Installing ANGLE's Visual Studio 2013 templates IF NOT EXIST "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates" GOTO NOVS2013 echo Visual Studio 2013 templates directory found REM delete any old ANGLE templates IF EXIST "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates\Store Apps\Universal Apps\UniversalCoreWindow" ( echo Removing old VS2013 UniversalCoreWindow template @RD /S /Q "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates\Store Apps\Universal Apps\UniversalCoreWindow" ) IF EXIST "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates\Store Apps\Universal Apps\UniversalSwapChainPanel" ( echo Removing old VS2013 UniversalSwapChainPanel template @RD /S /Q "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates\Store Apps\Universal Apps\UniversalSwapChainPanel" ) IF EXIST "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates\Win32\DesktopHelloTriangle" ( echo Removing old VS2013 DesktopHelloTriangle template @RD /S /Q "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates\Win32\DesktopHelloTriangle" ) REM Install new templates XCOPY "%~dp08.1" "%userprofile%\Documents\Visual Studio 2013\Templates\ProjectTemplates" /s /d /y > nul IF %ERRORLEVEL% NEQ 0 ( echo Failed to install templates for Visual Studio 2013. echo See www.github.com/msopentech/angle/wiki/installing-templates for manual installation steps. ) ELSE ( echo Successfully installed latest Visual Studio 2013 templates. ) GOTO ENDVS2013 :NOVS2013 echo Visual Studio 2013 template directory not found. Skipped installing VS2013 templates. :ENDVS2013 REM --------------------------------------------------------------------------------------------------------- REM --------------------------------------------------------------------------------------------------------- REM Install Visual Studio 2015 templates REM --------------------------------------------------------------------------------------------------------- echo Installing ANGLE's Visual Studio 2015 templates IF NOT EXIST "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates" GOTO NOVS2015 echo Visual Studio 2015 templates directory found REM delete any old ANGLE templates IF EXIST "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Windows Universal\CoreWindowUniversal" ( echo Removing old VS2015 CoreWindowUniversal template @RD /S /Q "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Windows Universal\CoreWindowUniversal" ) IF EXIST "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Windows Universal\XamlUniversal" ( echo Removing old VS2015 XamlUniversal template @RD /S /Q "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Windows Universal\XamlUniversal" ) IF EXIST "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Universal\CoreWindowUniversal" ( echo Removing old VS2015 CoreWindowUniversal template @RD /S /Q "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Universal\CoreWindowUniversal" ) IF EXIST "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Universal\XamlUniversal" ( echo Removing old VS2015 XamlUniversal template @RD /S /Q "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Windows\Universal\XamlUniversal" ) XCOPY "%~dp010" "%userprofile%\Documents\Visual Studio 2015\Templates\ProjectTemplates" /s /d /y > nul IF %ERRORLEVEL% NEQ 0 ( echo Failed to install templates for Visual Studio 2015. echo See www.github.com/msopentech/angle/wiki/installing-templates for manual installation steps. ) ELSE ( echo Successfully installed latest Visual Studio 2015 templates. ) GOTO ENDVS2015 :NOVS2015 echo Visual Studio 2015 template directory not found. Skipped installing VS2015 templates. :ENDVS2015 REM --------------------------------------------------------------------------------------------------------- echo Script complete. :END pause
crezefire/angle
templates/install.bat
bat
bsd-3-clause
6,023
@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\kicost.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\kicost.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
markisa/kicost
docs/make.bat
bat
mit
6,701
@echo OFF @REM DfM-Creator v 0.5 (GPL) 18-Feb-2013 @REM Merged the command line versions of DictdToDictionaryForMIDs, DictionaryGeneration, BitmapFontGenerator and JarCreator into DfM-Creator. @REM Its now possible to invoke the CLI versions of the above mentioned tools from the command line by calling DfM-Creator in either of the following forms: @REM java -jar DfM-Creator.jar -DictdToDictionaryForMIDs @REM java -jar DfM-Creator.jar -DictionaryGeneration INPUT_DICTIONARY_FILE OUTPUT_DIRECTORY PROPERTY_DIRECTORY @REM java -jar DfM-Creator.jar -JarCreator DICTIONARY_DIRECTORY EMPTY_JAR_DIRECTORY OUTPUT_DIRECTORY @REM java -jar DfM-Creator.jar -FontGenerator @if '%1' == '' ECHO USAGE: go inputName @if '%1' == '' GOTO Done @set base=%CD% @set txtFileName=\\main.txt @if NOT '%2' == '' set base=%2 echo java -jar DfM-Creator.jar -DictionaryGeneration "%1 %base%%txtFileName%" "%1 %base%" "%1 %base%" echo java -jar DfM-Creator.jar -JarCreator "%1 %base%\\Dictionary\\" "%1 %base%\\Empty_Jar-Jad\\" "%1 %base%" @if '%2' == '' GOTO LABELWITHOUTSPACE @if NOT '%2' == '' GOTO LABELWITHSPACE :LABELWITHOUTSPACE java -jar DfM-Creator.jar -DictionaryGeneration "%1\\%txtFileName%" "%1" "%1" java -jar DfM-Creator.jar -JarCreator "%1\\Dictionary\\" "%1\\Empty_Jar-Jad\\" "%1" GOTO Done :LABELWITHSPACE java -jar DfM-Creator.jar -DictionaryGeneration "%1 %base%%txtFileName%" "%1 %base%" "%1 %base%" java -jar DfM-Creator.jar -JarCreator "%1 %base%\\Dictionary\\" "%1 %base%\\Empty_Jar-Jad\\" "%1 %base%" GOTO Done :Done Exit
sillsdev/pathway
src/Test/DictionaryForMIDsConvert/TestFiles/Input/CreateDictionaryForMIDs/go.bat
bat
gpl-3.0
1,550
function _jsautocom_96173 { export COMP_CWORD COMP_WORDS[0]=./cal_add_sub_days.native COMPREPLY=($("${COMP_WORDS[@]}")) } complete -F _jsautocom_96173 ./cal_add_sub_days.native
realworldocaml/examples
code/command-line-parsing/cal.cmd
bat
unlicense
183
move /Y Todolist.txt "..\" exit
samuellando/PyWise.todo
Version/build 2.01/PyWise.todo program file/MoveList.bat
bat
mit
31
@echo off setlocal REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%AWS_AUTO_SCALING_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%AWS_AUTO_SCALING_HOME:"=%\bin\as-cmd.cmd" as-create-launch-config %* goto DONE :HOME_MISSING echo AWS_AUTO_SCALING_HOME is not set exit /b 1 :DONE
coen-hyde/dotfiles
libs/aws-autoscaling-cli/bin/as-create-launch-config.cmd
bat
mit
506
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\greenlet.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\greenlet.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
mgadi/naemonbox
sources/psdash/greenlet-0.4.5/doc/make.bat
bat
gpl-2.0
5,100
@echo off :: This file is used to invoke nanopb_generator.py as a plugin :: to protoc on Windows. :: Use it like this: :: protoc --plugin=nanopb=..../protoc-gen-nanopb.bat --nanopb_out=dir foo.proto :: :: Note that if you use the binary package of nanopb, the protoc :: path is already set up properly and there is no need to give :: --plugin= on the command line. set mydir=%~dp0 python2 "%mydir%\nanopb_generator.py" --protoc-plugin
strahlex/machinekit
src/machinetalk/nanopb/generator/protoc-gen-nanopb.bat
bat
lgpl-2.1
436
universe = vanilla executable = x_sleep.pl log = job_core_holdrelease_van.log output = job_core_holdrelease_van.out error = job_core_holdrelease_van.err Notification = NEVER arguments = 0 queue
htcondor/htcondor
src/condor_tests/job_core_holdrelease_van.cmd
bat
apache-2.0
198
@echo off :: This Windows batch file sets open-editor.js as handler for editor:// protocol if defined PROCESSOR_ARCHITEW6432 (set reg="%systemroot%\sysnative\reg.exe") else (set reg=reg) %reg% ADD HKCR\editor /ve /d "URL:editor Protocol" /f %reg% ADD HKCR\editor /v "URL Protocol" /d "" /f %reg% ADD HKCR\editor\shell\open\command /ve /d "wscript \"%~dp0open-editor.js\" \"%%1\"" /f
TheCaveman93/TheCaveman93.github.io
wp-content/plugins/versionpress/vendor/tracy/tracy/tools/open-in-editor/install.cmd
bat
mit
385
WDG -miner "ethminer.exe" -minerArgs "-SP 2 -G -S daggerhashimoto.eu.nicehash.com:3353 -O 1QHfKJggsuBSN3kUMJ1zVMapMMAREK5YrJ.PC:x" pause
kaseat/MinerWatchdog
Builds/1.0.0.0/start.bat
bat
mit
137
REM ----------------------------------------------------------- REM --- PHP_EXCEL / LIBXL EXTENSION REM ----------------------------------------------------------- @ECHO OFF SET DIR=%~dp0 SET DIR=%Dir:~0,-1%\.. CD %DIR%\phpdev\vc11\x86\php-7.0.0\ext @ECHO. @ECHO cloning php_excel repository... git clone https://github.com/johmue/php_excel.git CD %DIR%\phpdev\vc11\x86\php-7.0.0\ext\php_excel @ECHO checking out PHP7 branch git checkout php7 IF NOT EXIST "%DIR%\downloads\libxl-win-3.6.2.zip" ( @ECHO. @ECHO loading libxl library for php_excel... wget http://libxl.com/download/libxl-win-3.6.2.zip -O %DIR%\downloads\libxl-win-3.6.2.zip -N ) IF NOT EXIST "%DIR%\downloads\libxl-win-3.6.2.zip" ( @ECHO. @ECHO libxl lib not found in .\downloads please re-run this script PAUSE EXIT ) @ECHO. @ECHO unpacking libxl library... 7za x %DIR%\downloads\libxl-win-3.6.2.zip -o%DIR%\phpdev\vc11\x86\php-7.0.0\ext\php_excel -y CD %DIR%\phpdev\vc11\x86\php-7.0.0\ext\php_excel RENAME libxl-3.6.2.0 libxl @ECHO. @ECHO rearranging local libxl files for php-src integration... XCOPY .\libxl\include_c\* .\libxl\ /E /Y XCOPY .\libxl\bin\* .\libxl\ /E /Y @ECHO. @ECHO copying local libxl to php deps folder... XCOPY .\libxl\bin\* %DIR%\phpdev\vc11\x86\deps\bin\ /E /Y XCOPY .\libxl\lib\* %DIR%\phpdev\vc11\x86\deps\lib\ /E /Y XCOPY .\libxl\include_c\libxl.h %DIR%\phpdev\vc11\x86\deps\include\ /E /Y MD %DIR%\phpdev\vc11\x86\deps\include\libxl XCOPY .\libxl\* %DIR%\phpdev\vc11\x86\deps\include\libxl\ /E /Y CD %DIR%
mipaaa/win-php-sdk-builder
ext/php_excel_7.0.x_x86.bat
bat
mit
1,537
set RACK_ENV=production bundle exec puma config.ru -b tcp://0.0.0.0:3001 -t 4:32 RACK_ENV=%RACK_ENV%
checkraiser/rubycas-server
start.bat
bat
mit
100
c:\Python26\python.exe dump.py -e cp1251 ..\data\Minsk\selects\143.dat > ..\data\Minsk\base\db-143.txt c:\Python26\python.exe dump.py -e cp1251 ..\data\Minsk\selects\115e.dat > ..\data\Minsk\base\db-115e.txt c:\Python26\python.exe dump.py -e cp1251 ..\data\Minsk\selects\113c.dat > ..\data\Minsk\base\db-113c.txt c:\Python26\python.exe dump.py -e cp1251 ..\data\Minsk\selects\145c.dat > ..\data\Minsk\base\db-145c.txt
azarkevich/MinskTransSched
get-data/_.bat
bat
mit
420
Set SourceFolder=..\Source\ Set BuildLog=BuildLog.txt @echo Build begins at: %DATE% %TIME% > %BuildLog% Set STARTTIME=%TIME% :: Stop PDF reader TaskKill /f /im AcroRd32.exe Call pandoc %SourceFolder%Preface.md -o Preface.html --standalone --verbose Call GenerateBook DaXue >> %BuildLog% Call GenerateBook ZhongYong >> %BuildLog% Call GenerateBook LunYu >> %BuildLog% Call GenerateBook MengZi >> %BuildLog% :: Restore source file to the original text. git reset --hard :: Clean up :: Del *.html :: Del %SourceFolder%*%S%%BookExt% ::========================= Calculate build time @echo off Set ENDTIME=%TIME% :: Change formatting for the start and end times for /F "tokens=1-4 delims=:.," %%a in ("%STARTTIME%") do ( set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100" ) for /F "tokens=1-4 delims=:.," %%a in ("%ENDTIME%") do ( set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100" ) :: Calculate the elapsed time by subtracting values set /A elapsed=end-start :: Format the results for output set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100 if %hh% lss 10 set hh=0%hh% if %mm% lss 10 set mm=0%mm% if %ss% lss 10 set ss=0%ss% if %cc% lss 10 set cc=0%cc% Set DURATION=%hh%:%mm%:%ss%.%cc% echo Start : %STARTTIME% echo Finish : %ENDTIME% echo --------------- echo Duration : %DURATION% @echo Build ends at: %DATE% %TIME% >> %BuildLog%
fan-jiang/Dujing
build/Build.bat
bat
mit
1,469
@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\PyDBC.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyDBC.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
huhamhire/PyDBC
docs/make.bat
bat
mit
6,457
-intstyle "ise" -incremental -lib "secureip" -o "D:/ProySisDigAva/P18a_ServoControl_Felipe_Santiago_Rafael/ServoControl_vtb_isim_beh.exe" -prj "D:/ProySisDigAva/P18a_ServoControl_Felipe_Santiago_Rafael/ServoControl_vtb_beh.prj" "work.ServoControl_vtb"
Predator01/Levi
Downloads/ProySisDigAva (11-11-2015)/P22_ServoControl/fuseRelaunch.cmd
bat
mit
253
..\\..\\..\\packages\\NUnit.ConsoleRunner.3.6.0\\tools\\nunit3-console.exe ArmyOFCreatures.Tests.dll
Valsinev/ComponentTestingWithC
WritedTestsForExams/OOP - 06 April 2015 - Evening/2/code coverage/runtests.bat
bat
mit
100
@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% -name >NUL 2>&1 if "%ERRORLEVEL%" == "0" goto init echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto init echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :init @rem Get command-line arguments, handling Windowz variants if not "%OS%" == "Windows_NT" goto win9xME_args if "%@eval[2+2]" == "4" goto 4NT_args :win9xME_args @rem Slurp the command line arguments. set CMD_LINE_ARGS= set _SKIP=2 :win9xME_args_slurp if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* goto execute :4NT_args @rem Get arguments 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
ayesolutions/java-gogs-client
gradlew.bat
bat
mit
2,401
@echo off SysOptimizer
alissonlauffer/SysOptimizer
voltar.bat
bat
mit
23
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\stve.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\stve.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
TE-ToshiakiTanaka/stve
doc/make.bat
bat
mit
7,254
rem rem echo off echo "aermet.exe stage3.inp :" aermet.exe stage3.inp echo echo "Hotovo, sfc and pfl subory su hotove !"
miroi/open-collection
air-polution-modeling/AERMOD/sample_run/aermet_test/salem/run_aermet_salem_stage3.bat
bat
mit
125
echo off echo PrepForSubmission.bat v1.3 (updated 10 Feb 2014) echo By Joey Foo (joeyfoo.com) and contributors echo ----- echo. echo DISCLAIMER: This batch file is provided AS-IS, it's your responsibility echo to double-check before submission! echo. echo ---------- echo. echo Enter the output directory name (usually your admin number for submission). set /p outputDir= echo. echo Starting... rmdir ..\%outputDir% /s /q mkdir ..\%outputDir% xcopy * ..\%outputDir% /s /c /i cd ..\%outputDir% del *.opensdb /q del *.ncb /q del *.suo /q del *.sdf /q del *.user /q del .gitignore /q rmdir .git /s /q rmdir ipch /S /q del *.bat /q for /d /r . %%d in (Debug,Release) do @if exist "%%d" rd /s /q "%%d" echo. echo Completed. pause
joeyfoo/PrepForSubmission
PrepForSubmission.bat
bat
mit
739
fw 38ef1
iterami/Scripts
oblivion/storm.bat
bat
cc0-1.0
9
cmd_lib/crc-t10dif.mod.o := arm-none-linux-gnueabi-gcc -Wp,-MD,lib/.crc-t10dif.mod.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(crc_t10dif.mod)" -D"KBUILD_MODNAME=KBUILD_STR(crc_t10dif)" -DMODULE -c -o lib/crc-t10dif.mod.o lib/crc-t10dif.mod.c deps_lib/crc-t10dif.mod.o := \ lib/crc-t10dif.mod.c \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/stat.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/linkage.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/last/bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/zone/dma.h) \ include/linux/const.h \ arch/arm/mach-davinci/include/mach/memory.h \ $(wildcard include/config/arch/davinci/da8xx.h) \ $(wildcard include/config/arch/davinci/dmx.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/sparsemem.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ include/asm-generic/getorder.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/dynamic_debug.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/errno.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \ arch/arm/mach-davinci/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/completion.h \ include/linux/rcutree.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/vermagic.h \ include/generated/utsrelease.h \ lib/crc-t10dif.mod.o: $(deps_lib/crc-t10dif.mod.o) $(deps_lib/crc-t10dif.mod.o):
srinugnt2000/linux-2.6.37
lib/.crc-t10dif.mod.o.cmd
bat
gpl-2.0
15,528
cmd_net/ipv4/netfilter/iptable_nat.o := /home/pasquale/android/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o net/ipv4/netfilter/iptable_nat.o net/ipv4/netfilter/nf_nat_rule.o net/ipv4/netfilter/nf_nat_standalone.o
p500-ics-cm9/Franco-ICS-Kernel
net/ipv4/netfilter/.iptable_nat.o.cmd
bat
gpl-2.0
214
cmd_drivers/gpu/ion/built-in.o := rm -f drivers/gpu/ion/built-in.o; /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ar rcsD drivers/gpu/ion/built-in.o
JoinTheRealms/TF700-dualboot-stockbased
drivers/gpu/ion/.built-in.o.cmd
bat
gpl-2.0
197
cmd_drivers/media/video/v4l1-compat.ko := /home/utkanos/android/ginger/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -T /home/utkanos/android/kernels/android_htc_mecha_kernel_6slot/scripts/module-common.lds --build-id -o drivers/media/video/v4l1-compat.ko drivers/media/video/v4l1-compat.o drivers/media/video/v4l1-compat.mod.o
utkanos/android_htc_mecha_kernel_5slot
drivers/media/video/.v4l1-compat.ko.cmd
bat
gpl-2.0
350
cmd_drivers/scsi/scsi_mod.o := /root/adam/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/scsi/scsi_mod.o drivers/scsi/scsi.o drivers/scsi/hosts.o drivers/scsi/scsi_ioctl.o drivers/scsi/constants.o drivers/scsi/scsicam.o drivers/scsi/scsi_error.o drivers/scsi/scsi_lib.o drivers/scsi/scsi_lib_dma.o drivers/scsi/scsi_scan.o drivers/scsi/scsi_sysfs.o drivers/scsi/scsi_devinfo.o drivers/scsi/scsi_sysctl.o drivers/scsi/scsi_proc.o
DJSteve/StreakKernel
drivers/scsi/.scsi_mod.o.cmd
bat
gpl-2.0
464
cmd_drivers/gpu/msm/built-in.o := /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/gpu/msm/built-in.o drivers/gpu/msm/msm_kgsl.o
freebsdmax/gsmart1315_kernel
drivers/gpu/msm/.built-in.o.cmd
bat
gpl-2.0
204
cmd_kernel/trace/built-in.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o kernel/trace/built-in.o kernel/trace/trace_clock.o kernel/trace/ring_buffer.o
emwno/android_kernel_U8500
kernel/trace/.built-in.o.cmd
bat
gpl-2.0
178
cmd_drivers/media/dvb/pluto2/built-in.o := rm -f drivers/media/dvb/pluto2/built-in.o; /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs drivers/media/dvb/pluto2/built-in.o
sktjdgns1189/android_kernel_iriver_MX100
drivers/media/dvb/pluto2/.built-in.o.cmd
bat
gpl-2.0
182
cmd_drivers/hid/hid-kensington.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/hid/hid-kensington.ko drivers/hid/hid-kensington.o drivers/hid/hid-kensington.mod.o
avareldalton85/rpi2-linux-rt
drivers/hid/.hid-kensington.ko.cmd
bat
gpl-2.0
275
cmd_drivers/hid/hid.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/hid/hid.o drivers/hid/hid-core.o drivers/hid/hid-input.o
yohanes/Acer-BeTouch-E130-Linux-Kernel
drivers/hid/.hid.o.cmd
bat
gpl-2.0
150
cmd_util-linux/blockdev.o := gcc -Wp,-MD,util-linux/.blockdev.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(blockdev)" -D"KBUILD_MODNAME=KBUILD_STR(blockdev)" -c -o util-linux/blockdev.o util-linux/blockdev.c deps_util-linux/blockdev.o := \ util-linux/blockdev.c \ $(wildcard include/config/blockdev.h) \ $(wildcard include/config/feature/clean/up.h) \ include/libbb.h \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/busybox/exec/path.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/bits/predefs.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \ /usr/include/ctype.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/uio.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/inttypes.h \ /usr/include/netdb.h \ /usr/include/netinet/in.h \ /usr/include/x86_64-linux-gnu/sys/socket.h \ /usr/include/x86_64-linux-gnu/sys/uio.h \ /usr/include/x86_64-linux-gnu/bits/socket.h \ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ /usr/include/x86_64-linux-gnu/asm/socket.h \ /usr/include/asm-generic/socket.h \ /usr/include/x86_64-linux-gnu/asm/sockios.h \ /usr/include/asm-generic/sockios.h \ /usr/include/x86_64-linux-gnu/bits/socket2.h \ /usr/include/x86_64-linux-gnu/bits/in.h \ /usr/include/rpc/netdb.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/netdb.h \ /usr/include/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/setjmp2.h \ /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/x86_64-linux-gnu/sys/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll.h \ /usr/include/x86_64-linux-gnu/sys/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctls.h \ /usr/include/x86_64-linux-gnu/asm/ioctls.h \ /usr/include/asm-generic/ioctls.h \ /usr/include/linux/ioctl.h \ /usr/include/x86_64-linux-gnu/asm/ioctl.h \ /usr/include/asm-generic/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/x86_64-linux-gnu/sys/resource.h \ /usr/include/x86_64-linux-gnu/bits/resource.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/mntent.h \ /usr/include/paths.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ /usr/include/linux/fs.h \ /usr/include/linux/blk_types.h \ $(wildcard include/config/block.h) \ $(wildcard include/config/blk/dev/integrity.h) \ /usr/include/linux/types.h \ /usr/include/x86_64-linux-gnu/asm/types.h \ /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h \ /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h \ $(wildcard include/config/64bit.h) \ /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h \ /usr/include/x86_64-linux-gnu/asm/posix_types.h \ /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ util-linux/blockdev.o: $(deps_util-linux/blockdev.o) $(deps_util-linux/blockdev.o):
muthumani2/Muthu-busybox
util-linux/.blockdev.o.cmd
bat
gpl-2.0
10,128
@echo on cd "%WORKSPACE%\jenkins_scripts" @setlocal @set restoreDb=KRR-PA-ISA95_PRODUCTION @set backupPath=\\krr-sql-paclx02\KRR-SQL-PACLX02-Backups\Full\KRR-PA-ISA95_PRODUCTION @set restoreDbPath=c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\ for /f %%i in ('dir "%backupPath%" /b/a-d/od/t:c') do set backupFile=%%i rem echo DB dump name %backupFile% if ERRORLEVEL 1 exit 1 sqlcmd -S krr-tst-pahwl02 -i restore_script.prc if ERRORLEVEL 1 exit 1
arcelormittalkriviyrih/isa95_database
jenkins_scripts/create_test_db_from_prod_dump.bat
bat
gpl-3.0
469
# navigation data update rate 14Hz in ms !UBX CFG-RATE 70 1 1 # turn on UBX RXM-RAWX messages on first(UART) interface with the same freq !UBX CFG-MSG 2 21 0 1 0 0 0 0 # turn on UBX RXM-SFRBX messages on first(UART) interface with the same freq !UBX CFG-MSG 2 19 0 1 0 0 0 0 # turn on UBX TIM TM2 messages on first(UART) interface with the same freq !UBX CFG-MSG 13 3 0 1 0 0 0 0 # GNSS system settings # set GPS 8-16 channels !UBX CFG-GNSS 0 32 32 1 0 8 16 0 1 0 1 1 # set SBAS 1-3 channels !UBX CFG-GNSS 0 32 32 1 1 1 3 0 1 0 1 1 # set Galileo 0 channels off !UBX CFG-GNSS 0 32 32 1 2 0 0 0 0 0 0 1 # set BeiDou 8-16 channels off !UBX CFG-GNSS 0 32 32 1 3 8 16 0 0 0 1 1 # set IMES 0-8 channels off !UBX CFG-GNSS 0 32 32 1 4 0 8 0 0 0 1 1 # set QZSS 0-3 channels !UBX CFG-GNSS 0 32 32 1 5 0 3 0 1 0 1 1 # set GLONASS 8-14 channels off !UBX CFG-GNSS 0 32 32 1 6 8 14 0 0 0 1 1 # change NAV5 stationary mode to airborne <4g !UBX CFG-NAV5 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 # turn off extra messages default messages # NMEA GGA !UBX CFG-MSG 240 0 0 0 0 0 0 0 # NMEA GLL !UBX CFG-MSG 240 1 0 0 0 0 0 0 # NMEA GSA !UBX CFG-MSG 240 2 0 0 0 0 0 0 # NMEA GSV !UBX CFG-MSG 240 3 0 0 0 0 0 0 # NMEA RMC !UBX CFG-MSG 240 4 0 0 0 0 0 0 # NMEA VTG !UBX CFG-MSG 240 5 0 0 0 0 0 0 # NMEA ZDA !UBX CFG-MSG 240 8 0 0 0 0 0 0 !UBX CFG-MSG 1 3 0 0 0 0 0 0 !UBX CFG-MSG 1 3 0 0 0 0 0 0 !UBX CFG-MSG 1 6 0 0 0 0 0 0 !UBX CFG-MSG 1 18 0 0 0 0 0 0 !UBX CFG-MSG 1 34 0 0 0 0 0 0 !UBX CFG-MSG 1 48 0 0 0 0 0 0 @ !UBX CFG-RATE 1000 1 1
emlid/ReachView
rtklib_configs/GPS_14Hz.cmd
bat
gpl-3.0
1,535
@ECHO OFF del *.exe del *.mak set UDIRX= %CD% cd ..\..\execs\ move SPHYSICSgen_2D.exe ..\execs.bak cd ..\source\SPHYSICSgen2D del *.exe mk32 -f SPHYSICSgen_ftn95.mak clean mk32 -f SPHYSICSgen_ftn95.mak IF EXIST SPHYSICSgen_2D.exe ( ECHO. ECHO SPHYSICSGEN compilation Done=yes ECHO. copy SPHYSICSgen_2D.exe ..\..\execs\SPHYSICSgen_2D.exe cd %UDIRX% copy ..\..\execs\SPHYSICSgen_2D.exe SPHYSICSgen_2D.exe SPHYSICSgen_2D.exe <Case4.txt > Case4.out REM -- To use debugging in ftn95, use following line instead (remove REM, and comment out above line with REM) REM sdbg SPHYSICSgen_2D.exe <Case4.txt > Case4.out REM -- NOTE: you must compile SPHYSICSgen_2D.f with the /CHECK compiling option in SPHYSICSgen_ftn95.mak copy SPHYSICS.mak ..\..\source\SPHYSICS2D\SPHYSICS.mak cd ..\..\execs\ del *.obj move SPHYSICS_2D.exe ..\execs.bak cd ..\source\SPHYSICS2D del *.exe mk32 -f SPHYSICS.mak clean mk32 -f SPHYSICS.mak IF EXIST SPHYSICS_2D.exe ( ECHO. ECHO SPHYSICScompilationDone = yes ECHO. copy SPHYSICS_2D.exe ..\..\execs\SPHYSICS_2D.exe cd %UDIRX% copy ..\..\execs\SPHYSICS_2D.exe SPHYSICS_2D.exe SPHYSICS_2D.exe REM -- To use debugging in ftn95, use following line instead (remove REM, and comment out above line with REM) REM sdbg SPHYSICS_2D.exe REM -- NOTE: you must compile SPHYSICS_2D.exe with the /CHECK compiling option, REM -- EDIT the 'tocompile_ftn95' subroutine of SPHYSICSgen_2D.f ) ELSE ( ECHO. ECHO SPHYSICScompilation FAILED ECHO Check you have specified the correct compiler in Case file ECHO. cd %UDIRX% ) ) ELSE ( ECHO SPHYSICSGEN compilation FAILED cd %UDIRX% )
slitvinov/sphysics2d
run_directory/Case4/Case4_windows_ftn95.bat
bat
gpl-3.0
1,802
\Qt\Qt5.4.0\Tools\mingw482_32\bin\mingw32-make.exe install pause
achipa/outqross_blog
2_OutQross.Android_components/makeinstall.bat
bat
gpl-3.0
65
@echo off REM create build folder md build REM go to build folder cd build REM generate makefiles cmake -G "MSYS Makefiles" ../src REM run make make REM go back cd ..
ajmd17/ace-lang
build.bat
bat
mpl-2.0
173
@ech off java -cp .;lib\hsqldb\hsqldb.jar org.hsqldb.util.DatabaseManager
tolo/JServer
samples/springTest/server/hsqldb_gui.bat
bat
apache-2.0
76
@echo off rem ********************************************** rem Date created : 30-Dec-2012 rem Author : ajduke @call setenv.bat @start "%title%" mongod -f "%configFile%"
ajduke/mongodb-installer
files/bin/startm.bat
bat
apache-2.0
178
@echo off if "%OW_HOME%" == "" set OW_HOME=%~dp0.. set BIN_DIR=%OW_HOME%\bin set LIB_DIR=%OW_HOME%\lib set TARGET_DIR=%OW_HOME%\target set BUILD_DIR=%OW_HOME%\build set CLASSPATH="%BUILD_DIR%;%TARGET_DIR%\overlayweaver.jar;%LIB_DIR%\je-6.4.9.jar;%LIB_DIR%\commons-cli-1.3.1.jar;%LIB_DIR%\clink200.jar" set LOGGING_CONFIG="%BIN_DIR%\logging.properties" set JVM_OPTION=-Xss80k rem set JVM_OPTION=-server -Xss80k -Xmx1750m java %JVM_OPTION% -Djava.util.logging.config.file=%LOGGING_CONFIG% ow.tool.memcached.Main %*
shudo/overlayweaver
bin/owmemcached.bat
bat
apache-2.0
532
@echo off setlocal set home=%~dp0 set TE_HOME=%~dp0\..\.. if exist "%home%setenv.bat" call "%home%setenv.bat" set cp="%TE_HOME%\resources" for %%a in ("%TE_HOME%\lib"\*.jar) do call :addtocp "%%~fa" set java="%JAVA_HOME%\bin\java.exe" if not exist %java% set java=java %java% -cp %cp% %JAVA_OPTS% com.occamlab.te.ViewLog -cmd=%0 %* endlocal goto:eof :addtocp set cp=%cp%;%1
opengeospatial/teamengine
teamengine-console/src/main/scripts/shell/mswin/viewlog.bat
bat
apache-2.0
402
set FREEBASE_API_KEY=AIzaSyBTcOKmU7L7gFB4AdyAz75JRmdHixdLYjY call build CleanInternetCaches || exit /B 1 call build All || exit /B 1 call build SourceLink || exit /B 1 call build NuGet || exit /B 1
moonmile/FSharp.Data.PCL
teamcity.cmd
bat
apache-2.0
198