code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
@echo off
SETLOCAL
set SCRIPT_DIR=%~dp0
CALL "%SCRIPT_DIR%\setup.bat"
:EXEC
REM is the first argument a flag? If so, assume 'agent'
set first_arg=%1
setlocal EnableDelayedExpansion
if "!first_arg:~0,1!" equ "-" (
if "%VENDORED_JRUBY%" == "" (
%RUBYCMD% "%LS_HOME%\lib\bootstrap\environment.rb" "logstash\runner.rb" agent %*
) else (
%JRUBY_BIN% %jruby_opts% "%LS_HOME%\lib\bootstrap\environment.rb" "logstash\runner.rb" agent %*
)
) else (
if "%VENDORED_JRUBY%" == "" (
%RUBYCMD% "%LS_HOME%\lib\bootstrap\environment.rb" "logstash\runner.rb" %*
) else (
%JRUBY_BIN% %jruby_opts% "%LS_HOME%\lib\bootstrap\environment.rb" "logstash\runner.rb" %*
)
)
ENDLOCAL
|
gusai-francelabs/datafari
|
debian7/elk/logstash/bin/logstash.bat
|
bat
|
apache-2.0
| 689 |
SET WSFC_HOME=%WSFC_HOME%
PATH=%PATH%;%ZLIB_HOME%\bin
PATH=%PATH%;%CURL_HOME%\bin
PATH=%PATH%;%ICONV_HOME%\bin
PATH=%PATH%;%LIBXML_HOME%\bin
PATH=%PATH%;%OPENSSL_HOME%\bin
PATH=%PATH%;%WSFC_HOME%\lib
|
krugerke/ext-wsf
|
wsf_c/axis2c/build/win32/axis2_env.bat
|
bat
|
apache-2.0
| 207 |
"%PYTHON%" setup.py install --single-version-externally-managed --record=nul
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
|
NSLS-II/auto-build-tagged-recipes
|
archive/enaml/bld.bat
|
bat
|
bsd-3-clause
| 285 |
rd Azure\Kooboo_CMS /Q /S
md Azure\Kooboo_CMS
rd FileServer.Web /Q /S
md FileServer.Web
rd Released /Q /S
del Azure\Kooboo_CMS.cspkg /Q /S
del CachingSync\Azure\Kooboo.CMS.Caching.AzureSync.dll /Q /S
del CachingSync\Remote\Kooboo.CMS.Caching.NotifyRemote.dll /Q /S
del ContentProviders\AzureBlob\Kooboo.CMS.Content.Persistence.AzureBlobService.dll /Q /S
del ContentProviders\FileServerProvider\*.dll /Q /S
del ContentProviders\MongoDB\Kooboo.CMS.Content.Persistence.MongoDB.dll /Q /S
del ContentProviders\Mysql\Kooboo.CMS.Content.Persistence.Mysql.dll /Q /S
del ContentProviders\SQLCe\Kooboo.CMS.Content.Persistence.SQLCe.dll /Q /S
del ContentProviders\SQLServer\Kooboo.CMS.Content.Persistence.SQLServer.dll /Q /S
del SiteProviders\AzureTable\Kooboo.CMS.Sites.Providers.AzureTable.dll /Q /S
del SiteProviders\SQLServer\Kooboo.CMS.Sites.Providers.SqlServer.dll /Q /S
del SiteProviders\EntityFramework\Kooboo.CMS.Sites.Persistence.EntityFramework.dll /Q /S
del MembershipProviders\EntityFramework\Kooboo.CMS.Account.Persistence.EntityFramework.dll /Q /S
rd mono /Q /S
md mono
del Default\bin\Kooboo.CMS.Sites.TemplateEngines.Razor.dll /Q /S
del Default\bin\Kooboo.CMS.Sites.TemplateEngines.WebForm.dll /Q /S
del TemplateEngines\NVelocity\Kooboo.CMS.Sites.TemplateEngines.NVelocity.dll /Q /S
del TemplateEngines\Razor\Kooboo.CMS.Sites.TemplateEngines.Razor.dll /Q /S
del TemplateEngines\WebForm\Kooboo.CMS.Sites.TemplateEngines.WebForm.dll /Q /S
del AccountProviders\EntityFramework\Kooboo.CMS.Account.Persistence.EntityFramework.dll /Q /S
rd Web /Q /S
md Web
rd WPI\Kooboo_CMS /Q /S
md WPI\Kooboo_CMS
del WPI\Kooboo_CMS.zip /Q /S
del *.log /Q /S
rd ..\Kooboo.CMS.Content\Publish /Q /S
rd ..\..\Publish /Q /S
|
jtm789/CMS
|
Kooboo.CMS/Publish/clear.bat
|
bat
|
bsd-3-clause
| 1,709 |
@echo Off
pushd %~dp0
setlocal
set CACHED_NUGET=%LOCALAPPDATA%\NuGet\NuGet.exe
if exist %CACHED_NUGET% goto CopyNuGet
echo Downloading latest version of NuGet.exe...
if not exist %LOCALAPPDATA%\NuGet @mkdir %LOCALAPPDATA%\NuGet
@powershell -NoProfile -ExecutionPolicy Unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
:CopyNuGet
if exist .nuget\nuget.exe goto Build
if not exist .nuget @mkdir .nuget
@copy %CACHED_NUGET% .nuget\nuget.exe > nul
:Build
:: Find the most recent 32bit MSBuild.exe on the system. Also handle x86 operating systems, where %PROGRAMFILES(X86)%
:: is not defined. Always quote the %MSBUILD% value when setting the variable and never quote %MSBUILD% references.
set MSBUILD="%PROGRAMFILES(X86)%\MSBuild\14.0\Bin\MSBuild.exe"
if not exist %MSBUILD% @set MSBUILD="%PROGRAMFILES%\MSBuild\14.0\Bin\MSBuild.exe"
if not exist %MSBUILD% @set MSBUILD="%PROGRAMFILES(X86)%\MSBuild\12.0\Bin\MSBuild.exe"
if not exist %MSBUILD% @set MSBUILD="%PROGRAMFILES%\MSBuild\12.0\Bin\MSBuild.exe"
if not exist %MSBUILD% @set MSBUILD="%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
%MSBUILD% build\Build.msbuild /nologo /m /v:m /fl /flp:LogFile=msbuild.log;Verbosity=Detailed /nr:false %*
if %ERRORLEVEL% neq 0 goto BuildFail
goto BuildSuccess
:BuildFail
echo.
echo *** BUILD FAILED ***
goto End
:BuildSuccess
echo.
echo *** BUILD SUCCEEDED ***
goto End
:End
echo.
popd
exit /B %ERRORLEVEL%
|
ritterim/descriptor
|
build.cmd
|
bat
|
mit
| 1,510 |
universe = standard
executable = job_ckpt_gettimeofday_std.cndr.exe.$$(OPSYS).$$(ARCH)
output = job_ckpt_gettimeofday_std.out
error = job_ckpt_gettimeofday_std.err
log = job_ckpt_gettimeofday_std.log
arguments = 300 -_condor_aggravate_bugs
priority = 0
Notification = Never
queue
|
djw8605/condor
|
src/condor_tests/job_ckpt_gettimeofday_std.cmd
|
bat
|
apache-2.0
| 282 |
@ECHO OFF
SET CODEGENTOOL="tools\codegen\protobuf\dotnet\protogen.exe"
FOR %%i IN (Tests\Redola.Rpc.TestContracts\*.proto) DO (CALL :codegen %%i)
GOTO :done
:codegen
SET protofile=%1
SET csfile=%protofile:proto=cs%
SET csfile=%csfile:cscol=Protocol%
ECHO %CODEGENTOOL% -i:%protofile% -o:%csfile% -q
%CODEGENTOOL% -i:%protofile% -o:%csfile% -q
GOTO :EOF
:done
ECHO DONE!
|
gaochundong/Redola
|
tools/protobuf-codegen-csharp.bat
|
bat
|
mit
| 387 |
@echo off
echo *** %~n0 ...
echo *** %1
echo.
call %~dp0\_init.bat %1 %2 %3
gdal_edit -a_nodata 0 %1
timeout 30
|
kubaszostak/gdal-dragndrop
|
raster-set-nodata-black.bat
|
bat
|
mit
| 113 |
@ECHO Off
pushd "%~dp0"
ECHO.
ECHO Building and installing ManuelsCouchTisch.
PAUSE
ECHO.
::-------------------------------------------------------------------------------
:: Try to copy a file to a protected directory to see if the script is being run
:: as admin. If not, elevate or warn the user and quit.
:: - Make sure we dont leave the file on the hard drive!
copy CreateShellXML.vbs "%ProgramFiles%" > NUL
IF NOT EXIST "%ProgramFiles%\CreateShellXML.vbs" goto NO_RIGHTS
del "%ProgramFiles%\CreateShellXML.vbs"
::-------------------------------------------------------------------------------
:: Check to see if the project is in a location that all users can access
FOR /F %%A IN ('cacls .') DO (
CheckUserPermissions.VBS %%A
IF ERRORLEVEL 1 GOTO USER_HAS_PERMISSIONS
)
ECHO.
ECHO Not all users have permission to access this directory.
ECHO If you install from this directory, you may not be
ECHO able to access them from other user accounts.
ECHO.
ECHO Continue?
CHOICE
IF ERRORLEVEL 2 GOTO :USER_HAS_NO_PERMISSIONS
:USER_HAS_PERMISSIONS
::-------------------------------------------------------------------------------
:: Check existence MSBuild.exe
ECHO Checking for MSBuild.
SET MsBuildPath="%windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
SET LogFile=build.log.txt
SET MSBuildParameters=/p:Configuration=Release /noconsolelogger /fl /fileLoggerParameters:LogFile=%LogFile%;Append /nologo
IF NOT EXIST %MsBuildPath% GOTO CANNOT_FIND_MSBUILD
::-------------------------------------------------------------------------------
:: Create ObjectSets folder
SET ObjectTagSetFolder="%ProgramData%\Microsoft\Surface\v2.0\ObjectSets"
:: Make sure we are checking existance of the folder (by appending *), not file.
IF NOT EXIST %ObjectTagSetFolder%\* (
ECHO Creating Object Tag Set folder.
MKDIR %ObjectTagSetFolder%
IF ERRORLEVEL 1 goto CANNOT_CREATE_OBJECTTAGSETDIR
)
::-------------------------------------------------------------------------------
:: Build the projects
:: Track any errors when building
SET BuildErrors=""
IF EXIST %LogFile% del %LogFile%
SET ExeDirPath="bin\release"
:ManuelsCouchTisch
ECHO Building ManuelsCouchTisch...
%MsBuildPath% ManuelsCouchTisch\ManuelsCouchTisch.csproj %MSBuildParameters%
IF ERRORLEVEL 1 goto ManuelsCouchTischError
ECHO Generating ManuelsCouchTisch XML...
CreateShellXML.vbs ManuelsCouchTisch\InstalledAppInfo\ManuelsCouchTisch.xml "%CD%" ManuelsCouchTisch %ExeDirPath%
ECHO Installing ManuelsCouchTisch to Surface Shell...
ECHO.
goto COMPLETE
:ManuelsCouchTischError
SET BuildErrors=true
ECHO Error building ManuelsCouchTisch. Please build in Visual Studio and rerun this batch file.
ECHO.
goto COMPLETE
:QUERY_REGISTRY
FOR /F "eol=H tokens=2*" %%A IN ('REG QUERY %1 /v %2') DO SET %3=%%B
goto :EOF
:NO_RIGHTS
ECHO.
ECHO Please rerun this batch file as administrator.
PAUSE
ECHO.
GOTO EOF
:USER_HAS_NO_PERMISSIONS
ECHO.
ECHO Please extract to a public directory and rerun this script.
PAUSE
ECHO.
GOTO EOF
:CANNOT_FIND_MSBUILD
ECHO.
ECHO Cannot find MSBuild.exe to build.
ECHO Please ensure that version 3.5 of the .Net Framework is installed.
PAUSE
ECHO.
GOTO EOF
:CANNOT_CREATE_OBJECTTAGSETDIR
ECHO.
ECHO Cannot create %ObjectTagSetFolder% folder to deploy Object Tag Set XML files.
PAUSE
ECHO.
GOTO EOF
:COMPLETE
ECHO.
IF %BuildErrors%==true ECHO Projects installed, but some failed to build. Please build in Visual Studio to fix build errors
IF NOT %BuildErrors%==true ECHO Successfully installed.
PAUSE
ECHO.
:EOF
popd
|
halllo/ManuelsCouchTisch
|
Install.bat
|
bat
|
mit
| 3,550 |
go tool pprof ./bin/easybufff.exe ./log/easybufff_prof.log
|
toophy/easybuff
|
pprof_web.bat
|
bat
|
mit
| 58 |
set PYTHONPATH=%cd%
echo %PYTHONPATH%
python smoothtest/smoke/SmokeTestDiscover.py -p smoothtest
pause
|
joaduo/smoothtest
|
run_tests.bat
|
bat
|
mit
| 109 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\eco_globular_clusters.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\eco_globular_clusters.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
|
MehnaazAsad/ECO_Globular_Clusters
|
docs/make.bat
|
bat
|
mit
| 5,126 |
C:\projects\crossfire\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user "-target:C:\projects\crossfire\packages\NUnit.ConsoleRunner.3.7.0\tools\nunit3-console.exe" "-targetargs: C:\projects\crossfire\Fibonacci\FibonacciUnitTest\bin\Debug\FibonacciUnitTest.dll C:\projects\crossfire\LoopPerformance\LoopPerformanceUnitTest\bin\Debug\LoopPerformanceUnitTest.dll C:\projects\crossfire\MultithreadProducerConsumer\MultithreadProducerConsumerUnitTest\bin\Debug\MultithreadProducerConsumerUnitTest.dll" -output:C:\projects\crossfire\coverage.xml -returntargetcode
C:\projects\crossfire\packages\ReportGenerator.3.0.0\tools\ReportGenerator.exe "-reports:C:\projects\crossfire\coverage.xml" "-targetdir:C:\projects\crossfire\.coverage"
for /f %%i in ('git rev-parse HEAD') do set commit_id=%%i
for /f %%i in ('git rev-parse --abbrev-ref HEAD') do set commit_branch=%%i
for /f "delims=" %%i in ('git log -1 --pretty^=%%B') do set commit_msg=%%i
for /f "delims=" %%i in ('git log -1 --pretty^=%%an') do set commit_author=%%i
for /f %%i in ('git log -1 --pretty^=%%ae') do set commit_email=%%i
C:\projects\crossfire\packages\coveralls.net.0.7.0\tools\csmacnz.Coveralls.exe --opencover -i C:\projects\crossfire\coverage.xml --repoToken %COVERALLS_REPO_TOKEN% --commitId %commit_id% --commitBranch %commit_branch% --commitAuthor "%commit_author%" --commitEmail %commit_email% --commitMessage "%commit_msg%"
MSBuild.SonarQube.Runner.exe end /d:"sonar.login=%SONAR_LOGIN%"
|
anderson-rancan/crossfire
|
scripts/after_build.cmd
|
bat
|
mit
| 1,481 |
java -mx500m -cp "/C:/Users/Compaq 6910p/Documents/R/win-library/3.4/dismo/java/maxent.jar;C:/Users/Compaq 6910p/Documents/R/win-library/3.4/rJava/java/boot;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\dismo.jar;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\maxent.jar" density.Explain -l E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\0556664842\species.lambdas -c E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\0556664842\species.asc E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\0556664842\absence
@if errorlevel 1 pause
|
mauriciovancine/enm_r
|
data/temp/raster/maxent/0556664842/species_explain.bat
|
bat
|
mit
| 644 |
@echo off
setlocal EnableDelayedExpansion
for /F %%a in ('findstr "<version>" slicommentstodisqus.xml') do set versionStr="%%a"
set version=%versionStr:<version>=%
set version=%version:</version>=%
set version=%version:.=_%
set zipfilename=com_slicommentstodisqus_%version%.zip
del ../%zipfilename%
zip -r ../%zipfilename% * -i "site/*" "slicommentstodisqus.xml" "index.html" "LICENSE"
|
svenbluege/slicomments2disqus
|
pack.cmd
|
bat
|
mit
| 388 |
@c:
@cd c:\KinectCamV21\
@c:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe /unregister /nologo BaseClassesNET.dll
@c:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe /unregister /nologo KinectCam.dll
@c:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe uninstall BaseClassesNET.dll
@c:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe uninstall KinectCam.dll
|
DavidObando/KinectCamV2
|
src/KinectCam/uninstall.bat
|
bat
|
mit
| 381 |
@echo off
if [%1]==[] GOTO ERROR
copy ..\build-one.xml build.xml
call ant run -Dmain-class=com.xml2j.tutorial.choice.application.ChoiceApplication -Djar.name=%1.jar
del build.xml
goto END
:ERROR
echo Missing MODULE
:END
|
lolkedijkstra/xml2j-gen
|
tutorial/choice/run.bat
|
bat
|
mit
| 225 |
cmd_drivers/net/wireless/built-in.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL -r -o drivers/net/wireless/built-in.o drivers/net/wireless/bcmdhd/built-in.o
|
JoinTheRealms/TF700-dualboot-stockbased
|
drivers/net/wireless/.built-in.o.cmd
|
bat
|
gpl-2.0
| 221 |
cmd_arch/arm/lib/csumpartialcopyuser.o := arm-linux-gnueabihf-gcc -Wp,-MD,arch/arm/lib/.csumpartialcopyuser.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabihf/4.6/include -I/home/tyler/dev/rk3188/tylermk908/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk3188/include -Iarch/arm/plat-rk/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/csumpartialcopyuser.o arch/arm/lib/csumpartialcopyuser.S
source_arch/arm/lib/csumpartialcopyuser.o := arch/arm/lib/csumpartialcopyuser.S
deps_arch/arm/lib/csumpartialcopyuser.o := \
$(wildcard include/config/cpu.h) \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/linkage.h \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hwcap.h \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
/home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/asm-offsets.h \
include/generated/asm-offsets.h \
arch/arm/lib/csumpartialcopygeneric.S \
arch/arm/lib/csumpartialcopyuser.o: $(deps_arch/arm/lib/csumpartialcopyuser.o)
$(deps_arch/arm/lib/csumpartialcopyuser.o):
|
tyeo098/MK908-Kernel-NAND
|
arch/arm/lib/.csumpartialcopyuser.o.cmd
|
bat
|
gpl-2.0
| 2,374 |
cmd_arch/x86/mm/pat.o := gcc -Wp,-MD,arch/x86/mm/.pat.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(pat)" -D"KBUILD_MODNAME=KBUILD_STR(pat)" -c -o arch/x86/mm/pat.o arch/x86/mm/pat.c
deps_arch/x86/mm/pat.o := \
arch/x86/mm/pat.c \
$(wildcard include/config/x86/pat.h) \
$(wildcard include/config/nonpromisc/devmem.h) \
$(wildcard include/config/x86/32.h) \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.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/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc4.h \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/asm/posix_types.h \
include/asm/posix_types_32.h \
include/asm/types.h \
$(wildcard include/config/x86/64.h) \
$(wildcard include/config/highmem64g.h) \
include/asm-generic/int-ll64.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
include/asm/bitops.h \
$(wildcard include/config/x86/cmov.h) \
include/asm/alternative.h \
$(wildcard include/config/paravirt.h) \
include/asm/asm.h \
include/asm/cpufeature.h \
$(wildcard include/config/x86/invlpg.h) \
include/asm/required-features.h \
$(wildcard include/config/x86/minimum/cpu/family.h) \
$(wildcard include/config/math/emulation.h) \
$(wildcard include/config/x86/pae.h) \
$(wildcard include/config/x86/use/3dnow.h) \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
$(wildcard include/config/x86/bswap.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/asm/thread_info.h \
include/asm/thread_info_32.h \
$(wildcard include/config/4kstacks.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/page.h \
include/linux/const.h \
include/asm/page_32.h \
$(wildcard include/config/highmem4g.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/x86/3dnow.h) \
include/linux/string.h \
include/asm/string.h \
include/asm/string_32.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/processor.h \
$(wildcard include/config/x86/vsmp.h) \
$(wildcard include/config/x86/ht.h) \
$(wildcard include/config/x86/debugctlmsr.h) \
include/asm/processor-flags.h \
include/asm/vm86.h \
$(wildcard include/config/vm86.h) \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/segment.h \
include/asm/ds.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/asm/math_emu.h \
include/asm/sigcontext.h \
include/asm/current.h \
include/asm/current_32.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/system.h \
$(wildcard include/config/ia32/emulation.h) \
$(wildcard include/config/x86/ppro/fence.h) \
$(wildcard include/config/x86/oostore.h) \
include/asm/cmpxchg.h \
include/asm/cmpxchg_32.h \
$(wildcard include/config/x86/cmpxchg.h) \
$(wildcard include/config/x86/cmpxchg64.h) \
include/asm/nops.h \
$(wildcard include/config/mk7.h) \
$(wildcard include/config/x86/p6/nop.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
$(wildcard include/config/x86/alignment/16.h) \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm/desc_defs.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/have/cpumask/of/cpu/map.h) \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/asm/spinlock.h \
include/asm/atomic.h \
include/asm/atomic_32.h \
$(wildcard include/config/m386.h) \
include/asm-generic/atomic.h \
include/asm/rwlock.h \
include/linux/spinlock_api_smp.h \
include/linux/wait.h \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/smp.h \
$(wildcard include/config/x86/local/apic.h) \
$(wildcard include/config/x86/io/apic.h) \
$(wildcard include/config/x86/32/smp.h) \
$(wildcard include/config/x86/64/smp.h) \
include/asm/mpspec.h \
$(wildcard include/config/mca.h) \
$(wildcard include/config/eisa.h) \
$(wildcard include/config/acpi.h) \
include/asm/mpspec_def.h \
include/asm-x86/mach-default/mach_mpspec.h \
include/asm/apic.h \
$(wildcard include/config/x86/good/apic.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/fixmap.h \
include/asm/fixmap_32.h \
$(wildcard include/config/x86/visws/apic.h) \
$(wildcard include/config/x86/f00f/bug.h) \
$(wildcard include/config/x86/cyclone/timer.h) \
$(wildcard include/config/pci/mmconfig.h) \
$(wildcard include/config/provide/ohci1394/dma/init.h) \
include/asm/acpi.h \
$(wildcard include/config/acpi/numa.h) \
include/acpi/pdc_intel.h \
include/asm/numa.h \
include/asm/numa_32.h \
include/asm/mmu.h \
include/asm/apicdef.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/asm/io_apic.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/asm-x86/mach-default/mach_apicdef.h \
include/asm/topology.h \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/x86/64/acpi/numa.h) \
include/asm-generic/topology.h \
include/asm/sparsemem.h \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/completion.h \
include/asm/pgtable.h \
include/asm/pgtable_32.h \
$(wildcard include/config/highpte.h) \
include/asm/paravirt.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) \
$(wildcard include/config/slabinfo.h) \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
include/asm/pgtable-2level-defs.h \
include/asm/pgtable-2level.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/percpu.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.h \
include/linux/namei.h \
include/linux/path.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/math64.h \
include/asm/div64.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
$(wildcard include/config/64bit.h) \
include/linux/err.h \
include/linux/bootmem.h \
$(wildcard include/config/crash/dump.h) \
$(wildcard include/config/have/arch/bootmem/node.h) \
$(wildcard include/config/have/arch/alloc/remap.h) \
include/asm/dma.h \
$(wildcard include/config/pci.h) \
include/asm/io.h \
include/asm/io_32.h \
include/asm-generic/iomap.h \
include/linux/vmalloc.h \
include/asm/tlbflush.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/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/timex.h \
include/asm/timex.h \
$(wildcard include/config/x86/elan.h) \
$(wildcard include/config/x86/rdc321x.h) \
include/asm/tsc.h \
$(wildcard include/config/x86/tsc.h) \
include/linux/jiffies.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
include/asm-generic/signal.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/asm/seccomp.h \
include/asm/seccomp_32.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/asm/unistd_32.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm/pat.h \
include/asm/e820.h \
include/asm/e820_32.h \
$(wildcard include/config/pm.h) \
include/linux/ioport.h \
include/asm/cacheflush.h \
$(wildcard include/config/debug/rodata.h) \
$(wildcard include/config/debug/rodata/test.h) \
include/asm/mtrr.h \
$(wildcard include/config/mtrr.h) \
arch/x86/mm/pat.o: $(deps_arch/x86/mm/pat.o)
$(deps_arch/x86/mm/pat.o):
|
namgk/kernel-tut
|
arch/x86/mm/.pat.o.cmd
|
bat
|
gpl-2.0
| 17,834 |
cmd_drivers/misc/vibetonz/vibrator.ko := arm-eabi-ld -EL -r -T /data/repos/kernels/scripts/module-common.lds --build-id -o drivers/misc/vibetonz/vibrator.ko drivers/misc/vibetonz/vibrator.o drivers/misc/vibetonz/vibrator.mod.o
|
bigbiff/i717-GB-Kernel
|
drivers/misc/vibetonz/.vibrator.ko.cmd
|
bat
|
gpl-2.0
| 228 |
:: taskkill -im freecad.exe /f
@echo OFF
echo cadquery-freecad-module required
@echo ON
cd %~p0
start "" "c:\FreeCAD\bin\freecad" main_generator.py all
::M3x15_MF_D5.5
::all
::M3x9_FF_D5.5
:: start "" "c:\FreeCAD\bin\freecad" main_generator.py FF_9.0mm_D5.0
:: start "" "c:\FreeCAD\bin\freecad" main_generator.py angled-254-dual 2
:: start "" "c:\FreeCAD\bin\freecad" main_generator.py 254-single 3
::start "" "c:\FreeCAD\bin\freecad" main_generator.py 254-single 1-2
:: Pin_Header_Straight_1xyy_Pitch2.54mm
:: 254single 1
:: start "" "d:\FreeCAD_015\bin\freecad" main_generator.py %1
::pause
|
easyw/kicad-3d-models-in-freecad
|
cadquery/FCAD_script_generator/Standoff_FF_MF/create_model-example.bat
|
bat
|
gpl-2.0
| 598 |
@ECHO OFF
java -Xms3072m -Xmx3072m -Xmn768m -XX:PermSize=256m -XX:TargetSurvivorRatio=80 -XX:MaxTenuringThreshold=15 -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:MaxGCPauseMillis=40 -XX:GCPauseIntervalMillis=150 -XX:+AggressiveOpts -XX:+TieredCompilation -XX:ReservedCodeCacheSize=2048m -XX:+UseCodeCacheFlushing -XX:CompileThreshold=1000 -jar TolkienCraftII_server.jar nogui
pause
|
GreatOrator/TolkienCraftII
|
server/ServerStart.bat
|
bat
|
gpl-2.0
| 404 |
cmd_build_x86_64_linux/raid/jbod.o := gcc -Wp,-MD,build_x86_64_linux/raid/jbod.o.d -D_X86_64 -fno-strict-aliasing -fno-common -ffreestanding -fomit-frame-pointer -march=k8 -mtune=nocona -mno-red-zone -mcmodel=kernel -pipe -fno-reorder-blocks -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-stack-protector -DLINUX -pipe -fno-builtin-sprintf -fno-builtin-log2 -fno-builtin-puts -fno-strict-aliasing -fno-common -fomit-frame-pointer -Wall -I/home/david/ndas4linux/3.3.4/inc -I/home/david/ndas4linux/3.3.4/inc/lspx -D__LITTLE_ENDIAN_BYTEORDER -D__LITTLE_ENDIAN_BITFIELD -D__LITTLE_ENDIAN__ -DNDAS_VER_MAJOR="3" -DNDAS_VER_MINOR="3" -DNDAS_VER_BUILD="4" -O2 -DXPLAT_SIO -DXPLAT_NDASHIX -DXPLAT_PNP -DXPLAT_ASYNC_IO -DXPLAT_RESTORE -DRELEASE -DXPLAT_BPC -O2 -c -o build_x86_64_linux/raid/jbod.o raid/jbod.c
deps_build_x86_64_linux/raid/jbod.o := \
raid/jbod.c \
/home/david/ndas4linux/3.3.4/inc/xplatcfg.h \
/home/david/ndas4linux/3.3.4/inc/dbgcfg.h \
build_x86_64_linux/raid/jbod.o: $(deps_build_x86_64_linux/raid/jbod.o)
$(deps_build_x86_64_linux/raid/jbod.o):
|
iocellnetworks/ndas4linux
|
3.3.4/build_x86_64_linux/raid/jbod.o.cmd
|
bat
|
gpl-2.0
| 1,081 |
cmd_net/bluetooth/hidp/hidp.o := /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-ld -EL -r -o net/bluetooth/hidp/hidp.o net/bluetooth/hidp/core.o net/bluetooth/hidp/sock.o
|
evan6200/cirrfy_pos
|
net/bluetooth/hidp/.hidp.o.cmd
|
bat
|
gpl-2.0
| 238 |
@echo off
title Rasercraft - System Check
echo Displaying system information and issues pertaining to hardware limitations.
echo.
setlocal enableextensions enabledelayedexpansion
for /f "delims=" %%l in ('wmic computersystem get Manufacturer^,Model^,SystemType^,TotalPhysicalMemory /format:list') do >nul 2>&1 set "System_%%l"
for /f "delims=" %%l in ('wmic cpu get * /format:list') do >nul 2>&1 set "CPU_%%l"
for /f "delims=" %%l in ('wmic os get FreePhysicalMemory^,TotalVisibleMemorySize /format:list') do >nul 2>&1 set "OS_%%l"
set /a OS_UsedPhysicalMemory=OS_TotalVisibleMemorySize-OS_FreePhysicalMemory
set num1=%OS_TotalVisibleMemorySize%
set num2=1024
set num3=%OS_FreePhysicalMemory%
set /a sum1=%num1%/%num2%
set /a sum2=%sum1%/%num2%
set /a sum3=%num3%/%num2%
set /a sum4=%sum3%/%num2%
echo Processor Type: %PROCESSOR_ARCHITECTURE%
echo Processor Size: %CPU_AddressWidth%
echo System Type: %System_SystemType%
echo.
if %CPU_AddressWidth% == 64 GOTO :CPUGOOD
echo WARNING: You are not using a 64Bit Processor.
echo You will be limited to a maximum of 2GB when assigning RAM.
:CPUGOOD
if %CPU_AddressWidth% == 64 echo 64Bit Processor Detected:
if %CPU_AddressWidth% == 64 echo Make sure you're running 64bit Java.
echo.
java -version
echo.
echo Total RAM = %sum1% MB
echo Available RAM = %sum3% MB
if %sum1% GTR 2048 GOTO :RAMGOOD
echo WARNING: You are running a small amount of RAM.
echo Assign as little as possible to the server.
:RAMGOOD
if %sum1% LSS 8192 GOTO :NOTBIGRAM
echo Tip: Even if you have a lot of RAM, stick to assigning maximum 4GB.
:NOTBIGRAM
echo.
echo If you received no warnings, then everything should be fine.
exit
|
Raserhead/RCraft
|
0.8/scripts/SysInfo.bat
|
bat
|
gpl-3.0
| 1,647 |
deps_config := \
virt/kvm/Kconfig \
arch/arm/kvm/Kconfig \
lib/xz/Kconfig \
lib/Kconfig \
crypto/asymmetric_keys/Kconfig \
drivers/crypto/ux500/Kconfig \
drivers/crypto/nx/Kconfig \
drivers/crypto/caam/Kconfig \
drivers/crypto/Kconfig \
crypto/async_tx/Kconfig \
crypto/Kconfig \
security/integrity/evm/Kconfig \
security/integrity/ima/Kconfig \
security/integrity/Kconfig \
security/yama/Kconfig \
security/apparmor/Kconfig \
security/tomoyo/Kconfig \
security/smack/Kconfig \
security/selinux/Kconfig \
security/keys/Kconfig \
security/Kconfig \
lib/Kconfig.kmemcheck \
lib/Kconfig.kgdb \
samples/Kconfig \
kernel/trace/Kconfig \
mm/Kconfig.debug \
lib/Kconfig.debug \
arch/arm/Kconfig.debug \
fs/dlm/Kconfig \
fs/nls/Kconfig \
fs/9p/Kconfig \
fs/afs/Kconfig \
fs/coda/Kconfig \
fs/ncpfs/Kconfig \
fs/cifs/Kconfig \
fs/ceph/Kconfig \
net/sunrpc/Kconfig \
fs/nfsd/Kconfig \
fs/nfs/Kconfig \
fs/exofs/Kconfig.ore \
fs/efivarfs/Kconfig \
fs/f2fs/Kconfig \
fs/exofs/Kconfig \
fs/ufs/Kconfig \
fs/sysv/Kconfig \
fs/pstore/Kconfig \
fs/romfs/Kconfig \
fs/qnx6/Kconfig \
fs/qnx4/Kconfig \
fs/hpfs/Kconfig \
fs/omfs/Kconfig \
fs/minix/Kconfig \
fs/freevxfs/Kconfig \
fs/squashfs/Kconfig \
fs/cramfs/Kconfig \
fs/logfs/Kconfig \
fs/ubifs/Kconfig \
fs/jffs2/Kconfig \
fs/yaffs2/Kconfig \
fs/efs/Kconfig \
fs/bfs/Kconfig \
fs/befs/Kconfig \
fs/hfsplus/Kconfig \
fs/hfs/Kconfig \
fs/ecryptfs/Kconfig \
fs/affs/Kconfig \
fs/adfs/Kconfig \
fs/configfs/Kconfig \
fs/sysfs/Kconfig \
fs/proc/Kconfig \
fs/ntfs/Kconfig \
fs/fat/Kconfig \
fs/udf/Kconfig \
fs/isofs/Kconfig \
fs/cachefiles/Kconfig \
fs/fscache/Kconfig \
fs/fuse/Kconfig \
fs/autofs4/Kconfig \
fs/quota/Kconfig \
fs/notify/fanotify/Kconfig \
fs/notify/inotify/Kconfig \
fs/notify/dnotify/Kconfig \
fs/notify/Kconfig \
fs/nilfs2/Kconfig \
fs/btrfs/Kconfig \
fs/ocfs2/Kconfig \
fs/gfs2/Kconfig \
fs/xfs/Kconfig \
fs/jfs/Kconfig \
fs/reiserfs/Kconfig \
fs/jbd2/Kconfig \
fs/jbd/Kconfig \
fs/ext4/Kconfig \
fs/ext3/Kconfig \
fs/ext2/Kconfig \
fs/Kconfig \
drivers/firmware/qcom/Kconfig \
drivers/firmware/efi/Kconfig \
drivers/firmware/google/Kconfig \
drivers/firmware/Kconfig \
drivers/soc/qcom/memshare/Kconfig \
drivers/soc/qcom/Kconfig \
drivers/soc/Kconfig \
drivers/phy/Kconfig \
drivers/sensors/Kconfig \
drivers/bif/Kconfig \
drivers/coresight/Kconfig \
drivers/reset/Kconfig \
drivers/gud/Kconfig \
drivers/ipack/devices/Kconfig \
drivers/ipack/carriers/Kconfig \
drivers/ipack/Kconfig \
drivers/irqchip/Kconfig \
drivers/pwm/Kconfig \
drivers/staging/vme/devices/Kconfig \
drivers/vme/boards/Kconfig \
drivers/vme/bridges/Kconfig \
drivers/vme/Kconfig \
drivers/ntb/Kconfig \
drivers/iio/magnetometer/Kconfig \
drivers/iio/light/Kconfig \
drivers/iio/imu/inv_mpu6050/Kconfig \
drivers/iio/imu/Kconfig \
drivers/iio/gyro/Kconfig \
drivers/iio/frequency/Kconfig \
drivers/iio/dac/Kconfig \
drivers/iio/common/st_sensors/Kconfig \
drivers/iio/common/hid-sensors/Kconfig \
drivers/iio/common/Kconfig \
drivers/iio/amplifiers/Kconfig \
drivers/iio/adc/Kconfig \
drivers/iio/accel/Kconfig \
drivers/iio/Kconfig \
drivers/memory/Kconfig \
drivers/extcon/Kconfig \
drivers/devfreq/Kconfig \
drivers/rpmsg/Kconfig \
drivers/remoteproc/Kconfig \
drivers/iommu/Kconfig \
drivers/mailbox/Kconfig \
drivers/clocksource/Kconfig \
drivers/hwspinlock/Kconfig \
drivers/clk/qcom/mdss/Kconfig \
drivers/clk/qcom/Kconfig \
drivers/clk/mvebu/Kconfig \
drivers/clk/Kconfig \
drivers/platform/msm/Kconfig \
drivers/platform/goldfish/Kconfig \
drivers/platform/x86/Kconfig \
drivers/platform/Kconfig \
drivers/staging/dwc2/Kconfig \
drivers/staging/netlogic/Kconfig \
drivers/staging/goldfish/Kconfig \
drivers/staging/zcache/Kconfig \
drivers/staging/fwserial/Kconfig \
drivers/staging/sb105x/Kconfig \
drivers/staging/dgrp/Kconfig \
drivers/staging/imx-drm/Kconfig \
drivers/staging/ced1401/Kconfig \
drivers/staging/silicom/Kconfig \
drivers/staging/ti-soc-thermal/Kconfig \
drivers/staging/csr/Kconfig \
drivers/staging/gdm72xx/Kconfig \
drivers/staging/ozwpan/Kconfig \
drivers/staging/android/fiq_debugger/Kconfig \
drivers/staging/android/ion/Kconfig \
drivers/staging/android/Kconfig \
drivers/staging/media/lirc/Kconfig \
drivers/staging/media/solo6x10/Kconfig \
drivers/staging/media/go7007/Kconfig \
drivers/staging/media/dt3155v4l/Kconfig \
drivers/staging/media/davinci_vpfe/Kconfig \
drivers/staging/media/cxd2099/Kconfig \
drivers/staging/media/as102/Kconfig \
drivers/staging/media/Kconfig \
drivers/staging/nvec/Kconfig \
drivers/staging/ste_rmi4/Kconfig \
drivers/staging/cptm1217/Kconfig \
drivers/staging/speakup/Kconfig \
drivers/staging/ft1000/Kconfig \
drivers/staging/bcm/Kconfig \
drivers/staging/keucr/Kconfig \
drivers/staging/sbe-2t3e3/Kconfig \
drivers/staging/quickstart/Kconfig \
drivers/staging/tidspbridge/Kconfig \
drivers/staging/xgifb/Kconfig \
drivers/staging/cxt1e1/Kconfig \
drivers/staging/crystalhd/Kconfig \
drivers/staging/sm7xxfb/Kconfig \
drivers/staging/wlags49_h25/Kconfig \
drivers/staging/wlags49_h2/Kconfig \
drivers/staging/zram/Kconfig \
drivers/staging/zsmalloc/Kconfig \
drivers/staging/iio/trigger/Kconfig \
drivers/staging/iio/resolver/Kconfig \
drivers/staging/iio/meter/Kconfig \
drivers/staging/iio/magnetometer/Kconfig \
drivers/staging/iio/light/Kconfig \
drivers/staging/iio/impedance-analyzer/Kconfig \
drivers/staging/iio/gyro/Kconfig \
drivers/staging/iio/frequency/Kconfig \
drivers/staging/iio/cdc/Kconfig \
drivers/staging/iio/addac/Kconfig \
drivers/staging/iio/adc/Kconfig \
drivers/staging/iio/accel/Kconfig \
drivers/staging/iio/Kconfig \
drivers/staging/sep/Kconfig \
drivers/staging/vt6656/Kconfig \
drivers/staging/vt6655/Kconfig \
drivers/staging/serqt_usb2/Kconfig \
drivers/staging/octeon/Kconfig \
drivers/staging/line6/Kconfig \
drivers/staging/phison/Kconfig \
drivers/staging/frontier/Kconfig \
drivers/staging/rts5139/Kconfig \
drivers/staging/rtl8712/Kconfig \
drivers/staging/rtl8192e/rtl8192e/Kconfig \
drivers/staging/rtl8192e/Kconfig \
drivers/staging/rtl8192u/Kconfig \
drivers/staging/rtl8187se/Kconfig \
drivers/staging/panel/Kconfig \
drivers/staging/asus_oled/Kconfig \
drivers/staging/olpc_dcon/Kconfig \
drivers/staging/comedi/Kconfig \
drivers/staging/echo/Kconfig \
drivers/staging/wlan-ng/Kconfig \
drivers/staging/winbond/Kconfig \
drivers/staging/usbip/Kconfig \
drivers/staging/slicoss/Kconfig \
drivers/staging/et131x/Kconfig \
drivers/staging/Kconfig \
drivers/xen/Kconfig \
drivers/hv/Kconfig \
drivers/virtio/Kconfig \
drivers/virt/Kconfig \
drivers/vlynq/Kconfig \
drivers/vfio/pci/Kconfig \
drivers/vfio/Kconfig \
drivers/uio/Kconfig \
drivers/auxdisplay/Kconfig \
drivers/dca/Kconfig \
drivers/dma/sh/Kconfig \
drivers/dma/bestcomm/Kconfig \
drivers/dma/Kconfig \
drivers/esoc/Kconfig \
drivers/rtc/Kconfig \
drivers/edac/Kconfig \
drivers/infiniband/ulp/isert/Kconfig \
drivers/infiniband/ulp/iser/Kconfig \
drivers/infiniband/ulp/srpt/Kconfig \
drivers/infiniband/ulp/srp/Kconfig \
drivers/infiniband/ulp/ipoib/Kconfig \
drivers/infiniband/hw/ocrdma/Kconfig \
drivers/infiniband/hw/nes/Kconfig \
drivers/infiniband/hw/mlx4/Kconfig \
drivers/infiniband/hw/cxgb4/Kconfig \
drivers/infiniband/hw/cxgb3/Kconfig \
drivers/infiniband/hw/amso1100/Kconfig \
drivers/infiniband/hw/ehca/Kconfig \
drivers/infiniband/hw/qib/Kconfig \
drivers/infiniband/hw/ipath/Kconfig \
drivers/infiniband/hw/mthca/Kconfig \
drivers/infiniband/Kconfig \
drivers/accessibility/Kconfig \
drivers/switch/Kconfig \
drivers/leds/trigger/Kconfig \
drivers/leds/Kconfig \
drivers/memstick/host/Kconfig \
drivers/memstick/core/Kconfig \
drivers/memstick/Kconfig \
drivers/mmc/host/Kconfig \
drivers/mmc/card/Kconfig \
drivers/mmc/core/Kconfig \
drivers/mmc/Kconfig \
drivers/uwb/Kconfig \
drivers/usb/gadget/Kconfig \
drivers/usb/phy/Kconfig \
drivers/usb/atm/Kconfig \
drivers/usb/misc/sisusbvga/Kconfig \
drivers/usb/misc/Kconfig \
drivers/usb/serial/Kconfig \
drivers/usb/chipidea/Kconfig \
drivers/usb/dwc3/Kconfig \
drivers/usb/image/Kconfig \
drivers/usb/storage/Kconfig \
drivers/usb/class/Kconfig \
drivers/usb/renesas_usbhs/Kconfig \
drivers/usb/musb/Kconfig \
drivers/usb/host/Kconfig \
drivers/usb/wusbcore/Kconfig \
drivers/usb/mon/Kconfig \
drivers/usb/core/Kconfig \
drivers/usb/Kconfig \
drivers/hid/i2c-hid/Kconfig \
drivers/hid/usbhid/Kconfig \
drivers/hid/Kconfig \
sound/oss/Kconfig \
sound/soc/generic/Kconfig \
sound/soc/codecs/Kconfig \
sound/soc/ux500/Kconfig \
sound/soc/txx9/Kconfig \
sound/soc/tegra/Kconfig \
sound/soc/sh/Kconfig \
sound/soc/s6000/Kconfig \
sound/soc/samsung/Kconfig \
sound/soc/pxa/Kconfig \
sound/soc/mxs/Kconfig \
sound/soc/msm/Kconfig \
sound/soc/mid-x86/Kconfig \
sound/soc/kirkwood/Kconfig \
sound/soc/omap/Kconfig \
sound/soc/nuc900/Kconfig \
sound/soc/jz4740/Kconfig \
sound/soc/fsl/Kconfig \
sound/soc/dwc/Kconfig \
sound/soc/davinci/Kconfig \
sound/soc/cirrus/Kconfig \
sound/soc/blackfin/Kconfig \
sound/soc/au1x/Kconfig \
sound/soc/atmel/Kconfig \
sound/soc/Kconfig \
sound/parisc/Kconfig \
sound/sparc/Kconfig \
sound/pcmcia/Kconfig \
sound/firewire/Kconfig \
sound/usb/Kconfig \
sound/sh/Kconfig \
sound/mips/Kconfig \
sound/spi/Kconfig \
sound/atmel/Kconfig \
sound/arm/Kconfig \
sound/aoa/soundbus/Kconfig \
sound/aoa/codecs/Kconfig \
sound/aoa/fabrics/Kconfig \
sound/aoa/Kconfig \
sound/ppc/Kconfig \
sound/pci/hda/Kconfig \
sound/pci/Kconfig \
sound/isa/Kconfig \
sound/drivers/Kconfig \
sound/core/seq/Kconfig \
sound/core/Kconfig \
sound/oss/dmasound/Kconfig \
sound/Kconfig \
drivers/video/logo/Kconfig \
drivers/video/console/Kconfig \
drivers/video/adf/Kconfig \
drivers/video/backlight/Kconfig \
drivers/video/mmp/fb/Kconfig \
drivers/video/mmp/panel/Kconfig \
drivers/video/mmp/hw/Kconfig \
drivers/video/mmp/Kconfig \
drivers/video/exynos/Kconfig \
drivers/video/omap2/displays/Kconfig \
drivers/video/omap2/omapfb/Kconfig \
drivers/video/omap2/dss/Kconfig \
drivers/video/omap2/Kconfig \
drivers/video/omap/Kconfig \
drivers/video/msm/mdss/Kconfig \
drivers/video/msm/vidc/Kconfig \
drivers/video/msm/Kconfig \
drivers/video/geode/Kconfig \
drivers/gpu/msm/Kconfig \
drivers/gpu/host1x/drm/Kconfig \
drivers/gpu/host1x/Kconfig \
drivers/gpu/drm/qxl/Kconfig \
drivers/gpu/drm/tilcdc/Kconfig \
drivers/gpu/drm/omapdrm/Kconfig \
drivers/gpu/drm/shmobile/Kconfig \
drivers/gpu/drm/cirrus/Kconfig \
drivers/gpu/drm/mgag200/Kconfig \
drivers/gpu/drm/ast/Kconfig \
drivers/gpu/drm/udl/Kconfig \
drivers/gpu/drm/gma500/Kconfig \
drivers/gpu/drm/vmwgfx/Kconfig \
drivers/gpu/drm/exynos/Kconfig \
drivers/gpu/drm/nouveau/Kconfig \
drivers/gpu/drm/radeon/Kconfig \
drivers/gpu/drm/i2c/Kconfig \
drivers/gpu/drm/Kconfig \
drivers/gpu/vga/Kconfig \
drivers/char/agp/Kconfig \
drivers/video/Kconfig \
drivers/media/dvb-frontends/Kconfig \
drivers/media/tuners/Kconfig \
drivers/media/i2c/soc_camera/Kconfig \
drivers/media/i2c/smiapp/Kconfig \
drivers/media/i2c/m5mols/Kconfig \
drivers/media/i2c/cx25840/Kconfig \
drivers/media/i2c/Kconfig \
drivers/media/common/siano/Kconfig \
drivers/media/common/saa7146/Kconfig \
drivers/media/common/b2c2/Kconfig \
drivers/media/common/Kconfig \
drivers/media/firewire/Kconfig \
drivers/media/radio/wl128x/Kconfig \
drivers/media/radio/si470x/Kconfig \
drivers/media/radio/Kconfig \
drivers/media/parport/Kconfig \
drivers/media/mmc/siano/Kconfig \
drivers/media/mmc/Kconfig \
drivers/media/platform/msm/vpu/Kconfig \
drivers/media/platform/msm/broadcast/Kconfig \
drivers/media/platform/msm/vcap/Kconfig \
drivers/media/platform/msm/dvb/video/Kconfig \
drivers/media/platform/msm/dvb/demux/Kconfig \
drivers/media/platform/msm/dvb/Kconfig \
drivers/media/platform/msm/wfd/Kconfig \
drivers/media/platform/msm/vidc/vmem/Kconfig \
drivers/media/platform/msm/vidc/Kconfig \
drivers/media/platform/msm/camera_v2/Kconfig \
drivers/media/platform/msm/Kconfig \
drivers/media/platform/s5p-tv/Kconfig \
drivers/media/platform/exynos4-is/Kconfig \
drivers/media/platform/soc_camera/Kconfig \
drivers/media/platform/blackfin/Kconfig \
drivers/media/platform/omap/Kconfig \
drivers/media/platform/davinci/Kconfig \
drivers/media/platform/marvell-ccic/Kconfig \
drivers/media/platform/Kconfig \
drivers/media/pci/ddbridge/Kconfig \
drivers/media/pci/ngene/Kconfig \
drivers/media/pci/mantis/Kconfig \
drivers/media/pci/pt1/Kconfig \
drivers/media/pci/dm1105/Kconfig \
drivers/media/pci/pluto2/Kconfig \
drivers/media/pci/b2c2/Kconfig \
drivers/media/pci/ttpci/Kconfig \
drivers/media/pci/saa7164/Kconfig \
drivers/media/pci/saa7134/Kconfig \
drivers/media/pci/bt8xx/Kconfig \
drivers/media/pci/cx88/Kconfig \
drivers/media/pci/cx25821/Kconfig \
drivers/media/pci/cx23885/Kconfig \
drivers/media/pci/cx18/Kconfig \
drivers/media/pci/saa7146/Kconfig \
drivers/media/pci/zoran/Kconfig \
drivers/media/pci/ivtv/Kconfig \
drivers/media/pci/sta2x11/Kconfig \
drivers/media/pci/meye/Kconfig \
drivers/media/pci/Kconfig \
drivers/media/usb/em28xx/Kconfig \
drivers/media/usb/b2c2/Kconfig \
drivers/media/usb/siano/Kconfig \
drivers/media/usb/ttusb-dec/Kconfig \
drivers/media/usb/ttusb-budget/Kconfig \
drivers/media/usb/dvb-usb-v2/Kconfig \
drivers/media/usb/dvb-usb/Kconfig \
drivers/media/usb/tm6000/Kconfig \
drivers/media/usb/cx231xx/Kconfig \
drivers/media/usb/au0828/Kconfig \
drivers/media/usb/stk1160/Kconfig \
drivers/media/usb/usbvision/Kconfig \
drivers/media/usb/tlg2300/Kconfig \
drivers/media/usb/hdpvr/Kconfig \
drivers/media/usb/pvrusb2/Kconfig \
drivers/media/usb/sn9c102/Kconfig \
drivers/media/usb/s2255/Kconfig \
drivers/media/usb/stkwebcam/Kconfig \
drivers/media/usb/zr364xx/Kconfig \
drivers/media/usb/cpia2/Kconfig \
drivers/media/usb/pwc/Kconfig \
drivers/media/usb/gspca/gl860/Kconfig \
drivers/media/usb/gspca/stv06xx/Kconfig \
drivers/media/usb/gspca/m5602/Kconfig \
drivers/media/usb/gspca/Kconfig \
drivers/media/usb/uvc/Kconfig \
drivers/media/usb/Kconfig \
drivers/media/rc/keymaps/Kconfig \
drivers/media/rc/Kconfig \
drivers/media/dvb-core/Kconfig \
drivers/media/v4l2-core/Kconfig \
drivers/media/Kconfig \
drivers/regulator/Kconfig \
drivers/mfd/Kconfig \
drivers/bcma/Kconfig \
drivers/ssb/Kconfig \
drivers/watchdog/Kconfig \
drivers/thermal/Kconfig \
drivers/hwmon/pmbus/Kconfig \
drivers/hwmon/Kconfig \
drivers/power/qcom/Kconfig \
drivers/power/avs/Kconfig \
drivers/power/reset/Kconfig \
drivers/power/Kconfig \
drivers/w1/slaves/Kconfig \
drivers/w1/masters/Kconfig \
drivers/w1/Kconfig \
drivers/gpio/Kconfig \
drivers/pinctrl/vt8500/Kconfig \
drivers/pinctrl/spear/Kconfig \
drivers/pinctrl/sh-pfc/Kconfig \
drivers/pinctrl/mvebu/Kconfig \
drivers/pinctrl/Kconfig \
drivers/ptp/Kconfig \
drivers/pps/generators/Kconfig \
drivers/pps/clients/Kconfig \
drivers/pps/Kconfig \
drivers/hsi/clients/Kconfig \
drivers/hsi/Kconfig \
drivers/ssbi/Kconfig \
drivers/spmi/Kconfig \
drivers/spi/Kconfig \
drivers/soundwire/Kconfig \
drivers/slimbus/Kconfig \
drivers/i2c/busses/Kconfig \
drivers/i2c/algos/Kconfig \
drivers/i2c/muxes/Kconfig \
drivers/i2c/Kconfig \
drivers/s390/char/Kconfig \
drivers/char/tpm/Kconfig \
drivers/char/pcmcia/Kconfig \
drivers/char/hw_random/Kconfig \
drivers/char/ipmi/Kconfig \
drivers/tty/hvc/Kconfig \
drivers/char/diag/Kconfig \
drivers/tty/serial/8250/Kconfig \
drivers/tty/serial/Kconfig \
drivers/tty/Kconfig \
drivers/char/Kconfig \
drivers/input/gameport/Kconfig \
drivers/input/serio/Kconfig \
drivers/input/misc/Kconfig \
drivers/input/touchscreen/MSG22xx/Kconfig \
drivers/input/touchscreen/gt9xx/Kconfig \
drivers/input/touchscreen/focaltech/Kconfig \
drivers/input/touchscreen/synaptics_dsx/Kconfig \
drivers/input/touchscreen/Kconfig \
drivers/input/tablet/Kconfig \
drivers/input/joystick/iforce/Kconfig \
drivers/input/joystick/Kconfig \
drivers/input/mouse/Kconfig \
drivers/input/keyboard/Kconfig \
drivers/input/Kconfig \
drivers/isdn/hardware/mISDN/Kconfig \
drivers/isdn/mISDN/Kconfig \
drivers/isdn/hysdn/Kconfig \
drivers/isdn/gigaset/Kconfig \
drivers/isdn/hardware/eicon/Kconfig \
drivers/isdn/hardware/avm/Kconfig \
drivers/isdn/hardware/Kconfig \
drivers/isdn/capi/Kconfig \
drivers/isdn/act2000/Kconfig \
drivers/isdn/sc/Kconfig \
drivers/isdn/pcbit/Kconfig \
drivers/isdn/icn/Kconfig \
drivers/isdn/hisax/Kconfig \
drivers/isdn/i4l/Kconfig \
drivers/isdn/Kconfig \
drivers/net/hyperv/Kconfig \
drivers/net/ieee802154/Kconfig \
drivers/net/wan/Kconfig \
drivers/net/wimax/i2400m/Kconfig \
drivers/net/wimax/Kconfig \
drivers/net/wireless/mwifiex/Kconfig \
drivers/net/wireless/zd1211rw/Kconfig \
drivers/net/wireless/ti/wlcore/Kconfig \
drivers/net/wireless/ti/wl18xx/Kconfig \
drivers/net/wireless/ti/wl12xx/Kconfig \
drivers/net/wireless/ti/wl1251/Kconfig \
drivers/net/wireless/ti/Kconfig \
drivers/net/wireless/rtlwifi/Kconfig \
drivers/net/wireless/rt2x00/Kconfig \
drivers/net/wireless/p54/Kconfig \
drivers/net/wireless/orinoco/Kconfig \
drivers/net/wireless/libertas/Kconfig \
drivers/net/wireless/iwlegacy/Kconfig \
drivers/net/wireless/iwlwifi/Kconfig \
drivers/net/wireless/ipw2x00/Kconfig \
drivers/net/wireless/hostap/Kconfig \
drivers/net/wireless/brcm80211/Kconfig \
drivers/net/wireless/b43legacy/Kconfig \
drivers/net/wireless/b43/Kconfig \
drivers/net/wireless/ath/wil6210/Kconfig \
drivers/net/wireless/ath/ar5523/Kconfig \
drivers/net/wireless/ath/ath6kl/Kconfig \
drivers/net/wireless/ath/carl9170/Kconfig \
drivers/net/wireless/ath/ath9k/Kconfig \
drivers/net/wireless/ath/ath5k/Kconfig \
drivers/net/wireless/ath/Kconfig \
drivers/net/wireless/rtl818x/Kconfig \
drivers/net/wireless/Kconfig \
drivers/net/usb/Kconfig \
drivers/s390/net/Kconfig \
drivers/net/slip/Kconfig \
drivers/net/ppp/Kconfig \
drivers/net/plip/Kconfig \
drivers/net/phy/Kconfig \
drivers/net/hippi/Kconfig \
drivers/net/fddi/Kconfig \
drivers/net/ethernet/xircom/Kconfig \
drivers/net/ethernet/xilinx/Kconfig \
drivers/net/ethernet/wiznet/Kconfig \
drivers/net/ethernet/via/Kconfig \
drivers/net/ethernet/tundra/Kconfig \
drivers/net/ethernet/toshiba/Kconfig \
drivers/net/ethernet/tile/Kconfig \
drivers/net/ethernet/ti/Kconfig \
drivers/net/ethernet/tehuti/Kconfig \
drivers/net/ethernet/sun/Kconfig \
drivers/net/ethernet/stmicro/stmmac/Kconfig \
drivers/net/ethernet/stmicro/Kconfig \
drivers/net/ethernet/smsc/Kconfig \
drivers/net/ethernet/sgi/Kconfig \
drivers/net/ethernet/sfc/Kconfig \
drivers/net/ethernet/sis/Kconfig \
drivers/net/ethernet/silan/Kconfig \
drivers/net/ethernet/seeq/Kconfig \
drivers/net/ethernet/rdc/Kconfig \
drivers/net/ethernet/renesas/Kconfig \
drivers/net/ethernet/realtek/Kconfig \
drivers/net/ethernet/qlogic/Kconfig \
drivers/net/ethernet/pasemi/Kconfig \
drivers/net/ethernet/packetengines/Kconfig \
drivers/net/ethernet/oki-semi/pch_gbe/Kconfig \
drivers/net/ethernet/oki-semi/Kconfig \
drivers/net/ethernet/octeon/Kconfig \
drivers/net/ethernet/nxp/Kconfig \
drivers/net/ethernet/nvidia/Kconfig \
drivers/net/ethernet/nuvoton/Kconfig \
drivers/net/ethernet/8390/Kconfig \
drivers/net/ethernet/natsemi/Kconfig \
drivers/net/ethernet/myricom/Kconfig \
drivers/net/ethernet/msm/Kconfig \
drivers/net/ethernet/microchip/Kconfig \
drivers/net/ethernet/micrel/Kconfig \
drivers/net/ethernet/mellanox/mlx4/Kconfig \
drivers/net/ethernet/mellanox/Kconfig \
drivers/net/ethernet/marvell/Kconfig \
drivers/net/ethernet/icplus/Kconfig \
drivers/net/ethernet/xscale/Kconfig \
drivers/net/ethernet/i825xx/Kconfig \
drivers/net/ethernet/intel/Kconfig \
drivers/net/ethernet/ibm/emac/Kconfig \
drivers/net/ethernet/ibm/Kconfig \
drivers/net/ethernet/hp/Kconfig \
drivers/net/ethernet/fujitsu/Kconfig \
drivers/net/ethernet/freescale/fs_enet/Kconfig \
drivers/net/ethernet/freescale/Kconfig \
drivers/net/ethernet/faraday/Kconfig \
drivers/net/ethernet/neterion/Kconfig \
drivers/net/ethernet/emulex/benet/Kconfig \
drivers/net/ethernet/emulex/Kconfig \
drivers/net/ethernet/dlink/Kconfig \
drivers/net/ethernet/dec/tulip/Kconfig \
drivers/net/ethernet/dec/Kconfig \
drivers/net/ethernet/davicom/Kconfig \
drivers/net/ethernet/cisco/enic/Kconfig \
drivers/net/ethernet/cisco/Kconfig \
drivers/net/ethernet/cirrus/Kconfig \
drivers/net/ethernet/chelsio/Kconfig \
drivers/net/ethernet/calxeda/Kconfig \
drivers/net/ethernet/brocade/bna/Kconfig \
drivers/net/ethernet/brocade/Kconfig \
drivers/net/ethernet/broadcom/Kconfig \
drivers/net/ethernet/adi/Kconfig \
drivers/net/ethernet/cadence/Kconfig \
drivers/net/ethernet/atheros/Kconfig \
drivers/net/ethernet/apple/Kconfig \
drivers/net/ethernet/amd/Kconfig \
drivers/net/ethernet/alteon/Kconfig \
drivers/net/ethernet/aeroflex/Kconfig \
drivers/net/ethernet/adaptec/Kconfig \
drivers/net/ethernet/3com/Kconfig \
drivers/net/ethernet/Kconfig \
drivers/net/dsa/Kconfig \
drivers/vhost/Kconfig \
drivers/net/caif/Kconfig \
drivers/atm/Kconfig \
drivers/net/arcnet/Kconfig \
drivers/net/team/Kconfig \
drivers/net/Kconfig \
drivers/macintosh/Kconfig \
drivers/message/i2o/Kconfig \
drivers/firewire/Kconfig \
drivers/message/fusion/Kconfig \
drivers/target/sbp/Kconfig \
drivers/target/iscsi/Kconfig \
drivers/target/tcm_fc/Kconfig \
drivers/target/loopback/Kconfig \
drivers/target/Kconfig \
drivers/md/persistent-data/Kconfig \
drivers/md/bcache/Kconfig \
drivers/md/Kconfig \
drivers/ata/Kconfig \
drivers/scsi/osd/Kconfig \
drivers/scsi/device_handler/Kconfig \
drivers/scsi/pcmcia/Kconfig \
drivers/scsi/csiostor/Kconfig \
drivers/scsi/arm/Kconfig \
drivers/scsi/qla4xxx/Kconfig \
drivers/scsi/qla2xxx/Kconfig \
drivers/scsi/ufs/Kconfig \
drivers/scsi/mpt3sas/Kconfig \
drivers/scsi/mpt2sas/Kconfig \
drivers/scsi/megaraid/Kconfig.megaraid \
drivers/scsi/mvsas/Kconfig \
drivers/scsi/aic94xx/Kconfig \
drivers/scsi/aic7xxx/Kconfig.aic79xx \
drivers/scsi/aic7xxx/Kconfig.aic7xxx \
drivers/scsi/be2iscsi/Kconfig \
drivers/scsi/bnx2fc/Kconfig \
drivers/scsi/bnx2i/Kconfig \
drivers/scsi/cxgbi/cxgb4i/Kconfig \
drivers/scsi/cxgbi/cxgb3i/Kconfig \
drivers/scsi/cxgbi/Kconfig \
drivers/scsi/libsas/Kconfig \
drivers/scsi/Kconfig \
drivers/ide/Kconfig \
drivers/misc/qcom/Kconfig \
drivers/misc/vmw_vmci/Kconfig \
drivers/misc/mei/Kconfig \
drivers/misc/altera-stapl/Kconfig \
drivers/misc/carma/Kconfig \
drivers/misc/lis3lv02d/Kconfig \
drivers/misc/ti-st/Kconfig \
drivers/misc/cb710/Kconfig \
drivers/misc/eeprom/Kconfig \
drivers/misc/c2port/Kconfig \
drivers/misc/Kconfig \
drivers/s390/block/Kconfig \
drivers/block/drbd/Kconfig \
drivers/block/mtip32xx/Kconfig \
drivers/block/paride/Kconfig \
drivers/block/Kconfig \
drivers/pnp/pnpacpi/Kconfig \
drivers/pnp/pnpbios/Kconfig \
drivers/pnp/isapnp/Kconfig \
drivers/pnp/Kconfig \
drivers/parport/Kconfig \
drivers/of/Kconfig \
drivers/mtd/ubi/Kconfig \
drivers/mtd/lpddr/Kconfig \
drivers/mtd/onenand/Kconfig \
drivers/mtd/nand/Kconfig \
drivers/mtd/devices/Kconfig \
drivers/mtd/maps/Kconfig \
drivers/mtd/chips/Kconfig \
drivers/mtd/Kconfig \
drivers/connector/Kconfig \
drivers/bus/Kconfig \
drivers/base/regmap/Kconfig \
drivers/base/Kconfig \
drivers/Kconfig \
net/ipc_router/Kconfig \
drivers/nfc/microread/Kconfig \
drivers/nfc/pn544/Kconfig \
drivers/nfc/Kconfig \
net/nfc/hci/Kconfig \
net/nfc/nci/Kconfig \
net/nfc/Kconfig \
net/ceph/Kconfig \
net/caif/Kconfig \
net/9p/Kconfig \
net/rfkill/Kconfig \
net/wimax/Kconfig \
net/mac80211/Kconfig \
net/wireless/Kconfig \
net/rxrpc/Kconfig \
drivers/bluetooth/Kconfig \
net/bluetooth/hidp/Kconfig \
net/bluetooth/cmtp/Kconfig \
net/bluetooth/bnep/Kconfig \
net/bluetooth/rfcomm/Kconfig \
net/bluetooth/Kconfig \
drivers/net/irda/Kconfig \
net/irda/ircomm/Kconfig \
net/irda/irnet/Kconfig \
net/irda/irlan/Kconfig \
net/irda/Kconfig \
drivers/net/can/softing/Kconfig \
drivers/net/can/usb/Kconfig \
drivers/net/can/cc770/Kconfig \
drivers/net/can/c_can/Kconfig \
drivers/net/can/sja1000/Kconfig \
drivers/net/can/mscan/Kconfig \
drivers/net/can/Kconfig \
net/can/Kconfig \
drivers/net/hamradio/Kconfig \
net/ax25/Kconfig \
net/rmnet_data/Kconfig \
net/netlink/Kconfig \
net/vmw_vsock/Kconfig \
net/openvswitch/Kconfig \
net/batman-adv/Kconfig \
net/dns_resolver/Kconfig \
net/dcb/Kconfig \
net/sched/Kconfig \
net/mac802154/Kconfig \
net/ieee802154/Kconfig \
net/phonet/Kconfig \
net/lapb/Kconfig \
net/x25/Kconfig \
drivers/net/appletalk/Kconfig \
net/ipx/Kconfig \
net/llc/Kconfig \
net/decnet/Kconfig \
net/8021q/Kconfig \
net/dsa/Kconfig \
net/bridge/Kconfig \
net/802/Kconfig \
net/l2tp/Kconfig \
net/atm/Kconfig \
net/tipc/Kconfig \
net/rds/Kconfig \
net/sctp/Kconfig \
net/dccp/ccids/Kconfig \
net/dccp/Kconfig \
net/bridge/netfilter/Kconfig \
net/decnet/netfilter/Kconfig \
net/ipv6/netfilter/Kconfig \
net/ipv4/netfilter/Kconfig \
net/netfilter/ipvs/Kconfig \
net/netfilter/ipset/Kconfig \
net/netfilter/Kconfig \
net/netlabel/Kconfig \
net/ipv6/Kconfig \
net/ipv4/Kconfig \
net/iucv/Kconfig \
net/xfrm/Kconfig \
net/unix/Kconfig \
net/packet/Kconfig \
net/Kconfig \
kernel/power/Kconfig \
fs/Kconfig.binfmt \
drivers/cpuidle/Kconfig \
drivers/cpufreq/Kconfig.powerpc \
drivers/cpufreq/Kconfig.arm \
drivers/cpufreq/Kconfig.x86 \
drivers/cpufreq/Kconfig \
mm/Kconfig \
kernel/Kconfig.preempt \
drivers/pcmcia/Kconfig \
drivers/pci/Kconfig \
arch/arm/common/Kconfig \
arch/arm/Kconfig-nommu \
arch/arm/mm/Kconfig \
arch/arm/mach-zynq/Kconfig \
arch/arm/mach-w90x900/Kconfig \
arch/arm/mach-vt8500/Kconfig \
arch/arm/mach-virt/Kconfig \
arch/arm/plat-versatile/Kconfig \
arch/arm/mach-vexpress/Kconfig \
arch/arm/mach-versatile/Kconfig \
arch/arm/mach-ux500/Kconfig \
arch/arm/mach-u300/Kconfig \
arch/arm/mach-tegra/Kconfig \
arch/arm/mach-prima2/Kconfig \
arch/arm/mach-sunxi/Kconfig \
drivers/sh/intc/Kconfig \
drivers/sh/Kconfig \
arch/arm/mach-shmobile/Kconfig \
arch/arm/mach-exynos/Kconfig \
arch/arm/mach-s5pv210/Kconfig \
arch/arm/mach-s5pc100/Kconfig \
arch/arm/mach-s5p64x0/Kconfig \
arch/arm/mach-s3c64xx/Kconfig \
arch/arm/mach-s3c24xx/Kconfig \
arch/arm/mach-spear/Kconfig \
arch/arm/mach-socfpga/Kconfig \
arch/arm/plat-samsung/Kconfig \
arch/arm/mach-sa1100/Kconfig \
arch/arm/mach-realview/Kconfig \
arch/arm/mach-mmp/Kconfig \
arch/arm/plat-pxa/Kconfig \
arch/arm/mach-pxa/Kconfig \
arch/arm/mach-picoxcell/Kconfig \
arch/arm/mach-orion5x/Kconfig \
arch/arm/mach-omap2/Kconfig \
arch/arm/mach-omap1/Kconfig \
arch/arm/plat-omap/Kconfig \
arch/arm/mach-nomadik/Kconfig \
arch/arm/mach-netx/Kconfig \
arch/arm/mach-mxs/Kconfig \
arch/arm/mach-imx/devices/Kconfig \
arch/arm/mach-imx/Kconfig \
arch/arm/mach-mv78xx0/Kconfig \
arch/arm/mach-msm/Kconfig \
arch/arm/mach-ks8695/Kconfig \
arch/arm/mach-kirkwood/Kconfig \
arch/arm/mach-ixp4xx/Kconfig \
arch/arm/mach-iop13xx/Kconfig \
arch/arm/mach-iop33x/Kconfig \
arch/arm/mach-iop32x/Kconfig \
arch/arm/mach-integrator/Kconfig \
arch/arm/mach-highbank/Kconfig \
arch/arm/mach-gemini/Kconfig \
arch/arm/mach-footbridge/Kconfig \
arch/arm/mach-ep93xx/Kconfig \
arch/arm/mach-dove/Kconfig \
arch/arm/mach-davinci/Kconfig \
arch/arm/mach-cns3xxx/Kconfig \
arch/arm/mach-clps711x/Kconfig \
arch/arm/mach-bcm2835/Kconfig \
arch/arm/mach-bcm/Kconfig \
arch/arm/mach-at91/Kconfig.non_dt \
arch/arm/mach-at91/Kconfig \
arch/arm/mach-mvebu/Kconfig \
kernel/Kconfig.freezer \
kernel/Kconfig.locks \
block/Kconfig.iosched \
block/partitions/Kconfig \
block/Kconfig \
kernel/gcov/Kconfig \
arch/Kconfig \
usr/Kconfig \
kernel/time/Kconfig \
kernel/irq/Kconfig \
init/Kconfig \
arch/arm/Kconfig \
Kconfig
include/config/auto.conf: \
$(deps_config)
ifneq "$(KERNELVERSION)" "3.10.49"
include/config/auto.conf: FORCE
endif
ifneq "$(ARCH)" "arm"
include/config/auto.conf: FORCE
endif
ifneq "$(SRCARCH)" "arm"
include/config/auto.conf: FORCE
endif
$(deps_config): ;
|
adomasalcore3/android_kernel_Vodafone_VDF600
|
include/config/auto.conf.cmd
|
bat
|
gpl-3.0
| 28,290 |
..\venv\Python34\python run_server.py
|
d2emon/privatisation-py
|
src/server.bat
|
bat
|
gpl-3.0
| 38 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=GISPython
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
|
lvmgeo/GISPython
|
docs/make.bat
|
bat
|
gpl-3.0
| 771 |
if %sentinel% NEQ __sentinel__ exit
set gnome_url=http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies
call %tmp%\wget_and_unpack1.bat %gnome_url% gettext-runtime_0.18.1.1-2_win32.zip %msys_dir%
call %tmp%\wget_and_unpack1.bat %gnome_url% gettext-runtime-dev_0.18.1.1-2_win32.zip %msys_dir%
call %tmp%\wget_and_unpack1.bat %gnome_url% gettext-tools-dev_0.18.1.1-2_win32.zip %msys_dir%
|
photron/msys_setup
|
msys_setup_gettext.bat
|
bat
|
lgpl-2.1
| 393 |
@echo off
set ROOT=%cd%\7zip
if not defined OUTDIR set OUTDIR=%ROOT%\bin64
if not defined ERRFILE set ERRFILE=%cd%\error.txt
mkdir %OUTDIR%
set OPTS=CPU=AMD64 MY_STATIC_LINK=1 /NOLOGO
set LFLAGS=/SUBSYSTEM:WINDOWS,"5.02"
cd %ROOT%\Bundles\Format7zExtract
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zxa.dll" >> %ERRFILE%
copy AMD64\7zxa.dll %OUTDIR%\7zxa.dll
cd %ROOT%\Bundles\Format7z
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7za.dll" >> %ERRFILE%
copy AMD64\7za.dll %OUTDIR%\7za.dll
cd %ROOT%\Bundles\Format7zF
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7z.dll" >> %ERRFILE%
copy AMD64\7z.dll %OUTDIR%\7z.dll
cd %ROOT%\Bundles\Format7zFO
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zOrig.dll" >> %ERRFILE%
copy AMD64\7z.dll %OUTDIR%\7zOrig.dll
cd %ROOT%\Bundles\Format7zUSB
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zUSB.dll" >> %ERRFILE%
copy AMD64\7zu.dll %OUTDIR%\7zu-x64.dll
cd %ROOT%\UI\FileManager
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zFM.exe" >> %ERRFILE%
copy AMD64\7zFM.exe %OUTDIR%\7zFM.exe
cd %ROOT%\UI\GUI
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zG.exe" >> %ERRFILE%
copy AMD64\7zG.exe %OUTDIR%\7zG.exe
cd %ROOT%\UI\Explorer
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7-zip.dll" >> %ERRFILE%
copy AMD64\7-zip.dll %OUTDIR%\7-zip.dll
cd %ROOT%\Bundles\SFXWin
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7z.sfx" >> %ERRFILE%
copy AMD64\7z.sfx %OUTDIR%\7z.sfx
cd %ROOT%\Bundles\Codec_brotli
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ brotli-x64.dll" >> %ERRFILE%
copy AMD64\brotli.dll %OUTDIR%\brotli-x64.dll
cd %ROOT%\Bundles\Codec_lizard
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ lizard-x64.dll" >> %ERRFILE%
copy AMD64\lizard.dll %OUTDIR%\lizard-x64.dll
cd %ROOT%\Bundles\Codec_lz4
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ lz4-x64.dll" >> %ERRFILE%
copy AMD64\lz4.dll %OUTDIR%\lz4-x64.dll
cd %ROOT%\Bundles\Codec_lz5
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ lz5-x64.dll" >> %ERRFILE%
copy AMD64\lz5.dll %OUTDIR%\lz5-x64.dll
cd %ROOT%\Bundles\Codec_zstdF
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ zstd-x64.dll" >> %ERRFILE%
copy AMD64\zstd.dll %OUTDIR%\zstd-x64.dll
cd %ROOT%\..\..\C\Util\7zipInstall
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ Install-x64.exe" >> %ERRFILE%
copy AMD64\7zipInstall.exe %OUTDIR%\Install-x64.exe
cd %ROOT%\..\..\C\Util\7zipUninstall
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ Uninstall.exe" >> %ERRFILE%
copy AMD64\7zipUninstall.exe %OUTDIR%\Uninstall.exe
set LFLAGS=/SUBSYSTEM:CONSOLE,"5.02"
cd %ROOT%\UI\Console
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7z.exe" >> %ERRFILE%
copy AMD64\7z.exe %OUTDIR%\7z.exe
cd %ROOT%\Bundles\SFXCon
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zCon.sfx" >> %ERRFILE%
copy AMD64\7zCon.sfx %OUTDIR%\7zCon.sfx
cd %ROOT%\Bundles\Alone
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7za.exe" >> %ERRFILE%
copy AMD64\7za.exe %OUTDIR%\7za.exe
:ende
cd %ROOT%\..
|
mcmilk/7-Zip-zstd
|
CPP/build-x64.cmd
|
bat
|
lgpl-2.1
| 3,170 |
@echo CREATING MICROSOFT IMPORT LIBRARY FOR CSOUND64.DLL FOR X64
del exports.txt
del csound64.def
del csound64.exp
del csound64.lib
dumpbin /exports csound-mingw64/csound64.dll > exports.txt
@echo LIBRARY CSOUND64 >> csound64.def
@echo EXPORTS >> csound64.def
FOR /F "skip=19 tokens=4" %%l in (exports.txt) do @echo %%l >> csound64.def
lib /def:csound64.def /out:csound64.lib /machine:x64
|
Angeldude/csound
|
mingw64/make_import_library.cmd
|
bat
|
lgpl-2.1
| 389 |
call POVARS64
echo on
del /Q out\*.*
for %%F in (*.c) do pocc /Ze /Zl /Tx86-coff /Gz "%%F" /Fo "out\%%~nF.obj"
for %%F in (extra\*.c) do pocc /Ze /Zl /Tx86-coff /Gz "%%F" /Fo "out\%%~nF.obj"
rem POLIB /DEF:"Uuid.def" /OUT:"..\..\Win\\Uuid.lib\" /MACHINE:X86 out\*.obj
POLIB /DEF:"Uuid.def" /OUT:Uuid.lib /MACHINE:X86 out\*.obj
del /Q /Y out\*.*
for %%F in (*.c) do pocc /Ze /Zl /Tx64-coff /Gz "%%F" /Fo "out\%%~nF.obj"
for %%F in (extra\*.c) do pocc /Ze /Zl /Tx64-coff /Gz "%%F" /Fo "out\%%~nF.obj"
rem POLIB /DEF:"Uuid.def" /OUT:"..\..\Win64\\Uuid.lib\" /MACHINE:X64 out\*.obj
POLIB /DEF:"Uuid.def" /OUT:Uuid64.lib /MACHINE:X64 out\*.obj
|
Frankie-PellesC/fSDK
|
Lib/src/Uuid/MakeUuidLib.cmd
|
bat
|
lgpl-3.0
| 641 |
@echo off
C:
chdir "<%= @cygwin_home %>\bin"
: Start in specified directory (http://sources.redhat.com/ml/cygwin/2002-05/msg01645.html)
: Modifications needed also in /etc/profile or ~/.profile or ~/.bash_profile
set BASH_HERE=%1
: Use Windows' profile directory instead of Cygwin's home
set HOME=%USERPROFILE%
: Other environmental variables
rem set LANG=en_US.UTF-8
rem set LANG=C.UTF-8
set LANG=en_US.utf8
: Start X server (if not yet started)
"<%= @cygwin_home %>\bin\run.exe" XWin -multiwindow -clipboard -silent-dup-error
set DISPLAY=:0
: Start the shell
rem bash --login -i
rem rxvt -sr -g 140x50 -sl 10000 -bg black -fg white -fn "Bitstream Vera Sans Mono" -fb "Bitstream Vera Sans Mono Bold" -e /usr/bin/bash --login -i
start mintty /usr/bin/bash --login -i
|
orfjackal/cygwin-deployer
|
templates/Cygwin.bat
|
bat
|
apache-2.0
| 798 |
cd x64
cd Debug
echo Starting NFMasterServer...
start "VFMasterServer" "VFPluginLoader_d.exe" "Server=MasterServer" "ID=3"
|
WizardVan/VanFrame
|
rund.bat
|
bat
|
apache-2.0
| 131 |
@echo off
set PAUSE_ERRORS=1
call bat\SetupSDK.bat
call bat\SetupApplication.bat
echo.
echo Starting AIR Debug Launcher...
echo.
::adl "%APP_XML%" "%APP_DIR%"
call "C:\Program Files (x86)\FlashDevelop\Tools\flexsdk\bin\adl.exe" "%APP_XML%" "%APP_DIR%"
if errorlevel 1 goto error
goto end
:error
pause
:end
|
LandonLunsford/orichalcum-ui
|
Run.bat
|
bat
|
apache-2.0
| 309 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCFOLD.S04_OperateOnPublicFolder.MSOXCFOLD_S04_TC05_RopMovePublicFolder /testcontainer:..\..\MS-OXCFOLD\TestSuite\bin\Debug\MS-OXCFOLD_TestSuite.dll /runconfig:..\..\MS-OXCFOLD\MS-OXCFOLD.testsettings /unique
pause
|
XinwLi/Interop-TestSuites-1
|
ExchangeMAPI/Source/Scripts/MS-OXCFOLD/RunMSOXCFOLD_S04_TC05_RopMovePublicFolder.cmd
|
bat
|
mit
| 309 |
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off
:: ----------------------
:: KUDU Deployment Script
:: Version: 1.0.6
:: ----------------------
:: Prerequisites
:: -------------
:: Verify node.js installed
where node 2>nul >nul
IF %ERRORLEVEL% NEQ 0 (
echo Missing node.js executable, please install node.js, if already installed make sure it can be reached from current environment.
goto error
)
:: Setup
:: -----
setlocal enabledelayedexpansion
SET ARTIFACTS=%~dp0%..\artifacts
IF NOT DEFINED DEPLOYMENT_SOURCE (
SET DEPLOYMENT_SOURCE=%~dp0%.
)
IF NOT DEFINED DEPLOYMENT_TARGET (
SET DEPLOYMENT_TARGET=%ARTIFACTS%\wwwroot
)
IF NOT DEFINED NEXT_MANIFEST_PATH (
SET NEXT_MANIFEST_PATH=%ARTIFACTS%\manifest
IF NOT DEFINED PREVIOUS_MANIFEST_PATH (
SET PREVIOUS_MANIFEST_PATH=%ARTIFACTS%\manifest
)
)
IF NOT DEFINED KUDU_SYNC_CMD (
:: Install kudu sync
echo Installing Kudu Sync
call npm install kudusync -g --silent
IF !ERRORLEVEL! NEQ 0 goto error
:: Locally just running "kuduSync" would also work
SET KUDU_SYNC_CMD=%appdata%\npm\kuduSync.cmd
)
goto Deployment
:: Utility Functions
:: -----------------
:SelectNodeVersion
IF DEFINED KUDU_SELECT_NODE_VERSION_CMD (
:: The following are done only on Windows Azure Websites environment
call %KUDU_SELECT_NODE_VERSION_CMD% "%DEPLOYMENT_SOURCE%" "%DEPLOYMENT_TARGET%" "%DEPLOYMENT_TEMP%"
IF !ERRORLEVEL! NEQ 0 goto error
IF EXIST "%DEPLOYMENT_TEMP%\__nodeVersion.tmp" (
SET /p NODE_EXE=<"%DEPLOYMENT_TEMP%\__nodeVersion.tmp"
IF !ERRORLEVEL! NEQ 0 goto error
)
IF EXIST "%DEPLOYMENT_TEMP%\__npmVersion.tmp" (
SET /p NPM_JS_PATH=<"%DEPLOYMENT_TEMP%\__npmVersion.tmp"
IF !ERRORLEVEL! NEQ 0 goto error
)
IF NOT DEFINED NODE_EXE (
SET NODE_EXE=node
)
SET NPM_CMD="!NODE_EXE!" "!NPM_JS_PATH!"
) ELSE (
SET NPM_CMD=npm
SET NODE_EXE=node
)
goto :EOF
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Deployment
:: ----------
:Deployment
echo Handling node.js deployment.
:: 1. KuduSync
IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" (
call :ExecuteCmd "%KUDU_SYNC_CMD%" -v 50 -f "%DEPLOYMENT_SOURCE%" -t "%DEPLOYMENT_TARGET%" -n "%NEXT_MANIFEST_PATH%" -p "%PREVIOUS_MANIFEST_PATH%" -i ".git;.hg;.deployment;deploy.cmd"
IF !ERRORLEVEL! NEQ 0 goto error
)
:: 2. Select node version
call :SelectNodeVersion
:: 3. Install npm packages
IF EXIST "%DEPLOYMENT_TARGET%\package.json" (
pushd "%DEPLOYMENT_TARGET%"
call :ExecuteCmd !NPM_CMD! install --production
IF !ERRORLEVEL! NEQ 0 goto error
popd
)
//= WEBPACK_BUILD
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Post deployment stub
IF DEFINED POST_DEPLOYMENT_ACTION call "%POST_DEPLOYMENT_ACTION%"
IF !ERRORLEVEL! NEQ 0 goto error
goto end
:: Execute command routine that will echo out when error
:ExecuteCmd
setlocal
set _CMD_=%*
call %_CMD_%
if "%ERRORLEVEL%" NEQ "0" echo Failed exitCode=%ERRORLEVEL%, command=%_CMD_%
exit /b %ERRORLEVEL%
:error
endlocal
echo An error has occurred during web site deployment.
call :exitSetErrorLevel
call :exitFromFunction 2>nul
:exitSetErrorLevel
exit /b 1
:exitFromFunction
()
:end
endlocal
echo Finished successfully.
|
sahat/megaboilerplate
|
generators/deployment/modules/azure-deploy.cmd
|
bat
|
mit
| 3,319 |
SETLOCAL EnableExtensions
:: Bypass installing the agent and server monitor if locally emulating
IF "%EMULATED%" EQU "true" GOTO:EOF
for /F "usebackq tokens=1,2 delims==" %%i in (`wmic os get LocalDateTime /VALUE 2^>NUL`) do if '.%%i.'=='.LocalDateTime.' set ldt=%%j
set ldt=%ldt:~0,4%-%ldt:~4,2%-%ldt:~6,2% %ldt:~8,2%:%ldt:~10,2%:%ldt:~12,6%
SET NR_ERROR_LEVEL=0
CALL:INSTALL_NEWRELIC_AGENT
CALL:INSTALL_NEWRELIC_SERVER_MONITOR
IF %NR_ERROR_LEVEL% EQU 0 (
EXIT /B 0
) ELSE (
EXIT %NR_ERROR_LEVEL%
)
:: --------------
:: Functions
:: --------------
:INSTALL_NEWRELIC_AGENT
ECHO %ldt% : Begin installing the New Relic .net Agent >> "%RoleRoot%\nr.log" 2>&1
:: Current version of the installer
SET NR_INSTALLER_NAME=NewRelicAgent_x64_5.19.47.0.msi
:: Path used for custom configuration and worker role environment varibles
SET NR_HOME=%ALLUSERSPROFILE%\New Relic\.NET Agent\
ECHO Installing the New Relic .net Agent. >> "%RoleRoot%\nr.log" 2>&1
IF "%IsWorkerRole%" EQU "true" (
msiexec.exe /i %NR_INSTALLER_NAME% /norestart /quiet NR_LICENSE_KEY=%LICENSE_KEY% INSTALLLEVEL=50 /lv* %RoleRoot%\nr_install.log
) ELSE (
msiexec.exe /i %NR_INSTALLER_NAME% /norestart /quiet NR_LICENSE_KEY=%LICENSE_KEY% /lv* %RoleRoot%\nr_install.log
)
:: WEB ROLES : Restart the service to pick up the new environment variables
:: if we are in a Worker Role then there is no need to restart W3SVC _or_
:: if we are emulating locally then do not restart W3SVC
IF "%IsWorkerRole%" EQU "false" (
ECHO Restarting IIS and W3SVC to pick up the new environment variables >> "%RoleRoot%\nr.log" 2>&1
IISRESET
NET START W3SVC
)
IF %ERRORLEVEL% EQU 0 (
REM The New Relic .net Agent installed ok and does not need to be installed again.
ECHO New Relic .net Agent was installed successfully. >> "%RoleRoot%\nr.log" 2>&1
) ELSE (
REM An error occurred. Log the error to a separate log and exit with the error code.
ECHO An error occurred installing the New Relic .net Agent 1. Errorlevel = %ERRORLEVEL%. >> "%RoleRoot%\nr_error.log" 2>&1
SET NR_ERROR_LEVEL=%ERRORLEVEL%
)
GOTO:EOF
:INSTALL_NEWRELIC_SERVER_MONITOR
ECHO %ldt% : Begin installing the New Relic Server Monitor >> "%RoleRoot%\nr_server.log" 2>&1
:: Current version of the installer
SET NR_INSTALLER_NAME=NewRelicServerMonitor_x64_3.3.3.0.msi
ECHO Installing the New Relic Server Monitor. >> "%RoleRoot%\nr_server.log" 2>&1
msiexec.exe /i %NR_INSTALLER_NAME% /norestart /quiet NR_LICENSE_KEY=%LICENSE_KEY% /lv* %RoleRoot%\nr_server_install.log
IF %ERRORLEVEL% EQU 0 (
REM The New Relic Server Monitor installed ok and does not need to be installed again.
ECHO New Relic Server Monitor was installed successfully. >> "%RoleRoot%\nr_server.log" 2>&1
NET STOP "New Relic Server Monitor Service"
NET START "New Relic Server Monitor Service"
) ELSE (
REM An error occurred. Log the error to a separate log and exit with the error code.
ECHO An error occurred installing the New Relic Server Monitor 1. Errorlevel = %ERRORLEVEL%. >> "%RoleRoot%\nr_server_error.log" 2>&1
SET NR_ERROR_LEVEL=%ERRORLEVEL%
)
GOTO:EOF
|
newrelic/newrelic-azure-environment-configuration
|
EnvVars/newrelic.cmd
|
bat
|
mit
| 3,228 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCPRPT.S05_RopCopyPropertiesWantAsynchronously_TestSuite.MSOXCPRPT_S05_RopCopyPropertiesWantAsynchronously_TestSuite36 /testcontainer:..\..\MS-OXCPRPT\TestSuite\bin\Debug\MS-OXCPRPT_TestSuite.dll /runconfig:..\..\MS-OXCPRPT\MS-OXCPRPT.testsettings /unique
pause
|
XinwLi/Interop-TestSuites-1
|
ExchangeMAPI/Source/Scripts/MS-OXCPRPT/RunMSOXCPRPT_S05_RopCopyPropertiesWantAsynchronously_TestSuite36.cmd
|
bat
|
mit
| 356 |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
if "%OS%" == "Windows_NT" setlocal
rem ---------------------------------------------------------------------------
rem Start/Stop Script for the CATALINA Server
rem
rem Environment Variable Prerequisites
rem
rem CATALINA_HOME May point at your Catalina "build" directory.
rem
rem CATALINA_BASE (Optional) Base directory for resolving dynamic portions
rem of a Catalina installation. If not present, resolves to
rem the same directory that CATALINA_HOME points to.
rem
rem CATALINA_OPTS (Optional) Java runtime options used when the "start",
rem or "run" command is executed.
rem
rem CATALINA_TMPDIR (Optional) Directory path location of temporary directory
rem the JVM should use (java.io.tmpdir). Defaults to
rem %CATALINA_BASE%\temp.
rem
rem JAVA_HOME Must point at your Java Development Kit installation.
rem Required to run the with the "debug" argument.
rem
rem JRE_HOME Must point at your Java Runtime installation.
rem Defaults to JAVA_HOME if empty.
rem
rem JAVA_OPTS (Optional) Java runtime options used when the "start",
rem "stop", or "run" command is executed.
rem
rem JAVA_ENDORSED_DIRS (Optional) Lists of of semi-colon separated directories
rem containing some jars in order to allow replacement of APIs
rem created outside of the JCP (i.e. DOM and SAX from W3C).
rem It can also be used to update the XML parser implementation.
rem Defaults to $CATALINA_HOME/endorsed.
rem
rem JPDA_TRANSPORT (Optional) JPDA transport used when the "jpda start"
rem command is executed. The default is "dt_socket".
rem
rem JPDA_ADDRESS (Optional) Java runtime options used when the "jpda start"
rem command is executed. The default is 8000.
rem
rem JPDA_SUSPEND (Optional) Java runtime options used when the "jpda start"
rem command is executed. Specifies whether JVM should suspend
rem execution immediately after startup. Default is "n".
rem
rem JPDA_OPTS (Optional) Java runtime options used when the "jpda start"
rem command is executed. If used, JPDA_TRANSPORT, JPDA_ADDRESS,
rem and JPDA_SUSPEND are ignored. Thus, all required jpda
rem options MUST be specified. The default is:
rem
rem -agentlib:jdwp=transport=%JPDA_TRANSPORT%,
rem address=%JPDA_ADDRESS%,server=y,suspend=%JPDA_SUSPEND%
rem
rem JSSE_OPTS (Optional) Java runtime options used to control the TLS
rem implementation when JSSE is used. Default is:
rem "-Djdk.tls.ephemeralDHKeySize=2048"
rem
rem LOGGING_CONFIG (Optional) Override Tomcat's logging config file
rem Example (all one line)
rem set LOGGING_CONFIG="-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties"
rem
rem LOGGING_MANAGER (Optional) Override Tomcat's logging manager
rem Example (all one line)
rem set LOGGING_MANAGER="-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager"
rem
rem TITLE (Optional) Specify the title of Tomcat window. The default
rem TITLE is Tomcat if it's not specified.
rem Example (all one line)
rem set TITLE=Tomcat.Cluster#1.Server#1 [%DATE% %TIME%]
rem ---------------------------------------------------------------------------
rem Guess CATALINA_HOME if not defined
set "CURRENT_DIR=%cd%"
if not "%CATALINA_HOME%" == "" goto gotHome
set "CATALINA_HOME=%CURRENT_DIR%"
if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome
cd ..
set "CATALINA_HOME=%cd%"
cd "%CURRENT_DIR%"
:gotHome
if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome
echo The CATALINA_HOME environment variable is not defined correctly
echo This environment variable is needed to run this program
goto end
:okHome
rem Copy CATALINA_BASE from CATALINA_HOME if not defined
if not "%CATALINA_BASE%" == "" goto gotBase
set "CATALINA_BASE=%CATALINA_HOME%"
:gotBase
rem Ensure that any user defined CLASSPATH variables are not used on startup,
rem but allow them to be specified in setenv.bat, in rare case when it is needed.
set CLASSPATH=
rem Get standard environment variables
if not exist "%CATALINA_BASE%\bin\setenv.bat" goto checkSetenvHome
call "%CATALINA_BASE%\bin\setenv.bat"
goto setenvDone
:checkSetenvHome
if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat"
:setenvDone
rem Get standard Java environment variables
if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath
echo Cannot find "%CATALINA_HOME%\bin\setclasspath.bat"
echo This file is needed to run this program
goto end
:okSetclasspath
set "BASEDIR=%CATALINA_HOME%"
call "%CATALINA_HOME%\bin\setclasspath.bat" %1
if errorlevel 1 goto end
if not "%CATALINA_TMPDIR%" == "" goto gotTmpdir
set "CATALINA_TMPDIR=%CATALINA_BASE%\temp"
:gotTmpdir
rem Add tomcat-juli.jar and bootstrap.jar to classpath
rem tomcat-juli.jar can be over-ridden per instance
rem Note that there are no quotes as we do not want to introduce random
rem quotes into the CLASSPATH
if "%CLASSPATH%" == "" goto emptyClasspath
set "CLASSPATH=%CLASSPATH%;"
:emptyClasspath
if "%CATALINA_BASE%" == "%CATALINA_HOME%" goto juliClasspathHome
if not exist "%CATALINA_BASE%\bin\tomcat-juli.jar" goto juliClasspathHome
set "CLASSPATH=%CLASSPATH%%CATALINA_BASE%\bin\tomcat-juli.jar;%CATALINA_HOME%\bin\bootstrap.jar"
goto juliClasspathDone
:juliClasspathHome
set "CLASSPATH=%CLASSPATH%%CATALINA_HOME%\bin\bootstrap.jar"
:juliClasspathDone
if not "%JSSE_OPTS%" == "" goto gotJsseOpts
set JSSE_OPTS="-Djdk.tls.ephemeralDHKeySize=2048"
:gotJsseOpts
set "JAVA_OPTS=%JAVA_OPTS% %JSSE_OPTS%"
if not "%LOGGING_CONFIG%" == "" goto noJuliConfig
set LOGGING_CONFIG=-Dnop
if not exist "%CATALINA_BASE%\conf\logging.properties" goto noJuliConfig
set LOGGING_CONFIG=-Djava.util.logging.config.file="%CATALINA_BASE%\conf\logging.properties"
:noJuliConfig
set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG%
if not "%LOGGING_MANAGER%" == "" goto noJuliManager
set LOGGING_MANAGER=-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
:noJuliManager
set JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER%
rem ----- Execute The Requested Command ---------------------------------------
echo Using CATALINA_BASE: "%CATALINA_BASE%"
echo Using CATALINA_HOME: "%CATALINA_HOME%"
echo Using CATALINA_TMPDIR: "%CATALINA_TMPDIR%"
if ""%1"" == ""debug"" goto use_jdk
echo Using JRE_HOME: "%JRE_HOME%"
goto java_dir_displayed
:use_jdk
echo Using JAVA_HOME: "%JAVA_HOME%"
:java_dir_displayed
echo Using CLASSPATH: "%CLASSPATH%"
set _EXECJAVA=%_RUNJAVA%
set MAINCLASS=org.apache.catalina.startup.Bootstrap
set ACTION=start
set SECURITY_POLICY_FILE=
set DEBUG_OPTS=
set JPDA=
if not ""%1"" == ""jpda"" goto noJpda
set JPDA=jpda
if not "%JPDA_TRANSPORT%" == "" goto gotJpdaTransport
set JPDA_TRANSPORT=dt_socket
:gotJpdaTransport
if not "%JPDA_ADDRESS%" == "" goto gotJpdaAddress
set JPDA_ADDRESS=8000
:gotJpdaAddress
if not "%JPDA_SUSPEND%" == "" goto gotJpdaSuspend
set JPDA_SUSPEND=n
:gotJpdaSuspend
if not "%JPDA_OPTS%" == "" goto gotJpdaOpts
set JPDA_OPTS=-agentlib:jdwp=transport=%JPDA_TRANSPORT%,address=%JPDA_ADDRESS%,server=y,suspend=%JPDA_SUSPEND%
:gotJpdaOpts
shift
:noJpda
if ""%1"" == ""debug"" goto doDebug
if ""%1"" == ""run"" goto doRun
if ""%1"" == ""start"" goto doStart
if ""%1"" == ""stop"" goto doStop
if ""%1"" == ""version"" goto doVersion
echo Usage: catalina ( commands ... )
echo commands:
echo debug Start Catalina in a debugger
echo debug -security Debug Catalina with a security manager
echo jpda start Start Catalina under JPDA debugger
echo run Start Catalina in the current window
echo run -security Start in the current window with security manager
echo start Start Catalina in a separate window
echo start -security Start in a separate window with security manager
echo stop Stop Catalina
echo version What version of tomcat are you running?
goto end
:doDebug
shift
set _EXECJAVA=%_RUNJDB%
set DEBUG_OPTS=-sourcepath "%CATALINA_HOME%\..\..\java"
if not ""%1"" == ""-security"" goto execCmd
shift
echo Using Security Manager
set "SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy"
goto execCmd
:doRun
shift
if not ""%1"" == ""-security"" goto execCmd
shift
echo Using Security Manager
set "SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy"
goto execCmd
:doStart
shift
if not "%OS%" == "Windows_NT" goto noTitle
if "%TITLE%" == "" set TITLE=Tomcat
set _EXECJAVA=start "%TITLE%" %_RUNJAVA%
goto gotTitle
:noTitle
set _EXECJAVA=start %_RUNJAVA%
:gotTitle
if not ""%1"" == ""-security"" goto execCmd
shift
echo Using Security Manager
set "SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy"
goto execCmd
:doStop
shift
set ACTION=stop
set CATALINA_OPTS=
goto execCmd
:doVersion
%_EXECJAVA% -classpath "%CATALINA_HOME%\lib\catalina.jar" org.apache.catalina.util.ServerInfo
goto end
:execCmd
rem Get remaining unshifted command line arguments and save them in the
set CMD_LINE_ARGS=
:setArgs
if ""%1""=="""" goto doneSetArgs
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto setArgs
:doneSetArgs
rem Execute Java with the applicable properties
if not "%JPDA%" == "" goto doJpda
if not "%SECURITY_POLICY_FILE%" == "" goto doSecurity
if "%CATALINA_OUT%"=="" (
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION%
goto end
)
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% >> "%CATALINA_OUT%" 2>&1
goto end
:doSecurity
if "%CATALINA_OUT%"=="" (
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION%
goto end
)
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% >> "%CATALINA_OUT%" 2>&1
goto end
:doJpda
if not "%SECURITY_POLICY_FILE%" == "" goto doSecurityJpda
if "%CATALINA_OUT%"=="" (
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %JPDA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION%
goto end
)
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %JPDA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% >> "%CATALINA_OUT%" 2>&1
goto end
:doSecurityJpda
if "%CATALINA_OUT%"=="" (
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %JPDA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION%
goto end
)
%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %JPDA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% >> "%CATALINA_OUT%" 2>&1
goto end
:end
|
jeffre/docker-rdr
|
rdr/tomcat/bin/catalina.bat
|
bat
|
gpl-2.0
| 13,545 |
doxygen config
|
RikoOphorst/blowbox-2017
|
doxygen/generate.bat
|
bat
|
gpl-3.0
| 14 |
REM FOR STAGING SERVER AT klahnakoski-es.corp.tor1.mozilla.com
SET PYTHONPATH=.
SET TARGET_ENVIRONMENT=development
CALL .env\bin\activate
CALL .env\bin\pypy.exe server.py
|
jmaher/alert_manager
|
resources/scripts/server.bat
|
bat
|
mpl-2.0
| 172 |
mvn clean install -s settings.xml -DskipTests -Ddownload
|
phamtuanchip/mailfilter
|
mvn-skip-test.bat
|
bat
|
lgpl-3.0
| 57 |
@echo off
SETLOCAL
TITLE Elasticsearch Service 2.0.0
if NOT DEFINED JAVA_HOME goto err
if not "%CONF_FILE%" == "" goto conffileset
set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI
rem Detect JVM version to figure out appropriate executable to use
if not exist "%JAVA_HOME%\bin\java.exe" (
echo JAVA_HOME points to an invalid Java installation (no java.exe found in "%JAVA_HOME%"^). Exiting...
goto:eof
)
"%JAVA_HOME%\bin\java" -Xmx50M -version > nul 2>&1
if errorlevel 1 (
echo Warning: Could not start JVM to detect version, defaulting to x86:
goto x86
)
"%JAVA_HOME%\bin\java" -Xmx50M -version 2>&1 | "%windir%\System32\find" "64-Bit" >nul:
if errorlevel 1 goto x86
set EXECUTABLE=%ES_HOME%\bin\elasticsearch-service-x64.exe
set SERVICE_ID=elasticsearch-service-x64
set ARCH=64-bit
goto checkExe
:x86
set EXECUTABLE=%ES_HOME%\bin\elasticsearch-service-x86.exe
set SERVICE_ID=elasticsearch-service-x86
set ARCH=32-bit
:checkExe
if EXIST "%EXECUTABLE%" goto okExe
echo elasticsearch-service-(x86|x64).exe was not found...
:okExe
set ES_VERSION=2.0.0
if "%LOG_DIR%" == "" set LOG_DIR=%ES_HOME%\logs
if "x%1x" == "xx" goto displayUsage
set SERVICE_CMD=%1
shift
if "x%1x" == "xx" goto checkServiceCmd
set SERVICE_ID=%1
:checkServiceCmd
if "%LOG_OPTS%" == "" set LOG_OPTS=--LogPath "%LOG_DIR%" --LogPrefix "%SERVICE_ID%" --StdError auto --StdOutput auto
if /i %SERVICE_CMD% == install goto doInstall
if /i %SERVICE_CMD% == remove goto doRemove
if /i %SERVICE_CMD% == start goto doStart
if /i %SERVICE_CMD% == stop goto doStop
if /i %SERVICE_CMD% == manager goto doManagment
echo Unknown option "%SERVICE_CMD%"
:displayUsage
echo.
echo Usage: service.bat install^|remove^|start^|stop^|manager [SERVICE_ID]
goto:eof
:doStart
"%EXECUTABLE%" //ES//%SERVICE_ID% %LOG_OPTS%
if not errorlevel 1 goto started
echo Failed starting '%SERVICE_ID%' service
goto:eof
:started
echo The service '%SERVICE_ID%' has been started
goto:eof
:doStop
"%EXECUTABLE%" //SS//%SERVICE_ID% %LOG_OPTS%
if not errorlevel 1 goto stopped
echo Failed stopping '%SERVICE_ID%' service
goto:eof
:stopped
echo The service '%SERVICE_ID%' has been stopped
goto:eof
:doManagment
set EXECUTABLE_MGR=%ES_HOME%\bin\elasticsearch-service-mgr.exe
"%EXECUTABLE_MGR%" //ES//%SERVICE_ID%
if not errorlevel 1 goto managed
echo Failed starting service manager for '%SERVICE_ID%'
goto:eof
:managed
echo Successfully started service manager for '%SERVICE_ID%'.
goto:eof
:doRemove
rem Remove the service
"%EXECUTABLE%" //DS//%SERVICE_ID% %LOG_OPTS%
if not errorlevel 1 goto removed
echo Failed removing '%SERVICE_ID%' service
goto:eof
:removed
echo The service '%SERVICE_ID%' has been removed
goto:eof
:doInstall
echo Installing service : "%SERVICE_ID%"
echo Using JAVA_HOME (%ARCH%): "%JAVA_HOME%"
rem Check JVM server dll first
set JVM_DLL=%JAVA_HOME%\jre\bin\server\jvm.dll
if exist "%JVM_DLL%" goto foundJVM
rem Check 'server' JRE (JRE installed on Windows Server)
set JVM_DLL=%JAVA_HOME%\bin\server\jvm.dll
if exist "%JVM_DLL%" goto foundJVM
rem Fallback to 'client' JRE
set JVM_DLL=%JAVA_HOME%\bin\client\jvm.dll
if exist "%JVM_DLL%" (
echo Warning: JAVA_HOME points to a JRE and not JDK installation; a client (not a server^) JVM will be used...
) else (
echo JAVA_HOME points to an invalid Java installation (no jvm.dll found in "%JAVA_HOME%"^). Existing...
goto:eof
)
:foundJVM
if "%ES_MIN_MEM%" == "" set ES_MIN_MEM=256m
if "%ES_MAX_MEM%" == "" set ES_MAX_MEM=1g
if NOT "%ES_HEAP_SIZE%" == "" set ES_MIN_MEM=%ES_HEAP_SIZE%
if NOT "%ES_HEAP_SIZE%" == "" set ES_MAX_MEM=%ES_HEAP_SIZE%
call:convertxm %ES_MIN_MEM% JVM_XMS
call:convertxm %ES_MAX_MEM% JVM_XMX
REM java_opts might be empty - init to avoid tripping commons daemon (if the command starts with ;)
if "%JAVA_OPTS%" == "" set JAVA_OPTS=-XX:+UseParNewGC
CALL "%ES_HOME%\bin\elasticsearch.in.bat"
rem thread stack size
set JVM_SS=256
if "%DATA_DIR%" == "" set DATA_DIR=%ES_HOME%\data
if "%CONF_DIR%" == "" set CONF_DIR=%ES_HOME%\config
set ES_PARAMS=-Delasticsearch;-Des.path.home="%ES_HOME%";-Des.default.path.home="%ES_HOME%";-Des.default.path.logs="%LOG_DIR%";-Des.default.path.data="%DATA_DIR%";-Des.default.path.conf="%CONF_DIR%"
set JVM_OPTS=%JAVA_OPTS: =;%
if not "%ES_JAVA_OPTS%" == "" set JVM_ES_JAVA_OPTS=%ES_JAVA_OPTS: =#%
if not "%ES_JAVA_OPTS%" == "" set JVM_OPTS=%JVM_OPTS%;%JVM_ES_JAVA_OPTS%
if "%ES_START_TYPE%" == "" set ES_START_TYPE=manual
if "%ES_STOP_TIMEOUT%" == "" set ES_STOP_TIMEOUT=0
"%EXECUTABLE%" //IS//%SERVICE_ID% --Startup %ES_START_TYPE% --StopTimeout %ES_STOP_TIMEOUT% --StartClass org.elasticsearch.bootstrap.Elasticsearch --StopClass org.elasticsearch.bootstrap.Elasticsearch --StartMethod main --StopMethod close --Classpath "%ES_CLASSPATH%" --JvmSs %JVM_SS% --JvmMs %JVM_XMS% --JvmMx %JVM_XMX% --JvmOptions %JVM_OPTS% ++JvmOptions %ES_PARAMS% %LOG_OPTS% --PidFile "%SERVICE_ID%.pid" --DisplayName "Elasticsearch %ES_VERSION% (%SERVICE_ID%)" --Description "Elasticsearch %ES_VERSION% Windows Service - http://elasticsearch.org" --Jvm "%JVM_DLL%" --StartMode jvm --StopMode jvm --StartPath "%ES_HOME%" ++StartParams start
if not errorlevel 1 goto installed
echo Failed installing '%SERVICE_ID%' service
goto:eof
:installed
echo The service '%SERVICE_ID%' has been installed.
goto:eof
:err
echo JAVA_HOME environment variable must be set!
pause
goto:eof
rem ---
rem Function for converting Xm[s|x] values into MB which Commons Daemon accepts
rem ---
:convertxm
set value=%~1
rem extract last char (unit)
set unit=%value:~-1%
rem assume the unit is specified
set conv=%value:~0,-1%
if "%unit%" == "k" goto kilo
if "%unit%" == "K" goto kilo
if "%unit%" == "m" goto mega
if "%unit%" == "M" goto mega
if "%unit%" == "g" goto giga
if "%unit%" == "G" goto giga
rem no unit found, must be bytes; consider the whole value
set conv=%value%
rem convert to KB
set /a conv=%conv% / 1024
:kilo
rem convert to MB
set /a conv=%conv% / 1024
goto mega
:giga
rem convert to MB
set /a conv=%conv% * 1024
:mega
set "%~2=%conv%"
goto:eof
:conffileset
echo CONF_FILE setting is no longer supported. elasticsearch.yml must be placed in the config directory and cannot be renamed.
goto:eof
ENDLOCAL
|
svanschalkwyk/datafari
|
debian7/elk/elasticsearch/bin/service.bat
|
bat
|
apache-2.0
| 6,414 |
if "%_echo%"=="" echo off
setlocal
REM Configure the sample, i.e. where to find the F# compiler and C# compiler.
if EXIST build.ok DEL /f /q build.ok
call %~d0%~p0..\..\..\config.bat
@if ERRORLEVEL 1 goto Error
if NOT "%FSC:NOTAVAIL=X%" == "%FSC%" (
ECHO Skipping test for FSI.EXE
goto Skip
)
echo == Plain
"%FSI%" %fsc_flags_errors_ok% --nologo <test.fsx >z.raw.output.test.default.txt 2>&1
echo == PrintSize 1000
"%FSI%" %fsc_flags_errors_ok% --nologo --use:preludePrintSize1000.fsx <test.fsx >z.raw.output.test.1000.txt 2>&1
echo == PrintSize 200
"%FSI%" %fsc_flags_errors_ok% --nologo --use:preludePrintSize200.fsx <test.fsx >z.raw.output.test.200.txt 2>&1
echo == ShowDeclarationValues off
"%FSI%" %fsc_flags_errors_ok% --nologo --use:preludeShowDeclarationValuesFalse.fsx <test.fsx >z.raw.output.test.off.txt 2>&1
echo == Quiet
"%FSI%" %fsc_flags_errors_ok% --nologo --quiet <test.fsx >z.raw.output.test.quiet.txt 2>&1
REM REVIEW: want to normalise CWD paths, not suppress them.
findstr /v "%CD%" z.raw.output.test.default.txt | findstr /v -C:"--help' for options" > z.output.test.default.txt
findstr /v "%CD%" z.raw.output.test.1000.txt | findstr /v -C:"--help' for options" > z.output.test.1000.txt
findstr /v "%CD%" z.raw.output.test.200.txt | findstr /v -C:"--help' for options" > z.output.test.200.txt
findstr /v "%CD%" z.raw.output.test.off.txt | findstr /v -C:"--help' for options" > z.output.test.off.txt
findstr /v "%CD%" z.raw.output.test.quiet.txt | findstr /v -C:"--help' for options" > z.output.test.quiet.txt
if NOT EXIST z.output.test.default.bsl COPY z.output.test.default.txt z.output.test.default.bsl
if NOT EXIST z.output.test.off.bsl COPY z.output.test.off.txt z.output.test.off.bsl
if NOT EXIST z.output.test.1000.bsl COPY z.output.test.1000.txt z.output.test.1000.bsl
if NOT EXIST z.output.test.200.bsl COPY z.output.test.200.txt z.output.test.200.bsl
if NOT EXIST z.output.test.quiet.bsl COPY z.output.test.quiet.txt z.output.test.quiet.bsl
%FSDIFF% z.output.test.default.txt z.output.test.default.bsl > z.output.test.default.diff
%FSDIFF% z.output.test.off.txt z.output.test.off.bsl > z.output.test.off.diff
%FSDIFF% z.output.test.1000.txt z.output.test.1000.bsl > z.output.test.1000.diff
%FSDIFF% z.output.test.200.txt z.output.test.200.bsl > z.output.test.200.diff
%FSDIFF% z.output.test.quiet.txt z.output.test.quiet.bsl > z.output.test.quiet.diff
echo ======== Differences From ========
TYPE z.output.test.default.diff
TYPE z.output.test.off.diff
TYPE z.output.test.1000.diff
TYPE z.output.test.200.diff
TYPE z.output.test.quiet.diff
echo ========= Differences To =========
TYPE z.output.test.default.diff > zz.alldiffs
TYPE z.output.test.off.diff >> zz.alldiffs
TYPE z.output.test.1000.diff >> zz.alldiffs
TYPE z.output.test.200.diff >> zz.alldiffs
TYPE z.output.test.quiet.diff >> zz.alldiffs
for /f %%c IN (zz.alldiffs) do (
echo NOTE -------------------------------------
echo NOTE ---------- THERE ARE DIFFs ----------
echo NOTE -------------------------------------
echo .
echo To update baselines: "sd edit *bsl", "del *bsl", "build.bat" regenerates bsl, "sd diff ...", check what changed.
goto Error
)
:Ok
echo Built fsharp %~f0 ok.
echo. > build.ok
endlocal
exit /b 0
:Skip
echo Skipped %~f0
endlocal
exit /b 0
:Error
rem Hardwire ERRORLEVEL to be 1, since routes in here from diff check do not have ERRORLEVEL set
rem call %SCRIPT_ROOT%\ChompErr.bat %ERRORLEVEL% %~f0
call %SCRIPT_ROOT%\ChompErr.bat 1 %~f0
endlocal
exit /b %ERRORLEVEL%
|
eloraiby/fsharp
|
tests/fsharp/core/printing/build.bat
|
bat
|
apache-2.0
| 3,695 |
@echo off
title EasyJF ´úÂë×Ô¶¯Éú³ÉÒýÇæ
color a
rem by easyjf williamraym 22:31 2007-7-30
if "%OS%"=="Windows_NT" SETLOCAL
:init
if "%JAVA_HOME%"=="" goto nojava
goto main
goto eof
:main
"%JAVA_HOME%\bin\java.exe" -cp ../src/main/webapp/WEB-INF/lib/jaxen-1.1-beta-4.jar;../src/main/webapp/WEB-INF/lib/easydbo-0.9.1.jar;../src/main/webapp/WEB-INF/lib/persistence-api-1.0.jar;../src/main/webapp/WEB-INF/lib/dom4j-1.6.1.jar;../src/main/webapp/WEB-INF/lib/log4j-1.2.14.jar;../src/main/webapp/WEB-INF/lib/commons-collections-1.2.jar;../src/main/webapp/WEB-INF/lib/velocity-1.4.jar;../lib/derbynet-10.2.2.0.jar;../lib/derby-10.2.2.0.jar;../lib/derbyclient-10.2.2.0.jar;../lib/jetty-util-6.1.4.jar;../lib/jetty-6.1.4.jar;../lib/org.mortbay.jmx-5.1.9.jar;.../lib/servlet-api-2.5-6.1.4.jar;../src/main/webapp/WEB-INF/classes com.easyjf.generator.Generator %1 %2 %3
goto eof
:nojava
echo ÔÚÄúµÄ²Ù×÷ϵͳÉÏûÓа²×°JAVAÔËÐл·¾³£¬ÇëÏÈÉèÖÃJAVA_HOME»·¾³±äÁ¿»ò°²×°JDK
goto eof
:eof
@rem pause
if "%OS%"=="Windows_NT" ENDLOCAL
|
youjava/easyjweb
|
src/generator/src/main/resources/bin/generator.bat
|
bat
|
apache-2.0
| 1,035 |
@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\neurosynth.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\neurosynth.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
|
neurosynth/neurosynth
|
docs/make.bat
|
bat
|
mit
| 6,709 |
-- Creates an invalid state
reset
!create car:Car
!create w1:Wheel
!create w2:Wheel
!create w3:Wheel
!create w4:Wheel
!create e1:Engine
!insert (car, e1) into CarPoweredBy
!insert (car, w1) into DrivesOn
!insert (car, w2) into DrivesOn
!insert (car, w3) into DrivesOn
!insert (car, w4) into DrivesOn
!insert (e1, w1) into PowersWheel
!insert (e1, w2) into PowersWheel
!create boat:Boat
!create e2:Engine
!create p1:Propeller
!create p2:Propeller
!insert (boat, e2) into BoatPoweredBy
!insert (e2, w3) into PowersWheel
!insert (e2, w4) into PowersWheel
!insert (boat, p1) into DrivesWith
!insert (e1, p1) into PowersPropeller
!insert (boat, p2) into DrivesWith
!insert (e2, p2) into PowersPropeller
|
vnu-dse/rtl
|
examples/Others/Subsets/composition_1.cmd
|
bat
|
gpl-2.0
| 712 |
:: Example of accessing NetKvm internals via WMI commands:
@echo off
if "%1"=="" goto help
if /i "%1"=="debug" goto debug
if /i "%1"=="stat" goto stat
if /i "%1"=="reset" goto reset
if /i "%1"=="rss" goto rss_set
if /i "%1"=="qfo" goto failover_query
if /i "%1"=="efo" goto failover_end
goto help
:debug
call :dowmic netkvm_logging set level=%2
goto :eof
:stat
call :dowmic netkvm_statistics get
goto :eof
:reset
call :dowmic netkvm_statistics set rxChecksumOK=0
goto :eof
:rss
call :dowmic NetKvm_RssDiagnostics get
goto :eof
:rss_set
if "%2"=="" goto rss
call :dowmic NetKvm_RssDiagnostics set DeviceSupport=%2
goto :eof
:failover_query
call :dowmic NetKvm_Standby get /value
goto :eof
:failover_end
call :dowmic NetKvm_Standby set value=0
goto :eof
:dowmic
wmic /namespace:\\root\wmi path %*
goto :eof
:help
echo Example of WMI controls to NetKvm
echo %~nx0 command parameter
echo debug level Controls debug level (use level 0..5)
echo stat Retrieves internal statistics
echo reset Resets internal statistics
echo rss Query RSS statistics
echo rss 0/1 Disable/enable RSS device support
echo qfo Query failover setting
echo efo End failover command (do not use)
goto :eof
|
virtio-win/kvm-guest-drivers-windows
|
NetKVM/DebugTools/WMI/netkvm-wmi.cmd
|
bat
|
bsd-3-clause
| 1,302 |
.\exe\win64\CloudySkySample.exe
|
fluffyfreak/CloudsGPUPro6
|
run64.bat
|
bat
|
bsd-3-clause
| 31 |
@rem Copyright 2016, Google Inc.
@rem All rights reserved.
@rem
@rem Redistribution and use in source and binary forms, with or without
@rem modification, are permitted provided that the following conditions are
@rem met:
@rem
@rem * Redistributions of source code must retain the above copyright
@rem notice, this list of conditions and the following disclaimer.
@rem * Redistributions in binary form must reproduce the above
@rem copyright notice, this list of conditions and the following disclaimer
@rem in the documentation and/or other materials provided with the
@rem distribution.
@rem * Neither the name of Google Inc. nor the names of its
@rem contributors may be used to endorse or promote products derived from
@rem this software without specific prior written permission.
@rem
@rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@rem "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
@rem LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@rem A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
@rem OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
@rem SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
@rem LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
@rem DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
@rem THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
@rem (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
@rem OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@rem Performs nuget restore step for C#.
setlocal
set ARCHITECTURE=%1
@rem enter repo root
cd /d %~dp0\..\..\..
mkdir cmake
cd cmake
mkdir build
cd build
mkdir %ARCHITECTURE%
cd %ARCHITECTURE%
@rem TODO(jtattermusch): Stop hardcoding path to yasm once Jenkins workers can locate yasm correctly
cmake -G "Visual Studio 14 2015" -A %ARCHITECTURE% -DgRPC_BUILD_TESTS=OFF -DCMAKE_ASM_NASM_COMPILER="C:/Program Files (x86)/yasm/yasm.exe" ../../.. || goto :error
cd ..\..\..
@rem Location of nuget.exe
set NUGET=C:\nuget\nuget.exe
if exist %NUGET% (
@rem TODO(jtattermusch): Get rid of this hack. See #8034
@rem Restore Grpc packages by packages since Nuget client 3.4.4 doesnt support restore
@rem by solution
@rem Moving into each directory to let the restores work based on per-project packages.config files
cd src/csharp
cd Grpc.Auth || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.Core || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.Core.Tests || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.Examples.MathClient || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.Examples.MathServer || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.Examples || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.HealthCheck.Tests || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.HealthCheck || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.IntegrationTesting.Client || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.IntegrationTesting.QpsWorker || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.IntegrationTesting.StressClient || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd ..
cd Grpc.IntegrationTesting || goto :error
%NUGET% restore -PackagesDirectory ../packages || goto :error
cd /d %~dp0\..\.. || goto :error
)
endlocal
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
|
yugui/grpc
|
tools/run_tests/helper_scripts/pre_build_csharp.bat
|
bat
|
bsd-3-clause
| 3,924 |
xcopy /y /q /r %INST_SRCDIR%\sipgen\sip.exe %THIRD_DIR%\bin\
xcopy /y /q /r %INST_SRCDIR%\siplib\sip.pyd %THIRD_DIR%\lib\
xcopy /y /q /r %INST_SRCDIR%\siplib\sip.lib %THIRD_DIR%\lib\
xcopy /y /q /r %INST_SRCDIR%\siplib\sip_d.pyd %THIRD_DIR%\lib\
xcopy /y /q /r %INST_SRCDIR%\siplib\sip_d.lib %THIRD_DIR%\lib\
xcopy /y /q /r %INST_SRCDIR%\siplib\sip.h %THIRD_DIR%\sip\
xcopy /y /q /r %INST_SRCDIR%\sipconfig.py %THIRD_DIR%\sip\
|
malaterre/serna-free-backup
|
3rd/sip/install.bat
|
bat
|
gpl-3.0
| 429 |
@echo off
setlocal
set _EXITCODE=0
set _DEV_BUILD=0
if not exist %1 exit /b 1
if x%2 == xVAULT_DEV set _DEV_BUILD=1
cd %1
md bin 2>nul
:: Get the git commit
set _GIT_COMMIT_FILE=%TEMP%\vault-git_commit.txt
set _GIT_DIRTY_FILE=%TEMP%\vault-git_dirty.txt
set _NUL_CMP_FILE=%TEMP%\vault-nul_cmp.txt
type nul >%_NUL_CMP_FILE%
git rev-parse HEAD >"%_GIT_COMMIT_FILE%"
set /p _GIT_COMMIT=<"%_GIT_COMMIT_FILE%"
del /f "%_GIT_COMMIT_FILE%" 2>nul
set _GIT_DIRTY=
git status --porcelain >"%_GIT_DIRTY_FILE%"
fc "%_GIT_DIRTY_FILE%" "%_NUL_CMP_FILE%" >nul
if errorlevel 1 set _GIT_DIRTY=+CHANGES
del /f "%_GIT_DIRTY_FILE%" 2>nul
del /f "%_NUL_CMP_FILE%" 2>nul
REM Determine the arch/os combos we're building for
set _XC_ARCH=386 amd64 arm
set _XC_OS=linux darwin windows freebsd openbsd
REM Install dependencies
echo ==^> Installing dependencies...
go get ./...
REM Clean up the old binaries and packages.
echo ==^> Cleaning old builds...
rd /s /q bin pkg 2>nul
md bin 2>nul
REM If its dev mode, only build for ourself
if not %_DEV_BUILD% equ 1 goto build
:devbuild
echo ==^> Preparing for development build...
set _GO_ENV_TMP_FILE=%TEMP%\vault-go-env.txt
go env GOARCH >"%_GO_ENV_TMP_FILE%"
set /p _XC_ARCH=<"%_GO_ENV_TMP_FILE%"
del /f "%_GO_ENV_TMP_FILE%" 2>nul
go env GOOS >"%_GO_ENV_TMP_FILE%"
set /p _XC_OS=<"%_GO_ENV_TMP_FILE%"
del /f "%_GO_ENV_TMP_FILE%" 2>nul
:build
REM Build!
echo ==^> Building...
gox^
-os="%_XC_OS%"^
-arch="%_XC_ARCH%"^
-ldflags "-X github.com/hashicorp/vault/sdk/version.GitCommit=%_GIT_COMMIT%%_GIT_DIRTY%"^
-output "pkg/{{.OS}}_{{.Arch}}/vault"^
.
if %ERRORLEVEL% equ 1 set %_EXITCODE%=1
if %_EXITCODE% equ 1 exit /b %_EXITCODE%
set _GO_ENV_TMP_FILE=%TEMP%\vault-go-env.txt
go env GOPATH >"%_GO_ENV_TMP_FILE%"
set /p _GOPATH=<"%_GO_ENV_TMP_FILE%"
del /f "%_GO_ENV_TMP_FILE%" 2>nul
go env GOARCH >"%_GO_ENV_TMP_FILE%"
set /p _GOARCH=<"%_GO_ENV_TMP_FILE%"
del /f "%_GO_ENV_TMP_FILE%" 2>nul
go env GOOS >"%_GO_ENV_TMP_FILE%"
set /p _GOOS=<"%_GO_ENV_TMP_FILE%"
del /f "%_GO_ENV_TMP_FILE%" 2>nul
REM Copy our OS/Arch to the bin/ directory
set _DEV_PLATFORM=pkg\%_GOOS%_%_GOARCH%
for /r %%f in (%_DEV_PLATFORM%) do (
copy /b /y %%f bin\ >nul
copy /b /y %%f %_GOPATH%\bin\ >nul
)
REM TODO(ceh): package dist
REM Done!
echo.
echo ==^> Results:
echo.
for %%A in ("bin\*") do echo %%~fA
exit /b %_EXITCODE%
|
joelthompson/vault
|
scripts/windows/build.bat
|
bat
|
mpl-2.0
| 2,348 |
@CALL _Step3_Show_wave.bat --DisablePathExport
|
flake123p/ProjectH
|
Verilog/A15_DFF_EdgeTrigger/c.bat
|
bat
|
gpl-3.0
| 47 |
java -Xms512m -Xmx512m -Xmn128m -XX:+PrintGCDetails -XX:+PrintGCDateStamps -Xloggc:gc.log -Dwrite.statistics=true -Djava.ext.dirs="./lib" "com.alibaba.dubbo.rpc.benchmark.RpcBenchmarkClient" > "benchmark.log"
|
zhushuchen/Ocean
|
项目源码/dubbo/dubbo-test/dubbo-test-benchmark/src/main/resources/run.bat
|
bat
|
agpl-3.0
| 209 |
@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_smaclient.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\python_smaclient.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
|
jloehel/python_smaclient
|
docs/make.bat
|
bat
|
isc
| 6,479 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\My site.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\My site.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
|
lnielsen/mytest
|
docs/make.bat
|
bat
|
mit
| 6,983 |
@echo off
start "" /D "%~1" "%~dp0cmd_admin.lnk" /K
|
andry81/contools
|
Scripts/Tools/ToolAdaptors/bat/cmd_as_admin.bat
|
bat
|
mit
| 56 |
REG DELETE HKEY_CLASSES_ROOT\Folder\shell\E12Pack
pause
|
Echo12/e12pack
|
uninstallShellExt.bat
|
bat
|
mit
| 56 |
@echo off
pushd %~dp0
"%~dp0/tools/nodejs/node.exe" "%~dp0/node_modules/typescript/bin/tsc" "%~dp0/source/WebGLEngine.ts" --out "%~dp0/source/WebGLEngine.js" -d --sourcemap --target ES5
if %ERRORLEVEL% NEQ 0 GOTO EXIT_LABEL
"%~dp0/tools/nodejs/node.exe" "%~dp0/node_modules/typescript/bin/tsc" "%~dp0/example/code/main.ts" --out "%~dp0/example/code/main.js" -sourcemap --target ES5
if %ERRORLEVEL% NEQ 0 GOTO EXIT_LABEL
"%~dp0/tools/nodejs/node.exe" "%~dp0/tools/config/build.js"
if %ERRORLEVEL% NEQ 0 GOTO EXIT_LABEL
:EXIT_LABEL
exit %ERRORLEVEL%
|
nick-nikoliuk/webGLEngine
|
make.cmd
|
bat
|
mit
| 548 |
@echo off
del tr2.html 2>nul
mmp TARGET=TR2 source.html tr2.html
del reference.html 2>nul
mmp TARGET=BOOST source.html reference.html
|
djsedulous/namecoind
|
libs/boost_1_50_0/libs/filesystem/doc/src/build.bat
|
bat
|
mit
| 134 |
@echo off
:: bl.exe is in the Bonaluna project created by Christophe Delord
:: Bonaluna project website: http://cdsoft.fr/bl/bonaluna.html
:: -- License of Bonaluna --
:: Copyright (C) 2010-2016 Christophe Delord, CDSoft.fr
:: Freely available under the terms of the Lua license
:: -------------------------
echo start to create dnsforwarder.exe, it may take a second time...
bl.exe -e "Pegar().read('bl.exe').lua('../task.lua').lua('../dnsforwarder.lua').write('dnsforwarder.exe')"
echo;
echo finished!
pause
|
uleelx/dnsforwarder
|
win/to_exe.bat
|
bat
|
mit
| 510 |
set OSGEO4W_ROOT=C:\OSGeo4W
set GDAL_DATA=%OSGEO4W_ROOT%\share\gdal
set PROJ_LIB=%OSGEO4W_ROOT%\share\proj
set PATH=%PATH%;%OSGEO4W_ROOT%\bin
reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path /t REG_EXPAND_SZ /f /d "%PATH%"
reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v GDAL_DATA /t REG_EXPAND_SZ /f /d "%GDAL_DATA%"
reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v PROJ_LIB /t REG_EXPAND_SZ /f /d "%PROJ_LIB%"
|
Ecotrust/TEKDB
|
Windows/set_osgeo_environment.bat
|
bat
|
mit
| 508 |
astrocrash04.py
pause
|
bohdan-shramko/learning-python
|
source/chapter12/astrocrash04.bat
|
bat
|
mit
| 22 |
@echo off
cd bin
Main.exe
pause
|
back2dos/utf8
|
run_cpp.bat
|
bat
|
mit
| 32 |
cmd_drivers/net/wireless/libertas/built-in.o := rm -f drivers/net/wireless/libertas/built-in.o; arm-none-linux-gnueabi-ar rcs drivers/net/wireless/libertas/built-in.o
|
EAVR/EV3.14
|
ev3sources/extra/linux-03.20.00.13/drivers/net/wireless/libertas/.built-in.o.cmd
|
bat
|
gpl-2.0
| 168 |
cmd_arch/arm/lib/copy_page.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.copy_page.o.d -nostdinc -isystem /opt/toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/copy_page.o arch/arm/lib/copy_page.S
source_arch/arm/lib/copy_page.o := arch/arm/lib/copy_page.S
deps_arch/arm/lib/copy_page.o := \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/include/linux/kconfig.h \
$(wildcard include/config/h.h) \
$(wildcard include/config/.h) \
$(wildcard include/config/foo.h) \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/linkage.h \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/hwcap.h \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/asm-offsets.h \
include/generated/asm-offsets.h \
/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
arch/arm/lib/copy_page.o: $(deps_arch/arm/lib/copy_page.o)
$(deps_arch/arm/lib/copy_page.o):
|
TeamGlide/LiteKernel
|
arch/arm/lib/.copy_page.o.cmd
|
bat
|
gpl-2.0
| 2,760 |
@setlocal
@REM =================================================================
@REM A convenient run one test giving the number and expected exit
@REM
@REM This is to run just one, like "t1 1642186-1 0"
@REM
@REM Note it uses a relative path to the built exe file, and
@REM expects the ouput folder has to exist.
@REM
@REM Obviously you may want to adjust this file, like seen below to test
@REM different versions of tidy.exe...
@REM Rather than altering this file, which will be flagged by git,
@REM I copy it to say a temp1.bat, and modify that to suit my testing
@REM
@REM There is also an 'alltest.cmd' which runs some 227 tests that
@REM gets the case listed in 'testcases.txt' file.
@REM
@REM =================================================================
@REM setup the ENVIRONMENT
@set TIDY=..\build\cmake\Debug\tidyd.exe
@REM set TIDY=..\build\cmake\Release\tidy.exe
@REM set TIDY=C:\MDOS\tidy5.exe
@REM set TIDY=C:\MDOS\tidydev02.exe
@set TIDYOUT=temp-02
@set TMPTEST=temptest1.txt
@if NOT EXIST %TIDYOUT%\nul goto NOOUT
@if NOT EXIST %TIDY% goto NOEXE
@REM Check user input
@if "%~1x" == "x" goto HELP
@if "%~2x" == "x" goto HELP
@set TMPFIL=input\in_%1.html
@set TMPCFG=input\cfg_%1.txt
@if NOT EXIST %TMPCFG% (
@set TMPCFG=input\cfg_default.txt
)
@if NOT EXIST %TMPFIL% goto NOFIL
@if NOT EXIST %TMPCFG% goto NOCFG
@echo Test 1 case %DATE% %TIME% > %TMPTEST%
@%TIDY% -v >> %TMPTEST%
@if ERRORLEVEL 1 goto NOTIDY
@echo.
@echo Doing '@call onetest.cmd %1 %2'
@echo Doing '@call onetest.cmd %1 %2' >> %TMPTEST%
@call onetest.cmd %1 %2
@echo See ouput in %TMPTEST%
@set TMPFIL1=testbase\out_%1.html
@set TMPOUT1=testbase\msg_%1.txt
@set TMPFIL2=%TIDYOUT%\out_%1.html
@set TMPOUT2=%TIDYOUT%\msg_%1.txt
@if NOT EXIST %TMPFIL1% goto NOFIL1
@if NOT EXIST %TMPFIL2% goto NOFIL1
@if NOT EXIST %TMPOUT1% goto NOFIL2
@if NOT EXIST %TMPOUT2% goto NOFIL2
@REM Compare the outputs, exactly
@set TMPOPTS=-ua
@set ERRCNT=0
@echo.
@echo Doing: '@diff %TMPOPTS% %TMPFIL1% %TMPFIL2%'
@diff %TMPOPTS% %TMPFIL1% %TMPFIL2%
@if ERRORLEVEL 1 goto GOTD1
@echo Files appear exactly the same...
@goto DODIF2
:GOTD1
@call :ISDIFF
@set /A ERRCNT+=1
:DODIF2
@echo.
@echo Doing: '@diff %TMPOPTS% %TMPOUT1% %TMPOUT2%'
@diff %TMPOPTS% %TMPOUT1% %TMPOUT2%
@if ERRORLEVEL 1 goto GOTD2
@echo Files appear exactly the same...
@goto DODIF3
:GOTD2
@call :ISDIFF
@set /A ERRCNT+=1
:DODIF3
@echo.
@if "%ERRCNT%x" == "0x" (
@echo Appears a successful test of %1 %2
) else (
@echo Carefully REVIEW the above differences on %1 %2! *** ACTION REQUIRED ***
)
@goto END
:ISDIFF
@echo.
@echo Check the above diff carefully. This may indicate a 'testbase', or
@echo a 'regression' in tidy output.
@echo.
@goto :EOF
:NOFIL1
@echo.
@echo Can NOT locate %TMPFIL1% or %TMPFIL2%
@echo needed for the compare... but this may not be a problem...
@echo Maybe there is no 'testbase' file for test %1!
@echo.
@goto END
:NOFIL2
@echo.
@echo Can NOT locate %TMPOUT1% or %TMPOUT2%
@echo needed for the compare... but this may not be a problem...
@echo but it is strange one or both were not created!!! *** NEEDS CHECKING ***
@echo.
@goto END
:NOEXE
@echo.
@echo Error: Unable to locate file '%TIDY%'! Has it been built? *** FIX ME ***
@echo.
@goto END
:NOTIDY
@echo.
@echo Error: Unable to run '%TIDY% -v' successfully! *** FIX ME ***
@echo.
@goto END
:NOOUT
@echo.
@echo Error: Can NOT locate %TIDYOUT%! This MUST be created!
@echo This script does NOT create any directories...
@echo.
@goto END
:NOFIL
@echo.
@dir input\*%1*
@echo.
@echo Error: Can NOT locate %TMPFIL%! Is number correct?
@echo.
@goto END
:NOCFG
@echo.
@echo Error: Can NOT locate %TMPCFG%!
@echo.
@goto END
:HELP
@echo.
@echo - Usage: %0 value expected
@echo - That is give test number, and expected result, like
@echo - %0 1642186 1
@echo.
:END
|
geoffmcl/tidy-test
|
test/t1d.bat
|
bat
|
gpl-2.0
| 3,805 |
cmd_drivers/video/tegra/host/built-in.o := arm-eabi-ld -EL -r -o drivers/video/tegra/host/built-in.o drivers/video/tegra/host/nvhost.o
|
timmytim/honeybutter_kernel
|
drivers/video/tegra/host/.built-in.o.cmd
|
bat
|
gpl-2.0
| 140 |
SET urlNthL=70
SET /A urlNthL -= 1
CALL :OBLYT2_LGrab
GOTO :OBLYTAUTO
:OBLYT2_LGrab
FOR /F "tokens=*" %%A IN ('MORE /E +%urlNthL% "%GBC%\%INDX%"') DO (
SET OBLYTURL=%%A
goto :EOF
)
:OBLYTAUTO
cmd /c start "" "%GBC%\Wbusy.exe" "DownloadingHS" "Downloading OblyTile" /marquee
start /min /w "" "%GBC%\aria2c.exe" --continue=true --split=5 --file-allocation=none --dir="%GBC%\net\%OBLYT%" "%MIR1%/%OBLYTURL%" "%MIR2%/%OBLYTURL%" "%MIR3%/%OBLYTURL%" "%MIR4%/%OBLYTURL%" "%MIR5%/%OBLYTURL%"
for %%A in ("%GBC%\net\%OBLYT%\*.7z") do set OBLYTZ=%%~A
if not exist "%OBLYTZ%" goto :no_OBLYT
for /f "delims=" %%a in ('dir /b "%OBLYTZ%"') do set OBLYTFILE=%%~nxa
"%GBC%\Wbusy.exe" "DownloadingHS" "Complete." /Stop /timeout:1
goto :completeHSD
:no_OBLYT
"%GBC%\Wbusy.exe" "DownloadingHS" "Could not download OblyTile." /Stop /timeout:1
SET OBLYINST=1
goto :EOF
:completeHSD
mkdir "%PRGF%\%OBLYT%"
"%SEVENZIP%" x -y "%GBC%\net\%OBLYT%\%OBLYTZ%" -o"%PRGF%\%OBLYT%"
for %%A in ("%PRGF%\%OBLYT%\*.exe") do set OBLYTMP=%%~A
if not exist "%PRGF%\%OBLYT%\%OBLYTMP%" goto :no_OBLYT
"%PRGF%\%OBLYT%\%OBLYTMP%"
"%GBC%\wbox.exe" "Close" "Close the OblyTile window" "Okay" /TM=10
if %ERRORLEVEL%==1 goto :installed
goto :installed
:installed
|
HoodlumDTX/rom-jacket
|
getOblyTile.bat
|
bat
|
gpl-2.0
| 1,250 |
cmd_sound/isa/ad1848/built-in.o := rm -f sound/isa/ad1848/built-in.o; /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-ar rcsD sound/isa/ad1848/built-in.o
|
evan6200/cirrfy_pos
|
sound/isa/ad1848/.built-in.o.cmd
|
bat
|
gpl-2.0
| 217 |
cmd_drivers/auxdisplay/built-in.o := rm -f drivers/auxdisplay/built-in.o; /mnt/disk2/Dev/UG802/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD drivers/auxdisplay/built-in.o
|
aloksinha2001/picuntu-3.0.8-alok
|
drivers/auxdisplay/.built-in.o.cmd
|
bat
|
gpl-2.0
| 187 |
cmd_net/wireless/cfg80211.o := ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ld -EL -r -o net/wireless/cfg80211.o net/wireless/core.o net/wireless/sysfs.o net/wireless/radiotap.o net/wireless/util.o net/wireless/reg.o net/wireless/scan.o net/wireless/nl80211.o net/wireless/mlme.o net/wireless/ibss.o net/wireless/sme.o net/wireless/chan.o net/wireless/ethtool.o net/wireless/mesh.o net/wireless/wext-compat.o net/wireless/wext-sme.o
|
chrnueve/udooImaxdi
|
kernel_oficial_source/net/wireless/.cfg80211.o.cmd
|
bat
|
gpl-2.0
| 443 |
@ECHO OFF
rem ----Usage----
rem BuildSetup [gl|dx] [clean|noclean]
rem vs2010 for compiling with visual studio 2010
rem gl for opengl build (default)
rem dx for directx build
rem clean to force a full rebuild
rem noclean to force a build without clean
rem noprompt to avoid all prompts
rem nomingwlibs to skip building all libs built with mingw
CLS
COLOR 1B
TITLE XBMC for Windows Build Script
rem ----PURPOSE----
rem - Create a working XBMC build with a single click
rem -------------------------------------------------------------
rem Config
rem If you get an error that Visual studio was not found, SET your path for VSNET main executable.
rem -------------------------------------------------------------
rem CONFIG START
SET comp=vs2010
SET target=dx
SET buildmode=ask
SET promptlevel=prompt
SET buildmingwlibs=true
SET exitcode=0
FOR %%b in (%1, %2, %3, %4, %5) DO (
IF %%b==vs2010 SET comp=vs2010
IF %%b==dx SET target=dx
IF %%b==gl SET target=gl
IF %%b==clean SET buildmode=clean
IF %%b==noclean SET buildmode=noclean
IF %%b==noprompt SET promptlevel=noprompt
IF %%b==nomingwlibs SET buildmingwlibs=false
)
SET buildconfig=Release (DirectX)
IF %target%==gl SET buildconfig=Release (OpenGL)
IF %comp%==vs2010 (
IF "%VS100COMNTOOLS%"=="" (
set NET="%ProgramFiles%\Microsoft Visual Studio 10.0\Common7\IDE\VCExpress.exe"
) ELSE IF EXIST "%VS100COMNTOOLS%\..\IDE\VCExpress.exe" (
set NET="%VS100COMNTOOLS%\..\IDE\VCExpress.exe"
) ELSE IF EXIST "%VS100COMNTOOLS%\..\IDE\devenv.exe" (
set NET="%VS100COMNTOOLS%\..\IDE\devenv.exe"
)
)
IF NOT EXIST %NET% (
set DIETEXT=Visual Studio .NET 2010 Express was not found.
goto DIE
)
set OPTS_EXE="..\VS2010Express\XBMC for Windows.sln" /build "%buildconfig%"
set CLEAN_EXE="..\VS2010Express\XBMC for Windows.sln" /clean "%buildconfig%"
set EXE= "..\VS2010Express\XBMC\%buildconfig%\XBMC.exe"
rem CONFIG END
rem -------------------------------------------------------------
echo :
echo :::
echo ::::
echo ::::
echo ::::::: ::::::::::::::::: :::::: :::::: :::::::
echo ::::::::: :::::::::::::::::::: :::::::::: :::::::::: :::::::::
echo ::::::::: :::::::::::::::::::::: :::::::::::::::::::::::: :::::::::
echo ::::::::: ::: ::::: ::::: :::::::: :::: :::::
echo :::::: :::: :::: :::: ::::: :::::::
echo ::::: :::: ::::::: ::::: ::::::
echo ::::: ::: :::::: ::: ::::::
echo :::: ::: :::::: :::: ::::::
echo :::: ::: ::::::: :::: ::::::
echo ::::: :::: ::::::: :::: ::::::
echo ::::::: :::: :::::::: ::: :::::::
echo ::::::::::::::: ::::: ::::: ::: ::: :::::::::
echo ::::::::: ::::::::: ::::::::::: ::: ::: ::: :::::::::
echo :::::::: ::::::::: ::::::::: ::: ::: ::: ::::::::
echo :::::: ::::::: ::::: : :: :: ::::::
goto EXE_COMPILE
:EXE_COMPILE
IF EXIST buildlog.html del buildlog.html /q
IF %buildmode%==clean goto COMPILE_EXE
IF %buildmode%==noclean goto COMPILE_NO_CLEAN_EXE
rem ---------------------------------------------
rem check for existing exe
rem ---------------------------------------------
IF EXIST %EXE% (
goto EXE_EXIST
)
goto COMPILE_EXE
:EXE_EXIST
IF %promptlevel%==noprompt goto COMPILE_EXE
ECHO ------------------------------------------------------------
ECHO Found a previous Compiled WIN32 EXE!
ECHO [1] a NEW EXE will be compiled for the BUILD_WIN32
ECHO [2] existing EXE will be updated (quick mode compile) for the BUILD_WIN32
ECHO ------------------------------------------------------------
set /P XBMC_COMPILE_ANSWER=Compile a new EXE? [1/2]:
if /I %XBMC_COMPILE_ANSWER% EQU 1 goto COMPILE_EXE
if /I %XBMC_COMPILE_ANSWER% EQU 2 goto COMPILE_NO_CLEAN_EXE
:COMPILE_EXE
ECHO Wait while preparing the build.
ECHO ------------------------------------------------------------
ECHO Cleaning Solution...
%NET% %CLEAN_EXE%
ECHO Compiling XBMC...
%NET% %OPTS_EXE%
IF NOT EXIST %EXE% (
set DIETEXT="XBMC.EXE failed to build! See %CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
IF %promptlevel%==noprompt (
type "%CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
)
goto DIE
)
ECHO Done!
ECHO ------------------------------------------------------------
set buildmode=clean
GOTO MAKE_BUILD_EXE
:COMPILE_NO_CLEAN_EXE
ECHO Wait while preparing the build.
ECHO ------------------------------------------------------------
ECHO Compiling Solution...
%NET% %OPTS_EXE%
IF NOT EXIST %EXE% (
set DIETEXT="XBMC.EXE failed to build! See %CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
IF %promptlevel%==noprompt (
type "%CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
)
goto DIE
)
ECHO Done!
ECHO ------------------------------------------------------------
GOTO MAKE_BUILD_EXE
:MAKE_BUILD_EXE
IF %buildmingwlibs%==true (
ECHO Compiling mingw libs
ECHO bla>noprompt
IF EXIST errormingw del errormingw > NUL
IF %buildmode%==clean (
ECHO bla>makeclean
)
call buildmingwlibs.bat
IF EXIST errormingw (
set DIETEXT="failed to build mingw libs"
goto DIE
)
)
ECHO Copying files...
IF EXIST BUILD_WIN32 rmdir BUILD_WIN32 /S /Q
Echo .svn>exclude.txt
Echo CVS>>exclude.txt
Echo .so>>exclude.txt
Echo .h>>exclude.txt
Echo .cpp>>exclude.txt
Echo .exp>>exclude.txt
Echo .lib>>exclude.txt
Echo Thumbs.db>>exclude.txt
Echo Desktop.ini>>exclude.txt
Echo dsstdfx.bin>>exclude.txt
Echo exclude.txt>>exclude.txt
rem and exclude potential leftovers
Echo mediasources.xml>>exclude.txt
Echo advancedsettings.xml>>exclude.txt
Echo guisettings.xml>>exclude.txt
Echo profiles.xml>>exclude.txt
Echo sources.xml>>exclude.txt
Echo userdata\cache\>>exclude.txt
Echo userdata\database\>>exclude.txt
Echo userdata\playlists\>>exclude.txt
Echo userdata\script_data\>>exclude.txt
Echo userdata\thumbnails\>>exclude.txt
rem UserData\visualisations contains currently only xbox visualisationfiles
Echo userdata\visualisations\>>exclude.txt
rem other platform stuff
Echo lib-osx>>exclude.txt
Echo players\mplayer>>exclude.txt
Echo FileZilla Server.xml>>exclude.txt
Echo asound.conf>>exclude.txt
Echo voicemasks.xml>>exclude.txt
Echo Lircmap.xml>>exclude.txt
md BUILD_WIN32\Xbmc
xcopy %EXE% BUILD_WIN32\Xbmc > NUL
xcopy ..\..\userdata BUILD_WIN32\Xbmc\userdata /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
copy ..\..\copying.txt BUILD_WIN32\Xbmc > NUL
copy ..\..\LICENSE.GPL BUILD_WIN32\Xbmc > NUL
copy ..\..\known_issues.txt BUILD_WIN32\Xbmc > NUL
xcopy dependencies\*.* BUILD_WIN32\Xbmc /Q /I /Y /EXCLUDE:exclude.txt > NUL
copy sources.xml BUILD_WIN32\Xbmc\userdata > NUL
xcopy ..\..\language BUILD_WIN32\Xbmc\language /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\addons BUILD_WIN32\Xbmc\addons /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\system BUILD_WIN32\Xbmc\system /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\media BUILD_WIN32\Xbmc\media /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\sounds BUILD_WIN32\Xbmc\sounds /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
IF EXIST error.log del error.log > NUL
SET build_path=%CD%
ECHO ------------------------------------------------------------
ECHO Building Confluence Skin...
cd ..\..\addons\skin.confluence
call build.bat > NUL
cd %build_path%
rem restore color and title, some scripts mess these up
COLOR 1B
TITLE XBMC for Windows Build Script
IF EXIST exclude.txt del exclude.txt > NUL
ECHO ------------------------------------------------------------
ECHO Build Succeeded!
GOTO NSIS_EXE
:NSIS_EXE
ECHO ------------------------------------------------------------
ECHO Generating installer includes...
call genNsisIncludes.bat
ECHO ------------------------------------------------------------
call getdeploydependencies.bat
CALL extract_git_rev.bat > NUL
SET XBMC_SETUPFILE=XBMCSetup-%GIT_REV%-%target%.exe
ECHO Creating installer %XBMC_SETUPFILE%...
IF EXIST %XBMC_SETUPFILE% del %XBMC_SETUPFILE% > NUL
rem get path to makensis.exe from registry, first try tab delim
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
IF NOT EXIST "%NSISExePath%" (
rem try with space delim instead of tab
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem fails on localized windows (Default) becomes (Par Défaut)
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
)
rem proper x64 registry checks
IF NOT EXIST "%NSISExePath%" (
ECHO using x64 registry entries
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem try with space delim instead of tab
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem on win 7 x64, the previous fails
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem try with space delim instead of tab
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
SET NSISExe=%NSISExePath%\makensis.exe
"%NSISExe%" /V1 /X"SetCompressor /FINAL lzma" /Dxbmc_root="%CD%\BUILD_WIN32" /Dxbmc_revision="%GIT_REV%" /Dxbmc_target="%target%" "XBMC for Windows.nsi"
IF NOT EXIST "%XBMC_SETUPFILE%" (
set DIETEXT=Failed to create %XBMC_SETUPFILE%. NSIS installed?
goto DIE
)
ECHO ------------------------------------------------------------
ECHO Done!
ECHO Setup is located at %CD%\%XBMC_SETUPFILE%
ECHO ------------------------------------------------------------
GOTO VIEWLOG_EXE
:DIE
ECHO ------------------------------------------------------------
ECHO !-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-
ECHO ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR
ECHO !-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-
set DIETEXT=ERROR: %DIETEXT%
echo %DIETEXT%
SET exitcode=1
ECHO ------------------------------------------------------------
:VIEWLOG_EXE
SET log="%CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
IF NOT EXIST %log% goto END
copy %log% ./buildlog.html > NUL
IF %promptlevel%==noprompt (
goto END
)
set /P XBMC_BUILD_ANSWER=View the build log in your HTML browser? [y/n]
if /I %XBMC_BUILD_ANSWER% NEQ y goto END
SET log="%CD%\..\vs2010express\XBMC\%buildconfig%\objs\" XBMC.log
start /D%log%
goto END
:END
IF %promptlevel% NEQ noprompt (
ECHO Press any key to exit...
pause > NUL
)
EXIT /B %exitcode%
|
mekinik232/ambipi
|
project/Win32BuildSetup/BuildSetup.bat
|
bat
|
gpl-2.0
| 11,785 |
cmd_drivers/net/arm/built-in.o := rm -f drivers/net/arm/built-in.o; /root/CodeSourcery/Sourcery_G++_Lite//bin/arm-none-linux-gnueabi-ar rcs drivers/net/arm/built-in.o
|
gzdaoke/linux2.6.32_kernel
|
drivers/net/arm/.built-in.o.cmd
|
bat
|
gpl-2.0
| 168 |
cmd_sound/isa/opti9xx/built-in.o := rm -f sound/isa/opti9xx/built-in.o; /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD sound/isa/opti9xx/built-in.o
|
Envious-Data/shinano-sirius_msm8974abpro
|
sound/isa/opti9xx/.built-in.o.cmd
|
bat
|
gpl-2.0
| 182 |
cmd_drivers/scsi/built-in.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/scsi/built-in.o drivers/scsi/arm/built-in.o
|
yohanes/Acer-BeTouch-E130-Linux-Kernel
|
drivers/scsi/.built-in.o.cmd
|
bat
|
gpl-2.0
| 144 |
cmd_drivers/rtc/built-in.o := /home/dman3285/CM10/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/rtc/built-in.o drivers/rtc/rtc-lib.o drivers/rtc/hctosys.o drivers/rtc/rtc-core.o drivers/rtc/alarm.o drivers/rtc/alarm-dev.o drivers/rtc/rtc-max8907c.o drivers/rtc/rtc-tegra.o
|
AOSP-ZEUS/android_kernel_samsung_n1
|
drivers/rtc/.built-in.o.cmd
|
bat
|
gpl-2.0
| 310 |
cmd_net/built-in.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/built-in.o net/socket.o net/core/built-in.o net/ethernet/built-in.o net/802/built-in.o net/sched/built-in.o net/netlink/built-in.o net/netfilter/built-in.o net/ipv4/built-in.o net/xfrm/built-in.o net/unix/built-in.o net/ipv6/built-in.o net/packet/built-in.o net/key/built-in.o net/bluetooth_mgmt/built-in.o net/sunrpc/built-in.o net/wireless/built-in.o net/rfkill/built-in.o net/sysctl_net.o net/activity_stats.o
|
TeamGlide/LiteKernel
|
net/.built-in.o.cmd
|
bat
|
gpl-2.0
| 501 |
cmd_drivers/gpu/vga/built-in.o := rm -f drivers/gpu/vga/built-in.o; /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs drivers/gpu/vga/built-in.o
|
dagnarf/sgh-i717-dagkernel
|
drivers/gpu/vga/.built-in.o.cmd
|
bat
|
gpl-2.0
| 163 |
cmd_util-linux/volume_id/ntfs.o := arm-linux-musleabihf-gcc -Wp,-MD,util-linux/volume_id/.ntfs.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ntfs)" -D"KBUILD_MODNAME=KBUILD_STR(ntfs)" -c -o util-linux/volume_id/ntfs.o util-linux/volume_id/ntfs.c
deps_util-linux/volume_id/ntfs.o := \
util-linux/volume_id/ntfs.c \
$(wildcard include/config/feature/volumeid/ntfs.h) \
$(wildcard include/config/feature/blkid/type.h) \
util-linux/volume_id/volume_id_internal.h \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
include/volume_id.h \
util-linux/volume_id/ntfs.o: $(deps_util-linux/volume_id/ntfs.o)
$(deps_util-linux/volume_id/ntfs.o):
|
ThinkIntegrate/busybox
|
util-linux/volume_id/.ntfs.o.cmd
|
bat
|
gpl-2.0
| 11,622 |
@echo off
setlocal
if not "%VCINSTALLDIR%" == "" goto found_vc
rem VisualStudio 2013 Community Edition Update 4
for /f "skip=2 tokens=2,*" %%a in ('reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\SxS\VC7 /v 14.0 2^>NUL') do set VCINSTALLDIR=%%b
if "%VCINSTALLDIR%" == "" goto find_ddk
:found_vc
if "%VisualStudioVersion%" == "" goto initialize
rem Even though we may already be called from an initialized environment
rem we must do it again because we are building an x86 launcher
if not "%Platform%" == "X64" goto platfx86
:initialize
call "%VCINSTALLDIR%\vcvarsall.bat" x86
:platfx86
set BIN32=%VCINSTALLDIR%\bin
set BIN64=%VCINSTALLDIR%\bin\x86_amd64
rem Avoid getting unresolved external for security_cookie symbol,
rem see http://support.microsoft.com/kb/894573 for explanation
set NO_GS=-GS-
goto make
:find_ddk
if not "%BASEDIR%" == "" goto found_ddk
rem Windows 2003 DDK on Windows XP
for /f "skip=4 tokens=3" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\WINDDK\3790.1830" /v SFNDirectory 2^>NUL') do set BASEDIR=%%a
:found_ddk
set PATH=%BASEDIR%\bin\x86;%WINDIR%\System32
set INCLUDE=%BASEDIR%\inc\wxp;%BASEDIR%\inc\crt
set LIB=%BASEDIR%\lib\wxp\i386;%BASEDIR%\lib\crt\i386
rem DDK compiler does not support this option; it is silently ignored
rem if specified, but it cannot be disabled
set NO_GS=
set BIN32=%BASEDIR%\bin\x86
set BIN64=%BASEDIR%\bin\win64\x86\amd64
:make
nmake -nologo -fkbdneo2.mak "BIN32=%BIN32%" "BIN64=%BIN64%" "NO_GS=%NO_GS%" %*
endlocal
|
cpuesser/kbdneo2
|
build-layout.bat
|
bat
|
gpl-3.0
| 1,492 |
@echo off
call %~dp0\..\..\data\plugins\build.cmd
set WinDirNet=%WinDir%\Microsoft.NET\Framework
set msbuild="%WinDirNet%\v4.0\msbuild.exe"
if not exist %msbuild% set msbuild="%WinDirNet%\v4.0.30319\msbuild.exe"
set wixBinDir=%WIX%\bin
if not exist ..\..\bin mkdir ..\..\bin
copy ..\..\data\icons\sparkleshare.ico ..\..\bin\
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="AnyCPU" "%~dp0\tools\gettext-cs-utils\Gettext.CsUtils\Core\Gettext.Cs\Gettext.Cs.csproj"
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" "%~dp0\SparkleShare.sln"
if "%1"=="installer" (
if exist "%wixBinDir%" (
if exist "%~dp0\SparkleShare.msi" del "%~dp0\SparkleShare.msi"
"%wixBinDir%\heat.exe" dir "%~dp0\..\..\bin\msysgit" -cg msysGitComponentGroup -gg -scom -sreg -sfrag -srd -dr MSYSGIT_DIR -var wix.msysgitpath -o msysgit.wxs
"%wixBinDir%\heat.exe" dir "%~dp0\..\..\bin\po" -cg poComponentGroup -gg -scom -sreg -sfrag -srd -dr PO_DIR -var wix.podir -o po.wxs
"%wixBinDir%\heat.exe" dir "%~dp0\..\..\bin\plugins" -cg pluginsComponentGroup -gg -scom -sreg -sfrag -srd -dr PLUGINS_DIR -var wix.pluginsdir -o plugins.wxs
"%wixBinDir%\candle" "%~dp0\SparkleShare.wxs" -ext WixUIExtension -ext WixUtilExtension
"%wixBinDir%\candle" "%~dp0\msysgit.wxs" -ext WixUIExtension -ext WixUtilExtension
"%wixBinDir%\candle" "%~dp0\po.wxs" -ext WixUIExtension -ext WixUtilExtension
"%wixBinDir%\candle" "%~dp0\plugins.wxs" -ext WixUIExtension -ext WixUtilExtension
"%wixBinDir%\light" -ext WixUIExtension -ext WixUtilExtension Sparkleshare.wixobj msysgit.wixobj po.wixobj plugins.wixobj -droot="%~dp0\..\.." -dmsysgitpath="%~dp0\..\..\bin\msysgit" -dpodir="%~dp0\..\..\bin\po" -dpluginsdir="%~dp0\..\..\bin\plugins" -o SparkleShare.msi
if exist "%~dp0\SparkleShare.msi" echo SparkleShare.msi created.
) else (
echo Not building installer ^(could not find wix, Windows Installer XML toolset^)
echo wix is available at http://wix.sourceforge.net/
)
) else echo Not building installer, as it was not requested. ^(Issue "build.cmd installer" to build installer ^)
|
Warliy/yey-storage
|
yey-storage/SparkleShare/Windows/build.cmd
|
bat
|
gpl-3.0
| 2,093 |
@echo off
setlocal ENABLEDELAYEDEXPANSION
set OLDPATH=%PATH%
REM Update the sysenvvar PATH with the paths to the tools that you are going to use (e.g. compiler, cygwin, additional tools)
set PATH=d:\DSUsers\uidt6501\apps\cygwin\bin;d:\DSUsers\uidt6501\apps\gcc-arm-none-eabi-20160926\bin;%PATH%
set TS_MIRR=%CD%\jobs
set TARGET=%2
set NO_OF_JOBS=%1
REM If the number of jobs is undefined, the number of jobs default to 1
if "%TARGET%"=="" (
set TARGET=rebuild
bash -c 'echo -n -e "Defaulting to running the [\033[1;31m!TARGET!\033[0m] target ";'
if "%NO_OF_JOBS%"=="" (
set NO_OF_JOBS=-j1
bash -c 'echo -e "with [\033[1;31m!NO_OF_JOBS:-j=!\033[0m] job(s) ...";'
) else (
bash -c 'echo -e "with [\033[1;36m!NO_OF_JOBS:-j=!\033[0m] job(s) ...";'
)
) else (
bash -c 'echo -n -e "Running the [\033[1;36m!TARGET!\033[0m] target ";'
if "%NO_OF_JOBS%"=="" (
set NO_OF_JOBS=-j1
bash -c 'echo -e "with [\033[1;31m!NO_OF_JOBS:-j=!\033[0m] job(s) ...";'
) else (
bash -c 'echo -e "with [\033[1;36m!NO_OF_JOBS:-j=!\033[0m] job(s) ...";'
)
)
make TS_PATH=%TS_MIRR% BUILD_OPT=%CD%/buildopt NO_OF_JOBS=%NO_OF_JOBS% TARGET=%TARGET% %TARGET% -f %TS_MIRR%/buildrules
set PATH=%OLDPATH%
endlocal
|
MoMo-Tech/buildtools
|
StartTs.cmd
|
bat
|
gpl-3.0
| 1,211 |
@echo off
:: setup VC environment variables
set VCVARSALL_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
call %VCVARSALL_PATH%
:: These environment variables can also be set externally
if not defined JOM_PATH (
set JOM_PATH=c:\Qt\5.15.2\Tools\QtCreator\bin
)
if not defined CMAKE_PREFIX_PATH (
set CMAKE_PREFIX_PATH=c:\Qt\5.15.2\msvc2019_64
)
:: add search path for jom.exe
set PATH=%PATH%;%JOM_PATH%
:: create and change into build subdir
mkdir bb_VC_x64
pushd bb_VC_x64
:: configure makefiles and build
cmake -G "NMake Makefiles JOM" .. -DCMAKE_BUILD_TYPE:String="Release"
jom
if ERRORLEVEL 1 GOTO fail
popd
:: copy executable to bin/release dir
xcopy /Y .\bb_VC_x64\OpenHAMSolver\OpenHAMSolver.exe ..\..\bin\release_x64
exit /b 0
:fail
pause
exit /b 1
|
ghorwin/OpenHAM
|
build/cmake/build_VC_x64.bat
|
bat
|
gpl-3.0
| 864 |
@echo off
SETLOCAL EnableDelayedExpansion
rem BuildServer.bat
rem
rem This is the build script used for building SWGANH and it's dependencies
rem using Microsoft tools.
rem ----------------------------------------------------------------------------
rem ---Start of Main Execution -------------------------------------------------
rem Initialize environment variable defaults
call :SET_DEFAULTS
rem Process command line arguments first
goto :PROCESS_ARGUMENTS
:CONTINUE_FROM_PROCESS_ARGUMENTS
rem Build the environment and bail out if it fails
call :BUILD_ENVIRONMENT
if x%environment_built% == x goto :eof
%PROJECT_DRIVE%
cd %PROJECT_BASE%
if %SKIPHEIGHTMAPS% == false (
call :DOWNLOAD_DATA_FILES
)
call :BUILD_DEPENDENCIES
if not exist "deps" (
echo Missing SWGANH dependencies!
echo.
echo Download the dependencies from %DEPENDENCIES_URL% and unpack it
echo into the root project directory, then run this script again.
exit /b 1
)
if %DEPENDENCIESONLY% == true goto :eof
call :BUILD_PROJECT
if not %ERRORLEVEL% == 0 (
if %HALT_ON_ERROR% == true (set /p halt=*** BUILD FAILED... PRESS ENTER TO CONTINUE ***)
exit /b %ERRORLEVEL%
)
if not "%BUILDNUMBER%" == "false" (
if "%BUILD_TYPE%" == "debug" (
echo %BUILDNUMBER% >> build\bin\Debug\VERSION
)
if "%BUILD_TYPE%" == "release" (
echo %BUILDNUMBER% >> build\bin\Release\VERSION
)
if "%BUILD_TYPE%" == "all" (
echo %BUILDNUMBER% >> build\bin\Debug\VERSION
echo %BUILDNUMBER% >> build\bin\Release\VERSION
)
)
echo.
echo Server Successfully Built^^!
goto :eof
rem --- End of Main Execution --------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Helper Functions -------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of SET_DEFAULTS --------------------------------------------------
:SET_DEFAULTS
set DEPENDENCIES_VERSION=0.6.0
set DEPENDENCIES_FILE=mmoserver-deps-%DEPENDENCIES_VERSION%.tar.bz2
set DEPENDENCIES_URL=https://github.com/swganh/mmoserver/releases/download/v0.6.0/%DEPENDENCIES_FILE%
set "PROJECT_BASE=%~dp0"
set "PROJECT_DRIVE=%~d0"
set PATH=%PROJECT_BASE%tools\windows;%PATH%
set BUILD_TYPE=debug
set REBUILD=build
set MSVC_VERSION=12
set ALLHEIGHTMAPS=false
set SKIPHEIGHTMAPS=false
set DEPENDENCIESONLY=false
set BUILDNUMBER=0
set BUILD_ERROR=false
set HALT_ON_ERROR=true
set halt=
goto :eof
rem --- End of SET_DEFAULTS ----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of PROCESS_ARGUMENTS ---------------------------------------------
:PROCESS_ARGUMENTS
if "%~0" == "" goto :CONTINUE_FROM_PROCESS_ARGUMENTS
if "%~0" == "-h" (
echo msvc_build.cmd Help
echo.
echo " /builddeps Builds only the project dependencies"
echo " /allheightmaps Downloads all of the heightmaps"
echo " /nohaltonerror Skips halting on errors"
echo " /skipheightmaps Skips downloading heightmap files"
echo " /rebuild Rebuilds the projects instead of incremental build"
echo " /clean Cleans the generated files"
echo " /build [debug-release-all] Specifies the build type, defaults to debug"
echo " /buildnumber [num] Specifies a build number to be set rather than commit hash"
)
if "%~0" == "/clean" (
call :CLEAN_BUILD
goto :eof
)
if "%~0" == "/builddeps" (
set DEPENDENCIESONLY=true
)
if "%~0" == "/allheightmaps" (
set ALLHEIGHTMAPS=true
)
if "%~0" == "/skipheightmaps" (
set SKIPHEIGHTMAPS=true
)
if "%~0" == "/nohaltonerror" (
set HALT_ON_ERROR=false
)
rem Check for /rebuild then set REBUILD
if "%~0" == "/rebuild" (
set REBUILD=rebuild
)
rem Check for /buildnumber x format and then set BUILDNUMBER
if "%~0" == "/buildnumber" (
set BUILDNUMBER=%~1
shift
)
rem Check for /build:x format and then set BUILD_TYPE
if "%~0" == "/build" (
set BUILD_TYPE=%~1
shift
)
shift
goto :PROCESS_ARGUMENTS
rem --- End of PROCESS_ARGUMENTS -----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of CLEAN_BUILD ---------------------------------------------------
rem --- Cleans all output created by the build process, restoring the ---
rem --- project to it's original state like a fresh checkout. ---
:CLEAN_BUILD
echo Cleaning the build environment
if exist "deps" rmdir /S /Q "deps"
if exist "build" rmdir /S /Q "build"
goto :eof
rem --- End of CLEAN_BUILD -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_ENVIRONMENT ---------------------------------------------
:BUILD_ENVIRONMENT
if not exist "%VS120COMNTOOLS%" (
set "VS120COMNTOOLS=%PROGRAMFILES(X86)%\Microsoft Visual Studio 12.0\Common7\Tools"
if not exist "!VS120COMNTOOLS!" (
set "VS120COMNTOOLS=%PROGRAMFILES%\Microsoft Visual Studio 12.0\Common7\Tools"
if not exist "!VS120COMNTOOLS!" (
rem TODO: Allow user to enter a path to their base visual Studio directory.
echo ***** Microsoft Visual Studio 12.0 required *****
exit /b 1
)
)
)
set "MSBUILD=%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
call "%VS120COMNTOOLS%\vsvars32.bat" >NUL
set environment_built=yes
goto :eof
rem --- End of BUILD_ENVIRONMENT -----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of DOWNLOAD_DATA_FILES -------------------------------------------
rem --- Downloads datafiles such as heightmaps needed to run the project. ---
:DOWNLOAD_DATA_FILES
echo ** Checking data file dependencies **
echo.
if not exist "data\heightmaps" (
mkdir data\heightmaps
)
call :DOWNLOAD_HEIGHTMAP tatooine
if %ALLHEIGHTMAPS% == true (
call :DOWNLOAD_HEIGHTMAP corellia
call :DOWNLOAD_HEIGHTMAP dantooine
call :DOWNLOAD_HEIGHTMAP dathomir
call :DOWNLOAD_HEIGHTMAP endor
call :DOWNLOAD_HEIGHTMAP lok
call :DOWNLOAD_HEIGHTMAP naboo
call :DOWNLOAD_HEIGHTMAP rori
rem call :DOWNLOAD_HEIGHTMAP taanab
call :DOWNLOAD_HEIGHTMAP talus
call :DOWNLOAD_HEIGHTMAP yavin4
)
echo ** Checking data file dependencies complete **
goto :eof
rem --- End of DOWNLOAD_DATA_FILES ---------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of DOWNLOAD_HEIGHTMAP --------------------------------------------
rem --- Downloads datafiles such as heightmaps needed to run the project. ---
:DOWNLOAD_HEIGHTMAP
if not exist "data\heightmaps\%1.hmpw" (
if not exist "data\heightmaps\%1.hmpw.zip" (
echo ** Downloading Heightmap for %1 **
echo.
"wget" --no-check-certificate https://github.com/swganh/mmoserver/releases/download/v0.6.0/%1.hmpw.zip -O data\heightmaps\%1.hmpw.zip
echo ** Downloading heightmap complete **
)
"7z" x -y -odata\heightmaps data\heightmaps\%1.hmpw.zip
)
goto :eof
rem --- End of DOWNLOAD_HEIGHTMAP ----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_DEPENDENCIES --------------------------------------------
rem --- Builds all external dependencies needed by the project. ---
:BUILD_DEPENDENCIES
echo ** Building dependencies necessary for this project **
echo.
if not exist "deps" call :DOWNLOAD_DEPENDENCIES
if not exist "deps\VERSION" (
echo ** Dependencies out of date -- Updating now **
call :CLEAN_BUILD
call :DOWNLOAD_DEPENDENCIES
echo ** Dependencies updated **
)
set /p current_version=<"deps\VERSION"
if not %current_version% == %DEPENDENCIES_VERSION% (
echo ** Dependencies out of date -- Updating now **
rem Need to do a full rebuild after updating dependenceies
set REBUILD=rebuild
call :CLEAN_BUILD
call :DOWNLOAD_DEPENDENCIES
echo ** Dependencies updated **
)
call "%PROJECT_BASE%\deps\build_deps.bat"
echo ** Building dependencies complete **
goto :eof
rem --- End of BUILD_DEPENDENCIES ----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of DOWNLOAD_DEPENDENCIES -----------------------------------------
rem --- Downloads the dependency package for the current version of the source -
:DOWNLOAD_DEPENDENCIES
if not exist "%DEPENDENCIES_FILE%" (
"wget" --no-check-certificate !DEPENDENCIES_URL! -O "%DEPENDENCIES_FILE%"
)
if exist "%DEPENDENCIES_FILE%" (
echo Extracting dependencies ...
"tar" -xvjf "%DEPENDENCIES_FILE%"
echo Complete!
echo.
)
goto :eof
rem --- End of DOWNLOAD_DEPENDENCIES -------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_PROJECT -------------------------------------------------
rem --- Builds the actual project. ---
:BUILD_PROJECT
if not exist "%PROJECT_BASE%build" (
mkdir "%PROJECT_BASE%build"
)
cd "%PROJECT_BASE%build"
cmake -G "Visual Studio 12" -DCMAKE_INSTALL_PREFIX=%PROJECT_BASE% -DENABLE_TEST_REPORT=ON ..
if exist "*.cache" del /S /Q "*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
)
goto :eof
rem --- End of BUILD_PROJECT ---------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of SLEEP ---------------------------------------------------------
rem --- Waits some seconds before returning. ---
:SLEEP
ping -n %1 -w 1 127.0.0.1>NUL
goto :eof
rem --- End of SLEEP -----------------------------------------------------------
rem ----------------------------------------------------------------------------
ENDLOCAL
|
swganh/mmoserver
|
build_server.bat
|
bat
|
gpl-3.0
| 12,562 |
..\..\JSBuilder\JSBuildConsole.exe /path=grid\gridfilters\gridfilters.jsb
..\..\JSBuilder\JSBuildConsole.exe /path=calendar\calendar-all.jsb
..\..\JSBuilder\JSBuildConsole.exe /path=desktop\desktop.jsb
..\..\JSBuilder\JSBuildConsole.exe /path=extnet-ux.jsb
..\..\JSBuilder\JSBuildConsole.exe /path=resources\extnet-ux-css.jsb
..\..\JSBuilder\JSBuildConsole.exe /path=resources\extnet-ux-css-embedded.jsb
|
codeyu/Ext.NET.Community
|
Ext.Net/Build/Ext.Net/ux/build.bat
|
bat
|
agpl-3.0
| 408 |
@echo off
bin\node.exe .\node_modules\babel-cli\bin\babel.js --plugins inline-json,..\babel\config-plugin.js lib\filter\*.js --out-dir public\
del public\*.js
move public\lib\filter\* public
rd /s /q public\lib
bin\node.exe bin/app.js
pause
|
ThauEx/ffrk-proxy
|
start.bat
|
bat
|
lgpl-3.0
| 241 |
java -classpath config;lib/gallery-1.0.jar;lib/freemarker-2.3.9.jar;lib/guava-11.0.jar;lib/jsr305-1.3.9.jar;lib/simple-4.1.21.jar;lib/logback-classic-1.0.1.jar;lib/logback-core-1.0.1.jar;lib/slf4j-api-1.6.4.jar com.braxisltd.gallery.application.RunProd
pause
|
braxisltd/Gallery
|
dist/run.bat
|
bat
|
apache-2.0
| 258 |
@ECHO OFF
SETLOCAL
SET PROP_FILE=%HOMEPATH%\taskanaUnitTest.properties
:MENU
ECHO.
ECHO -----------------------------------------------------
ECHO PRESS a number to select your task - anthing to EXIT.
ECHO -----------------------------------------------------
ECHO.
ECHO 1 - Start DB2 10.5
ECHO 2 - Stop DB2 10.5
ECHO.
ECHO 3 - Start DB2 11.1
ECHO 4 - Stop DB2 11.1
ECHO.
ECHO 5 - Start POSTGRES 10.4
ECHO 6 - Stop POSTGRES 10.4
ECHO.
ECHO 7 - Stop all
ECHO 8 - Remove %PROP_FILE%
ECHO.
SET /P MENU=Select task then press ENTER:
ECHO.
IF [%MENU%]==[1] GOTO START_DB2_10_5
IF [%MENU%]==[2] GOTO STOP_DB2_10_5
IF [%MENU%]==[3] GOTO START_DB2_11_1
IF [%MENU%]==[4] GOTO STOP_DB2_11_1
IF [%MENU%]==[5] GOTO START_POSTGRES_10_4
IF [%MENU%]==[6] GOTO STOP_POSTGRES_10_4
IF [%MENU%]==[7] GOTO STOP_ALL
IF [%MENU%]==[8] GOTO REMOVE_PROP
EXIT /B
:START_DB2_10_5
ECHO ---
docker ps -aq -f name=^/taskana-db2_10_5$ -f status=running > %TEMP%\temp
SET /P CONTAINER_RUNNING=< %TEMP%\temp
docker ps -aq -f name=^/taskana-db2_10_5$ > %TEMP%\temp
SET /P CONTAINER_EXISTS=< %TEMP%\temp
del %TEMP%\temp
IF DEFINED CONTAINER_EXISTS (
ECHO docker start taskana-db2_10_5
docker start taskana-db2_10_5
)
IF NOT DEFINED CONTAINER_EXISTS (
ECHO docker run -d -p 50100:50000 --name taskana-db2_10_5 taskana/db2:10.5 -d
docker run -d -p 50100:50000 --name taskana-db2_10_5 taskana/db2:10.5 -d
)
ECHO jdbcDriver=com.ibm.db2.jcc.DB2Driver> %PROP_FILE%
ECHO jdbcUrl=jdbc:db2://localhost:50100/tskdb>> %PROP_FILE%
ECHO dbUserName=db2inst1>> %PROP_FILE%
ECHO dbPassword=db2inst1-pwd>> %PROP_FILE%
ECHO schemaName=taskana>> %PROP_FILE%
ECHO ---
GOTO MENU
:STOP_DB2_10_5
ECHO ---
ECHO docker stop taskana-db2_1
docker stop taskana-db2_1
ECHO ---
GOTO MENU
:START_DB2_11_1
ECHO ---
docker ps -aq -f name=^/taskana-db2_11_1$ -f status=running > %TEMP%\temp
SET /P CONTAINER_RUNNING=< %TEMP%\temp
docker ps -aq -f name=^/taskana-db2_11_1$ > %TEMP%\temp
SET /P CONTAINER_EXISTS=< %TEMP%\temp
del %TEMP%\temp
IF DEFINED CONTAINER_EXISTS (
ECHO docker start taskana-db2_11_1
docker start taskana-db2_11_1
)
IF NOT DEFINED CONTAINER_EXISTS (
ECHO docker run -d -p 50101:50000 --name taskana-db2_11_1 taskana/db2:11.1 -d
docker run -d -p 50101:50000 --name taskana-db2_11_1 taskana/db2:11.1 -d
)
ECHO jdbcDriver=com.ibm.db2.jcc.DB2Driver> %PROP_FILE%
ECHO jdbcUrl=jdbc:db2://localhost:50101/tskdb>> %PROP_FILE%
ECHO dbUserName=db2inst1>> %PROP_FILE%
ECHO dbPassword=db2inst1-pwd>> %PROP_FILE%
ECHO schemaName=taskana>> %PROP_FILE%
ECHO ---
GOTO MENU
:STOP_DB2_11_1
ECHO ---
ECHO docker stop taskana-db2_11_1
docker stop taskana-db2_11_1
ECHO ---
GOTO MENU
:START_POSTGRES_10_4
ECHO ---
docker ps -aq -f name=^/taskana-postgres_10_4$ -f status=running > %TEMP%\temp
SET /P CONTAINER_RUNNING=< %TEMP%\temp
docker ps -aq -f name=^/taskana-postgres_10_4$ > %TEMP%\temp
SET /P CONTAINER_EXISTS=< %TEMP%\temp
del %TEMP%\temp
IF DEFINED CONTAINER_EXISTS (
ECHO docker start taskana-postgres_10_4
docker start taskana-postgres_10_4
)
IF NOT DEFINED CONTAINER_EXISTS (
ECHO docker run -d -p 50102:5432 --name taskana-postgres_10_4 -e POSTGRES_PASSWORD=postgres postgres:10.4
docker run -d -p 50102:5432 --name taskana-postgres_10_4 -e POSTGRES_PASSWORD=postgres postgres:10.4
)
ECHO jdbcDriver=org.postgresql.Driver> %PROP_FILE%
ECHO jdbcUrl=jdbc:postgresql://localhost:50102/postgres>> %PROP_FILE%
ECHO dbUserName=postgres>> %PROP_FILE%
ECHO dbPassword=postgres>> %PROP_FILE%
ECHO schemaName=taskana>> %PROP_FILE%
ECHO ---
GOTO MENU
:STOP_POSTGRES_10_4
ECHO ---
ECHO docker stop taskana-postgres_10_4
docker stop taskana-postgres_10_4
ECHO ---
GOTO MENU
:STOP_ALL
ECHO ---
ECHO docker stop taskana-db2_10_5
docker stop taskana-db2_10_5
ECHO docker stop taskana-db2_11_1
docker stop taskana-db2_11_1
ECHO docker stop taskana-postgres_10_4
docker stop takana-postgres_10_4
ECHO ---
GOTO MENU
:REMOVE_PROP
ECHO ---
IF EXIST %PROP_FILE% (
ECHO DEL /F %PROP_FILE%
DEL /F %PROP_FILE%
)
ECHO ---
GOTO MENU
|
BVier/Taskana
|
ci/prepare_db.bat
|
bat
|
apache-2.0
| 4,518 |
tgo_composer -pdf="12SUE9706979349_geo.pdf" -output="12SUE9706979349_geo_OUT.pdf" -xml="BM_OpenWebsite.xml" -georeg -verbose=debug -product="TGO_Composer" -vendor="TerraGo"
|
GeoPDF/sdk_samples
|
Bookmark_OpenWebsite/00_BM_OpenWebsite_RUN_ME.bat
|
bat
|
apache-2.0
| 172 |
python csprojGenerate_mono2.py -d "E:\WorkSpace\gunsoul_mobile\game\project\game-xx" -dstproj "emptyproject_logic"
pause
|
iGameDesign/iLittleTools
|
csprojGenerate_mono/csprojGenerate_mono.bat
|
bat
|
apache-2.0
| 120 |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem Run the JMeter simple table server in non-GUI mode
rem Default settings:
rem jmeterPlugin.sts.port=9191
rem jmeterPlugin.sts.addTimestamp=true
rem jmeterPlugin.sts.datasetDirectory=<JMETER_HOME/bin> (leave it empty)
rem jmeterPlugin.sts.loadAndRunOnStartup=true
setlocal
cd /D %~dp0
set CP=..\lib\ext\ApacheJMeter_core.jar;..\lib\jorphan.jar;..\lib\ext\JMeterPlugins-Extras.jar
set CP=%CP%;..\lib\logkit-2.0.jar;..\lib\avalon-framework-4.1.4.jar
java -cp %CP% org.jmeterplugins.protocol.http.control.HttpSimpleTableServer
pause
|
kangli914/JmeterAutomation
|
bin/simple-table-server.cmd
|
bat
|
apache-2.0
| 1,394 |
MEMORY {
ram: org=0x400, len=0x3fc00
rom: org=0xf80000, len=0x80000
}
SECTIONS {
.init: {
*(init)
__prg_start = ALIGN(2);
} > rom
.text: {
*(CODE)
} > ram AT> rom
.data: {
. = ALIGN(2);
*(DATA)
. = ALIGN(2);
} > ram AT> rom
.bss (NOLOAD): {
__bss_start = .;
*(BSS)
__bss_end = ALIGN(2);
} > ram
__copy_len = ADDR(.bss) - ADDR(.text);
__bss_len = __bss_end - __bss_start;
}
|
rkujawa/fkload
|
src/loader/vlink.cmd
|
bat
|
bsd-2-clause
| 409 |
@echo off
setlocal enabledelayedexpansion
set mem=5100
:decmem
set /a mem=mem-100
if !mem! == 0 (
rem // something went wrong with our test
set mem=700
goto start
)
java -Xmx!mem!m -version > nul 2> nul
if errorlevel 1 goto decmem
:start
echo !mem!
|
utapyngo/owl2vcs
|
scripts/javamem.cmd
|
bat
|
bsd-2-clause
| 260 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\photomap.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\photomap.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
|
wildamerica/photomap
|
docs/make.bat
|
bat
|
bsd-3-clause
| 5,100 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
)
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. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Django-inspect-model.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Django-inspect-model.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
|
magopian/django-inspect-model
|
docs/make.bat
|
bat
|
bsd-3-clause
| 4,539 |
@echo off
:: +-------------------------------------------------------------------------
:: |
:: | WPN-XM Server Stack - Stop Daemons
:: |
:: +-----------------------------------------------------------------------<3
if exist "%SystemRoot%\System32\taskkill.exe" (
echo Using "taskkill" to kill the processes.
SET KILL-PROCESS=taskkill /F /IM
GOTO :kill-processes
)
if exist "%~dp0bin\tools\killprocess\Process.exe" (
echo Using "process" to kill the processes.
SET KILL-PROCESS=%~dp0bin\tools\killprocess\Process.exe -k
GOTO :kill-processes
)
:: can't get tskill to work...
if exist "%SystemRoot%\System32\tskill.exe" (
echo Using "tskill" to kill the processes.
SET KILL-PROCESS=tskill /A
GOTO :kill-processes
)
echo Taskkill and tskill not found. Can't stop processes.
echo.
GOTO :EOF
:kill-processes
:: kill all daemons, if no argument given (default)
IF "%1"=="" (
call:stop-php
call:stop-mariadb
call:stop-memcached
call:stop-nginx
) ELSE (
:: stop specific daemon
:: where %1 is the first cli argument, e.g. "stop-wpnxm.bat php"
call:stop-%1
)
GOTO END
:stop-nginx
echo Stopping Nginx
%KILL-PROCESS% nginx.exe
echo.
goto :eof :: return to caller
:stop-php
echo Stopping PHP-CGI
%KILL-PROCESS% php-cgi.exe
echo.
goto :eof :: return to caller
:stop-mariadb
echo Stopping MySQL
%KILL-PROCESS% mysqld.exe
echo.
goto :eof :: return to caller
:stop-memcached
echo Stopping Memcached
%KILL-PROCESS% memcached.exe
echo.
goto :eof :: return to caller
goto END
:ERROR
pause>nul
:END
|
Akhiljs/WPN-XM
|
startfiles/stop.bat
|
bat
|
mit
| 1,679 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCROPS.S06_PropertyROPs.MSOXCROPS_S06_TC01_TestRopsGetProperties /testcontainer:..\..\MS-OXCROPS\TestSuite\bin\Debug\MS-OXCROPS_TestSuite.dll /runconfig:..\..\MS-OXCROPS\MS-OXCROPS.testsettings /unique
pause
|
XinwLi/Interop-TestSuites-1
|
ExchangeMAPI/Source/Scripts/MS-OXCROPS/RunMSOXCROPS_S06_TC01_TestRopsGetProperties.cmd
|
bat
|
mit
| 302 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.