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
java -jar selenium-server-standalone.jar -role hub -hubConfig x64Hub.json
freddyvega/wepatest
Selenium/launch_hub.cmd
bat
artistic-2.0
73
@echo OFF REM=""" setlocal set PythonExe="" set PythonExeFlags= for %%i in (cmd bat exe) do ( for %%j in (python.%%i) do ( call :SetPythonExe "%%~$PATH:j" ) ) for /f "tokens=2 delims==" %%i in ('assoc .py') do ( for /f "tokens=2 delims==" %%j in ('ftype %%i') do ( for /f "tokens=1" %%k in ("%%j") do ( call :SetPythonExe %%k ) ) ) %PythonExe% -x %PythonExeFlags% "%~f0" %* exit /B %ERRORLEVEL% goto :EOF :SetPythonExe if not ["%~1"]==[""] ( if [%PythonExe%]==[""] ( set PythonExe="%~1" ) ) goto :EOF """ # =================================================== # Python script starts here # Above helper adapted from https://github.com/aws/aws-cli/blob/1.11.121/bin/aws.cmd # =================================================== #!/usr/bin/env python from stacker.logger import setup_logging from stacker.commands import Stacker if __name__ == "__main__": stacker = Stacker(setup_logging=setup_logging) args = stacker.parse_args() stacker.configure(args) args.run(args)
remind101/stacker
scripts/stacker.cmd
bat
bsd-2-clause
1,057
@cd %~dp0 @java -Xms512m -Xmx1g -jar daisy-network-proto-gen.jar ../src/com/the9/daisy/network/proto/ ./template/
nichoding/daisy-network
daisy-network-proto/gen/protoc-gen-daisy.bat
bat
bsd-3-clause
114
REM This assumes that libutil.a has been previously build with cmake and is REM available in ..\build del /f RIBClientRUBY_wrap.cxx *.def *.pdb *.obj swig -ruby -includeall -c++ -I..\utils -o RIBClientRUBY_wrap.cxx RIBClient.i REM set USE_PRMAN=1 REM ruby extconf.rb --with-rman-dir=$RMANTREE --with-utils-include=..\utils\ --with-utils-lib=..\build_nmake\utils set USE_DELIGHT=1 set RUBY_VERSION=180 ruby extconf.rb --with-rman-dir=%DELIGHT% --with-utils-include=..\utils\ --with-utils-lib=..\build_nmake\utils nmake all
nyue/ribclients
ruby/buildWithExtConf.bat
bat
bsd-3-clause
528
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin mkdir C:\Python27 choco install python2 choco install pyqt4 C:\Python27\Scripts\pip2.exe install pyserial
wgml/sysrek
uart_echo/python/prepare.bat
bat
gpl-2.0
311
@echo off REM REM dex2jar - Tools to work with android .dex and java .class files REM Copyright (c) 2009-2012 Panxiaobo REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. REM set CLASSPATH= FOR %%i IN ("%~dp0lib\*.jar") DO CALL "%~dp0setclasspath.bat" %%i java -Xms512m -Xmx1024m -cp "%CLASSPATH%" "com.googlecode.dex2jar.tools.JarAccessCmd" %*
Imaginea/bot-bot
recorder/lib/dex2jar-0.0.9.9/d2j-jar-access.bat
bat
apache-2.0
893
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\gunzip-maybe\bin.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\gunzip-maybe\bin.js" %* )
Project-Oaken/water-meter-acorn
demo-for-video/water-meter-1-liter-demo/node/node_modules/.bin/gunzip-maybe.cmd
bat
apache-2.0
180
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. setlocal cd /D %~dp0 set CP=..\lib\ext\ApacheJMeter_http.jar;..\lib\ext\ApacheJMeter_core.jar;..\lib\jorphan.jar;..\lib\logkit-1.2.jar set CP=%CP%;..\lib\avalon-framework-4.1.4.jar;..\lib\jakarta-oro-2.0.8.jar java -cp %CP% org.apache.jmeter.protocol.http.control.HttpMirrorServer %1 pause
larsvandersangen/SWOS-WEEK-1
gameoflife-web/tools/jmeter/bin/mirror-server.cmd
bat
apache-2.0
1,140
@echo off :: prefer building with Dev15 set CommonToolsDir=%VS150COMNTOOLS% if not exist "%CommonToolsDir%" set CommonToolsDir=%VS140COMNTOOLS% if not exist "%CommonToolsDir%" exit /b 1 call "%CommonToolsDir%\VsDevCmd.bat"
Pvlerick/roslyn
SetDevCommandPrompt.cmd
bat
apache-2.0
226
@echo off setlocal REM Copyright 2006-2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific REM language governing permissions and limitations under the License. REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%EC2_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%EC2_HOME:"=%\bin\ec2-cmd" AttachInternetGateway %* goto DONE :HOME_MISSING echo EC2_HOME is not set exit /b 1 :DONE
capotej/whim
ec2_home/ec2-api-tools-1.6.3.1/bin/ec2attigw.cmd
bat
mit
1,043
phantomjs "judge.js" pause
NikolayIT/css-exam-automation
judge.bat
bat
mit
26
@echo off xamarin-component.exe install ^ Component\quickui-1.0.xam pause
moljac/Samples.Xamarin.Forms
diverse/versions/2013-10-17/install.bat
bat
mit
77
call %~dp0\PGVARS.cmd "%PGBIN%\psql" -d "%PG_DB%" -f %1
as-zhuravlev/logistics_crs_prj
Utils/postgres/psql-run.cmd
bat
mit
59
cmd_drivers/serial/built-in.o := /home/azure/Kernel/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/serial/built-in.o drivers/serial/serial_core.o drivers/serial/msm_serial.o drivers/serial/msm_serial_hs.o
denzfarid/rndc-kernel
drivers/serial/.built-in.o.cmd
bat
gpl-2.0
222
cmd_arch/arm/lib/testchangebit.o := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.testchangebit.o.d -nostdinc -isystem /media/mwilson/SSD/NU3001/kk4.4.2-rk/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/../lib/gcc/arm-eabi/4.6.x-google/include -I/media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk3188/include -Iarch/arm/plat-rk/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/testchangebit.o arch/arm/lib/testchangebit.S source_arch/arm/lib/testchangebit.o := arch/arm/lib/testchangebit.S deps_arch/arm/lib/testchangebit.o := \ /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/arch/arm/include/asm/linkage.h \ /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/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/rk/check/uaccess.h) \ $(wildcard include/config/cpu/use/domains.h) \ /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/arch/arm/include/asm/hwcap.h \ /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ arch/arm/lib/bitops.h \ arch/arm/lib/testchangebit.o: $(deps_arch/arm/lib/testchangebit.o) $(deps_arch/arm/lib/testchangebit.o):
Zaphod-Beeblebrox/kernel_rockchip_rk3188
arch/arm/lib/.testchangebit.o.cmd
bat
gpl-2.0
2,251
cmd_drivers/mmc/core/mmc_core.o := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/mmc/core/mmc_core.o drivers/mmc/core/core.o drivers/mmc/core/bus.o drivers/mmc/core/host.o drivers/mmc/core/mmc.o drivers/mmc/core/mmc_ops.o drivers/mmc/core/sd.o drivers/mmc/core/sd_ops.o drivers/mmc/core/sdio.o drivers/mmc/core/sdio_ops.o drivers/mmc/core/sdio_bus.o drivers/mmc/core/sdio_cis.o drivers/mmc/core/sdio_io.o drivers/mmc/core/sdio_irq.o
kingklick/kk-evo-kernel
drivers/mmc/core/.mmc_core.o.cmd
bat
gpl-2.0
486
cmd_drivers/media/video/uvc/uvcvideo.o := /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/media/video/uvc/uvcvideo.o drivers/media/video/uvc/uvc_driver.o drivers/media/video/uvc/uvc_queue.o drivers/media/video/uvc/uvc_v4l2.o drivers/media/video/uvc/uvc_video.o drivers/media/video/uvc/uvc_ctrl.o drivers/media/video/uvc/uvc_status.o drivers/media/video/uvc/uvc_isight.o
selva-simple/Galaxy-R-Kernel
drivers/media/video/uvc/.uvcvideo.o.cmd
bat
gpl-2.0
421
cmd_drivers/mtd/nand/nandsim.ko := ld -r -m elf_i386 -T /home/madhwang/Development/linuxSource/linux-2.6.34.7/scripts/module-common.lds --build-id -o drivers/mtd/nand/nandsim.ko drivers/mtd/nand/nandsim.o drivers/mtd/nand/nandsim.mod.o
madhwang/linuxKernel
drivers/mtd/nand/.nandsim.ko.cmd
bat
gpl-2.0
236
IF NOT "%LANG%"=="RUS" GOTO :EOF IF NOT "%GDIPLUS_UPDATE_ID%"=="KB2659262" GOTO :EOF SET SHA1_GDIPLUS_MSFT_X64_MAN=47,a2,31,bc,5f,c2,f2,02,34,88,ef,a1,2d,6c,dc,a1,2d,71,7d,55 SET SHA1_GDIPLUS_MSFT_X64_FILE=71,8f,c0,bf,b7,fb,1f,9c,12,c8,2a,f7,1a,2b,2f,b1,d4,d4,02,5f SET SHA1_GDIPLUS_POLICY_X64=36,f3,47,b6,2d,ad,ab,20,ce,72,63,af,2f,6a,39,d5,47,ef,6c,ec SET SHA1_GDIPLUS_MSFT_X86_MAN=98,5c,e1,b5,1d,16,68,34,84,78,42,a2,3e,d6,32,28,ad,f2,13,a2 SET SHA1_GDIPLUS_MSFT_X86_FILE=2b,63,4c,3b,26,03,f8,c3,07,92,ae,33,ea,fc,b7,8c,6b,59,9f,e1 SET SHA1_GDIPLUS_POLICY_X86=96,20,13,91,2e,ca,13,96,8d,a7,32,90,fb,4e,c6,b1,84,aa,68,5d
Explorer09/nlite-asms01cab
global_vars/not_supported/RUS/KB2659262_RUS.cmd
bat
gpl-2.0
625
cmd_drivers/bluetooth/bthid/built-in.o := rm -f drivers/bluetooth/bthid/built-in.o; /home/dolphinor/arm-2009q3/bin/arm-none-eabi-ar rcs drivers/bluetooth/bthid/built-in.o
SeoDongMin/Gace_kernel
drivers/bluetooth/bthid/.built-in.o.cmd
bat
gpl-2.0
172
cmd_drivers/net/ethernet/microchip/built-in.o := rm -f drivers/net/ethernet/microchip/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/net/ethernet/microchip/built-in.o
avareldalton85/rpi2-linux-rt
drivers/net/ethernet/microchip/.built-in.o.cmd
bat
gpl-2.0
238
cmd_drivers/media/common/tuners/xc5000.ko := arm-linux-gnueabihf-ld -EL -r -T /home/darrell/android/rockchip/rk3188/scripts/module-common.lds --build-id -o drivers/media/common/tuners/xc5000.ko drivers/media/common/tuners/xc5000.o drivers/media/common/tuners/xc5000.mod.o
Dee-UK/D33_KK_Kernel
drivers/media/common/tuners/.xc5000.ko.cmd
bat
gpl-2.0
274
@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\w_elliptic.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\w_elliptic.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
bluescarni/w_elliptic
doc/sphinx/make.bat
bat
gpl-3.0
7,252
xasm /b400 patch.z80 del kvalley ren patch.bin kvalley
rururutan/hoot-patches
msx/konami/game_collection_vol1/ouke_no_tani/src/comp.bat
bat
gpl-3.0
55
@shift /0 @echo off :start echo Do you want to access the requested folder? (y/n) echo. set /p choice="> " if %choice%==n goto quit if %choice%==N goto quit if %choice%==y goto passRequest if %choice%==Y goto passRequest echo Please try again echo. goto start :passRequest cls echo Please enter your password. echo. set "psCommand=powershell -Command "$pword = read-host 'Enter Password' -AsSecureString ; ^ $BSTR=[System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($pword); ^ [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)"" for /f "usebackq delims=" %%p in (`%psCommand%`) do set password=%%p REM Basically make sure to change the password below if %password%==insertpasswordhere goto success if NOT %password%==insertpasswordhere goto sorry :sorry cls echo The password was incorrect. The program will now terminate. pause goto quit :success REM %SystemRoot%\explorer.exe "insert path here" goto quit :quit
Finaris/old-projects
Batch/PassAccess.bat
bat
gpl-3.0
981
cl /J /c /DX86_MSW /Fo..\win32.rel\portal.obj portal.c
TimMilesCox/RTA1
rta/portal/mportal.bat
bat
gpl-3.0
56
rem Clean up the results directory rmdir /S /Q results mkdir results rem Synthesize the VHDL Wrapper Files echo 'Synthesizing example design with XST'; xst -ifn xst.scr copy ram2k_exdes.ngc .\results\ rem Copy the netlist generated by Coregen echo 'Copying files from the netlist directory to the results directory' copy ..\..\ram2k.ngc results\ rem Copy the constraints files generated by Coregen echo 'Copying files from constraints directory to results directory' copy ..\example_design\ram2k_exdes.ucf results\ cd results echo 'Running ngdbuild' ngdbuild -p xc6slx9-tqg144-3 ram2k_exdes echo 'Running map' map ram2k_exdes -o mapped.ncd -pr i echo 'Running par' par mapped.ncd routed.ncd echo 'Running trce' trce -e 10 routed.ncd mapped.pcf -o routed echo 'Running design through bitgen' bitgen -w routed echo 'Running netgen to create gate level VHDL model' netgen -ofmt vhdl -sim -tm ram2k_exdes -pcf mapped.pcf -w routed.ncd routed.vhd
antoniovillena/zxuno
cores/NES/xilinx/ipcore_dir/ram2k/implement/implement.bat
bat
gpl-3.0
969
dmd main.d main.def -ofddraw.dll -od.objs -op ddraw.d myiddraw.d myiddrawsurface.d myipalette.d logger.d tools.d -debug -g -version=WOW64DLL rem cv2pdb -D2 ddraw.dll pause
Trass3r/DDrawProxy
make manual.bat
bat
mpl-2.0
177
@ECHO OFF SET solution=zyre.sln SET version=14 SET log=build.log SET tools=Microsoft Visual Studio %version%.0\VC\vcvarsall.bat SET environment="%programfiles(x86)%\%tools%" IF NOT EXIST %environment% SET environment="%programfiles%\%tools%" IF NOT EXIST %environment% GOTO no_tools SET packages= IF EXIST "..\..\..\..\libzmq\builds/msvc/vs2015\libzmq.import.props" ( COPY /Y "..\..\..\..\libzmq\builds/msvc/vs2015\libzmq.import.props" . > %log% IF errorlevel 1 GOTO error ) ELSE ( ECHO Did not find libzmq, aborting. ECHO Please clone from https://github.com/zeromq/libzmq, and then build. GOTO error ) IF EXIST "..\..\..\..\uuid\builds/msvc/vs2015\uuid.import.props" ( COPY /Y "..\..\..\..\uuid\builds/msvc/vs2015\uuid.import.props" . > %log% IF errorlevel 1 GOTO error SET packages=%packages% /p:HAVE_UUID=1 ECHO Building with uuid ) ELSE ( ECHO Building without uuid ) IF EXIST "..\..\..\..\czmq\builds/msvc/vs2015\czmq.import.props" ( COPY /Y "..\..\..\..\czmq\builds/msvc/vs2015\czmq.import.props" . > %log% IF errorlevel 1 GOTO error ) ELSE ( ECHO Did not find czmq, aborting. ECHO Please clone from https://github.com/zeromq/czmq, and then build. GOTO error ) ECHO Building zyre... (%packages%) CALL %environment% x86 > nul ECHO Platform=x86 ECHO Configuration=DynDebug msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %packages% %solution% > %log% IF errorlevel 1 GOTO error ECHO Configuration=DynRelease msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=LtcgDebug msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=LtcgRelease msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=StaticDebug msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=StaticRelease msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %packages% %solution% >> %log% IF errorlevel 1 GOTO error CALL %environment% x86_amd64 > nul ECHO Platform=x64 ECHO Configuration=DynDebug msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %packages% %solution% > %log% IF errorlevel 1 GOTO error ECHO Configuration=DynRelease msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=x64 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=LtcgDebug msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=x64 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=LtcgRelease msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=x64 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=StaticDebug msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=x64 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Configuration=StaticRelease msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=x64 %packages% %solution% >> %log% IF errorlevel 1 GOTO error ECHO Complete: %packages% %solution% GOTO end :error ECHO *** ERROR, build terminated early: see %log% GOTO end :no_tools ECHO *** ERROR, build tools not found: %tools% :end
hintjens/zyre
builds/msvc/vs2015/build.bat
bat
mpl-2.0
3,341
reg add "HKCU\SOFTWARE\Microsoft\Siuf\Rules" /v "NumberOfSIUFInPeriod" /t "REG_DWORD" /d "0" /f reg delete "HKCU\SOFTWARE\Microsoft\Siuf\Rules" /v "PeriodInNanoSeconds" /f
CHEF-KOCH/regtweaks
OS independent/Batch/Disable Windows Feedback.bat
bat
mpl-2.0
171
@echo off echo user=monetdb> .monetdb echo password=monetdb>> .monetdb prompt # $t $g echo on call %SQLCLIENT% -h%HOST% -p%MAPIPORT% -d%TSTDB% -ftest -i -e < "%TSTSRCDIR%\alter_table_describe.SF-1146092-src.sql" @del .monetdb
zyzyis/monetdb
sql/test/BugDay_2005-10-06_2.9.3/Tests/alter_table_describe-mclient.SF-1146092.SQL.bat
bat
mpl-2.0
232
git for-each-ref --format="delete %(refname)" refs/original | git update-ref --stdin git reflog expire --expire=now --all git gc --prune=now
rualark/MGen
git-remove-apply-last.bat
bat
agpl-3.0
141
rem call ant jar call ant warlap rem copy c:\java\dynamide.jar c:\bin\resin-cmp-1.0.5\webapps\Dynamide\WEB-INF\lib rem copy c:\java\com\dynamide\dynamide.war c:\bin\resin-cmp-1.0.5\webapps\dynamide.zip rem start c:\bin\resin-cmp-1.0.5\webapps\dynamide.zip
dynamide/dynamide
src/java/com/dynamide/deploy.bat
bat
agpl-3.0
258
@echo off echo this is the second script! :: exit /b will not only terminate this script, but the calling script. exit /b
PassingTheKnowledge/Batchography
use-script1.bat
bat
apache-2.0
128
@echo off pushd %~dp0\..\lib\glfw git clean -ffxd cmake -G "Visual Studio 12 2013" -DBUILD_SHARED_LIBS=OFF -DCMAKE_CONFIGURATION_TYPES=Debug;Release -DGLFW_BUILD_DOCS=OFF -DGLFW_BUILD_EXAMPLES=OFF -DGLFW_BUILD_TESTS=OFF -DGLFW_INSTALL=OFF popd pushd %~dp0\..\lib\assimp git clean -ffxd cmake -G "Visual Studio 12 2013" -DBUILD_SHARED_LIBS=OFF -DCMAKE_CONFIGURATION_TYPES=Debug;Release -DASSIMP_BUILD_SAMPLES=OFF -DASSIMP_BUILD_TESTS=OFF -DLIBRARY_SUFFIX= popd
anhlinh123/Warlord
proj/premake.bat
bat
apache-2.0
460
@echo off copy "E:\PROJECT\CTTPro\µÚËÄ´úÖÇÄܳ¿¼ìϵͳ\CPTT.WinUI\*.config" E:\PROJECT\CTTPro\µÚËÄ´úÖÇÄܳ¿¼ìϵͳ\CPTT.WinUI\bin\Debug\ if errorlevel 1 goto CSharpReportError goto CSharpEnd :CSharpReportError echo Project error: ij¸ö¹¤¾ß´ÓÉú³ÉʼþÖзµ»ØÁË´íÎó´úÂë exit 1 :CSharpEnd
zesus19/c4.v2
CPTT.WinUI/bin/Debug/PostBuildEvent.bat
bat
apache-2.0
278
REM uninstall before test call un REM Turn off auto-rotation adb shell content insert --uri content://settings/system --bind name:s:accelerometer_rotation --bind value:i:0 REM Rotate to landscape adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:1 REM TDD call gradlew :App:testDebug if %errorlevel% neq 0 exit /b %errorlevel% REM BDD call gradlew app:connectedCheck if %errorlevel% neq 0 exit /b %errorlevel%
tekkies/Readings
test.bat
bat
apache-2.0
459
@rem make_minimal.bat: build the minimal Stasm demo program set OPENCV_HOME=E:/OpenCV2.4.0 set OPENCV_N=240 set OPENCV_LIBDIR=%OPENCV_HOME%/build/x64/vc10/lib cl /EHsc /O2 /W3 /nologo ^ /I../stasm /I%OPENCV_HOME%/build/include ^ %OPENCV_LIBDIR%/opencv_core%OPENCV_N%.lib ^ %OPENCV_LIBDIR%/opencv_highgui%OPENCV_N%.lib ^ %OPENCV_LIBDIR%/opencv_imgproc%OPENCV_N%.lib ^ %OPENCV_LIBDIR%/opencv_objdetect%OPENCV_N%.lib ^ ../apps/minimal.cpp ../stasm/*.cpp ../stasm/MOD_1/*.cpp
Melevir/stasm
vc10x64/make_minimal.bat
bat
bsd-3-clause
503
./data/empty.zero ./data/empty.zero ./data/point_location/linear/curves/test01.txt ./data/point_location/linear/queries/test01.txt ./data/empty.zero ./data/point_location/linear/xcurves/test02.txt ./data/empty.zero ./data/point_location/linear/queries/test02.txt ./data/empty.zero ./data/empty.zero ./data/point_location/linear/curves/test03.txt ./data/point_location/linear/queries/test03.txt
hlzz/dotfiles
graphics/cgal/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_point_location.linear.cmd
bat
bsd-3-clause
394
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set BUILDDIR=build set SPHINXPROJ=i3py if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
Ecpy/i3py
docs/make.bat
bat
bsd-3-clause
776
@erase lang.inc @echo lang fix ru >lang.inc @fasm cpuspeed.asm cpuspeed @erase lang.inc @pause
devlato/kolibrios-llvm
programs/develop/examples/cpuspeed/trunk/build_ru.bat
bat
mit
94
:split [%1 - string to be splitted;%2 - split by;%3 - possition to get; %4 - if defined will store the result in variable with same name] ::http://ss64.org/viewtopic.php?id=1687 setlocal EnableDelayedExpansion set "string=%~2%~1" set "splitter=%~2" set /a position=%~3 set LF=^ rem ** Two empty lines are required echo off for %%L in ("!LF!") DO ( for /f "delims=" %%R in ("!splitter!") do ( set "var=!string:%%~R%%~R=%%~L!" set "var=!var:%%~R=%%~L!" if "!var!" EQU "!string!" ( echo "%~1" does not contain "!splitter!" >&2 exit /B 1 ) ) ) if "!var!" equ "" ( endlocal & if "%~4" NEQ "" ( set "%~4=") ) if !position! LEQ 0 ( set "_skip=" ) else (set "_skip=skip=%position%") for /f "eol= %_skip% delims=" %%P in ("!var!") DO ( if "%%~P" neq "" ( set "part=%%~P" goto :end_for ) ) set "part=" :end_for if not defined part ( endlocal echo Index Out Of Bound >&2 exit /B 2 ) endlocal & if "%~4" NEQ "" (set %~4=%part%) else echo %part% exit /b 0
npocmaka/batch.scripts
stringutils/split.bat
bat
mit
985
@if not defined _echo @echo off setlocal :SetupArgs :: Initialize the args that will be passed to cmake set __nativeWindowsDir=%~dp0Windows set __binDir=%~dp0..\..\Bin set __rootDir=%~dp0..\.. set __CMakeBinDir="" set __IntermediatesDir="" set __BuildArch=x64 set __appContainer="" set __VCBuildArch=x86_amd64 set CMAKE_BUILD_TYPE=Debug set "__LinkArgs= " set "__LinkLibraries= " set __PortableBuild=0 :Arg_Loop if [%1] == [] goto :ToolsVersion if /i [%1] == [Release] ( set CMAKE_BUILD_TYPE=Release&&shift&goto Arg_Loop) if /i [%1] == [Debug] ( set CMAKE_BUILD_TYPE=Debug&&shift&goto Arg_Loop) if /i [%1] == [AnyCPU] ( set __BuildArch=x64&&set __VCBuildArch=x86_amd64&&shift&goto Arg_Loop) if /i [%1] == [x86] ( set __BuildArch=x86&&set __VCBuildArch=x86&&shift&goto Arg_Loop) if /i [%1] == [arm] ( set __BuildArch=arm&&set __VCBuildArch=x86_arm&&set __SDKVersion="-DCMAKE_SYSTEM_VERSION=10.0"&&shift&goto Arg_Loop) if /i [%1] == [x64] ( set __BuildArch=x64&&set __VCBuildArch=x86_amd64&&shift&goto Arg_Loop) if /i [%1] == [amd64] ( set __BuildArch=x64&&set __VCBuildArch=x86_amd64&&shift&goto Arg_Loop) if /i [%1] == [arm64] ( set __BuildArch=arm64&&set __VCBuildArch=arm64&&shift&goto Arg_Loop) if /i [%1] == [portable] ( set __PortableBuild=1&&shift&goto Arg_Loop) if /i [%1] == [rid] ( set __TargetRid=%2&&shift&&shift&goto Arg_Loop) if /i [%1] == [toolsetDir] ( set "__ToolsetDir=%2"&&shift&&shift&goto Arg_Loop) if /i [%1] == [hostver] (set __HostVersion=%2&&shift&&shift&goto Arg_Loop) if /i [%1] == [apphostver] (set __AppHostVersion=%2&&shift&&shift&goto Arg_Loop) if /i [%1] == [fxrver] (set __HostResolverVersion=%2&&shift&&shift&goto Arg_Loop) if /i [%1] == [policyver] (set __HostPolicyVersion=%2&&shift&&shift&goto Arg_Loop) if /i [%1] == [commit] (set __CommitSha=%2&&shift&&shift&goto Arg_Loop) shift goto :Arg_Loop :ToolsVersion if defined VisualStudioVersion goto :RunVCVars set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" if exist %_VSWHERE% ( for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools ) if not exist "%_VSCOMNTOOLS%" set _VSCOMNTOOLS=%VS140COMNTOOLS% if not exist "%_VSCOMNTOOLS%" goto :MissingVersion call "%_VSCOMNTOOLS%\VsDevCmd.bat" :RunVCVars if "%VisualStudioVersion%"=="15.0" ( goto :VS2017 ) else if "%VisualStudioVersion%"=="14.0" ( goto :VS2015 ) :MissingVersion :: Can't find VS 2015 or 2017 echo Error: Visual Studio 2015 or 2017 required echo Please see https://github.com/dotnet/corefx/tree/master/Documentation for build instructions. exit /b 1 :VS2017 :: Setup vars for VS2017 set __VSVersion=vs2017 set __PlatformToolset=v141 if NOT "%__BuildArch%" == "arm64" ( :: Set the environment for the native build call "%VS150COMNTOOLS%..\..\VC\Auxiliary\Build\vcvarsall.bat" %__VCBuildArch% ) goto :SetupDirs :VS2015 :: Setup vars for VS2015build set __VSVersion=vs2015 set __PlatformToolset=v140 if NOT "%__BuildArch%" == "arm64" ( :: Set the environment for the native build call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" %__VCBuildArch% ) :SetupDirs :: Setup to cmake the native components echo Commencing build of corehost echo. if %__CMakeBinDir% == "" ( set "__CMakeBinDir=%__binDir%\%__TargetRid%.%CMAKE_BUILD_TYPE%\corehost" ) if %__IntermediatesDir% == "" ( set "__IntermediatesDir=%__binDir%\obj\%__TargetRid%.%CMAKE_BUILD_TYPE%\corehost" ) set "__ResourcesDir=%__binDir%\obj\%__TargetRid%.%CMAKE_BUILD_TYPE%\hostResourceFiles" set "__CMakeBinDir=%__CMakeBinDir:\=/%" set "__IntermediatesDir=%__IntermediatesDir:\=/%" :: Check that the intermediate directory exists so we can place our cmake build tree there if exist "%__IntermediatesDir%" rd /s /q "%__IntermediatesDir%" if not exist "%__IntermediatesDir%" md "%__IntermediatesDir%" if exist "%VSINSTALLDIR%DIA SDK" goto GenVSSolution echo Error: DIA SDK is missing at "%VSINSTALLDIR%DIA SDK". ^ This is due to a bug in the Visual Studio installer. It does not install DIA SDK at "%VSINSTALLDIR%" but rather ^ at VS install location of previous version. Workaround is to copy DIA SDK folder from VS install location ^ of previous version to "%VSINSTALLDIR%" and then resume build. :: DIA SDK not included in Express editions echo Visual Studio 2013 Express does not include the DIA SDK. ^ You need Visual Studio 2013+ (Community is free). echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1 :GenVSSolution :: Regenerate the VS solution if /i "%__BuildArch%" == "arm64" ( REM arm64 builds currently use private toolset which has not been released yet REM TODO, remove once the toolset is open. call :PrivateToolSet ) echo Calling "%__nativeWindowsDir%\gen-buildsys-win.bat %~dp0 %__VSVersion% %__BuildArch% %__CommitSha% %__HostVersion% %__AppHostVersion% %__HostResolverVersion% %__HostPolicyVersion%" pushd "%__IntermediatesDir%" call "%__nativeWindowsDir%\gen-buildsys-win.bat" %~dp0 %__VSVersion% %__BuildArch% %__CommitSha% %__HostVersion% %__AppHostVersion% %__HostResolverVersion% %__HostPolicyVersion% %__PortableBuild% popd :CheckForProj :: Check that the project created by Cmake exists if exist "%__IntermediatesDir%\ALL_BUILD.vcxproj" goto BuildNativeProj goto :Failure :BuildNativeProj :: Build the project created by Cmake if "%__BuildArch%" == "arm64" ( set __msbuildArgs=/p:UseEnv=true ) else ( set __msbuildArgs=/p:Platform=%__BuildArch% /p:PlatformToolset="%__PlatformToolset%" ) cd %__rootDir% echo %__rootDir%\run.cmd build-native -- "%__IntermediatesDir%\ALL_BUILD.vcxproj" /t:rebuild /p:Configuration=%CMAKE_BUILD_TYPE% %__msbuildArgs% call %__rootDir%\run.cmd build-native -- "%__IntermediatesDir%\ALL_BUILD.vcxproj" /t:rebuild /p:Configuration=%CMAKE_BUILD_TYPE% %__msbuildArgs% IF ERRORLEVEL 1 ( goto :Failure ) echo Done building Native components exit /B 0 :Failure :: Build failed echo Failed to generate native component build project! exit /b 1 :PrivateToolSet echo %__MsgPrefix% Setting Up the usage of __ToolsetDir:%__ToolsetDir% if /i "%__ToolsetDir%" == "" ( echo %__MsgPrefix%Error: A toolset directory is required for the Arm64 Windows build. Use the toolsetDir argument. exit /b 1 ) set PATH=%__ToolsetDir%\VC_sdk\bin;%PATH% set LIB=%__ToolsetDir%\VC_sdk\lib\arm64;%__ToolsetDir%\sdpublic\sdk\lib\arm64 set INCLUDE=^ %__ToolsetDir%\VC_sdk\inc;^ %__ToolsetDir%\sdpublic\sdk\inc;^ %__ToolsetDir%\sdpublic\shared\inc;^ %__ToolsetDir%\sdpublic\shared\inc\minwin;^ %__ToolsetDir%\sdpublic\sdk\inc\ucrt;^ %__ToolsetDir%\sdpublic\sdk\inc\minwin;^ %__ToolsetDir%\sdpublic\sdk\inc\mincore;^ %__ToolsetDir%\sdpublic\sdk\inc\abi;^ %__ToolsetDir%\sdpublic\sdk\inc\clientcore;^ %__ToolsetDir%\diasdk\include exit /b 0
ravimeda/core-setup
src/corehost/build.cmd
bat
mit
6,901
type main.tex | find "\def\usewhat{dvipspdf}" && goto dvipspdf type main.tex | find "\def\usewhat{dvipdfmx}" && goto dvipdfmx type main.tex | find "\def\usewhat{pdflatex}" && goto pdflatex type main.tex | find "\def\usewhat{xelatex}" && goto xelatex type main.tex | find "\def\usewhat{yap}" && goto yap :dvipspdf del main_dvipspdf.pdf main.dvi main.ps latex main.tex bibtex main latex main.tex latex main.tex dvips -G0 -ta4 main.dvi ps2pdf main.ps main_dvipspdf.pdf del *.aux *.bbl *.blg *.out *.thm *.toc *.lof *.fen *.toe *.lot *.ten *.log *.ps *.dvi *.loa /s start main_dvipspdf.pdf exit :dvipdfmx del main_dvipdfm.pdf main.dvi latex main.tex bibtex main latex main.tex gbk2uni main.out latex main.tex dvipdfmx -p a4 main.dvi ren main.pdf main_dvipdfm.pdf del *.aux *.bbl *.blg *.out *.thm *.toc *.lof *.fen *.toe *.lot *.ten *.log *.ps *.dvi *.loa /s start main_dvipdfm.pdf exit :pdflatex del main_pdflatex.pdf pdflatex main.tex bibtex main pdflatex main.tex gbk2uni main.out pdflatex main.tex ren main.pdf main_pdflatex.pdf del *.aux *.bbl *.blg *.out *.thm *.toc *.lof *.fen *.toe *.lot *.ten *.log *.synctex *.loa /s start main_pdflatex.pdf exit :xelatex del main_xelatex.pdf xelatex main.tex bibtex main xelatex main.tex xelatex main.tex ren main.pdf main_xelatex.pdf del *.aux *.bbl *.blg *.out *.thm *.toc *.lof *.fen *.toe *.lot *.ten *.log *.gz *.gz(busy) *.synctex *.loa /s start main_xelatex.pdf exit :yap del main.dvi latex main.tex bibtex main latex main.tex gbk2uni main.out latex main.tex del *.aux *.bbl *.blg *.out *.thm *.toc *.lof *.fen *.toe *.lot *.ten *.log *.loa /s start main.dvi exit
deercoder/exp-code
latex/template/hrbeuthesis-read-only/make.bat
bat
mit
1,686
cmd_net/key/built-in.o := arm-linux-gnueabi-ld -EL -r -o net/key/built-in.o net/key/af_key.o
jpsminix/minix5
net/key/.built-in.o.cmd
bat
gpl-2.0
98
@ECHO OFF FOR /f %%A IN ('dir ..\old /A:D') DO SET upCount=%%A SET /a upCount=upCount SET /a upCount=upCount - 1 SET upCount=updates_%upCount% MKDIR ..\old\%upCount% MOVE ..\updates\* ..\old\%upCount%\ ECHO Done
aikon-com-cn/NoxicDB
tools/adb_release.bat
bat
agpl-3.0
212
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:S1_ConnectionTest_CapabilityExchange_PositiveTest_BitmapCapSet_MaxDesktopWidth /Logger:trx pause
JessieF/WindowsProtocolTestSuites
TestSuites/RDP/src/Batch/RDPBCGR/S1_ConnectionTest_CapabilityExchange_PositiveTest_BitmapCapSet_MaxDesktopWidth.cmd
bat
mit
267
del Properties\*.resx copy ..\Csla.Shared.Resources\*.resx Properties\
jonnybee/csla
Source/Csla.NetStandard2.0/copyResources.cmd
bat
mit
70
@echo off set DIR=target\zip mkdir %DIR% xcopy /Y target\Release\*.dll %DIR% xcopy /Y target\Release\*.exe %DIR% xcopy /S /Y target\Release\etc %DIR%\etc\ xcopy /S /Y target\Release\lib %DIR%\lib\ xcopy /S /Y ..\help %DIR%\help\ call tools\dos2unix.cmd ..\help\tips\tips.txt %DIR%\help\tips\tips.txt rmdir /S /Q %DIR%\help\cvs for %%f in (c de en fr tips) do rmdir /S /Q %DIR%\help\%%f\cvs xcopy /S /Y ..\pixmaps\*.png %DIR%\pixmaps\ for %%f in (CS DA DE EL EO ES FA FR HE IT NL PL PT_BR RO RU ZH_CN) do ( mkdir target\zip\lib\locale\%%f\LC_MESSAGES target\gtk-dev\bin\msgfmt.exe ..\po\%%f.po --output-file=target\zip\lib\locale\%%f\LC_MESSAGES\grisbi.mo ) cd %DIR% zip -r ..\grisbi * pause
LudovicRousseau/grisbi
win32-mingw/package.cmd
bat
gpl-2.0
698
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. IF [%1] EQU [] ( echo USAGE: %0 connect-standalone.properties EXIT /B 1 ) SetLocal rem Using pushd popd to set BASE_DIR to the absolute path pushd %~dp0..\.. set BASE_DIR=%CD% popd rem Log4j settings IF ["%KAFKA_LOG4J_OPTS%"] EQU [""] ( set KAFKA_LOG4J_OPTS=-Dlog4j.configuration=file:%BASE_DIR%/config/connect-log4j.properties ) "%~dp0kafka-run-class.bat" org.apache.kafka.connect.cli.ConnectStandalone %* EndLocal
guozhangwang/kafka
bin/windows/connect-standalone.bat
bat
apache-2.0
1,241
cd Core call nugetPack.cmd cd .. cd Client call nugetPack.cmd cd .. cd EmbeddedSts call NugetPack.cmd cd .. cd WCF call NugetPack.cmd cd .. cd WebAPI call NugetPack.cmd cd .. cd WebAPI.AuthenticationHandler call NugetPack.cmd cd .. cd Hawk call NugetPack.cmd cd .. cd SystemWeb call NugetPack.cmd
asteffens007/identity_model
nuget/packAll.cmd
bat
bsd-3-clause
303
@ECHO OFF SET batUrl=%~dp0 php "%batUrl%build.php" %1 PAUSE
Bacra/php-d2server
build/build.bat
bat
mit
60
:: Hak Cipta ©2018 :: @neon-nyan / codeneon :: [[email protected]] :: :: Di bawah Hak Cipta MIT License :: [https://github.com/neon-nyan/xAutoBatch/raw/master/LICENSE] :DoCalculate set param=psy-rd for /r %%a in ("input\*.spf") do ( set input=%%a setlocal enabledelayedexpansion && call %b%\IO\Calculator\AQModCalculator title=%debStat%AQ2 Str: !n1! - AQ2 Sens: !n2! - AQ3 Str: !n3! - AQ3 Sens: !ns! cls echo %props.style.header.style1% echo Hasil Statistika echo %props.style.header.style1% echo %%~na.spf echo. echo AQ2 Strength : !n1! echo AQ2 Sensitivity : !n2! echo AQ3 Strength : !n3! echo AQ3 Sensitivity : !ns! echo. pause | echo Tekan apa saja untuk menghitung ke file selanjutnya... ) cls
neon-nyan/xAutoBatch
include/Tools/CalculateAQ.cmd
bat
mit
951
@echo off Setlocal EnableDelayedExpansion EnableExtensions cd %APPVEYOR_BUILD_FOLDER% :: ========================================================= :: Set some defaults. Infer some variables. :: if "%LUA_VER%" NEQ "" ( set LUA=lua set LUA_SHORTV=%LUA_VER:~0,3% ) else ( set LUA=luajit set LJ_SHORTV=%LJ_VER:~0,3% set LUA_SHORTV=5.1 ) set LUAROCKS_SHORTV=%LUAROCKS_VER:~0,3% if not defined LUAROCKS_URL set LUAROCKS_URL=http://keplerproject.github.io/luarocks/releases if not defined LUAROCKS_REPO set LUAROCKS_REPO=http://rocks.moonscript.org if not defined LUA_URL set LUA_URL=http://www.lua.org/ftp if not defined LUAJIT_GIT_REPO set LUAJIT_GIT_REPO=http://luajit.org/git/luajit-2.0.git if not defined LUAJIT_URL set LUAJIT_URL=http://luajit.org/download if not defined LR_EXTERNAL set LR_EXTERNAL=c:\external if not defined LUAROCKS_INSTALL set LUAROCKS_INSTALL=%ProgramFiles(x86)%\LuaRocks if not defined LR_ROOT set LR_ROOT=%LUAROCKS_INSTALL%\%LUAROCKS_SHORTV% if not defined LR_SYSTREE set LR_SYSTREE=%LUAROCKS_INSTALL%\systree if /I "%platform%"=="x64" set LR_SYSTREE=%ProgramFiles%\LuaRocks\systree if not defined SEVENZIP set SEVENZIP=7z :: :: ========================================================= :: first create some necessary directories: mkdir downloads 2>NUL :: Download and compile Lua (or LuaJIT) if "%LUA%"=="luajit" ( :: defines LUA_DIR so Cmake can find this LuaJIT install set LUA_DIR=c:\lj%LJ_SHORTV% if not exist !LUA_DIR! ( if !LJ_SHORTV!==2.1 ( :: Clone repository and checkout 2.1 branch set lj_source_folder=%APPVEYOR_BUILD_FOLDER%\downloads\luajit-%LJ_VER% if not exist !lj_source_folder! ( echo Cloning git repo %LUAJIT_GIT_REPO% !lj_source_folder! git clone %LUAJIT_GIT_REPO% !lj_source_folder! || call :die "Failed to clone repository" ) cd !lj_source_folder!\src git checkout v2.1 || call :die ) else ( set lj_source_folder=%APPVEYOR_BUILD_FOLDER%\downloads\luajit-%LJ_VER% if not exist !lj_source_folder! ( echo Downloading... %LUAJIT_URL%/LuaJIT-%LJ_VER%.tar.gz curl --silent --fail --max-time 120 --connect-timeout 30 %LUAJIT_URL%/LuaJIT-%LJ_VER%.tar.gz | %SEVENZIP% x -si -so -tgzip | %SEVENZIP% x -si -ttar -aoa -odownloads ) cd !lj_source_folder!\src ) :: Compiles LuaJIT call msvcbuild.bat mkdir !LUA_DIR! 2> NUL for %%a in (bin include lib) do ( mkdir "!LUA_DIR!\%%a" ) for %%a in (luajit.exe lua51.dll) do ( move "!lj_source_folder!\src\%%a" "!LUA_DIR!\bin" ) move "!lj_source_folder!\src\lua51.lib" "!LUA_DIR!\lib" for %%a in (lauxlib.h lua.h lua.hpp luaconf.h lualib.h luajit.h) do ( copy "!lj_source_folder!\src\%%a" "!LUA_DIR!\include" ) ) else ( echo LuaJIT %LJ_VER% already installed at !LUA_DIR! ) ) else ( :: defines LUA_DIR so Cmake can find this Lua install set LUA_DIR=c:\lua%LUA_VER% if not exist !LUA_DIR! ( :: Download and compile Lua if not exist downloads\lua-%LUA_VER% ( curl --silent --fail --max-time 120 --connect-timeout 30 %LUA_URL%/lua-%LUA_VER%.tar.gz | %SEVENZIP% x -si -so -tgzip | %SEVENZIP% x -si -ttar -aoa -odownloads ) mkdir downloads\lua-%LUA_VER%\etc 2> NUL if not exist downloads\lua-%LUA_VER%\etc\winmake.bat ( curl --silent --location --insecure --fail --max-time 120 --connect-timeout 30 https://github.com/Tieske/luawinmake/archive/master.tar.gz | %SEVENZIP% x -si -so -tgzip | %SEVENZIP% e -si -ttar -aoa -odownloads\lua-%LUA_VER%\etc luawinmake-master\etc\winmake.bat ) cd downloads\lua-%LUA_VER% call etc\winmake call etc\winmake install c:\lua%LUA_VER% ) else ( echo Lua %LUA_VER% already installed at !LUA_DIR! ) ) if not exist !LUA_DIR!\bin\%LUA%.exe ( echo Missing Lua interpreter exit /B 1 ) set PATH=%LUA_DIR%\bin;%PATH% call !LUA! -v :: ========================================================= :: LuaRocks :: ========================================================= if not exist "%LR_ROOT%" ( :: Downloads and installs LuaRocks cd %APPVEYOR_BUILD_FOLDER% if not exist downloads\luarocks-%LUAROCKS_VER%-win32.zip ( echo Downloading LuaRocks... curl --silent --fail --max-time 120 --connect-timeout 30 --output downloads\luarocks-%LUAROCKS_VER%-win32.zip %LUAROCKS_URL%/luarocks-%LUAROCKS_VER%-win32.zip %SEVENZIP% x -aoa -odownloads downloads\luarocks-%LUAROCKS_VER%-win32.zip ) cd downloads\luarocks-%LUAROCKS_VER%-win32 call install.bat /LUA %LUA_DIR% /Q /LV %LUA_SHORTV% /P "%LUAROCKS_INSTALL%" ) if not exist "%LR_ROOT%" ( echo LuaRocks installation failed. exit /B 2 ) set PATH=%LR_ROOT%;%LR_SYSTREE%\bin;%PATH% :: Lua will use just the system rocks set LUA_PATH=%LR_ROOT%\lua\?.lua;%LR_ROOT%\lua\?\init.lua set LUA_PATH=%LUA_PATH%;%LR_SYSTREE%\share\lua\%LUA_SHORTV%\?.lua set LUA_PATH=%LUA_PATH%;%LR_SYSTREE%\share\lua\%LUA_SHORTV%\?\init.lua set LUA_CPATH=%LR_SYSTREE%\lib\lua\%LUA_SHORTV%\?.dll call luarocks --version || call :die "Error with LuaRocks installation" call luarocks list if not exist "%LR_EXTERNAL%" ( mkdir "%LR_EXTERNAL%" mkdir "%LR_EXTERNAL%\lib" mkdir "%LR_EXTERNAL%\include" ) set PATH=%LR_EXTERNAL%;%PATH% echo ====================================================== if "%LUA%"=="luajit" ( echo Installation of LuaJIT %LJ_VER% and LuaRocks %LUAROCKS_VER% done. ) else ( echo Installation of Lua %LUA_VER% and LuaRocks %LUAROCKS_VER% done. ) echo Platform - %platform% echo LUA_PATH - %LUA_PATH% echo LUA_CPATH - %LUA_CPATH% echo ====================================================== endlocal & set PATH=%PATH%& set LUA_DIR=%LUA_DIR%& set LR_SYSTREE=%LR_SYSTREE%& set LUA_PATH=%LUA_PATH%& set LUA_CPATH=%LUA_CPATH% goto :eof :: This blank space is intentional. If you see errors like "The system cannot find the batch label specified 'foo'" :: then try adding or removing blank lines lines above. :: Yes, really. :: http://stackoverflow.com/questions/232651/why-the-system-cannot-find-the-batch-label-specified-is-thrown-even-if-label-e :: helper functions: :: for bailing out when an error occurred :die %1 echo %1 exit 1 goto :eof
moteus/lua-appveyor-example
.appveyor/install.bat
bat
mit
6,050
cmd_drivers/gpu/drm/built-in.o := ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ld -EL -r -o drivers/gpu/drm/built-in.o drivers/gpu/drm/drm.o drivers/gpu/drm/i2c/built-in.o
spacecaker/CM7_Space_Kernel_Cooper
drivers/gpu/drm/.built-in.o.cmd
bat
gpl-2.0
182
@echo off :::::::::::::::::::::::::::::::::::: :: UPDATE PEAR :: :::::::::::::::::::::::::::::::::::: echo. echo [XAMPP]: Try to update and upgrade PEAR ... set "CURRENT_DIR=%cd%" %CURRENT_DIR%\pear update-channels && %CURRENT_DIR%\pear upgrade-all
Esleelkartea/kz-adeada-talleres-electricos-
kzadeadatallereselectricos_v1.0.0_win32_installer/windows/xampp/php/pear-update.bat
bat
gpl-2.0
263
cmd_security/built-in.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o security/built-in.o security/commoncap.o security/min_addr.o
dagnarf/sgh-i717-dagkernel
security/.built-in.o.cmd
bat
gpl-2.0
166
cmd_kernel/timer.o := arm-linux-gnueabi-gcc -Wp,-MD,kernel/.timer.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.6/include -I/root/linux-jps/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/plat-rk/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -Wno-unused-but-set-variable -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(timer)" -D"KBUILD_MODNAME=KBUILD_STR(timer)" -c -o kernel/timer.o kernel/timer.c source_kernel/timer.o := kernel/timer.c deps_kernel/timer.o := \ $(wildcard include/config/base/small.h) \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/irq/work.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/kernel_stat.h \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ $(wildcard include/config/debug/preempt.h) \ include/linux/errno.h \ /root/linux-jps/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.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) \ /root/linux-jps/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /root/linux-jps/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/linux-jps/arch/arm/include/asm/posix_types.h \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/const.h \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/lib/gcc/arm-linux-gnueabi/4.6/include/stdarg.h \ include/linux/linkage.h \ /root/linux-jps/arch/arm/include/asm/linkage.h \ include/linux/bitops.h \ /root/linux-jps/arch/arm/include/asm/bitops.h \ /root/linux-jps/arch/arm/include/asm/system.h \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cpu/32v6k.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/v6.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /root/linux-jps/arch/arm/include/asm/irqflags.h \ /root/linux-jps/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/linux-jps/arch/arm/include/asm/hwcap.h \ /root/linux-jps/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/asm-generic/bitops/le.h \ /root/linux-jps/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/linux-jps/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/dynamic_debug.h \ /root/linux-jps/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/linux-jps/arch/arm/include/asm/div64.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/linux-jps/arch/arm/include/asm/string.h \ include/linux/preempt.h \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /root/linux-jps/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/linux-jps/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/linux-jps/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ /root/linux-jps/arch/arm/include/asm/smp.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/linux-jps/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/interrupt.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/irq/forced/threading.h) \ $(wildcard include/config/generic/irq/probe.h) \ $(wildcard include/config/proc/fs.h) \ include/linux/irqreturn.h \ include/linux/irqnr.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/irq/time/accounting.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/debug/lock/alloc.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /root/linux-jps/arch/arm/include/asm/hardirq.h \ $(wildcard include/config/local/timers.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /root/linux-jps/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /root/linux-jps/arch/arm/include/asm/irq.h \ arch/arm/mach-rk30/include/mach/irqs.h \ include/linux/irq_cpustat.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/timerfd.h) \ include/linux/rbtree.h \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /root/linux-jps/arch/arm/include/asm/spinlock_types.h \ include/linux/rwlock_types.h \ /root/linux-jps/arch/arm/include/asm/spinlock.h \ $(wildcard include/config/thumb2/kernel.h) \ /root/linux-jps/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/errata/754327.h) \ /root/linux-jps/arch/arm/include/asm/hw_breakpoint.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /root/linux-jps/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/math64.h \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /root/linux-jps/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /root/linux-jps/arch/arm/include/asm/timex.h \ arch/arm/mach-rk30/include/mach/timex.h \ include/linux/wait.h \ /root/linux-jps/arch/arm/include/asm/current.h \ include/linux/timer.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/timerqueue.h \ include/linux/kref.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/trace/events/irq.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/completion.h \ include/linux/rcutree.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ /root/linux-jps/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/irq.h \ $(wildcard include/config/s390.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/generic/pending/irq.h) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/have/arch/pfn/valid.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /root/linux-jps/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /root/linux-jps/arch/arm/include/asm/glue.h \ /root/linux-jps/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ arch/arm/mach-rk30/include/mach/memory.h \ include/linux/version.h \ arch/arm/mach-rk30/include/mach/io.h \ $(wildcard include/config/rk/debug/uart.h) \ /root/linux-jps/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/have/arch/mutex/cpu/relax.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ /root/linux-jps/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) \ /root/linux-jps/arch/arm/include/asm/irq_regs.h \ include/asm-generic/irq_regs.h \ include/linux/irqdesc.h \ $(wildcard include/config/irq/preflow/fasteoi.h) \ $(wildcard include/config/sparse/irq.h) \ /root/linux-jps/arch/arm/include/asm/hw_irq.h \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/debug/set/module/ronx.h) \ include/linux/stat.h \ /root/linux-jps/arch/arm/include/asm/stat.h \ include/linux/kmod.h \ include/linux/sysctl.h \ include/linux/elf.h \ include/linux/elf-em.h \ /root/linux-jps/arch/arm/include/asm/elf.h \ /root/linux-jps/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ /root/linux-jps/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/transparent/hugepage.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/hugetlbfs.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/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /root/linux-jps/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /root/linux-jps/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ include/linux/bit_spinlock.h \ /root/linux-jps/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /root/linux-jps/arch/arm/include/asm/proc-fns.h \ /root/linux-jps/arch/arm/include/asm/glue-proc.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6k.h) \ $(wildcard include/config/cpu/v7.h) \ arch/arm/mach-rk30/include/mach/vmalloc.h \ /root/linux-jps/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ include/linux/huge_mm.h \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/vm_event_item.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 \ $(wildcard include/config/cgroups.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/sched/autogroup.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/fanotify.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/rcu/boost.h) \ $(wildcard include/config/compat/brk.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ include/linux/capability.h \ include/linux/sem.h \ include/linux/ipc.h \ /root/linux-jps/arch/arm/include/asm/ipcbuf.h \ /root/linux-jps/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /root/linux-jps/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /root/linux-jps/arch/arm/include/asm/sigcontext.h \ /root/linux-jps/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.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/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /root/linux-jps/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/user/ns.h) \ include/linux/key.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/idr.h \ include/linux/cgroup_subsys.h \ $(wildcard include/config/cgroup/debug.h) \ $(wildcard include/config/cgroup/cpuacct.h) \ $(wildcard include/config/cgroup/device.h) \ $(wildcard include/config/cgroup/freezer.h) \ $(wildcard include/config/net/cls/cgroup.h) \ $(wildcard include/config/blk/cgroup.h) \ $(wildcard include/config/cgroup/perf.h) \ include/linux/node.h \ $(wildcard include/config/memory/hotplug/sparse.h) \ include/linux/sysdev.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ $(wildcard include/config/pm/runtime.h) \ include/linux/pid_namespace.h \ $(wildcard include/config/pid/ns.h) \ include/linux/nsproxy.h \ include/linux/posix-timers.h \ include/linux/alarmtimer.h \ include/linux/rtc.h \ $(wildcard include/config/rtc/intf/dev/uie/emul.h) \ $(wildcard include/config/rtc/hctosys.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/devtmpfs.h) \ $(wildcard include/config/sysfs/deprecated.h) \ include/linux/ioport.h \ include/linux/klist.h \ /root/linux-jps/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ include/linux/seq_file.h \ include/linux/cdev.h \ include/linux/kdev_t.h \ include/linux/poll.h \ /root/linux-jps/arch/arm/include/asm/poll.h \ include/asm-generic/poll.h \ include/linux/fs.h \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/fs/xip.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /root/linux-jps/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/dcache.h \ include/linux/rculist_bl.h \ include/linux/list_bl.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /root/linux-jps/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ /root/linux-jps/arch/arm/include/asm/uaccess.h \ /root/linux-jps/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/linux/cpu.h \ $(wildcard include/config/arch/cpu/probe/release.h) \ $(wildcard include/config/pm/sleep/smp.h) \ include/linux/syscalls.h \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/mips.h) \ $(wildcard include/config/have/syscall/wrappers.h) \ include/linux/unistd.h \ /root/linux-jps/arch/arm/include/asm/unistd.h \ $(wildcard include/config/oabi/compat.h) \ include/trace/syscall.h \ include/linux/ftrace_event.h \ include/linux/ring_buffer.h \ $(wildcard include/config/ring/buffer/allow/swap.h) \ include/linux/kmemcheck.h \ include/linux/trace_seq.h \ include/linux/perf_event.h \ $(wildcard include/config/perf/use/vmalloc.h) \ /root/linux-jps/arch/arm/include/asm/perf_event.h \ /root/linux-jps/arch/arm/include/asm/local64.h \ include/asm-generic/local64.h \ include/linux/ftrace.h \ $(wildcard include/config/function/tracer.h) \ $(wildcard include/config/dynamic/ftrace.h) \ $(wildcard include/config/stack/tracer.h) \ $(wildcard include/config/frame/pointer.h) \ include/linux/trace_clock.h \ include/linux/kallsyms.h \ /root/linux-jps/arch/arm/include/asm/ftrace.h \ $(wildcard include/config/old/mcount.h) \ include/linux/irq_work.h \ /root/linux-jps/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ include/linux/delay.h \ /root/linux-jps/arch/arm/include/asm/delay.h \ include/linux/tick.h \ $(wildcard include/config/generic/clockevents.h) \ $(wildcard include/config/generic/clockevents/broadcast.h) \ $(wildcard include/config/tick/oneshot.h) \ include/linux/clockchips.h \ $(wildcard include/config/generic/clockevents/build.h) \ include/linux/clocksource.h \ $(wildcard include/config/clocksource/watchdog.h) \ $(wildcard include/config/generic/time/vsyscall.h) \ /root/linux-jps/arch/arm/include/asm/io.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/trace/events/timer.h \ kernel/timer.o: $(deps_kernel/timer.o) $(deps_kernel/timer.o):
jpsminix/minix5
kernel/.timer.o.cmd
bat
gpl-2.0
29,621
cmd_crypto/hash.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-gcc -Wp,-MD,crypto/.hash.o.d -nostdinc -isystem /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include -Iinclude -I/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-goldfish/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(hash)" -D"KBUILD_MODNAME=KBUILD_STR(crypto_hash)" -c -o crypto/hash.o crypto/hash.c deps_crypto/hash.o := \ crypto/hash.c \ $(wildcard include/config/proc/fs.h) \ include/crypto/internal/hash.h \ include/crypto/algapi.h \ include/linux/crypto.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/atomic.h \ $(wildcard include/config/smp.h) \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/posix_types.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ include/linux/linkage.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irqflags.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hwcap.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/atomic.h \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/stat.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.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) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ include/linux/math64.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/wait.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-goldfish/include/mach/memory.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/elf.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/module.h \ include/linux/uaccess.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/uaccess.h \ include/crypto/hash.h \ include/linux/seq_file.h \ crypto/internal.h \ $(wildcard include/config/crypto/fips.h) \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/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 \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/auxvec.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-goldfish/include/mach/vmalloc.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.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 \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/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/radix-tree.h \ include/linux/pid.h \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/semaphore.h \ include/linux/fiemap.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/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/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) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/shmparam.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/kmap_types.h \ include/linux/interrupt.h \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/irqnr.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/no/hz.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/dynamic/ftrace.h) \ $(wildcard include/config/function/graph/tracer.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hardirq.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irq.h \ arch/arm/mach-goldfish/include/mach/irqs.h \ include/linux/irq_cpustat.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/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/linux/timex.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/timex.h \ arch/arm/mach-goldfish/include/mach/timex.h \ include/linux/jiffies.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ipcbuf.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sigcontext.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.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 \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ crypto/hash.o: $(deps_crypto/hash.o) $(deps_crypto/hash.o):
mjmccall/Kernel
crypto/.hash.o.cmd
bat
gpl-2.0
23,406
cmd_sound/soc/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o sound/soc/built-in.o sound/soc/snd-soc-core.o sound/soc/codecs/built-in.o sound/soc/atmel/built-in.o sound/soc/au1x/built-in.o sound/soc/blackfin/built-in.o sound/soc/davinci/built-in.o sound/soc/fsl/built-in.o sound/soc/imx/built-in.o sound/soc/omap/built-in.o sound/soc/pxa/built-in.o sound/soc/s3c24xx/built-in.o sound/soc/s6000/built-in.o sound/soc/sh/built-in.o sound/soc/txx9/built-in.o sound/soc/msm/built-in.o
wujiku/superstar-kernel-shooter-2.3.4gb
sound/soc/.built-in.o.cmd
bat
gpl-2.0
522
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\git-gerritclone.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\git-gerritclone.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
hashar/git-gerritclone
doc/make.bat
bat
gpl-2.0
6,728
cmd_sound/isa/msnd/built-in.o := rm -f sound/isa/msnd/built-in.o; ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ar rcs sound/isa/msnd/built-in.o
spacecaker/CM7_Space_Kernel_Cooper
sound/isa/msnd/.built-in.o.cmd
bat
gpl-2.0
150
/* */ call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs" call SysLoadFuncs say "Warning: This is your last chance to back out. If you do not wish to" say "continue, please just press ENTER. Otherwise please type ""yes""" pull letter if letter <> "YES" then exit /* Find drive where OS/2 is installed */ bootdrive = SysSearchPath('PATH', 'OS2.INI') /* say os2path */ bootdrive = left(bootdrive, 2) copy "FREETYPE.DLL " || bootdrive || "\os2\dll" if rc <> 0 then do say "Error: Could not copy file!" pause exit end app = "PM_Font_Drivers" key = "TRUETYPE" val = "\OS2\DLL\FREETYPE.DLL" || d2c(0) SysIni('BOTH', app, key, val) say "Font Driver is installed. Please reboot." pause
chriskmanx/qmole
QMOLEDEV/vnc-4_1_3-unixsrc/unix/xc/extras/FreeType/contrib/ftos2/install.cmd
bat
gpl-3.0
707
echo off rem set JAVA_FLAGS=-Dhttp.proxyHost=10.0.201.201 -Dhttp.proxyPort=8080 set JAVA_FLAGS= set API_KEY=bbda35ce24663d405685a13f9f2403f56db7f98b set REDMINE_URL=http://www.hostedredmine.com/ set GANTTPROJ_FILE=DemoRedmine.gan set PROJECTS=redmineganttproject set ASSIGNEE=Duc Hoang,Another set START_DATE=2015-11-01 java %JAVA_FLAGS% -jar ..\..\release\RedmineToGanttProj.jar load pause
ducyen/RedmineGanttProject
samples/DemoRedmine/DemoRedmine_Load.bat
bat
gpl-3.0
391
@echo off :: Windows 10 Optimizer Batch :: :: Written by Norrodar :: :: For more information and updates visit: :: https://github.com/Norrodar/Windows-10-Optimizer-Batch :: :: Licensed under GPLv3 echo. echo. echo. echo. echo ----------------- !!! ATTENTION !!! ----------------- echo. echo This script needs administrative rights to access and install all programs echo and options. At the next step this script ask for administrative rights. echo. echo Please check all the scripts if they match your needs. echo. echo If you like to go on hit any key. Otherwise simply close this window. echo. echo. pause call .\bin\Win10_optimizer_batch.bat
Niranda/Windows-10-Optimizer-Batch
START.bat
bat
gpl-3.0
699
@echo off set SNAP_HOME=${installer:sys.installationDir} echo. @echo Welcome to the SNAP command-line interface. @echo The following command-line tools are available: @echo gpt - Graph Processing Tool @echo pconvert - Data product conversion and quicklook generation @echo snap - SNAP Desktop launcher @echo snappy-conf - Configuration tool for the SNAP-Python interface @echo Typing the name of each tool will output its usage information. echo. cd "%SNAP_HOME%\bin" prompt $G$S
valgur/snap-installer
files/winx32/bin/snap-cli.bat
bat
gpl-3.0
514
@echo off References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Admin\Admin.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Admin\AdminHome.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Admin\AdminGroups.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Admin\AclActionsSelector.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\Default.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\AttachmentViewer.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\Error.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\History.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\MasterPageSA.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\PageNotFound.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\AccessDenied.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\Search.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\AllPages.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\Category.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Common\Login.resx * References\Tools\ResxSync\resxsync.exe ScrewTurnWiki.Web\Localization\Messages\Messages.resx *
Mikezar/STW6
ResxSync.bat
bat
gpl-3.0
1,521
@echo off call %* goto :eof :setModularJdk "%JAVA%" --add-modules=java.se -version >nul 2>&1 && (set MODULAR_JDK=true) || (set MODULAR_JDK=false) goto :eof :setDefaultModularJvmOptions call :setModularJdk if "!MODULAR_JDK!" == "true" ( echo "%~1" | findstr /I "\-\-add\-modules" > nul if errorlevel == 1 ( rem Set default modular jdk options set "DEFAULT_MODULAR_JVM_OPTIONS=!DEFAULT_MODULAR_JVM_OPTIONS! --add-exports=java.base/sun.nio.ch=ALL-UNNAMED" set "DEFAULT_MODULAR_JVM_OPTIONS=!DEFAULT_MODULAR_JVM_OPTIONS! --add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED" set "DEFAULT_MODULAR_JVM_OPTIONS=!DEFAULT_MODULAR_JVM_OPTIONS! --add-exports=jdk.unsupported/sun.reflect=ALL-UNNAMED" ) else ( set "DEFAULT_MODULAR_JVM_OPTIONS=" ) ) goto:eof
aloubyansky/wildfly-core
core-feature-pack/src/main/resources/content/bin/common.bat
bat
lgpl-2.1
801
@echo 01 > serial @echo "create an empty file index.txt, if no file exists" @if not exist index.txt echo creating new index.txt @if not exist index.txt copy index.txt.begin index.txt @if not exist newcerts echo "creating newcerts directory" @if not exist newcerts mkdir newcerts @echo creating CA-certificate openssl.exe req -new -x509 -extensions v3_ca -keyout cakey.pem -out cacert.pem -days 3650 -config .\openssl.conf @echo creating server certificate signing request openssl req -new -nodes -out serverreq.pem -keyout serverkey.pem -config .\openssl.conf @echo signing server certificate req openssl ca -extensions server_ext -extfile serverExtensions.txt -out servercert.pem -config .\openssl.conf -infiles serverreq.pem @echo creating client certificate signing request openssl req -new -nodes -out clientreq.pem -keyout clientkey.pem -config .\openssl.conf @echo signing client certificate req openssl ca -extensions client_ext -extfile clientExtensions.txt -out clientcert.pem -config .\openssl.conf -infiles clientreq.pem @echo creating certificates to import in private keystore openssl pkcs12 -export -out server\server.p12 -in servercert.pem -inkey serverkey.pem openssl pkcs12 -export -out client\client.p12 -in clientcert.pem -inkey clientkey.pem @echo creating der-encoded ca-cert for import into root keystore (only public key included) openssl x509 -in cacert.pem -outform DER -out cacert.cer
HaiderRazvi/IIOP.Net
Examples/GettingStarted/SimpleAdder/DotNetServerDotNetClientSSL/makeCACert.bat
bat
lgpl-2.1
1,428
setlocal set OGROOT=[[OGROOT]] start /b javaw -cp . -Dlog4j.configuration="file:[[LOG4J]]" -Djava.ext.dirs=lib -Xms64m -Xmx1024m org.ourgrid.worker.ui.async.Main endlocal
OurGrid/OurGrid
deployer/windows/worker/worker.bat
bat
lgpl-3.0
170
-- GlobalWeather.calculateSafeDistance ?gw1.calculateSafeDistance(#cloudy) ?gw1.calculateSafeDistance(#sunny) ?gw1.calculateSafeDistance(#raining) ?gw1.calculateSafeDistance(#snowing)
xeph/LOG670.TP1
USE/Request/Request.GlobalWeather.calculateSafeDistance.bat
bat
unlicense
183
@echo off :: Ligne de commande qui va bien pour compiler mes brols :: :: Utilisation: :: - installer les libs (dans c:\local p. expl.) :: - definir la variable d'env MYLOCAL (=c:\local p. expl. ) :: - double cliquer sur myenv.bat :: - cd build :: - cmake -G "Visual Studio 14 2015 Win64" .. :: ou plus simplement :: - cmake -A x64 .. :: - cmake --build . --config Release :: - ctest -C Release :: Incredibuild (http://www.incredibuild.com/webhelp/#BuildConsole.html) :: - BuildConsole XXX.sln /rebuild /cfg="Release|x64" set PATH=%PATH%;%MYLOCAL%\swigwin-3.0.12 set INCLUDE=%MYLOCAL%\include;%MYLOCAL%\MUMPS\include;%MYLOCAL%\eigen-3.3.2 set LIB=%MYLOCAL%\MUMPS\lib :: ok (MKL community + VS2015 en ligne de commande) call "C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\mkl\bin\mklvars.bat" intel64 vs2015 call "C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\tbb\bin\tbbvars.bat" intel64 vs2015 %comspec% /K ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64"
rboman/progs
classes/sph/devenv-vs2015.bat
bat
apache-2.0
1,071
@echo off setlocal rem Roses are red, violets are blue, sugar is sweet, and so are you. rem Enjoy your usual ratio: 5% of lines do the actual work, and the rest are there to make sure they work. (It's like 1%, actually) set app=xdelta3.exe set changes=changes.vcdiff set WORKINGDIR=%CD% chdir /d "%~dp0" if exist "%~1" ( echo Attempting to patch %~1... %app% -d -f -s "%~1" "%changes%" ) else ( echo Attempting to patch... %app% -d -f "%changes%" ) echo Done. Press enter to exit. chdir /d "%WORKINGDIR%" pause exit /b
dreamer2908/YAXBPC
YAXBPC/CopyMe/apply_patch_windows_alternative.bat
bat
apache-2.0
562
@echo off title %cd% cd %~dp0 cd.. set MAVEN_OPTS=%MAVEN_OPTS% -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=256m call mvn tomcat7:run cd bin pause
seeyoui/kensite_cms
bin/run-tomcat7.bat
bat
apache-2.0
157
@echo off rem Use to copy files from project folders into local folder so they're where the user will have them call:removeDir xstypes call:removeDir xcommunication call:removeDir include call:removeDir winusb xcopy /s /y ..\..\xstypes\src\*.* xstypes\ xcopy /s /y ..\..\xcommunication\src\*.* xcommunication\ xcopy /s /y ..\..\3p\microsoft\*.* winusb\ xcopy /s /y ..\..\xstypes\src\*.h include\xsens\ xcopy /s /y ..\..\xcommunication\src\*.h include\xcommunication\ xcopy /s /y ..\..\3p\microsoft\*.* winusb\ goto:eof :removeDir if exist %~1 ( move /y %~1 %~1.1 rmdir /s /q %~1.1 ) goto:eof
yystju/lidar
xsens/copy_local.bat
bat
apache-2.0
603
@echo off setlocal rem rem Copyright (c) 1999, 2012 Tanuki Software, Ltd. rem http://www.tanukisoftware.com rem All rights reserved. rem rem This software is the proprietary information of Tanuki Software. rem You shall use it only in accordance with the terms of the rem license agreement you entered into with Tanuki Software. rem http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html rem rem Java Service Wrapper general passthrough startup script. rem rem ----------------------------------------------------------------------------- rem These settings can be modified to fit the needs of your application rem Optimized for use with version 3.5.17 of the Wrapper. rem The base name for the Wrapper binary. set _WRAPPER_BASE=wrapper rem The name and location of the Wrapper configuration file. This will be used rem if the user does not specify a configuration file as the first parameter to rem this script. It will not be possible to specify a configuration file on the rem command line if _PASS_THROUGH is set. set _WRAPPER_CONF_DEFAULT=../conf/terracotta.conf rem Makes it possible to override the Wrapper configuration file by specifying it rem as the first parameter. rem set _WRAPPER_CONF_OVERRIDE=true rem _PASS_THROUGH tells the script to pass all parameters through to the JVM as is. set _PASS_THROUGH=false rem Do not modify anything beyond this point rem ----------------------------------------------------------------------------- rem rem Resolve the real path of the wrapper.exe rem For non NT systems, the _REALPATH and _WRAPPER_CONF values rem can be hard-coded below and the following test removed. rem if "%OS%"=="Windows_NT" goto nt echo This script only works with NT-based versions of Windows. goto :eof :nt rem rem Find the application home. rem rem %~dp0 is location of current script under NT set _REALPATH=%~dp0 rem rem Decide on the specific Wrapper binary to use (See delta-pack) rem if "%PROCESSOR_ARCHITEW6432%"=="AMD64" goto amd64 if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto amd64 if "%PROCESSOR_ARCHITECTURE%"=="IA64" goto ia64 set _WRAPPER_L_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe goto search :amd64 set _WRAPPER_L_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe goto search :ia64 set _WRAPPER_L_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-ia-64.exe goto search :search set _WRAPPER_EXE=%_WRAPPER_L_EXE% if exist "%_WRAPPER_EXE%" goto conf set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%.exe if exist "%_WRAPPER_EXE%" goto conf echo Unable to locate a Wrapper executable using any of the following names: echo %_WRAPPER_L_EXE% echo %_WRAPPER_EXE% pause goto :eof rem rem Find the wrapper.conf rem :conf if not [%_WRAPPER_CONF_OVERRIDE%]==[] ( set _WRAPPER_CONF="%~f1" if not [%_WRAPPER_CONF%]==[""] ( shift goto :startup ) ) set _WRAPPER_CONF="%_WRAPPER_CONF_DEFAULT%" rem rem Start the Wrapper rem :startup rem Collect an parameters :parameters set _PARAMETERS=%_PARAMETERS% %1 shift if not [%1]==[] goto :parameters if [%_PASS_THROUGH%]==[] ( "%_WRAPPER_EXE%" -c %_WRAPPER_CONF% ) else ( "%_WRAPPER_EXE%" -c %_WRAPPER_CONF% -- %_PARAMETERS% ) if not errorlevel 1 goto :eof pause
lanimall/terracotta-scripts
universal-service-wrapper/bin/TerracottaApp.bat
bat
apache-2.0
3,306
call gifmaker.bat Demo_BrandisherElements.mp4 call gifmaker.bat Demo_CameraRays.mp4 call gifmaker.bat Demo_ConstantBake.mp4 call gifmaker.bat Demo_GifTest.mp4 call gifmaker.bat Demo_InteractiveTrace.mp4 call gifmaker.bat Demo_LoadObj.mp4 call gifmaker.bat Demo_Trace.mp4
LiveAsynchronousVisualizedArchitecture/lava
util/regift.bat
bat
apache-2.0
279
@rem Copyright 2019 gRPC authors. @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem TODO(jtattermusch): make this generate less output @rem TODO(jtattermusch): use tools/bazel script to keep the versions in sync choco install bazel -y --version 0.26.0 --limit-output cd github/grpc set PATH=C:\tools\msys64\usr\bin;C:\Python27;%PATH% @rem Generate a random UUID and store in "bazel_invocation_ids" artifact file powershell -Command "[guid]::NewGuid().ToString()" >%KOKORO_ARTIFACTS_DIR%/bazel_invocation_ids set /p BAZEL_INVOCATION_ID=<%KOKORO_ARTIFACTS_DIR%/bazel_invocation_ids @rem TODO(jtattermusch): windows RBE should be able to use the same credentials as Linux RBE. bazel --bazelrc=tools/remote_build/windows.bazelrc build --invocation_id="%BAZEL_INVOCATION_ID%" --workspace_status_command=tools/remote_build/workspace_status_kokoro.sh :all --incompatible_disallow_filetype=false --google_credentials=%KOKORO_GFILE_DIR%/rbe-windows-credentials.json set BAZEL_EXITCODE=%errorlevel% @rem TODO(jtattermusch): upload results to bigquery exit /b %BAZEL_EXITCODE%
pszemus/grpc
tools/internal_ci/windows/bazel_rbe.bat
bat
apache-2.0
1,609
SETLOCAL EnableExtensions EnableDelayedExpansion IF [%UsbDkVersion%] == [] SET UsbDkVersion=99.99.99 IF [%UsbDkVersion%] == [".."] SET UsbDkVersion=99.99.99 pushd ..\..\Install_Debug\x86 del *.msi *.wixobj *.wixpdb "C:\Program Files (x86)\WiX Toolset v3.8\bin\candle.exe" ..\..\Tools\Installer\UsbDkInstaller.wxs -out UsbDk_Debug.wixobj -dUsbDkVersion=%UsbDkVersion% -dConfig=Debug if !ERRORLEVEL! NEQ 0 exit /B 1 "C:\Program Files (x86)\WiX Toolset v3.8\bin\light.exe" UsbDk_Debug.wixobj -out UsbDk_Debug_%UsbDkVersion%_x86.msi -sw1076 if !ERRORLEVEL! NEQ 0 exit /B 1 popd pushd ..\..\Install_Debug\x64 del *.msi *.wixobj *.wixpdb "C:\Program Files (x86)\WiX Toolset v3.8\bin\candle.exe" ..\..\Tools\Installer\UsbDkInstaller.wxs -out UsbDk_Debug.wixobj -dUsbDkVersion=%UsbDkVersion% -dConfig=Debug -dUsbDk64Bit=1 if !ERRORLEVEL! NEQ 0 exit /B 1 "C:\Program Files (x86)\WiX Toolset v3.8\bin\light.exe" UsbDk_Debug.wixobj -out UsbDk_Debug_%UsbDkVersion%_x64.msi -sw1076 if !ERRORLEVEL! NEQ 0 exit /B 1 popd pushd ..\..\Install\x86 del *.msi *.wixobj *.wixpdb "C:\Program Files (x86)\WiX Toolset v3.8\bin\candle.exe" ..\..\Tools\Installer\UsbDkInstaller.wxs -out UsbDk.wixobj -dUsbDkVersion=%UsbDkVersion% -dConfig=Release if !ERRORLEVEL! NEQ 0 exit /B 1 "C:\Program Files (x86)\WiX Toolset v3.8\bin\light.exe" UsbDk.wixobj -out UsbDk_%UsbDkVersion%_x86.msi -sw1076 if !ERRORLEVEL! NEQ 0 exit /B 1 popd pushd ..\..\Install\x64 del *.msi *.wixobj *.wixpdb "C:\Program Files (x86)\WiX Toolset v3.8\bin\candle.exe" ..\..\Tools\Installer\UsbDkInstaller.wxs -out UsbDk.wixobj -dUsbDkVersion=%UsbDkVersion% -dConfig=Release -dUsbDk64Bit=1 if !ERRORLEVEL! NEQ 0 exit /B 1 "C:\Program Files (x86)\WiX Toolset v3.8\bin\light.exe" UsbDk.wixobj -out UsbDk_%UsbDkVersion%_x64.msi -sw1076 if !ERRORLEVEL! NEQ 0 exit /B 1 popd echo SUCCEEDED
freedesktop-unofficial-mirror/spice__win32__usbdk
Tools/Installer/buildmsi.bat
bat
apache-2.0
1,843
@echo off call psake %~dp0BuildTasks.ps1 %* echo. pause
d-s-x/ta-lib
dotnet/build.cmd
bat
bsd-3-clause
62
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PyDidYouMean.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyDidYouMean.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
asweigart/pydidyoumean
docs/make.bat
bat
bsd-3-clause
6,471
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASCMD.S16_Settings.MSASCMD_S16_TC13_Settings_ResponseInOrder /testcontainer:..\..\MS-ASCMD\TestSuite\bin\Debug\MS-ASCMD_TestSuite.dll /runconfig:..\..\MS-ASCMD\MS-ASCMD.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeActiveSync/Source/Scripts/MS-ASCMD/RunMSASCMD_S16_TC13_Settings_ResponseInOrder.cmd
bat
mit
289
@echo off rem xmlvalid.bat: a batch file for validating XML files rem Required JARs: loci_tools.jar setlocal set SCIFIO_DIR=%~dp0 if "%SCIFIO_DIR:~-1%" == "\" set SCIFIO_DIR=%SCIFIO_DIR:~0,-1% set SCIFIO_PROG=loci.formats.tools.XMLValidate call "%SCIFIO_DIR%\scifio.bat" %*
ximenesuk/bioformats
tools/xmlvalid.bat
bat
gpl-2.0
278
@echo off echo "-- build_windows.bat --" REM ---------------------------------------------------------------------------- REM -- Variables set "original_cwd=%cd%"; set "src_path=..\src"; REM ---------------------------------------------------------------------------- REM -- setup.py needs to run on the src directory. echo "Changing to src directory..."; CHDIR "%src_path%" echo "CWD: %cd%"; REM ---------------------------------------------------------------------------- REM -- Run the setup.py echo "Running setup.py..."; python setup.py build
AmazingCow-Game/Game_Taz
scripts/build/build_windows.bat
bat
gpl-3.0
552
tools\nant-0.85\binaries\nant -buildfile:project.build %1 %2 %3 %4 %5
x97mdr/pickles
build.cmd
bat
apache-2.0
69
if "%1"=="/copy" ( py tools/windows/build_test.py --copy True ) else ( py tools/windows/build_test.py )
google/crosvm
tools/windows/build_test.bat
bat
bsd-3-clause
108
:: :: Licensed to the Apache Software Foundation (ASF) under one :: or more contributor license agreements. See the NOTICE file :: distributed with this work for additional information :: regarding copyright ownership. The ASF licenses this file :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY :: KIND, either express or implied. See the License for the :: specific language governing permissions and limitations :: under the License. @echo off setlocal ::----------------------------------------------------------------------------- :: HTTP Service Arguments ::----------------------------------------------------------------------------- ::* Default Port :: set SLING_PORT=8080 ::* Default Bind Address :: set SLING_ADDR=0.0.0.0 ::----------------------------------------------------------------------------- :: General JVM Arguments ::----------------------------------------------------------------------------- ::* Uncomment one of the JVM_TYPE if you wish a different than '-hotspot' :: :: set JVM_TYPE=-classic :: set JVM_TYPE=-server ::* Memory settings :: set JVM_MINHEAP=-Xms64m set JVM_MAXHEAP=-Xmx256m ::* Uncomment, or redefine one of the follwoing JAVA_HOME if you wish a :: different than your default one :: :: set JAVA_HOME=c:\java\jdk1.4.2_08 ::* 'Exectuable' :: set JVM_START=-jar bin/${project.build.finalName}-standalone.jar ::* Additional JVM Options :: :: set JVM_OPTS=-Djava.security.auth.login.config=etc/jaas.config ::* Debug Port (only if started with -debug socket) :: set JVM_DEBUG_PORT=30303 ::* Default Debug Options :: set JVM_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE ::----------------------------------------------------------------------------- :: should not change below here ::----------------------------------------------------------------------------- :: change drive and directory %~d0 cd %~p0 :: set window title set PROGRAM_TITLE=Apache Sling :: parse arguments :while1 if "%1"=="-debug" ( set JVM_DEBUG=%JVM_DEBUG_OPTS% set JVM_DEBUG_TRANSPORT=dt_socket set JVM_DEBUG_SUSPENDED=n set JVM_DEBUG_ADR=%JVM_DEBUG_PORT% goto next1 ) if "%1"=="-suspended" ( set JVM_DEBUG_SUSPENDED=y goto next1 ) if "%1"=="-quiet" ( set NO_INFOMSG=y goto next1 ) if "%1"=="-jconsole" ( set JVM_JCONSOLE=-Dcom.sun.management.jmxremote set NO_INFOMSG=y goto next1 ) if "%1"=="-level" ( set SLING_LEVEL=%2 shift /1 goto next1 ) if "%1"=="-help" ( goto usage ) if "%1" NEQ "" ( echo invalid argument %1 goto usage ) :next1 shift /1 if "%1" NEQ "" goto while1 :: assemble jvm options set JVM_ADDOPTS=%JVM_OPTS% set JVM_OPTS=%JVM_MINHEAP% %JVM_MAXHEAP% if defined JVM_JCONSOLE set JVM_OPTS=%JVM_JCONSOLE% %JVM_OPTS% if defined JVM_TYPE set JVM_OPTS=%JVM_TYPE% %JVM_OPTS% if defined JVM_ADDOPTS set JVM_OPTS=%JVM_OPTS% %JVM_ADDOPTS% :: check for JVM set JAVA="%JAVA_HOME%\bin\java.exe" if not exist %JAVA% ( echo No JVM found at %JAVA% goto exit ) :: check for debug if defined JVM_DEBUG ( set JVM_OPTS=%JVM_OPTS% %JVM_DEBUG% -Xrunjdwp:transport=%JVM_DEBUG_TRANSPORT%,server=y,suspend=%JVM_DEBUG_SUSPENDED%,address=%JVM_DEBUG_ADR% ) :: assemble program arguments if defined SLING_PORT set SLING_ARGS=%SLING_ARGS% -p %SLING_PORT% if defined SLING_ADDR set SLING_ARGS=%SLING_ARGS% -a %SLING_ADDR% if defined SLING_LEVEL set SLING_ARGS=%SLING_ARGS% -l %SLING_LEVEL% :: ensure logging to stdout set SLING_ARGS=%SLING_ARGS% -f - :: print info message if defined NO_INFOMSG goto startcq echo ------------------------------------------------------------------------------- echo Starting %PROGRAM_TITLE% echo ------------------------------------------------------------------------------- call %JAVA% %JVM_TYPE% -version echo ------------------------------------------------------------------------------- if "%JVM_DEBUG_TRANSPORT%"=="dt_socket" ( echo debugging: Socket (%JVM_DEBUG_PORT%^) if "%JVM_DEBUG_SUSPENDED%"=="y" echo starting jvm suspended^! echo ------------------------------------------------------------------------------- ) echo %JAVA% %JAVA_VM_TYPE% %JVM_OPTS% %JVM_START% %SLING_ARGS% echo ------------------------------------------------------------------------------- :startcq title %PROGRAM_TITLE% %JAVA% %JAVA_VM_TYPE% %JVM_OPTS% %JVM_START% %SLING_ARGS% goto exit ::----------------------------------------------------------------------------- :usage echo %PROGRAM_TITLE% echo usage: %0 [options] echo. echo where options include: echo -debug enable debug echo -suspended start suspended (only if debug) echo -quiet don't show info message echo -jconsole start with -Dcom.sun.management.jmxremote echo -level [ level ] set initial log level (DEBUG, INFO, ...) echo -help this usage echo. echo for additional tuning, edit the first section of the %0 file ::----------------------------------------------------------------------------- :exit endlocal
liveSense/org.liveSense.launchpad
src/main/dist/dos/server.bat
bat
apache-2.0
5,453
@call echo-helper @echo off setlocal REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%AWS_CLOUDWATCH_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%AWS_CLOUDWATCH_HOME:"=%\bin\mon-cmd.cmd" mon-describe-alarm-history %* goto DONE :HOME_MISSING echo AWS_CLOUDWATCH_HOME is not set exit /b 1 :DONE endlocal
sujoyg/tool
vendor/CloudWatch-1.0.12.1/bin/mon-describe-alarm-history.cmd
bat
mit
530
cmd_drivers/media/video/uvc/built-in.o := arm-eabi-ld -EL -r -o drivers/media/video/uvc/built-in.o drivers/media/video/uvc/uvcvideo.o
bigbiff/i717-GB-Kernel
drivers/media/video/uvc/.built-in.o.cmd
bat
gpl-2.0
139
cd /d %~dp0 @echo off cd NFMasterServer echo Starting NFMasterServer... start "" "NFPluginLoader.exe" choice /t 2 /d y /n >nul cd .. cd NFWorldServer echo Starting NFWorldServer... start "" "NFPluginLoader.exe" choice /t 5 /d y /n >nul cd .. cd NFLoginServer echo Starting NFLoginServer... start "" "NFPluginLoader.exe" choice /t 2 /d y /n >nul cd .. cd NFGameServer1 echo Starting NFGameServer1... start "" "NFPluginLoader.exe" choice /t 4 /d y /n >nul cd .. cd NFProxyServer1 echo Starting NFProxyServer1... start "" "NFPluginLoader.exe"
yun63/NoahGameFrame
_Out/Server/Release/Run.bat
bat
apache-2.0
610
echo off REM set AXIS2_HOME=C:\axis2-SNAPSHOT setlocal EnableDelayedExpansion set AXIS2_CLASSPATH=%AXIS2_HOME% FOR %%c in ("%AXIS2_HOME%\lib\*.jar") DO set AXIS2_CLASSPATH=!AXIS2_CLASSPATH!;%%c; java -classpath %AXIS2_CLASSPATH% org.apache.axis2.wsdl.WSDL2C %*
notxarb/wsf-php
wsf_c/axis2c/tools/codegen/javatool/WSDL2C.bat
bat
apache-2.0
273
@echo off @rem/* @rem * Licensed to the Apache Software Foundation (ASF) under one @rem * or more contributor license agreements. See the NOTICE file @rem * distributed with this work for additional information @rem * regarding copyright ownership. The ASF licenses this file @rem * to you under the Apache License, Version 2.0 (the @rem * "License"); you may not use this file except in compliance @rem * with the License. You may obtain a copy of the License at @rem * @rem * http://www.apache.org/licenses/LICENSE-2.0 @rem * @rem * Unless required by applicable law or agreed to in writing, software @rem * distributed under the License is distributed on an "AS IS" BASIS, @rem * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem * See the License for the specific language governing permissions and @rem * limitations under the License. @rem */ @rem @rem The hbase command script. Based on the hadoop command script putting @rem in hbase classes, libs and configurations ahead of hadoop's. @rem @rem TODO: Narrow the amount of duplicated code. @rem @rem Environment Variables: @rem @rem JAVA_HOME The java implementation to use. Overrides JAVA_HOME. @rem @rem HBASE_CLASSPATH Extra Java CLASSPATH entries. @rem @rem HBASE_HEAPSIZE The maximum amount of heap to use. @rem Default is unset and uses the JVMs default setting @rem (usually 1/4th of the available memory). @rem @rem HBASE_OPTS Extra Java runtime options. @rem @rem HBASE_CONF_DIR Alternate conf dir. Default is ${HBASE_HOME}/conf. @rem @rem HBASE_ROOT_LOGGER The root appender. Default is INFO,console @rem @rem JRUBY_HOME JRuby path: $JRUBY_HOME\lib\jruby.jar should exist. @rem Defaults to the jar packaged with HBase. @rem @rem JRUBY_OPTS Extra options (eg '--1.9') passed to hbase. @rem Empty by default. @rem HBASE_SHELL_OPTS Extra options passed to the hbase shell. @rem Empty by default. setlocal enabledelayedexpansion for %%i in (%0) do ( if not defined HBASE_BIN_PATH ( set HBASE_BIN_PATH=%%~dpi ) ) if "%HBASE_BIN_PATH:~-1%" == "\" ( set HBASE_BIN_PATH=%HBASE_BIN_PATH:~0,-1% ) if "%1" == "--help" ( goto :print_usage exit /B 0 ) if "%1" == "-h" ( goto :print_usage exit /B 0 ) rem This will set HBASE_HOME, etc. set hbase-config-script=%HBASE_BIN_PATH%\hbase-config.cmd call "%hbase-config-script%" %* if "%1" == "--config" ( shift shift ) rem Detect if we are in hbase sources dir set in_dev_env=false if exist "%HBASE_HOME%\target" set in_dev_env=true rem --service is an internal option. used by MSI setup to install HBase as a windows service if "%1" == "--service" ( set service_entry=true shift ) set hbase-command=%1 shift @rem if no args specified, show usage if "%hbase-command%"=="" ( goto :print_usage endlocal goto :eof ) set JAVA_HEAP_MAX= set JAVA_OFFHEAP_MAX= rem check envvars which might override default args if defined HBASE_HEAPSIZE ( set JAVA_HEAP_MAX=-Xmx%HBASE_HEAPSIZE%m ) if defined HBASE_OFFHEAPSIZE ( set JAVA_OFFHEAP_MAX=-XX:MaxDirectMemory=%HBASE_OFFHEAPSIZE%m ) set CLASSPATH=%HBASE_CONF_DIR%;%JAVA_HOME%\lib\tools.jar rem Add maven target directory set cached_classpath_filename=%HBASE_HOME%\hbase-build-configuration\target\cached_classpath.txt if "%in_dev_env%"=="true" ( rem adding maven main classes to classpath for /f %%i in ('dir /b "%HBASE_HOME%\hbase-*"') do ( if exist %%i\target\classes set CLASSPATH=!CLASSPATH!;%%i\target\classes ) rem adding maven test classes to classpath rem For developers, add hbase classes to CLASSPATH for /f %%i in ('dir /b "%HBASE_HOME%\hbase-*"') do ( if exist %%i\target\test-classes set CLASSPATH=!CLASSPATH!;%%i\target\test-classes ) if not exist "%cached_classpath_filename%" ( echo "As this is a development environment, we need %cached_classpath_filename% to be generated from maven (command: mvn install -DskipTests)" goto :eof ) for /f "delims=" %%i in ('type "%cached_classpath_filename%"') do set CLASSPATH=%CLASSPATH%;%%i ) @rem For releases add hbase webapps to CLASSPATH @rem Webapps must come first else it messes up Jetty if exist "%HBASE_HOME%\hbase-webapps" ( set CLASSPATH=%CLASSPATH%;%HBASE_HOME% ) if exist "%HBASE_HOME%\target\hbase-webapps" ( set CLASSPATH=%CLASSPATH%;%HBASE_HOME%\target ) for /F %%f in ('dir /b "%HBASE_HOME%\hbase*.jar" 2^>nul') do ( if not "%%f:~-11"=="sources.jar" ( set CLASSPATH=!CLASSPATH!;%HBASE_HOME%\%%f ) ) @rem Add libs to CLASSPATH if exist "%HBASE_HOME%\lib" ( set CLASSPATH=!CLASSPATH!;%HBASE_HOME%\lib\* ) @rem Add user-specified CLASSPATH last if defined HBASE_CLASSPATH ( set CLASSPATH=%CLASSPATH%;%HBASE_CLASSPATH% ) @rem Default log directory and file if not defined HBASE_LOG_DIR ( set HBASE_LOG_DIR=%HBASE_HOME%\logs ) if not defined HBASE_LOGFILE ( set HBASE_LOGFILE=hbase.log ) set JAVA_PLATFORM= rem If avail, add Hadoop to the CLASSPATH and to the JAVA_LIBRARY_PATH set PATH=%PATH%;"%HADOOP_HOME%\bin" set HADOOP_IN_PATH=hadoop.cmd if exist "%HADOOP_HOME%\bin\%HADOOP_IN_PATH%" ( set hadoopCpCommand=call %HADOOP_IN_PATH% classpath 2^>nul for /f "eol= delims=" %%i in ('!hadoopCpCommand!') do set CLASSPATH_FROM_HADOOP=%%i if defined CLASSPATH_FROM_HADOOP ( set CLASSPATH=%CLASSPATH%;!CLASSPATH_FROM_HADOOP! ) set HADOOP_CLASSPATH=%CLASSPATH% set hadoopJLPCommand=call %HADOOP_IN_PATH% org.apache.hadoop.hbase.util.GetJavaProperty java.library.path 2^>nul for /f "eol= delims=" %%i in ('!hadoopJLPCommand!') do set HADOOP_JAVA_LIBRARY_PATH=%%i if not defined JAVA_LIBRARY_PATH ( set JAVA_LIBRARY_PATH=!HADOOP_JAVA_LIBRARY_PATH! ) else ( set JAVA_LIBRARY_PATH=%JAVA_LIBRARY_PATH%;!HADOOP_JAVA_LIBRARY_PATH! ) ) if exist "%HBASE_HOME%\build\native" ( set platformCommand=call %JAVA% -classpath "%CLASSPATH%" org.apache.hadoop.util.PlatformName for /f %%i in ('!platformCommand!') do set JAVA_PLATFORM=%%i set _PATH_TO_APPEND=%HBASE_HOME%\build\native\!JAVA_PLATFORM!;%HBASE_HOME%\build\native\!JAVA_PLATFORM!\lib if not defined JAVA_LIBRARY_PATH ( set JAVA_LIBRARY_PATH=!_PATH_TO_APPEND! ) else ( set JAVA_LIBRARY_PATH=%JAVA_LIBRARY_PATH%;!_PATH_TO_APPEND! ) ) rem This loop would set %hbase-command-arguments% set _hbasearguments= :MakeCmdArgsLoop if [%1]==[] goto :EndLoop if not defined _hbasearguments ( set _hbasearguments=%1 ) else ( set _hbasearguments=!_hbasearguments! %1 ) shift goto :MakeCmdArgsLoop :EndLoop set hbase-command-arguments=%_hbasearguments% @rem figure out which class to run set corecommands=shell master regionserver thrift thrift2 rest avro hlog wal hbck hfile zookeeper zkcli mapredcp for %%i in ( %corecommands% ) do ( if "%hbase-command%"=="%%i" set corecommand=true ) if defined corecommand ( call :%hbase-command% %hbase-command-arguments% ) else ( if "%hbase-command%" == "classpath" ( echo %CLASSPATH% goto :eof ) if "%hbase-command%" == "version" ( set CLASS=org.apache.hadoop.hbase.util.VersionInfo ) else ( set CLASS=%hbase-command% ) ) if not defined HBASE_IDENT_STRING ( set HBASE_IDENT_STRING=%USERNAME% ) @rem Set the right GC options based on the what we are running set servercommands=master regionserver thrift thrift2 rest avro zookeeper for %%i in ( %servercommands% ) do ( if "%hbase-command%"=="%%i" set servercommand=true ) if "%servercommand%" == "true" ( set HBASE_OPTS=%HBASE_OPTS% %SERVER_GC_OPTS% ) else ( set HBASE_OPTS=%HBASE_OPTS% %CLIENT_GC_OPTS% ) @rem If HBase is run as a windows service, configure logging if defined service_entry ( set HBASE_LOG_PREFIX=hbase-%hbase-command%-%COMPUTERNAME% set HBASE_LOGFILE=!HBASE_LOG_PREFIX!.log if not defined HBASE_ROOT_LOGGER ( set HBASE_ROOT_LOGGER=INFO,DRFA ) set HBASE_SECURITY_LOGGER=INFO,DRFAS set loggc=!HBASE_LOG_DIR!\!HBASE_LOG_PREFIX!.gc set loglog=!HBASE_LOG_DIR!\!HBASE_LOGFILE! if "%HBASE_USE_GC_LOGFILE%" == "true" ( set HBASE_OPTS=%HBASE_OPTS% -Xloggc:"!loggc!" ) ) @rem for jruby @rem (1) for the commands which need jruby (see jruby-commands defined below) @rem A. when JRUBY_HOME is defined @rem CLASSPATH and HBASE_OPTS are updated according to JRUBY_HOME defined @rem B. when JRUBY_HOME is not defined @rem add jruby packaged with HBase to CLASSPATH @rem (2) for other commands, do nothing @rem check if the commmand needs jruby set jruby-commands=shell org.jruby.Main for %%i in ( %jruby-commands% ) do ( if "%hbase-command%"=="%%i" set jruby-needed=true ) @rem the command needs jruby if defined jruby-needed ( @rem JRUBY_HOME is defined if defined JRUBY_HOME ( set CLASSPATH=%JRUBY_HOME%\lib\jruby.jar;%CLASSPATH% set HBASE_OPTS=%HBASE_OPTS% -Djruby.home="%JRUBY_HOME%" -Djruby.lib="%JRUBY_HOME%\lib" ) @rem JRUBY_HOME is not defined if not defined JRUBY_HOME ( @rem in dev environment if "%in_dev_env%"=="true" ( set cached_classpath_jruby_filename=%HBASE_HOME%\hbase-build-configuration\target\cached_classpath_jruby.txt if not exist "!cached_classpath_jruby_filename!" ( echo "As this is a development environment, we need !cached_classpath_jruby_filename! to be generated from maven (command: mvn install -DskipTests)" goto :eof ) for /f "delims=" %%i in ('type "!cached_classpath_jruby_filename!"') do set CLASSPATH=%%i;%CLASSPATH% ) @rem not in dev environment if "%in_dev_env%"=="false" ( @rem add jruby packaged with HBase to CLASSPATH set JRUBY_PACKAGED_WITH_HBASE=%HBASE_HOME%\lib\ruby\* if defined jruby-needed ( set CLASSPATH=!JRUBY_PACKAGED_WITH_HBASE!;!CLASSPATH! ) ) ) ) @rem Have JVM dump heap if we run out of memory. Files will be 'launch directory' @rem and are named like the following: java_pid21612.hprof. Apparently it does not @rem 'cost' to have this flag enabled. Its a 1.6 flag only. See: @rem http://blogs.sun.com/alanb/entry/outofmemoryerror_looks_a_bit_better set HBASE_OPTS=%HBASE_OPTS% -Dhbase.log.dir="%HBASE_LOG_DIR%" set HBASE_OPTS=%HBASE_OPTS% -Dhbase.log.file="%HBASE_LOGFILE%" set HBASE_OPTS=%HBASE_OPTS% -Dhbase.home.dir="%HBASE_HOME%" set HBASE_OPTS=%HBASE_OPTS% -Dhbase.id.str="%HBASE_IDENT_STRING%" set HBASE_OPTS=%HBASE_OPTS% -XX:OnOutOfMemoryError="taskkill /F /PID %p" @rem redirect java.util.logging to slf4j set HBASE_OPTS=%HBASE_OPTS% -Djava.util.logging.config.class="org.apache.hadoop.hbase.logging.JulToSlf4jInitializer" if not defined HBASE_ROOT_LOGGER ( set HBASE_ROOT_LOGGER=INFO,console ) set HBASE_OPTS=%HBASE_OPTS% -Dhbase.root.logger="%HBASE_ROOT_LOGGER%" if defined JAVA_LIBRARY_PATH ( set HBASE_OPTS=%HBASE_OPTS% -Djava.library.path="%JAVA_LIBRARY_PATH%" ) rem Enable security logging on the master and regionserver only if not defined HBASE_SECURITY_LOGGER ( set HBASE_SECURITY_LOGGER=INFO,NullAppender if "%hbase-command%"=="master" ( set HBASE_SECURITY_LOGGER=INFO,DRFAS ) if "%hbase-command%"=="regionserver" ( set HBASE_SECURITY_LOGGER=INFO,DRFAS ) ) set HBASE_OPTS=%HBASE_OPTS% -Dhbase.security.logger="%HBASE_SECURITY_LOGGER%" set HEAP_SETTINGS=%JAVA_HEAP_MAX% %JAVA_OFFHEAP_MAX% set java_arguments=%HEAP_SETTINGS% %HBASE_OPTS% -classpath "%CLASSPATH%" %CLASS% %hbase-command-arguments% if defined service_entry ( call :makeServiceXml %java_arguments% ) else ( call %JAVA% %java_arguments% ) endlocal goto :eof :shell rem find the hbase ruby sources if exist "%HBASE_HOME%\lib\ruby" ( set HBASE_OPTS=%HBASE_OPTS% -Dhbase.ruby.sources="%HBASE_HOME%\lib\ruby" ) else ( set HBASE_OPTS=%HBASE_OPTS% -Dhbase.ruby.sources="%HBASE_HOME%\hbase-shell\src\main\ruby" ) set HBASE_OPTS=%HBASE_OPTS% %HBASE_SHELL_OPTS% set CLASS=org.jruby.Main -X+O %JRUBY_OPTS% "%HBASE_HOME%\bin\hirb.rb" goto :eof :master set CLASS=org.apache.hadoop.hbase.master.HMaster if NOT "%1"=="stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_MASTER_OPTS% ) goto :eof :regionserver set CLASS=org.apache.hadoop.hbase.regionserver.HRegionServer if NOT "%1"=="stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_REGIONSERVER_OPTS% ) goto :eof :thrift set CLASS=org.apache.hadoop.hbase.thrift.ThriftServer if NOT "%1" == "stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_THRIFT_OPTS% ) goto :eof :thrift2 set CLASS=org.apache.hadoop.hbase.thrift2.ThriftServer if NOT "%1" == "stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_THRIFT_OPTS% ) goto :eof :rest set CLASS=org.apache.hadoop.hbase.rest.RESTServer if NOT "%1"=="stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_REST_OPTS% ) goto :eof :avro set CLASS=org.apache.hadoop.hbase.avro.AvroServer if NOT "%1"== "stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_AVRO_OPTS% ) goto :eof :zookeeper set CLASS=org.apache.hadoop.hbase.zookeeper.HQuorumPeer if NOT "%1"=="stop" ( set HBASE_OPTS=%HBASE_OPTS% %HBASE_ZOOKEEPER_OPTS% ) goto :eof :hbck set CLASS=org.apache.hadoop.hbase.util.HBaseFsck goto :eof :wal set CLASS=org.apache.hadoop.hbase.wal.WALPrettyPrinter goto :eof :hfile set CLASS=org.apache.hadoop.hbase.io.hfile.HFile goto :eof :zkcli set CLASS=org.apache.hadoop.hbase.zookeeper.ZKMainServer set CLASSPATH=!CLASSPATH!;%HBASE_HOME%\lib\zkcli\* goto :eof :mapredcp set CLASS=org.apache.hadoop.hbase.util.MapreduceDependencyClasspathTool goto :eof :makeServiceXml set arguments=%* @echo ^<service^> @echo ^<id^>%hbase-command%^</id^> @echo ^<name^>%hbase-command%^</name^> @echo ^<description^>This service runs Isotope %hbase-command%^</description^> @echo ^<executable^>%JAVA%^</executable^> @echo ^<arguments^>%arguments%^</arguments^> @echo ^</service^> goto :eof :print_usage echo Usage: hbase [^<options^>] ^<command^> [^<args^>] echo where ^<command^> an option from one of these categories:: echo Options: echo --config DIR Configuration direction to use. Default: ./conf echo --help or -h Print this help message echo. echo Commands: echo Some commands take arguments. Pass no args or -h for usage." echo shell Run the HBase shell echo hbck Run the hbase 'fsck' tool echo wal Write-ahead-log analyzer echo hfile Store file analyzer echo zkcli Run the ZooKeeper shell echo master Run an HBase HMaster node echo regionserver Run an HBase HRegionServer node echo zookeeper Run a ZooKeeper server echo rest Run an HBase REST server echo thrift Run the HBase Thrift server echo thrift2 Run the HBase Thrift2 server echo classpath Dump hbase CLASSPATH echo mapredcp Dump CLASSPATH entries required by mapreduce echo version Print the version echo CLASSNAME Run the class named CLASSNAME goto :eof
mahak/hbase
bin/hbase.cmd
bat
apache-2.0
14,999
set WORKDIR=%~dp0 cd %WORKDIR% set BUILDDIR="%WORKDIR%_build" set EXEDIR="%WORKDIR%bin" set EXE="%EXEDIR%\evolve" if not exist %BUILDDIR% mkdir %BUILDDIR% if not exist %EXEDIR% mkdir %EXEDIR% set BFLAGS=/DCOLOR_BGR /DPLATFORM_WINDOWS /Fd%BUILDDIR%\ REM set CFLAGS=/MP /Zi /EHsc /FC set CFLAGS=/MP /Ox /EHsc /FC REM 4267 is actually useful, should review! set WFLAGS=/W4 /wd4018 /wd4100 /wd4189 /wd4201 /wd4244 /wd4334 /wd4267 /wd4505 /wd4996 /WX set LFLAGS=/SUBSYSTEM:WINDOWS cl.exe -Isrc src\windows\main.cpp user32.lib kernel32.lib gdi32.lib %BFLAGS% %CFLAGS% %WFLAGS% /Fo%BUILDDIR%\evolve.obj /Fe%EXE% /link %LFLAGS% if not %errorlevel% == 0 goto :error cl.exe -Isrc src\viewer\main.cpp /LD %BFLAGS% %CFLAGS% %WFLAGS% /Fo%BUILDDIR%\viewer.obj /Fe%EXEDIR%\viewer.dll if not %errorlevel% == 0 goto :error cl.exe -Isrc src\cubes\main.cpp /LD %BFLAGS% %CFLAGS% %WFLAGS% /Fo%BUILDDIR%\cubes.obj /Fe%EXEDIR%\cubes.dll if not %errorlevel% == 0 goto :error goto :success :error REM Error exit /B 1 :success REM Success exit /B 0
zeqfreed/evolve
build.bat
bat
isc
1,033
powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "& { Import-Module '.\tools\psake\psake.psm1'; Invoke-psake '.\build.ps1' -task UnitTest -parameters @{'project_config'='Debug'}; if ($lastexitcode -ne 0) {write-host "ERROR: $lastexitcode" -fore RED; exit $lastexitcode} }"
sdanna/TeamcityTestSite
build (run as admin).bat
bat
mit
289
NuOp o_190 s o_190 i NuBasis o_190b NuProj o_190b NuOper o_190b s o_190 i NuMatrix o_190b s NuOrth o_190b s NuOpm o_190b o_190b a+a- b NuOpd o_190b o_190b o b o_190 NuBasis o_190a NuProj o_190a NuOper o_190a s o_190 i NuMatrix o_190a s NuOrth o_190a s NuOpm o_190a o_190a a+a- a NuOpd o_190a o_190a o a o_190 NuLnz o_1900 o_190a o_190b s o_190 NuVec o_1900 o_190a o_190b o_190s NuLnz o_1901 o_190a o_190b s o_190 NuVec o_1901 o_190a o_190b o_190s NuLnz o_1902 o_190a o_190b s o_190 NuVec o_1902 o_190a o_190b o_190s NuLnz o_1903 o_190a o_190b s o_190 NuVec o_1903 o_190a o_190b o_190s NuLnz o_1904 o_190a o_190b s o_190 NuVec o_1904 o_190a o_190b o_190s NuLnz o_1905 o_190a o_190b s o_190 NuVec o_1905 o_190a o_190b o_190s
kc9jud/ShellCorretta
NuShellX_exercises/O19/shellx1.bat
bat
mit
778
@echo off CLS :: Entry for DailyProgrammer Challenge #239: A Game of Threes :: https://www.reddit.com/r/dailyprogrammer/comments/3r7wxz/20151102_challenge_239_easy_a_game_of_threes/ SETLOCAL ENABLEDELAYEDEXPANSION set NUMBER=%RANDOM% :top if %NUMBER% EQU 1 goto:QUIT set /a NUMBER_PLUS=(%NUMBER%+1) %% 3 set /a NUMBER_MINUS=(%NUMBER%-1) %% 3 if 0 EQU %NUMBER_PLUS% ( set /a NUMBER=%NUMBER%+1 echo %NUMBER% + 1 ) if 0 EQU %NUMBER_MINUS% ( echo %NUMBER% - 1 set /a NUMBER=%NUMBER%-1 ) echo %NUMBER% echo %NUMBER% / 3 set /a NUMBER=%NUMBER% / 3 echo %NUMBER% goto:top :QUIT PAUSE
mlmerchant/ProgrammingChallenges
GameOfThrees.bat
bat
mit
646
@echo off REM ######################################################## echo Gathering changes to disable COM interop support in CoreCLR... pushd ..\..\CoreCLR git diff v1.0.0-rc2 src\inc\ex.h > ..\Patches\CoreCLR\src\inc\ex.h git diff v1.0.0-rc2 src\inc\utilcode.h > ..\Patches\CoreCLR\src\inc\utilcode.h git diff v1.0.0-rc2 src\utilcode\posterror.cpp > ..\Patches\CoreCLR\src\utilcode\posterror.cpp git diff v1.0.0-rc2 src\utilcode\util.cpp > ..\Patches\CoreCLR\src\utilcode\util.cpp git diff v1.0.0-rc2 src\utilcode\CMakeLists.txt > ..\Patches\CoreCLR\src\utilcode\CMakeLists.txt git diff v1.0.0-rc2 src\vm\clrex.cpp > ..\Patches\CoreCLR\src\vm\clrex.cpp git diff v1.0.0-rc2 src\vm\comcache.cpp > ..\Patches\CoreCLR\src\vm\comcache.cpp git diff v1.0.0-rc2 src\vm\interoputil.cpp > ..\Patches\CoreCLR\src\vm\interoputil.cpp git diff v1.0.0-rc2 src\vm\threads.cpp > ..\Patches\CoreCLR\src\vm\threads.cpp git diff v1.0.0-rc2 src\CMakeLists.txt > ..\Patches\CoreCLR\src\CMakeLists.txt git diff v1.0.0-rc2 build.cmd > ..\Patches\CoreCLR\build.cmd git diff v1.0.0-rc2 clr.coreclr.props > ..\Patches\CoreCLR\clr.coreclr.props git diff v1.0.0-rc2 clr.defines.targets > ..\Patches\CoreCLR\clr.defines.targets git diff v1.0.0-rc2 clr.desktop.props > ..\Patches\CoreCLR\clr.desktop.props git diff v1.0.0-rc2 CMakeLists.txt > ..\Patches\CoreCLR\CMakeLists.txt popd
Microsoft/Pyjion
Patches/CoreCLR/DiffCoreCLR.bat
bat
mit
1,355
cp -f ..\io.asm C:\masm32\include\io.asm cp -f ..\lib\iolib.lib C:\masm32\lib\iolib.lib echo "Library installed. Press Enter." pause
KubSU/SIOMASM
Install/InstallLibs.bat
bat
mit
133
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off :: ---------------------- :: KUDU Deployment Script :: Version: 0.2.2 :: ---------------------- :: Prerequisites :: ------------- :: Verify node.js installed where node 2>nul >nul IF %ERRORLEVEL% NEQ 0 ( echo Missing node.js executable, please install node.js, if already installed make sure it can be reached from current environment. goto error ) :: Setup :: ----- setlocal enabledelayedexpansion SET ARTIFACTS=%~dp0%..\artifacts IF NOT DEFINED DEPLOYMENT_SOURCE ( SET DEPLOYMENT_SOURCE=%~dp0%. ) IF NOT DEFINED DEPLOYMENT_TARGET ( SET DEPLOYMENT_TARGET=%ARTIFACTS%\wwwroot ) IF NOT DEFINED NEXT_MANIFEST_PATH ( SET NEXT_MANIFEST_PATH=%ARTIFACTS%\manifest IF NOT DEFINED PREVIOUS_MANIFEST_PATH ( SET PREVIOUS_MANIFEST_PATH=%ARTIFACTS%\manifest ) ) IF NOT DEFINED KUDU_SYNC_CMD ( :: 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_CMD=%appdata%\npm\kuduSync.cmd ) IF NOT DEFINED DEPLOYMENT_TEMP ( SET DEPLOYMENT_TEMP=%temp%\___deployTemp%random% SET CLEAN_LOCAL_DEPLOYMENT_TEMP=true ) IF DEFINED CLEAN_LOCAL_DEPLOYMENT_TEMP ( IF EXIST "%DEPLOYMENT_TEMP%" rd /s /q "%DEPLOYMENT_TEMP%" mkdir "%DEPLOYMENT_TEMP%" ) IF NOT DEFINED MSBUILD_PATH ( SET MSBUILD_PATH=%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe ) :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Deployment :: ---------- echo Handling .NET Web Application deployment. :: 1. Restore NuGet packages IF /I "WebApplication2.sln" NEQ "" ( call :ExecuteCmd nuget restore "%DEPLOYMENT_SOURCE%\WebApplication2.sln" IF !ERRORLEVEL! NEQ 0 goto error ) :: 2. Build to the temporary path IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" ( call :ExecuteCmd "%MSBUILD_PATH%" "%DEPLOYMENT_SOURCE%\WebApplication2\WebApplication2.csproj" /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="%DEPLOYMENT_TEMP%";AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release /p:SolutionDir="%DEPLOYMENT_SOURCE%\.\\" %SCM_BUILD_ARGS% ) ELSE ( call :ExecuteCmd "%MSBUILD_PATH%" "%DEPLOYMENT_SOURCE%\WebApplication2\WebApplication2.csproj" /nologo /verbosity:m /t:Build /p:AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release /p:SolutionDir="%DEPLOYMENT_SOURCE%\.\\" %SCM_BUILD_ARGS% ) vstest.console.exe "%DEPLOYMENT_SOURCE%\WebApplication2.Tests\bin\debug\WebApplication2.Tests.dll" IF !ERRORLEVEL! NEQ 0 goto error :: 3. KuduSync IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" ( call :ExecuteCmd "%KUDU_SYNC_CMD%" -v 50 -f "%DEPLOYMENT_TEMP%" -t "%DEPLOYMENT_TARGET%" -n "%NEXT_MANIFEST_PATH%" -p "%PREVIOUS_MANIFEST_PATH%" -i ".git;.hg;.deployment;deploy.cmd" IF !ERRORLEVEL! NEQ 0 goto error ) :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Post deployment stub IF DEFINED POST_DEPLOYMENT_ACTION call "%POST_DEPLOYMENT_ACTION%" IF !ERRORLEVEL! NEQ 0 goto error goto end :: Execute command routine that will echo out when error :ExecuteCmd setlocal set _CMD_=%* call %_CMD_% if "%ERRORLEVEL%" NEQ "0" echo Failed exitCode=%ERRORLEVEL%, command=%_CMD_% exit /b %ERRORLEVEL% :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.
milindchavan12/milind-customdeploy
deploy.cmd
bat
mit
3,625
MSBuild.SonarQube.Runner.exe begin /k:"EA2G" /n:"EA2Gliffy" /v:"0.1" /d:sonar.cs.opencover.reportsPaths="%CD%\opencover.xml" "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" /t:Rebuild "%LOCALAPPDATA%\Apps\OpenCover\OpenCover.Console.exe" -output:"%CD%\opencover.xml" -register:user -target:"c:\Program Files (x86)\NUnit.org\nunit-console\nunit3-console.exe" -targetargs:"eatogliffyTest\bin\Debug\eatogliffyTest.dll" MSBuild.SonarQube.Runner.exe end
vzoran/eatogliffy
sonarrunner.cmd
bat
mit
454