code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
@ECHO OFF
set restartcode=15
:s
call gradle.bat run
if %ERRORLEVEL% == 1 goto :s
REM :start
REM xcopy /Y build\libs\noukkisBot.jar run\
REM java -jar run\noukkisBot.jar
REM if %ERRORLEVEL% == %restartcode% goto :start | Noukkis/NoukkisBot | run.bat | bat | mit | 227 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=asws
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| regiontog/asws | docs/make.bat | bat | mit | 776 |
@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\jmatcher.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\jmatcher.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
| jamesaud/se1-group4 | docs/make.bat | bat | mit | 5,100 |
@echo off
REM Query the host for connected Android devices. If one is found, install Sqlite3 into the /system/xbin folder of the device.
setlocal enabledelayedexpansion
call "%~dp0\choose_device.bat"
if not exist "%~dp0\chosendevice.temp" (
echo "No device was chosen. Aborting."
exit /b
)
set /p chosendevice=< "%~dp0\chosendevice.temp"
del "%~dp0\chosendevice.temp"
echo Installing Sqlite3 on !chosendevice! at /system/xbin/sqlite3
echo Pushing Sqlite3 to devices sdcard
adb push %~dp0\utilities\sqlite3 /sdcard/sqlite3
echo Mounting system
adb -s "!chosendevice!" shell "su -c 'mount -o rw,remount /system'"
echo Copying Sqlite3 to system bin
adb -s "!chosendevice!" shell "su -c 'cp /sdcard/sqlite3 /system/xbin/sqlite3'"
echo Delete copy of Sqlite3 from sdcard
adb -s "!chosendevice!" shell "su -c 'rm /sdcard/sqlite3'"
echo Grant permissions for Sqlite3 binary
adb -s "!chosendevice!" shell "su -c 'chmod 777 /system/xbin/sqlite3'"
echo Finished
timeout 2
goto :cleanup | DavidEdwards/AndroidDevTools | add_sqlite3.bat | bat | mit | 1,010 |
shutdown -s -f -t 00
| codingseb/mycmds | shut.bat | bat | mit | 22 |
regsvr32.exe CodeXLVSPackageVS14.dll | ilangal-amd/CodeXL | CodeXL/CodeXLVSPackage/CodeXLVSPackage/CodeXLVSPackageVS14VSIX/CodeXLVSPackageRegistration.bat | bat | mit | 36 |
cmd_drivers/media/common/tuners/tda8290.ko := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -T /home/erik/supersonic/scripts/module-common.lds --build-id -o drivers/media/common/tuners/tda8290.ko drivers/media/common/tuners/tda8290.o drivers/media/common/tuners/tda8290.mod.o
| kingklick/kk-evo-kernel | drivers/media/common/tuners/.tda8290.ko.cmd | bat | gpl-2.0 | 315 |
cmd_net/packet/built-in.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o net/packet/built-in.o net/packet/af_packet.o
| paxchristos/R800x-2.3.3-Kernel | net/packet/.built-in.o.cmd | bat | gpl-2.0 | 188 |
cmd_fs/devpts/devpts.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ld -EL -r -o fs/devpts/devpts.o fs/devpts/inode.o
| 0xD34D/kernel_amazon_tate | fs/devpts/.devpts.o.cmd | bat | gpl-2.0 | 152 |
cmd_block/blk-flush.o := arm-none-linux-gnueabi-gcc -Wp,-MD,block/.blk-flush.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(blk_flush)" -D"KBUILD_MODNAME=KBUILD_STR(blk_flush)" -c -o block/.tmp_blk-flush.o block/blk-flush.c
deps_block/blk-flush.o := \
block/blk-flush.c \
include/linux/kernel.h \
$(wildcard include/config/lbdaf.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/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.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 \
$(wildcard include/config/smp.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/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/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/mmu.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.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.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/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/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/bio.h \
$(wildcard include/config/block.h) \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/highmem.h \
$(wildcard include/config/x86/32.h) \
$(wildcard include/config/debug/highmem.h) \
include/linux/fs.h \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/ima.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/blk_types.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.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/percpu_counter.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 \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.h) \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/uaccess.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/hardirq.h \
$(wildcard include/config/bkl.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/irq/time/accounting.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hardirq.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irq.h \
arch/arm/mach-davinci/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/proportions.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/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/aio_abi.h \
include/linux/uio.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/smp/on/up.h) \
$(wildcard include/config/arm/errata/411920.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmparam.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/kmap_types.h \
include/linux/mempool.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
$(wildcard include/config/blk/cgroup.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/io.h \
arch/arm/mach-davinci/include/mach/io.h \
include/linux/blkdev.h \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/blk/dev/throttling.h) \
$(wildcard include/config/bounce.h) \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
$(wildcard include/config/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/trace/events/kmem.h \
include/trace/events/gfpflags.h \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
$(wildcard include/config/sysfs/deprecated.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/linux/pagemap.h \
include/linux/hugetlb_inline.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/writeback.h \
include/linux/bsg.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/elevator.h \
block/blk.h \
$(wildcard include/config/fail/io/timeout.h) \
block/blk-flush.o: $(deps_block/blk-flush.o)
$(deps_block/blk-flush.o):
| srinugnt2000/linux-2.6.37 | block/.blk-flush.o.cmd | bat | gpl-2.0 | 26,507 |
@echo off
if "%JAVA_HOME%" == "" (
echo.
echo JAVA_HOME not set
goto EOF
)
if not exist "%JAVA_HOME%\bin\java.exe" (
echo.
echo Cannot find java executable, check JAVA_HOME
goto EOF
)
set LIB=..\..\lib
if not exist ..\..\..\esper-4.10.0.jar goto badenv_esperlib
if not exist %LIB%\cglib-nodep-2.2.jar goto badenv
if not exist %LIB%\commons-logging-1.1.1.jar goto badenv
if not exist %LIB%\log4j-1.2.16.jar goto badenv
if not exist %LIB%\antlr-runtime-3.2.jar goto badenv
set CLASSPATH=.
set CLASSPATH=%CLASSPATH%;..\terminalsvc-receiver\target\example-terminalsvc-receiver-1.0.jar
set CLASSPATH=%CLASSPATH%;..\terminalsvc-sender\target\example-terminalsvc-sender-1.0.jar
set CLASSPATH=%CLASSPATH%;..\terminalsvc-common\target\example-terminalsvc-common-1.0.jar
set CLASSPATH=%CLASSPATH%;..\..\..\esper-4.10.0.jar
set CLASSPATH=%CLASSPATH%;..\lib\jboss-jms-api_1.1_spec-1.0.0.Final.jar
set CLASSPATH=%CLASSPATH%;..\lib\jboss-client.jar
set CLASSPATH=%CLASSPATH%;%LIB%\cglib-nodep-2.2.jar
set CLASSPATH=%CLASSPATH%;%LIB%\commons-logging-1.1.1.jar
set CLASSPATH=%CLASSPATH%;%LIB%\log4j-1.2.16.jar
set CLASSPATH=%CLASSPATH%;%LIB%\antlr-runtime-3.2.jar
goto EOF
:badenv
echo.
echo Error: required libraries not found in %LIB% directory
goto EOF
:badenv_esperlib
echo.
echo Error: esper-4.10.0.jar not found in ..\..\
:EOF
| sungsoo/esper | examples/terminalsvc/etc/setenv.bat | bat | gpl-2.0 | 1,385 |
cmd_lib/kobject.o := gcc -Wp,-MD,lib/.kobject.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.6/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -fno-optimize-sibling-calls -mtune=generic -m64 -mno-red-zone -mcmodel=kernel -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -maccumulate-outgoing-args -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -DDEBUG -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(kobject)" -D"KBUILD_MODNAME=KBUILD_STR(kobject)" -c -o lib/kobject.o lib/kobject.c
deps_lib/kobject.o := \
lib/kobject.c \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/types.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/x86/vsmp.h) \
include/asm/segment.h \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/asm/page.h \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/flatmem.h) \
include/linux/const.h \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/sigcontext.h \
include/asm/cpufeature.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm-i386/msr-index.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/asm/current.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/linux/cache.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/bitops.h \
include/asm/bitops.h \
include/asm/alternative.h \
$(wildcard include/config/paravirt.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/system.h \
$(wildcard include/config/unordered/io.h) \
include/asm/cmpxchg.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
include/asm/processor-flags.h \
include/asm-i386/processor-flags.h \
include/asm/mmsegment.h \
include/asm/percpu.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/asm/thread_info.h \
$(wildcard include/config/debug/stack/usage.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/stacktrace.h \
$(wildcard include/config/stacktrace.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_smp.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/user.h \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
$(wildcard include/config/acpi/numa.h) \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm/8253pit.h \
include/asm/vsyscall.h \
$(wildcard include/config/generic/time.h) \
include/asm/hpet.h \
$(wildcard include/config/hpet/emulate/rtc.h) \
include/asm/tsc.h \
include/asm-i386/tsc.h \
$(wildcard include/config/x86/tsc.h) \
$(wildcard include/config/x86/generic.h) \
include/asm/module.h \
lib/kobject.o: $(deps_lib/kobject.o)
$(deps_lib/kobject.o):
| dnh34/proj1 | lib/.kobject.o.cmd | bat | gpl-2.0 | 8,842 |
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\Sega*(J*"') do SET SCDJB=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\Sega*(E*"') do SET SCDEB=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\Sega*(U*"') do SET SCDUB=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\*jp*cd*"') do SET SCDJB=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\*eu*cd*"') do SET SCDEB=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\*us*cd*"') do SET SCDUB=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\32X_M*"') do SET 32XM=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\32X_S*"') do SET 32XS=%%i
for /f "tokens=* delims= " %%i in ('dir /b/a-d "%GBE%\%EMUZ%\%FUSN%\32X_G*"') do SET 32XG=%%s
pushd "%GBC%\net\%EXECT%\%SG32X%"
copy /y "%GBE%\%EMUZ%\%FUSN%\%SCDUB%" "%GBC%\net\%EXECT%\%CSTCONS%"
copy /y "%GBE%\%EMUZ%\%FUSN%\%SCDEB%" "%GBC%\net\%EXECT%\%CSTCONS%"
copy /y "%GBE%\%EMUZ%\%FUSN%\%SCDJB%" "%GBC%\net\%EXECT%\%CSTCONS%"
copy /y "%GBE%\%EMUZ%\%FUSN%\%32XM%" "%GBC%\net\%EXECT%\%CSTCONS%"
copy /y "%GBE%\%EMUZ%\%FUSN%\%32XS%" "%GBC%\net\%EXECT%\%CSTCONS%"
copy /y "%GBE%\%EMUZ%\%FUSN%\%32XG%" "%GBC%\net\%EXECT%\%CSTCONS%"
echo.copy /y "%SCDUB%.bak" "%SCDUB%">>"%GBC%\bioscpy.ini"
echo.copy /y "%SCDEB%.bak" "%SCDEB%">>"%GBC%\bioscpy.ini"
echo.copy /y "%SCDJB%.bak" "%SCDJB%">>"%GBC%\bioscpy.ini"
echo.copy /y "%32XM%.bak" "%32XM%">>"%GBC%\bioscpy.ini"
echo.copy /y "%32XS%.bak" "%32XS%">>"%GBC%\bioscpy.ini"
echo.copy /y "%32XG%.bak" "%32XG%">>"%GBC%\bioscpy.ini"
"%GBC%\fart.exe" "%FUSN%.ini" [SCDUB] "%SCDUB%"
"%GBC%\fart.exe" "%FUSN%.ini" [SCDJB] "%SCDJB%"
"%GBC%\fart.exe" "%FUSN%.ini" [SCDEB] "%SCDEB%"
"%GBC%\fart.exe" "%FUSN%.ini" [32XG] "%32XG%"
"%GBC%\fart.exe" "%FUSN%.ini" [32XM] "%32XM%"
"%GBC%\fart.exe" "%FUSN%.ini" [32XS] "%32XS%"
"%GBC%\fart.exe" "%FUSN%.ini" [EMUL] "[EMUPTH]"
popd
for /d %%g IN ("%CSTM%") DO (
set CSTM=%%~g
CALL "%GBC%\Sg32xexeject.bat"
set /A ADDTO=0
call :injext
if "%ADDTO%" GEQ "2" set FNDMORE=1
)
exit /b
:injext
pushd "%GBC%\net\%EXECT%\%SG32X%"
for /f "tokens=* delims= " %%a in ('dir /b/a-d-h "%CSTM%"') do (
if /I "%%~xa"==".32x" call :addto && "%GBC%\fart.exe" "%GBC%\net\%EXECT%\%CSTCONS%\*.bat" [EXT] 32x
if /I "%%~xa"==".x32" call :addto && "%GBC%\fart.exe" "%GBC%\net\%EXECT%\%CSTCONS%\*.bat" [EXT] x32
if /I "%%~xa"==".bin" call :addto && "%GBC%\fart.exe" "%GBC%\net\%EXECT%\%CSTCONS%\*.bat" [EXT] bin
if /I "%%~xa"==".gen" call :addto && "%GBC%\fart.exe" "%GBC%\net\%EXECT%\%CSTCONS%\*.bat" [EXT] gen
if /I "%%~xa"==".rom" call :addto && "%GBC%\fart.exe" "%GBC%\net\%EXECT%\%CSTCONS%\*.bat" [EXT] rom
if /I "%%~xa"==".zip" call :addto && "%GBC%\fart.exe" "%GBC%\net\%EXECT%\%CSTCONS%\*.bat" [EXT] zip
popd
)
exit /b
:addto
SET /A ADDTO+=1 | HoodlumDTX/rom-jacket | execSG32X.bat | bat | gpl-2.0 | 2,927 |
cmd_lib/ts_fsm.o := arm-eabi-gcc -Wp,-MD,lib/.ts_fsm.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ts_fsm)" -D"KBUILD_MODNAME=KBUILD_STR(ts_fsm)" -D"DEBUG_HASH=8" -D"DEBUG_HASH2=30" -c -o lib/ts_fsm.o lib/ts_fsm.c
deps_lib/ts_fsm.o := \
lib/ts_fsm.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/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
$(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) \
/data/repos/kernels/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/repos/kernels/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
/data/repos/kernels/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/data/repos/kernels/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/data/repos/kernels/arch/arm/include/asm/hwcap.h \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/repos/kernels/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/data/repos/kernels/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/data/repos/kernels/arch/arm/include/asm/irqflags.h \
/data/repos/kernels/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/linux/stat.h \
/data/repos/kernels/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/repos/kernels/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/data/repos/kernels/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/repos/kernels/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/repos/kernels/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/repos/kernels/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/repos/kernels/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/data/repos/kernels/arch/arm/include/asm/atomic.h \
$(wildcard include/config/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/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/data/repos/kernels/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/data/repos/kernels/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/data/repos/kernels/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/data/repos/kernels/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/repos/kernels/arch/arm/include/asm/smp.h \
arch/arm/mach-msm/include/mach/smp.h \
/data/repos/kernels/arch/arm/include/asm/hardware/gic.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/data/repos/kernels/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/data/repos/kernels/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/data/repos/kernels/arch/arm/include/asm/elf.h \
/data/repos/kernels/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/data/repos/kernels/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/ctype.h \
include/linux/textsearch.h \
include/linux/err.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/linux/textsearch_fsm.h \
lib/ts_fsm.o: $(deps_lib/ts_fsm.o)
$(deps_lib/ts_fsm.o):
| bigbiff/i717-GB-Kernel | lib/.ts_fsm.o.cmd | bat | gpl-2.0 | 17,580 |
cmd_drivers/gpu/drm/built-in.o := arm-arago-linux-gnueabi-ld -EL -r -o drivers/gpu/drm/built-in.o drivers/gpu/drm/i2c/built-in.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | drivers/gpu/drm/.built-in.o.cmd | bat | gpl-2.0 | 134 |
cmd_arch/arm/lib/testsetbit.o := ccache /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.testsetbit.o.d -nostdinc -isystem /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/../lib/gcc/arm-eabi/4.10.0/include -I/home/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/friedrich420/kernel/note3/N3NB7KernelGIT2/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -mcpu=cortex-a15 -include asm/unified.h -msoft-float -gdwarf-2 -O2 -mtune=cortex-a15 -mfpu=neon -fgcse-las -fpredictive-commoning -c -o arch/arm/lib/testsetbit.o arch/arm/lib/testsetbit.S
source_arch/arm/lib/testsetbit.o := arch/arm/lib/testsetbit.S
deps_arch/arm/lib/testsetbit.o := \
/home/friedrich420/kernel/note3/N3NB7KernelGIT2/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/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include/asm/linkage.h \
/home/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/cpu/use/domains.h) \
/home/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include/asm/hwcap.h \
/home/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
arch/arm/lib/bitops.h \
/home/friedrich420/kernel/note3/N3NB7KernelGIT2/arch/arm/include/asm/unwind.h \
$(wildcard include/config/arm/unwind.h) \
arch/arm/lib/testsetbit.o: $(deps_arch/arm/lib/testsetbit.o)
$(deps_arch/arm/lib/testsetbit.o):
| friedrich420/Note-3-Kernel | arch/arm/lib/.testsetbit.o.cmd | bat | gpl-2.0 | 2,440 |
cmd_sound/soc/jz4740/built-in.o := rm -f sound/soc/jz4740/built-in.o; arm-arago-linux-gnueabi-ar rcs sound/soc/jz4740/built-in.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | sound/soc/jz4740/.built-in.o.cmd | bat | gpl-2.0 | 130 |
cmd_drivers/mxc/gpu-viv/built-in.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/mxc/gpu-viv/built-in.o drivers/mxc/gpu-viv/galcore.o
| FEDEVEL/tmp-imx6-tiny-rex-linux | drivers/mxc/gpu-viv/.built-in.o.cmd | bat | gpl-2.0 | 235 |
pkzip -ex ..\dtexsf.zip *.c *.h *.def *.prj *.ide *.bat *.txt *.cmd *.mak *.sh makefile | AlexMax/deutex | old/save.bat | bat | gpl-2.0 | 87 |
@ECHO OFF
del /S %1*.str%2%3%4
del /S %1*.rsm%2%3%4
del /S %1*.lib%2%3%4
del /S %1*.ddp%2%3%4
del /S %1*.err%2%3%4
del /S %1*.tds%2%3%4
del /S %1*.hpp%2%3%4
del /S %1Dcu\*.obj%2%3%4
del /S %1*.tds%2%3%4
del /S %1*.drc%2%3%4
del /S %1*.#*%2%3%4
del /S %1*.csm%2%3%4
del /S %1*.bpi%2%3%4
del /S %1*.lib%2%3%4
del /S %1*.ilc%2%3%4
del /S %1*.ild%2%3%4
del /S %1*.ilf%2%3%4
del /S %1*.ils%2%3%4
del /S %1*.cgi%2%3%4
del /S %1*.drc%2%3%4
del /S %1*.$*%2%3%4
del /S *.dcu%2%3%4
del /S %1*.bak%2%3%4
del /S %1*.gid%2%3%4
del /S %1*.fts%2%3%4
del /S %1*.~*%2%3%4
del /S %1*.cfg%2%3%4
del /S %1*.bkm%2%3%4
del /S %1*_orig_?.*%2%3%4
del /S %1*.ressrc%2%3%4
del /S %1*.cesettings%2%3%4
del /S %1*.stat%2%3%4
del /S %1*.ndx%2%3%4
del /S %1*.rar%2%3%4
rem del /S %1*.exe%2%3%4
| MarcoPortmann/Tinn-R | project_clean.bat | bat | gpl-3.0 | 765 |
cmd_/home/yoleimei/GithubRepo/SourceCodeRepo/Linux/DeviceDrivers/CharacterDevice/globalfifo_5.0_async/globalfifo.ko := ld -r -m elf_i386 -T ./scripts/module-common.lds --build-id -o /home/yoleimei/GithubRepo/SourceCodeRepo/Linux/DeviceDrivers/CharacterDevice/globalfifo_5.0_async/globalfifo.ko /home/yoleimei/GithubRepo/SourceCodeRepo/Linux/DeviceDrivers/CharacterDevice/globalfifo_5.0_async/globalfifo.o /home/yoleimei/GithubRepo/SourceCodeRepo/Linux/DeviceDrivers/CharacterDevice/globalfifo_5.0_async/globalfifo.mod.o
| Yoleimei/SourceCodeRepo | Linux/DeviceDrivers/CharacterDevice/globalfifo_5.0_async/.globalfifo.ko.cmd | bat | gpl-3.0 | 521 |
del /q/s *.o *.hex *.bin *.idb *.pdb *.pch *.obj *.lst *.opt *.m51 *.bak *.lnp *.plg *.ncb *.pfi *.po *.rr *.pri *.psc *.__i *.a51 *.IAB *.IAD *.IMB *.IMD *.PR *.PS *.WK3 *.DBG *.ilk *.sbr *.sdf *.ipch *.bsc BuildLog.htm *.dep *.manifest *.mac *.log *.wrn *.tlog *.lastbuildstate | CoderAldrich/riched20 | 清理VC工程文件.bat | bat | gpl-3.0 | 279 |
:: (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
::
:: This file contains confidential and proprietary information
:: of Xilinx, Inc. and is protected under U.S. and
:: international copyright and other intellectual property
:: laws.
::
:: DISCLAIMER
:: This disclaimer is not a license and does not grant any
:: rights to the materials distributed herewith. Except as
:: otherwise provided in a valid license issued to you by
:: Xilinx, and to the maximum extent permitted by applicable
:: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
:: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
:: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
:: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
:: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
:: (2) Xilinx shall not be liable (whether in contract or tort,
:: including negligence, or under any other theory of
:: liability) for any loss or damage of any kind or nature
:: related to, arising under or in connection with these
:: materials, including for any direct, or any indirect,
:: special, incidental, or consequential loss or damage
:: (including loss of data, profits, goodwill, or any type of
:: loss or damage suffered as a result of any action brought
:: by a third party) even if such damage or loss was
:: reasonably foreseeable or Xilinx had been advised of the
:: possibility of the same.
::
:: CRITICAL APPLICATIONS
:: Xilinx products are not designed or intended to be fail-
:: safe, or for use in any application requiring fail-safe
:: performance, such as life-support or safety devices or
:: systems, Class III medical devices, nuclear facilities,
:: applications related to the deployment of airbags, or any
:: other applications that could lead to death, personal
:: injury, or severe property or environmental damage
:: (individually and collectively, "Critical
:: Applications"). Customer assumes the sole risk and
:: liability of any use of Xilinx products in Critical
:: Applications, subject only to applicable laws and
:: regulations governing limitations on product liability.
::
:: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
:: PART OF THIS FILE AT ALL TIMES.
::--------------------------------------------------------------------------------
cp ..\..\..\cham_rom.mif .
echo "Compiling Core VHDL UNISIM/Behavioral model"
vhpcomp -work work ..\..\..\cham_rom.vhd
vhpcomp -work work ..\..\example_design\cham_rom_exdes.vhd
echo "Compiling Test Bench Files"
vhpcomp -work work ..\bmg_tb_pkg.vhd
vhpcomp -work work ..\addr_gen.vhd
vhpcomp -work work ..\bmg_stim_gen.vhd
vhpcomp -work work ..\cham_rom_synth.vhd
vhpcomp -work work ..\cham_rom_tb.vhd
fuse work.cham_rom_tb -L unisims -L xilinxcorelib -o cham_rom_tb.exe
.\cham_rom_tb.exe -gui -tclbatch simcmds.tcl
| ILoveSpeccy/Aeon-Lite | cores/lvov-pk02-mips/src/cham_rom/cham_rom/simulation/functional/simulate_isim.bat | bat | gpl-3.0 | 2,844 |
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|18 Apr 2005 09:19:32 -0000
vti_extenderversion:SR|4.0.2.8912
vti_cacheddtm:TX|18 Apr 2005 09:19:32 -0000
vti_filesize:IR|58
| loro102/rumbo2 | _vti_cnf/actualiza.bat | bat | gpl-3.0 | 172 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=SiviCNCDriver
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| Klafyvel/SiviCNCDriver | docs/make.bat | bat | gpl-3.0 | 811 |
@echo off
call "%VS100COMNTOOLS%vsvars32.bat"
nmake -fQstLibs.mak
pause
| prefetchnta/questlab | src/QstLibs/QstLibs.bat | bat | lgpl-2.1 | 76 |
@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. 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\ValidatingConfigParser.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ValidatingConfigParser.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
| techdragon/validatingconfigparser | doc/make.bat | bat | apache-2.0 | 5,137 |
@echo off
setlocal
set AppRoot=E:\approot
set SimExe=%AppRoot%\AllocationSimulator.exe
set Output=%USERPROFILE%\Desktop\Results
pushd %AppRoot%
echo Running: %SimExe% -i %1 -o %Output%
echo.
%SimExe% -i %1 -o %Output%
popd
pause
endlocal | chinnurtb/OpenAdStack | Utilities/SimulatorRole/RunSimulation.cmd | bat | apache-2.0 | 239 |
@echo off
echo Are you sure?
pause
set /p ApiKey=<api.key.txt
if not "%ApiKey%"=="" goto push
echo Unable to find api.key.txt
goto done
:push
for /r %%i in (*.nupkg) do nuget.exe push %%i %ApiKey% -Source nuget.org
:done
pause
| dlemstra/line-bot-sdk-dotnet | publish/push.cmd | bat | apache-2.0 | 232 |
@ECHO OFF
Set VERBOSE=%~1
Set CONFIG_FILE=%~2
If "%VERBOSE%" == "true" (
Echo "CONFIG_FILE=%CONFIG_FILE%"
)
Echo / =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= Loading Data =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= \ & Echo.
For /F "eol=; usebackq delims=" %%a In ("%CONFIG_FILE%") Do (
Set rowContent=%%a
If Not "!rowContent:~0,1!" == "#" (
If Not "!rowContent:~0,1!" == "[" (
If "!VERBOSE!" == "true" Echo. & Echo Row Content : [!rowContent!]
For /F "delims=; tokens=1" %%b In ("!rowContent!") Do (
Set lineContent=%%b
If "!VERBOSE!" == "true" Echo Row Data : [!lineContent!]
For /F "delims== tokens=1,*" %%i In ("!lineContent!") Do (
Set key=%%i
@REM È¥³ýǰºó¿Õ¸ñ
Set key=!key: =!
If "!VERBOSE!" == "true" Echo Key : [!key!]
Set value=%%j
Set value=!value: =!
If "!VERBOSE!" == "true" Echo Value : [!value!]
@Set !key!=!value!
Echo {!key!=!value!}
)
)
) Else (
If "!VERBOSE!" == "true" Echo. & Echo. & Echo Model : !rowContent!
)
) Else (
If "!VERBOSE!" == "true" Echo !rowContent!
)
)
Echo. & Echo \ =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= Loaded Data =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= /
Echo.
| JohnLee-Organization/demo | netty/client/src/repertory/shell/windows/load_config.cmd | bat | apache-2.0 | 1,444 |
@echo on
setlocal
set JDBC_LIBPATH=.\lib\db2\*
rem set JDBC_LIBPATH=.\lib\postgres\*
rem set JDBC_LIBPATH=.\lib\mssql\*
rem set JDBC_LIBPATH=.\lib\oracle\*
rem set JDBC_LIBPATH=.\lib\mysql\*
set LIBPATH=%LIBPATH%;%JDBC_LIBPATH%
..\..\bin\tnt4j-streams.bat -f:tnt-data-source.xml | Nastel/tnt4j-streams | tnt4j-streams-ws/samples/b2bi-jdbc-stream/run.bat | bat | apache-2.0 | 278 |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
if "%OS%" == "Windows_NT" setlocal
rem ---------------------------------------------------------------------------
rem NT Service Install/Uninstall script
rem
rem Options
rem install Install the service using Tomcat7 as service name.
rem Service is installed using default settings.
rem remove Remove the service from the System.
rem
rem name (optional) If the second argument is present it is considered
rem to be new service name
rem
rem $Id: service.bat 1000718 2010-09-24 06:00:00Z mturk $
rem ---------------------------------------------------------------------------
set "SELF=%~dp0%service.bat"
rem Guess CATALINA_HOME if not defined
set "CURRENT_DIR=%cd%"
if not "%CATALINA_HOME%" == "" goto gotHome
set "CATALINA_HOME=%cd%"
if exist "%CATALINA_HOME%\bin\tomcat7.exe" goto okHome
rem CD to the upper dir
cd ..
set "CATALINA_HOME=%cd%"
:gotHome
if exist "%CATALINA_HOME%\bin\tomcat7.exe" goto okHome
echo The tomcat.exe was not found...
echo The CATALINA_HOME environment variable is not defined correctly.
echo This environment variable is needed to run this program
goto end
:okHome
rem Make sure prerequisite environment variables are set
if not "%JAVA_HOME%" == "" goto gotJdkHome
if not "%JRE_HOME%" == "" goto gotJreHome
echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
echo Service will try to guess them from the registry.
goto okJavaHome
:gotJreHome
if not exist "%JRE_HOME%\bin\java.exe" goto noJavaHome
if not exist "%JRE_HOME%\bin\javaw.exe" goto noJavaHome
goto okJavaHome
:gotJdkHome
if not exist "%JAVA_HOME%\jre\bin\java.exe" goto noJavaHome
if not exist "%JAVA_HOME%\jre\bin\javaw.exe" goto noJavaHome
if not exist "%JAVA_HOME%\bin\javac.exe" goto noJavaHome
if not "%JRE_HOME%" == "" goto okJavaHome
set "JRE_HOME=%JAVA_HOME%\jre"
goto okJavaHome
:noJavaHome
echo The JAVA_HOME environment variable is not defined correctly
echo This environment variable is needed to run this program
echo NB: JAVA_HOME should point to a JDK not a JRE
goto end
:okJavaHome
if not "%CATALINA_BASE%" == "" goto gotBase
set "CATALINA_BASE=%CATALINA_HOME%"
:gotBase
set "EXECUTABLE=%CATALINA_HOME%\bin\tomcat7.exe"
rem Set default Service name
set SERVICE_NAME=Tomcat7
set PR_DISPLAYNAME=Apache Tomcat 7
if "x%1x" == "xx" goto displayUsage
set SERVICE_CMD=%1
shift
if "x%1x" == "xx" goto checkServiceCmd
:checkUser
if "x%1x" == "x/userx" goto runAsUser
if "x%1x" == "x--userx" goto runAsUser
set SERVICE_NAME=%1
set PR_DISPLAYNAME=Apache Tomcat %1
shift
if "x%1x" == "xx" goto checkServiceCmd
goto checkUser
:runAsUser
shift
if "x%1x" == "xx" goto displayUsage
set SERVICE_USER=%1
shift
runas /env /savecred /user:%SERVICE_USER% "%COMSPEC% /K \"%SELF%\" %SERVICE_CMD% %SERVICE_NAME%"
goto end
:checkServiceCmd
if /i %SERVICE_CMD% == install goto doInstall
if /i %SERVICE_CMD% == remove goto doRemove
if /i %SERVICE_CMD% == uninstall goto doRemove
echo Unknown parameter "%1"
:displayUsage
echo.
echo Usage: service.bat install/remove [service_name] [/user username]
goto end
:doRemove
rem Remove the service
"%EXECUTABLE%" //DS//%SERVICE_NAME%
if not errorlevel 1 goto removed
echo Failed removing '%SERVICE_NAME%' service
goto end
:removed
echo The service '%SERVICE_NAME%' has been removed
goto end
:doInstall
rem Install the service
echo Installing the service '%SERVICE_NAME%' ...
echo Using CATALINA_HOME: "%CATALINA_HOME%"
echo Using CATALINA_BASE: "%CATALINA_BASE%"
echo Using JAVA_HOME: "%JAVA_HOME%"
echo Using JRE_HOME: "%JRE_HOME%"
rem Use the environment variables as an example
rem Each command line option is prefixed with PR_
set PR_DESCRIPTION=Apache Tomcat 7.0.21 Server - http://tomcat.apache.org/
set "PR_INSTALL=%EXECUTABLE%"
set "PR_LOGPATH=%CATALINA_BASE%\logs"
set "PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar;%CATALINA_BASE%\bin\tomcat-juli.jar;%CATALINA_HOME%\bin\tomcat-juli.jar"
rem Set the server jvm from JAVA_HOME
set "PR_JVM=%JRE_HOME%\bin\server\jvm.dll"
if exist "%PR_JVM%" goto foundJvm
rem Set the client jvm from JAVA_HOME
set "PR_JVM=%JRE_HOME%\bin\client\jvm.dll"
if exist "%PR_JVM%" goto foundJvm
set PR_JVM=auto
:foundJvm
echo Using JVM: "%PR_JVM%"
"%EXECUTABLE%" //IS//%SERVICE_NAME% --StartClass org.apache.catalina.startup.Bootstrap --StopClass org.apache.catalina.startup.Bootstrap --StartParams start --StopParams stop
if not errorlevel 1 goto installed
echo Failed installing '%SERVICE_NAME%' service
goto end
:installed
rem Clear the environment variables. They are not needed any more.
set PR_DISPLAYNAME=
set PR_DESCRIPTION=
set PR_INSTALL=
set PR_LOGPATH=
set PR_CLASSPATH=
set PR_JVM=
rem Set extra parameters
"%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions "-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\endorsed" --StartMode jvm --StopMode jvm
rem More extra parameters
set "PR_LOGPATH=%CATALINA_BASE%\logs"
set PR_STDOUTPUT=auto
set PR_STDERROR=auto
"%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions "-Djava.io.tmpdir=%CATALINA_BASE%\temp;-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager;-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties" --JvmMs 128 --JvmMx 256
rem add owf specific java options
set J_OPTS=-Djavax.net.ssl.trustStore=%CATALINA_HOME%\certs\keystore.jks;-Djavax.net.ssl.keyStore=%CATALINA_HOME%\certs\keystore.jks;-Djavax.net.ssl.keyStorePassword=changeit;-XX:PermSize=128m;-XX:MaxPermSize=256m
"%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions "%J_OPTS%" --StartPath "%CATALINA_HOME%" --StopPath "%CATALINA_HOME%" --JvmMs 512 --JvmMx 1024
echo The service '%SERVICE_NAME%' has been installed.
:end
cd "%CURRENT_DIR%"
| Labanpz/owf-setup | apache-tomcat-7.0.21/bin/service.bat | bat | apache-2.0 | 6,739 |
REM makecss
sass main.scss ../www/app/webroot/css/styles.css
| marcohern/services | scss/makecss.bat | bat | apache-2.0 | 61 |
cd %curdir%
cd %curdir%/SuperPhone
ant debug
| SuperMapiClient/ApkBuilder | makeDebug.bat | bat | bsd-2-clause | 47 |
@echo off
setlocal ENABLEEXTENSIONS
REM --- START OF USER SETTINGS ---
REM Amount of memory to allocate to RTG. Use G suffix for gigabytes
REM If not set, will default to 90% of available RAM
REM for example, the following sets maximum memory to 4 GB
REM SET RTG_MEM=4G
SET RTG_MEM=
REM If RTG_MEM is not defined use this percentage of total RAM
SET RTG_MEM_PCT=90
REM Attempt to send crash logs to Real Time Genomics, true to enable, false to disable
SET RTG_TALKBACK=true
REM Enable simple usage logging, true to enable, false to disable. Default is no logging
SET RTG_USAGE=
REM Server URL when usage logging to server. Default is to use RTG hosted server.
SET RTG_USAGE_HOST=
REM If performing single-user file-based usage logging, this specifies the directory to log to.
SET RTG_USAGE_DIR=
REM List of optional fields to add to usage logging (when enabled).
REM If unset do not add any of these fields. (commandline may contain information
REM considered sensitive)
REM SET RTG_USAGE_OPTIONAL=username,hostname,commandline
SET RTG_USAGE_OPTIONAL=username,hostname
REM Proxy host if needed, blank otherwise
SET PROXY_HOST=
REM Proxy port if needed, blank otherwise
SET PROXY_PORT=
REM Directory in which to look for pipeline reference datasets
SET RTG_REFERENCES_DIR=
REM Directory in which to look for pipeline reference datasets
SET RTG_MODELS_DIR=
REM Additional JVM options (e.g.: "-Djava.io.tmpdir=XXYY -XX:+UseLargePages")
SET RTG_JAVA_OPTS=
REM Set the number of threads to use when not otherwise specified via command line flags.
REM The default behavior is to allocate one thread per machine core.
SET RTG_DEFAULT_THREADS=
REM --- END OF USER SETTINGS ---
REM location of RTG jar file
SET RTG_JAR="%~dp0RTG.jar"
REM minimum memory used for RTG talkback/usage and other calls
SET RTG_MIN_MEM=64M
REM path to java.exe
SET RTG_JAVA="%~dp0%jre\bin\java.exe"
REM check if we were started from windows explorer and provide a sensible message
echo %cmdcmdline% | find "cmd /c" >nul
if %ERRORLEVEL% NEQ 0 GOTO :start
SET PAUSE_ON_CLOSE=1
IF /I "%PROCESSOR_ARCHITECTURE%" NEQ "AMD64" GOTO :no64bit
echo RTG is a command line application, please follow the steps below
echo.
echo 1) Open windows command prompt
echo e.g. on Windows Vista / 7, press start, search "cmd.exe" and press enter
echo.
echo 2) Type "%~dp0%rtg.bat" to execute RTG command
echo.
echo For more information please refer to "%~dp0%RTGOperationsManual.pdf"
echo.
GOTO :no
:start
IF /I "%PROCESSOR_ARCHITECTURE%" NEQ "AMD64" GOTO :no64bit
SET ACCEPTED_NAME="%~dp0%.license_accepted"
SET ACCEPTED_USAGE_NAME="%~dp0%.usage_accepted"
SET EULA="%~dp0%LICENSE.txt"
IF EXIST %ACCEPTED_NAME% GOTO :setvars
REM Skip asking about the EULA if we havn't bundled it
IF NOT EXIST %EULA% GOTO :yes
more %EULA%
SET /P ANSWER=Do you agree to the terms and conditions (y/n)?
IF /i {%ANSWER%}=={y} (GOTO :yes)
IF /i {%ANSWER%}=={yes} (GOTO :yes)
echo You must agree with the license terms before you can use the software.
GOTO :no
:yes
echo %date% - %time% >%ACCEPTED_NAME%
REM First run only, perform test of crash-reporting
%RTG_JAVA% %PROXY_HOST% %PROXY_PORT% -Xmx%RTG_MIN_MEM% -cp %RTG_JAR% com.rtg.util.diagnostic.SimpleTalkback "Post-install talkback test"
IF %ERRORLEVEL% NEQ 0 (
echo Initial crash-report connectivity test did not succeed, probably due to firewall issues.
echo You will be asked to manually submit any error logs.
)
echo.
:usage
echo RTG has a facility to automatically send basic usage information to Real
echo Time Genomics. This does not contain confidential information such as
echo command-line parameters or dataset contents.
echo.
SET /P USAGE_ANSWER=Would you like to enable automatic simple usage reporting (y/n)?
echo.
IF /i {%USAGE_ANSWER%}=={y} (GOTO :usage_yes)
IF /i {%USAGE_ANSWER%}=={yes} (GOTO :usage_yes)
GOTO :usage_no
:usage_yes
<nul (SET /P FOO=true) >%ACCEPTED_USAGE_NAME%
GOTO :firstrun_end
:usage_no
echo Automatic usage reporting disabled.
echo.
<nul (SET /P FOO=false) >%ACCEPTED_USAGE_NAME%
GOTO :firstrun_end
:no64bit
echo RTG requires a 64 bit version of Windows
:no
IF DEFINED PAUSE_ON_CLOSE pause
exit /b 1
:firstrun_end
echo Initial configuration complete. Advanced user configuration is
echo available by editing settings in rtg.bat
echo.
:setvars
SET RTG_TALKBACK=-Dtalkback=%RTG_TALKBACK%
IF "%RTG_USAGE%" == "" (
IF EXIST %ACCEPTED_USAGE_NAME% SET /P USAGE_ANSWER=<%ACCEPTED_USAGE_NAME%
) ELSE (
SET USAGE_ANSWER=%RTG_USAGE%
)
SET RTG_USAGE=-Dusage=%USAGE_ANSWER%
IF NOT "%RTG_DEFAULT_THREADS%" == "" SET RTG_DEFAULT_THREADS=-Druntime.defaultThreads=%RTG_DEFAULT_THREADS%
IF NOT "%RTG_USAGE_HOST%" == "" SET RTG_USAGE=%RTG_USAGE% -Dusage.host=%RTG_USAGE_HOST%
IF NOT "%RTG_USAGE_DIR%" == "" SET RTG_USAGE=%RTG_USAGE% "-Dusage.dir=%RTG_USAGE_DIR%"
IF "%RTG_USAGE_OPTIONAL%" == "" (GOTO :skipoptional)
IF NOT "x%RTG_USAGE_OPTIONAL:username=x%" == "x%RTG_USAGE_OPTIONAL%" SET RTG_USAGE=%RTG_USAGE% -Dusage.log.username=true
IF NOT "x%RTG_USAGE_OPTIONAL:hostname=x%" == "x%RTG_USAGE_OPTIONAL%" SET RTG_USAGE=%RTG_USAGE% -Dusage.log.hostname=true
IF NOT "x%RTG_USAGE_OPTIONAL:commandline=x%" == "x%RTG_USAGE_OPTIONAL%" SET RTG_USAGE=%RTG_USAGE% -Dusage.log.commandline=true
:skipoptional
IF "%RTG_REFERENCES_DIR%" == "" (
SET RTG_REFERENCES_DIR="-Dreferences.dir=%~dp0%references"
) ELSE (
SET RTG_REFERENCES_DIR="-Dreferences.dir=%RTG_REFERENCES_DIR%"
)
IF "%RTG_MODELS_DIR%" == "" (
SET RTG_MODELS_DIR="-Dmodels.dir=%~dp0%models"
) ELSE (
SET RTG_MODELS_DIR="-Dmodels.dir=%RTG_MODELS_DIR%"
)
IF NOT "%PROXY_HOST%" == "" SET PROXY_HOST=-Dproxy.host=%PROXY_HOST%
IF NOT "%PROXY_PORT%" == "" SET PROXY_PORT=-Dproxy.port=%PROXY_PORT%
REM set memory
IF "%RTG_MEM%" == "" (
FOR /F "usebackq" %%A in (`CALL %RTG_JAVA% -cp %RTG_JAR% com.rtg.util.ChooseMemory %RTG_MEM_PCT%`) DO SET RTG_MEM=%%A
)
%RTG_JAVA% -Xmx%RTG_MEM% %RTG_JAVA_OPTS% %RTG_REFERENCES_DIR% %RTG_MODELS_DIR% %RTG_USAGE% %RTG_TALKBACK% %PROXY_HOST% %PROXY_PORT% %RTG_DEFAULT_THREADS% -jar %RTG_JAR% %*
:exit_zero
exit /b 0
| RealTimeGenomics/rtg-tools | installer/rtg.bat | bat | bsd-2-clause | 6,360 |
@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\pipcreate.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pipcreate.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 | Carreau/PipCreate | docs/make.bat | bat | bsd-3-clause | 6,464 |
cd Premake
premake5.exe vs2013 | KamilKZ/SimpleHTTPServer | premake-vs2013.bat | bat | mit | 30 |
cscript makehhp.wsf /z:%1 /c /f /e
IF exist %~n1\index.html cscript makehhp.wsf /d:e:\ytht\%~n1\ /c /e
| bmybbs/bmybbs | local_utl/unused/chm4win32/dochm.bat | bat | gpl-2.0 | 105 |
taskkill -im freecad.exe /f
@echo OFF
echo cadquery-freecad-module required
@echo ON
cd %~p0
start "" "d:\FreeCAD_015\bin\freecad" main_generator.py all
::pause | easyw/kicad-3d-models-in-freecad | cadquery/FCAD_script_generator/Resistor_THT/create_model-all.bat | bat | gpl-2.0 | 162 |
cmd_drivers/char/rtl8367b_asicdrv_acl.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,drivers/char/.rtl8367b_asicdrv_acl.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 -Idrivers/char/RTL8367R -D_LITTLE_ENDIAN -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(rtl8367b_asicdrv_acl)" -D"KBUILD_MODNAME=KBUILD_STR(rtl8367b_asicdrv_acl)" -c -o drivers/char/rtl8367b_asicdrv_acl.o drivers/char/rtl8367b_asicdrv_acl.c
deps_drivers/char/rtl8367b_asicdrv_acl.o := \
drivers/char/rtl8367b_asicdrv_acl.c \
$(wildcard include/config/rtl8367b/asicdrv/test.h) \
drivers/char/RTL8367R/rtl8367b_asicdrv_acl.h \
drivers/char/RTL8367R/rtl8367b_asicdrv.h \
drivers/char/RTL8367R/rtk_types.h \
drivers/char/RTL8367R/rtk_error.h \
drivers/char/RTL8367R/rtl8367b_reg.h \
$(wildcard include/config/rst/offset.h) \
$(wildcard include/config/rst/mask.h) \
$(wildcard include/config/dummy/15/offset.h) \
$(wildcard include/config/dummy/15/mask.h) \
$(wildcard include/config/sel/offset.h) \
$(wildcard include/config/sel/mask.h) \
drivers/char/RTL8367R/rtl8367b_base.h \
drivers/char/rtl8367b_asicdrv_acl.o: $(deps_drivers/char/rtl8367b_asicdrv_acl.o)
$(deps_drivers/char/rtl8367b_asicdrv_acl.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/drivers/char/.rtl8367b_asicdrv_acl.o.cmd | bat | gpl-2.0 | 1,803 |
@echo off
REM Licensed to the Apache Software Foundation (ASF) under one or more
REM contributor license agreements. See the NOTICE file distributed with
REM this work for additional information regarding copyright ownership.
REM The ASF licenses this file to You under the Apache License, Version 2.0
REM (the "License"); you may not use this file except in compliance with
REM the License. You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
set ZOOCFGDIR=%~dp0%..\conf
set ZOO_LOG_DIR=%~dp0%..\logs
set ZOO_LOG4J_PROP=INFO,CONSOLE
REM for sanity sake assume Java 1.6
REM see: http://java.sun.com/javase/6/docs/technotes/tools/windows/java.html
REM add the zoocfg dir to classpath
set CLASSPATH=%ZOOCFGDIR%
REM make it work in the release
SET CLASSPATH=%~dp0..\*;%~dp0..\lib\*;%CLASSPATH%
REM make it work for developers
SET CLASSPATH=%~dp0..\build\classes;%~dp0..\build\lib\*;%CLASSPATH%
set ZOOCFG=%ZOOCFGDIR%\zoo.cfg
@REM setup java environment variables
if not defined JAVA_HOME (
echo Error: JAVA_HOME is not set.
goto :eof
)
set JAVA_HOME=%JAVA_HOME:"=%
if not exist "%JAVA_HOME%"\bin\java.exe (
echo Error: JAVA_HOME is incorrectly set.
goto :eof
)
REM strip off trailing \ from JAVA_HOME or java does not start
if "%JAVA_HOME:~-1%" EQU "\" set "JAVA_HOME=%JAVA_HOME:~0,-1%"
set JAVA="%JAVA_HOME%"\bin\java
| ralgond/paxoskeeper | bin/zkEnv.cmd | bat | apache-2.0 | 1,713 |
@setlocal enabledelayedexpansion
REM Parse Arguments.
set RoslynRoot=%~dp0
set BuildConfiguration=Debug
:ParseArguments
if "%1" == "" goto :DoneParsing
if /I "%1" == "/?" call :Usage && exit /b 1
if /I "%1" == "/debug" set BuildConfiguration=Debug&&shift&& goto :ParseArguments
if /I "%1" == "/release" set BuildConfiguration=Release&&shift&& goto :ParseArguments
goto :Usage && exit /b 1
:DoneParsing
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
REM Build the compiler so we can self host it for the full build
src\.nuget\NuGet.exe restore %RoslynRoot%/src/Toolset.sln -packagesdirectory packages
msbuild /nologo /v:m /m %RoslynRoot%/src/Compilers/Core/VBCSCompiler/VBCSCompiler.csproj /p:Configuration=%BuildConfiguration%
msbuild /nologo /v:m /m %RoslynRoot%/src/Compilers/CSharp/csc2/csc2.csproj /p:Configuration=%BuildConfiguration%
msbuild /nologo /v:m /m %RoslynRoot%/src/Compilers/VisualBasic/vbc2/vbc2.csproj /p:Configuration=%BuildConfiguration%
mkdir %RoslynRoot%\Binaries\Bootstrap
move Binaries\%BuildConfiguration%\* %RoslynRoot%\Binaries\Bootstrap
msbuild /v:m /t:Clean src/Toolset.sln /p:Configuration=%BuildConfiguration%
taskkill /F /IM vbcscompiler.exe
msbuild /v:m /m /p:BootstrapBuildPath=%RoslynRoot%\Binaries\Bootstrap BuildAndTest.proj /p:CIBuild=true /p:Configuration=%BuildConfiguration%
if ERRORLEVEL 1 (
taskkill /F /IM vbcscompiler.exe
echo Build failed
exit /b 1
)
REM Kill any instances of VBCSCompiler.exe to release locked files;
REM otherwise future CI runs may fail while trying to delete those files.
taskkill /F /IM vbcscompiler.exe
REM It is okay and expected for taskkill to fail (it's a cleanup routine). Ensure
REM caller sees successful exit.
exit /b 0
:Usage
@echo Usage: cibuild.cmd [/debug^|/release]
@echo /debug Perform debug build. This is the default.
@echo /release Perform release build
@goto :eof | furesoft/roslyn | cibuild.cmd | bat | apache-2.0 | 1,911 |
@echo off
set NaturalDocsParams=
rem Shift and loop so we can get more than nine parameters.
rem This is especially important if we have spaces in file names.
:MORE
if "%1"=="" goto NOMORE
set NaturalDocsParams=%NaturalDocsParams% %1
shift
goto MORE
:NOMORE
perl NaturalDocs %NaturalDocsParams%
set NaturalDocsParams= | jumpinjackie/fusion-multimap | utils/NaturalDocs-1.4/NaturalDocs.bat | bat | mit | 322 |
"C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" ..\Source\OxyPlot.WPF_NET35.sln /p:Configuration=Release | luiseduardohdbackup/oxyplot-v2 | Build/BuildRelease_WPF35.cmd | bat | mit | 116 |
@echo off
SetLocal EnableDelayedExpansion
set sourceDir=%1
CALL :dequote sourceDir
if "%sourceDir%"=="" goto :NOVARS
echo Performing Swig build
set swigPath=%2
CALL :dequote swigPath
if "%swigPath%"=="" goto :SKIPADDSLASH
if "%swigPath:~-1%"=="\" goto :SKIPADDSLASH
SET swigPath=%swigPath%\
:SKIPADDSLASH
del /F /Q SwigOutput\SwigCSharpOutput\*
set option=%4
CALL :dequote option
set dependentDir=%3
CALL :dequote dependentDir
if "%option%"=="MYSQL_AUTOPATCHER" goto :MYSQLAUTOPATCHER
echo Unsupported option
GOTO END
:MYSQLAUTOPATCHER
%swigPath%swig -c++ -csharp -namespace RakNet -I"%1" -I"SwigInterfaceFiles" -I"%3" -DSWIG_ADDITIONAL_AUTOPATCHER_MYSQL -outdir SwigOutput\SwigCSharpOutput -o SwigOutput\CplusDLLIncludes\RakNet_wrap.cxx SwigInterfaceFiles\RakNet.i
:ENDSWIG
if errorlevel 1 GOTO :SWIGERROR
echo Swig build complete
GOTO END
:NOVARS
echo Invalid number of parameters, Usage: MakeSwigWithExtras.bat ^<Directory^> ^<Swig location or ""^> ^<Dependent Extensions Path^> ^<Option1 Example: MYSQL_AUTOPATCHER^>
PAUSE
GOTO END
:SWIGERROR
echo Swig had an error during build
:END
GOTO FILEEND
:DeQuote
SET _DeQuoteVar=%1
CALL SET _DeQuoteString=%%!_DeQuoteVar!%%
IF [!_DeQuoteString:~0^,1!]==[^"] (
IF [!_DeQuoteString:~-1!]==[^"] (
SET _DeQuoteString=!_DeQuoteString:~1,-1!
) ELSE (GOTO :EOF)
) ELSE (GOTO :EOF)
SET !_DeQuoteVar!=!_DeQuoteString!
SET _DeQuoteVar=
SET _DeQuoteString=
GOTO :EOF
:FILEEND | JayStilla/AIEComplexSystems | dep/RakNet/DependentExtensions/Swig/MakeSwigWithExtras.bat | bat | mit | 1,415 |
@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=_%EC2_HOME%
if "%CHK_HOME:"=%" == "_" goto HOME_MISSING
"%EC2_HOME:"=%\bin\ec2-cmd" CreateSnapshot %*
goto DONE
:HOME_MISSING
echo EC2_HOME is not set
exit /b 1
:DONE
| barnyard/pi | p2p-api/etc/ec2-api-tools-1.3-30349/bin/ec2addsnap.cmd | bat | apache-2.0 | 474 |
@echo off
echo Arguments:
echo 1: softdevice or fruitymesh or erase or reset (what to flash)
echo 2: name of textfile which contains newline seperated segger ids (or current.txt to flash all connected devices)
echo 3: Debug or Release (The folder from which to take the application hex)
echo 4: NRF51 or NRF52 (device family to flash)
REM setting some defaults
SET TYPE=fruitymesh
SET IDS=dongle_segger_ids.txt
SET BUILD=Debug
SET FAMILY=NRF51
IF NOT [%1] == [] SET TYPE=%1
IF NOT [%2] == [] SET IDS=%2
IF NOT [%3] == [] SET BUILD=%3
IF NOT [%4] == [] SET FAMILY=%4
SET EXEC_FOLDER=C:\nrf\projects\fruitymesh\deploy
SET NRFJPROG_PATH=C:\nrf\tools\nrf_tools\nrfjprog.exe
SET FRUITYMESH_HEX=C:\nrf\projects\fruitymesh\%BUILD%\FruityMesh.hex
SET SOFTDEVICE_HEX=C:\nrf\softdevices\sd130_1.0.0-prod\s130_nrf51_1.0.0_softdevice.hex
echo.
echo.
echo Parallel flashing on all dongles in %IDS% with %TYPE% and Build %BUILD%
echo.
echo.
echo IDs:
if %IDS% == current.txt (
REM Get currently connected IDs
%NRFJPROG_PATH% --ids > current.txt
)
cd %EXEC_FOLDER%
for /f "tokens=* delims=" %%x in (%IDS%) do (
echo | set /p dummyName=%%x,
if %TYPE% == fruitymesh (
start /min cmd /C "%NRFJPROG_PATH% -s %%x --program %FRUITYMESH_HEX% --sectorerase --family %FAMILY% && %NRFJPROG_PATH% -s %%x --reset"
)
if %TYPE% == softdevice (
start /min %NRFJPROG_PATH% -s %%x --program %SOFTDEVICE_HEX% --chiperase --family %FAMILY%
)
if %TYPE% == full (
start /min cmd /C "%NRFJPROG_PATH% -s %%x --program %SOFTDEVICE_HEX% --chiperase --family %FAMILY% && %NRFJPROG_PATH% -s %%x --program %FRUITYMESH_HEX% --family %FAMILY% && %NRFJPROG_PATH% -s %%x --reset"
)
if %TYPE% == erase (
start /min nrfjprog -s %%x --eraseall --family %FAMILY%
)
if %TYPE% == reset (
start /min nrfjprog -s %%x --reset --family %FAMILY%
)
)
echo.
echo.
echo "Flashing finished" | makerdiary/meshlight | deploy/flash.bat | bat | gpl-3.0 | 1,885 |
@if not defined _echo @echo off
setlocal EnableDelayedExpansion
set __ThisScriptShort=%0
if /i "%1" == "/?" goto HelpVarCall
if /i "%1" == "-?" goto HelpVarCall
if /i "%1" == "/h" goto HelpVarCall
if /i "%1" == "-h" goto HelpVarCall
if /i "%1" == "/help" goto HelpVarCall
if /i "%1" == "-help" goto HelpVarCall
if defined BUILDVARS_DONE goto :AfterVarSetup
goto :NormalVarCall
:HelpVarCall
call %~dp0buildvars-setup.cmd -help
exit /b 1
:NormalVarCall
call %~dp0buildvars-setup.cmd %*
IF NOT ERRORLEVEL 1 goto AfterVarSetup
echo Setting build variables failed.
exit /b %ERRORLEVEL%
:AfterVarSetup
%_msbuildexe% "%__ProjectDir%\pkg\packages.proj" /m /nologo /flp:v=diag;LogFile=build-packages.log /p:NuPkgRid=win7-x64 /p:OSGroup=%__BuildOS% /p:Configuration=%__BuildType% /p:Platform=%__BuildArch% %__ExtraMsBuildParams%
exit /b %ERRORLEVEL% | sandreenko/corert | buildscripts/build-packages.cmd | bat | mit | 860 |
@echo off
set OLDDIR=%CD%
cd /d %~dp0
for /f "delims=" %%a in ('git describe --tags --long') do @set VERSION=%%a
for /f "delims=" %%a in ('git describe --tags --abbrev^=0') do @set TAG=%%a-
for /f "delims=" %%a in ('git rev-parse --abbrev-ref HEAD') do @set BRANCH=%%a
REM remove anotated tag from VERSION
setlocal enabledelayedexpansion
call set VERSION=%%VERSION:!TAG!=%%
setlocal disabledelayedexpansion
echo #define GPAC_GIT_REVISION "%VERSION%-%BRANCH%" > test.h
if not exist include\gpac\revision.h goto create
ECHO n|COMP test.h include\gpac\revision.h > nul
if errorlevel 1 goto create
DEL test.h
goto done
:create
MOVE /Y test.h include\gpac\revision.h
:done
cd /d %OLDDIR%
exit/b
| Bevara/Access-open | version.bat | bat | lgpl-2.1 | 693 |
mkdir "%APPDATA%\JetBrains\ReSharper\v6.1\vs10.0\Plugins" 2> NUL
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v6.1\vs10.0\Plugins"
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v6.1\vs10.0\Plugins" > NUL
copy /y Machine.Specifications.ReSharperRunner.6.1.dll "%APPDATA%\JetBrains\ReSharper\v6.1\vs10.0\Plugins"
copy /y Machine.Specifications.ReSharperRunner.6.1.pdb "%APPDATA%\JetBrains\ReSharper\v6.1\vs10.0\Plugins" > NUL | ArnoldZokas/mvcnavigation | source/packages/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.1 - VS2010.bat | bat | bsd-3-clause | 464 |
:: Created by npm, please don't edit manually.
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\stylus\bin\stylus" %*
) ELSE (
node "%~dp0\..\stylus\bin\stylus" %*
) | wbeard/csi_public | styles/node_modules/.bin/stylus.cmd | bat | apache-2.0 | 178 |
conda list -p "%PREFIX%" --canonical
if errorlevel 1 exit 1
for /f "delims=" %%i in ('conda list -p "%PREFIX%" --canonical') do set condalist=%%i
if errorlevel 1 exit 1
echo "%condalist%"
if not "%condalist%"=="conda-build-test-build-string-1.0-abc" exit 1
cat "%PREFIX%\conda-meta\conda-build-test-build-string-1.0-abc.json"
if errorlevel 1 exit 1
cat "%PREFIX%\conda-meta\conda-build-test-build-string-1.0-abc.json" | grep '"build_number": 0'
if errorlevel 1 exit 1
cat "%PREFIX%\conda-meta\conda-build-test-build-string-1.0-abc.json" | grep '"build": "abc"'
if errorlevel 1 exit 1
| takluyver/conda-build | tests/test-recipes/metadata/build_string/run_test.bat | bat | bsd-3-clause | 584 |
cd Setup
call BuildInstallers.VS2015.cmd | ozim/gitextensions | GitExtensions.VS2015.build.cmd | bat | gpl-3.0 | 40 |
rmdir /S /Q build-vc2015-zip-64
mkdir build-vc2015-zip-64
cd build-vc2015-zip-64
cmake ..\source -G "Visual Studio 14 Win64" -DMRN_GROONGA_EMBED=OFF -DMRN_GROONGA_NORMALIZER_MYSQL_EMBED=OFF > config.log
cmake --build . --config RelWithDebInfo > build.log
cmake --build . --config RelWithDebInfo --target package > zip.log
move *.zip ..\
cd ..
| flynn1973/mariadb-aix | storage/mroonga/packages/windows/build-vc2015-zip-64.bat | bat | lgpl-2.1 | 343 |
@echo off
setlocal
SET TORQUEDIR=%2
IF NOT DEFINED TORQUEDIR SET TORQUEDIR=..\..
%TORQUEDIR%\engine\bin\php\php %TORQUEDIR%\Tools\projectGenerator\projectGenerator.php buildFiles/config/project.conf %TORQUEDIR%
endlocal
if X%1 == X (
echo.
echo REMEMBER: Restart VisualStudio if you are running it to be sure the new
echo project files are loaded! See docs for more info!
echo.
pause
)
| figment/Untorque | generateProjects.bat | bat | mit | 417 |
call "%OSGEO4W_ROOT%\bin\o4w_env.bat"
path %PATH%;%OSGEO4W_ROOT%\apps\@package@\bin
set QGIS_PREFIX_PATH=%OSGEO4W_ROOT:\=/%/apps/@package@
"%OSGEO4W_ROOT%\apps\@package@\crssync"
| dracos/QGIS | ms-windows/osgeo4w/postinstall-common.bat | bat | gpl-2.0 | 183 |
:: Licensed to the Apache Software Foundation (ASF) under one
:: or more contributor license agreements. See the NOTICE file
:: distributed with this work for additional information
:: regarding copyright ownership. The ASF licenses this file
:: to you under the Apache License, Version 2.0 (the
:: "License"); you may not use this file except in compliance
:: with the License. You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing,
:: software distributed under the License is distributed on an
:: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
:: KIND, either express or implied. See the License for the
:: specific language governing permissions and limitations
:: under the License.
@ECHO OFF
SET script="%~dp0apple_osx_version"
IF EXIST %script% (
node %script% %*
) ELSE (
ECHO.
ECHO ERROR: Could not find 'apple_osx_version' script in 'bin' folder, aborting...>&2
EXIT /B 1
)
| CraigDawson/ble-weather-station-enhanced | phonegap/node_modules/cordova-ios/bin/apple_osx_version.bat | bat | mit | 1,008 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\extract-zip\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\extract-zip\cli.js" %*
) | komitoff/Software-Technologies | www.Electron.js/node_modules/.bin/extract-zip.cmd | bat | mit | 178 |
@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
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\geocodertools.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\geocodertools.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
| MartinThoma/geocodertools | docs/make.bat | bat | mit | 6,724 |
java -jar bos-missiongenerator-1.0-SNAPSHOT.war | eriklupander/bos-missionbuilder | bos-smb.bat | bat | mit | 47 |
gulp rjs & gulp production & gulp critical | nathanedwards/theneverpress | build.bat | bat | mit | 42 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\nlpipe.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\nlpipe.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
| vanatteveldt/nlpipe | docs/make.bat | bat | mit | 7,249 |
@setlocal
@if "%~1x" == "x" (
@echo Usage: "message" in-file [in-file2 ...]
@exit /b 1
)
@set TMPMSG=%~1
@shift
@set TMPFIL=%1
@if NOT EXIST %1 (
@echo Can NOT locate file %1
@exit /b 1
)
@shift
:RPT
@if "%~1x" == "x" goto GOTCMD
@if NOT EXIST %1 (
@echo Can NOT locate file %1
@exit /b 1
)
@set TMPFIL=%TMPFIL% %1
@shift
@goto RPT
:GOTCMD
@echo Will do 'call git add %TMPFIL%'
@echo Followed by 'call git commit -m "%TMPMSG%" %TMPFIL%'
@pause
call git add %TMPFIL%
@if ERRORLEVEL 1 (
@echo Failed to add %TMPFIL%!
@exit /b 1
)
call git commit -m "%TMPMSG%" %TMPFIL%
@if ERRORLEVEL 1 (
@echo Commit failed...
@exit /b 1
)
@echo.
@echo Done "%TMPMSG%" %TMPFIL%
@REM eof
| geoffmcl/tidy-test | test/input5/add2.bat | bat | gpl-2.0 | 680 |
cmd_drivers/i2c/built-in.o := /home/azure/Kernel/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/i2c/built-in.o drivers/i2c/i2c-boardinfo.o drivers/i2c/i2c-core.o drivers/i2c/i2c-dev.o drivers/i2c/busses/built-in.o drivers/i2c/chips/built-in.o drivers/i2c/algos/built-in.o
| denzfarid/rndc-kernel | drivers/i2c/.built-in.o.cmd | bat | gpl-2.0 | 289 |
cmd_drivers/media/dvb/frontends/si21xx.ko := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -T /home/envy/kernel/shinano-sirius_msm8974abpro/scripts/module-common.lds --build-id -o drivers/media/dvb/frontends/si21xx.ko drivers/media/dvb/frontends/si21xx.o drivers/media/dvb/frontends/si21xx.mod.o
| Envious-Data/shinano-sirius_msm8974abpro | drivers/media/dvb/frontends/.si21xx.ko.cmd | bat | gpl-2.0 | 334 |
cmd_sound/pci/rme9652/built-in.o := rm -f sound/pci/rme9652/built-in.o; /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ar rcsD sound/pci/rme9652/built-in.o
| JoinTheRealms/TF700-dualboot-stockbased | sound/pci/rme9652/.built-in.o.cmd | bat | gpl-2.0 | 203 |
cmd_scripts/genksyms/parse.o := gcc -Wp,-MD,scripts/genksyms/.parse.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -Wno-uninitialized -Iscripts/genksyms -c -o scripts/genksyms/parse.o scripts/genksyms/parse.c
source_scripts/genksyms/parse.o := scripts/genksyms/parse.c
deps_scripts/genksyms/parse.o := \
/usr/include/assert.h \
/usr/include/features.h \
/usr/include/stdc-predef.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-64.h \
/usr/include/stdlib.h \
/usr/lib/gcc/x86_64-redhat-linux/4.7.2/include/stddef.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/endian.h \
/usr/include/bits/endian.h \
/usr/include/bits/byteswap.h \
/usr/include/bits/types.h \
/usr/include/bits/typesizes.h \
/usr/include/bits/byteswap-16.h \
/usr/include/sys/types.h \
/usr/include/time.h \
/usr/include/sys/select.h \
/usr/include/bits/select.h \
/usr/include/bits/sigset.h \
/usr/include/bits/time.h \
/usr/include/sys/sysmacros.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/alloca.h \
/usr/include/string.h \
/usr/include/xlocale.h \
/usr/include/bits/string.h \
/usr/include/bits/string2.h \
scripts/genksyms/genksyms.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.7.2/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/include/bits/stdio.h \
scripts/genksyms/parse.o: $(deps_scripts/genksyms/parse.o)
$(deps_scripts/genksyms/parse.o):
| 0xD34D/kernel_amazon_tate | scripts/genksyms/.parse.o.cmd | bat | gpl-2.0 | 1,668 |
cmd_drivers/base/module.o := arm-linux-gnueabi-gcc -Wp,-MD,drivers/base/.module.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(module)" -D"KBUILD_MODNAME=KBUILD_STR(module)" -c -o drivers/base/module.o drivers/base/module.c
deps_drivers/base/module.o := \
drivers/base/module.c \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/devtmpfs.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/ioport.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/cpu/32v6k.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/msm.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
include/linux/linkage.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/linux/sysfs.h \
$(wildcard include/config/sysfs.h) \
include/linux/errno.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic-long.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/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/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_debug.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/linux/kref.h \
include/linux/wait.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \
include/linux/klist.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
include/linux/percpu.h \
$(wildcard include/config/have/legacy/per/cpu/area.h) \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/debug/kmemleak.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slob_def.h \
include/linux/pfn.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/semaphore.h \
/home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
drivers/base/base.h \
$(wildcard include/config/sys/hypervisor.h) \
drivers/base/module.o: $(deps_drivers/base/module.o)
$(deps_drivers/base/module.o):
| b8e5n/KTG-kernel_es209ra | drivers/base/.module.o.cmd | bat | gpl-2.0 | 15,499 |
deps_config := \
lib/xz/Kconfig \
lib/Kconfig \
drivers/crypto/caam/Kconfig \
drivers/crypto/Kconfig \
crypto/async_tx/Kconfig \
crypto/Kconfig \
security/integrity/ima/Kconfig \
security/apparmor/Kconfig \
security/tomoyo/Kconfig \
security/smack/Kconfig \
security/selinux/Kconfig \
security/Kconfig \
lib/Kconfig.kmemcheck \
lib/Kconfig.kgdb \
samples/Kconfig \
kernel/trace/Kconfig \
mm/Kconfig.debug \
lib/Kconfig.debug \
arch/arm/Kconfig.debug \
fs/dlm/Kconfig \
fs/nls/Kconfig \
fs/partitions/Kconfig \
fs/9p/Kconfig \
fs/afs/Kconfig \
fs/coda/Kconfig \
fs/ncpfs/Kconfig \
fs/cifs/Kconfig \
fs/ceph/Kconfig \
net/sunrpc/Kconfig \
fs/nfsd/Kconfig \
fs/nfs/Kconfig \
fs/exofs/Kconfig \
fs/ufs/Kconfig \
fs/sysv/Kconfig \
fs/pstore/Kconfig \
fs/romfs/Kconfig \
fs/qnx4/Kconfig \
fs/hpfs/Kconfig \
fs/omfs/Kconfig \
fs/minix/Kconfig \
fs/freevxfs/Kconfig \
fs/squashfs/Kconfig \
fs/cramfs/Kconfig \
fs/logfs/Kconfig \
fs/ubifs/Kconfig \
fs/jffs2/Kconfig \
fs/yaffs2/Kconfig \
fs/efs/Kconfig \
fs/bfs/Kconfig \
fs/befs/Kconfig \
fs/hfsplus/Kconfig \
fs/hfs/Kconfig \
fs/ecryptfs/Kconfig \
fs/affs/Kconfig \
fs/adfs/Kconfig \
fs/configfs/Kconfig \
fs/sysfs/Kconfig \
fs/proc/Kconfig \
fs/ntfs/Kconfig \
fs/fat/Kconfig \
fs/udf/Kconfig \
fs/isofs/Kconfig \
fs/cachefiles/Kconfig \
fs/fscache/Kconfig \
fs/fuse/Kconfig \
fs/autofs4/Kconfig \
fs/quota/Kconfig \
fs/notify/fanotify/Kconfig \
fs/notify/inotify/Kconfig \
fs/notify/dnotify/Kconfig \
fs/notify/Kconfig \
fs/nilfs2/Kconfig \
fs/btrfs/Kconfig \
fs/ocfs2/Kconfig \
fs/gfs2/Kconfig \
fs/xfs/Kconfig \
fs/jfs/Kconfig \
fs/reiserfs/Kconfig \
fs/jbd2/Kconfig \
fs/jbd/Kconfig \
fs/ext4/Kconfig \
fs/ext3/Kconfig \
fs/ext2/Kconfig \
fs/Kconfig \
drivers/topeet/Kconfig \
drivers/mtk_wcn_combo/Kconfig \
drivers/unaplus/Kconfig \
drivers/smm6260_phone/Kconfig \
drivers/clocksource/Kconfig \
drivers/hwspinlock/Kconfig \
drivers/clk/Kconfig \
drivers/platform/x86/Kconfig \
drivers/platform/Kconfig \
drivers/staging/nvec/Kconfig \
drivers/staging/mei/Kconfig \
drivers/staging/altera-stapl/Kconfig \
drivers/staging/gma500/Kconfig \
drivers/staging/ste_rmi4/Kconfig \
drivers/staging/cptm1217/Kconfig \
drivers/staging/speakup/Kconfig \
drivers/staging/intel_sst/Kconfig \
drivers/staging/ft1000/Kconfig \
drivers/staging/bcm/Kconfig \
drivers/staging/keucr/Kconfig \
drivers/staging/ath6kl/Kconfig \
drivers/staging/sbe-2t3e3/Kconfig \
drivers/staging/westbridge/astoria/gadget/Kconfig \
drivers/staging/westbridge/astoria/block/Kconfig \
drivers/staging/westbridge/astoria/device/Kconfig \
drivers/staging/westbridge/astoria/Kconfig \
drivers/staging/westbridge/Kconfig \
drivers/staging/quickstart/Kconfig \
drivers/staging/tidspbridge/Kconfig \
drivers/staging/solo6x10/Kconfig \
drivers/staging/easycap/Kconfig \
drivers/staging/lirc/Kconfig \
drivers/staging/msm/Kconfig \
drivers/staging/xgifb/Kconfig \
drivers/staging/cxt1e1/Kconfig \
drivers/staging/crystalhd/Kconfig \
drivers/staging/dt3155v4l/Kconfig \
drivers/staging/sm7xx/Kconfig \
drivers/staging/wlags49_h25/Kconfig \
drivers/staging/wlags49_h2/Kconfig \
drivers/staging/zcache/Kconfig \
drivers/staging/zram/Kconfig \
drivers/staging/cs5535_gpio/Kconfig \
drivers/staging/iio/trigger/Kconfig \
drivers/staging/iio/resolver/Kconfig \
drivers/staging/iio/meter/Kconfig \
drivers/staging/iio/magnetometer/Kconfig \
drivers/staging/iio/light/Kconfig \
drivers/staging/iio/imu/Kconfig \
drivers/staging/iio/gyro/Kconfig \
drivers/staging/iio/dds/Kconfig \
drivers/staging/iio/dac/Kconfig \
drivers/staging/iio/addac/Kconfig \
drivers/staging/iio/adc/Kconfig \
drivers/staging/iio/accel/Kconfig \
drivers/staging/iio/Kconfig \
drivers/staging/sep/Kconfig \
drivers/staging/vme/boards/Kconfig \
drivers/staging/vme/devices/Kconfig \
drivers/staging/vme/bridges/Kconfig \
drivers/staging/vme/Kconfig \
drivers/staging/hv/Kconfig \
drivers/staging/vt6656/Kconfig \
drivers/staging/vt6655/Kconfig \
drivers/staging/quatech_usb2/Kconfig \
drivers/staging/spectra/Kconfig \
drivers/staging/serqt_usb2/Kconfig \
drivers/staging/octeon/Kconfig \
drivers/gpu/drm/nouveau/Kconfig \
drivers/gpu/drm/vmwgfx/Kconfig \
drivers/staging/line6/Kconfig \
drivers/staging/phison/Kconfig \
drivers/staging/pohmelfs/Kconfig \
drivers/staging/android/Kconfig \
drivers/staging/frontier/Kconfig \
drivers/staging/rts_pstor/Kconfig \
drivers/staging/rtl8712/Kconfig \
drivers/staging/rtl8192e/Kconfig \
drivers/staging/rtl8192u/Kconfig \
drivers/staging/rtl8187se/Kconfig \
drivers/staging/panel/Kconfig \
drivers/staging/asus_oled/Kconfig \
drivers/staging/olpc_dcon/Kconfig \
drivers/staging/comedi/Kconfig \
drivers/staging/brcm80211/Kconfig \
drivers/staging/echo/Kconfig \
drivers/staging/wlan-ng/Kconfig \
drivers/staging/winbond/Kconfig \
drivers/staging/usbip/Kconfig \
drivers/staging/cxd2099/Kconfig \
drivers/staging/tm6000/Kconfig \
drivers/staging/cx25821/Kconfig \
drivers/staging/go7007/Kconfig \
drivers/staging/slicoss/Kconfig \
drivers/staging/et131x/Kconfig \
drivers/staging/generic_serial/Kconfig \
drivers/staging/tty/Kconfig \
drivers/staging/Kconfig \
drivers/xen/Kconfig \
drivers/vlynq/Kconfig \
drivers/uio/Kconfig \
drivers/auxdisplay/Kconfig \
drivers/dca/Kconfig \
drivers/dma/Kconfig \
drivers/rtc/Kconfig \
drivers/edac/Kconfig \
drivers/infiniband/ulp/iser/Kconfig \
drivers/infiniband/ulp/srp/Kconfig \
drivers/infiniband/ulp/ipoib/Kconfig \
drivers/infiniband/hw/nes/Kconfig \
drivers/infiniband/hw/mlx4/Kconfig \
drivers/infiniband/hw/cxgb4/Kconfig \
drivers/infiniband/hw/cxgb3/Kconfig \
drivers/infiniband/hw/amso1100/Kconfig \
drivers/infiniband/hw/ehca/Kconfig \
drivers/infiniband/hw/qib/Kconfig \
drivers/infiniband/hw/ipath/Kconfig \
drivers/infiniband/hw/mthca/Kconfig \
drivers/infiniband/Kconfig \
drivers/accessibility/Kconfig \
drivers/switch/Kconfig \
drivers/nfc/Kconfig \
drivers/leds/Kconfig \
drivers/memstick/host/Kconfig \
drivers/memstick/core/Kconfig \
drivers/memstick/Kconfig \
drivers/mmc/host/Kconfig \
drivers/mmc/card/Kconfig \
drivers/mmc/core/Kconfig \
drivers/mmc/Kconfig \
drivers/uwb/Kconfig \
drivers/usb/otg/Kconfig \
drivers/usb/gadget/Kconfig \
drivers/usb/atm/Kconfig \
drivers/usb/misc/sisusbvga/Kconfig \
drivers/usb/misc/Kconfig \
drivers/usb/serial/Kconfig \
drivers/usb/image/Kconfig \
drivers/usb/storage/Kconfig \
drivers/usb/class/Kconfig \
drivers/usb/renesas_usbhs/Kconfig \
drivers/usb/musb/Kconfig \
drivers/usb/host/Kconfig \
drivers/usb/wusbcore/Kconfig \
drivers/usb/mon/Kconfig \
drivers/usb/core/Kconfig \
drivers/usb/Kconfig \
drivers/hid/usbhid/Kconfig \
drivers/hid/Kconfig \
sound/oss/Kconfig \
sound/soc/codecs/Kconfig \
sound/soc/txx9/Kconfig \
sound/soc/tegra/Kconfig \
sound/soc/sh/Kconfig \
sound/soc/s6000/Kconfig \
sound/soc/samsung/srp_ulp/Kconfig \
sound/soc/samsung/srp_alp/Kconfig \
sound/soc/samsung/Kconfig \
sound/soc/pxa/Kconfig \
sound/soc/mid-x86/Kconfig \
sound/soc/kirkwood/Kconfig \
sound/soc/omap/Kconfig \
sound/soc/nuc900/Kconfig \
sound/soc/jz4740/Kconfig \
sound/soc/imx/Kconfig \
sound/soc/fsl/Kconfig \
sound/soc/ep93xx/Kconfig \
sound/soc/davinci/Kconfig \
sound/soc/blackfin/Kconfig \
sound/soc/au1x/Kconfig \
sound/soc/atmel/Kconfig \
sound/soc/Kconfig \
sound/parisc/Kconfig \
sound/sparc/Kconfig \
sound/pcmcia/Kconfig \
sound/firewire/Kconfig \
sound/usb/Kconfig \
sound/sh/Kconfig \
sound/mips/Kconfig \
sound/spi/Kconfig \
sound/atmel/Kconfig \
sound/arm/Kconfig \
sound/aoa/soundbus/Kconfig \
sound/aoa/codecs/Kconfig \
sound/aoa/fabrics/Kconfig \
sound/aoa/Kconfig \
sound/ppc/Kconfig \
sound/pci/hda/Kconfig \
sound/pci/Kconfig \
sound/isa/Kconfig \
sound/drivers/Kconfig \
sound/core/seq/Kconfig \
sound/core/Kconfig \
sound/oss/dmasound/Kconfig \
sound/Kconfig \
drivers/video/logo/Kconfig \
drivers/video/console/Kconfig \
drivers/video/display/Kconfig \
drivers/video/backlight/Kconfig \
drivers/video/omap2/displays/Kconfig \
drivers/video/omap2/omapfb/Kconfig \
drivers/video/omap2/dss/Kconfig \
drivers/video/omap2/Kconfig \
drivers/video/omap/Kconfig \
drivers/video/geode/Kconfig \
drivers/video/samsung/Kconfig \
drivers/gpu/vithar/Kconfig \
drivers/gpu/ion/Kconfig \
drivers/gpu/stub/Kconfig \
drivers/gpu/drm/radeon/Kconfig \
drivers/gpu/drm/Kconfig \
drivers/gpu/vga/Kconfig \
drivers/char/agp/Kconfig \
drivers/video/Kconfig \
drivers/media/dvb/frontends/Kconfig \
drivers/media/dvb/ngene/Kconfig \
drivers/media/dvb/mantis/Kconfig \
drivers/media/dvb/pt1/Kconfig \
drivers/media/dvb/firewire/Kconfig \
drivers/media/dvb/dm1105/Kconfig \
drivers/media/dvb/pluto2/Kconfig \
drivers/media/dvb/bt8xx/Kconfig \
drivers/media/dvb/b2c2/Kconfig \
drivers/media/dvb/siano/Kconfig \
drivers/media/dvb/ttusb-dec/Kconfig \
drivers/media/dvb/ttusb-budget/Kconfig \
drivers/media/dvb/dvb-usb/Kconfig \
drivers/media/dvb/ttpci/Kconfig \
drivers/media/dvb/Kconfig \
drivers/media/radio/wl128x/Kconfig \
drivers/media/radio/si470x/Kconfig \
drivers/media/radio/Kconfig \
drivers/media/video/exynos/fimc-is-mc/Kconfig \
drivers/media/video/exynos/gsc/Kconfig \
drivers/media/video/exynos/fimc-is/Kconfig \
drivers/media/video/exynos/rotator/Kconfig \
drivers/media/video/exynos/tv/Kconfig \
drivers/media/video/exynos/mipi-csis/Kconfig \
drivers/media/video/exynos/fimc-lite/Kconfig \
drivers/media/video/exynos/mdev/Kconfig \
drivers/media/video/exynos/Kconfig \
drivers/media/video/samsung/jpeg_v2x/Kconfig \
drivers/media/video/samsung/jpeg/Kconfig \
drivers/media/video/samsung/mali_ics/Kconfig \
drivers/media/video/samsung/ump_ics/Kconfig \
drivers/media/video/samsung/mali_gb/Kconfig \
drivers/media/video/samsung/ump_gb/Kconfig \
drivers/media/video/samsung/fimg2d_android/Kconfig \
drivers/media/video/samsung/fimg2d4x/Kconfig \
drivers/media/video/samsung/fimg2d3x/Kconfig \
drivers/media/video/samsung/mfc5x/Kconfig \
drivers/media/video/samsung/tvout/Kconfig \
drivers/media/video/samsung/fimc/Kconfig \
drivers/media/video/samsung/Kconfig \
drivers/media/video/pwc/Kconfig \
drivers/media/video/sn9c102/Kconfig \
drivers/media/video/et61x251/Kconfig \
drivers/media/video/usbvision/Kconfig \
drivers/media/video/cx231xx/Kconfig \
drivers/media/video/tlg2300/Kconfig \
drivers/media/video/em28xx/Kconfig \
drivers/media/video/hdpvr/Kconfig \
drivers/media/video/pvrusb2/Kconfig \
drivers/media/video/gspca/gl860/Kconfig \
drivers/media/video/gspca/stv06xx/Kconfig \
drivers/media/video/gspca/m5602/Kconfig \
drivers/media/video/gspca/Kconfig \
drivers/media/video/uvc/Kconfig \
drivers/media/video/m5mols/Kconfig \
drivers/media/video/saa7164/Kconfig \
drivers/media/video/cx18/Kconfig \
drivers/media/video/ivtv/Kconfig \
drivers/media/video/au0828/Kconfig \
drivers/media/video/cx23885/Kconfig \
drivers/media/video/cx88/Kconfig \
drivers/media/video/saa7134/Kconfig \
drivers/media/video/zoran/Kconfig \
drivers/media/video/cpia2/Kconfig \
drivers/media/video/bt8xx/Kconfig \
drivers/media/video/omap/Kconfig \
drivers/media/video/davinci/Kconfig \
drivers/media/video/cx25840/Kconfig \
drivers/media/video/Kconfig \
drivers/media/common/tuners/Kconfig \
drivers/media/rc/keymaps/Kconfig \
drivers/media/rc/Kconfig \
drivers/media/common/Kconfig \
drivers/media/Kconfig \
drivers/regulator/Kconfig \
drivers/mfd/Kconfig \
drivers/bcma/Kconfig \
drivers/ssb/Kconfig \
drivers/watchdog/Kconfig \
drivers/thermal/Kconfig \
drivers/hwmon/Kconfig \
drivers/power/Kconfig \
drivers/w1/slaves/Kconfig \
drivers/w1/masters/Kconfig \
drivers/w1/Kconfig \
drivers/gpio/Kconfig \
drivers/ptp/Kconfig \
drivers/pps/generators/Kconfig \
drivers/pps/clients/Kconfig \
drivers/pps/Kconfig \
drivers/spi/Kconfig \
drivers/i2c/chips/Kconfig \
drivers/i2c/busses/Kconfig \
drivers/i2c/algos/Kconfig \
drivers/i2c/muxes/Kconfig \
drivers/i2c/Kconfig \
drivers/s390/char/Kconfig \
drivers/char/tpm/Kconfig \
drivers/char/pcmcia/Kconfig \
drivers/char/hw_random/Kconfig \
drivers/char/ipmi/Kconfig \
drivers/tty/hvc/Kconfig \
drivers/tty/serial/Kconfig \
drivers/tty/Kconfig \
drivers/char/Kconfig \
drivers/input/gameport/Kconfig \
drivers/input/serio/Kconfig \
drivers/input/misc/Kconfig \
drivers/input/touchscreen/Kconfig \
drivers/input/tablet/Kconfig \
drivers/input/joystick/iforce/Kconfig \
drivers/input/joystick/Kconfig \
drivers/input/mouse/Kconfig \
drivers/input/keyboard/Kconfig \
drivers/input/Kconfig \
drivers/telephony/Kconfig \
drivers/isdn/hardware/mISDN/Kconfig \
drivers/isdn/mISDN/Kconfig \
drivers/isdn/hysdn/Kconfig \
drivers/isdn/gigaset/Kconfig \
drivers/isdn/hardware/eicon/Kconfig \
drivers/isdn/hardware/avm/Kconfig \
drivers/isdn/hardware/Kconfig \
drivers/isdn/capi/Kconfig \
drivers/isdn/act2000/Kconfig \
drivers/isdn/sc/Kconfig \
drivers/isdn/pcbit/Kconfig \
drivers/isdn/icn/Kconfig \
drivers/isdn/hisax/Kconfig \
drivers/isdn/i4l/Kconfig \
drivers/isdn/Kconfig \
drivers/net/caif/Kconfig \
drivers/s390/net/Kconfig \
drivers/ieee802154/Kconfig \
drivers/atm/Kconfig \
drivers/net/wan/Kconfig \
drivers/net/pcmcia/Kconfig \
drivers/net/usb/Kconfig \
drivers/net/wimax/i2400m/Kconfig \
drivers/net/wimax/Kconfig \
drivers/net/wireless/mwifiex/Kconfig \
drivers/net/wireless/zd1211rw/Kconfig \
drivers/net/wireless/wl12xx/Kconfig \
drivers/net/wireless/wl1251/Kconfig \
drivers/net/wireless/rtlwifi/Kconfig \
drivers/net/wireless/rt2x00/Kconfig \
drivers/net/wireless/p54/Kconfig \
drivers/net/wireless/orinoco/Kconfig \
drivers/net/wireless/libertas/Kconfig \
drivers/net/wireless/iwmc3200wifi/Kconfig \
drivers/net/wireless/iwlegacy/Kconfig \
drivers/net/wireless/iwlwifi/Kconfig \
drivers/net/wireless/ipw2x00/Kconfig \
drivers/net/wireless/hostap/Kconfig \
drivers/net/wireless/bcmdhd/Kconfig \
drivers/net/wireless/bcm4329/Kconfig \
drivers/net/wireless/b43legacy/Kconfig \
drivers/net/wireless/b43/Kconfig \
drivers/net/wireless/ath/carl9170/Kconfig \
drivers/net/wireless/ath/ath9k/Kconfig \
drivers/net/wireless/ath/ath5k/Kconfig \
drivers/net/wireless/ath/Kconfig \
drivers/net/wireless/rtl818x/Kconfig \
drivers/net/wireless/Kconfig \
drivers/net/tokenring/Kconfig \
drivers/net/benet/Kconfig \
drivers/net/sfc/Kconfig \
drivers/net/stmmac/Kconfig \
drivers/net/ixp2000/Kconfig \
drivers/net/octeon/Kconfig \
drivers/net/fs_enet/Kconfig \
drivers/net/ibm_newemac/Kconfig \
drivers/net/tulip/Kconfig \
drivers/net/arm/Kconfig \
drivers/net/phy/Kconfig \
drivers/net/arcnet/Kconfig \
drivers/net/Kconfig \
drivers/macintosh/Kconfig \
drivers/message/i2o/Kconfig \
drivers/firewire/Kconfig \
drivers/message/fusion/Kconfig \
drivers/target/tcm_fc/Kconfig \
drivers/target/loopback/Kconfig \
drivers/target/Kconfig \
drivers/md/Kconfig \
drivers/ata/Kconfig \
drivers/scsi/osd/Kconfig \
drivers/scsi/device_handler/Kconfig \
drivers/scsi/pcmcia/Kconfig \
drivers/scsi/arm/Kconfig \
drivers/scsi/qla4xxx/Kconfig \
drivers/scsi/qla2xxx/Kconfig \
drivers/scsi/mpt2sas/Kconfig \
drivers/scsi/megaraid/Kconfig.megaraid \
drivers/scsi/mvsas/Kconfig \
drivers/scsi/aic94xx/Kconfig \
drivers/scsi/aic7xxx/Kconfig.aic79xx \
drivers/scsi/aic7xxx/Kconfig.aic7xxx \
drivers/scsi/be2iscsi/Kconfig \
drivers/scsi/bnx2fc/Kconfig \
drivers/scsi/bnx2i/Kconfig \
drivers/scsi/cxgbi/cxgb4i/Kconfig \
drivers/scsi/cxgbi/cxgb3i/Kconfig \
drivers/scsi/cxgbi/Kconfig \
drivers/scsi/libsas/Kconfig \
drivers/scsi/Kconfig \
drivers/ide/Kconfig \
drivers/misc/mpu6050/Kconfig \
drivers/misc/c2c/Kconfig \
drivers/misc/inv_mpu/pressure/Kconfig \
drivers/misc/inv_mpu/compass/Kconfig \
drivers/misc/inv_mpu/accel/Kconfig \
drivers/misc/inv_mpu/Kconfig \
drivers/misc/mpu3050/Kconfig \
drivers/misc/carma/Kconfig \
drivers/misc/lis3lv02d/Kconfig \
drivers/misc/ti-st/Kconfig \
drivers/misc/iwmc3200top/Kconfig \
drivers/misc/cb710/Kconfig \
drivers/misc/eeprom/Kconfig \
drivers/misc/c2port/Kconfig \
drivers/misc/Kconfig \
drivers/s390/block/Kconfig \
drivers/block/drbd/Kconfig \
drivers/block/paride/Kconfig \
drivers/block/Kconfig \
drivers/pnp/pnpacpi/Kconfig \
drivers/pnp/pnpbios/Kconfig \
drivers/pnp/isapnp/Kconfig \
drivers/pnp/Kconfig \
drivers/parport/Kconfig \
drivers/of/Kconfig \
drivers/mtd/ubi/Kconfig \
drivers/mtd/lpddr/Kconfig \
drivers/mtd/onenand/Kconfig \
drivers/mtd/nand/Kconfig \
drivers/mtd/devices/Kconfig \
drivers/mtd/maps/Kconfig \
drivers/mtd/chips/Kconfig \
drivers/mtd/Kconfig \
drivers/connector/Kconfig \
drivers/base/Kconfig \
drivers/Kconfig \
net/ceph/Kconfig \
net/caif/Kconfig \
net/9p/Kconfig \
net/rfkill/Kconfig \
net/wimax/Kconfig \
net/mac80211/Kconfig \
net/wireless/Kconfig \
net/rxrpc/Kconfig \
drivers/bluetooth/Kconfig \
net/bluetooth/hidp/Kconfig \
net/bluetooth/cmtp/Kconfig \
net/bluetooth/bnep/Kconfig \
net/bluetooth/rfcomm/Kconfig \
net/bluetooth/Kconfig \
drivers/net/irda/Kconfig \
net/irda/ircomm/Kconfig \
net/irda/irnet/Kconfig \
net/irda/irlan/Kconfig \
net/irda/Kconfig \
drivers/net/can/softing/Kconfig \
drivers/net/can/usb/Kconfig \
drivers/net/can/c_can/Kconfig \
drivers/net/can/sja1000/Kconfig \
drivers/net/can/mscan/Kconfig \
drivers/net/can/Kconfig \
net/can/Kconfig \
drivers/net/hamradio/Kconfig \
net/ax25/Kconfig \
net/batman-adv/Kconfig \
net/dns_resolver/Kconfig \
net/dcb/Kconfig \
net/sched/Kconfig \
net/ieee802154/Kconfig \
net/phonet/Kconfig \
net/wanrouter/Kconfig \
net/econet/Kconfig \
net/lapb/Kconfig \
net/x25/Kconfig \
drivers/net/appletalk/Kconfig \
net/ipx/Kconfig \
net/llc/Kconfig \
net/decnet/Kconfig \
net/8021q/Kconfig \
net/dsa/Kconfig \
net/bridge/Kconfig \
net/802/Kconfig \
net/l2tp/Kconfig \
net/atm/Kconfig \
net/tipc/Kconfig \
net/rds/Kconfig \
net/sctp/Kconfig \
net/dccp/ccids/Kconfig \
net/dccp/Kconfig \
net/bridge/netfilter/Kconfig \
net/decnet/netfilter/Kconfig \
net/ipv6/netfilter/Kconfig \
net/ipv4/netfilter/Kconfig \
net/netfilter/ipvs/Kconfig \
net/netfilter/ipset/Kconfig \
net/netfilter/Kconfig \
net/netlabel/Kconfig \
net/ipv6/Kconfig \
net/ipv4/Kconfig \
net/iucv/Kconfig \
net/xfrm/Kconfig \
net/unix/Kconfig \
net/packet/Kconfig \
net/Kconfig \
kernel/power/Kconfig \
fs/Kconfig.binfmt \
drivers/cpuidle/Kconfig \
drivers/cpufreq/Kconfig.x86 \
drivers/cpufreq/Kconfig \
mm/Kconfig \
kernel/Kconfig.preempt \
kernel/time/Kconfig \
drivers/pcmcia/Kconfig \
drivers/pci/Kconfig \
arch/arm/common/Kconfig \
arch/arm/Kconfig-nommu \
arch/arm/mm/Kconfig \
arch/arm/mach-w90x900/Kconfig \
arch/arm/mach-vt8500/Kconfig \
arch/arm/plat-versatile/Kconfig \
arch/arm/mach-vexpress/Kconfig \
arch/arm/mach-versatile/Kconfig \
arch/arm/mach-ux500/Kconfig \
arch/arm/mach-u300/Kconfig \
arch/arm/mach-tegra/Kconfig \
drivers/sh/intc/Kconfig \
drivers/sh/Kconfig \
arch/arm/mach-shmobile/Kconfig \
arch/arm/mach-exynos/Kconfig \
arch/arm/mach-s5pv210/Kconfig \
arch/arm/mach-s5pc100/Kconfig \
arch/arm/mach-s5p64x0/Kconfig \
arch/arm/mach-s3c64xx/Kconfig \
arch/arm/mach-s3c2443/Kconfig \
arch/arm/mach-s3c2440/Kconfig \
arch/arm/mach-s3c2416/Kconfig \
arch/arm/mach-s3c2412/Kconfig \
arch/arm/mach-s3c2410/Kconfig \
arch/arm/mach-s3c2400/Kconfig \
arch/arm/mach-tcc8k/Kconfig \
arch/arm/plat-tcc/Kconfig \
arch/arm/mach-spear6xx/Kconfig \
arch/arm/mach-spear3xx/Kconfig \
arch/arm/plat-spear/Kconfig \
arch/arm/plat-s5p/Kconfig \
arch/arm/plat-s3c24xx/Kconfig \
arch/arm/plat-samsung/Kconfig \
arch/arm/mach-sa1100/Kconfig \
arch/arm/mach-realview/Kconfig \
arch/arm/mach-mmp/Kconfig \
arch/arm/plat-pxa/Kconfig \
arch/arm/mach-pxa/Kconfig \
arch/arm/mach-orion5x/Kconfig \
arch/arm/mach-omap2/Kconfig \
arch/arm/mach-omap1/Kconfig \
arch/arm/plat-omap/Kconfig \
arch/arm/mach-nuc93x/Kconfig \
arch/arm/plat-nomadik/Kconfig \
arch/arm/mach-nomadik/Kconfig \
arch/arm/mach-netx/Kconfig \
arch/arm/mach-mxs/devices/Kconfig \
arch/arm/mach-mxs/Kconfig \
arch/arm/mach-mx5/Kconfig \
arch/arm/mach-imx/Kconfig \
arch/arm/plat-mxc/devices/Kconfig \
arch/arm/plat-mxc/Kconfig \
arch/arm/mach-mv78xx0/Kconfig \
arch/arm/mach-msm/Kconfig \
arch/arm/mach-lpc32xx/Kconfig \
arch/arm/mach-loki/Kconfig \
arch/arm/mach-ks8695/Kconfig \
arch/arm/mach-kirkwood/Kconfig \
arch/arm/mach-ixp23xx/Kconfig \
arch/arm/mach-ixp2000/Kconfig \
arch/arm/mach-ixp4xx/Kconfig \
arch/arm/mach-iop13xx/Kconfig \
arch/arm/mach-iop33x/Kconfig \
arch/arm/mach-iop32x/Kconfig \
arch/arm/mach-integrator/Kconfig \
arch/arm/mach-h720x/Kconfig \
arch/arm/mach-gemini/Kconfig \
arch/arm/mach-footbridge/Kconfig \
arch/arm/mach-ep93xx/Kconfig \
arch/arm/mach-dove/Kconfig \
arch/arm/mach-davinci/Kconfig \
arch/arm/mach-cns3xxx/Kconfig \
arch/arm/mach-clps711x/Kconfig \
arch/arm/mach-bcmring/Kconfig \
arch/arm/mach-at91/Kconfig \
kernel/Kconfig.freezer \
kernel/Kconfig.locks \
block/Kconfig.iosched \
block/Kconfig \
kernel/gcov/Kconfig \
arch/Kconfig \
usr/Kconfig \
kernel/irq/Kconfig \
init/Kconfig \
arch/arm/Kconfig \
Kconfig
include/config/auto.conf: \
$(deps_config)
ifneq "$(KERNELVERSION)" "3.0.15"
include/config/auto.conf: FORCE
endif
ifneq "$(ARCH)" "arm"
include/config/auto.conf: FORCE
endif
ifneq "$(SRCARCH)" "arm"
include/config/auto.conf: FORCE
endif
$(deps_config): ;
| charlie-wong/itop-zImage | include/config/auto.conf.cmd | bat | gpl-2.0 | 21,497 |
set CLASSPATH=.;C:\files\jini2\lib\jini-core.jar;C:\files\jini2\lib\reggie.jar;C:\files\jini2\lib\mahalo.jar;C:\files\jini2\lib\outrigger-dl.jar;C:\tmp\ibmjs\lib\ibmjs.jar
| rbjarnason/bang | setclass.bat | bat | gpl-2.0 | 172 |
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/pcl720.o := ld -m elf_i386 -r -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/pcl720.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/objects/hal/drivers/pcl720.o
| CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver | src/.pcl720.o.cmd | bat | gpl-2.0 | 222 |
for /d %%g IN (*) DO (
set CSTM=%%~g
set /A ADDTO=0
call :injext
if "%ADDTO%" GEQ "2" set FNDMORE=1
)
exit /b
:injext
call "%GBC%\CreateGamSubDir.bat"
for /f "tokens=* delims= " %%a in ('dir /b/a-d-h "%CSTM%"') do (
if /I "%%~xa"==".gz" "%GBC%\fart.exe" "*.bat" [EXT] gz
if /I "%%~xa"==".dsk" "%GBC%\fart.exe" "*.bat" [EXT] dsk
if /I "%%~xa"==".sad" "%GBC%\fart.exe" "*.bat" [EXT] sad
if /I "%%~xa"==".mgt" "%GBC%\fart.exe" "*.bat" [EXT] mgt
if /I "%%~xa"==".sdf" "%GBC%\fart.exe" "*.bat" [EXT] sdf
if /I "%%~xa"==".td0" "%GBC%\fart.exe" "*.bat" [EXT] td0
if /I "%%~xa"==".sbt" "%GBC%\fart.exe" "*.bat" [EXT] sbt
if /I "%%~xa"==".cbm" "%GBC%\fart.exe" "*.bat" [EXT] cbm
if /I "%%~xa"==".zip" "%GBC%\fart.exe" "*.bat" [EXT] zip
if /I "%%~xa"==".gz" set SAMCROM=%%~a
if /I "%%~xa"==".dsk" set SAMCROM=%%~a
if /I "%%~xa"==".sad" set SAMCROM=%%~a
if /I "%%~xa"==".mgt" set SAMCROM=%%~a
if /I "%%~xa"==".sdf" set SAMCROM=%%~a
if /I "%%~xa"==".td0" set SAMCROM=%%~a
if /I "%%~xa"==".sbt" set SAMCROM=%%~a
if /I "%%~xa"==".cbm" set SAMCROM=%%~a
if /I "%%~xa"==".zip" set SAMCROM=%%~a
if /i "%%~xa"==".bak" exit /b
if /i "%%~xa"==".bat" exit /b
REM call "%GBC%\SAMCexeject.bat"
"%GBC%\fart.exe" "SimCoupe.cfg" "[ROMPTH]\\" --remove
"%GBC%\fart.exe" "SimCoupe.cfg" "%%~a"
)
exit /b
:addto
SET /A ADDTO+=1 | HoodlumDTX/rom-jacket | execSAMC.bat | bat | gpl-2.0 | 1,332 |
rem Config-hook to Configuration Scripts
call x:\configprinter.cmd
| edvapp/autoinstall | vms/configwinontop/confighook.cmd | bat | gpl-2.0 | 71 |
cmd_drivers/cpuidle/governors/built-in.o := ld -m elf_i386 -r -o drivers/cpuidle/governors/built-in.o drivers/cpuidle/governors/ladder.o drivers/cpuidle/governors/menu.o
| madhwang/linuxKernel | drivers/cpuidle/governors/.built-in.o.cmd | bat | gpl-2.0 | 174 |
java -cp fitnesse.jar fitnesseMain.FitNesseMain -p 8080 -e 0 -o %1 %2 %3 %4 %5
pause | marisaseal/selenesse | runFitnesse.bat | bat | gpl-2.0 | 85 |
@echo OFF
rem
rem This file is part of nzbget
rem
rem Copyright (C) 2013-2019 Andrey Prygunkov <[email protected]>
rem
rem This program is free software; you can redistribute it and/or modify
rem it under the terms of the GNU General Public License as published by
rem the Free Software Foundation; either version 2 of the License, or
rem (at your option) any later version.
rem
rem This program is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem along with this program. If not, see <http://www.gnu.org/licenses/>.
rem
rem ####################### CONFIG SECTION #######################
set BUILD_DEBUG=1
set BUILD_RELEASE=1
set BUILD_32=1
set BUILD_64=1
rem expression "%~dp0" means the location of an executing batch file
set ROOTDIR=%~dp0
rem remove trailing slash from ROOTDIR
set ROOTDIR=%ROOTDIR:~0,-1%
set LIBDIR=%ROOTDIR%\lib
set ZIP=%ROOTDIR%\tools\7-Zip\7z.exe
set SED=%ROOTDIR%\tools\GnuWin32\bin\sed.exe
set CURL=%ROOTDIR%\tools\curl\src\curl.exe
set NSIS=%ROOTDIR%\tools\nsis
set VCVARS="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
set BUILD_SETUP=1
rem ####################### END OF CONFIG SECTION #######################
title Building NZBGet
cd %ROOTDIR%
set UseEnv=true
echo Building nzbget
if exist tmp (rmdir /S /Q tmp)
if errorlevel 1 goto BUILD_FAILED
mkdir tmp
if errorlevel 1 goto BUILD_FAILED
rem Search source distribution archive
set SRCTAR=
for /R "%ROOTDIR%" %%f in (nzbget-*.tar.gz) do (
set SRCTAR=%%~nf
)
if not exist %SRCTAR%.gz (
echo Cannot find NZBGet source code archive. Put nzbget-version-src.tar.gz into '%ROOTDIR%' and retry
goto BUILD_FAILED
)
rem Determine program version (from source distribution archive file name)
echo Using source file: %SRCTAR%.gz
set FULLVERSION=%SRCTAR:~7,-4%
if [%FULLVERSION:~-4%]==[-src] (set FULLVERSION=%FULLVERSION:~0,-4%)
set VERSION=%FULLVERSION%
if [%VERSION:~12,2%]==[-r] (set VERSION=%VERSION:~0,-6%)
echo Version: [%VERSION%]/[%FULLVERSION%]
if not exist image (
echo Cannot find extra files for setup. Create directory '%ROOTDIR%\image' and put all extra files there: unrar.exe, etc.
goto BUILD_FAILED
)
rem Unpack source distribution archive
%ZIP% x -otmp %SRCTAR%.gz
if errorlevel 1 goto BUILD_FAILED
%ZIP% x -otmp tmp\%SRCTAR%
if errorlevel 1 goto BUILD_FAILED
rem Prepare output directory
if exist output (rmdir /S /Q output)
if errorlevel 1 goto BUILD_FAILED
mkdir output
if errorlevel 1 goto BUILD_FAILED
rem Update ca root certificates
echo Updating root certificates
cd image
%CURL% --remote-name --time-cond cacert.pem https://curl.se/ca/cacert.pem
if errorlevel 1 goto BUILD_FAILED
cd ..
cd tmp\nzbget-%VERSION%
rem Activate revision info (using code_revision.cpp)
%SED% -e ":a;N;$!ba;s|void Util::Init()\n{\n#ifndef WIN32|void Util::Init()\n{\n#ifndef WIN32DISABLED|" -i daemon\util\Util.cpp
%SED% -e ":a;N;$!ba;s|#ifndef WIN32\n// function|#ifndef WIN32DISABLED\n// function|" -i daemon\util\Util.cpp
%SED% -e "s|<ClCompile Include=\d034daemon\\util\\Util.cpp\d034 />|<ClCompile Include=\d034daemon\\util\\Util.cpp\d034 /><ClCompile Include=\d034code_revision.cpp\d034 />|" -i nzbget.vcxproj
:TARGET_DEBUG
rem Build debug binaries
if %BUILD_DEBUG%==0 goto TARGET_RELEASE
cd nzbget-%VERSION%
call:PrepareFiles
if %BUILD_32%==1 ( call:BuildTarget Debug x86 x86 32 )
if %BUILD_64%==1 ( call:BuildTarget Debug x64 amd64 64 )
cd ..
if %BUILD_SETUP%==1 (
rem Build debug setup
cd distrib
call:BuildSetup
if errorlevel 1 goto BUILD_FAILED
move nzbget-setup.exe ..\..\output\nzbget-%FULLVERSION%-bin-windows-debug-setup.exe
cd ..
)
:TARGET_RELEASE
rem Build release binaries
if %BUILD_RELEASE%==0 goto END
cd nzbget-%VERSION%
call:PrepareFiles
if %BUILD_32%==1 ( call:BuildTarget Release x86 x86 32 )
if %BUILD_64%==1 ( call:BuildTarget Release x64 amd64 64 )
cd ..
if %BUILD_SETUP%==1 (
rem Build release setup
cd distrib
call:BuildSetup
if errorlevel 1 goto BUILD_FAILED
move nzbget-setup.exe ..\..\output\nzbget-%FULLVERSION%-bin-windows-setup.exe
cd ..
)
goto END
:BUILD_FAILED
echo ********************************
echo Build failed
echo ********************************
:END
pause
exit 1
rem END OF SCRIPT
rem Build one binary (fro specified configuration and platofrm)
:BuildTarget
echo ***** Building %~1 %~2 (%~3 %~4)
if exist ..\bin (rmdir /S /Q ..\bin)
set INCLUDE=
set LIB=
call %VCVARS% %~3
set INCLUDE=%LIBDIR%\include;%INCLUDE%
set LIB=%LIBDIR%\%~2;%LIB%
msbuild.exe nzbget.vcxproj /t:Rebuild /p:Configuration=%~1 /p:Platform=%~2
if errorlevel 1 goto BUILD_FAILED
copy ..\bin\nzbget.exe ..\distrib\NZBGet\%~4
if errorlevel 1 goto BUILD_FAILED
if %~1==Debug (
copy ..\bin\nzbget.pdb ..\distrib\NZBGet\%~4
if errorlevel 1 goto BUILD_FAILED
)
GOTO:EOF
rem Prepare files for setup
:PrepareFiles
if exist ..\distrib (rmdir /S /Q ..\distrib)
mkdir ..\distrib\NZBGet
mkdir ..\distrib\NZBGet\32
mkdir ..\distrib\NZBGet\64
if %BUILD_32%==0 (
echo This test setup doesn't include binaries for 32 bit platform > ..\distrib\NZBGet\32\README-WARNING.txt
)
if %BUILD_64%==0 (
echo This test setup doesn't include binaries for 64 bit platform > ..\distrib\NZBGet\64\README-WARNING.txt
)
copy windows\nzbget-command-shell.bat ..\distrib\NZBGet
if errorlevel 1 goto BUILD_FAILED
copy windows\install-update.bat ..\distrib\NZBGet
if errorlevel 1 goto BUILD_FAILED
copy windows\README-WINDOWS.txt ..\distrib\NZBGet
if errorlevel 1 goto BUILD_FAILED
copy ChangeLog ..\distrib\NZBGet
if errorlevel 1 goto BUILD_FAILED
copy README ..\distrib\NZBGet
if errorlevel 1 goto BUILD_FAILED
copy COPYING ..\distrib\NZBGet
if errorlevel 1 goto BUILD_FAILED
mkdir ..\distrib\NZBGet\webui
xcopy /E webui ..\distrib\NZBGet\webui
if errorlevel 1 goto BUILD_FAILED
copy windows\package-info.json ..\distrib\NZBGet\webui
if errorlevel 1 goto BUILD_FAILED
rem Adjust config file
set CONFFILE=..\distrib\NZBGet\nzbget.conf.template
copy nzbget.conf %CONFFILE%
if errorlevel 1 goto BUILD_FAILED
%SED% -e "s|MainDir=.*|MainDir=${AppDir}\\downloads|" -i %CONFFILE%
%SED% -e "s|DestDir=.*|DestDir=${MainDir}\\complete|" -i %CONFFILE%
%SED% -e "s|InterDir=.*|InterDir=${MainDir}\\intermediate|" -i %CONFFILE%
%SED% -e "s|ScriptDir=.*|ScriptDir=${MainDir}\\scripts|" -i %CONFFILE%
%SED% -e "s|LogFile=.*|LogFile=${MainDir}\\nzbget.log|" -i %CONFFILE%
%SED% -e "s|AuthorizedIP=.*|AuthorizedIP=127.0.0.1|" -i %CONFFILE%
%SED% -e "s|UnrarCmd=.*|UnrarCmd=${AppDir}\\unrar.exe|" -i %CONFFILE%
%SED% -e "s|SevenZipCmd=.*|SevenZipCmd=${AppDir}\\7za.exe|" -i %CONFFILE%
%SED% -e "s|ArticleCache=.*|ArticleCache=250|" -i %CONFFILE%
%SED% -e "s|ParBuffer=.*|ParBuffer=250|" -i %CONFFILE%
%SED% -e "s|WriteBuffer=.*|WriteBuffer=1024|" -i %CONFFILE%
%SED% -e "s|CertStore=.*|CertStore=${AppDir}\\cacert.pem|" -i %CONFFILE%
%SED% -e "s|CertCheck=.*|CertCheck=yes|" -i %CONFFILE%
%SED% -e "s|DirectRename=.*|DirectRename=yes|" -i %CONFFILE%
%SED% -e "s|DirectUnpack=.*|DirectUnpack=yes|" -i %CONFFILE%
rem Hide certain options from web-interface settings page
%SED% -e "s|WebDir=.*|# WebDir=${AppDir}\\webui|" -i %CONFFILE%
%SED% -e "s|LockFile=.*|# LockFile=|" -i %CONFFILE%
%SED% -e "s|ConfigTemplate=.*|# ConfigTemplate=${AppDir}\\nzbget.conf.template|" -i %CONFFILE%
%SED% -e "s|DaemonUsername=.*|# DaemonUsername=|" -i %CONFFILE%
%SED% -e "s|UMask=.*|# UMask=|" -i %CONFFILE%
mkdir ..\distrib\NZBGet\scripts
xcopy /E scripts ..\distrib\NZBGet\scripts
if errorlevel 1 goto BUILD_FAILED
copy ..\..\image\* ..\distrib\NZBGet
copy ..\..\image\32\* ..\distrib\NZBGet\32
copy ..\..\image\64\* ..\distrib\NZBGet\64
if errorlevel 1 goto BUILD_FAILED
del /S ..\distrib\NZBGet\_*.*
GOTO:EOF
rem Build one setup for current configuration (debug or release)
:BuildSetup
if not exist resources (
mkdir resources
xcopy /E ..\nzbget-%VERSION%\windows\resources resources
if errorlevel 1 goto BUILD_FAILED
)
copy ..\nzbget-%VERSION%\windows\nzbget-setup.nsi .
if errorlevel 1 goto BUILD_FAILED
%NSIS%\makensis.exe nzbget-setup.nsi
if errorlevel 1 goto BUILD_FAILED
GOTO:EOF
| nzbget/nzbget | windows/build-nzbget.bat | bat | gpl-2.0 | 8,286 |
cmd_arch/arm/lib/backtrace.o := /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/lib/.backtrace.o.d -nostdinc -isystem /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-eabi/4.4.1/include -Dlinux -Iinclude -I/home/leonardo/mykernel/kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s5pv210/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/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 -gdwarf-2 -c -o arch/arm/lib/backtrace.o arch/arm/lib/backtrace.S
deps_arch/arm/lib/backtrace.o := \
arch/arm/lib/backtrace.S \
$(wildcard include/config/cpu.h) \
$(wildcard include/config/frame/pointer.h) \
$(wildcard include/config/printk.h) \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/linkage.h \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/leonardo/mykernel/kernel/arch/arm/include/asm/hwcap.h \
arch/arm/lib/backtrace.o: $(deps_arch/arm/lib/backtrace.o)
$(deps_arch/arm/lib/backtrace.o):
| dalinaum/studyak | arch/arm/lib/.backtrace.o.cmd | bat | gpl-2.0 | 1,920 |
cmd_fs/autofs4/dev-ioctl.o := ppc_4xx-gcc -m32 -Wp,-MD,fs/autofs4/.dev-ioctl.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(dev_ioctl)" -D"KBUILD_MODNAME=KBUILD_STR(autofs4)" -c -o fs/autofs4/.tmp_dev-ioctl.o fs/autofs4/dev-ioctl.c
deps_fs/autofs4/dev-ioctl.o := \
fs/autofs4/dev-ioctl.c \
$(wildcard include/config/compat.h) \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
$(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/numa.h) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
include/linux/linkage.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/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/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/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/cache.h \
$(wildcard include/config/arch/has/cache/line/size.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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.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/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/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/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/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/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.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/proc/fs.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/prio_tree.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/rcutree.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
include/trace/define_trace.h \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.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 \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.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/vmalloc.h \
include/linux/miscdevice.h \
include/linux/major.h \
include/linux/namei.h \
include/linux/dcache.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/file.h \
include/linux/fdtable.h \
include/linux/compat.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/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/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/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/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 \
/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/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
include/linux/semaphore.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \
$(wildcard include/config/swiotlb.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \
$(wildcard include/config/ppc/iseries.h) \
$(wildcard include/config/power.h) \
$(wildcard include/config/8xx/cpu6.h) \
include/asm-generic/iomap.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \
$(wildcard include/config/ppc/std/mmu.h) \
$(wildcard include/config/kgdb.h) \
$(wildcard include/config/xmon.h) \
$(wildcard include/config/kprobes.h) \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/seq_file.h \
include/linux/trace_seq.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/radix-tree.h \
include/linux/fiemap.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/err.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/magic.h \
include/linux/uaccess.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \
fs/autofs4/autofs_i.h \
include/linux/auto_fs4.h \
include/linux/auto_fs.h \
include/linux/auto_dev-ioctl.h \
include/linux/mount.h \
fs/autofs4/dev-ioctl.o: $(deps_fs/autofs4/dev-ioctl.o)
$(deps_fs/autofs4/dev-ioctl.o):
| mattkelly/linux-2.6-xlnx | fs/autofs4/.dev-ioctl.o.cmd | bat | gpl-2.0 | 25,514 |
cmd_sound/pci/nm256/built-in.o := rm -f sound/pci/nm256/built-in.o; /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ar rcsD sound/pci/nm256/built-in.o
| friedrich420/Note-3-Kernel | sound/pci/nm256/.built-in.o.cmd | bat | gpl-2.0 | 160 |
@echo off
setlocal
call jmfs.bat jmfs.MfsAdd %*
endlocal | krbaker/jmfs | scripts/mfsadd.bat | bat | gpl-3.0 | 63 |
nuitka --standalone --windows-disable-console autonimo/autonimo.py | autonimo/autonimo | build_nuitka.bat | bat | gpl-3.0 | 66 |
pandoc -f markdown_github -t panbbcodeVBulletin.lua -o README.bbcode README.md
pandoc -f markdown_github -t html -o README.html README.md | Kerbas-ad-astra/pandoc-bbcode | Makefile.bat | bat | gpl-3.0 | 137 |
@echo off
:start
echo Starting Ogar Server.
echo.
java -server -Dfile.encoding=UTF-8 -Dlog4j.configuration=file:./config/log4j.xml -Xmx128m -jar server.jar
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Server restarted ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly ...
echo.
:end
echo.
echo Server terminated ...
echo.
pause
| Calyps0/FPAgar | dist/start.bat | bat | gpl-3.0 | 413 |
@ECHO off
@ECHO ***** Batch file for BlHeli_S (from 4712) v.2 *****
@ECHO ***** All Messages will be saved to MakeHex_Result.txt *****
@ECHO ***** Start compile with any key - CTRL-C to abort *****
Break ON
@pause
DEL MakeHex_Result.txt /Q
rem ***** Adapt settings to your enviroment ****
DEL Output\Hex\*.* /Q
RMDIR Output\Hex
DEL Output\*.* /Q
RMDIR Output
MKDIR Output
MKDIR Output\Hex
SET Revision=REV16_6
SET KeilPath=C:\SiliconLabs\SimplicityStudio\v4\developer\toolchains\keil_8051\9.53\BIN
@ECHO Revision: %Revision% >> MakeHex_Result.txt
@ECHO Path for Keil toolchain: %KeilPath% >> MakeHex_Result.txt
@ECHO Start compile ..... >> MakeHex_Result.txt
SET ESCNO=1
SET ESC=A_L_
SET MCU_48MHZ=0
call:compile
SET ESC=A_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=B_L_
SET MCU_48MHZ=0
call:compile
SET ESC=B_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=C_L_
SET MCU_48MHZ=0
call:compile
SET ESC=C_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=D_L_
SET MCU_48MHZ=0
call:compile
SET ESC=D_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=E_L_
SET MCU_48MHZ=0
call:compile
SET ESC=E_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=F_L_
SET MCU_48MHZ=0
call:compile
SET ESC=F_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=G_L_
SET MCU_48MHZ=0
call:compile
SET ESC=G_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=H_L_
SET MCU_48MHZ=0
call:compile
SET ESC=H_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=I_L_
SET MCU_48MHZ=0
call:compile
SET ESC=I_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=J_L_
SET MCU_48MHZ=0
call:compile
SET ESC=J_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=K_L_
SET MCU_48MHZ=0
call:compile
SET ESC=K_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=L_L_
SET MCU_48MHZ=0
call:compile
SET ESC=L_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=M_L_
SET MCU_48MHZ=0
call:compile
SET ESC=M_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=N_L_
SET MCU_48MHZ=0
call:compile
SET ESC=N_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=O_L_
SET MCU_48MHZ=0
call:compile
SET ESC=O_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=P_L_
SET MCU_48MHZ=0
call:compile
SET ESC=P_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=Q_L_
SET MCU_48MHZ=0
call:compile
SET ESC=Q_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=R_L_
SET MCU_48MHZ=0
call:compile
SET ESC=R_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=S_L_
SET MCU_48MHZ=0
call:compile
SET ESC=S_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=T_L_
SET MCU_48MHZ=0
call:compile
SET ESC=T_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
SET ESC=U_L_
SET MCU_48MHZ=0
call:compile
SET ESC=U_H_
SET MCU_48MHZ=1
call:compile
SET /A ESCNO+=1
goto :end
:compile
SET FETON_DELAY=0
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=5
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=10
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=15
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=20
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=25
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=30
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=40
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=50
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=70
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
SET /A FETON_DELAY=90
SET ESCNAME=%ESC%%FETON_DELAY%
call :compile_code
goto :eof
:compile_code
@ECHO compiling %ESCNAME%
@ECHO. >> MakeHex_Result.txt
@ECHO ******************************************************************** >> MakeHex_Result.txt
@ECHO %ESCNAME% >> MakeHex_Result.txt
@ECHO ******************************************************************** >> MakeHex_Result.txt
%KeilPath%\AX51.exe "BLHeli_S.asm" DEFINE(ESCNO=%ESCNO%) DEFINE(MCU_48MHZ=%MCU_48MHZ%) DEFINE(FETON_DELAY=%FETON_DELAY%) OBJECT(Output\%ESCNAME%_%Revision%.OBJ) DEBUG MACRO NOMOD51 COND SYMBOLS PAGEWIDTH(120) PAGELENGTH(65) >> MakeHex_Result.txt
%KeilPath%\LX51.exe "Output\%ESCNAME%_%Revision%.OBJ" TO "Output\%ESCNAME%_%Revision%.OMF" PAGEWIDTH (120) PAGELENGTH (65) >> MakeHex_Result.txt
%KeilPath%\Ohx51 "Output\%ESCNAME%_%Revision%.OMF" "HEXFILE (Output\%ESCNAME%_%Revision%.HEX)" "H386" >> MakeHex_Result.txt
copy "Output\%ESCNAME%_%Revision%.HEX" "Output\Hex\%ESCNAME%_%Revision%.HEX" > nul
del "Output\%ESCNAME%_%Revision%.HEX" > nul
@ECHO. >> MakeHex_Result.txt
goto :eof
:end
@pause
exit | remspoor/BLHeli | BLHeli_S SiLabs/MakeHexfiles.bat | bat | gpl-3.0 | 4,634 |
@ECHO off
@ECHO ***** Batch file for BlHeli (from 4712) v.3 *****
@ECHO ***** All Messages will be saved to MakeHex_Result.txt *****
@ECHO ***** Start compile with any key - CTRL-C to abort *****
Break ON
@pause
DEL MakeHex_Result.txt /Q
rem ***** Adapt settings to your enviroment ****
SET Revision=REV14_85
SET SilabsPath=C:\SiLabs
SET RaisonancePath=C:\Raisonance
rem SET SilabsPath=C:\Dev\SiLabs
rem SET RaisonancePath=C:\Dev\Raisonance
SET CRAZY_FAST_START_PATH=Hex files %Revision%\MultiShot_Crazy_FastStart
SET FAST_START_PATH=Hex files %Revision%\Multishot_Fast_Start
SET IMPERIAL_MARCH_PATH=Hex files %Revision%\Multishot_Imperial_March
DEL "%CRAZY_FAST_START_PATH%\*.*" /Q
RMDIR "%CRAZY_FAST_START_PATH%"
MKDIR "%CRAZY_FAST_START_PATH%"
DEL "%FAST_START_PATH%\*.*" /Q
RMDIR "%FAST_START_PATH%"
MKDIR "%FAST_START_PATH%"
DEL "%IMPERIAL_MARCH_PATH%\*.*" /Q
RMDIR "%IMPERIAL_MARCH_PATH%"
MKDIR "%IMPERIAL_MARCH_PATH%"
DEL Output\*.* /Q
RMDIR Output
MKDIR Output\
@ECHO Revision: %Revision% >> MakeHex_Result.txt
@ECHO Path for Silabs IDE: %SilabsPath% >> MakeHex_Result.txt
@ECHO Path for Raisonance IDE: %RaisonancePath% >> MakeHex_Result.txt
@ECHO Start compile ..... >> MakeHex_Result.txt
SET BLHELI_ASM=BLHeli_MS_CZFS
SET HEX_PATH=%CRAZY_FAST_START_PATH%
call :compile0
SET BLHELI_ASM=BLHeli_MS_FS
SET HEX_PATH=%FAST_START_PATH%
call :compile0
SET BLHELI_ASM=BLHeli_MS_IM
SET HEX_PATH=%IMPERIAL_MARCH_PATH%
call :compile0
goto :end
:compile0
SET BESCNO=0
SET BESCNAME=XP_3A
call:compile
SET BESCNAME=XP_7A
call:compile
SET BESCNAME=XP_7A_FAST
call:compile
SET BESCNAME=XP_12A
call:compile
SET BESCNAME=XP_18A
call:compile
SET BESCNAME=XP_25A
call:compile
SET BESCNAME=XP_35A_SW
call:compile
SET BESCNAME=DP_3A
call:compile
SET BESCNAME=SUPERMICRO_3P5A
call:compile
SET BESCNAME=TURNIGY_PLUSH_6A
call:compile
SET BESCNAME=TURNIGY_PLUSH_10A
call:compile
SET BESCNAME=TURNIGY_PLUSH_12A
call:compile
SET BESCNAME=TURNIGY_PLUSH_18A
call:compile
SET BESCNAME=TURNIGY_PLUSH_25A
call:compile
SET BESCNAME=TURNIGY_PLUSH_30A
call:compile
SET BESCNAME=TURNIGY_PLUSH_40A
call:compile
SET BESCNAME=TURNIGY_PLUSH_60A
call:compile
SET BESCNAME=TURNIGY_PLUSH_80A
call:compile
SET BESCNAME=TURNIGY_PLUSH_NFET_18A
call:compile
SET BESCNAME=TURNIGY_PLUSH_NFET_25A
call:compile
SET BESCNAME=TURNIGY_PLUSH_NFET_30A
call:compile
SET BESCNAME=TURNIGY_AE_20A
call:compile
SET BESCNAME=TURNIGY_AE_25A
call:compile
SET BESCNAME=TURNIGY_AE_30A
call:compile
SET BESCNAME=TURNIGY_AE_45A
call:compile
SET BESCNAME=TURNIGY_KFORCE_40A
call:compile
SET BESCNAME=TURNIGY_KFORCE_70A_HV
call:compile
SET BESCNAME=TURNIGY_KFORCE_120A_HV
call:compile
SET BESCNAME=TURNIGY_KFORCE_120A_HV_V2
call:compile
SET BESCNAME=SKYWALKER_20A
call:compile
SET BESCNAME=SKYWALKER_40A
call:compile
SET BESCNAME=HIMODEL_COOL_22A
call:compile
SET BESCNAME=HIMODEL_COOL_33A
call:compile
SET BESCNAME=HIMODEL_COOL_41A
call:compile
SET BESCNAME=RCTIMER_6A
call:compile
SET BESCNAME=ALIGN_RCE_BL15X
call:compile
SET BESCNAME=ALIGN_RCE_BL15P
call:compile
SET BESCNAME=ALIGN_RCE_BL35X
call:compile
SET BESCNAME=ALIGN_RCE_BL35P
call:compile
SET BESCNAME=GAUI_GE_183_18A
call:compile
SET BESCNAME=H_KING_10A
call:compile
SET BESCNAME=H_KING_20A
call:compile
SET BESCNAME=H_KING_35A
call:compile
SET BESCNAME=H_KING_50A
call:compile
SET BESCNAME=POLARIS_THUNDER_12A
call:compile
SET BESCNAME=POLARIS_THUNDER_20A
call:compile
SET BESCNAME=POLARIS_THUNDER_30A
call:compile
SET BESCNAME=POLARIS_THUNDER_40A
call:compile
SET BESCNAME=POLARIS_THUNDER_60A
call:compile
SET BESCNAME=POLARIS_THUNDER_80A
call:compile
SET BESCNAME=POLARIS_THUNDER_100A
call:compile
SET BESCNAME=PLATINUM_PRO_30A
call:compile
SET BESCNAME=PLATINUM_PRO_150A
call:compile
SET BESCNAME=PLATINUM_50AV3
call:compile
SET BESCNAME=EAZY_3AV2
call:compile
SET BESCNAME=TAROT_30A
call:compile
SET BESCNAME=SKYIII_30A
call:compile
SET BESCNAME=EMAX_20A
call:compile
SET BESCNAME=EMAX_40A
call:compile
SET BESCNAME=EMAX_Nano_20A
call:compile
SET BESCNAME=EMAX_Lightning_20A
call:compile
SET BESCNAME=XROTOR_10A
call:compile
SET BESCNAME=XROTOR_20A
call:compile
SET BESCNAME=XROTOR_40A
call:compile
SET BESCNAME=MDRX62H
call:compile
SET BESCNAME=ROTORGEEKS_20A
call:compile
SET BESCNAME=ROTORGEEKS_20A_PLUS
call:compile
SET BESCNAME=FLYCOLOR_FAIRY_6A
call:compile
SET BESCNAME=FLYCOLOR_FAIRY_30A
call:compile
SET BESCNAME=FLYCOLOR_FAIRY_V2_30A
call:compile
SET BESCNAME=FLYCOLOR_RAPTOR_20A
call:compile
SET BESCNAME=FLYCOLOR_RAPTOR_390_20A
call:compile
SET BESCNAME=FVT_LITTLEBEE_12A
call:compile
SET BESCNAME=FVT_LITTLEBEE_20A
call:compile
SET BESCNAME=FVT_LITTLEBEE_20A_PRO
call:compile
SET BESCNAME=FVT_LITTLEBEE_30A
call:compile
SET BESCNAME=GRAUPNER_ULTRA_20A
call:compile
SET BESCNAME=F85_3A
call:compile
SET BESCNAME=ZTW_SPIDER_PRO_20A
call:compile
SET BESCNAME=ZTW_SPIDER_PRO_20A_Premium
call:compile
SET BESCNAME=ZTW_SPIDER_PRO_20A_HV
call:compile
SET BESCNAME=ZTW_SPIDER_PRO_30A_HV
call:compile
SET BESCNAME=DYS_XM20A
call:compile
SET BESCNAME=OVERSKY_MR_20A
call:compile
SET BESCNAME=OVERSKY_MR_20A_PRO
call:compile
SET BESCNAME=TBS_CUBE_12A
call:compile
SET BESCNAME=DALRC_XR20A
call:compile
SET BESCNAME=AIKON_BOLTLITE_30A
call:compile
SET BESCNAME=ALIGN_MR25_15A
call:compile
SET BESCNAME=SERVOKING_MONSTER_30A
call:compile
SET BESCNAME=SERVOKING_MONSTER_30A_PRO
call:compile
SET BESCNAME=SERVOKING_MONSTER_80A
call:compile
SET BESCNAME=HTIRC_HUMMINGBIRD_12A
call:compile
SET BESCNAME=HTIRC_HUMMINGBIRD_20A
call:compile
SET BESCNAME=HTIRC_HUMMINGBIRD_30A_PRO
call:compile
goto :eof
:compile
rem SET BESC="%BESCNAME%_MAIN"
SET /A BESCNO+=1
rem call :compile2
rem SET BESC="%BESCNAME%_TAIL_MS"
SET /A BESCNO+=1
rem call:compile2
SET BESC="%BESCNAME%_MULTISHOT"
SET /A BESCNO+=1
call:compile2
goto :eof
:compile2
@ECHO compiling %BESC%
@ECHO. >> MakeHex_Result.txt
@ECHO ******************************************************************** >> MakeHex_Result.txt
@ECHO %BESCNAME% >> MakeHex_Result.txt
@ECHO ******************************************************************** >> MakeHex_Result.txt
%RaisonancePath%\Ride\bin\ma51.exe "%BLHELI_ASM%.asm" SET(BESCNO=%BESCNO%) OBJECT(Output\%BESCNAME%_%Revision%.OBJ) DEBUG EP QUIET PIN(%SilabsPath%\MCU\Inc;%RaisonancePath%\Ride\inc;%RaisonancePath%\Ride\inc\51) >> MakeHex_Result.txt
%RaisonancePath%\Ride\bin\lx51.exe "Output\%BESCNAME%_%Revision%.OBJ" TO(Output\%BESCNAME%_%Revision%.OMF) RS(256) PL(68) PW(78) OUTPUTSUMMARY LIBPATH(%RaisonancePath%\Ride\lib\51) >> MakeHex_Result.txt
%RaisonancePath%\Ride\bin\oh51.exe "Output\%BESCNAME%_%Revision%.OMF" >> MakeHex_Result.txt
copy "Output\%BESCNAME%_%Revision%.HEX" "%HEX_PATH%\%BESC%_%Revision%.HEX" > nul
del "Output\%BESCNAME%_%Revision%.HEX" > nul
@ECHO. >> MakeHex_Result.txt
goto :eof
:end
@pause
DEL *.LST /Q
DEL Output\*.* /Q
RMDIR Output
MKDIR Output\
exit
| cleanflight/blheli-multishot | SiLabs/MakeHexfiles.bat | bat | gpl-3.0 | 6,824 |
@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\Noink.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Noink.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
| criswell/noink | doc/make.bat | bat | agpl-3.0 | 6,699 |
"C:\Program Files (x86)\ZeroC\Ice-3.5.1\bin\icegridadmin.exe" --Ice.Config=config.grid -e "application add application.xml" | JBetser/MiDax | Midax/setup/DeployRegistry.cmd | bat | agpl-3.0 | 123 |
@ECHO ---------------------------------
@ECHO Building FileHelpers (package)
@ECHO ---------------------------------
@..\libs\NAnt\NAnt.exe -nologo build2005
@pause | hoffmanc/FileHelpers | Build/Build.2005.bat | bat | lgpl-2.1 | 170 |
java -cp ".;../build/itext-1.4.8.jar;../build/itext-2.1.7.jar;../build/iText-rtf-2.1.7.jar;../build/commonos.jar;../build/clientos.jar;../build/jnlp.jar;../build/jcalendar.jar;../build/log4j-1.2.7.jar;../build/poi-2.0-RC2-20040102.jar;../build/pooler.jar;../build/serveros.jar;../build/jnlp-servlet.jar;../build/hsqldb.jar" demo23.ClientApplication | mcarniel/oswing | classes/runDemo23.bat | bat | lgpl-2.1 | 348 |
@echo off
rem /**
rem * Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
rem *
rem * Author: [email protected]
rem */
echo.
echo [ÐÅÏ¢] ×ß¶Á½É½ Kick Off
echo.
pause
echo.
echo [ÐÅÏ¢] ´Ë²Ù×÷»áÇå¿ÕÄúµÄ pg Êý¾Ý±íºÍÊý¾Ý£¬²¢»Ö¸´³õʼ״̬¡£
echo.
echo [ÐÅÏ¢] È·ÈϼÌÐøÂ𣿷ñÔòÇë¹Ø±Õ´°¿Ú¡£
echo.
pause
echo.
echo [ÐÅÏ¢] ÄúÕæµÄÈ·ÈϼÌÐøÂ𣿷ñÔòÇë¹Ø±Õ´°¿Ú¡£
echo.
pause
echo.
echo 2015.11.18 by nh
echo.
pause
echo.
cd %~dp0
cd ..
call mvn antrun:run -Pinit-pg-db
cd db
pause | playgrowth/jeesite | db/init-pg-db.bat | bat | apache-2.0 | 547 |
@setlocal EnableDelayedExpansion
@setlocal enableextensions
@set scriptdir=%~dp0
@set gfxd=%scriptdir:\bin\=%
@if exist "%gfxd%\lib\snappydata-store-__VERSION__.jar" @goto gfxdok
@echo Could not determine GemFire XD location
@verify other 2>nul
@goto done
:gfxdok
@set GFXD_JARS=%gfxd%\lib\snappydata-store-__VERSION__.jar;%gfxd%\lib\snappydata-tools-__VERSION__.jar;%gfxd%\lib\snappydata-client-__VERSION__.jar;%gfxd%\lib\jline-1.0.S2-B.jar;%gfxd%\lib\pulse-dependencies.jar
@if defined CLASSPATH set GFXD_JARS=%GFXD_JARS%;%CLASSPATH%
@rem add all jars in ext-lib if available, so admin can drop external jars in there
@for %%J IN (%gfxd%\ext-lib\*.jar) do @set GFXD_JARS=!GFXD_JARS!;%%J
@if not defined GFXD_JAVA (
@REM %GFXD_JAVA% is not defined, assume it is on the PATH
@set GFXD_JAVA=java
)
@set GEMFIREXD=%gfxd%
@"%GFXD_JAVA%" %JAVA_ARGS% -classpath "%GFXD_JARS%" com.pivotal.gemfirexd.tools.GfxdUtilLauncher %*
:done
@set scriptdir=
@set gfxd=
@set GFXD_JARS=
| SnappyDataInc/snappy-store | gemfirexd/tools/bin/gfxd.bat | bat | apache-2.0 | 973 |
curl --location --request POST 'https://api.pdf.co/v1/pdf/edit/add' \
--header 'Content-Type: application/json' \
--header 'x-api-key: {{x-api-key}}' \
--data-raw '{
"async": false,
"encrypt": false,
"name": "f1040-form-filled",
"url": "bytescout-com.s3-us-west-2.amazonaws.com/files/demo-files/cloud-api/pdf-form/f1040.pdf",
"fieldsString": "1;topmostSubform[0].Page1[0].f1_02[0];John A. Doe|1;topmostSubform[0].Page1[0].FilingStatus[0].c1_01[1];true|1;topmostSubform[0].Page1[0].YourSocial_ReadOrderControl[0].f1_04[0];123456789"
}' | bytescout/ByteScout-SDK-SourceCode | PDF.co Web API/PDF Fill PDF Forms/cURL/Fill PDF Forms Simplified/FillPDFForms.cmd | bat | apache-2.0 | 554 |
:: Copyright 2013 <chaishushan{AT}gmail.com>. All rights reserved.
:: Use of this source code is governed by a BSD-style
:: license that can be found in the LICENSE file.
setlocal
cd %~dp0
:: ----------------------------------------------------------------------------
:: Setup MSVC
:: VS2015
if not "x%VS140COMNTOOLS%" == "x" (
echo Setup VS2015 Win64 ...
call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
goto build
)
:: VS2013
if not "x%VS120COMNTOOLS%" == "x" (
echo Setup VS2013 Win64 ...
call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
goto build
)
:build
:: -----------------------------------------------------------------------------
:: BUG: http://public.kitware.com/Bug/bug_relationship_graph.php?bug_id=14693&graph=relation
mkdir zz_build_win64_release
cd zz_build_win64_release
cmake ..^
-G "NMake Makefiles"^
-DCMAKE_INSTALL_PREFIX=..^
-DCMAKE_BUILD_TYPE=release^
^
-DCMAKE_C_FLAGS_DEBUG="/MDd /Zi /Od /Ob0 /RTC1"^
-DCMAKE_CXX_FLAGS_DEBUG="/MDd /Zi /Od /Ob0 /RTC1"^
-DCMAKE_C_FLAGS_RELEASE="/MD /O2 /Ob2 /DNDEBUG"^
-DCMAKE_CXX_FLAGS_RELEASE="/MD /O2 /Ob2 /DNDEBUG"^
^
-DCMAKE_MODULE_LINKER_FLAGS="/machine:x64"^
-DCMAKE_SHARED_LINKER_FLAGS="/machine:x64"^
-DCMAKE_STATIC_LINKER_FLAGS="/machine:x64"^
-DCMAKE_EXE_LINKER_FLAGS="/MACHINE:x64"
nmake install
:: -----------------------------------------------------------------------------
cd ..
dlltool -dllname llvm-win64.dll --def .\src\llvm_windows.def --output-lib libllvm-win64.a
:: -----------------------------------------------------------------------------
:end
| chai2010/llvm-go | internal/llvm-3.9.1/build-win64.bat | bat | bsd-2-clause | 1,654 |
@echo off
cd Python
start PythonW-Portable.exe "../UniServer/cefpython/localhost.pyw" | mbrostami/PHPPy | Start.bat | bat | bsd-3-clause | 85 |
:: Windows launcher script for Rexster
@echo off
cd %CD%\target\
set TARGET=
for /f "tokens=*" %%a in ('dir /b /ad') do (
if exist "%%a\bin\rexster.bat" set TARGET=%%a
)
cd %TARGET%\bin\
call rexster.bat %* | tingletech/rexster-tomcat | rexster-server/rexster.bat | bat | bsd-3-clause | 222 |
qbasic /run present.bas
| ygorlazaro/qbasic | Games/BCRAFT/Start.bat | bat | mit | 24 |
call mvn clean -Dmaven.test.skip install -P production
cd ./rxjrest-web
call mvn clean -Dmaven.test.skip package -P production
cd ../
pause | majusko/Java-Rest-Server | buildProd.bat | bat | mit | 143 |
dotnet test -c Release /p:CollectCoverage=true /p:Threshold=75 /p:Exclude="[NUnit3.*]*" /p:CoverletOutputFormat=lcov /p:CoverletOutput=../../lcov ../test/Flurl.Test/ | tmenier/Flurl | Build/test.coverage.cmd | bat | mit | 165 |
@echo off
if "%INCLUDE%%LIB%" == "" (
if not "%VS100COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2010 Tools...
@call "%VS100COMNTOOLS%vsvars32.bat"
goto build
)
if not "%VS110COMNTOOLS%" == "" (
echo Setting up Visual Studio Express 2010 Tools...
@call "%VS110COMNTOOLS%vsvars32.bat"
goto build
)
)
:build
if "%~1" == "" (
SET BUILD=Release
) else (
SET BUILD=%~1
)
@echo on
@pushd "%~dp0"
msbuild "/target:Clean;Compile" /property:Configuration="%BUILD%" /property:RootDir=.. /property:BUILD_NUMBER="0.0.0.abcd" build.win.proj
@popd
| phillip-hopper/libpalaso | build/TestBuild.bat | bat | mit | 565 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASCMD.S07_GetItemEstimate.MSASCMD_S07_TC01_GetItemEstimate_Success /testcontainer:..\..\MS-ASCMD\TestSuite\bin\Debug\MS-ASCMD_TestSuite.dll /runconfig:..\..\MS-ASCMD\MS-ASCMD.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeActiveSync/Source/Scripts/MS-ASCMD/RunMSASCMD_S07_TC01_GetItemEstimate_Success.cmd | bat | mit | 295 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.