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
cmd_kernel/time/built-in.o := arm-none-linux-gnueabi-ld -EL -r -o kernel/time/built-in.o kernel/time/timekeeping.o kernel/time/ntp.o kernel/time/clocksource.o kernel/time/jiffies.o kernel/time/timer_list.o kernel/time/timecompare.o kernel/time/timeconv.o kernel/time/clockevents.o kernel/time/tick-common.o kernel/time/tick-oneshot.o kernel/time/tick-sched.o
srinugnt2000/linux-2.6.37
kernel/time/.built-in.o.cmd
bat
gpl-2.0
364
@echo off :: ***************************************** :: Optional values - Please modify as needed :: ***************************************** :: Total amount of memory in MB available to MZmine 3. :: AUTO = automatically determined :: Default: AUTO set HEAP_SIZE=AUTO :: Location where temporary files will be stored. :: Default: %TEMP% set TMP_FILE_DIRECTORY=%TEMP% :: It is usually not necessary to modify the JAVA_COMMAND parameter, but if you like to run :: a specific Java Virtual Machine, you may set the path to the java.exe command of that JVM set JAVA_COMMAND=java.exe :: ******************************************** :: You don't need to modify anything below here :: ******************************************** :: *********************************** :: Auto detection of accessible memory :: *********************************** :: This is necessary to access the TOTAL_MEMORY and ADDRESS_WIDTH variables inside the IF block setlocal enabledelayedexpansion :: Obtain the physical memory size and check if we are running on a 32-bit system. if exist C:\Windows\System32\wbem\wmic.exe ( echo Checking physical memory size... :: Get physical memory size from OS for /f "skip=1" %%p in ('C:\Windows\System32\wbem\wmic.exe os get totalvisiblememorysize') do if not defined TOTAL_MEMORY set /a TOTAL_MEMORY=%%p / 1024 for /f "skip=1" %%x in ('C:\Windows\System32\wbem\wmic.exe cpu get addresswidth') do if not defined ADDRESS_WIDTH set ADDRESS_WIDTH=%%x echo Found !TOTAL_MEMORY! MB memory, !ADDRESS_WIDTH!-bit system ) else ( echo Skipping memory size check, because wmic.exe could not be found set ADDRESS_WIDTH=32 ) :: Find Java version Set JAVA_BIT_VERSION=32 for /f "tokens=3" %%g in ('java -version 2^>^&1 ^| findstr /i "version"') do ( @set JAVA_VERSION=%%~g ) for /f "tokens=3" %%g in ('java -version 2^>^&1 ^| findstr /i "64-Bit"') do (@set JAVA_BIT_VERSION=64) echo Java version is %JAVA_VERSION%(%JAVA_BIT_VERSION%-Bit) :: Prompt user with error if 32-Bit Java is found on 64-Bit Windows if %ADDRESS_WIDTH%==64 if %JAVA_BIT_VERSION%==32 ( echo. echo ******************************************************************************* echo ******************************************************************************* echo. echo Warning: You have installed a 32-Bit version of Java on a 64-Bit Windows. echo We suggest that you uninstall all Java versions and install the latest 64-Bit echo version instead. If you want to continue running MZmine, the software will only echo be able to access 1GB of memory. echo. echo Please press any button to continue. echo. echo ******************************************************************************* echo ******************************************************************************* echo. pause > tempFile del tempFile set HEAP_SIZE=1024 ) :: By default we set the maximum HEAP_SIZE to 1024 MB on 32-bit systems. On 64-bit systems we :: either set it to half of the total memory or 2048 MB less than the total memory. if %HEAP_SIZE%==AUTO ( if %ADDRESS_WIDTH%==32 ( set HEAP_SIZE=1024 ) else ( if %TOTAL_MEMORY% gtr 4096 ( set /a HEAP_SIZE=%TOTAL_MEMORY%-2048 ) else ( set /a HEAP_SIZE=%TOTAL_MEMORY% / 2 ) ) ) echo Java maximum heap size set to %HEAP_SIZE% MB :: ********************** :: Java specific commands :: ********************** set JAVA_PARAMETERS=-showversion -classpath lib\* -XX:+UseG1GC -Djava.io.tmpdir=%TMP_FILE_DIRECTORY% -Xms256m -Xmx%HEAP_SIZE%m set MAIN_CLASS=io.github.mzmine.main.MZmineMain :: Make sure we are in the correct directory set SCRIPTDIR=%~dp0 cd %SCRIPTDIR% :: This command starts the Java Virtual Machine %JAVA_COMMAND% %JAVA_PARAMETERS% %MAIN_CLASS% %* :: If there was an error, give the user chance to see it IF ERRORLEVEL 1 pause
DrewG/mzmine3
src/main/scripts/startMZmine_Windows.bat
bat
gpl-2.0
3,919
pushd %~dp0 "C:\Users\Administrator\AppData\Local\Programs\Python\Python35\python.exe" launcher.py --start --auto-restart pause
LordDamionDevil/Lony
start_red_autorestart.bat
bat
gpl-3.0
127
Prueba
ratorcila/Traje-Biometrico
Traje Biometrico/TrajeBiometrico-Ver1.0/bin/Release/CDB.bat
bat
apache-2.0
8
..\..\bin\CocoRComp DelphiUnit.atg
danshuk/dcocor
pas2xml/atg/compUnit.bat
bat
gpl-2.0
34
@echo off for /f "tokens=*" %%F in ('get-rhodes-info.bat --rhodes-path') do set get-rhodes-path=%%F cd /D %get-rhodes-path% set PATH=c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE;%PATH% set PATH=%get-rhodes-path%\res\build-tools;%PATH% set VERSION_STR=4.0.0.0.0 set RESOURCE_VER=%VERSION_STR:.=,% call bin\ms_include.bat call neon\Helium\HeliumForWindows\Implementation\ActiveX\BuildRCFiles.bat %RESOURCE_VER% call neon\Helium\HeliumForWindows\Implementation\ActiveX\Build_ActiveX.bat call neon\Helium\HeliumForWindows\Implementation\BuildPlugins %RESOURCE_VER% echo Fill rhodes\libs\data directory setlocal cd /D %get-rhodes-path% call rake build:set_neon[%CD%\neon] --trace call rake wm_gem:build:wm:copy_webkit --trace call rake wm_gem:build:printing_service --trace endlocal
watusi/rhodes
bin/build_wmbinaries.bat
bat
mit
802
@echo off :ENVIRONMENT set GEN_CHECK_REV_FILE=.\build\gen-check-rev-file.py set GATHER_SRC=.\build\gather-src-for-windows.py set GEN_CONFIG_FILE=.\build\gen-config-file.py set CONFIG_DEFS_TEMPL=.\build\config.mk.in set SRC_TREE_DIR=..\src set TOP_BUILD_DIR=. :PARAMS if "%1"=="" (goto USAGE) if "%2"=="" (goto USAGE) if "%3"=="" (goto USAGE) set ARCH=%1 set BUILD=%2 set CCOMPILER=%3 :TASK_UNIT echo %0: Checking/updating revision file. %GEN_CHECK_REV_FILE% -v echo %0: Gathering source files into local flat directories. %GATHER_SRC% %SRC_TREE_DIR% %TOP_BUILD_DIR% echo %0: Creating configure definitions file. %GEN_CONFIG_FILE% %TOP_BUILD_DIR% %ARCH% %BUILD% %CCOMPILER% %CONFIG_DEFS_TEMPL% echo %0: Configuration and setup complete. You may now run nmake. goto END :USAGE echo. echo configure.cmd echo. echo A wrapper script for various configuration and setup scripts that need echo. to be run before nmake when building libflame for Microsoft Windows. echo. echo USAGE: echo %0 [arch] [build] [cc] echo. echo arch -- The architecture string to build. echo Supported values: {x86,x64} echo build -- The kind of build. echo Supported values: {debug,release} echo cc -- The C compiler to use. echo Supported values: {icl,cl} echo. echo examples: echo %0 x86 debug icl echo %0 x64 release cl echo. :END
yaowee/libflame
windows/configure.cmd
bat
bsd-3-clause
1,519
REM { set TOOLCHAIN=mingw set PROJECT_DIR=examples/qt-widgets .\jenkins.py --clear-except-download || exit /b 1 set PROJECT_DIR=examples/qt-core .\jenkins.py --nocreate || exit /b 1 set PROJECT_DIR=examples/qt-qml .\jenkins.py --nocreate || exit /b 1 set PROJECT_DIR=examples/qt-location .\jenkins.py --nocreate || exit /b 1 set PROJECT_DIR=examples/qt-camera .\jenkins.py --upload --nocreate || exit /b 1 REM }
dvirtz/hunter
maintenance/local-upload/qt/win/run-win-mingw.bat
bat
bsd-2-clause
425
@echo off set PYTHONPATH=%~dp0..\third-party\nailgun python %~dp0..\programs\buck.py %*
raviagarwal7/buck
bin/buck.bat
bat
apache-2.0
88
@echo off call %~dp0\..\settings.bat echo "Creating package..." pushd %SOURCE_DIR% sbt universal:packageBin popd rem note: in a real world scenario the package would be uploaded to a corporate repository echo "Done."
tolomaus/languagedetector_ui
scripts/package_app.bat
bat
mit
220
@echo off mkdir Temp set TMP=Temp set TEMP=Temp rem set IAREXE=..\..\..\..\..\common\bin\iarbuild.exe set IAREXE=iarbuild.exe echo. echo Building DSP Libraries ARM echo Building DSP Library for Cortex-M0 Little Endian %IAREXE% arm_cortexM_math.ewp -build cortexM0l echo Building DSP Library for Cortex-M3 Little Endian %IAREXE% arm_cortexM_math.ewp -build cortexM3l echo Building DSP Library for Cortex-M4 Little Endian %IAREXE% arm_cortexM_math.ewp -build cortexM4l echo Building DSP Library for Cortex-M4 Little Endian with single precision FPU %IAREXE% arm_cortexM_math.ewp -build cortexM4lf echo Building DSP Library for Cortex-M7 Little Endian %IAREXE% arm_cortexM_math.ewp -build cortexM7l echo Building DSP Library for Cortex-M7 Little Endian with single precision FPU %IAREXE% arm_cortexM_math.ewp -build cortexM7lfsp echo Building DSP Library for Cortex-M7 Little Endian with double precision FPU %IAREXE% arm_cortexM_math.ewp -build cortexM7lfdp echo Building DSP Library for ARMv8-M Baseline Little Endian %IAREXE% arm_cortexM_math.ewp -build ARMv8MBLl echo Building DSP Library for ARMv8-M Mainline Little Endian %IAREXE% arm_cortexM_math.ewp -build ARMv8MMLl echo Building DSP Library for ARMv8-M Mainline Little Endian with single precision FPU %IAREXE% arm_cortexM_math.ewp -build ARMv8MMLlfsp echo Building DSP Library for ARMv8-M Mainline Little Endian with double precision FPU %IAREXE% arm_cortexM_math.ewp -build ARMv8MMLlfdp echo Building DSP Library for ARMv8-M Mainline Little Endian with DSP instructions %IAREXE% arm_cortexM_math.ewp -build ARMv8MMLld echo Building DSP Library for ARMv8-M Mainline Little Endian with DSP instructions, single precision FPU %IAREXE% arm_cortexM_math.ewp -build ARMv8MMLldfsp echo Building DSP Library for ARMv8-M Mainline Little Endian with DSP instructions, double precision FPU %IAREXE% arm_cortexM_math.ewp -build ARMv8MMLldfdp REM big endian libraries echo Building DSP Library for Cortex-M0 Big Endian %IAREXE% arm_cortexM_math.ewp -build cortexM0b echo Building DSP Library for Cortex-M3 Big Endian %IAREXE% arm_cortexM_math.ewp -build cortexM3b echo Building DSP Library for Cortex-M4 Big Endian %IAREXE% arm_cortexM_math.ewp -build cortexM4b echo Building DSP Library for Cortex-M4 Big Endian with single precision FPU %IAREXE% arm_cortexM_math.ewp -build cortexM4bf echo Building DSP Library for Cortex-M7 Big Endian %IAREXE% arm_cortexM_math.ewp -build cortexM7b echo Building DSP Library for Cortex-M7 Big Endian with single precision FPU %IAREXE% arm_cortexM_math.ewp -build cortexM7bfsp echo Building DSP Library for Cortex-M7 Big Endian with double precision FPU %IAREXE% arm_cortexM_math.ewp -build cortexM7bfdp echo Copy libs to CMSIS\lib\IAR mkdir ..\..\..\lib\IAR copy ReleaseM0BE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM0LE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM3BE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM3LE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM4BE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM4BE_FPU\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM4LE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM4LE_FPU\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM7BE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM7BE_FPU_DP\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM7BE_FPU_SP\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM7LE\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM7LE_FPU_DP\Exe\*.a ..\..\..\lib\IAR\ /Y copy ReleaseM7LE_FPU_SP\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MBLl\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MMLl\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MMLld\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MMLldfdp\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MMLldfsp\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MMLlfdp\Exe\*.a ..\..\..\lib\IAR\ /Y copy ARMv8MMLlfsp\Exe\*.a ..\..\..\lib\IAR\ /Y echo. echo Deleting intermediate files for /d %%a in (Temp ARMv8M* ReleaseM*) do rmdir /s /q "%%~a" del /Q *.bak del /Q *.dep
ryankurte/stm32f4-base
drivers/CMSIS/DSP/Projects/IAR/arm_cortexM_math_Build.bat
bat
mit
4,042
rm -rf bin/proto_b go install ./...
toophy/easybuff
install.bat
bat
mit
35
echo on start cmd /k "echo "***selenium webdriver window***" & start http://localhost:4444/wd/hub/static/resource/hub.html & webdriver-manager start" ::opens selenium webdriver for automated testing start cmd /k "echo "***protractor window***" & npm run-script protractor" ::opens selenium webdriver for automated testing
2B5/ia-3B5
module4/auto-test-script.bat
bat
mit
323
net start CustomSeviceForfy24h
akhuang/Windows-Installer
src/fy24h.Installer/ShortCut/StartService.bat
bat
mit
30
@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. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\crosscorr.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\crosscorr.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" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. 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
redshiftzero/crosscorr
docs/make.bat
bat
mit
7,486
rem addpath C:\C#Projects\gppg-distro-1_5_2\binaries gppg /nolines csg.y
bobc/csg_tool
source/CsgTest/CSGImport/make.bat
bat
mit
75
@echo off IF not exist node_modules (npm install) cmd /k grunt
miduku/once-upon-a-facebook
grunt-dev.bat
bat
mit
63
@echo off SET PATH=%~dp0;%PATH% "%~dp0node" "%~dp0..\..\..\packages\MSBuild.Node.Local.1.0.0\tools\node_modules\npm\bin\npm-cli.js" %*
rodimius/MSBuild.Node.Local
content/node_bin/npm.cmd
bat
mit
135
cmd_sound/pci/au88x0/built-in.o := rm -f sound/pci/au88x0/built-in.o; /root/Kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/pci/au88x0/built-in.o
garwynn/D710SPR_GB27_Kernel
sound/pci/au88x0/.built-in.o.cmd
bat
gpl-2.0
166
cmd_arch/arm/boot/Image := /home/aashir/android/toolchain/linaro/bin/arm-eabi-objcopy -O binary -R .comment -S vmlinux arch/arm/boot/Image
emwno/android_kernel_U8500
arch/arm/boot/.Image.cmd
bat
gpl-2.0
140
cmd_drivers/media/rc/keymaps/rc-msi-digivox-ii.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/media/rc/keymaps/rc-msi-digivox-ii.ko drivers/media/rc/keymaps/rc-msi-digivox-ii.o drivers/media/rc/keymaps/rc-msi-digivox-ii.mod.o
avareldalton85/rpi2-linux-rt
drivers/media/rc/keymaps/.rc-msi-digivox-ii.ko.cmd
bat
gpl-2.0
339
cmd_drivers/media/platform/msm/camera_v2/msm_vb2/built-in.o := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o drivers/media/platform/msm/camera_v2/msm_vb2/built-in.o drivers/media/platform/msm/camera_v2/msm_vb2/msm_vb2.o
Envious-Data/shinano-sirius_msm8974abpro
drivers/media/platform/msm/camera_v2/msm_vb2/.built-in.o.cmd
bat
gpl-2.0
264
cmd_fs/proc/proc.o := /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/proc/proc.o fs/proc/mmu.o fs/proc/task_mmu.o fs/proc/inode.o fs/proc/root.o fs/proc/base.o fs/proc/generic.o fs/proc/array.o fs/proc/proc_tty.o fs/proc/cmdline.o fs/proc/consoles.o fs/proc/cpuinfo.o fs/proc/devices.o fs/proc/interrupts.o fs/proc/loadavg.o fs/proc/meminfo.o fs/proc/stat.o fs/proc/uptime.o fs/proc/version.o fs/proc/softirqs.o fs/proc/proc_sysctl.o fs/proc/proc_net.o fs/proc/kmsg.o fs/proc/page.o
asopov/linux-tpt-2.6.39
fs/proc/.proc.o.cmd
bat
gpl-2.0
535
cmd_arch/arm/boot/compressed/vmlinux := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL --defsym _kernel_bss_size=440468 -p --no-undefined -X -T arch/arm/boot/compressed/vmlinux.lds arch/arm/boot/compressed/head.o arch/arm/boot/compressed/piggy.lzo.o arch/arm/boot/compressed/misc.o arch/arm/boot/compressed/decompress.o arch/arm/boot/compressed/string.o arch/arm/boot/compressed/hyp-stub.o arch/arm/boot/compressed/lib1funcs.o arch/arm/boot/compressed/ashldi3.o arch/arm/boot/compressed/bswapsdi2.o -o arch/arm/boot/compressed/vmlinux
FEDEVEL/tmp-imx6-tiny-rex-linux
arch/arm/boot/compressed/.vmlinux.cmd
bat
gpl-2.0
617
cmd_drivers/misc/built-in.o := arm-eabi-ld -EL -r -o drivers/misc/built-in.o drivers/misc/pmem.o drivers/misc/uid_stat.o drivers/misc/eeprom/built-in.o drivers/misc/cb710/built-in.o drivers/misc/ak8975.o drivers/misc/k3dh.o drivers/misc/sec_earjack.o drivers/misc/pmic8058-pwm.o drivers/misc/pmic8058-nfc.o drivers/misc/pmic8058-upl.o drivers/misc/pmic8058-xoadc.o drivers/misc/pmic8058-misc.o drivers/misc/tzcom.o drivers/misc/pn544.o drivers/misc/a2220b.o drivers/misc/sec_misc.o drivers/misc/sec_level.o drivers/misc/sec_param.o
bigbiff/i717-GB-Kernel
drivers/misc/.built-in.o.cmd
bat
gpl-2.0
537
@echo off REM REM Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. REM REM This code is free software; you can redistribute it and/or modify it REM under the terms of the GNU General Public License version 2 only, as REM published by the Free Software Foundation. REM REM This code is distributed in the hope that it will be useful, but WITHOUT REM ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or REM FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License REM version 2 for more details (a copy is included in the LICENSE file that REM accompanied this code). REM REM You should have received a copy of the GNU General Public License version REM 2 along with this work; if not, write to the Free Software Foundation, REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. REM REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA REM or visit www.oracle.com if you need additional information or have any REM questions. REM REM REM This is the interactive build setup script (as opposed to the batch REM build execution script). It creates $HotSpotBuildSpace if necessary, REM copies the appropriate files out of $HotSpotWorkSpace into it, and REM builds and runs ProjectCreator in it. This has the side-effect of creating REM the vm.vcproj file in the buildspace, which is then used in Visual C++. REM REM Since we don't have uname and we could be cross-compiling, REM Use the compiler to determine which ARCH we are building REM REM Note: Running this batch file from the Windows command shell requires REM that "grep" be accessible on the PATH. An MKS install does this. REM cl 2>NUL >NUL if %errorlevel% == 0 goto nexttest echo Make sure cl.exe is in your PATH before running this script. goto end :nexttest grep -V 2>NUL >NUL if %errorlevel% == 0 goto testit echo Make sure grep.exe is in your PATH before running this script. Either cygwin or MKS should work. goto end :testit cl 2>&1 | grep "x64" >NUL if %errorlevel% == 0 goto amd64 set ARCH=x86 set BUILDARCH=i486 set Platform_arch=x86 set Platform_arch_model=x86_32 goto done :amd64 set ARCH=x86 set BUILDARCH=amd64 set Platform_arch=x86 set Platform_arch_model=x86_64 :done setlocal if "%1" == "" goto usage if not "%2" == "" goto usage REM Set HotSpotWorkSpace to the directy two steps above this script for %%i in ("%~dp0..") do ( set HotSpotWorkSpace=%%~dpi) set HotSpotBuildRoot=%HotSpotWorkSpace%build set HotSpotBuildSpace=%HotSpotBuildRoot%\vs-%BUILDARCH% set HotSpotJDKDist=%1 REM figure out MSC version for /F %%i in ('sh %HotSpotWorkSpace%/make/windows/get_msc_ver.sh') do set %%i echo ************************************************************** echo MSC_VER = "%MSC_VER%" set ProjectFile=%HotSpotBuildSpace%\jvm.vcxproj echo %ProjectFile% echo ************************************************************** REM Test all variables to see whether the directories they REM reference exist if exist %HotSpotWorkSpace% goto test1 echo Error: directory pointed to by HotSpotWorkSpace echo does not exist, or the variable is not set. echo. goto usage :test1 if exist %HotSpotBuildSpace% goto test2 if not "%HotSpotBuildSpace%" == "" mkdir %HotSpotBuildSpace% if exist %HotSpotBuildSpace% goto test2 echo Error: directory pointed to by HotSpotBuildSpace echo does not exist, or the variable is not set. echo. goto usage :test2 if exist %HotSpotJDKDist% goto test3 echo Error: directory pointed to by %HotSpotJDKDist% echo does not exist, or the variable is not set. echo. goto usage :test3 if not "%HOTSPOTMKSHOME%" == "" goto makedir if exist c:\cygwin\bin set HOTSPOTMKSHOME=c:\cygwin\bin if not "%HOTSPOTMKSHOME%" == "" goto makedir if exist c:\cygwin64\bin set HOTSPOTMKSHOME=c:\cygwin64\bin if not "%HOTSPOTMKSHOME%" == "" goto makedir echo Warning: please set variable HOTSPOTMKSHOME to place where echo your MKS/Cygwin installation is echo. goto usage :generatefiles if NOT EXIST %HotSpotBuildSpace%\%1\generated mkdir %HotSpotBuildSpace%\%1\generated copy %HotSpotWorkSpace%\make\windows\projectfiles\%1\* %HotSpotBuildSpace%\%1\generated > NUL REM force regneration of ProjectFile if exist %ProjectFile% del %ProjectFile% echo -- %1 -- echo # Generated file! > %HotSpotBuildSpace%\%1\local.make echo # Changing a variable below and then deleting %ProjectFile% will cause >> %HotSpotBuildSpace%\%1\local.make echo # %ProjectFile% to be regenerated with the new values. Changing the >> %HotSpotBuildSpace%\%1\local.make echo # version requires rerunning create.bat. >> %HotSpotBuildSpace%\%1\local.make echo. >> %HotSpotBuildSpace%\%1\local.make echo Variant=%1 >> %HotSpotBuildSpace%\%1\local.make echo WorkSpace=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%1\local.make echo HOTSPOTWORKSPACE=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%1\local.make echo HOTSPOTBUILDROOT=%HotSpotBuildRoot% >> %HotSpotBuildSpace%\%1\local.make echo HOTSPOTBUILDSPACE=%HotSpotBuildSpace% >> %HotSpotBuildSpace%\%1\local.make echo HOTSPOTJDKDIST=%HotSpotJDKDist% >> %HotSpotBuildSpace%\%1\local.make echo ARCH=%ARCH% >> %HotSpotBuildSpace%\%1\local.make echo BUILDARCH=%BUILDARCH% >> %HotSpotBuildSpace%\%1\local.make echo Platform_arch=%Platform_arch% >> %HotSpotBuildSpace%\%1\local.make echo Platform_arch_model=%Platform_arch_model% >> %HotSpotBuildSpace%\%1\local.make echo MSC_VER=%MSC_VER% >> %HotSpotBuildSpace%\%1\local.make for /D %%j in (debug, fastdebug, product) do ( if NOT EXIST %HotSpotBuildSpace%\%1\%%j mkdir %HotSpotBuildSpace%\%1\%%j ) pushd %HotSpotBuildSpace%\%1\generated nmake /nologo popd goto :eof :makedir echo NOTE: Using the following settings: echo HotSpotWorkSpace=%HotSpotWorkSpace% echo HotSpotBuildSpace=%HotSpotBuildSpace% echo HotSpotJDKDist=%HotSpotJDKDist% echo COPYFILES %BUILDARCH% call :generatefiles compiler1 call :generatefiles tiered pushd %HotSpotBuildRoot% REM It doesn't matter which variant we use here, "tiered" is as good as any of the others - we need the common variables nmake /nologo /F %HotSpotWorkSpace%/make/windows/projectfiles/common/Makefile LOCAL_MAKE=%HotSpotBuildSpace%\tiered\local.make %ProjectFile% popd goto end :usage echo Usage: create HotSpotJDKDist echo. echo This is the VS build setup script (as opposed to the batch echo build execution script). It creates a build directory if necessary, echo copies the appropriate files out of the workspace into it, and echo builds and runs ProjectCreator in it. This has the side-effect of creating echo the %ProjectFile% file in the build space, which is then used in Visual C++. echo. echo The HotSpotJDKDist defines the JDK that should be used when running the JVM. echo Environment variable FORCE_MSC_VER allows to override MSVC version autodetection. echo. echo NOTE that it is now NOT safe to modify any of the files in the build echo space, since they may be overwritten whenever this script is run or echo nmake is run in that directory. :end endlocal
mohlerm/hotspot_cached_profiles
make/windows/create.bat
bat
gpl-2.0
7,309
cmd_drivers/lguest/built-in.o := rm -f drivers/lguest/built-in.o; /home/beto/toolchain/bin/arm-eabi-ar rcsD drivers/lguest/built-in.o
IndieBeto/StockLP
drivers/lguest/.built-in.o.cmd
bat
gpl-2.0
135
cmd_drivers/scsi/scsi_wait_scan.ko := ld -r -m elf_x86_64 -T /home/exist/tmp/linux-2.6.35.14/linux-2.6.35/scripts/module-common.lds --build-id -o drivers/scsi/scsi_wait_scan.ko drivers/scsi/scsi_wait_scan.o drivers/scsi/scsi_wait_scan.mod.o
Existed/kernel-2.6.35.14
drivers/scsi/.scsi_wait_scan.ko.cmd
bat
gpl-2.0
241
cmd_fs/ext2/ext2.o := /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ld -EL -r -o fs/ext2/ext2.o fs/ext2/balloc.o fs/ext2/dir.o fs/ext2/file.o fs/ext2/ialloc.o fs/ext2/inode.o fs/ext2/ioctl.o fs/ext2/namei.o fs/ext2/super.o fs/ext2/symlink.o fs/ext2/xattr.o fs/ext2/xattr_user.o fs/ext2/xattr_trusted.o
spacecaker/Stock_spacecaker_kernel
fs/ext2/.ext2.o.cmd
bat
gpl-2.0
345
@ECHO OFF PUSHD %~dp0. SET ROOT_DIR=%CD% POPD SETLOCAL EnableExtensions EnableDelayedExpansion >"%temp%\wettkampfmanagerpath.txt" echo(!ROOT_DIR! findstr /r ".*[()<>\"\"%%].*" "%temp%\wettkampfmanagerpath.txt" >nul if %errorlevel% equ 0 ( goto :patherror ) findstr /r /c:"[ ]" "%temp%\wettkampfmanagerpath.txt" >nul if %errorlevel% equ 0 ( goto :patherror ) ENDLOCAL SET PATH=%ROOT_DIR%\ruby\bin;%ROOT_DIR%\ruby\lib\ruby\gems\2.6.0\bin;%PATH% SET RAILS_ENV=production PUSHD %ROOT_DIR%\wettkampf-manager bundle exec rake backup_data_recurring POPD PAUSE goto :eof :patherror echo. echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo. echo Der Pfad darf keine Leerzeichen oder andere Sonderzeichen enthalten. echo Aktueller Pfad: echo %ROOT_DIR% echo. echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo. PAUSE goto :eof
Feuerwehrsport/wettkampf-manager-building-tools
package_builder/windows/Skript_backup_im_hintergrund.bat
bat
gpl-2.0
1,081
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=python -msphinx ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=nonLinearElasticity if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The Sphinx module was not found. Make sure you have Sphinx installed, echo.then set the SPHINXBUILD environment variable to point to the full echo.path of the 'sphinx-build' executable. Alternatively you may add the echo.Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
alen12345/nonlinearHyperElasticity
docs/make.bat
bat
gpl-3.0
817
clear java us.ihmc.ds.fgraph.test.Client
ihmc/nomads
util/java/us/ihmc/ds/fgraph/test/client.bat
bat
gpl-3.0
41
/****************************************************************************** * * usb_stick_update_ccs.cmd - CCS linker configuration file for usb_stick_update. * * Copyright (c) 2013 Texas Instruments Incorporated. All rights reserved. * Software License Agreement * * Texas Instruments (TI) is supplying this software for use solely and * exclusively on TI's microcontroller products. The software is owned by * TI and/or its suppliers, and is protected under applicable copyright * laws. You may not combine this software with "viral" open-source * software in order to form a larger program. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS. * NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT * NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY * CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL * DAMAGES, FOR ANY REASON WHATSOEVER. * * This is part of revision 2.0.1.11577 of the DK-TM4C129X Firmware Package. * *****************************************************************************/ --retain=g_pfnVectors /* The following command line options are set as part of the CCS project. */ /* If you are building using the command line, or for some reason want to */ /* define them here, you can uncomment and modify these lines as needed. */ /* If you are using CCS for building, it is probably better to make any such */ /* modifications in your CCS project and leave this file alone. */ /* */ /* --heap_size=0 */ /* --stack_size=256 */ /* --library=rtsv7M3_T_le_eabi.lib */ /* The starting address of the application. Normally the interrupt vectors */ /* must be located at the beginning of the application. */ #define APP_BASE 0x00000000 #define RAM_BASE 0x20000000 /* System memory map */ MEMORY { /* Application stored in and executes from internal flash */ FLASH (RX) : origin = APP_BASE, length = 0x00100000 /* Application uses internal RAM for data */ SRAM (RWX) : origin = 0x20000000, length = 0x00040000 } /* Section allocation in memory */ SECTIONS { .intvecs: > APP_BASE .text : > FLASH .const : > FLASH .cinit : > FLASH .pinit : > FLASH .init_array : > FLASH .vtable : > RAM_BASE .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM } __STACK_TOP = __stack + 1024;
trfiladelfo/unesp_mdt
boards/SW-TM4C-2.0.1.11577/examples/boards/dk-tm4c129x/usb_stick_update/usb_stick_update_ccs.cmd
bat
mpl-2.0
2,809
@rem Common file shared between external.bat and external-amd64.bat. Responsible for @rem fetching external components into the root\.. buildbot directories. cd .. @rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment @rem the following, check it in, then check it out, comment it out, then check it back in. @rem if exist bzip2-1.0.6 rd /s/q bzip2-1.0.6 @rem if exist tcltk rd /s/q tcltk @rem if exist tcltk64 rd /s/q tcltk64 @rem if exist tcl8.4.12 rd /s/q tcl8.4.12 @rem if exist tcl8.4.16 rd /s/q tcl8.4.16 @rem if exist tcl-8.4.18.1 rd /s/q tcl-8.4.18.1 @rem if exist tk8.4.12 rd /s/q tk8.4.12 @rem if exist tk8.4.16 rd /s/q tk8.4.16 @rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1 @rem if exist db-4.4.20 rd /s/q db-4.4.20 @rem if exist openssl-1.0.1e rd /s/q openssl-1.0.1e @rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12 @rem bzip if not exist bzip2-1.0.6 ( rd /s/q bzip2-1.0.5 svn export http://svn.python.org/projects/external/bzip2-1.0.6 ) @rem OpenSSL if not exist openssl-1.0.1e ( rd /s/q openssl-1.0.1d svn export http://svn.python.org/projects/external/openssl-1.0.1e ) @rem tcl/tk if not exist tcl-8.6.1.0 ( rd /s/q tcltk tcltk64 tcl-8.5.11.0 tk-8.5.11.0 svn export http://svn.python.org/projects/external/tcl-8.6.1.0 ) if not exist tk-8.6.1.0 svn export http://svn.python.org/projects/external/tk-8.6.1.0 @rem sqlite3 if not exist sqlite-3.8.3.1 ( rd /s/q sqlite-source-3.8.1 svn export http://svn.python.org/projects/external/sqlite-3.8.3.1 ) @rem lzma if not exist xz-5.0.5 ( rd /s/q xz-5.0.3 svn export http://svn.python.org/projects/external/xz-5.0.5 )
tpsatish95/Python-Workshop
Python Environment Setup/Alternate/1. Python/1. Installer/Python-3.4.0(Linux)/Tools/buildbot/external-common.bat
bat
apache-2.0
1,648
@echo off set name=BBKIM set status=tired... echo HI, my name is %name%!!! echo %name% is %status%... pause > nul
Oss9935/MakitOS
BBKimOS/OSProject/helloos4/batch_file_tutorial/tutorial_set.bat
bat
bsd-3-clause
116
SET dst="%QTDIR%\imports\WebSocket" MD %dst% xcopy /Y ".\!build\qmlwebsocket\Release\qmlwebsocket.dll" ".\qmlsocketio\plugin" @%QTDIR%\bin\qmlplugindump -path %dst% > ".\qmlsocketio\plugin\plugins.qmltypes" xcopy /Y ".\qmlsocketio\plugin\*.*" %dst%
misterion/QML-WebSocket
install.bat
bat
bsd-3-clause
264
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\python-bibliocommons.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\python-bibliocommons.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
paulshannon/python-bibliocommons
docs/make.bat
bat
bsd-3-clause
6,487
..\..\PCbuild\amd64\python.exe setup.py build
pyparallel/numpy
pp_build.bat
bat
bsd-3-clause
46
js.net.jish\bin\jish.exe build.js
gatapia/jish
build.bat
bat
bsd-3-clause
33
echo Building Nav2LibTotal bldmake bldfiles @UIQ3 abld build winscw udeb @UIQ3 echo DONE!
wayfinder/Wayfinder-S60-Navigator
CPP/Targets/Nav2lib/uiq3/make_winscw.bat
bat
bsd-3-clause
96
@echo off SET rclass="D:\biodeep\biodeepdb_v3\KEGG\reaction_class" SET rda="D:\MassSpectrum-toolkits\Rscript\R\MetaDNA\data\metaDNA_kegg.rda" SET compounds="D:\biodeep\biodeepdb_v3\KEGG\KEGG_cpd" CALL "bin/KEGG_MetaDNA.exe" /compile /br08201 %rclass% /KEGG_cpd %compounds% /out %rda%
xieguigang/spectrum
dist/metadna_lib.cmd
bat
mit
285
cmd_usr/gen_init_cpio := gcc -Wp,-MD,usr/.gen_init_cpio.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o usr/gen_init_cpio usr/gen_init_cpio.c source_usr/gen_init_cpio := usr/gen_init_cpio.c deps_usr/gen_init_cpio := \ /usr/include/stdc-predef.h \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/x86_64-linux-gnu/sys/stat.h \ /usr/include/x86_64-linux-gnu/bits/stat.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h \ /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl.h \ /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ /usr/include/x86_64-linux-gnu/bits/fcntl2.h \ /usr/include/errno.h \ /usr/include/x86_64-linux-gnu/bits/errno.h \ /usr/include/linux/errno.h \ /usr/include/x86_64-linux-gnu/asm/errno.h \ /usr/include/asm-generic/errno.h \ /usr/include/asm-generic/errno-base.h \ /usr/include/ctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ usr/gen_init_cpio: $(deps_usr/gen_init_cpio) $(deps_usr/gen_init_cpio):
BadWolfAlfa/MyaKernel-Note-4
usr/.gen_init_cpio.cmd
bat
gpl-2.0
3,301
python setup.py py2exe explorer .\dist
Wilee999/panda3d
contrib/src/panda3dtoolsgui/build_exe.bat
bat
bsd-3-clause
40
@echo off if "%~1" == "-run" goto run ConEmuC -c "%~0" -run "-new_console:C:%LOCALAPPDATA%\lxss\bash.ico" "-new_console:d:%~dp0" -new_console:np goto :EOF :run call SetEscChar echo %ESC%[9999H conemu-cyg-32.exe ./wslbridge.exe -t ./wsl-boot.sh
yjpark/dotfiles
windows/wsl/wsl-con.bat
bat
mit
243
@echo off PATH=%PATH%;"C:\Program Files\Java\jdk1.6.0_23\bin" java -Xmx470000000 -cp jflex1.2.2.jar;. JFlex.Main FMTokenizer.jflex -skel skeleton.sse && del -f FMTokenizer.java~ FMTokenizer~ && copy FMTokenizer.java ..\..\..\..\..\org.eclipse.jst.jsp.core\src\org\eclipse\jst\jsp\core\internal\parser\internal\FMTokenizer.java
angelozerr/eclipse-wtp-freemarker
org.eclipse.freemarker.core/devel/flexfm.cmd
bat
mit
328
dmd src\spine\package.d -Isrc\ -lib -inline -O -release -odlib -ofspine-d.lib
nikibobi/spine-d
build.bat
bat
mit
78
@echo off set ADDIN_PATH="%~dp0\bin\Debug\TestAddIn.dll" set REGASM_X86="C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe" set REGASM_X64="C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe" CLS echo This batch file must be executed with administrator privileges! echo. :menu echo [Options] echo 1 Register (Solid Edge x86) echo 2 Unregister (Solid Edge x86) echo 3 Register (Solid Edge x64) echo 4 Unregister (Solid Edge x64) echo 5 Quit :choice set /P C=Enter selection: if "%C%"=="1" goto registerx86 if "%C%"=="2" goto unregisterx86 if "%C%"=="3" goto registerx64 if "%C%"=="4" goto unregisterx64 if "%C%"=="5" goto end goto choice :registerx86 set REGASM_PATH=%REGASM_X86% goto register :unregisterx86 set REGASM_PATH=%REGASM_X86% goto unregister :registerx64 set REGASM_PATH=%REGASM_X64% goto register :unregisterx64 set REGASM_PATH=%REGASM_X64% goto unregister :register echo. %REGASM_PATH% /codebase %ADDIN_PATH% goto end :unregister echo. %REGASM_PATH% /u %ADDIN_PATH% goto end :end pause
SolidEdgeCommunity/SolidEdge.Community.AddIn
src/TestAddIn/Registration.bat
bat
mit
1,026
cmd_drivers/dma-buf/built-in.o := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -o drivers/dma-buf/built-in.o drivers/dma-buf/dma-buf.o drivers/dma-buf/fence.o drivers/dma-buf/reservation.o drivers/dma-buf/seqno-fence.o
avareldalton85/rpi2-linux-rt
drivers/dma-buf/.built-in.o.cmd
bat
gpl-2.0
278
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/hal_ppmc.ko := ld -r -m elf_i386 -T /usr/src/linux-headers-2.6.32-122-rtai/scripts/module-common.lds --build-id -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/hal_ppmc.ko /home/yutingkao23/linuxcnc-add-hal-ethercat/src/hal_ppmc.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/hal_ppmc.mod.o
CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver
src/.hal_ppmc.ko.cmd
bat
gpl-2.0
349
cmd_fs/notify/inotify/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/notify/inotify/built-in.o fs/notify/inotify/inotify_fsnotify.o fs/notify/inotify/inotify_user.o
jpsminix/minix5
fs/notify/inotify/.built-in.o.cmd
bat
gpl-2.0
171
cmd_drivers/i2c/built-in.o := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ld.bfd -EL -r -o drivers/i2c/built-in.o drivers/i2c/i2c-boardinfo.o drivers/i2c/i2c-core.o drivers/i2c/i2c-dev.o drivers/i2c/algos/built-in.o drivers/i2c/busses/built-in.o drivers/i2c/muxes/built-in.o
Zaphod-Beeblebrox/kernel_rockchip_rk3188
drivers/i2c/.built-in.o.cmd
bat
gpl-2.0
293
deps_config := \ extra/Configs/Config.in.arch \ extra/Configs/Config.in .config include/bits/uClibc_config.h: $(deps_config) $(deps_config):
shizhai/wprobe
build_dir/target-mips_r2_uClibc-0.9.33.2/uClibc++-0.2.4/.config.cmd
bat
gpl-2.0
145
REM file: simulate_isim.bat REM (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. REM REM This file contains confidential and proprietary information REM of Xilinx, Inc. and is protected under U.S. and REM international copyright and other intellectual property REM laws. REM REM DISCLAIMER REM This disclaimer is not a license and does not grant any REM rights to the materials distributed herewith. Except as REM otherwise provided in a valid license issued to you by REM Xilinx, and to the maximum extent permitted by applicable REM law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND REM WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES REM AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING REM BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- REM INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and REM (2) Xilinx shall not be liable (whether in contract or tort, REM including negligence, or under any other theory of REM liability) for any loss or damage of any kind or nature REM related to, arising under or in connection with these REM materials, including for any direct, or any indirect, REM special, incidental, or consequential loss or damage REM (including loss of data, profits, goodwill, or any type of REM loss or damage suffered as a result of any action brought REM by a third party) even if such damage or loss was REM reasonably foreseeable or Xilinx had been advised of the REM possibility of the same. REM REM CRITICAL APPLICATIONS REM Xilinx products are not designed or intended to be fail- REM safe, or for use in any application requiring fail-safe REM performance, such as life-support or safety devices or REM systems, Class III medical devices, nuclear facilities, REM applications related to the deployment of airbags, or any REM other applications that could lead to death, personal REM injury, or severe property or environmental damage REM (individually and collectively, "Critical REM Applications"). Customer assumes the sole risk and REM liability of any use of Xilinx products in Critical REM Applications, subject only to applicable laws and REM regulations governing limitations on product liability. REM REM THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS REM PART OF THIS FILE AT ALL TIMES. vlogcomp -work work %XILINX%\verilog\src\glbl.v vlogcomp -work work ..\..\..\SysMon.v vlogcomp -work work ..\..\example_design/SysMon_exdes.v vlogcomp -work work ..\SysMon_tb.v REM compile the project fuse work.SysMon_tb work.glbl -L unisims_ver -o SysMon_isim.exe REM run the simulation script .\SysMon_isim.exe -gui -tclbatch simcmds.tcl
praveendath92/securePUF
ipcore_dir/SysMon/simulation/functional/simulate_isim.bat
bat
gpl-2.0
2,680
cmd_crypto/crypto_hash.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o crypto/crypto_hash.o crypto/ahash.o crypto/shash.o
sleshepic/epic_touch_kernel
crypto/.crypto_hash.o.cmd
bat
gpl-2.0
160
cmd_scripts/mod/mk_elfconfig := gcc -Wp,-MD,scripts/mod/.mk_elfconfig.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O3 -fomit-frame-pointer -fgcse-sm -floop-optimize -falign-loops -falign-labels -falign-functions -falign-jumps -DPERFORMANCE_RUN=1 -lrt -o scripts/mod/mk_elfconfig scripts/mod/mk_elfconfig.c deps_scripts/mod/mk_elfconfig := \ scripts/mod/mk_elfconfig.c \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/i386-linux-gnu/bits/predefs.h \ /usr/include/i386-linux-gnu/sys/cdefs.h \ /usr/include/i386-linux-gnu/bits/wordsize.h \ /usr/include/i386-linux-gnu/gnu/stubs.h \ /usr/include/i386-linux-gnu/gnu/stubs-32.h \ /usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h \ /usr/include/i386-linux-gnu/bits/types.h \ /usr/include/i386-linux-gnu/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h \ /usr/include/i386-linux-gnu/bits/stdio_lim.h \ /usr/include/i386-linux-gnu/bits/sys_errlist.h \ /usr/include/i386-linux-gnu/bits/stdio.h \ /usr/include/i386-linux-gnu/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/i386-linux-gnu/bits/waitflags.h \ /usr/include/i386-linux-gnu/bits/waitstatus.h \ /usr/include/endian.h \ /usr/include/i386-linux-gnu/bits/endian.h \ /usr/include/i386-linux-gnu/bits/byteswap.h \ /usr/include/i386-linux-gnu/sys/types.h \ /usr/include/time.h \ /usr/include/i386-linux-gnu/sys/select.h \ /usr/include/i386-linux-gnu/bits/select.h \ /usr/include/i386-linux-gnu/bits/sigset.h \ /usr/include/i386-linux-gnu/bits/time.h \ /usr/include/i386-linux-gnu/bits/select2.h \ /usr/include/i386-linux-gnu/sys/sysmacros.h \ /usr/include/i386-linux-gnu/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/i386-linux-gnu/bits/stdlib.h \ /usr/include/string.h \ /usr/include/xlocale.h \ /usr/include/i386-linux-gnu/bits/string.h \ /usr/include/i386-linux-gnu/bits/string2.h \ /usr/include/i386-linux-gnu/bits/string3.h \ /usr/include/elf.h \ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h \ /usr/include/stdint.h \ /usr/include/i386-linux-gnu/bits/wchar.h \ scripts/mod/mk_elfconfig: $(deps_scripts/mod/mk_elfconfig) $(deps_scripts/mod/mk_elfconfig):
spica234/HP-TestBuild-Repo-upwords-Sr3R
scripts/mod/.mk_elfconfig.cmd
bat
gpl-2.0
2,286
cmd_arch/x86/syscalls/../include/generated/uapi/asm/unistd_x32.h := /bin/bash '/home/meh-ue46/android/cm12.1/kernel/alps/kernel-3.10/arch/x86/syscalls/syscallhdr.sh' '/home/meh-ue46/android/cm12.1/kernel/alps/kernel-3.10/arch/x86/syscalls/syscall_64.tbl' 'arch/x86/syscalls/../include/generated/uapi/asm/unistd_x32.h' 'common,x32' '' '__X32_SYSCALL_BIT'
acheron1502/android_kernel_BLU_BLU_PURE_XL
arch/x86/include/generated/uapi/asm/.unistd_x32.h.cmd
bat
gpl-2.0
354
cmd_/home/vishnu/Documents/proj/hw_ker/donate_root/rooter.ko := ld -r -m elf_i386 -T /usr/src/linux-headers-3.8.0-19-generic/scripts/module-common.lds --build-id -o /home/vishnu/Documents/proj/hw_ker/donate_root/rooter.ko /home/vishnu/Documents/proj/hw_ker/donate_root/rooter.o /home/vishnu/Documents/proj/hw_ker/donate_root/rooter.mod.o
scvishnu7/donate_root
.rooter.ko.cmd
bat
gpl-2.0
339
cmd_arch/arm/lib/putuser.o := /home/algesat/kernel/scripts/gcc-wrapper.py /home/algesat/arm-eabi-4.7/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.putuser.o.d -nostdinc -isystem /home/algesat/arm-eabi-4.7/bin/../lib/gcc/arm-eabi/4.7/include -I/home/algesat/kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/algesat/kernel/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/putuser.o arch/arm/lib/putuser.S source_arch/arm/lib/putuser.o := arch/arm/lib/putuser.S deps_arch/arm/lib/putuser.o := \ $(wildcard include/config/thumb2/kernel.h) \ /home/algesat/kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/algesat/kernel/arch/arm/include/asm/linkage.h \ /home/algesat/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/cpu/use/domains.h) \ /home/algesat/kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/algesat/kernel/arch/arm/include/asm/hwcap.h \ /home/algesat/kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ arch/arm/include/generated/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ arch/arm/lib/putuser.o: $(deps_arch/arm/lib/putuser.o) $(deps_arch/arm/lib/putuser.o):
Algesat/BladeApex2
arch/arm/lib/.putuser.o.cmd
bat
gpl-2.0
2,076
>>> values = [4, 10, 3, 8, -6] >>> for i in range(len(values)): ... print(i) ... 0 1 2 3 4
simontakite/sysadmin
pythonscripts/practicalprogramming/loop/range_len_2.cmd
bat
gpl-2.0
95
cmd_fs/proc/cpuinfo.o := arm-none-linux-gnueabi-gcc -Wp,-MD,fs/proc/.cpuinfo.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(cpuinfo)" -D"KBUILD_MODNAME=KBUILD_STR(proc)" -c -o fs/proc/.tmp_cpuinfo.o fs/proc/cpuinfo.c deps_fs/proc/cpuinfo.o := \ fs/proc/cpuinfo.c \ include/linux/fs.h \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /root/kernel-dev/linux-2.6.37/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/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \ include/linux/linkage.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/last/bit.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/32v6k.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/zone/dma.h) \ include/linux/const.h \ arch/arm/mach-davinci/include/mach/memory.h \ $(wildcard include/config/arch/davinci/da8xx.h) \ $(wildcard include/config/arch/davinci/dmx.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/sparsemem.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ include/asm-generic/getorder.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/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/ftrace/mcount/record.h) \ /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/dynamic_debug.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \ include/linux/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/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/rcutree.h \ include/linux/path.h \ include/linux/stat.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/errno.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/percpu_counter.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/proc_fs.h \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/kmemcheck.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/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/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 \ 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/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/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \ arch/arm/mach-davinci/include/mach/timex.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/events/gfpflags.h \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/magic.h \ include/linux/seq_file.h \ fs/proc/cpuinfo.o: $(deps_fs/proc/cpuinfo.o) $(deps_fs/proc/cpuinfo.o):
srinugnt2000/linux-2.6.37
fs/proc/.cpuinfo.o.cmd
bat
gpl-2.0
16,948
cmd_ipc/mq_sysctl.o := ppc_4xx-gcc -m32 -Wp,-MD,ipc/.mq_sysctl.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mq_sysctl)" -D"KBUILD_MODNAME=KBUILD_STR(mq_sysctl)" -c -o ipc/.tmp_mq_sysctl.o ipc/mq_sysctl.c deps_ipc/mq_sysctl.o := \ ipc/mq_sysctl.c \ $(wildcard include/config/proc/sysctl.h) \ include/linux/nsproxy.h \ $(wildcard include/config/cgroup/ns.h) \ include/linux/spinlock.h \ $(wildcard include/config/smp.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/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \ $(wildcard include/config/phys/64bit.h) \ include/asm-generic/int-ll64.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \ $(wildcard include/config/power4/only.h) \ $(wildcard include/config/ibm405/err77.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \ $(wildcard include/config/ppc/e500mc.h) \ $(wildcard include/config/e500.h) \ include/linux/stringify.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \ $(wildcard include/config/ppc64.h) \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/find.h \ include/asm-generic/bitops/sched.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \ $(wildcard include/config/ppc/256k/pages.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \ include/linux/linkage.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \ include/linux/byteorder/big_endian.h \ include/linux/swab.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \ include/linux/byteorder/generic.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \ include/asm-generic/div64.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \ $(wildcard include/config/8xx.h) \ $(wildcard include/config/403gcx.h) \ $(wildcard include/config/ppc32.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \ $(wildcard include/config/vsx.h) \ $(wildcard include/config/ppc/prep.h) \ $(wildcard include/config/task/size.h) \ $(wildcard include/config/kernel/start.h) \ $(wildcard include/config/4xx.h) \ $(wildcard include/config/booke.h) \ $(wildcard include/config/altivec.h) \ $(wildcard include/config/spe.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \ $(wildcard include/config/40x.h) \ $(wildcard include/config/fsl/emb/perfmon.h) \ $(wildcard include/config/ppc/book3s/64.h) \ $(wildcard include/config/ppc/book3s/32.h) \ $(wildcard include/config/ppc/book3e/64.h) \ $(wildcard include/config/e200.h) \ $(wildcard include/config/ppc/cell.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \ $(wildcard include/config/mpc10x/bridge.h) \ $(wildcard include/config/ppc/83xx.h) \ $(wildcard include/config/8260.h) \ $(wildcard include/config/ppc/mpc52xx.h) \ $(wildcard include/config/bdi/switch.h) \ $(wildcard include/config/power3.h) \ $(wildcard include/config/power4.h) \ $(wildcard include/config/44x.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \ $(wildcard include/config/ppc/64k/pages.h) \ $(wildcard include/config/ppc/16k/pages.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/physical/start.h) \ $(wildcard include/config/relocatable.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/ppc/std/mmu/64.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/ppc/smlpar.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \ $(wildcard include/config/crash/dump.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \ $(wildcard include/config/physical/align.h) \ $(wildcard include/config/not/coherent/cache.h) \ $(wildcard include/config/pte/64bit.h) \ include/asm-generic/getorder.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/prefetch.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \ $(wildcard include/config/debugger.h) \ $(wildcard include/config/kexec.h) \ $(wildcard include/config/6xx.h) \ $(wildcard include/config/booke/wdt.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \ $(wildcard include/config/ppc/book3e.h) \ $(wildcard include/config/perf/events.h) \ include/linux/errno.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/asm-generic/cmpxchg-local.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \ include/asm-generic/atomic64.h \ include/asm-generic/atomic-long.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/capability.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/timex.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/seqlock.h \ include/linux/math64.h \ include/linux/param.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/cpumask.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \ include/linux/nodemask.h \ $(wildcard include/config/highmem.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \ include/linux/completion.h \ include/linux/wait.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \ $(wildcard include/config/ppc/std/mmu/32.h) \ $(wildcard include/config/ppc/book3e/mmu.h) \ $(wildcard include/config/ppc/8xx.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \ $(wildcard include/config/ppc/early/debug/44x.h) \ $(wildcard include/config/ppc/early/debug/44x/physlow.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/sem.h \ include/linux/ipc.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \ include/linux/rcupdate.h \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ include/linux/rcutree.h \ include/linux/signal.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/percpu.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/mutex.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \ $(wildcard include/config/pci.h) \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/slab_def.h \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/trace/define_trace.h \ $(wildcard include/config/event/tracing.h) \ include/linux/kmalloc_sizes.h \ include/linux/pfn.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \ include/linux/unistd.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \ include/linux/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/ipc_namespace.h \ $(wildcard include/config/ipc/ns.h) \ $(wildcard include/config/posix/mqueue/sysctl.h) \ include/linux/err.h \ include/linux/idr.h \ ipc/mq_sysctl.o: $(deps_ipc/mq_sysctl.o) $(deps_ipc/mq_sysctl.o):
mattkelly/linux-2.6-xlnx
ipc/.mq_sysctl.o.cmd
bat
gpl-2.0
19,162
cmd_drivers/net/wireless/built-in.o := rm -f drivers/net/wireless/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/net/wireless/built-in.o
avareldalton85/rpi2-linux-rt
drivers/net/wireless/.built-in.o.cmd
bat
gpl-2.0
208
cmd_net/sched/built-in.o := /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o net/sched/built-in.o net/sched/sch_generic.o net/sched/sch_mq.o
damageless/linux-kernel-ican-tab
net/sched/.built-in.o.cmd
bat
gpl-2.0
203
@echo off SET PHP_DIR=..\bin\php TITLE --- PharExtractor by #64FF00 --- %PHP_DIR%\php.exe -c %PHP_DIR% PharExtractor.php DevTools_v1.8.0 pause
PurePlugins/PharUtils
PharExtractor.cmd
bat
gpl-3.0
142
"E:\UnrealEngine-4.4.0-release\Engine\Binaries\Win64\UE4Editor.exe" "E:\GitHub\Portfolio\KokkuEngine\KokkuEngine.uproject" -run=GatherText -config="E:\GitHub\Portfolio\KokkuEngine\Config\Localization\ResourceFileGen.ini" -log
RPGHacker/Portfolio
KokkuEngine/ResourceFileGen.bat
bat
gpl-3.0
225
call copy.bat "C:\Program Files (x86)\Steam\steamapps\common\SpaceEngineers\Bin64\SEWorkshopTool.exe" --upload --compile --dry-run --mods ShipyardMod @echo off pause
rexxar-tc/ShipyardMod
ShipyardMod/verify.bat
bat
gpl-3.0
165
rem Clean up all versions of gtest rem deltree /y out gtest2d gtest2r gtest2dd gtest2dr deltree /y *.err *.obj *.exe *.lnk *.log *.dll *.lib *.ncb *.mdp *.pdb *.sbr *.bsc
BygoneWorlds/anet
demo/gtest/clean.bat
bat
lgpl-2.1
171
@echo off echo clean up call cleanup.bat echo build all configuration... call build_vc10_x86.bat call build_vc10_x64.bat call build_vc11_x86.bat call build_vc11_x64.bat echo copy distribute call release_library_vc10.bat call release_library_vc11.bat echo finish...
catcrying/dumblebee-view
rebuild.bat
bat
lgpl-2.1
285
@echo off for %%a in (*.svg) do ( inkscape -D -z --file=%%a --export-plain-svg=_%%a )
NeverKnewTheName/R_SimpleInterpreter
RailroadDiags/svgOutput/PrettySVG.bat
bat
lgpl-3.0
85
ECHO OFF javac -cp simple-5.1.5.jar Web.java java -cp simple-5.1.5.jar;. Web
bendiksolheim/Extreme-Startup
java/run.bat
bat
unlicense
76
@echo off set FILENAME=%1 ant -f build-replace.xml
opetrovski/development
oscm-devruntime/javares/devscripts/replaceProductWithService.bat
bat
apache-2.0
52
set SdkName=NodeSDK set delSrc=true cd .. call shared_build.bat
PlayFab/SDKGenerator
SDKBuildScripts/Windows/node_build.bat
bat
apache-2.0
65
-o C:/dev/home/takahiro/project/git/mist1032sa/sim/inst_level/compile -l work -lc C:/dev/home/takahiro/project/git/mist1032sa/sim/inst_level/library.cfg -fl C:/dev/home/takahiro/project/git/mist1032sa/sim/inst_level/library.cfg -pli C:/Aldec/Riviera-PRO-2013.02-x64/bin/systf.dll -work work -dbg +incdir+../../src/include +incdir+../../src/core/include ../../src/core/pipeline_control/*.v
cpulabs/mist1032sa
sim/inst_level/compile/vlog.cmd
bat
bsd-2-clause
389
@echo off node T:\tmp\mishoo-UglifyJS-4f97733\bin\uglifyjs %*
greenlaw110/winenv
alias/uglify.bat
bat
bsd-2-clause
63
python.exe -OO pyinstaller\pyinstaller.py -n SC4Mapper -w --upx-dir=upx308w SC4Map.py python.exe -OO pyinstaller\pyinstaller.py -n SC4Mapper_debug -c --upx-dir=.\upx308w SC4Map.py copy dist\sc4mapper_debug\sc4mapper_debug.* dist\sc4mapper copy basicColors.ini dist\SC4Mapper copy City*.sc4 dist\SC4Mapper copy splash.jpg dist\SC4Mapper md dist\SC4Mapper\doc copy doc\*.* dist\SC4Mapper\doc
wouanagaine/SC4Mapper-2013
createDistrib.bat
bat
bsd-2-clause
390
@ECHO OFF REM ------------------------------------------------------- REM This will associate .ps1 files in Windows Explorer REM and in CMD shells with powershell.exe; however, it REM doesn't work when there is a space char in the path. REM ------------------------------------------------------- @ECHO ON assoc .ps1=Microsoft.PowerShellScript.1 ftype Microsoft.PowerShellScript.1="%%SystemRoot%%\system32\WindowsPowerShell\v1.0\powershell.exe" -nologo -noexit -command "%%1" %%* ; exit
allenj0321/Powershell
Associate_PS1_Files_With_PowerShell.bat
bat
bsd-2-clause
504
@cd "../../" :start @"node.exe" tests/builder/builder.js @pause @cls @goto start
xuld/dark
apps/node_modules/bpm/tests/builder/builder.bat
bat
bsd-3-clause
80
@ rem #******************* Copyright 1997 by Steven Han. All rights reserved @ rem #** @ rem #** Purpose : Makefile for the EasyBridge. @ rem #** @ rem #***************************************************************************** @ echo Clearing staging area... @ rem del setup.z @ rem del Install\*.* @ rem del Distribution\*.* @ echo Compressing files... @ C:\MSDEV\InstallShield\Program\icomp /h /i Source\*.* setup.z @ C:\MSDEV\InstallShield\Program\packlist setup.lst @ C:\MSDEV\InstallShield\Program\compile setup.rul @ echo Creating installation... @ copy splash.bmp Install\setup.bmp @ copy setup.ini Install\disk1 @ copy C:\MSDEV\InstallShield\Program\setup.exe Install @ copy C:\MSDEV\InstallShield\Program\_setup.dll Install @ copy C:\MSDEV\InstallShield\Program\_isdel.exe Install @ copy C:\MSDEV\InstallShield\Program\_inst32i.ex_ Install @ copy C:\MSDEV\InstallShield\Program\_isres.dll Install @ copy C:\MSDEV\InstallShield\Program\_setup.lib Install @ copy setup.ins Install @ move setup.pkg Install @ move setup.z Install @ echo . > Install\disk1.id
azureskydiver/EasyBridge
Source/Setup/Make.bat
bat
gpl-2.0
1,097
cmd_init/mounts.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o init/mounts.o init/do_mounts.o init/do_mounts_rd.o init/do_mounts_initrd.o
friedrich420/Note-3-AEL-Kernel
init/.mounts.o.cmd
bat
gpl-2.0
175
@ECHO OFF SETLOCAL SET Sz=7z SET advz=advzip CALL "%Sz%" > NUL 2>NUL IF NOT "%ERRORLEVEL%"=="0" GOTO :error CALL "%advz%" > NUL 2>NUL IF NOT "%ERRORLEVEL%"=="0" GOTO :error CALL make.bat ECHO Compressing release SET name=RSBot SET dist=%name%.jar FOR /F %%G IN (resources\version.txt) DO SET version=%%G SET tmp=temp SET Path=%Path%;%ProgramFiles%\7-Zip RMDIR /S /Q "%tmp%" 2>NUL MKDIR "%tmp%" CD "%tmp%" CALL "%Sz%" x "..\%dist%" > NUL DEL /F /Q "..\%dist%" CALL "%Sz%" a -tzip "%dist%" . -mx=9 -mtc=off > NUL CALL "%advz%" -z -4 "%dist%" > NUL CD .. MOVE /Y "%tmp%\%dist%" "%name%-%version%.jar" > NUL RMDIR /S /Q "%tmp%" 2>NUL GOTO :eof :error ECHO You do not have 7-zip installed and/or advzip available. GOTO :eof
Latency/UtopianBot
release.bat
bat
lgpl-3.0
726
@echo off call ..\..\Tools\clean.bat rmdir /S /Q Win8Release rmdir /S /Q Win8Debug
virtio-win/kvm-guest-drivers-windows
vioserial/sys/cleanAll.bat
bat
bsd-3-clause
84
@echo off setlocal :: Initialize environment call "%~dp0..\env.bat" if errorlevel 1 goto error_env call "%EnvPath%\env.bat" if errorlevel 1 goto error_env :: Get gcc versions call "%ToolsPath%\get-gcc-version.bat" GCCVersion if "%GCCVersion%"=="" echo Cannot get gcc version.& exit /B 1 :: Check external libraries if not exist "%RootPath%\libs" echo Please build external libraries first.& exit /B 1 :: Check gcc version of external libraries if not exist "%RootPath%\libs\gcc-version" echo Cannot get gcc version of external libraries.& exit /B 1 set /P LibsGCCVersion=<"%RootPath%\libs\gcc-version" if "%LibsGCCVersion%" NEQ "%GCCVersion%" echo Please use correct version of external libraries. (gcc %GCCVersion% ^<^> libs %LibsGCCVersion%).& exit /B 1 :: Initialize environment call "%~dp0env.bat" if errorlevel 1 goto error_env :: Check git executable set GitPath= call "%ToolsPath%\find-in-path.bat" GitPath git.exe if "%GitPath%" NEQ "" goto found_git choice /M "Git not found in PATH. Version information cannot be calculated. Do you want to proceed?" if %errorlevel%==2 exit /B 1 :found_git echo. echo === Version echo. title Build - %SourceName%-%RsBuildConfig% [Version] pushd "%SourcePath%\retroshare-gui\src\gui\images" :: Touch resource file copy /b retroshare_win.rc +,, popd if not exist "%RsBuildPath%" mkdir "%RsBuildPath%" pushd "%RsBuildPath%" echo. echo === qmake echo. title Build - %SourceName%-%RsBuildConfig% [qmake] qmake "%SourcePath%\RetroShare.pro" -r "CONFIG+=%RsBuildConfig% version_detail_bash_script rs_autologin" if errorlevel 1 goto error echo. echo === make echo. title Build - %SourceName%-%RsBuildConfig% [make] if exist "%EnvJomExe%" ( "%EnvJomExe%" ) else ( mingw32-make ) :error popd title %COMSPEC% if errorlevel 1 echo.& echo Build failed& echo. exit /B %ERRORLEVEL% :error_env echo Failed to initialize environment. endlocal exit /B 1
sehraf/RetroShare
build_scripts/Windows/build/build.bat
bat
gpl-2.0
1,983
@echo off call setenv.bat if not exist "..\target" ( mkdir ..\target ) if not exist "..\target\classes" ( mkdir ..\target\classes ) set SOURCEPATH=..\src\main\java "%JAVA_HOME%"\bin\javac -d ..\target\classes -source 1.6 -sourcepath %SOURCEPATH% %SOURCEPATH%\com\espertech\esper\example\stockticker\StockTickerMain.java
georgenicoll/esper
examples/stockticker/etc/compile.bat
bat
gpl-2.0
328
start javaw -jar "Hash Calculator.jar"
wenyizou/RIC-Segway-Project
Microchip/TCPIP Stack/Utilities/launch_Hash_Calculator.bat
bat
bsd-3-clause
39
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=Solium 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
duaraghav8/Solium
docs/make.bat
bat
mit
810
SET python_path="C:\\Python27\\python.exe" SET cl_path="C:\Users\me\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\cl.exe" del *.obj del *.exp del pupyx86.exe del pupyx86.dll IF [%1]==[quick] GOTO compilation ::First: generate resources : copy resources\python27_x86.dll resources\python27.dll %python_path% gen_library_compressed_string.py copy resources\library_compressed_string_x86.txt resources\library_compressed_string.txt %python_path% gen_resource_header.py resources\library_compressed_string.txt %python_path% gen_resource_header.py resources\python27.dll copy resources\msvcr90_x86.dll resources\msvcr90.dll %python_path% gen_resource_header.py resources\msvcr90.dll %python_path% gen_python_bootloader.py %python_path% gen_resource_header.py resources\bootloader.pyc :compilation %cl_path% /c resources_library_compressed_string_txt.c %cl_path% /c resources_bootloader_pyc.c %cl_path% /c resources_python27_dll.c %cl_path% /c resources_msvcr90_dll.c %cl_path% /c Python-dynload.c /IC:\Python27\include %cl_path% /c MemoryModule.c %cl_path% /c _memimporter.c /IC:\Python27\include %cl_path% /c pupy_load.c /DWIN_X86 /IC:\Python27\include %cl_path% /c MyLoadLibrary.c /IC:\Python27\include %cl_path% /O2 /Ob1 /c ReflectiveLoader.c /DWIN_X86 -DREFLECTIVEDLLINJECTION_CUSTOM_DLLMAIN /DREFLECTIVEDLLINJECTION_VIA_LOADREMOTELIBRARYR %cl_path% /c actctx.c %cl_path% /c pupy.c /IC:\Python27\include %cl_path% /c LoadLibraryR.c %cl_path% /c list.c %cl_path% /c thread.c %cl_path% /c remote_thread.c %cl_path% /c base_inject.c /IC:\Python27\include %cl_path% main_exe.c _memimporter.obj MyLoadLibrary.obj Python-dynload.obj resources_bootloader_pyc.obj resources_python27_dll.obj MemoryModule.obj pupy_load.obj resources_library_compressed_string_txt.obj actctx.obj pupy.obj list.obj thread.obj remote_thread.obj LoadLibraryR.obj base_inject.obj resources_msvcr90_dll.obj /Fepupyx86.exe %cl_path% main_reflective.c _memimporter.obj MyLoadLibrary.obj Python-dynload.obj resources_bootloader_pyc.obj resources_python27_dll.obj MemoryModule.obj pupy_load.obj ReflectiveLoader.obj resources_library_compressed_string_txt.obj actctx.obj pupy.obj list.obj thread.obj remote_thread.obj LoadLibraryR.obj base_inject.obj resources_msvcr90_dll.obj /Fepupyx86.dll /LD copy pupyx86.dll ..\..\pupy\payload_templates\ copy pupyx86.exe ..\..\pupy\payload_templates\
xeddmc/pupy
client/sources/make.bat
bat
bsd-3-clause
2,388
@echo off set USAGE=Usage: %0 source destination if [%1] == [] ( echo %USAGE% exit 1 ) if [%2] == [] ( echo %USAGE% exit 2 ) :: rm -rf %2 if exist %2 rmdir %2 /s /q :: cp -rf %1 %2 xcopy %1 %2 /e /h /c /i /y /r
niclange/atom
script/copy-folder.cmd
bat
mit
223
set version=0.1.0 tools\jsmin.exe "jQuery.fluentPaging %version% | (c) Boaz den Besten | MIT Licence" < src\jquery.fluentpaging.js > src\jquery.fluentpaging.min.js NuGet Pack nuget\jQuery.fluentPaging.nuspec -Version %version% -OutputDirectory nuget
n3rd/jQuery.fluentPaging
build.cmd
bat
mit
250
saxon math.log.xml ../../../style/function.xsl
exslt/exslt.github.io
math/functions/log/refresh.bat
bat
mit
47
title Externe_Sensorsoftware start C:\LogTemp\LogTemp.exe
emilio77/Brauerei
Digitemp/Externe_sensorsoftware.bat
bat
mit
57
cmd_/home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/kvvirtualcan.o := ld -m elf_x86_64 -r -o /home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/kvvirtualcan.o /home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/virtualcan.o /home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/../common/VCanOsIf.o /home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/../common/objbuf.o /home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/../common/osif_functions_kernel.o /home/dgonz/projects/ParallelScissorManipulator/lib/linuxcan/virtualcan/../common/queue.o
DJGCrusader/ParallelScissorManipulator
lib/linuxcan/virtualcan/.kvvirtualcan.o.cmd
bat
mit
672
@ECHO off GOTO start :find_dp0 SET dp0=%~dp0 EXIT /b :start SETLOCAL CALL :find_dp0 IF EXIST "%dp0%\node.exe" ( SET "_prog=%dp0%\node.exe" ) ELSE ( SET "_prog=node" SET PATHEXT=%PATHEXT:;.JS;=;% ) endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\uglify-js\bin\uglifyjs" %*
goessner/v2
node_modules/.bin/uglifyjs.cmd
bat
mit
310
SendNamedPipe.exe namedpipetest1234 test_message...
yoggy/unity_test
test84_named_pipe_test/Assets/StreamingAssets/SendNamedPipe.bat
bat
mit
52
sc.exe create SERVALagent binPath= "%~dp0servalagt.exe" start= auto displayname= "SERVAL agent" net.exe start SERVALagent
s-takeuchi/YaizuSample
src/agentsvc/svcadd.bat
bat
mit
122
@rem assumes you are using an env for x64 compiler call mk_win_bin.bat 64
vasilvv/libseal
third_party/intel_aes/mk_win_bin64.bat
bat
mit
78
npm install [email protected] --save-dev
NicoleZA/nativescript-utils
setTypeScript.cmd
bat
mit
39
cmd_src/arm/omap3-beagle-xm.dtb = cpp -Wp,-MD,src/arm/.omap3-beagle-xm.dtb.d.pre.tmp -nostdinc -Iinclude -Isrc/arm -Itestcase-data -undef -D__DTS__ -x assembler-with-cpp -o src/arm/.omap3-beagle-xm.dtb.dts.tmp src/arm/omap3-beagle-xm.dts ; dtc -O dtb -o src/arm/omap3-beagle-xm.dtb -b 0 -i src/arm -d src/arm/.omap3-beagle-xm.dtb.d.dtc.tmp src/arm/.omap3-beagle-xm.dtb.dts.tmp ; cat src/arm/.omap3-beagle-xm.dtb.d.pre.tmp src/arm/.omap3-beagle-xm.dtb.d.dtc.tmp > src/arm/.omap3-beagle-xm.dtb.d omap3-beagle-xm.o: src/arm/omap3-beagle-xm.dts src/arm/omap36xx.dtsi \ src/arm/omap3.dtsi include/dt-bindings/gpio/gpio.h \ include/dt-bindings/interrupt-controller/irq.h \ include/dt-bindings/pinctrl/omap.h src/arm/skeleton.dtsi \ src/arm/twl4030.dtsi src/arm/twl4030_omap3.dtsi src/arm/omap3-beagle-xm.dtb: src/arm/.omap3-beagle-xm.dtb.dts.tmp src/arm/omap3xxx-clocks.dtsi src/arm/omap34xx-omap36xx-clocks.dtsi src/arm/omap36xx-omap3430es2plus-clocks.dtsi src/arm/omap36xx-am35xx-omap3430es2plus-clocks.dtsi src/arm/omap36xx-clocks.dtsi
marklendering/dtb-rebuilder-modified
src/arm/.omap3-beagle-xm.dtb.cmd
bat
gpl-2.0
1,037
cmd_fs/fat/msdos.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o fs/fat/msdos.o fs/fat/namei_msdos.o
emwno/android_kernel_U8500
fs/fat/.msdos.o.cmd
bat
gpl-2.0
126
cmd_arch/arm/mach-msm/reset_modem.ko := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -T /home/envy/kernel/shinano-sirius_msm8974abpro/scripts/module-common.lds --build-id -o arch/arm/mach-msm/reset_modem.ko arch/arm/mach-msm/reset_modem.o arch/arm/mach-msm/reset_modem.mod.o
Envious-Data/shinano-sirius_msm8974abpro
arch/arm/mach-msm/.reset_modem.ko.cmd
bat
gpl-2.0
314
cmd_drivers/net/usb/rtl8150.ko := arm-poky-linux-gnueabi-ld -EL -r -T /second_extend/yocto_file/linux_yocto/scripts/module-common.lds --build-id -o drivers/net/usb/rtl8150.ko drivers/net/usb/rtl8150.o drivers/net/usb/rtl8150.mod.o
heyoufei2/yocto3.14.38_kernel
drivers/net/usb/.rtl8150.ko.cmd
bat
gpl-2.0
233