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
for %%a IN (.\*.obj) do call "..\bin\Release\colmesh.exe" %%a for %%a IN (.\meshes\*.irrmesh) do call "..\assets\irrb\imeshcvt.exe" -i %%a -o meshes\%%~na.irrbmesh for %%a IN (.\*.irr) do move /Y %%a levels\%%~na for %%a IN (.\*.col) do move /Y %%a levels\%%~na del *.obj del irrb.log del meshes\*.irrmesh
jazztickets/irrlamb
working/move.bat
bat
gpl-3.0
309
@echo off rem set JETTY_HOME=D:\javaapps2014\jetty-distribution-8.1.1.v20120215 rem set JDK_HOME=c:\Program Files\Java\jdk1.7.0_51 rem set the path correctly echo %JETTY_HOME% echo %JDK_HOME% rem "%JDK_HOME%/bin/javac" -d webapps\example\WEB-INF\classes -cp %JETTY_HOME%/lib/servlet-api-3.0.jar src/com/example/model/BeerExpert.java rem "%JDK_HOME%/bin/javac" -d webapps\example\WEB-INF\classes -cp %JETTY_HOME%/lib/servlet-api-3.0.jar;webapps\example\WEB-INF\classes src/com/example/web/DownloadFile.java "%JDK_HOME%/bin/jar" cvf example.war -C webapps/example/ . copy example.war %JETTY_HOME%\webapps pause
datapheral/hadoop-install-scripts
docs/perkins/v6-webapp/createwar.bat
bat
apache-2.0
611
@echo off cd %~dp0 IF EXIST .nuget\nuget.exe goto restore echo Downloading nuget.exe md .nuget @powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://dist.nuget.org/win-x86-commandline/latest/nuget.exe' -OutFile '.nuget\nuget.exe'" :restore IF EXIST packages goto run .nuget\NuGet.exe install psake -ExcludeVersion -o packages -nocache .nuget\NuGet.exe install newtonsoft.json -Version 7.0.1 -ExcludeVersion -o packages -nocache :run :: Get Psake to Return Non-Zero Return Code on Build Failure (https://github.com/psake/psake/issues/58) @powershell -NoProfile -ExecutionPolicy unrestricted -command "&{ Import-Module .\packages\psake\tools\psake.psm1; Invoke-Psake .\scripts\default.ps1 -parameters @{'configuration'='Release'}; exit !($psake.build_success) }"
alhardy/aspnet-metrics
build.cmd
bat
apache-2.0
842
@echo off echo [INFO] Use maven assembly-plugin package jsw+jetty+webapp zip. cd %~dp0 cd .. call mvn clean package -Ppackage-bin -Dmaven.test.skip=true -DpackageId=production cd bin pause
rakesh4u/springside-sub
examples/showcase/bin/package-production.bat
bat
apache-2.0
197
pyflakes test.py pyflakes test2.py pause
CzarekTomczak/boovix
boovix1/static_analysis/tests/pyflakes_.bat
bat
bsd-3-clause
41
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:RDPEGFX_RfxProgressiveCodec_NegativeTest_DeleteContextFromInexistSurface /Logger:trx pause
dongruiqing/WindowsProtocolTestSuites
TestSuites/RDP/src/Batch/RDPEGFX/RDPEGFX_RfxProgressiveCodec_NegativeTest_DeleteContextFromInexistSurface.cmd
bat
mit
261
REM erases unnecessary files REM erase *.vc.db /s /q REM erase *.sdf /s /q REM erase *.ncb /s /q rmdir .\Binaries /s /q rmdir .\Intermediate\Build /s /q rmdir .\Intermediate\ProjectFiles/obj /s /q rmdir .\Intermediate\ReimportCache /s /q erase .\Intermediate\CachedAssetRegistry.bin /q rmdir .\Saved\Autosaves /s /q rmdir .\Saved\Backup /s /q rmdir .\Saved\Config/WorldState /s /q rmdir .\Saved\Logs /s /q rmdir .\Saved\Stats /s /q pause
sunithshetty/Unreal-Engine-4-Scripting-with-CPlusPlus-Cookbook
Chapter12/clean.bat
bat
mit
442
REM Windows wrapper batch file python fips %*
wpbest/fips-win-phone-app
fips.cmd
bat
mit
47
@echo off rem ------------------------------------------------------------------------- rem JBoss Bootstrap Script for Win32 rem ------------------------------------------------------------------------- rem $Id: run.bat 6564 2008-06-26 13:51:05Z gunterze $ @if not "%ECHO%" == "" echo %ECHO% @if "%OS%" == "Windows_NT" setlocal set DIRNAME=.\ if "%OS%" == "Windows_NT" set DIRNAME=%~dp0% set PROGNAME=run.bat if "%OS%" == "Windows_NT" set PROGNAME=%~nx0% pushd %DIRNAME%.. set JBOSS_HOME=%CD% popd REM Add JBOSS_HOME/bin to the PATH set PATH=%JBOSS_HOME%\bin;%PATH% REM Add bin/native to the PATH if present if exist "%JBOSS_HOME%\bin\native" set PATH=%JBOSS_HOME%\bin\native;%PATH% if exist "%JBOSS_HOME%\bin\native" set JAVA_OPTS=%JAVA_OPTS% -Djava.library.path="%JBOSS_HOME%\bin\native" rem Read all command line arguments REM REM The %ARGS% env variable commented out in favor of using %* to include REM all args in java command line. See bug #840239. [jpl] REM REM set ARGS= REM :loop REM if [%1] == [] goto endloop REM set ARGS=%ARGS% %1 REM shift REM goto loop REM :endloop rem Find run.jar, or we can't continue set RUNJAR=%JBOSS_HOME%\bin\run.jar if exist "%RUNJAR%" goto FOUND_RUN_JAR echo Could not locate %RUNJAR%. Please check that you are in the echo bin directory when running this script. goto END :FOUND_RUN_JAR if not "%JAVA_HOME%" == "" goto ADD_TOOLS set JAVA=java echo JAVA_HOME is not set. Unexpected results may occur. echo Set JAVA_HOME to the directory of your local JDK to avoid this message. goto SKIP_TOOLS :ADD_TOOLS set JAVA=%JAVA_HOME%\bin\java rem A full JDK with toos.jar is not required anymore since jboss web packages rem the eclipse jdt compiler and javassist has its own internal compiler. if not exist "%JAVA_HOME%\lib\tools.jar" goto SKIP_TOOLS rem If exists, point to the JDK javac compiler in case the user wants to rem later override the eclipse jdt compiler for compiling JSP pages. set JAVAC_JAR=%JAVA_HOME%\lib\tools.jar :SKIP_TOOLS rem If JBOSS_CLASSPATH or JAVAC_JAR is empty, don't include it, as this will rem result in including the local directory in the classpath, which makes rem error tracking harder. if not "%JAVAC_JAR%" == "" set RUNJAR=%JAVAC_JAR%;%RUNJAR% if "%JBOSS_CLASSPATH%" == "" set RUN_CLASSPATH=%RUNJAR% if "%RUN_CLASSPATH%" == "" set RUN_CLASSPATH=%JBOSS_CLASSPATH%;%RUNJAR% set JBOSS_CLASSPATH=%RUN_CLASSPATH% rem Setup JBoss specific properties set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name=%PROGNAME% rem Add -server to the JVM options, if supported "%JAVA%" -version 2>&1 | findstr /I hotspot > nul if not errorlevel == 1 (set JAVA_OPTS=%JAVA_OPTS% -server) rem JVM memory allocation pool parameters. Modify as appropriate. set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m rem With Sun JVMs reduce the RMI GCs to once per hour set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 rem Set app.name used in emitted audit log messages set JAVA_OPTS=%JAVA_OPTS% -Dapp.name=dcm4chee rem Set Node Name displayed in web login page rem (display hostname if dcm4che.archive.nodename isn't set) rem set JAVA_OPTS=%JAVA_OPTS% -Ddcm4che.archive.nodename=DCM4CHEE rem JPDA options. Uncomment and modify as appropriate to enable remote debugging. rem set JAVA_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y %JAVA_OPTS% rem Setup the java endorsed dirs set JBOSS_ENDORSED_DIRS=%JBOSS_HOME%\lib\endorsed rem Enable remote access to jboss services and web interface if "%JBOSS_BIND_ADDR%" == "" set JBOSS_BIND_ADDR=0.0.0.0 rem Sample SSL debugging option: rem set JAVA_OPTS=%JAVA_OPTS% -Djavax.net.debug=ssl,handshake,data,trustmanager,help rem set JAVA_OPTS=%JAVA_OPTS% -Djavax.net.debug=ssl,handshake echo =============================================================================== echo. echo JBoss Bootstrap Environment echo. echo JBOSS_HOME: %JBOSS_HOME% echo. echo JAVA: %JAVA% echo. echo JAVA_OPTS: %JAVA_OPTS% echo. echo CLASSPATH: %JBOSS_CLASSPATH% echo. echo =============================================================================== echo. :RESTART "%JAVA%" %JAVA_OPTS% "-Djava.endorsed.dirs=%JBOSS_ENDORSED_DIRS%" -classpath "%JBOSS_CLASSPATH%" org.jboss.Main -b %JBOSS_BIND_ADDR% %* if ERRORLEVEL 10 goto RESTART :END if "%NOPAUSE%" == "" pause :END_NO_PAUSE
medicayun/medicayundicom
dcm4jboss-all/tags/DCM4CHEE_2_14_5/dcm4jboss-sar/src/etc/bin/run.bat
bat
apache-2.0
4,379
"%PYTHON%" setup.py clean "%PYTHON%" setup.py install if errorlevel 1 exit 1
danielparton/omnia-md-conda-recipes
pyhmc/bld.bat
bat
mit
77
if not exist bin\kblayout.cer ( makecert -r -pe -ss PrivateCertStore -n "CN=kblayout" bin\kblayout.cer ) signtool sign /v /s PrivateCertStore /n kblayout /t http://timestamp.verisign.com/scripts/timestamp.dll "bin\amd64\kblayout.sys"
lionicsheriff/KmKbLayout
src/installer/selfsign.bat
bat
mit
234
echo off mode 1000 cls title Fastboot Unbrick Script by Aravind V Nair echo. echo This script is made by Aravind V. Nair only for Motorola Android devices. echo. echo Please do not try on other devices. echo. echo You can find methods to contact me by searching Google for my name - 'Aravind V. Nair'. echo. echo Are you ready to unbrick? Else, press Ctrl + C. echo. pause echo Are you sure? Okay, do not interrupt the process. Let the program finish. echo. echo Flashing boot partition echo. fastboot flash boot boot.img timeout /t 2 echo. echo Flashing recovery partition echo. fastboot flash recovery recovery.img timeout /t 2 echo. echo Flashing system partition echo. fastboot flash system system.img_sparsechunk.0 timeout /t 2 fastboot flash system system.img_sparsechunk.1 timeout /t 2 fastboot flash system system.img_sparsechunk.2 timeout /t 2 fastboot flash system system.img_sparsechunk.3 timeout /t 2 echo. echo Flashing modem partition echo. fastboot flash modem NON-HLOS.bin timeout /t 2 echo. echo Wiping modem backups fastboot erase modemst1 timeout /t 2 fastboot erase modemst2 timeout /t 2 echo. echo Flashing fsg partition echo. fastboot flash fsg fsg.mbn timeout /t 2 echo Wiping cache partition echo. fastboot erase cache timeout /t 2 echo Wiping userdata partition echo. fastboot erase userdata timeout /t 2 echo Device rebooting. echo. fastboot reboot echo Script processed successfully. If device still doesn't work, make sure the files are correct and drivers are installed. echo. echo on pause
aravindvnair99/Motorola-Moto-E-XT1022-condor-unbrick
Fastboot Unbrick/Fastboot Unbrick.bat
bat
mit
1,587
set date_tmp=%date:/=% set time_tmp=%time: =0% set yyyy=%date_tmp:~0,4% set yy=%date_tmp:~2,2% set mm=%date_tmp:~4,2% set dd=%date_tmp:~6,2% set hh=%time_tmp:~0,2% set mi=%time_tmp:~3,2% set ss=%time_tmp:~6,2% set sss=%time_tmp:~9,2% rem tail -f ..\fuel\app\logs\%yyyy%\%mm%\%dd%.php tail -f ..\fuel\app\logs\%yyyy%\%mm%\%dd%.php pause
marietta-adachi/website
docs/log.bat
bat
mit
347
call "%~dp0diy\libs\app-englishextra\.compile.bat" call "%~dp0diy\libs\sitemap\.compile.bat" pause
englishextra/app-englishextra.rhcloud.com
.compile.bat
bat
mit
100
@echo off Set root=D:\CAD-Sicherung Set MEPVERSION=MEP 2014 ECHO Sollen die lokalen Daten auf den zentralen Rechner kopiert werden? SET /P X=(J)a oder (N)ein? IF /I "%X%"=="J" goto :JACOPY IF /I "%X%"=="N" goto :NEINCOPY :JACOPY echo lokaler user content robocopy /MIR "%APPDATA%\Autodesk\%MEPVERSION%\deu\Support" "%root%\%MEPVERSION%\User" echo lokaler globaler content robocopy /MIR "%ALLUSERSPROFILE%\Autodesk\%MEPVERSION%\deu" "%root%\%MEPVERSION%\Global" echo application plugins robocopy /MIR "%APPDATA%\Autodesk\ApplicationPlugins" "%root%\Plugins" echo application plugins robocopy /MIR "%APPDATA%\CadDev\CadDevLoader" "%root%\CadDevLoader" :NEINCOPY cls :ENDE rem pause
BIMUpYourLife/ContentUpYourLife
_Software/Softwareverteilung/_01_AMEAdmin2Network_2014.cmd
bat
cc0-1.0
686
@echo off set FILE=%1 set STR=%2 if "%STR%" == "" goto end_of_script :loop shift if "%2" == "" goto end set STR=%STR% %2 goto loop :end echo %STR%>> %FILE% :end_of_script
lpproj/freecom_dbcs
scripts/echoto.bat
bat
gpl-2.0
187
@setlocal @set BuildDir=%~dp0.. @call "%BuildDir%\win_scripts\setup_folders.bat" @call "%BuildDir%\win_scripts\vs_open_cmake_gui.bat" "%SolutionVS2022Dir%" @endlocal
TheAssemblyArmada/Thyme
tools/build/win_x86/vs2022_open_cmake_gui.bat
bat
gpl-2.0
168
for /d %%g IN (*) DO ( pushd "%GBC%\net\%LNCH%\%ACARC%" if "%GGOFF%"=="1" "%GBC%\fart.exe" "arc.cfg" [DSK] --remove if "%GGOFF%"=="1" "%GBC%\fart.exe" "arc.cfg" [DSK1] --remove if "%GGOFF%"=="1" "%GBC%\fart.exe" "arc.cfg" [DSK2] --remove if "%GGOFF%"=="1" "%GBC%\fart.exe" "arc.cfg" [DSK3] --remove if "%GGOFF%"=="1" copy /Y "%GBC%\net\%LNCH%\%ACARC%\arc.cfg" "%%~g" set CSTM=%%~g pushd "%%~g" call :rominj if "%RECONF%"=="1" CALL "%GBC%\%SHRTN%inject.bat" popd ) exit /b :rominj call "%GBC%\CreateGamSubDir.bat" for /f "tokens=* delims= " %%a in ('dir /s/b/a-d-h "*.adf" "*.apd" "*.fdi"') do ( SET ROMN=%%~a SET ROMD=%%~na set ROME=%%~xa set ROMF=%%~nxa CALL :EACHROM ) exit /b :EACHROM if exist "%ROMD%.bat" CALL :ROME if not exist "%ROMD%.bat" CALL :ROMD exit /b :ROMD copy "..\zz.bat" "%CD%" rename "zz.bat" "%ROMD%.bat" "%GBC%\fart.exe" "%ROMD%.bat" [ROMNAME] "%ROMN%" exit /b :ROME copy "..\zz.bat" "%CD%" rename "zz.bat" "%ROME%.bat" "%GBC%\fart.exe" "%ROME%.bat" [ROMNAME] "%ROMN%" exit /b
HoodlumDTX/rom-jacket
extinjACARC1.bat
bat
gpl-2.0
1,044
cmd_lib/lib.a := rm -f lib/lib.a; /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs lib/lib.a lib/argv_split.o lib/cmdline.o lib/ctype.o lib/dec_and_lock.o lib/decompress.o lib/decompress_inflate.o lib/dump_stack.o lib/extable.o lib/flex_array.o lib/idr.o lib/int_sqrt.o lib/ioremap.o lib/irq_regs.o lib/is_single_threaded.o lib/klist.o lib/kobject.o lib/kobject_uevent.o lib/kref.o lib/memory_alloc.o lib/plist.o lib/prio_heap.o lib/prio_tree.o lib/proportions.o lib/radix-tree.o lib/ratelimit.o lib/rbtree.o lib/reciprocal_div.o lib/rwsem.o lib/sha1.o lib/show_mem.o lib/string.o lib/vsprintf.o
doadin/samsung-kernel-msm7x30-Doadin
lib/.lib.a.cmd
bat
gpl-2.0
621
nmake /f base.mak if errorlevel 1 goto build_error cd base ..\mapsym comdd copy comdd.sy? \\oc_gilroy\cee\comm cd .. goto end :build_error echo. echo failed to build comdd echo. :end
OS2World/APP-COMM-ComScope
COMI/mcc.cmd
bat
gpl-2.0
184
cmd_sound/pci/lx6464es/built-in.o := rm -f sound/pci/lx6464es/built-in.o; /home/pasquale/android/arm-2009q3/bin/arm-none-eabi-ar rcs sound/pci/lx6464es/built-in.o
p500-ics-cm9/Franco-ICS-Kernel
sound/pci/lx6464es/.built-in.o.cmd
bat
gpl-2.0
164
cmd_net/ipv6/netfilter/built-in.o := rm -f net/ipv6/netfilter/built-in.o; ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ar rcs net/ipv6/netfilter/built-in.o
spacecaker/CM7_Space_Kernel_Cooper
net/ipv6/netfilter/.built-in.o.cmd
bat
gpl-2.0
162
cmd_mm/thrash.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,mm/.thrash.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(thrash)" -D"KBUILD_MODNAME=KBUILD_STR(thrash)" -c -o mm/thrash.o mm/thrash.c deps_mm/thrash.o := \ mm/thrash.c \ include/linux/jiffies.h \ include/linux/math64.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/const.h \ arch/arm/plat-pnx/include/mach/memory.h \ $(wildcard include/config/nkernel.h) \ $(wildcard include/config/mach/pnx/realloc.h) \ $(wildcard include/config/android/pmem.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/linux/linkage.h \ /data/embedded/acer/acergit/linux/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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \ include/asm/nkern.h \ $(wildcard include/config/nkernel/console.h) \ include/asm/nk/f_nk.h \ include/asm/nk/nk_f.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.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/embedded/acer/acergit/linux/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 \ 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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.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/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/timex.h \ $(wildcard include/config/no/hz.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \ arch/arm/plat-pnx/include/mach/timex.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/errno.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/wait.h \ /data/embedded/acer/acergit/linux/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/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /data/embedded/acer/acergit/linux/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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/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/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/prio_tree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \ include/linux/completion.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \ arch/arm/plat-pnx/include/mach/vmalloc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.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/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kref.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.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/preempt/rcu.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.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/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ include/linux/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.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 \ /data/embedded/acer/acergit/linux/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/security.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/swap.h \ $(wildcard include/config/migration.h) \ $(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \ include/linux/memcontrol.h \ $(wildcard include/config/cgroup/mem/cont.h) \ include/linux/cgroup.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/node.h \ include/linux/sysdev.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ include/linux/stat.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \ $(wildcard include/config/gcov/profile.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ mm/thrash.o: $(deps_mm/thrash.o) $(deps_mm/thrash.o):
yohanes/Acer-BeTouch-E130-Linux-Kernel
mm/.thrash.o.cmd
bat
gpl-2.0
19,846
cmd_net/built-in.o := /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/built-in.o net/socket.o net/core/built-in.o net/ethernet/built-in.o net/802/built-in.o net/sched/built-in.o net/netlink/built-in.o net/netfilter/built-in.o net/ipv4/built-in.o net/xfrm/built-in.o net/unix/built-in.o net/ipv6/built-in.o net/packet/built-in.o net/key/built-in.o net/bluetooth/built-in.o net/wireless/built-in.o net/rfkill/built-in.o net/ieee802154/built-in.o net/sysctl_net.o net/activity_stats.o
doadin/samsung-kernel-msm7x30-Doadin
net/.built-in.o.cmd
bat
gpl-2.0
523
cmd_arch/arm/mm/cache-v7.o := /home/friedrich420/kernel/s4/S4GEKernel/scripts/gcc-wrapper.py /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-gcc -Wp,-MD,arch/arm/mm/.cache-v7.o.d -nostdinc -isystem /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/../lib/gcc/arm-eabi/4.7/include -I/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/friedrich420/kernel/s4/S4GEKernel/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 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -Wa,-march=armv7-a -c -o arch/arm/mm/cache-v7.o arch/arm/mm/cache-v7.S source_arch/arm/mm/cache-v7.o := arch/arm/mm/cache-v7.S deps_arch/arm/mm/cache-v7.o := \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/arm/errata/764369.h) \ /home/friedrich420/kernel/s4/S4GEKernel/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/s4/S4GEKernel/arch/arm/include/asm/linkage.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ arch/arm/include/generated/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ /home/friedrich420/kernel/s4/S4GEKernel/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/s4/S4GEKernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/hwcap.h \ /home/friedrich420/kernel/s4/S4GEKernel/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) \ /home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/unwind.h \ $(wildcard include/config/arm/unwind.h) \ arch/arm/mm/proc-macros.S \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/lpae.h) \ $(wildcard include/config/cpu/dcache/writethrough.h) \ $(wildcard include/config/pm/sleep.h) \ /home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ arch/arm/mm/cache-v7.o: $(deps_arch/arm/mm/cache-v7.o) $(deps_arch/arm/mm/cache-v7.o):
friedrich420/S4-GPE-AEL-Kernel-4.4.3
arch/arm/mm/.cache-v7.o.cmd
bat
gpl-2.0
3,664
cmd_archival/libarchive/decompress_unzip.o := gcc -Wp,-MD,archival/libarchive/.decompress_unzip.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(decompress_unzip)" -D"KBUILD_MODNAME=KBUILD_STR(decompress_unzip)" -c -o archival/libarchive/decompress_unzip.o archival/libarchive/decompress_unzip.c deps_archival/libarchive/decompress_unzip.o := \ archival/libarchive/decompress_unzip.c \ $(wildcard include/config/desktop.h) \ /usr/include/setjmp.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/bits/predefs.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/setjmp2.h \ include/libbb.h \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/busybox/exec/path.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \ /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \ /usr/include/ctype.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/xlocale.h \ /usr/include/dirent.h \ /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/uio.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/inttypes.h \ /usr/include/netdb.h \ /usr/include/netinet/in.h \ /usr/include/x86_64-linux-gnu/sys/socket.h \ /usr/include/x86_64-linux-gnu/sys/uio.h \ /usr/include/x86_64-linux-gnu/bits/socket.h \ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ /usr/include/x86_64-linux-gnu/asm/socket.h \ /usr/include/asm-generic/socket.h \ /usr/include/x86_64-linux-gnu/asm/sockios.h \ /usr/include/asm-generic/sockios.h \ /usr/include/x86_64-linux-gnu/bits/socket2.h \ /usr/include/x86_64-linux-gnu/bits/in.h \ /usr/include/rpc/netdb.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/netdb.h \ /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/x86_64-linux-gnu/sys/poll.h \ /usr/include/x86_64-linux-gnu/bits/poll.h \ /usr/include/x86_64-linux-gnu/sys/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctls.h \ /usr/include/x86_64-linux-gnu/asm/ioctls.h \ /usr/include/asm-generic/ioctls.h \ /usr/include/linux/ioctl.h \ /usr/include/x86_64-linux-gnu/asm/ioctl.h \ /usr/include/asm-generic/ioctl.h \ /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ /usr/include/x86_64-linux-gnu/sys/mman.h \ /usr/include/x86_64-linux-gnu/bits/mman.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/sys/time.h \ /usr/include/x86_64-linux-gnu/sys/wait.h \ /usr/include/x86_64-linux-gnu/sys/resource.h \ /usr/include/x86_64-linux-gnu/bits/resource.h \ /usr/include/termios.h \ /usr/include/x86_64-linux-gnu/bits/termios.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/x86_64-linux-gnu/sys/param.h \ /usr/include/linux/param.h \ /usr/include/x86_64-linux-gnu/asm/param.h \ /usr/include/asm-generic/param.h \ /usr/include/mntent.h \ /usr/include/paths.h \ /usr/include/x86_64-linux-gnu/sys/statfs.h \ /usr/include/x86_64-linux-gnu/bits/statfs.h \ /usr/include/pwd.h \ /usr/include/grp.h \ /usr/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ include/archive.h \ $(wildcard include/config/feature/tar/uname/gname.h) \ $(wildcard include/config/tar.h) \ $(wildcard include/config/dpkg.h) \ $(wildcard include/config/dpkg/deb.h) \ $(wildcard include/config/feature/tar/gnu/extensions.h) \ $(wildcard include/config/feature/tar/to/command.h) \ $(wildcard include/config/feature/tar/selinux.h) \ $(wildcard include/config/cpio.h) \ $(wildcard include/config/rpm2cpio.h) \ $(wildcard include/config/rpm.h) \ $(wildcard include/config/feature/ar/create.h) \ archival/libarchive/decompress_unzip.o: $(deps_archival/libarchive/decompress_unzip.o) $(deps_archival/libarchive/decompress_unzip.o):
muthumani2/Muthu-busybox
archival/libarchive/.decompress_unzip.o.cmd
bat
gpl-2.0
10,133
@ECHO OFF REM The following directory is for .NET 2.0 set DOTNETFX2=%SystemRoot%\Microsoft.NET\Framework\v2.0.50727 set PATH=%PATH%;%DOTNETFX2% echo Uninstalling Test Case Server Service... echo --------------------------------------------------- InstallUtil /u TestCaseServer.exe echo --------------------------------------------------- echo Done.
decriptor/tccomplete
utils/uninstall.bat
bat
gpl-2.0
364
set DRIVER=snd5_98 nasmw -f bin -o %DRIVER%.com %DRIVER%.asm
rururutan/hoot-patches
pc98/nihon_create/sound5/src/comp.bat
bat
gpl-3.0
61
cmd_/home/malditasea/Documentos/git/SO/practicas/p4/Chardev/chardev.ko := ld -r -m elf_x86_64 -T ./scripts/module-common.lds --build-id -o /home/malditasea/Documentos/git/SO/practicas/p4/Chardev/chardev.ko /home/malditasea/Documentos/git/SO/practicas/p4/Chardev/chardev.o /home/malditasea/Documentos/git/SO/practicas/p4/Chardev/chardev.mod.o ; true
javimv36/SO
practicas/p4/Chardev/.chardev.ko.cmd
bat
gpl-3.0
351
@ECHO OFF REM $Id: REM REM (C) 2009-2014 see Authors.txt REM REM This file is part of MPC-BE. REM REM MPC-BE 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 3 of the License, or REM (at your option) any later version. REM REM MPC-BE 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/>. CALL ..\build.bat clean All VS2013
WinnerSoftLab/WinnerMediaPlayer
build/build_2013_clean_all.bat
bat
gpl-3.0
801
..\..\..\..\php\php -f templater.php -- -c templater-attrs.html.t > templater-attrs.php
seriousteam/azphplib
server/php/templater-test.cmd
bat
gpl-3.0
90
@echo off setlocal set SCRIPT_DIR=%~dp0% cd %SCRIPT_DIR% set APP_HOME=%cd% set APP_CLASSPATH=etc;lib/*;lib/ext/* set MAIN_CLASS=com.anthavio.disquo.browser.DisqusBrowserJettyMain set APP_OPTS= set JMX_PORT=9013 set JAVA_OPTS=-Xmx128m -XX:+HeapDumpOnOutOfMemoryError rem set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.port=%JMX_PORT% -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false rem set JAVA_OPTS=%JAVA_OPTS% -Dwebconsole.type=properties -Dwebconsole.jms.url=tcp://localhost:61616 -Dwebconsole.jmx.url=service:jmx:rmi:///jndi/rmi://localhost:%JMX_PORT%/jmxrmi -Dwebconsole.jmx.role=sibsim -Dwebconsole.jmx.password=kokosak set JAVA_OPTS=%JAVA_OPTS% -Dlogback.configurationFile=etc/logback.xml rem echo java %JAVA_OPTS% -cp %APP_CLASSPATH% %MAIN_CLASS% %APP_OPTS% %JAVA_HOME%/bin/java %JAVA_OPTS% -cp %APP_CLASSPATH% %MAIN_CLASS% %APP_OPTS% endlocal
anthavio/conservatory
conservatory-server/src/assembly/conserv/conserv.bat
bat
lgpl-3.0
936
@setlocal @echo off :: Encrypts the file specified. :: See the bottom of the file for usage. :: created by wasatchwizard :: http://tombuntu.com/index.php/2007/12/12/simple-file-encryption-with-openssl/ :: This batch requires [`openssl.exe`](http://www.openssl.org/) to be in your path. :: You can get Windows binaries (or an installer) from the following: :: * [Binary Distributions](http://www.openssl.org/related/binaries.html) :: ** [Shining Light Productions](http://slproweb.com/products/Win32OpenSSL.html) :: * [gnuwin32 openssl](http://gnuwin32.sourceforge.net/packages/openssl.htm) :: I highly recommended that you also have [`sdelete.exe`](http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx) :: from SysInternals' suite of utilities (now part of Microsoft TechNet). :: `sdelete.exe` is used to securely delete the original file after encrypting/decrypting. :: You can change the encryption method here, however, I'm pretty sure that `aes-256-cbc` :: is about the best. Type `openssl --help` to see all options. set cipher=aes-256-cbc :main if "%~1"=="" goto :usage if "%~1"=="/?" goto :usage if "%~1"=="--help" goto :usage set infile=%~1 set tmpfile=%~1.encrypted if not "%~2"=="" ( set outfile=%~2 ) if "%~2"=="" ( set outfile=%~1 ) :: The 'encrypting' text was created by [asciimo](https://github.com/Marak/asciimo). :: Type the following: `asciimo "encrypting" jazmine` echo o o echo 8 echo .oPYo. odYo. .oPYo. oPYo. o o .oPYo. o8P o8 odYo. .oPYo. echo 8oooo8 8' `8 8 ' 8 `' 8 8 8 8 8 8 8' `8 8 8 echo 8. 8 8 8 . 8 8 8 8 8 8 8 8 8 8 8 echo `Yooo' 8 8 `YooP' 8 `YooP8 8YooP' 8 8 8 8 `YooP8 echo :.....:..::..:.....:..:::::....8 8 ....:::..::....::..:....8 echo ::::::::::::::::::::::::::::ooP'.8 :::::::::::::::::::::ooP'. echo ::::::::::::::::::::::::::::...::..:::::::::::::::::::::...:: echo. echo a simple wrapper for using openssl.exe to encrypt files echo batch file created by wasatchwizard echo. echo input file: %infile% echo output: %outfile% echo. where.exe openssl >NUL if %errorlevel% neq 0 ( echo Could not find openssl... echo Is it in your path? echo exiting. pause @endlocal && exit /B %errorlevel% ) call openssl %cipher% -a -salt -in "%infile%" -out "%tmpfile%" if %errorlevel% neq 0 ( echo There as an error running openssl. echo exiting... pause @endlocal && exit /B %errorlevel% ) where.exe sdelete.exe >NUL if %errorlevel% neq 0 ( echo Could not find sdelete.exe... echo It is more secure to use sdelete, rather than DEL. echo Please put it in your path. pause call del /Q "%outfile%" >NUL ) else ( call sdelete.exe -p 8 "%outfile%" >NUL ) call move "%tmpfile%" "%outfile%" @endlocal && exit /B 0 :usage :: The 'encrypt' text was created by [asciimo](https://github.com/Marak/asciimo). :: Type the following: `asciimo " encrypt " jazmine` echo. echo o echo 8 echo .oPYo. odYo. .oPYo. oPYo. o o .oPYo. o8P echo 8oooo8 8' `8 8 ' 8 `' 8 8 8 8 8 echo 8. 8 8 8 . 8 8 8 8 8 8 echo `Yooo' 8 8 `YooP' 8 `YooP8 8YooP' 8 echo :::.....:..::..:.....:..:::::....8 8 ....:::..::: echo ::::::::::::::::::::::::::::::ooP'.8 :::::::::::: echo ::::::::::::::::::::::::::::::...::..:::::::::::: echo. echo simple wrapper using openssl to encrypt files echo batch file created by wasatchwizard echo. echo USAGE: echo. echo $ %~n0 file echo. echo Performs in-place encryption of 'file'. echo WARNING: This overwrites existing file! echo. echo $ %~n0 infile outfile echo. echo Encrypts 'infile' and saves to 'outfile'. echo. @endlocal && exit /B 0
kodybrown/dos
encrypt.bat
bat
unlicense
4,374
@echo off set HADOOP_HOME=E:\TK-tarunw\reqsol\ecosystem\hadoop-2.7.3 set HADOOP_COMMON_HOME=%HADOOP_HOME%\share\hadoop\common set HADOOP_HDFS_HOME=%HADOOP_HOME%\share\hadoop\hdfs set HADOOP_MAPRED_HOME=%HADOOP_HOME%\share\hadoop\mapreduce set HADOOP_YARN_HOME=%HADOOP_HOME%\share\hadoop\yarn set SQOOP_BASEDIR=E:\TK-tarunw\reqsol\ecosystem\sqoop-1.99.7-bin-hadoop200 set DEFAULT_SQOOP_CONF_DIR=%SQOOP_BASEDIR%\conf set SQOOP_IDENT_STRING=%USER% set SQOOP_PID_DIR=%SQOOP_BASEDIR%\tmp set sqoop_pidfile=%SQOOP_PID_DIR%\sqoop-tarunwalia-jetty-server.pid" set JAVA_OPTS=-Dsqoop.config.dir=%DEFAULT_SQOOP_CONF_DIR% set SQOOP_CLIENT_LIB=%SQOOP_BASEDIR%\shell\lib\* set SQOOP_SERVER_LIB=%SQOOP_BASEDIR%\server\lib\* set SQOOP_TOOLS_LIB=%SQOOP_BASEDIR%\tools\lib\* set HADOOP_COMMON_HOME_LIB=%HADOOP_HOME%\share\hadoop\common\lib\* set HADOOP_HDFS_HOME_LIB=%HADOOP_HOME%\share\hadoop\hdfs\lib\* set HADOOP_MAPRED_HOME_LIB=%HADOOP_HOME%\share\hadoop\mapreduce\lib\* set HADOOP_YARN_HOME_LIB=%HADOOP_HOME%\share\hadoop\yarn\lib\* set HADOOP_COMMON_LIB=%HADOOP_HOME%\share\hadoop\common\* set HADOOP_HDFS_LIB=%HADOOP_HOME%\share\hadoop\hdfs\* set HADOOP_MAPRED_LIB=%HADOOP_HOME%\share\hadoop\mapreduce\* set HADOOP_YARN_LIB=%HADOOP_HOME%\share\hadoop\yarn\* set CLASSPATH= %HADOOP_MAPRED_LIB%;%SQOOP_SERVER_LIB%;%SQOOP_CLIENT_LIB%;%SQOOP_TOOLS_LIB%;%HADOOP_COMMON_HOME_LIB%;%HADOOP_HDFS_HOME_LIB%,%HADOOP_MAPRED_HOME_LIB%;%HADOOP_YARN_HOME_LIB%;%HADOOP_COMMON_LIB%;%HADOOP_HDFS_LIB%;%HADOOP_MAPRED_LIB%;%HADOOP_YARN_LIB% java %JAVA_OPTS% -cp %CLASSPATH% org.apache.sqoop.server.SqoopJettyServer
TK-TarunW/ecosystem
sqoop-1.99.7-bin-hadoop200/bin/server.bat
bat
apache-2.0
1,595
@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% 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\the_perfect_hello_world.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\the_perfect_hello_world.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
olooney/the-perfect-hello-world
docs/make.bat
bat
apache-2.0
7,015
mkdir build cd build REM Configure step cmake -G "Ninja" -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" ^ -DCMAKE_BUILD_TYPE=Release ^ -DOCE_NO_LIBRARY_VERSION=ON ^ -DOCE_BUILD_SHARED_LIB=OFF ^ -DOCE_TESTING=OFF ^ -DOCE_USE_PCH=OFF ^ -DCMAKE_PREFIX_PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_SYSTEM_PREFIX_PATH="%LIBRARY_PREFIX%" ^ -DOCE_INSTALL_LIB_DIR=lib ^ -DOCE_INSTALL_BIN_DIR=bin ^ -DOCE_MULTITHREAD_LIBRARY=OPENMP ^ -DOCE_WITH_FREEIMAGE=ON ^ -DOCE_INSTALL_PREFIX="%LIBRARY_PREFIX%" -DOCE_ENABLE_DEB_FLAG=OFF .. if errorlevel 1 exit 1 REM Build step ninja if errorlevel 1 exit 1 REM Install step ninja install if errorlevel 1 exit 1 REM Fix hardcoded absolute freetype and freeimage paths python %RECIPE_DIR%\fixpaths.py "%LIBRARY_PREFIX%\cmake\OCE-libraries-release.cmake" "%LIBRARY_PREFIX%"\lib\ if errorlevel 1 exit 1
DLR-SC/tigl
ci/conda/oce-static/bld.bat
bat
apache-2.0
832
cd "../../" START start_solr.bat @ping 127.0.0.1 -n 3 -w 1000 > nul cd "PRACTICE/TEST/" START delete_all_data.bat @ping 127.0.0.1 -n 1 -w 1000 > nul START add_data.bat
pulipulichen/ir-practice-solr
PRACTICE/TEST/reset.bat
bat
apache-2.0
167
emcc -s Box2D.bc Bullet.bc lua.bc lodepng.bc xxhash.bc jsoncpp.bc Game.bc Engine.bc HTML.bc -o propeller.html -s ALLOW_MEMORY_GROWTH=1 --preload-file data/ REM % ALLOW_MEMORY_GROWTH=1
LauriM/PropellerEngine
linkHTML.bat
bat
bsd-2-clause
185
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASCON.S01_Sync.MSASCON_S01_TC08_Sync_Status164 /testcontainer:..\..\MS-ASCON\TestSuite\bin\Debug\MS-ASCON_TestSuite.dll /runconfig:..\..\MS-ASCON\MS-ASCON.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeActiveSync/Source/Scripts/MS-ASCON/RunMSASCON_S01_TC08_Sync_Status164.cmd
bat
mit
275
@echo off setlocal color 07 pushd %~dp0 cd .. cls ECHO ---------------------------- ECHO Restore Tools ECHO ---------------------------- dotnet tool restore --no-cache if errorlevel 1 ( GOTO :end ) ECHO ---------------------------- ECHO dotnet Restore ECHO ---------------------------- dotnet restore .\src --no-cache if errorlevel 1 ( GOTO :end ) :end exit /b %errorlevel%
15below/Ensconce
.scripts/restore.cmd
bat
mit
381
keytool -genkey -keyalg RSA -alias selfsigned -keystore src/main/resources/keystore.jks -storepass password -validity 360 -keysize 2048
lreimer/secure-programming-101
secpro-webapp/genkey.bat
bat
mit
135
cmd_init/built-in.o := /home/amit/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ld -EL -r -o init/built-in.o init/main.o init/version.o init/mounts.o init/initramfs.o init/calibrate.o
MadManA/MadKernel_cooper
init/.built-in.o.cmd
bat
gpl-2.0
211
@if (@CodeSection == @Batch) @then @echo off setlocal rem TODO: Check if java is installed and if not install! rem // Get repo version from config.properties rem this is for when the code works properly on windows with updateRepo, watchout the 10 characters could be wrong! rem for /F "delims=" %%a in ('findstr /I "updateRepo" %HOMEPATH%/3dPrinters/config.properties') do set "updateRepo=%%a" for /F "delims=" %%a in ('findstr /I "printerProfileRepo" config.properties') do set "updateRepo=%%a" IF NOT "%1"=="" ( set updateRepo=%1 ) ELSE ( IF "%updateRepo%"=="" ( set updateRepo=area515/Photonic3D ) ELSE ( rem set updateRepo=%updateRepo:~10% when changing to updateREpo set updateRepo=%updateRepo:~19% ) ) echo %updateRepo% rem // download dependencies (unzip and curl) **WARNING** bitsadmin.exe is deprecated but seems available from xp to win10 for now! rem // Might break in future but windows has no proper alternative rem // also it's extremely slow to start connecting! But hey it works(ish) if NOT exist %CD%\unzip.exe ( echo installing unzip.exe bitsadmin.exe /transfer "Unzip.exe" https://github.com/%updateRepo%/raw/master/host/bin/unzip.exe "%cd%\unzip.exe" ) if NOT exist %CD%\curl\bin\curl.exe ( echo installing curl IF NOT exist curl.zip ( bitsadmin.exe /transfer "Curl" https://github.com/%updateRepo%/raw/master/host/bin/curl.zip "%cd%\curl.zip" unzip -o curl.zip ) ELSE ( unzip -o curl.zip ) del -Q curl.zip ) rem // Get latest release file from github %CD%\curl\bin\curl -outf https://api.github.com/repos/%updateRepo%/releases/latest rem // Set location of downloaded release file (json) set "latestRelease=utf" rem // Find current repoversion from build.number for /F "delims=" %%a in ('findstr /I "repo.version" build.number') do set "repoVersion=%%a" rem // Cut off repo.version !WARNING! when this changes it will break the code! set repoVersion=%repoVersion:~13% rem // Jscript call to parse JSON for /f "delims=" %%I in ('cscript /nologo /e:JScript "%~f0" "%latestRelease%"') do set "%%~I" echo Network TAG: %tag_name% echo Local TAG : %repoVersion% del -Q utf rem // Determing if updating is needed IF "%tag_name%"=="~13" ( echo Download URL = %browser_download_url% %CD%\curl\bin\curl -L %browser_download_url% > Update.zip unzip -o Update java -Dlog4j.configurationFile=log4j2.properties -Djava.library.path=os/win64 -cp lib/*;. org.area515.resinprinter.server.Main > log.out 2> log.err ) ELSE ( IF "%tag_name%"=="%repoVersion%" ( echo No update needed java -Dlog4j.configurationFile=log4j2.properties -Djava.library.path=os/win64 -cp lib/*;. org.area515.resinprinter.server.Main > log.out 2> log.err ) ELSE ( echo Download URL = %browser_download_url% %CD%\curl\bin\curl -L %browser_download_url% > Update.zip unzip -o Update del -Q Update.zip java -Dlog4j.configurationFile=log4j2.properties -Djava.library.path=os/win64 -cp lib/*;. org.area515.resinprinter.server.Main > log.out 2> log.err ) ) goto :EOF @end // end batch / begin JScript chimera var fso = WSH.CreateObject('scripting.filesystemobject'), latestRelease = fso.OpenTextFile(WSH.Arguments(0), 1); eval('obj = ' + latestRelease.ReadAll()); latestRelease.Close(); function walk(tree) { for (var i in tree) { if (typeof tree[i] === 'object') walk(tree[i]); else WSH.Echo(i + '=' + tree[i]); } } walk(obj);
area515/Photonic3D
host/bin/start.bat
bat
gpl-3.0
3,396
rem <<BATFILE for /f "tokens=*" %%a in ('dir /b /od %~dp0..\tmp\b*.tar ^| find "backup_"') do set newest=%%a cd %~dp0.. if exist bin\tar.exe ( bin\tar.exe xf tmp/%newest% -C . --ignore-failed-read --ignore-command-error ) else ( %meshr:/=\%\bin\tar.exe xvf tmp/%newest% -C . --ignore-failed-read --ignore-command-error ) goto :EOF BATFILE set -x cd `dirname $0`/.. newest=`ls -alt ./tmp/backup_* | grep "backup_" | sed "s/.*backup_/backup_/g" | grep -m 1 .` tar xf ./tmp/$newest -C . --ignore-failed-read --ignore-command-error || tar xf ./tmp/$newest -C . || tar xzf ./tmp/$newest -C .
meshr-net/meshr_tomato-RT-N
lib/restore-backup.bat
bat
apache-2.0
595
..\..\src\run_inet -n .;../../src %*
martinlevesque/omnet-opendss-smart-grid-co-simulator
inetmanet/examples/traci_launchd/run.cmd
bat
gpl-3.0
37
@echo off @setlocal rem Copyright (C): 2001, 2002 Earnie Boyd rem mailto:[email protected] rem This file is part of Minimal SYStem rem http://www.mingw.org/msys.shtml rem rem File: msys.bat rem Revision: 2.0 rem Revision Date: April 17th, 2002 rem ember to set the "Start in:" field of the shortcut. rem A value similar to C:\msys\1.0\bin is what the "Start in:" field needs rem to represent. rem this should let run MSYS shell on x64 if "%PROCESSOR_ARCHITECTURE%" == "AMD64" ( SET COMSPEC=%WINDIR%\SysWOW64\cmd.exe ) rem ember value of GOTO: is used to know recursion has happened. if "%1" == "GOTO:" goto %2 rem ember command.com only uses the first eight characters of the label. set OS_VERSION="NT" goto _WindowsNT rem ember that we only execute here if we are in command.com. :_Windows set OS_VERSION="9x" if "x%COMSPEC%" == "x" set COMSPEC=command.com start %COMSPEC% /e:4096 /c %0 GOTO: _Resume %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 goto EOF rem ember that we execute here if we recursed. :_Resume for %%F in (1 2 3) do shift rem ember that we get here even in command.com. :_WindowsNT if "x%MSYSTEM%" == "x" set MSYSTEM=MINGW32 if "%1" == "MSYS" set MSYSTEM=MSYS if NOT "x%DISPLAY%" == "x" set DISPLAY= rem We here assume old behavior, to make sure that older platforms can still use rem this batch file to start their MSys environment. set BIN="" if EXIST bin\nul set BIN=bin\ if EXIST %BIN%bash.exe goto startbash if EXIST %BIN%rxvt.exe goto startrxvt rem If we're not on win9x type OSs, lets try a little better at finding bash/rxvt if "win%OS_VERSION%"=="win9x" goto failed set BIN="%~dp0bin\" if EXIST %BIN%bash.exe goto startbash if EXIST %BIN%rxvt.exe goto startrxvt :failed echo Cannot find the rxvt.exe or bash.exe binary -- aborting. pause rem exit 1 rem we skip using exit 1 here, since it will close the console you were working on rem which probably isn't what you wanted. If the bat file was run from a shortcut rem the window will still close, like you would expect it to. Sorry, you cant test rem for exit values anymore, but hey, you can just un-rem the line above then! :-) goto EOF rem If you don't want to use rxvt then rename the file rxvt.exe to something rem else. Then bash.exe will be used instead. :startrxvt rem Setup the default colors for rxvt. if "x%MSYSBGCOLOR%" == "x" set MSYSBGCOLOR=White if "x%MSYSFGCOLOR%" == "x" set MSYSFGCOLOR=Black if "x%MINGW32BGCOLOR%" == "x" set MINGW32BGCOLOR=LightYellow if "x%MINGW32FGCOLOR%" == "x" set MINGW32FGCOLOR=Navy if "%MSYSTEM%" == "MSYS" set BGCOLOR=%MSYSBGCOLOR% if "%MSYSTEM%" == "MSYS" set FGCOLOR=%MSYSFGCOLOR% if "%MSYSTEM%" == "MINGW32" set BGCOLOR=%MINGW32BGCOLOR% if "%MSYSTEM%" == "MINGW32" set FGCOLOR=%MINGW32FGCOLOR% start %COMSPEC% /c %BIN%rxvt -backspacekey  -sl 2500 -fg %FGCOLOR% -bg %BGCOLOR% -sr -fn Courier-12 -tn msys -geometry 80x25 -e /bin/bash --login -i exit :startbash call %COMSPEC% /c %BIN%bash --login -i :EOF rem ChangeLog: rem 2002.03.07 Earnie Boyd mailto:[email protected] rem * Move the @echo off to the top. rem * Change the binmode setting to nobinmode. rem * Remove the angle brackets around email address to workaround MS rem buggy command processor. rem rem 2002.03.12 Earnie Boyd mailto:[email protected] rem * Add filter logic to find rxvt.exe rem rem 2002.03.13 Earnie Boyd mailto:[email protected] rem * Revert the nobinmode change. rem rem 2002.03.20 Earnie Boyd mailto:[email protected] rem * Add logic for stating bash. rem rem 2002.04.11 Earnie Boyd mailto;[email protected] rem * Add logic for setting MSYSTEM value based on parameter. rem rem 2002.04.15 Olivier Gautherot mailto:[email protected] rem * Reduce number test conditions for finding an executable. rem rem 2002.04.15 Earnie Boyd mailto:[email protected] rem * Unset DISPLAY if set before starting shell. rem rem 2002.04.16 Earnie Boyd mailto:[email protected] rem * Remove use of DEFINED in conditional statments for variables for rem command.com support. rem * Add check for nonexistance of USERNAME variable for Win9x support. rem rem 2002.04.17 Earnie Boyd mailto:[email protected] rem * Add foreground and background color defaults based on MSYSTEM value. rem rem 2002.04.22 Earnie Boyd mailto:[email protected] rem * More Win 9x changes. rem rem 2002.05.04 Earnie Boyd mailto:[email protected] rem * Remove the SET of USERNAME and HOME. rem rem 2002.11.18 Earnie Boyd mailto:[email protected] rem * Add command.com detection and restart with a larger environment to rem avoid errors on w9x. rem Many thanks to Randy W. Sims mailto:[email protected]. rem See Randy's response to "RE: [Mingw-msys] Installation on WindowsME" rem from 11/06/2002 in the archives of [email protected]. rem rem 2002.11.19 Paul Garceau mailto:[email protected] rem * Fix a typo: Change COMPSPEC to COMSPEC. rem rem 2002.11.25 Earnie Boyd mailto:[email protected] rem * Remove the SET CYGWIN since it doesn't matter any longer. rem rem 2003.02.03 Earnie Boyd mailto:[email protected] rem * Win9x doesn't like ``EXISTS dir'' so change it to ``EXISTS dir\nul''. rem Thanks to Nicolas Weber mailto:[email protected]. rem rem 2003.03.06 Earnie Boyd mailto:[email protected] rem * Add -backspacekey switch to rxvt startup. rem * Move RXVT color setup to startrxvt label rem rem 2004.01.30 Earnie Boyd mailto:[email protected] rem * Add -geometry parameter to work around an off by one issue with rem the default values. rem Thanks to Dave Schuyler mailto:[email protected]
Tasarinan/neard
tools/git/git1.9.5/git-bash.bat
bat
lgpl-3.0
5,591
#!/bin/csh #################### # Script: showReports.cmd # This script shows the report in the production # reports/output directory #################### ls -1 $reportArea/output
VCommitter/vision
application/localvision/adminScripts/showReports.cmd
bat
bsd-3-clause
185
:: :: Microsoft Azure SDK for Net - Generate library code :: Copyright (C) Microsoft Corporation. All Rights Reserved. :: @echo off call %~dp0..\..\..\..\..\tools\generate.cmd keyvault/data-plane %*
ScottHolden/azure-sdk-for-net
src/SDKs/KeyVault/dataPlane/Microsoft.Azure.KeyVault/generate.cmd
bat
mit
200
@protoc --python_out=./ ./caffe_parse/caffe.proto @echo done. @pause
zhreshold/mxnet-ssd
tools/caffe_converter/make_win32.bat
bat
mit
69
@echo off setlocal SET _BUILD_DISABLE_SDV=Yes call buildAll.bat %*
YanVugenfirer/virtio-win-arm
viostor/build_AllNoSdv.bat
bat
bsd-2-clause
67
title NART nart
zfh1005/SugarlandPTAuto
AmbitProT/AmbitProT/Nart.bat
bat
mit
15
@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\Siilo.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Siilo.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
jpvanhal/siilo
docs/make.bat
bat
mit
5,094
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\grunt\node_modules\grunt-cli\bin\grunt" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\grunt\node_modules\grunt-cli\bin\grunt" %* )
atriumxsis/atrium
node_modules/.bin/grunt.cmd
bat
mit
224
@rem = ' vim: set filetype=perl: '; @rem = ' --*-Perl-*-- '; @rem = ' @echo off setlocal set PATH=%~dp0\perl\bin;%~dp0\bin;%PATH% perl -w "%~f0" %* exit /B %ERRORLEVEL% '; # StorScore # # Copyright (c) Microsoft Corporation # # All rights reserved. # # MIT License # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. use strict; use warnings; use File::Basename; use Digest::MD5 'md5_hex'; use English; my $script_name = basename( $PROGRAM_NAME ); my $script_dir = dirname( $PROGRAM_NAME ); unless( scalar @ARGV == 1 ) { warn "usage: $script_name OUTDIR\n"; exit(-1); } my $outdir = "$script_dir\\$ARGV[0]"; die "Directory $outdir exists\n" if -d $outdir; mkdir( $outdir ); sub my_exec { my $cmd = shift; # Unique filenames based on hash of command line my $base_filename = "$outdir\\" . md5_hex( $cmd ); my $tmp_filename = "$base_filename.tmp"; my $out_filename = "$base_filename.txt"; system( "echo $cmd > $tmp_filename" ); system( "$cmd >> $tmp_filename 2>&1" ); # Post process raw output file to remove noise open( my $in, "<$tmp_filename" ); open( my $out, ">$out_filename" ); while( my $line = <$in> ) { # Remove random temp file names $line =~ s/AppData\\\S*//; # Remove ETA info $line =~ s/\d{2}:\d{2}:\d{2} (AM|PM)//g; # Remove time from autogenerated results dir if( $line =~ /results/ ) { $line =~ s/-\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}//g; } # Remove "Done" line with overall runtime $line =~ s/^Done.*//; print $out $line; } close $in; close $out; unlink( $tmp_filename ); } sub run_one { my $args = shift; my $cmd = "storscore.cmd "; $cmd .= "--target=1234 " unless $args =~ /--target=/; $cmd .= "--pretend "; $cmd .= "--verbose "; $cmd .= "--noprompt "; my_exec( "$cmd $args" ); } sub run_matrix { my $base_args = shift; foreach my $target ( undef, 'P:', 'P:\\fake' ) { foreach my $target_type ( qw( auto ssd hdd ) ) { foreach my $recipe ( undef, 'recipes\\corners.rcp' ) { my $matrix_args; $matrix_args .= " --target_type=$target_type"; $matrix_args .= " --target=$target" if defined $target; $matrix_args .= " --recipe=$recipe" if defined $recipe; run_one( "$matrix_args $base_args" ); } } } } chdir( ".." ); # Preserve existing results directory rename( "results", "results.orig" ); # Run these error conditions just once run_one( "--this_flag_does_not_exist" ); run_one( "--io_generator=bogus" ); run_one( "--target_type=bogus" ); run_one( "--active_range=0" ); run_one( "--active_range=110" ); run_one( "--partition_bytes=1000000000 --raw_disk" ); run_one( "--compressibility=110" ); # These are the defaults anyway, so just run them once run_one( "--initialize" ); run_one( "--precondition" ); run_one( "--active_range=100" ); run_one( "--collect_smart" ); run_one( "--collect_logman" ); run_one( "--collect_power" ); run_one( "--io_generator=diskspd" ); # Run the full matrix on these run_matrix( "" ); run_matrix( "--noinitialize" ); run_matrix( "--noprecondition" ); run_matrix( "--raw_disk" ); run_matrix( "--active_range=1" ); run_matrix( "--active_range=50" ); run_matrix( "--partition_bytes=1000000000" ); run_matrix( "--demo_mode" ); run_matrix( "--test_id=regr" ); run_matrix( "--test_id_prefix=regr" ); run_matrix( "--nocollect_smart" ); run_matrix( "--nocollect_logman" ); run_matrix( "--nocollect_power" ); run_matrix( "--start_on_step=2" ); run_matrix( "--stop_on_step=2" ); run_matrix( "--test_time_override=42" ); run_matrix( "--warmup_time_override=42" ); run_matrix( "--compressibility=0" ); run_matrix( "--compressibility=1" ); run_matrix( "--compressibility=20" ); run_matrix( "--results_share=\\\\share\\dir" ); run_matrix( "--io_generator=sqlio" ); # Restore original results directory system( "rmdir /S /Q results >NUL 2>&1" ); rename( "results.orig", "results" ); print "Done! Diff $outdir directory against another run.\n";
StorScore/storscore
test/regr.cmd
bat
mit
5,121
@::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: @:: @:: m_audio -- make both verbex_other @:: @::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: nmake /nologo /fE:\Data01\program\verbexx\mk\verbexx_other.mk @IF %ERRORLEVEL% NEQ 0 ( GOTO emsg ) @GOTO end :emsg @ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ECHO @@@@@@@@@@ @ECHO @@@@@@@@@@ @ECHO @@@@@@@@@@ EEEEE RRRR RRRR OOO RRRR @ECHO @@@@@@@@@@ E R R R R O O R R @ECHO @@@@@@@@@@ EEEE RRRR RRRR O O RRRR @ECHO @@@@@@@@@@ E R R R R O O R R @ECHO @@@@@@@@@@ EEEEE R R R R OOO R R @ECHO @@@@@@@@@@ @ECHO @@@@@@@@@@ @ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ECHO @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ :end
dufferprog/verbexx
cmd/m_other.cmd
bat
mit
2,233
npm run start --argentinaTarget pause
Zequez/reddit-placebot
start_argentina.bat
bat
mit
38
@echo off @REM - This bat file should be placed into the root of the LLVM source tree @REM - It can be run from there, with no parameters to generate all the @REM - Libs for Win32 and x64 with the Debug, RelWithDebInfo, and Release @REM - configurations. setlocal set LLVM_ROOT=%~d0%~p0 @REM By default do the following: @REM 1 - Generate the build project and solutions from CMake @REM 2 - Build all the Platform\configuration combos (2x3) @REM 3 - Register the outpurt location in registry set GENERATE=1 set BUILD=1 set REGISTER=1 set LlvmVersion=3.6.1 @REM - Allow overriding default version and disabling any of the stages via parameters :arg_loop if /i "%1"=="-g-" set GENERATE=0 if /i "%1"=="-b-" set BUILD=0 if /i "%1"=="-r-" set REGISTER=0 if /i "%1"=="-v" ( set LlvmVersion=%2 shift ) if /i "%1"=="-?" goto :ShowUsage if /i "%1"=="/?" goto :ShowUsage if /i "%1"=="/h" goto :ShowUsage @rem - move to next arg and loop back around if it isn't empty shift if NOT "%1"=="" goto :arg_loop @REM - End of args parsing if NOT EXIST %LLVM_ROOT%CMakeLists.txt ( @echo CMakeLists.txt is missing, the current directory does not appear to be an LLVM source directory goto :exit ) if %GENERATE%==1 ( call :CongigureLLVMBuild x64 if %ERRORLEVEL% GTR 0 goto :exit call :CongigureLLVMBuild Win32 if %ERRORLEVEL% GTR 0 goto :exit ) if %BUILD%==1 ( call :BuildLLVMPlatform x64 if %ERRORLEVEL% GTR 0 goto :exit call :BuildLLVMPlatform Win32 if %ERRORLEVEL% GTR 0 goto :exit ) if %REGISTER%==1 ( @echo registering LLVM path in registry reg add HKCU\Software\LLVM\%LlvmVersion% /v SrcRoot /d %LLVM_ROOT% /f ) goto :exit :ShowUsage @echo. @echo Description: @echo 1) Generates the VS projects from LLVM source via CMake @echo 2) Builds the sources for win32 and x64 platforms with the Debug,Release, and RelWithDebInfo configurations @echo 3) Adds a registry entry for the location of the src and build output HKCU\SOFTWARE\LLVM\^<LlvmVersionNumber^>\SrcRoot @echo. @echo The registry entry is used by the LlvmApplication.props Propertysheet for VC projects to locate the various @echo LLVM headers and libs. Alternatively, if LLVM_SRCROOT_DIR is provided either as an environment variable @echo or as an MsBuild property for the application's build then LlvmApplication.props will use it and the registry @echo entry is not required. This is to support automated build servers where this script may be run on a machine @echo sharing out the results and the application build server is run from a different account and machine where @echo HKCU settings are different. @echo. @echo Usage: @echo BuildLlvmWithVS [-g-][-b-][-r-][-v ^<LlvmVersionNumber^>] @echo. @echo Where: @echo -g- disables the cmake project generation phase @echo -b- disables the code build phase @echo -r- disables the registry update @echo -v ^<LlvmVersion^> sets the LLVM version number used for the registry entry (Default is 3.6.1) @echo. :exit endlocal goto :EOF :CongigureLLVMBuild @echo __--== Generating build configuration of LLVM For %1 ==--__ if NOT EXIST "build\%1" md build\%1 pushd build\%1 cmake -G"Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=Install -DCMAKE_GENERATOR_PLATFORM=%1 ..\.. popd if %ERRORLEVEL% GTR 0 exit /B %ERRORLEVEL% goto :EOF :BuildLLVMPlatform @echo __--== Building LLVM For %1 ==--__ @echo __--== Building Release configuration For %1 ==--__ cmake --build build\%1. --config Release if %ERRORLEVEL% GTR 0 exit /B %ERRORLEVEL% @echo __--== Building Checked configuration For %1 ==--__ cmake --build build\%1 --config RelWithDebInfo if %ERRORLEVEL% GTR 0 exit /B %ERRORLEVEL% @echo __--== Building Debug configuration For %1 ==--__ cmake --build build\%1 --config Debug if %ERRORLEVEL% GTR 0 exit /B %ERRORLEVEL% goto :EOF
x335/llilum
Zelig/Zelig/CompileTime/Llvm.NET/LibLLVM/BuildLlvmWithVS.cmd
bat
mit
3,907
@ECHO OFF if not exist "%WINDIR%\py.exe" ( ECHO :: ERROR :: Python 3.5 Runtime NOT FOUND... ECHO :: ERROR :: Download and install lastest Python 3.5 for Windows from https://www.python.org/downloads/ ECHO :: ERROR :: Exit... GOTO END ) ELSE ( GOTO PY35RT ) :PY35RT if not exist "%PROGRAMFILES%\python35\Python35.dll" ( ECHO :: ERROR :: Python 3.5 Runtime NOT FOUND... ECHO :: ERROR :: Download and install lastest Python 3.5 for Windows from https://www.python.org/downloads/ ECHO :: ERROR :: Exit... GOTO END ) ELSE ( ECHO :: INFO :: Python 3.5 Runtime was found! ECHO :: INFO :: Running main script... GOTO :UPDATES ) :UPDATES ::These create various alternate hosts files by combining and adding the gambling, porn, and social media extensions. updateHostsFile.py -a -z -o alternates\gambling -e gambling updateHostsFile.py -a -z -n -o alternates\porn -e porn updateHostsFile.py -a -z -n -o alternates\social -e social updateHostsFile.py -a -z -n -o alternates\gambling-porn -e gambling porn updateHostsFile.py -a -z -n -o alternates\gambling-social -e gambling social updateHostsFile.py -a -z -n -o alternates\porn-social -e porn social updateHostsFile.py -a -z -n -o alternates\gambling-porn-social -e gambling porn social updateHostsFile.py -a -z -n ::Update the readmes. updateReadme.py GOTO END :END
maxmurder/hosts
makeHostsWindows.bat
bat
mit
1,339
cmd_fs/buffer.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/.buffer.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(buffer)" -D"KBUILD_MODNAME=KBUILD_STR(buffer)" -c -o fs/buffer.o fs/buffer.c deps_fs/buffer.o := \ fs/buffer.c \ $(wildcard include/config/smp.h) \ include/linux/kernel.h \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /data/embedded/acer/acergit/linux/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) \ include/linux/posix_types.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.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/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/const.h \ arch/arm/plat-pnx/include/mach/memory.h \ $(wildcard include/config/nkernel.h) \ $(wildcard include/config/mach/pnx/realloc.h) \ $(wildcard include/config/android/pmem.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \ include/asm/nkern.h \ $(wildcard include/config/nkernel/console.h) \ include/asm/nk/f_nk.h \ include/asm/nk/nk_f.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/lock.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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/syscalls.h \ $(wildcard include/config/ppc64.h) \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/have/syscall/wrappers.h) \ $(wildcard include/config/ia64.h) \ include/linux/aio_abi.h \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/sem.h \ $(wildcard include/config/sysvipc.h) \ include/linux/ipc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \ include/linux/kref.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /data/embedded/acer/acergit/linux/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/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/percpu.h \ $(wildcard include/config/modules.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/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/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) \ include/linux/wait.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/seqlock.h \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /data/embedded/acer/acergit/linux/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 \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /data/embedded/acer/acergit/linux/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/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/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.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/time.h \ include/linux/math64.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \ include/linux/jiffies.h \ include/linux/timex.h \ $(wildcard include/config/no/hz.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \ arch/arm/plat-pnx/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/key.h \ $(wildcard include/config/keys.h) \ $(wildcard include/config/sysctl.h) \ include/linux/rbtree.h \ include/linux/sysctl.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/path.h \ include/linux/stat.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/mm.h \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \ arch/arm/plat-pnx/include/mach/vmalloc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/blkdev.h \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/blk/dev/bsg.h) \ $(wildcard include/config/bounce.h) \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/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/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.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/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/signal.h \ include/linux/fs_struct.h \ include/linux/proportions.h \ include/linux/percpu_counter.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 \ /data/embedded/acer/acergit/linux/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 \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/uio.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/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/module.h \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \ $(wildcard include/config/gcov/profile.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ include/linux/marker.h \ include/linux/tracepoint.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/pagemap.h \ include/linux/highmem.h \ include/linux/uaccess.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \ /data/embedded/acer/acergit/linux/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/outer/cache.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/shmparam.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/kmap_types.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/dynamic/ftrace.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \ arch/arm/plat-pnx/include/mach/irqs.h \ $(wildcard include/config/arch/pnx67xx.h) \ include/linux/irq_cpustat.h \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/mempool.h \ include/linux/bio.h \ include/linux/ioprio.h \ include/linux/iocontext.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/io.h \ arch/arm/plat-pnx/include/mach/io.h \ arch/arm/plat-pnx/include/mach/hardware.h \ $(wildcard include/config/vaddr.h) \ arch/arm/plat-pnx/include/mach/cpu.h \ $(wildcard include/config/arch/pnx67xx/v2.h) \ $(wildcard include/config/arch/pnx6708.h) \ $(wildcard include/config/arch/pnx6711.h) \ $(wildcard include/config/arch/pnx6712.h) \ arch/arm/plat-pnx/include/mach/regs-pnx67xx.h \ $(wildcard include/config/offset.h) \ $(wildcard include/config/reg.h) \ $(wildcard include/config/value.h) \ include/linux/bsg.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ include/linux/elevator.h \ include/linux/file.h \ include/linux/quotaops.h \ include/linux/writeback.h \ include/linux/hash.h \ include/linux/suspend.h \ $(wildcard include/config/frv.h) \ $(wildcard include/config/ppc32.h) \ $(wildcard include/config/vt.h) \ $(wildcard include/config/vt/console.h) \ $(wildcard include/config/suspend.h) \ include/linux/swap.h \ $(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \ include/linux/memcontrol.h \ $(wildcard include/config/cgroup/mem/cont.h) \ include/linux/cgroup.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/node.h \ include/linux/sysdev.h \ include/linux/buffer_head.h \ include/linux/task_io_accounting_ops.h \ include/linux/cpu.h \ $(wildcard include/config/pm/sleep/smp.h) \ include/linux/mpage.h \ include/linux/bit_spinlock.h \ fs/buffer.o: $(deps_fs/buffer.o) $(deps_fs/buffer.o):
yohanes/Acer-BeTouch-E130-Linux-Kernel
fs/.buffer.o.cmd
bat
gpl-2.0
24,499
cmd_vmlinux := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ld -EL -p --no-undefined -X --build-id -o vmlinux -T arch/arm/kernel/vmlinux.lds arch/arm/kernel/head.o arch/arm/kernel/init_task.o init/built-in.o --start-group usr/built-in.o arch/arm/kernel/built-in.o arch/arm/mm/built-in.o arch/arm/common/built-in.o arch/arm/mach-s5pv210/built-in.o arch/arm/plat-s5p/built-in.o arch/arm/plat-samsung/built-in.o arch/arm/vfp/built-in.o kernel/built-in.o mm/built-in.o fs/built-in.o ipc/built-in.o security/built-in.o crypto/built-in.o block/built-in.o arch/arm/lib/lib.a lib/lib.a arch/arm/lib/built-in.o lib/built-in.o drivers/built-in.o sound/built-in.o firmware/built-in.o net/built-in.o --end-group .tmp_kallsyms2.o
dizgustipated/BOCA-2.6.35.14
.vmlinux.cmd
bat
gpl-2.0
742
cmd_drivers/video/omap2/built-in.o := ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/video/omap2/built-in.o drivers/video/omap2/dss/built-in.o drivers/video/omap2/omapfb/built-in.o drivers/video/omap2/displays/built-in.o
tcp209/kernel_samsung_epic4gtouch
build/epic4gtouch/drivers/video/omap2/.built-in.o.cmd
bat
gpl-2.0
284
cmd_libbb/write.o := arm-linux-musleabihf-gcc -Wp,-MD,libbb/.write.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(write)" -D"KBUILD_MODNAME=KBUILD_STR(write)" -c -o libbb/write.o libbb/write.c deps_libbb/write.o := \ libbb/write.c \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ libbb/write.o: $(deps_libbb/write.o) $(deps_libbb/write.o):
ThinkIntegrate/busybox
libbb/.write.o.cmd
bat
gpl-2.0
11,317
@echo off mkdir "temp" copy /Y "bin\*.swf" "temp"
foobarlab/UpStage-Video-Hack
red5/client/subscriber/prepare.bat
bat
gpl-2.0
50
cmd_fs/cramfs/built-in.o := /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ld -EL -r -o fs/cramfs/built-in.o fs/cramfs/cramfs.o
domintech/PandaBoard-LinuxKernel
fs/cramfs/.built-in.o.cmd
bat
gpl-2.0
207
cmd_drivers/input/touchscreen/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/input/touchscreen/built-in.o drivers/input/touchscreen/elan_ts.o drivers/input/touchscreen/egalax_ts.o drivers/input/touchscreen/max11801_ts.o drivers/input/touchscreen/mc13783_ts.o drivers/input/touchscreen/stmpe-ts.o drivers/input/touchscreen/tsc2007.o
FEDEVEL/tmp-imx6-tiny-rex-linux
drivers/input/touchscreen/.built-in.o.cmd
bat
gpl-2.0
443
@echo off FOR %%a IN (*.po) DO IF NOT %%a==Template.po IF NOT %%a==Ignore.po msgfmt "%%a" -c -o"%%~na.mo" pause
q2apro/graph-padowan
Locale/Convert.bat
bat
gpl-2.0
112
cmd_fs/nfs/built-in.o := /home/playfulgod/Android/2.3.5/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o fs/nfs/built-in.o fs/nfs/nfs.o
Jewbie/Kernel-2.6.32
fs/nfs/.built-in.o.cmd
bat
gpl-2.0
162
cmd_drivers/input/evbug.ko := /home/flint/android/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-ld -EL -r -T /home/flint/src_pf2/StoneK_10.4.16.8/scripts/module-common.lds --build-id -o drivers/input/evbug.ko drivers/input/evbug.o drivers/input/evbug.mod.o
lindsaytheflint/stone
drivers/input/.evbug.ko.cmd
bat
gpl-2.0
293
cmd_sound/soc/codecs/built-in.o := /usr/local/arm/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o sound/soc/codecs/built-in.o sound/soc/codecs/snd-soc-wm8994.o sound/soc/codecs/snd-soc-wm-hubs.o
miamo/miamOv
sound/soc/codecs/.built-in.o.cmd
bat
gpl-2.0
193
IF NOT DEFINED KUDU_SYNC_COMMAND ( :: Install kudu sync echo Installing Kudu Sync call npm install kudusync -g --silent IF %ERRORLEVEL% NEQ 0 goto error :: Locally just running "kuduSync" would also work SET KUDU_SYNC_COMMAND=node "%appdata%\npm\node_modules\kuduSync\bin\kuduSync" ) SET SITE_PATH=%~dp0%.. SET MANIFEST_PATH=%SITE_PATH%\artifacts\manifest call %KUDU_SYNC_COMMAND% -q -f "%DEPLOYMENT_SOURCE%\approot" -t "%SITE_PATH%\approot" -n "%MANIFEST_PATH%_app" -p "%MANIFEST_PATH%_app" call %KUDU_SYNC_COMMAND% -q -f "%DEPLOYMENT_SOURCE%\wwwroot" -t "%SITE_PATH%\wwwroot" -n "%MANIFEST_PATH%_www" -p "%MANIFEST_PATH%_www" goto end :error endlocal echo An error has occurred during web site deployment. call :exitSetErrorLevel call :exitFromFunction 2>nul :exitSetErrorLevel exit /b 1 :exitFromFunction () :end endlocal echo Finished successfully.
n9niwas/Food-delivery-feedbacks
DevOps/FDF.Deploy/FDF.Deploy.RG/Scripts/Automation/Kudu/App.deployment.cmd
bat
gpl-2.0
872
cmd_net/ipv4/netfilter/iptable_nat.o := /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/ipv4/netfilter/iptable_nat.o net/ipv4/netfilter/nf_nat_rule.o net/ipv4/netfilter/nf_nat_standalone.o
asopov/linux-tpt-2.6.39
net/ipv4/netfilter/.iptable_nat.o.cmd
bat
gpl-2.0
241
cmd_miscutils/taskset.o := arm-linux-musleabihf-gcc -Wp,-MD,miscutils/.taskset.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(taskset)" -D"KBUILD_MODNAME=KBUILD_STR(taskset)" -c -o miscutils/taskset.o miscutils/taskset.c deps_miscutils/taskset.o := \ miscutils/taskset.c \ $(wildcard include/config/feature/taskset/fancy.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sched.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ miscutils/taskset.o: $(deps_miscutils/taskset.o) $(deps_miscutils/taskset.o):
ThinkIntegrate/busybox
miscutils/.taskset.o.cmd
bat
gpl-2.0
11,543
@echo off set AVR_TOOLS_DIR=C:\UserPrograms\arduino-1.0.3\hardware\tools\avr %AVR_TOOLS_DIR%\bin\avrdude -C %AVR_TOOLS_DIR%\etc\avrdude.conf -b 38400 -c arduino -p m644p -P com3 -U flash:w:flash\3drag_original_flashdump.hex:i set AVR_TOOLS_DIR=
yuroller/Marlin
Marlin/_flash_original.bat
bat
gpl-3.0
244
@echo off echo Content-type:text/html echo. echo ^<b^>Updating...^</b^> ^<br /^> @echo on git pull
enroute/sht-web
script/update_windows_labclksix.bat
bat
gpl-3.0
98
@echo off cd ../../out for %%I in (*.exe *.dll) do SignTool.exe sign /f %SCHAT_SIGN_FILE% /p %SCHAT_SIGN_PASSWORD% /t http://timestamp.verisign.com/scripts/timstamp.dll %%~fI cd plugins for %%I in (*.dll) do SignTool.exe sign /f %SCHAT_SIGN_FILE% /p %SCHAT_SIGN_PASSWORD% /t http://timestamp.verisign.com/scripts/timstamp.dll %%~fI cd ../.. jom install /NOLOGO if ERRORLEVEL 1 exit 1 cd os/win32 makensis setup.nsi if ERRORLEVEL 1 exit 1 makensis server.nsi if ERRORLEVEL 1 exit 1 cd wix candle -nologo -dProductVersion=%SCHAT_VERSION% -ext WixUIExtension Files.wxs Product.wxs Features.wxs Shortcuts.wxs if ERRORLEVEL 1 exit 1 light -nologo -out ..\out\schat2-%SCHAT_VERSION%.msi -cultures:en-US -ext WixUIExtension Files.wixobj Product.wixobj Features.wixobj Shortcuts.wixobj if ERRORLEVEL 1 exit 1 cd ..\out for %%I in (*.exe) do SignTool.exe sign /f %SCHAT_SIGN_FILE% /p %SCHAT_SIGN_PASSWORD% /t http://timestamp.verisign.com/scripts/timstamp.dll %%~fI for %%I in (*.msi) do SignTool.exe sign /f %SCHAT_SIGN_FILE% /p %SCHAT_SIGN_PASSWORD% /t http://timestamp.verisign.com/scripts/timstamp.dll %%~fI cd .. cd schat2 copy /Y %QTDIR%\bin\QtCore4.pdb . copy /Y %QTDIR%\bin\QtGui4.pdb . copy /Y %QTDIR%\bin\QtNetwork4.pdb . copy /Y %QTDIR%\bin\QtSql4.pdb . copy /Y %QTDIR%\bin\QtWebKit4.pdb . copy /Y %QTDIR%\plugins\bearer\qgenericbearer4.pdb plugins\qt\bearer copy /Y %QTDIR%\plugins\imageformats\qgif4.pdb plugins\qt\imageformats copy /Y %QTDIR%\plugins\imageformats\qico4.pdb plugins\qt\imageformats copy /Y %QTDIR%\plugins\imageformats\qjpeg4.pdb plugins\qt\imageformats copy /Y %QTDIR%\plugins\sqldrivers\qsqlite4.pdb plugins\qt\sqldrivers copy /Y ..\..\..\out\*.pdb . copy /Y ..\..\..\out\plugins\*.pdb plugins 7z a -r0 -mx=7 ../out/schat2-%SCHAT_VERSION%-pdb.7z *.pdb cd .. exit 0
impomezia/schat
os/win32/nsis.cmd
bat
gpl-3.0
1,850
qrcode.exe -o test.png -s 5 -l H http://fukuchi.org/works/qrencode/index.en.html
savoirfairelinux/ring-client-uwp
contrib/qrencode-win32/vc8/test.bat
bat
gpl-3.0
80
@rem = '--*-Perl-*-- @echo off if "%OS%" == "Windows_NT" goto WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE ( perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) goto endofperl :WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S %0 %* ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S %0 %* ) ELSE ( perl -x -S %0 %* ) if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul goto endofperl @rem '; #!/usr/bin/env perl #line 29 use strict; use warnings; use Getopt::Long; use bigint try => 'GMP'; use Math::Prime::Util qw/factor nth_prime/; $| = 1; no bigint; # Allow execution of any of these functions in the command line my @mpu_funcs = (qw/next_prime prev_prime prime_count nth_prime random_prime random_ndigit_prime random_nbit_prime random_strong_prime random_maurer_prime primorial pn_primorial moebius mertens euler_phi jordan_totient exp_mangoldt divisor_sum consecutive_integer_lcm/); my %mpu_func_map; my %opts; GetOptions(\%opts, 'version', # turn off MPU::GMP for debugging 'help', ) || die_usage(); if (exists $opts{'version'}) { my $version_str = "factor.pl version 1.1 using Math::Prime::Util $Math::Prime::Util::VERSION"; $version_str .= " and MPU::GMP $Math::Prime::Util::GMP::VERSION" if Math::Prime::Util::prime_get_config->{'gmp'}; $version_str .= "\nWritten by Dana Jacobsen.\n"; die "$version_str"; } die_usage() if exists $opts{'help'}; if (@ARGV) { foreach my $n (@ARGV) { $n = eval_expr($n) unless $n =~ /^\d+$/; print "$n: ", join(" ", factor($n)), "\n"; } } else { while (<>) { chomp; foreach my $n (split / /) { $n = eval_expr($n) unless $n =~ /^\d+$/; print "$n: ", join(" ", factor($n)), "\n"; } } } # This is rather braindead. We're going to eval their input so they can give # arbitrary expressions. But we only want to allow math-like strings. sub eval_expr { my $expr = shift; die "$expr cannot be evaluated" if $expr =~ /:/; # Use : for escape if (scalar(keys %mpu_func_map) == 0) { my $n = 10; foreach my $func (@mpu_funcs) { $mpu_func_map{$func} = sprintf("%03d", $n++); } } $expr =~ s/\blog\(/:001(/g; foreach my $func (@mpu_funcs) { $expr =~ s/\b$func\(/:$mpu_func_map{$func}(/g; } die "$expr cannot be evaluated" if $expr =~ tr|-0123456789+*/() :||c; $expr =~ s/:001/log/g; foreach my $func (@mpu_funcs) { $expr =~ s/:$mpu_func_map{$func}\(/Math::Prime::Util::$func(/g; } $expr =~ s/(\d+)/ Math::BigInt->new("$1") /g; my $res = eval $expr; ## no critic die "Cannot eval: $expr\n" if !defined $res; $res = int($res->bstr) if ref($res) eq 'Math::BigInt' && $res <= ~0; $res; } sub die_usage { die <<EOU; Usage: $0 [options] [number] ... Print the prime factors of each positive integer given on the command line, or reads numbers from standard input if called without arguments. Math expressions may be given as arguments, which will be evaluated before factoring. This includes most Math::Prime::Util functions including things like prime_count(#), nth_prime(#), primorial(#), random_nbit_prime(#), etc. --help displays this help message --version displays the version information Part of the Math::Prime::Util $Math::Prime::Util::VERSION package, wrapping the factor() function. See 'man Math::Prime::Util' for more information. EOU } __END__ :endofperl
CodeGit/SequenceImp
dependencies-bin/windows/bin/perl/perl/bin/factor.bat
bat
gpl-3.0
3,777
@echo off for %%i in (..\originaldata\ts\*.ts) do call lrelease.exe -nounfinished -removeidentical %%i -qm ..\src\data\translations\%%~ni.qm
aportale/qtouchandlearn
bin/lrelease.cmd
bat
gpl-3.0
141
mkdir test cd test vagrant destroy -f vagrant box remove ImpressCMS/DevBox-Ubuntu --all -f vagrant init ImpressCMS/DevBox-Ubuntu vagrant up
ImpressCMS/packer-impresscms-devbox
test.bat
bat
mpl-2.0
139
for /f "tokens=1-5 delims= " %%a in ('"netstat -ano|findstr "^:8086""') do taskkill /f /pid %%e
liushuishang/YayCrawler
yaycrawler.worker/deploy/stop.bat
bat
lgpl-3.0
95
@mvn install:install-file -DgroupId=org.xerial -DartifactId=sqlite-jdbc -Dversion=%2 -Dfile=%1 -Dpackaging=jar -DgeneratePom=true
ceharris/SchemaCrawler
schemacrawler-sqlite/install-sqlite-jdbc-driver.cmd
bat
lgpl-3.0
131
java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\greeting57.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\heart25.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input1.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input1-no.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input10-no.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input10.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input2-no.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input2.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input20.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input3.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input4.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input5.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input50.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input6.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input7.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input8-no.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\input8.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\jerry47.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\sedgewick60.txt java -cp "lib/algs4.jar;bin/" PercolationVisualizer lib\percolation-testing\percolation\wayne98.txt
yangxiaoxiao/learning-algorithm
src/main/resources/org/adg/learning/algorithm/alg4/percolation.cmd
bat
apache-2.0
2,028
sbt clean;update;assembly copy /Y target\make_csv-assembly-1.0.0.jar .\
HidekiTak/make_csv
asm.bat
bat
apache-2.0
72
@ECHO OFF rem ============================================================================ rem Copyright (C) 2022 Intel Corporation rem rem Licensed under the Apache License, Version 2.0 (the "License"); rem you may not use this file except in compliance with the License. rem You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. rem ============================================================================ pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=doc set BUILDDIR=build 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% %O% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% :end popd
oneapi-src/oneTBB
doc/make.bat
bat
apache-2.0
1,537
echo off set "EXEC=protoc.exe" set "PROTO_DIR=./" set "OUTPUT_ROOT=../../../../../ %EXEC% --java_out=%OUTPUT_ROOT% --proto_path=%PROTO_DIR% %PROTO_DIR%/*.proto @pause
teaey/test-load
src/main/java/cn/teaey/test/load/proto/protoco4java.bat
bat
apache-2.0
166
@ECHO off SETLOCAL CALL :find_dp0 IF EXIST "%dp0%\node.exe" ( SET "_prog=%dp0%\node.exe" ) ELSE ( SET "_prog=node" SET PATHEXT=%PATHEXT:;.JS;=;% ) "%_prog%" "%dp0%\..\which\bin\node-which" %* ENDLOCAL EXIT /b %errorlevel% :find_dp0 SET dp0=%~dp0 EXIT /b
Hanul/UPPERCASE
node_modules/.bin/node-which.cmd
bat
mit
263
if not exist "C:\Windows\Temp\wix.exe" ( powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/wixtoolset/wix3/releases/download/wix3104rtm/wix310.exe', 'C:\Windows\Temp\wix.exe')" <NUL ) start /wait C:\Windows\Temp\wix.exe /quiet /norestart setx PATH "%PATH%;C:\Program Files (x86)\Wix Toolset v3.10\bin" /m
mitchellh/vagrant-installers
packer/vagrant/scripts/windows/wix.bat
bat
mit
426
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\node_modules\strip-json-comments\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\node_modules\strip-json-comments\cli.js" %* )
johnson1994/Feed
strip-json-comments.cmd
bat
mit
214
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=python -msphinx ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=pymt 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
csdms/coupling
docs/make.bat
bat
mit
766
CALL Y:\loader.bat CALL Y:\application.bat
blackheartevony/IQEmu-master
hostToGuest/files/shell.bat
bat
mit
42
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_FSSHTTP_FSSHTTPB.MS_FSSHTTP_FSSHTTPB_S03_SchemaLock.TestCase_S03_TC20_GetLock_SchemaLockBlock /testcontainer:..\..\MS-FSSHTTP-FSSHTTPB\TestSuite\bin\Debug\MS-FSSHTTP-FSSHTTPB_TestSuite.dll /runconfig:..\..\MS-FSSHTTP-FSSHTTPB\MS-FSSHTTP-FSSHTTPB.testsettings /unique pause
XinwLi/Interop-TestSuites-1
FileSyncandWOPI/Source/Scripts/MS-FSSHTTP-FSSHTTPB/RunTestCase_S03_TC20.cmd
bat
mit
366
SORT < ..\02_Commands\Lorem.txt
Emiliya93/TelerikAcademy
QualityAssurancePart1/Exercises/CommandLineExercise/04_PipingAndRedirects/passText.bat
bat
mit
31
@echo off SETLOCAL SET ARGC=0 FOR %%x IN (%*) DO SET /A ARGC+=1 IF %ARGC% NEQ 2 ( echo Usage: %0 BindingIdInCamelCase BindingIdInLowerCase exit /B 1 ) mvn archetype:generate -N -DarchetypeGroupId=org.eclipse.smarthome.archetype -DarchetypeArtifactId=org.eclipse.smarthome.archetype.binding -DarchetypeVersion=0.9.0-SNAPSHOT -DgroupId=org.openhab.binding -DartifactId=org.openhab.binding.%2 -Dpackage=org.openhab.binding.%2 -DarchetypeCatalog='file://../archetype-catalog.xml' -Dversion=2.1.0-SNAPSHOT -DbindingId=%2 -DbindingIdCamelCase=%1 -DvendorName=openHAB -Dnamespace=org.openhab ENDLOCAL
peuter/openhab2-addons
addons/binding/create_openhab_binding_skeleton.cmd
bat
epl-1.0
620
powershell.exe Set-ExecutionPolicy Bypass powershell.exe %windir%\ceo_automation\sleep.ps1 45 powershell.exe %windir%\ceo_automation\set-networktype.ps1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 00000001 /f regedit /s %windir%\ceo_automation\2nd.reg powershell.exe %windir%\ceo_automation\sleep.ps1 10 start "C:\Program Files\Common Files\microsoft shared\OfficeSoftwareProtectionPlatform\OSPPREARM.EXE" powershell.exe %windir%\ceo_automation\sleep.ps1 10 powershell.exe %windir%\ceo_automation\rename-computer.ps1
JoshWeller/School-Management-Scripts
CEO Automation/Stable/ceo_automation/2nd.cmd
bat
gpl-3.0
617
bcp MonroeWebExport.dbo.ImprvList out .\ImprvList.txt -T -c -t"|" bcp MonroeWebExport.dbo.LandDescList out .\LandDescList.txt -T -c -t"|" bcp MonroeWebExport.dbo.Misc out .\Misc.txt -T -c -t"|" bcp MonroeWebExport.dbo.OtherPlumbingList out .\OtherPlumbingList.txt -T -c -t"|" bcp MonroeWebExport.dbo.ParcelGenInfo out .\ParcelGenInfo.txt -T -c -t"|" bcp MonroeWebExport.dbo.Photos out .\Photos.txt -T -c -t"|" bcp MonroeWebExport.dbo.PlumbingList out .\PlumbingList.txt -T -c -t"|" bcp MonroeWebExport.dbo.ResDetail out .\ResDetail.txt -T -c -t"|" bcp MonroeWebExport.dbo.ResFloor out .\ResFloor.txt -T -c -t"|" bcp MonroeWebExport.dbo.SalesList out .\SalesList.txt -T -c -t"|" bcp MonroeWebExport.dbo.SiteDescList out .\SiteDescList.txt -T -c -t"|" bcp MonroeWebExport.dbo.SketchList out .\SketchList.txt -T -c -t"|" bcp MonroeWebExport.dbo.SpecialFeatList out .\SpecialFeatList.txt -T -c -t"|" bcp MonroeWebExport.dbo.Streets out .\Streets.txt -T -c -t"|" bcp MonroeWebExport.dbo.tblDistricts out .\tblDistricts.txt -T -c -t"|" bcp MonroeWebExport.dbo.tblNeighborhoods out .\tblNeighborhoods.txt -T -c -t"|" bcp MonroeWebExport.dbo.tblTownshipNumbers out .\tblTownshipNumbers.txt -T -c -t"|" bcp MonroeWebExport.dbo.Topo out .\Topo.txt -T -c -t"|" bcp MonroeWebExport.dbo.TransferOwnList out .\TransferOwnList.txt -T -c -t"|" bcp MonroeWebExport.dbo.Utility out .\Utility.txt -T -c -t"|" bcp MonroeWebExport.dbo.ValuationList out .\ValuationList.txt -T -c -t"|" bcp MonroeWebExport.dbo.WallTypeList out .\WallTypeList.txt -T -c -t"|" bcp MonroeWebExport.dbo.ServerLogType out .\ServerLogType.txt -T -c -t"|" bcp MonroeWebExport.dbo.ServerLog out .\ServerLog.txt -T -c -t"|" bcp MonroeWebExport.dbo.ImprvTypes out .\ImprvTypes.txt -T -c -t"|" bcp MonroeWebExport.dbo.DataDate out .\DataDate.txt -T -c -t"|" bcp MonroeWebExport.dbo.ExtFeatureList out .\ExtFeatureList.txt -T -c -t"|" bcp MonroeWebExport.dbo.FloorList out .\FloorList.txt -T -c -t"|"
City-of-Bloomington/green-rental
scripts/MonroeWebExport/MonroeWebExport.bat
bat
agpl-3.0
2,352
@echo off REM REM ELMAH - Error Logging Modules and Handlers for ASP.NET REM Copyright (c) 2004-9 Atif Aziz. All rights reserved. REM REM Author(s): REM REM Atif Aziz, http://www.raboof.com REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. REM REM ------------------------------------------------------------------------- REM REM This is a batch file that can used to build ELMAH for Microsoft .NET REM Framework 1.x and 2.0. The build is created for only those versions REM that are found to be installed in the expected locations (see below). REM REM To compile for Microsoft .NET Framework 1.0, you must have Microsoft REM Visual Studio .NET 2002 installed in the standard path proposed by REM by its installer. REM REM To compile for Microsoft .NET Framework 1.1, you must have Microsoft REM Visual Studio .NET 2003 installed in the standard path proposed by REM by its installer. REM REM To compile for Microsoft .NET Framework 2.0, 3.0 and 3.5, you only REM need MSBUILD.EXE and which is expected to be located in the standard REM installation directory. setlocal pushd "%~dp0" set DEVENV70EXE=%ProgramFiles%\Microsoft Visual Studio .NET\Common7\IDE\devenv.com set DEVENV71EXE=%ProgramFiles%\Microsoft Visual Studio .NET 2003\Common7\IDE\devenv.com set MSBUILD20EXE=%windir%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe set MSBUILD35EXE=%windir%\Microsoft.NET\Framework\v3.5\msbuild.exe for %%i in (debug release) do if exist "%DEVENV70EXE%" "%DEVENV70EXE%" 2002\Elmah.sln /build %%i for %%i in (debug release) do if exist "%DEVENV71EXE%" "%DEVENV71EXE%" 2003\Elmah.sln /build %%i for %%i in (debug release) do if exist "%MSBUILD20EXE%" "%MSBUILD20EXE%" 2005\Elmah.sln /p:Configuration=%%i for %%i in (debug release) do if exist "%MSBUILD35EXE%" "%MSBUILD35EXE%" 2008\Elmah.sln /p:Configuration=%%i popd
larrynung/ELMAH
src/Solutions/build.cmd
bat
apache-2.0
2,395
top_module -prj test_xsim_0.prj -snapshot test_xsim_0 --define vlogdefine_bool=True --define vlogdefine_int=42 --define vlogdefine_str=hello -i . --generic_top vlogparam_bool=1 --generic_top vlogparam_int=42 --generic_top vlogparam_str=hello some xelab_options
lowRISC/edalize
tests/test_xsim/xelab.cmd
bat
bsd-2-clause
261
md kregexpeditor cp -r kregexpeditor.exe predefined kregexpeditor copy q:\3.1.2-mt\lib\qt-mt312.dll kregexpeditor copy c:\winnt\system32\MSVCRTD.DLL kregexpeditor copy c:\winnt\system32\MSVCP60D.DLL kregexpeditor cp -r manual kregexpeditor c:\zip\zip -r kregexpeditor.zip kregexpeditor
serghei/kde3-kdeutils
kregexpeditor/qt-only/win-release.bat
bat
gpl-2.0
286
cmd_net/ipv6/netfilter/built-in.o := rm -f net/ipv6/netfilter/built-in.o; arm-eabi-ar rcs net/ipv6/netfilter/built-in.o
mcardielo/ThunderG-Kernel_2.6.35
net/ipv6/netfilter/.built-in.o.cmd
bat
gpl-2.0
121
set "h=/?" && call if %%h%%
TheBigBear/batch.scripts
discovers_and_bugs/bugs/forCrasher.bat
bat
mit
28