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
|
---|---|---|---|---|---|
cd D:\cloud\LYM
REM perl D:\cloud\LYM\cmd\PG_confGenerator-v3.prl effe\configuration\LYM_effeComposite-head-single.csv effe\scenarios\LYM_effeComposite-scenario-v1.csv effe\shaders\LYM_Drawing_effe-FS.glsl effe\shaders\LYM_Drawing_effe-FS_full.glsl effe\shaders\LYM_Composition_effe-FS.glsl effe\shaders\LYM_Composition_effe-FS_full.glsl effe\shaders\LYM_Camera_effe-FS.glsl effe\shaders\LYM_Camera_effe-FS_full.glsl effe\shaders\LYM_Final_effe-FS.glsl effe\shaders\LYM_Final_effe-FS_full.glsl ..\Porphyrograph\Porphyrograph-effe-src\pg_script_header.h ..\Porphyrograph\Porphyrograph-effe-src\pg_script_body.cpp ..\Porphyrograph\Porphyrograph-effe-src\pg_shader_header.h ..\Porphyrograph\Porphyrograph-effe-src\pg_shader_body_decl.cpp ..\Porphyrograph\Porphyrograph-effe-src\pg_shader_body_bind.cpp ..\Porphyrograph\Porphyrograph-effe-src\pg_draw_body.cpp
D:\cloud\Porphyrograph\Porphyrograph-VC17\Release\effe\Porphyrograph_effe.exe ./effe/configuration/LYM_effeComposite-head-single.csv ./effe/scenarios/\LYM_effeComposite-scenario-v1.csv
| yukao/Porphyrograph | LYM-projects/batFiles/project-archives/CompositeSoundInitiative/effeComposite.PG-single.bat | bat | gpl-3.0 | 1,042 |
@echo off
setlocal
REM Copyright 2006-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the
REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the
REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS
REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
REM language governing permissions and limitations under the License.
REM Set intermediate env vars because the %VAR:x=y% notation below
REM (which replaces the string x with the string y in VAR)
REM doesn't handle undefined environment variables. This way
REM we're always dealing with defined variables in those tests.
set CHK_HOME=_%AWS_IAM_HOME%
if "%CHK_HOME:"=%" == "_" goto HOME_MISSING
"%AWS_IAM_HOME:"=%\bin\iam-cmd" UserModKeyView %*
goto DONE
:HOME_MISSING
echo AWS_IAM_HOME is not set
exit /b 1
:DONE
| bizo/aws-tools | iam/IAMCli-1.5.0/bin/iam-usermodkey.cmd | bat | apache-2.0 | 1,023 |
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:Rdpevor_VideoStreamingTest_Positive /Logger:trx
pause
| dongruiqing/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPEVOR/Rdpevor_VideoStreamingTest_Positive.cmd | bat | mit | 224 |
REM example of rendering a slideshow at 1 FPS and then converting it to a 3GP using ffmpeg
REM ---------------------------------------------------------------------------------------
bin\debug\Splicer.SlideShowConsole.exe /SourceImage:..\TestArtifacts\001.jpg /SourceImage:..\TestArtifacts\002.jpg /SourceImage:..\TestArtifacts\003.jpg /SoundtrackFile:..\TestArtifacts\ff404.wav /FPS:1 /OutputVideo:out.3gp /Renderer:AVI /FfmpegPath:c:\dev\tools\ffmpeg\ffmpeg.exe /EncodeTo3gpWithFfmpeg+ | Supermortal/OpenSource.Common | splicer-99885/src/Splicer.SlideShowConsole/example.cmd | bat | mit | 487 |
@echo off
setlocal
rem
rem Copyright (c) 1999, 2014 Tanuki Software, Ltd.
rem http://www.tanukisoftware.com
rem All rights reserved.
rem
rem This software is the proprietary information of Tanuki Software.
rem You shall use it only in accordance with the terms of the
rem license agreement you entered into with Tanuki Software.
rem http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html
rem
rem Java Service Wrapper general passthrough startup script.
rem
rem -----------------------------------------------------------------------------
rem These settings can be modified to fit the needs of your application
rem Optimized for use with version 3.5.25 of the Wrapper.
rem The base name for the Wrapper binary.
set _WRAPPER_BASE=wrapper
rem The directory where the Wrapper binary (.exe) file is located, this can be
rem either a absolute or relative path. If the path contains any special characters,
rem please make sure to quote the variable.
set _WRAPPER_DIR=
rem The name and location of the Wrapper configuration file. This will be used
rem if the user does not specify a configuration file as the first parameter to
rem this script. It will not be possible to specify a configuration file on the
rem command line if _PASS_THROUGH is set.
rem If a relative path is specified, please note that the location is based on the
rem location.
set _WRAPPER_CONF_DEFAULT="../conf/%_WRAPPER_BASE%.conf"
rem Makes it possible to override the Wrapper configuration file by specifying it
rem as the first parameter.
rem set _WRAPPER_CONF_OVERRIDE=true
rem _PASS_THROUGH tells the script to pass all parameters through to the JVM as
rem is.
set _PASS_THROUGH=true
rem Do not modify anything beyond this point
rem -----------------------------------------------------------------------------
rem
rem Resolve the real path of the wrapper.exe
rem For non NT systems, the _REALPATH and _WRAPPER_CONF values
rem can be hard-coded below and the following test removed.
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem Find the application home.
rem if no path path specified do the default action
IF not DEFINED _WRAPPER_DIR goto dir_undefined
set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR:"=%"
if not "%_WRAPPER_DIR:~-2,1%" == "\" set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR_QUOTED:"=%\"
rem check if absolute path
if "%_WRAPPER_DIR_QUOTED:~2,1%" == ":" goto absolute_path
if "%_WRAPPER_DIR_QUOTED:~1,1%" == "\" goto absolute_path
rem everythig else means relative path
set _REALPATH="%~dp0%_WRAPPER_DIR_QUOTED:"=%"
goto pathfound
:dir_undefined
rem Use a relative path to the wrapper %~dp0 is location of current script under NT
set _REALPATH="%~dp0"
goto pathfound
:absolute_path
rem Use an absolute path to the wrapper
set _REALPATH="%_WRAPPER_DIR_QUOTED:"=%"
:pathfound
rem
rem Decide on the specific Wrapper binary to use (See delta-pack)
rem
if "%PROCESSOR_ARCHITEW6432%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto amd64
if "%PROCESSOR_ARCHITECTURE%"=="IA64" goto ia64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-32.exe"
goto search
:amd64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-64.exe"
goto search
:ia64
set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-ia-64.exe"
goto search
:search
set _WRAPPER_EXE="%_WRAPPER_L_EXE:"=%"
if exist %_WRAPPER_EXE% goto conf
set _WRAPPER_EXE="%_REALPATH:"=%%_WRAPPER_BASE%.exe"
if exist %_WRAPPER_EXE% goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_WRAPPER_L_EXE%
echo %_WRAPPER_EXE%
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
if not [%_WRAPPER_CONF_OVERRIDE%]==[] (
set _WRAPPER_CONF="%~f1"
if not [%_WRAPPER_CONF%]==[""] (
shift
goto :startup
)
)
set _WRAPPER_CONF="%_WRAPPER_CONF_DEFAULT:"=%"
rem
rem Start the Wrapper
rem
:startup
rem Collect an parameters
:parameters
set _PARAMETERS=%_PARAMETERS% %1
shift
if not [%1]==[] goto :parameters
if [%_PASS_THROUGH%]==[] (
%_WRAPPER_EXE% -i %_WRAPPER_CONF%
) else (
%_WRAPPER_EXE% %_PARAMETERS% %_WRAPPER_CONF%
)
if not errorlevel 1 goto :eof
pause
| kohsah/exist | tools/wrapper/bin/control.bat | bat | lgpl-2.1 | 4,183 |
set SHADOW_ROOT=C:\Progra~1\xop2.3\extensions\shadowvui\shadow-2.3.0-win
set PATH=C:\Progra~1\xop2.3\extensions\shadowvui\shadow-2.3.0-win\bin;c:\windows\system32\cmd.exe
SET SHADOW_ENV_FILE=xsh_env_file.inp
echo 0 | trace -m menu
| kklmn/xrt | examples/withShadow/04_06/tmp0/shadow-trace.bat | bat | mit | 231 |
@REM
@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.
@echo off
if "%OS%" == "Windows_NT" setlocal
if NOT DEFINED CASSANDRA_HOME set CASSANDRA_HOME=%~dp0..
if NOT DEFINED CASSANDRA_CONF set CASSANDRA_CONF=%CASSANDRA_HOME%\conf
if NOT DEFINED CASSANDRA_MAIN set CASSANDRA_MAIN=org.apache.cassandra.tools.SSTableExport
if NOT DEFINED JAVA_HOME goto err
REM ***** JAVA options *****
set JAVA_OPTS=^
-Dlog4j.configuration=log4j-tools.properties
REM ***** CLASSPATH library setting *****
REM Ensure that any user defined CLASSPATH variables are not used on startup
set CLASSPATH=%CASSANDRA_HOME%\conf
REM For each jar in the CASSANDRA_HOME lib directory call append to build the CLASSPATH variable.
for %%i in (%CASSANDRA_HOME%\lib\*.jar) do call :append %%~fi
goto okClasspath
:append
set CLASSPATH=%CLASSPATH%;%1%2
goto :eof
:okClasspath
REM Include the build\classes directory so it works in development
set CASSANDRA_CLASSPATH=%CLASSPATH%;%CASSANDRA_HOME%\build\classes;%CASSANDRA_CONF%
set CASSANDRA_PARAMS=
set TOOLS_PARAMS=
goto runTool
:runTool
"%JAVA_HOME%\bin\java" %JAVA_OPTS% %CASSANDRA_PARAMS% -cp "%CASSANDRA_CLASSPATH%" "%CASSANDRA_MAIN%" %1 -e
goto finally
:err
echo JAVA_HOME environment variable must be set!
pause
:finally
ENDLOCAL
| milliondreams/brisk | resources/cassandra/bin/sstablekeys.bat | bat | apache-2.0 | 2,108 |
@REM
@REM Copyright 2010-2017 Boxfuse GmbH
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| pradheeps/flyway | flyway-gradle-plugin-largetest/src/test/resources/install/gradlew.bat | bat | apache-2.0 | 2,949 |
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------
@REM ----------------------------------------------------------------------------
@REM DbMaintain Start Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a JDK home dir
@REM
@REM Optional ENV vars
@REM DBMAINTAIN_JDBC_DRIVER - JDBC driver library to be used by DbMaintain. May optionally be multiple jars separated by semicolons.
@REM Preferably, this variable is set in the script setJdbcDriver.bat.
@REM DBMAINTAIN_HOME - location of DbMaintain's installed home dir
@REM DBMAINTAIN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
@REM DBMAINTAIN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
@REM DBMAINTAIN_OPTS - parameters passed to the Java VM when running DbMaintain
@REM e.g. to debug DbMaintain itself, use
@REM set DBMAINTAIN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@REM ----------------------------------------------------------------------------
@REM This batch script is based on the batch script for starting maven2 (mvn.bat)
@REM Begin all REM lines with '@' in case DBMAINTAIN_BATCH_ECHO is 'on'
@echo off
@REM enable echoing my setting DBMAINTAIN_BATCH_ECHO to 'on'
@if "%DBMAINTAIN_BATCH_ECHO%" == "on" echo %DBMAINTAIN_BATCH_ECHO%
@if (%DBMAINTAIN_JDBC_DRIVER%)==() goto callSetJdbcDriver
@REM
set JDBC_DRIVER=%DBMAINTAIN_JDBC_DRIVER%
goto afterCallSetJdbcDriver
:callSetJdbcDriver
call "setJdbcDriver.bat"
:afterCallSetJdbcDriver
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set HOME=%HOMEDRIVE%%HOMEPATH%)
@REM Execute a user defined script before this one
if exist "%HOME%\dbmaintainrc_pre.bat" call "%HOME%\dbmaintainrc_pre.bat"
set ERROR_CODE=0
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" @setlocal
if "%OS%"=="WINNT" @setlocal
@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome
echo.
echo ERROR: JAVA_HOME not found in your environment.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error
:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
echo.
echo ERROR: JAVA_HOME is set to an invalid directory.
echo JAVA_HOME = %JAVA_HOME%
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error
:chkMHome
if not "%DBMAINTAIN_HOME%"=="" goto valMHome
if "%OS%"=="Windows_NT" SET DBMAINTAIN_HOME=%~dp0
if "%OS%"=="WINNT" SET DBMAINTAIN_HOME=%~dp0
if not "%DBMAINTAIN_HOME%"=="" goto valMHome
echo.
echo ERROR: DBMAINTAIN_HOME not found in your environment.
echo Please set the DBMAINTAIN_HOME variable in your environment to match the
echo location of the DbMaintain installation
echo.
goto error
:valMHome
:stripMHome
if not _%DBMAINTAIN_HOME:~-1%==_\ goto checkMBat
set DBMAINTAIN_HOME=%DBMAINTAIN_HOME:~0,-1%
goto stripMHome
:checkMBat
if exist "%DBMAINTAIN_HOME%\dbmaintain.bat" goto init
echo.
echo ERROR: DBMAINTAIN_HOME is set to an invalid directory.
echo DBMAINTAIN_HOME = %DBMAINTAIN_HOME%
echo Please set the DBMAINTAIN_HOME variable in your environment to match the
echo location of the DbMaintain installation
echo.
goto error
@REM ==== END VALIDATION ====
:init
@REM Decide how to startup depending on the version of windows
@REM -- Windows NT with Novell Login
if "%OS%"=="WINNT" goto WinNTNovell
@REM -- Win98ME
if NOT "%OS%"=="Windows_NT" goto Win9xArg
:WinNTNovell
@REM -- 4NT shell
if "%@eval[2+2]" == "4" goto 4NTArgs
@REM -- Regular WinNT shell
set DBMAINTAIN_CMD_LINE_ARGS=%*
goto endInit
@REM The 4NT Shell from jp software
:4NTArgs
set DBMAINTAIN_CMD_LINE_ARGS=%$
goto endInit
:Win9xArg
@REM Slurp the command line arguments. This loop allows for an unlimited number
@REM of agruments (up to the command line limit, anyway).
set DBMAINTAIN_CMD_LINE_ARGS=
:Win9xApp
if %1a==a goto endInit
set DBMAINTAIN_CMD_LINE_ARGS=%DBMAINTAIN_CMD_LINE_ARGS% %1
shift
goto Win9xApp
@REM Reaching here means variables are defined and arguments have been captured
:endInit
SET DBMAINTAIN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
SET DBMAINTAIN_CLASSPATH="%DBMAINTAIN_HOME%\dbmaintain-${project.version}.jar";%JDBC_DRIVER%
@REM Start DBMAINTAIN
:runm2
%DBMAINTAIN_JAVA_EXE% %DBMAINTAIN_OPTS% -classpath %DBMAINTAIN_CLASSPATH% org.dbmaintain.launch.commandline.CommandLine %DBMAINTAIN_CMD_LINE_ARGS%
if ERRORLEVEL 1 goto error
goto end
:error
if "%OS%"=="Windows_NT" @endlocal
if "%OS%"=="WINNT" @endlocal
set ERROR_CODE=1
:end
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" goto endNT
if "%OS%"=="WINNT" goto endNT
@REM For old DOS remove the set variables from ENV - we assume they were not set
@REM before we started - at least we don't leave any baggage around
set DBMAINTAIN_JAVA_EXE=
set DBMAINTAIN_OPTS=
set DBMAINTAIN_CLASSPATH=
set JDBC_DRIVER=
set DBMAINTAIN_CMD_LINE_ARGS=
goto finish
:endNT
@endlocal & set ERROR_CODE=%ERROR_CODE%
:postExec
if exist "%HOME%\dbmaintainrc_post.bat" call "%HOME%\dbmaintainrc_post.bat"
@REM pause the batch file if DBMAINTAIN_BATCH_PAUSE is set to 'on'
if "%DBMAINTAIN_BATCH_PAUSE%" == "on" pause
if "%DBMAINTAIN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
exit /B %ERROR_CODE%
| intouchfollowup/dbmaintain | dbmaintain/commandline/dbmaintain.bat | bat | apache-2.0 | 6,470 |
:: Licensed to the Apache Software Foundation (ASF) under one
:: or more contributor license agreements. See the NOTICE file
:: distributed with this work for additional information
:: regarding copyright ownership. The ASF licenses this file
:: to you under the Apache License, Version 2.0 (the
:: "License"); you may not use this file except in compliance
:: with the License. You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing,
:: software distributed under the License is distributed on an
:: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
:: KIND, either express or implied. See the License for the
:: specific language governing permissions and limitations
:: under the License.
@ECHO OFF
SET script_path="%~dp0translationreport"
IF EXIST %script_path% (
node "%script_path%" %*
) ELSE (
ECHO.
ECHO ERROR: Could not find 'translationreport' script in 'bin' folder, aborting...>&2
EXIT /B 1
) | Icenium/cordova-docs | tools/bin/translationreport.bat | bat | apache-2.0 | 1,034 |
@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\project-template.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\project-template.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
| snakeleon/YouCompleteMe-x64 | third_party/ycmd/third_party/jedi_deps/numpydoc/doc/make.bat | bat | gpl-3.0 | 6,721 |
..\.nuget\nuget pack MonadLib.csproj -Properties Configuration=Release
| taylorjg/Monads | MonadLib/NugetPack.cmd | bat | mit | 71 |
@echo off
copy ..\LICENSE .
copy ..\README.md .
zip -r ChordApp.zip *
zip -d ChordApp.zip *.agc *.agk *.bat Source/
mkdir \temp\builds
del /Q \temp\builds\ChordApp.zip
move ChordApp.zip \temp\builds | paulscottrobson/MerlinSoftware | Chord Practice/build.bat | bat | mit | 198 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\blessed\bin\tput.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\blessed\bin\tput.js" %*
) | glendora-js/little-library | node_modules/.bin/blessed.cmd | bat | mit | 186 |
@Echo OFF
@setlocal EnableExtensions EnableDelayedExpansion
IF %1.==. GOTO Usage
set NUGET_EXE=%~dp0..\.nuget\nuget.exe
set BASE_PATH=%1
set VERSION=%2
set SRC_DIR=%3
IF %2 == "" set VERSION=%~dp0..\Build\Version.txt
@echo CreateOrleansNugetPackages running in directory = %1
@cd
@echo CreateOrleansNugetPackages version file = %VERSION% from base dir = %BASE_PATH% using nuget location = %NUGET_EXE%
if "%BASE_PATH%" == "." (
if EXIST "Release" (
set BASE_PATH=Release
) else if EXIST "Debug" (
set BASE_PATH=Debug
)
)
@echo Using binary drop location directory %BASE_PATH%
if EXIST "%VERSION%" (
@Echo Using version number from file %VERSION%
FOR /F "usebackq tokens=1,2,3,4 delims=." %%i in (`type "%VERSION%"`) do (
set VERSION=%%i.%%j.%%k
set VERSION_BETA=%%l
)
) else (
@Echo ERROR: Unable to read version number from file %VERSION%
GOTO Usage
)
if not "%VERSION_BETA%" == "" ( set VERSION=%VERSION%-%VERSION_BETA% )
@echo VERSION_BETA=%VERSION_BETA%
@echo VERSION=%VERSION%
@echo CreateOrleansNugetPackages: Version = %VERSION% -- Drop location = %BASE_PATH% -- SRC_DIR=%SRC_DIR%
@set NUGET_PACK_OPTS= -Version %VERSION%
@set NUGET_PACK_OPTS=%NUGET_PACK_OPTS% -NoPackageAnalysis
@set NUGET_PACK_OPTS=%NUGET_PACK_OPTS% -BasePath "%BASE_PATH%" -Properties SRC_DIR=%SRC_DIR%
REM @set NUGET_PACK_OPTS=%NUGET_PACK_OPTS% -Verbosity detailed
FOR %%G IN ("%~dp0*.nuspec") DO (
"%NUGET_EXE%" pack "%%G" %NUGET_PACK_OPTS% -Symbols
if ERRORLEVEL 1 EXIT /B 1
)
FOR %%G IN ("%~dp0*.nuspec-NoSymbols") DO (
REM %%~dpnG gets the full filename path but without the extension
move "%%G" "%%~dpnG.nuspec"
"%NUGET_EXE%" pack "%%~dpnG.nuspec" %NUGET_PACK_OPTS%
if ERRORLEVEL 1 EXIT /B 1
move "%%~dpnG.nuspec" "%%G"
)
GOTO EOF
:Usage
@ECHO Usage:
@ECHO CreateOrleansPackages ^<Path to Orleans SDK folder^> ^<VersionFile^>
EXIT /B -1
:EOF
| Joshua-Ferguson/orleans | src/NuGet/CreateOrleansPackages.bat | bat | mit | 1,899 |
plot "to_plot" using 2 with line title "ambient",\
"to_plot" using 3 with line title "side1",\
"to_plot" using 5 with line title "side2",\
"to_plot" using 4 with line title "tank"
pause -1
| peterholstandersen/brew2mate | gnuplot.cmd | bat | mit | 205 |
@ECHO OFF
REM ============= HOW TO USE THIS FILE =============
REM
REM This file is the main launcher for the pipeline. It is recommended to make a shortcut to this file.
REM
REM Usage:
REM LAUNCHER.cmd [--fileName FILENAME] [--log {10,20,30,40}] version
REM
REM version: the number version of Maya requested
REM fileName: an optional argument of a file for Maya to open after loading.
REM This is intended to allow a Maya file to be dragged and dropped
REM onto the launcher, just like the standard Maya loader.
REM log: the default log level when the pipeline loads. Lowest number is
REM debug, highest is errors only.
@ECHO ON
set PYTHON="C:\Python27\python.exe"
%PYTHON% "%~dp0\python\launcher.py" 2018 --fileName "%1" --log 10 | b-sea/TheCrew | LAUNCHER.cmd | bat | mit | 809 |
@echo off
rem arg1: .rc file name w/o ext; arg2: output dll file name w ext
if .%1==. exit
brcc32 -fores.res "%1.rc"
if errorlevel 1 exit
dcc32 res.pas
if errorlevel 1 exit
move res.dll "%2"
| kadavris/ok-sklad | WHDistrib/resdll/mkres.cmd | bat | mit | 205 |
@REM **************
@echo off
if "%1"=="" echo usage: test.bat (firstname) (lastname)
if "%1"=="" goto :EOF
echo SELECT > myquery.sql
echo presapp_researchpresentation.id, >> myquery.sql
echo presapp_researchpresentation.research, >> myquery.sql
echo presapp_author.firstname, >> myquery.sql
echo presapp_author.lastname, >> myquery.sql
echo presapp_unit.name, >> myquery.sql
echo presapp_conference.end_date >> myquery.sql
echo FROM >> myquery.sql
echo presapp_researchpresentation_authors>> myquery.sql
echo INNER JOIN presapp_researchpresentation ON presapp_researchpresentation.id = presapp_researchpresentation_authors.researchpresentation_id >> myquery.sql
echo INNER JOIN presapp_author ON presapp_author.id = presapp_researchpresentation_authors.author_id >> myquery.sql
echo INNER JOIN presapp_unit ON presapp_unit.id = presapp_author.unit_id >> myquery.sql
echo INNER JOIN presapp_conference ON presapp_researchpresentation.conference_id = presapp_conference.id >> myquery.sql
echo WHERE >> myquery.sql
echo presapp_author.firstname LIKE '%%%1%%' and presapp_author.lastname LIKE '%%%2%%' and strftime('%%Y',presapp_conference.end_date)='2015'; >> myquery.sql;
sqlite3 db.sqlite3 ".read myquery.sql"
del myquery.sql
@REM **************
| rcdosado/Automator-Scripts | windows/sqlite-Automations/query-presentations-from-database/test.bat | bat | mit | 1,246 |
@echo off
@REM Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
@REM Script to run a command
if NOT "%ARQROOT%" == "" goto :okRoot
echo ARQROOT not set
exit /B
:okRoot
call %ARQROOT%\bat\make_classpath.bat %ARQROOT%
java -cp %CP% arq.arq %*
exit /B
| hdadler/sensetrace-src | com.ipv.sensetrace.RDFDatamanager/jena-2.11.0/jena-arq/bat/arq.bat | bat | gpl-2.0 | 288 |
cmd_drivers/firmware/built-in.o := rm -f drivers/firmware/built-in.o; /home/playfulgod/Android/2.3.5/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ar rcs drivers/firmware/built-in.o
| Jewbie/Kernel-2.6.32 | drivers/firmware/.built-in.o.cmd | bat | gpl-2.0 | 194 |
@echo off
set "UPX_Path=C:\Users\..."
set "exePath=C:\...\dist\yourProgram.exe"
set "setuppyPath=C:\Users\...setup.py" rem setup.py in same dir as main python program
"%setuppyPath%" py2exe
pause
"%UPX_Path%" "%exePath%"
pause | RickoLacharity/Python-EXE-Packaging | SETUP.bat | bat | gpl-2.0 | 227 |
rem Syntax Highlighting Test File for Dos Batch Scripts
rem Comment Line
:BEGIN
set HELLO="WORLD"
set WORLD="HELLO"
set HELLOWORLD="%WORLD% %HELLO%"
if "%1" == "/?" goto HELP
if "%1" == "go" goto EXECUTE
:HELP
echo .
echo Here is test file to show some dos batch highlighting
echo .
goto END
:EXECUTE
echo .
echo %HELLOWORLD%
echo .
:END
| robmcmullen/peppy | editra.in/tests/dos_batch_script.bat | bat | gpl-2.0 | 343 |
cmd_net/ipv6/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/ipv6/built-in.o net/ipv6/ipv6.o net/ipv6/ah6.o net/ipv6/esp6.o net/ipv6/ipcomp6.o net/ipv6/xfrm6_tunnel.o net/ipv6/tunnel6.o net/ipv6/xfrm6_mode_transport.o net/ipv6/xfrm6_mode_tunnel.o net/ipv6/xfrm6_mode_beet.o net/ipv6/mip6.o net/ipv6/netfilter/built-in.o net/ipv6/sit.o net/ipv6/ip6_tunnel.o net/ipv6/addrconf_core.o net/ipv6/exthdrs_core.o net/ipv6/inet6_hashtables.o
| sleshepic/epic_touch_kernel | net/ipv6/.built-in.o.cmd | bat | gpl-2.0 | 486 |
cmd_drivers/scsi/scsi_scan.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,drivers/scsi/.scsi_scan.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -DMODULE -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(scsi_scan)" -D"KBUILD_MODNAME=KBUILD_STR(scsi_mod)" -c -o drivers/scsi/scsi_scan.o drivers/scsi/scsi_scan.c
deps_drivers/scsi/scsi_scan.o := \
drivers/scsi/scsi_scan.c \
$(wildcard include/config/scsi/multi/lun.h) \
$(wildcard include/config/scsi/scan/async.h) \
$(wildcard include/config/sysfs/deprecated.h) \
$(wildcard include/config/scsi/logging.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mmu.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/linkage.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/blkdev.h \
$(wildcard include/config/block.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/blk/dev/bsg.h) \
$(wildcard include/config/bounce.h) \
$(wildcard include/config/blk/dev/integrity.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/major.h \
include/linux/genhd.h \
$(wildcard include/config/fail/make/request.h) \
$(wildcard include/config/solaris/x86/partition.h) \
$(wildcard include/config/bsd/disklabel.h) \
$(wildcard include/config/unixware/disklabel.h) \
$(wildcard include/config/minix/subpartition.h) \
include/linux/kdev_t.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/semaphore.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/radix-tree.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \
arch/arm/plat-pnx/include/mach/vmalloc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
include/linux/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/shmparam.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/kmap_types.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \
arch/arm/plat-pnx/include/mach/irqs.h \
$(wildcard include/config/arch/pnx67xx.h) \
include/linux/irq_cpustat.h \
include/linux/backing-dev.h \
$(wildcard include/config/debug/fs.h) \
include/linux/mempool.h \
include/linux/bio.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/io.h \
arch/arm/plat-pnx/include/mach/io.h \
arch/arm/plat-pnx/include/mach/hardware.h \
$(wildcard include/config/vaddr.h) \
arch/arm/plat-pnx/include/mach/cpu.h \
$(wildcard include/config/arch/pnx67xx/v2.h) \
$(wildcard include/config/arch/pnx6708.h) \
$(wildcard include/config/arch/pnx6711.h) \
$(wildcard include/config/arch/pnx6712.h) \
arch/arm/plat-pnx/include/mach/regs-pnx67xx.h \
$(wildcard include/config/offset.h) \
$(wildcard include/config/reg.h) \
$(wildcard include/config/value.h) \
include/linux/bsg.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
include/linux/elevator.h \
include/linux/delay.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/delay.h \
include/linux/kthread.h \
include/linux/async.h \
include/scsi/scsi.h \
include/scsi/scsi_cmnd.h \
include/linux/dma-mapping.h \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/have/dma/attrs.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/dma-mapping.h \
include/linux/scatterlist.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/scsi/scsi_device.h \
include/scsi/scsi_driver.h \
include/scsi/scsi_devinfo.h \
include/scsi/scsi_host.h \
include/scsi/scsi_transport.h \
include/linux/transport_class.h \
include/linux/attribute_container.h \
include/scsi/scsi_eh.h \
drivers/scsi/scsi_priv.h \
$(wildcard include/config/scsi/proc/fs.h) \
$(wildcard include/config/scsi/netlink.h) \
drivers/scsi/scsi_logging.h \
drivers/scsi/scsi_scan.o: $(deps_drivers/scsi/scsi_scan.o)
$(deps_drivers/scsi/scsi_scan.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | drivers/scsi/.scsi_scan.o.cmd | bat | gpl-2.0 | 24,803 |
cmd_mm/init-mm.o := arm-eabi-gcc -Wp,-MD,mm/.init-mm.o.d -nostdinc -isystem /home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include -I/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(init_mm)" -D"KBUILD_MODNAME=KBUILD_STR(init_mm)" -c -o mm/init-mm.o mm/init-mm.c
deps_mm/init-mm.o := \
mm/init-mm.c \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/auxvec.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/posix_types.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/processor.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/hwcap.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/irqflags.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
arch/arm/mach-tegra/include/mach/barriers.h \
include/asm-generic/cmpxchg-local.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/tim/ICS/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/wait.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/current.h \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/string.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/sparsemem.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
$(wildcard include/config/zone/dma.h) \
include/linux/const.h \
arch/arm/mach-tegra/include/mach/memory.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-tegra/include/mach/vmalloc.h \
/home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
mm/init-mm.o: $(deps_mm/init-mm.o)
$(deps_mm/init-mm.o):
| timmytim/honeybutter_kernel | mm/.init-mm.o.cmd | bat | gpl-2.0 | 14,863 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\STochasticEngineforPathwaySimulation.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\STochasticEngineforPathwaySimulation.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
| CNS-OIST/STEPS_Example | user_manual/make.bat | bat | gpl-2.0 | 6,770 |
/* ReXX */
/*
* $Id:
*/
/* Create Plucker Object on Desktop */
Call RxFuncAdd "SysLoadFuncs","RexxUtil","SysLoadFuncs"
Call SysLoadFuncs
Parse ARG installdir Port
'@Echo OFF'
if installdir = "" then installdir = Directory()
env = 'OS2ENVIRONMENT'
/* homedir = VALUE('HOME', , env) */
/* Python can't handle driveletters, so home has to reside below the
* actual Python-Conduit. We assure this by setting HOME explicitly
* via hotsync.cmd */
homedir = installdir || '\parser\python';
/* Create Folder on desktop */
rc=SysCreateObject("WPFolder","Plucker^for OS/2","<WP_DESKTOP>","OBJECTID=<WP_Plucker>")
if rc then do
say "Plucker-folder created sucessfully"
end
else say "Plucker-folder could not be created: "||rc
rc=SysSetObjectData("<WP_Plucker>","ICONFILE="||installdir||"\os2\DOKUMENT.ICO;ICONNFILE=1,"||installdir||"\os2\DOKUMEN1.ICO")
/* Place the necessary objects in the folder */
rc=Directory(installdir)
CurrentDir=Directory()
FileName=CurrentDir||"\parser\python\hotsync.cmd"
ExeName="EXENAME="||FileName||";ICONFILE="||CurrentDir||"\os2\plucker.ico;STARTUPDIR="CurrentDir||"\parser\python"
If SysCreateObject("WPProgram","Plucker Hotsync","<WP_Plucker>",ExeName) then do
Say "Desktop Object for Plucker was created."
End
FileName=CurrentDir||"\parser\os2\irhotsync.cmd"
ExeName="EXENAME=pilot-xfer.exe;Parameters=-p [IR-Port?] -i "||homedir||"\.plucker\Plucker.pdb;ICONFILE="||CurrentDir||"\os2\radar.ico;STARTUPDIR="CurrentDir||"\parser\os2"
If SysCreateObject("WPProgram","Plucker IR-Hotsync","<WP_Plucker>",ExeName) then do
Say "Desktop Object for IR-Plucker was created."
End
ExeName="EXENAME=E.EXE;PARAMETERS="||homedir||"\.plucker\home.html;ICONFILE="||installdir||"\os2\news.ico"
If SysCreateObject("WPProgram","Plucker Channels", "<WP_Plucker>", Exename) then say "Homepage-Object created"
ExeName="EXENAME=netscape.exe;PARAMETERS=http://www.rubberchicken.org/products/plucker;ICONFILE="||installdir||"\os2\netscape.ico"
If SysCreateObject("WPProgram","Home of Plucker", "<WP_Plucker>", ExeName) then say "Link created"
Exename="EXENAME=pilot-xfer.exe;PARAMETERS=-i "||homedir||"\.plucker\PluckerDB.pdb;ICONFILE="||installdir||"\os2\Tricode.ico"
If SysCreateObject("WPProgram","Transfer data only","<WP_Plucker>",ExeName) then say "Sync-Object created"
Exename="EXENAME=e.exe;PARAMETERS="||installdir||"\README.OS2;ICONFILE="||installdir||"\os2\CWPROJEC.ICO"
If SysCreateObject("WPProgram","Readme^for OS/2","<WP_Plucker>",ExeName) then say "Readme added"
Exit
| arpruss/plucker | os2/Recreate.cmd | bat | gpl-2.0 | 2,612 |
cmd_arch/arm/lib/copy_page.o := /home/friedrich420/kernel/s4/S4GEKernel/scripts/gcc-wrapper.py /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.copy_page.o.d -nostdinc -isystem /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/../lib/gcc/arm-eabi/4.7/include -I/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/friedrich420/kernel/s4/S4GEKernel/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -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/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/linkage.h \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/cpu/use/domains.h) \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/hwcap.h \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
/home/friedrich420/kernel/s4/S4GEKernel/arch/arm/include/asm/asm-offsets.h \
include/generated/asm-offsets.h \
/home/friedrich420/kernel/s4/S4GEKernel/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):
| friedrich420/S4-GPE-AEL-Kernel-4.4.3 | arch/arm/lib/.copy_page.o.cmd | bat | gpl-2.0 | 2,553 |
cmd_drivers/media/usb/dvb-usb/built-in.o := rm -f drivers/media/usb/dvb-usb/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/media/usb/dvb-usb/built-in.o
| avareldalton85/rpi2-linux-rt | drivers/media/usb/dvb-usb/.built-in.o.cmd | bat | gpl-2.0 | 223 |
cmd_mm/page_io.o := gcc -Wp,-MD,mm/.page_io.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(page_io)" -D"KBUILD_MODNAME=KBUILD_STR(page_io)" -c -o mm/page_io.o mm/page_io.c
deps_mm/page_io.o := \
mm/page_io.c \
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 \
$(wildcard include/config/x86/32.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/kernel_stat.h \
include/asm/irq.h \
include/asm/irq_32.h \
$(wildcard include/config/irqbalance.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/sysfs.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/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/capability.h \
include/linux/timex.h \
include/linux/time.h \
include/linux/math64.h \
include/asm/div64.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/linux/kref.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/path.h \
include/linux/pid.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
include/linux/rcuclassic.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/kobject.h \
include/linux/sysfs.h \
include/linux/latencytop.h \
include/linux/aio.h \
include/linux/workqueue.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm-x86/mach-default/irq_vectors.h \
include/asm-x86/mach-default/irq_vectors_limits.h \
include/linux/pagemap.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.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/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/namei.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/radix-tree.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/highmem.h \
include/linux/uaccess.h \
include/asm/uaccess.h \
include/asm/uaccess_32.h \
$(wildcard include/config/x86/intel/usercopy.h) \
$(wildcard include/config/x86/wp/works/ok.h) \
include/asm/cacheflush.h \
$(wildcard include/config/debug/rodata.h) \
$(wildcard include/config/debug/rodata/test.h) \
include/asm/highmem.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/asm/hardirq.h \
include/asm/hardirq_32.h \
include/linux/irq.h \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq_regs.h \
include/asm/irq_regs_32.h \
include/asm/hw_irq.h \
include/asm/hw_irq_32.h \
include/linux/profile.h \
include/asm/sections.h \
include/asm-generic/sections.h \
include/linux/irq_cpustat.h \
include/asm/tlbflush.h \
include/linux/swap.h \
include/linux/memcontrol.h \
$(wildcard include/config/cgroup/mem/cont.h) \
include/linux/bio.h \
include/linux/mempool.h \
include/linux/ioprio.h \
include/linux/iocontext.h \
include/asm/io.h \
include/asm/io_32.h \
include/asm-generic/iomap.h \
include/linux/vmalloc.h \
include/linux/swapops.h \
include/linux/writeback.h \
mm/page_io.o: $(deps_mm/page_io.o)
$(deps_mm/page_io.o):
| namgk/kernel-tut | mm/.page_io.o.cmd | bat | gpl-2.0 | 18,877 |
cmd_drivers/switch/built-in.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/switch/built-in.o drivers/switch/switch_class.o
| TeamGlide/LiteKernel | drivers/switch/.built-in.o.cmd | bat | gpl-2.0 | 151 |
@setlocal
@REM in boost root - bjam --build-dir=c:\boost --build-type=complete --toolset=msvc-9.0 address-model=64 architecture=x86 --with-system
@set CWD=%CD%
@if NOT "%RDPARTY_DIR%x" == "x" goto DNSEL
@call _selectMSVC.x64
@if ERRORLEVEL 1 goto NOMSVC
@if "%RDPARTY_DIR%x" == "x" goto NOMSVC
@if "%GET_EXE%x" == "x" set GET_EXE=wget
@if "%GET_OPT%x" == "x" set GET_OPT=-O
@if "%UZ_EXE%x" == "x" set UZ_EXE=7z
@if "%UZ_OPT%x" == "x" set UZ_OPT=x
@if "%HAVELOG%x" == "x" set HAVELOG=0
@if "%ERRLOG%x" == "x" set ERRLOG=error2.txt
@REM echo Is MSVC setup ok... any key to continue...
@REM pause
:DNSEL
@goto DO_BOOST_BUILD
:DO_BOOST_SP
@echo %0: ##### Download ^& compile LIBBOOST %BLDLOG%
IF %HAVELOG% EQU 1 (
@echo %0: ##### Download ^& compile LIBBOOST to %LOGFIL%
)
@REM But must have something of boost, even at this early stage
@echo But must have something of boost, even at this early stage... UGH!
@REM GOTO DO_BOOST2
@REM ECHO However this is ONLY obtaining the simpits boost and binaries %BLDLOG%
@REM ECHO while download_and_compile obtains the SVN source and does a compile %BLDLOG%
@REM ECHO So this is presently SKIPPED %BLDLOG%
@REM GOTO DN_BOOST
@REM :DO_BOOST2
@REM set TMP_URL=http://flightgear.simpits.org:8080/job/Boost-Win64/lastSuccessfulBuild/artifact/*zip*/archive.zip
@REM set TMP_URL=http://flightgear.simpits.org:8080/job/Boost-Win64/lastSuccessfulBuild/artifact/*zip*/Boost.zip
@REM 20160509 - Update Jenkins Boot-win artifacts...
@set TMP_URL=http://flightgear.simpits.org:8080/view/Windows/job/Boost-Win/lastSuccessfulBuild/artifact/*zip*/archive.zip
@set TMP_ZIP=libboost.zip
@set TMP_SRC=Boost
@if EXIST %TMP_SRC%\nul goto DN_BOOST_SP
@echo Check fo existance of %TMP_ZIP%
@if NOT EXIST %TMP_ZIP% (
@echo Doing 'CALL %GET_EXE% %TMP_URL% %GET_OPT% %TMP_ZIP%'
@CALL %GET_EXE% %TMP_URL% %GET_OPT% %TMP_ZIP%
@if ERRORLEVEL 1 goto NO_B_ZIP
) else (
@echo Found simpits boost %TMP_ZIP%
)
@if NOT EXIST %TMP_ZIP% (
@set /A HAD_ERROR+=1
@echo %HAD_ERROR%: Download from %TMP_URL% to %TMP_ZIP% FAILED!
@echo %HAD_ERROR%: Download from %TMP_URL% to %TMP_ZIP% FAILED! >> %ERRLOG%
@GOTO NO_B_ZIP
@REM goto DN_BOOST
)
@if NOT EXIST Boost\nul (
@if NOT EXIST archive\Boost\nul (
@echo Doing: 'CALL %UZ_EXE% %UZ_OPT% %TMP_ZIP%'
CALL %UZ_EXE% %UZ_OPT% %TMP_ZIP%
)
CALL :SLEEP1
MOVE archive\Boost .
RMDIR archive
)
@if NOT EXIST %TMP_SRC%\nul (
@set /A HAD_ERROR+=1
@echo %HAD_ERROR%: Failed to set up %TMP_SRC%!
@echo %HAD_ERROR%: Failed to set up %TMP_SRC%! >> %ERRLOG%
@GOTO NO_B_SRC
)
CD %TMP_SRC%
@if NOT EXIST lib\nul (
@if EXIST lib64\nul (
@REN lib64 lib
)
)
@cd %CWD%
@REM if NOT EXIST include\boost-1_55\nul (
@REM MD include\boost-1_55
@REM )
@REM @if EXIST boost (
@REM MOVE boost include\boost-1_55
@REM )
@set _TMP_LIBS=%_TMP_LIBS% BOOST
@echo Have done simpits setup of Boost...
@goto DN_BOOST_SP
@REM Boost from simpits archive errors
:NO_B_ZIP
@echo Unable to download %TMP_ZIP%
@goto ISERR
:NO_B_SRC
@echo Failed to create %TMP_SRC%
@goto ISERR
:DN_BOOST_SP
@goto END
:DO_BOOST_BUILD
@REM Send build output to a 'temporary' folder
@set TMPBLD=%CD%\build\boost
@if NOT EXIST build\nul ( @mkdir build )
@set BOOST_ROOT=%CD%\Boost
@if NOT EXIST %BOOST_ROOT%\nul goto NOBOOST
@REM This should be set in _selectMSVC
@set TMPINST=%CD%\%RDPARTY%
@cd %BOOST_ROOT%
@if ERRORLEVEL 1 goto NOROOT
@set TMPBS=bootstrap.bat
@set TMPEXE=b2.exe
@set TMPLIB=lib
@if EXIST %TMPLIB%\nul goto DONELIB
@if EXIST %TMPEXE% goto GOTBS
@if NOT EXIST %TMPBS% goto NOBS
call %TMPBS%
@if NOT EXIST %TMPEXE% goto ERR1
@echo Done bjam build...
@REM pause
:GOTBS
@set B2OPTS=stage
@set B2OPTS=%B2OPTS% --build-type=complete
@set B2OPTS=%B2OPTS% --build-dir=%TMPBLD%
@set B2OPTS=%B2OPTS% toolset=msvc
@set B2OPTS=%B2OPTS% link=static
@set B2OPTS=%B2OPTS% address-model=64
@REM Maybe NOT required for 'stage' build
@REM set B2OPTS=%B2OPTS% --prefix="%TMPINST%"
@REM limit the build to just 'system' and 'thread'
@set B2OPTS=%B2OPTS% --with-system --with-thread --with-date_time
@set TMPOPTS=%B2OPTS%
@if "%SHOW_LIBS%x" == "1x" (
@echo Show libraries that will be built...
@echo Doing: %TMPEXE% %TMPOPTS% --show-libraries
@%TMPEXE% %TMPOPTS% --show-libraries
@echo *** CONTINUE with BUILD? *** Only Ctrl+C aborts. All other key continue...
@pause
)
@echo Doing %TMPEXE% %TMPOPTS%
@%TMPEXE% %TMPOPTS%
@if ERRORLEVEL 1 goto BJAMERR
@if NOT EXIST stage\lib\nul goto NOLIBS
@move stage\lib .
@if ERRORLEVEL 1 goto NOMOVE
@echo.
@echo For cleanup could delete ROOT\build\boost...
@echo Appears a successful Boost build...
@echo.
@goto END
:NOMOVE
@echo Error: Tried 'move stage\lib .`! Got error!
@goto ISERR
:NOLIBS
@echo.
@echo Action '%TMPEXE% %TMPOPTS%' did not build stage\lib dir!!!
@echo.
@goto ISERR
:BJAMERR
@echo.
@echo Action '%TMPEXE% %TMPOPTS%' exited error! Fix and re-run...
@echo.
@goto ISERR
:NOROOT
@echo Error: cd %BOOST_ROOT%! FAILED!
@goto ISERR
:NOBOOST
@echo Error: Can NOT locate boost root %BOOST_ROOT%! *** FIX ME ***
@goto ISERR
:ERR1
@echo ERROR: Unable to build the build tools, like %TMPEXE%
@goto ISERR
:NOBS
@echo ERROR: Can NOT locate %TMPBS% file in %CD%! *** FIX ME ***!!!
@goto ISERR
:NOMSVC
@echo ERROR: In MSVC setup...
@goto ISERR
:ISERR
@endlocal
@exit /b 1
:DONELIB
@echo.
@echo Found a 'lib' diretory in %CD%
@echo Delete this to RE-BUILD all the libraries
@echo.
@goto END
:SLEEP1
@echo Doing: 'timeout /t 1`
@timeout /t 1 >nul 2>&1
@goto :EOF
:END
@endlocal
@exit /b 0
@REM eof
| geoffmcl/test-sg | scripts/d-and-c/build-boost.x64.bat | bat | gpl-2.0 | 5,476 |
cmd_fs/sysfs/bin.o := ppc_4xx-gcc -m32 -Wp,-MD,fs/sysfs/.bin.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(bin)" -D"KBUILD_MODNAME=KBUILD_STR(bin)" -c -o fs/sysfs/.tmp_bin.o fs/sysfs/bin.c
deps_fs/sysfs/bin.o := \
fs/sysfs/bin.c \
$(wildcard include/config/numa.h) \
include/linux/errno.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/fsnotify.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/fs/posix/acl.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/wait.h \
$(wildcard include/config/lockdep.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \
$(wildcard include/config/phys/64bit.h) \
include/asm-generic/int-ll64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \
$(wildcard include/config/vsx.h) \
$(wildcard include/config/ppc32.h) \
$(wildcard include/config/ppc/prep.h) \
$(wildcard include/config/task/size.h) \
$(wildcard include/config/kernel/start.h) \
$(wildcard include/config/ppc64.h) \
$(wildcard include/config/4xx.h) \
$(wildcard include/config/booke.h) \
$(wildcard include/config/altivec.h) \
$(wildcard include/config/spe.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \
$(wildcard include/config/40x.h) \
$(wildcard include/config/fsl/emb/perfmon.h) \
$(wildcard include/config/8xx.h) \
$(wildcard include/config/ppc/book3s/64.h) \
$(wildcard include/config/ppc/book3s/32.h) \
$(wildcard include/config/ppc/book3e/64.h) \
$(wildcard include/config/e200.h) \
$(wildcard include/config/ppc/cell.h) \
include/linux/stringify.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \
$(wildcard include/config/mpc10x/bridge.h) \
$(wildcard include/config/ppc/83xx.h) \
$(wildcard include/config/8260.h) \
$(wildcard include/config/ppc/mpc52xx.h) \
$(wildcard include/config/bdi/switch.h) \
$(wildcard include/config/power3.h) \
$(wildcard include/config/power4.h) \
$(wildcard include/config/44x.h) \
$(wildcard include/config/e500.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \
$(wildcard include/config/power4/only.h) \
$(wildcard include/config/ibm405/err77.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \
$(wildcard include/config/403gcx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \
$(wildcard include/config/ppc/e500mc.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \
$(wildcard include/config/debugger.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/6xx.h) \
$(wildcard include/config/booke/wdt.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/typecheck.h \
include/linux/dynamic_debug.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \
include/linux/byteorder/big_endian.h \
include/linux/swab.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \
include/linux/byteorder/generic.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \
$(wildcard include/config/ppc/book3e.h) \
$(wildcard include/config/perf/events.h) \
include/asm-generic/cmpxchg-local.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \
$(wildcard include/config/ppc/64k/pages.h) \
$(wildcard include/config/ppc/16k/pages.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/relocatable.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/ppc/std/mmu/64.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/ppc/smlpar.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \
$(wildcard include/config/crash/dump.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/not/coherent/cache.h) \
$(wildcard include/config/pte/64bit.h) \
include/asm-generic/getorder.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/seqlock.h \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
include/linux/path.h \
include/linux/stat.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/init.h \
$(wildcard include/config/modules.h) \
include/linux/pid.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/capability.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
$(wildcard include/config/quota/netlink/interface.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/inet.h \
include/linux/fcntl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \
$(wildcard include/config/spu/base.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/timex.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
include/trace/define_trace.h \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \
$(wildcard include/config/dynamic/ftrace.h) \
include/trace/events/module.h \
include/linux/mm.h \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pgtable-ppc32.h \
$(wildcard include/config/consistent/size.h) \
$(wildcard include/config/fsl/booke.h) \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io.h \
$(wildcard include/config/ra.h) \
$(wildcard include/config/rd.h) \
$(wildcard include/config/ppc/indirect/io.h) \
$(wildcard include/config/eeh.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/pm/runtime.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/device.h \
$(wildcard include/config/swiotlb.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/delay.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/time.h \
$(wildcard include/config/ppc/iseries.h) \
$(wildcard include/config/power.h) \
$(wildcard include/config/8xx/cpu6.h) \
include/asm-generic/iomap.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/io-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-44x.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/pte-common.h \
$(wildcard include/config/ppc/std/mmu.h) \
$(wildcard include/config/kgdb.h) \
$(wildcard include/config/xmon.h) \
$(wildcard include/config/kprobes.h) \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/uaccess.h \
fs/sysfs/sysfs.h \
fs/sysfs/bin.o: $(deps_fs/sysfs/bin.o)
$(deps_fs/sysfs/bin.o):
| mattkelly/linux-2.6-xlnx | fs/sysfs/.bin.o.cmd | bat | gpl-2.0 | 23,519 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. epub3 to make an epub3
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
echo. dummy to check syntax errors of document sources
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 1>NUL 2>NUL
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\DeltaGreenCharacterGenerator.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\DeltaGreenCharacterGenerator.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "epub3" (
%SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub3 file is in %BUILDDIR%/epub3.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
if "%1" == "dummy" (
%SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy
if errorlevel 1 exit /b 1
echo.
echo.Build finished. Dummy builder generates no files.
goto end
)
:end
| zejacobi/DeltaGreen | Docs/make.bat | bat | gpl-3.0 | 7,495 |
@echo off
@setlocal
::-----------------------------------------------------------------------------------------
:ENV
set JAVA_HOME=N:\PROG\jdk1.7.0_79
if not exist %JAVA_HOME% set JAVA_HOME=..\..\jdk1.7.0_79
set PATH=%PATH%;%JAVA_HOME%\bin
set JAR_NAME=tain-spirit-1.0.jar
::-----------------------------------------------------------------------------------------
:OPTION
set OPTION= -Dclass=SpiritServer
set OPTION=%OPTION% -Dtain.kr.com.spirit.joint.listen.port=20025
::-----------------------------------------------------------------------------------------
:RUN_JAR
java %OPTION% -jar %JAR_NAME%
::-----------------------------------------------------------------------------------------
:END
pause
::timeout 1
@endlocal
| grtlinux/TAIN_SPIRIT | TAIN_SPIRIT/project/spirit1.0/bin/spiritServer.bat | bat | gpl-3.0 | 739 |
cmd /k node "D:\discord_MonoBot\lib\bot.js"
| 2Goo/monobot | Run Bot.bat | bat | gpl-3.0 | 45 |
@echo off
SET pathtome=%~dp0
SET SZIP="C:\Program Files\7-Zip\7z.exe"
SET projectName=AVANE
copy %pathtome%..\bin\%projectName%.swc %pathtome%
REM contents of SWC.
copy /Y %pathtome%%projectName%.swc %pathtome%%projectName%Extract.swc
ren %pathtome%%projectName%Extract.swc %projectName%Extract.zip
call %SZIP% e %pathtome%%projectName%Extract.zip -o%pathtome%
del %pathtome%%projectName%Extract.zip
REM Copy library.swf to folders.
echo COPYING LIBRARY SWF INTO PLACE
copy %pathtome%library.swf %pathtome%platforms\android
echo COPYING AARS INTO PLACE
copy /Y %pathtome%..\..\native_library\android\%projectName%\app\build\outputs\aar\app-release.aar %pathtome%platforms\android\app-release.aar
copy /Y %pathtome%..\..\native_library\android\%projectName%\LibAVANE-Android\build\outputs\aar\LibAVANE-Android-release.aar %pathtome%platforms\android\LibAVANE-Android-release.aar
echo GETTING ANDROID JARS
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ classes.jar
ren %pathtome%platforms\android\classes.jar LibAVANE.jar
del platforms\\android\\classes.jar
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ jni\armeabi-v7a\libavane-lib.so
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ jni\armeabi-v7a\libffmpeg.so
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ jni\armeabi\libavane-lib.so
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ jni\armeabi\libffmpeg.so
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ jni\x86\libavane-lib.so
call %SZIP% x %pathtome%platforms\android\LibAVANE-Android-release.aar -o%pathtome%platforms\android\ jni\x86\libffmpeg.so
move %pathtome%platforms\android\jni %pathtome%platforms\android\libs
call %SZIP% x %pathtome%platforms\android\app-release.aar -o%pathtome%platforms\android\ classes.jar
echo "GENERATING ANE"
call adt.bat -package -target ane %projectName%-android.ane extension_android.xml ^
-swc %projectName%.swc ^
-platform Android-ARM ^
-C platforms/android library.swf classes.jar ^
libs/armeabi/libavane-lib.so ^
libs/armeabi/libffmpeg.so ^
libs/armeabi-v7a/libavane-lib.so ^
libs/armeabi-v7a/libffmpeg.so ^
-platformoptions platforms/android/platform.xml res/values/strings.xml ^
LibAVANE.jar ^
-platform Android-x86 ^
-C platforms/android library.swf classes.jar ^
libs/x86/libavane-lib.so ^
libs/x86/libffmpeg.so ^
-platformoptions platforms/android/platform.xml res/values/strings.xml ^
LibAVANE.jar ^
del platforms\\android\\library.swf
del platforms\\android\\classes.jar
del platforms\\android\\LibAVANE.jar
del platforms\\android\\app-release.aar
del platforms\\android\\LibAVANE-Android-release.aar
call DEL /F /Q /A %pathtome%library.swf
call DEL /F /Q /A %pathtome%catalog.xml
call DEL /F /Q /A %pathtome%%projectName%.swc
call rmdir /Q /S %pathtome%platforms\android\libs
echo "DONE!" | tuarua/AVANE | native_extension/ane/build_android_release.bat | bat | gpl-3.0 | 3,083 |
cd "C:\Estudio\aigamedev-resistance"
python client.py mybots
pause | DaniM/aigamedev-resistance | connect bots mybots to local.bat | bat | gpl-3.0 | 66 |
@Echo off
SetLocal EnableDelayedExpansion
:: this batch is used to generate the sources.xml from folders.
(
Echo ^<sources^>
Echo ^<programs^>
Echo ^<default pathversion^="1"^/^>
)>>"sources.xml"
for ^/f "Tokens=*" %%a in ('dir /b /A:D "*"') do (
Echo %%~na
(
Echo ^<source^>
Echo ^<name^>%%~na^<^/name^>
Echo ^<path pathversion^="1"^>Special:^/^/xbmc^/_cuts^/%%~na^/^<^/path^>
Echo ^<^/source^>
)>>"sources.xml"
)
(
Echo ^<source^>
Echo ^<name^>Ports^<^/name^>
Echo ^<path pathversion^="1"^>E:\Homebrew\^<^/path^>
Echo ^<path pathversion^="1"^>F:\Homebrew\^<^/path^>
Echo ^<path pathversion^="1"^>G:\Homebrew\^<^/path^>
Echo ^<^/source^>
Echo ^<source^>
Echo ^<name^>Xbox^<^/name^>
Echo ^<path pathversion^="1"^>E:\Games\^<^/path^>
Echo ^<path pathversion^="1"^>E:\Games1\^<^/path^>
Echo ^<path pathversion^="1"^>E:\Games2\^<^/path^>
Echo ^<path pathversion^="1"^>F:\Games\^<^/path^>
Echo ^<path pathversion^="1"^>F:\Games1\^<^/path^>
Echo ^<path pathversion^="1"^>F:\Games2\^<^/path^>
Echo ^<path pathversion^="1"^>G:\Games\^<^/path^>
Echo ^<path pathversion^="1"^>G:\Games1\^<^/path^>
Echo ^<path pathversion^="1"^>G:\Games2\^<^/path^>
Echo ^<^/source^>
Echo ^<^/programs^>
Echo ^<video^>
Echo ^<default pathversion^="1"^/^>
Echo ^<^/video^>
Echo ^<music^>
Echo ^<default pathversion^="1"^/^>
Echo ^<^/music^>
Echo ^<pictures^>
Echo ^<default pathversion^="1"^/^>
Echo ^<^/pictures^>
Echo ^<files^>
Echo ^<default pathversion^="1"^/^>
Echo ^<^/files^>
Echo ^<^/sources^>
)>>"sources.xml" | Rocky5/XBMC-Emustation | Mod Files/emustation/emulators/Create sources.xml.bat | bat | gpl-3.0 | 1,634 |
@setlocal
@call setenv.cmd skipAll
@set fileTraceLog=%~n0.trace.log
@set url=http://%targetHost%/paynet/api/v2/mgmt/settings
@set requestData=""
curl %optProxy% --trace-ascii %fileTraceLog% --trace-time %url%
| alexeybezverkhiy/fibonatix | Merchant/MerchantAPI/Tests/fb-mgmt-settings.cmd | bat | gpl-3.0 | 212 |
@echo off
setlocal
rem Usage -------------------------------------------------
rem -------------------------------------------------------
set JAVA_HOME=D:\util_portable\jdk-17_windows-x64_bin\jdk-17
set PATH=D:\work\SWDT_github\sw_dev\java\ext\bin;%PATH%
rem -------------------------------------------------------
set LOCAL_LIB_PATH=D:\usr\local\lib
set JAVA_EXT_LIB_PATH=D:\work\SWDT_github\sw_dev\java\ext\lib
set JAVA_RND_LIB_PATH=D:\work\SWDT_github\sw_dev\java\rnd\lib
rem set CLASSPATH=.;%LOCAL_LIB_PATH%\<jar-file>;%CLASSPATH%
rem set MAX_JAVA_MEMORY=800
rem set HEAP_OPTION=-Xms4096m -Xmx8192m
rem -------------------------------------------------------
call java %HEAP_OPTION% -jar %LOCAL_LIB_PATH%\<runnable-jar-file> <class-name>
rem start /b java %HEAP_OPTION% -jar %LOCAL_LIB_PATH%\<runnable-jar-file> <class-name>
rem start /min java %HEAP_OPTION% -jar %LOCAL_LIB_PATH%\<runnable-jar-file> <class-name>
rem Error -------------------------------------------------
rem call java %HEAP_OPTION% -jar %LOCAL_LIB_PATH%\<non-runnable-jar-file>
endlocal
echo on
| sangwook236/SWDT | sw_dev/java/run_jar.bat | bat | gpl-3.0 | 1,115 |
@echo off
set script_directory=%~dp0
set ant_home=apache-ant-1.8.2
REM detect 32 or 64 bits
set BITS_32_OR_64=64
if "%PROCESSOR_ARCHITECTURE%" == "x86" set BITS_32_OR_64=32
set PLATFORM=windows
echo Detected %PLATFORM% %BITS_32_OR_64%
if not "%TOOLS_JDK_HOME%" == "" goto else
set pvt_tools_jdk_home=%script_directory%..\..\..\IGO-GIT-Repository\tools_jdk_1.6.26\
if not exist %pvt_tools_jdk_home% goto no_tools_jdk_home
echo - Auto set tools_jdk_home to "%pvt_tools_jdk_home%"
goto endif
:else
echo - Setting tools_jdk_home from given environment variable to "%TOOLS_JDK_HOME%"
set pvt_tools_jdk_home=%TOOLS_JDK_HOME%
:endif
set java_home=%pvt_tools_jdk_home%\%PLATFORM%\%BITS_32_OR_64%\
if not exist %java_home% goto no_java_for_platform
set java_cmd=%java_home%bin\java
REM =========================================================================================================
REM Compile igotools
setLocal EnableDelayedExpansion
set CLASSPATH=
pushd %script_directory%%ant_home%\lib\
REM for %%x in (*.jar) do set CLASSPATH=%CLASSPATH%%script_directory%%ant_home%\lib\%%x;
for %%x in (*.jar) do (
REM set CLASSPATH=%CLASSPATH%%ant_home%\lib\%%x; & echo %CLASSPATH%
set CLASSPATH=!CLASSPATH!%script_directory%%ant_home%\lib\%%x;
)
popd
set CLASSPATH=!CLASSPATH!
REM needed for eclipse java compiler (jdt)
set CLASSPATH=%CLASSPATH%%script_directory%eclipse_helios\plugins\org.eclipse.jdt.core_3.6.0.v_A58.jar;
set CLASSPATH=%CLASSPATH%%script_directory%eclipse_helios\jdtCompilerAdapter.jar;
echo:
pushd %script_directory%
%java_cmd% -Dant.home=%script_directory%%ant_home% org.apache.tools.ant.launch.Launcher -logger org.apache.tools.ant.NoBannerLogger dist
popd
REM =========================================================================================================
REM =========================================================================================================
REM Run IGOTools
echo:
set CLASSPATH=%script_directory%_build\igotools.jar
set tools_jdk_home_property=
if not "%TOOLS_JDK_HOME%" == "" set tools_jdk_home_property= -Dtools.jdk.home=%TOOLS_JDK_HOME%
%java_cmd% -Xmx1G %tools_jdk_home_property% -Dtemplates.directory=%script_directory%templates -Dtools.eclipse.jdt.jar=%script_directory%eclipse_helios\plugins\org.eclipse.jdt.core_3.6.0.v_A58.jar -Dtools.jdt.adapter.jar=%script_directory%eclipse_helios\jdtCompilerAdapter.jar -Dant.home=%script_directory%%ant_home% -Digotools.home=%script_directory% es.igosoftware.tools.TBuild %target_project%
REM =========================================================================================================
goto end
:no_tools_jdk_home
echo:
echo ===============================================================================
echo ERROR: Can't find %pvt_tools_jdk_home%
echo ===============================================================================
exit /B 2
goto end
:no_java_for_platform
echo:
echo ===============================================================================
echo ERROR: Can't find java for %PLATFORM%\%BITS_32_OR_64% in %java_home%
echo ===============================================================================
exit /B 3
goto end
:end
set script_directory=
set target_project=
set ant_home=
set pvt_tools_jdk_home=
set BITS_32_OR_64=
set PLATFORM=
set java_home=
set java_cmd=
set CLASSPATH=
| AsherBond/MondocosmOS | glob3/igotools/run.bat | bat | agpl-3.0 | 3,379 |
mkdir tservts
cd tservts
set OLDINC=%INCLUDE%
set INCLUDE=%INCLUDE%;..\..\..\h;..\..\..\demo\utils;..\..\dp
cl /D_DEBUG /DSIMNET /W3 /Zi ..\tservt.c ..\tserv.c ..\tserva.c ..\tca.c ..\tcapw.c ..\crypttab.c ..\..\..\demo\utils\mywcs.c ..\..\3rdparty\d3des\d3des.c ..\..\3rdparty\md5\md5c.c ..\..\..\demo\utils\rawwin.c ..\..\..\demo\utils\eclock.c ..\..\dp\assoctab.c ..\..\dp\dynatab.c /MDd version.lib advapi32.lib user32.lib /Fetservts.exe
set INCLUDE=%OLDINC%
cd ..
| BygoneWorlds/anet | src/tca/mktts.bat | bat | lgpl-2.1 | 472 |
@ECHO off
:: [email protected]
:: https://github.com/RuiBranco/mkep
:: Started 15/5/2002
::CONFIG
::YOU CAN CHOOSE THE LANG
SET lang=en
::DO NOT CHANGE ANYTHING BELOW THIS LINE
::HOWEVER, I TRY TO WRITE A SIMPLE AND CLEAN CODE FOR ALL UNDERSTAND
::WINDOW TITLE
TITLE mkep - mkeggdrop
::SET VAR
SET drive=%~d0
SET folder=%~dp0
SET file=cron.exe
::CHECK FOR A LIBS
IF NOT "%folder%" == "%drive%\mkep\" GOTO ERROR2
IF NOT EXIST %systemroot%\System32\taskkill.exe GOTO :ERROR
IF NOT EXIST %systemroot%\System32\tasklist.exe GOTO :ERROR
IF NOT EXIST %drive%\mkep GOTO :ERROR1
::CHECK IF CRONTAB IS RUNNING
TASKLIST | FIND /i "%file%">NUL
IF %ERRORLEVEL% equ 1 (
ECHO Crontab is down. Trying to start Crontab.
START crontab\%file%
)
ECHO Crontab is down.
ECHO Trying to start Crontab.
START crontab\%file%
:RUN
::SHOW MENU
ECHO.
TYPE mklang\%lang%\menu-egg.txt
ECHO.
@ECHO off
TYPE mklang\%lang%\pe.txt
SET /p menu= :
IF '%menu%'=='1' GOTO MAKE
IF '%menu%'=='2' GOTO END
IF '%menu%'=='3' GOTO KILL
CLS
:MAKE
::ASKING FOR A BOT NICKNAME
ECHO.
SET nick=
TYPE mklang\%lang%\e1.txt
SET /P nick= :
ECHO.
::ASKING FOR A PASSWORD
SET pwd=
TYPE mklang\%lang%\e3.txt
SET /P pwd= :
ECHO.
:PORT
::ASKING FOR ANY PORT
SET port=
TYPE mklang\%lang%\ep2.txt
SET /P port= :
ECHO Checking port is avaiable.
netstat -a | FIND /i ":%port%"
IF errorlevel 1 GOTO CONTINUE
:BUSY
::IF PORT IS BUSY ASK FOR ANOTHER ONE
TYPE mklang\%lang%\ep3.txt
GOTO PORT
:CONTINUE
::ASKING OWNER NICKNAME
SET owner=
TYPE mklang\%lang%\e6.txt
SET /P owner= :
ECHO.
::ASKING FOR BOT USERNAME
SET email=
TYPE mklang\%lang%\e5.txt
SET /P email= :
ECHO.
::ASKING FOR A IRC SERVER
SET ircserver=
TYPE mklang\%lang%\e7.txt
SET /P ircserver= :
ECHO.
::CREATE THE CONFIGS
TYPE temp\temp1.txt >> eggdrop.conf
ECHO set username "egg-%nick%" >> eggdrop.conf
ECHO set admin "%email%" >> eggdrop.conf
ECHO set network "%ircserver%" >> eggdrop.conf
TYPE temp\temp2.txt >> eggdrop.conf
ECHO logfile mco * "logs/egg-%nick%.log" >> eggdrop.conf
ECHO logfile jpk egg-%nick% "logs/egg-%nick%.log" >> eggdrop.conf
TYPE temp\temp3.txt >> eggdrop.conf
ECHO set userfile "egg-%nick%.user" >> eggdrop.conf
ECHO set pidfile "pid.egg-%nick%" >> eggdrop.conf
TYPE temp\temp4.txt >> eggdrop.conf
ECHO set owner "%owner%" >> eggdrop.conf
TYPE temp\temp5.txt >> eggdrop.conf
ECHO set chanfile "egg-%nick%.chan" >> eggdrop.conf
TYPE temp\temp6.txt >> eggdrop.conf
:CHANNEL
::ASKING FOR A CHANNEL
SET channel=
TYPE mklang\%lang%\e13.txt
SET /P channel= :
ECHO channel add %channel% >> eggdrop.conf
::ASKING FOR IF YOU WANT ANOTHER CHANNEL
SET channelask=
TYPE mklang\%lang%\e14.txt
SET /P channelask= :
IF /I '%channelask%'=='y' GOTO CHANNEL
IF /I '%channelask%'=='n' GOTO RUN1
:RUN1
::CREATE THE CONFIGS
TYPE temp\temp7.txt >> eggdrop.conf
ECHO set default-port %port% >> eggdrop.conf
ECHO set nick "%nick%" >> eggdrop.conf
ECHO set altnick "%nick%" >> eggdrop.conf
ECHO set realname "%nick%" >> eggdrop.conf
ECHO set init-server { putserv "NICKSERV IDENTIFY %pwd%" } >> eggdrop.conf
ECHO set servers { >> eggdrop.conf
ECHO %ircserver% >> eggdrop.conf
ECHO } >> eggdrop.conf
TYPE temp\temp8.txt >> eggdrop.conf
ECHO set files-path "%drive%\mkep\egg-%nick%" >> eggdrop.conf
ECHO set incoming-path "%drive%\mkep\egg-%nick%" >> eggdrop.conf
TYPE temp\temp9.txt >> eggdrop.conf
ECHO set notefile "egg-%nick%.notes" >> eggdrop.conf
TYPE temp\temp10.txt >> eggdrop.conf
:CRON
::ASKING IF YOU WANT ADD PROCESS IN CRONTAB
SET cron=
TYPE mklang\%lang%\e15.txt
SET /P cron= :
IF /I '%cron%'=='y' GOTO NEXT1
IF /I '%cron%'=='n' GOTO NEXT2
:NEXT1
::ADD THE TASK IN CRONTAB
ECHO 0,10,20,30,40,50 * * * * %drive%\mkep\egg-%nick%\chk.bat>NUL >> crontab\crontab
:NEXT2
::CREATE THE CONFIGS
MD %drive%\mkep\egg-%nick%
XCOPY /E %drive%\mkep\Windrop %drive%\mkep\egg-%nick%\>NUL
::CREATE THE MONITORING FILE
TYPE temp\temp12.txt >> chk.bat
ECHO SET file=egg-%nick%.exe >> chk.bat
ECHO SET port=%port% >> chk.bat
TYPE temp\temp13.txt >> chk.bat
MOVE chk.bat %drive%\mkep\egg-%nick%
::CREATE RUN ONCE FILE
TYPE temp\temp14.txt >> RunOnce.bat
ECHO egg-%nick% -m >> RunOnce.bat
TYPE temp\temp15.txt >> RunOnce.bat
::MOVE FILES AND START EGG
MOVE RunOnce.bat %drive%\mkep\egg-%nick%
MOVE eggdrop.conf %drive%\mkep\egg-%nick%
CD %drive%\mkep\egg-%nick%
RENAME eggdrop.exe egg-%nick%.exe
START egg-%nick%.exe>NUL
START RunOnce.bat>NUL
CD %drive%\mkep\
::DISPLAY INFO ABOUT HOW TO WORK
TYPE mklang\%lang%\e16.txt
TYPE mklang\%lang%\e17.txt
TYPE mklang\%lang%\e18.txt
TYPE mklang\%lang%\e19.txt
PAUSE
GOTO RUN
:ERROR
ECHO.
ECHO Not have the command taskkill or tasklist to manage process.
ECHO It's possible that a few more commands could not be executed.
ECHO.
PAUSE
GOTO END
:ERROR1
ECHO.
ECHO The folder %drive%\mkep does not exist.
ECHO.
PAUSE
GOTO END
:ERROR2
ECHO.
ECHO Folder location is incorrect,
ECHO the correct location and correct folder is %drive%\mkep
ECHO.
PAUSE
:END
EXIT
:KILL
::KILL PROCESS
SET nick=
TYPE mklang\%lang%\e1.txt
SET /P nick= :
:FORCEKILL
TASKKILL /F /T /IM "egg-%nick%.exe">NUL
TASKLIST | FIND /i "egg-%nick%.exe">NUL
IF %ERRORLEVEL% equ 0 (
GOTO FORCEKILL
) ELSE (
PAUSE
GOTO RUN
)
| carriercomm/mkep | mkep_win/mkeggdrop.bat | bat | unlicense | 5,465 |
@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
IF NOT EXIST "%BASE_DIR%" (
call git clone --recursive -b 3.0 https://github.com/spf13/spf13-vim.git "%BASE_DIR%"
) ELSE (
@set ORIGINAL_DIR=%CD%
echo updating spf13-vim
chdir /d "%BASE_DIR%"
call git pull
chdir /d "%ORIGINAL_DIR%"
call cd "%BASE_DIR%"
)
call mklink "%HOME%\.vimrc" "%BASE_DIR%\.vimrc"
call mklink "%HOME%\_vimrc" "%BASE_DIR%\.vimrc"
call mklink "%HOME%\.vimrc.fork" "%BASE_DIR%\.vimrc.fork"
call mklink "%HOME%\.vimrc.bundles" "%BASE_DIR%\.vimrc.bundles"
call mklink "%HOME%\.vimrc.bundles.fork" "%BASE_DIR%\.vimrc.bundles.fork"
call mklink "%HOME%\.vimrc.before" "%BASE_DIR%\.vimrc.before"
call mklink "%HOME%\.vimrc.before.fork" "%BASE_DIR%\.vimrc.before.fork"
call mklink /J "%HOME%\.vim" "%BASE_DIR%\.vim"
IF NOT EXIST "%BASE_DIR%\.vim\bundle" (
call mkdir "%BASE_DIR%\.vim\bundle"
)
IF NOT EXIST "%HOME%/.vim/bundle/vundle" (
call git clone https://github.com/gmarik/vundle.git "%HOME%/.vim/bundle/vundle"
)
call vim -u "%BASE_DIR%/.vimrc.bundles" +BundleInstall! +BundleClean +qall
| quai/vim-config | spf13-vim-3/spf13-vim-windows-install.cmd | bat | unlicense | 1,168 |
python -m http.server 8002 | astaffer/astaffer.github.io | startSrv.bat | bat | apache-2.0 | 26 |
@pushd ..
@call BuildDeps.cmd "Visual Studio 12 2013 Win64" Debug
@popd
| realXtend/tundra-urho3d | tools/Windows/VS2013/BuildDeps-x64-Debug.cmd | bat | apache-2.0 | 72 |
@echo off
pyrcc4 -py3 ../ExtAppIcons.qrc > ../../ui/ExtAppIcons_rc.py
python genqrc.py ../icons ../../ui/AppIcons.py
mv AppIcons.qrc ../
| uname/PySockDebuger | resource/generator/gen_icons.bat | bat | apache-2.0 | 137 |
@echo off
set JAVA_HOME=E:\Java\jdk1.7.0_60_x64
set M2_HOME=E:\apache-maven-3.3.9
set path=%JAVA_HOME%\bin;%M2_HOME%\bin;%PATH% | baichenguang/bing-desktop | setenv.bat | bat | apache-2.0 | 127 |
@echo off
AStyle.exe --options=astylerc
| Kwizatz/AeonOgre | astyle.bat | bat | apache-2.0 | 44 |
@ECHO OFF
REM Core technology versions
SET FLOW_VERSION=3
SET MICROSCOPY_VERSION=3
REM OBIT LIBS PATH
SET OBIT_LIBS_PATH=%CD%\..
REM SET THE PATH OF THE CORE-TECHNOLOGIES
SET FLOW_PATH=%OBIT_LIBS_PATH%\..\..\..\..\server\obit_flow_core_technology
SET MICROSCOPY_PATH=%OBIT_LIBS_PATH%\..\..\..\..\server\obit_microscopy_core_technology
REM CHECK THAT THE FOLDERS ARE BUILT CORRECTLY
IF NOT EXIST "%FLOW_PATH%\" (
echo Directory %FLOW_PATH% does not exist!
exit /b
)
IF NOT EXIST "%MICROSCOPYPATH%\" (
echo Directory %MICROSCOPY_PATH% does not exist!
exit /b
)
REM ---------
REM FCSREADER
REM ---------
ECHO * * * Copying FCSReader to flow core technology...
SET FCSREADER_FLOW_PATH=%FLOW_PATH%\core-plugins\flow\%FLOW_VERSION%\dss\reporting-plugins\retrieve_fcs_events\lib\
IF NOT EXIST "%FCSREADER_FLOW_PATH%\" (
echo Could not file FCSReader_*.jar in %FCSREADER_FLOW_PATH%!
exit /b
)
CD "%FCSREADER_FLOW_PATH%\"
DEL FCSReader_*.jar
COPY %OBIT_LIBS_PATH%\FCSReader\build\FCSReader_*.jar .
REM -------
REM LRCACHE
REM -------
ECHO * * * Copying LRCache to flow core technology...
SET LRCACHE_FLOW_PATH=%FLOW_PATH%\core-plugins\flow\%FLOW_VERSION%\dss\reporting-plugins\export_flow_datasets\lib\
IF NOT EXIST "%LRCACHE_FLOW_PATH%\" (
echo Could not file LRCache_*.jar in %FCSREADER_FLOW_PATH%!
exit /b
)
CD "%LRCACHE_FLOW_PATH%\"
DEL LRCache_*.jar
COPY %OBIT_LIBS_PATH%\LRCache\build\LRCache_*.jar .
ECHO * * * Copying LRCache to microscopy core technology...
SET LRCACHE_MICROSCOPY_PATH=%MICROSCOPY_PATH%\core-plugins\microscopy\%MICROSCOPY_VERSION%\dss\reporting-plugins\export_microscopy_datasets\lib\
IF NOT EXIST "%LRCACHE_MICROSCOPY_PATH%\" (
echo Could not file LRCache_*.jar in %FCSREADER_FLOW_PATH%!
exit /b
)
CD "%LRCACHE_MICROSCOPY_PATH%\"
DEL LRCache_*.jar
COPY %OBIT_LIBS_PATH%\LRCache\build\LRCache_*.jar .
REM -----------------
REM MICROSCOPY_READER
REM -----------------
ECHO * * * Copying MicroscopyReader to microscopy core technology...
SET MICROSCOPYREADER_MICROSCOPY_PATH=%MICROSCOPY_PATH%\core-plugins\microscopy\%MICROSCOPY_VERSION%\dss\drop-boxes\MicroscopyDropbox\lib\
IF NOT EXIST "%MICROSCOPYREADER_MICROSCOPY_PATH%\" (
echo Could not file MicroscopyReader_*.jar in %FCSREADER_FLOW_PATH%!
exit /b
)
CD "%MICROSCOPYREADER_MICROSCOPY_PATH%\"
DEL MicroscopyReader_*.jar
COPY %OBIT_LIBS_PATH%\MicroscopyReader\build\MicroscopyReader_*.jar .
REM Return to the original path
CD %OBIT_LIBS_PATH%\CopyClientLibsToCoreTechnologies
| aarpon/obit_annotation_tool | dist/CoreTechnologies/CopyClientLibsToCoreTechnologies/CopyClientLibsToCoreTechnologies.bat | bat | apache-2.0 | 2,520 |
@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\pyzfsautosnap.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyzfsautosnap.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
| UCSD-ANF/pyzfsautosnap | doc/make.bat | bat | bsd-2-clause | 7,258 |
python3 setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload dist/*
| compmech/meshless | distribuite.bat | bat | bsd-2-clause | 123 |
@echo off
IF EXIST "gradle_localOverride.cmd" call "gradle_localOverride.cmd"
call gradlew clean assemble -x test --stacktrace --info
pause | JFXtras/jfxtras-labs-samples | gradlew_distribution.cmd | bat | bsd-3-clause | 139 |
rem NOTE: this batch file is to be run in a Visual Studio command prompt
rem Delete old files
del *.obj
del *.ilk
del *.exe
del *.pdb
rem Compile files into .obj files in current directory
cl /I"..\..\testcasesupport" /W3 /MT /GS /RTC1 /bigobj /EHsc /nologo /c main.cpp CWE*.cpp CWE*.c ..\..\testcasesupport\io.c ..\..\testcasesupport\std_thread.c
rem Link all .obj file into a exe
cl /FeCWE606 *.obj /I"..\..\testcasesupport" /W3 /MT /GS /RTC1 /bigobj /EHsc /nologo
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE606_Unchecked_Loop_Condition/CWE606.bat | bat | bsd-3-clause | 470 |
@echo off
echo INPUT: Current Sound Recording Device 1>&2
IF EXIST .\multimon-ng SET PATH=%PATH%;.\multimon-ng
:loop
multimon-ng -a EAS
echo Restarting... >&2
timeout /t 2 /nobreak
goto loop | sabas1080/dsame | scripts/source-soundcard-multimon-ng.bat | bat | isc | 190 |
cd ../../
git subtree pull --prefix src/Publisher https://github.com/juniorgasparotto/Publisher.git master | juniorgasparotto/WiremockUI | src/Publisher/pull.bat | bat | mit | 106 |
@echo off
echo - Listfile for WoW 8.2 or newer ----------------------------------------------------
ren listfile8x.csv listfile8x-old.csv
wget https://wow.tools/casc/listfile/download/csv -O listfile8x-new.csv
start /wait CascView.exe /merge "listfile8x-old.csv+listfile8x-new.csv" listfile8x.csv
del listfile8x-old.csv
del listfile8x-new.csv
echo - Listfile for WoW pre 8.2 ---------------------------------------------------------
ren listfile6x.txt listfile6x-old.txt
wget https://github.com/wowdev/wow-listfile/raw/master/listfile.txt -O listfile6x-new.txt
start /wait CascView.exe /merge "listfile6x-old.txt+listfile6x-new.txt" listfile6x.txt
del listfile6x-old.txt
del listfile6x-new.txt
| WainPetopia/CascLib | listfile/update.bat | bat | mit | 711 |
cmd_sound/isa/sb/built-in.o := rm -f sound/isa/sb/built-in.o; /home/milind/toolchain/arm-eabi-4.6/bin/arm-eabi-ar rcsD sound/isa/sb/built-in.o
| sai9615/MY-kernel-for-grand-I9082 | sound/isa/sb/.built-in.o.cmd | bat | gpl-2.0 | 144 |
@echo off
rmdir /s /q bin\data
rmdir /s /q bin\po
mkdir bin\data
mkdir bin\data\ui
copy data\*.png bin\data
copy data\profiles.xml.default bin\data
copy data\ario-ui.xml bin\data\ui
copy data\ui\*.ui bin\data\ui\
mkdir bin\plugins
mkdir bin\plugins\icons
copy plugins\filesystem\filesystem-ui.xml bin\plugins
copy plugins\filesystem\filesystem.ario-plugin.w32 bin\plugins\filesystem.ario-plugin
copy plugins\wikipedia\wikipedia-ui.xml bin\plugins
copy plugins\wikipedia\wikipedia.png bin\plugins\icons
copy plugins\wikipedia\wikipedia.ario-plugin.w32 bin\plugins\wikipedia.ario-plugin
copy plugins\radios\radios-ui.xml bin\plugins
copy plugins\radios\radios.xml.default bin\plugins
copy plugins\radios\radios.ario-plugin.w32 bin\plugins\radios.ario-plugin
copy plugins\information\information.ui bin\plugins
copy plugins\information\information.ario-plugin.w32 bin\plugins\information.ario-plugin
copy plugins\audioscrobbler\audioscrobbler-prefs.ui bin\plugins
copy plugins\audioscrobbler\audioscrobbler.ario-plugin.w32 bin\plugins\audioscrobbler.ario-plugin
copy plugins\audioscrobbler\audioscrobbler.png bin\plugins\icons
mkdir bin\po
for %%a in (po\*.gmo) do (
mkdir bin\po\%%~na
mkdir bin\po\%%~na\LC_MESSAGES
copy %%a bin\po\%%~na\LC_MESSAGES\Ario.mo
)
copy ..\deps\libgcrypt-1.2.2\bin\libgcrypt-11.dll bin
copy ..\deps\libgcrypt-1.2.2\bin\libgpg-error-0.dll bin
copy ..\deps\libsoup-2.4-1\bin\libsoup-2.4-1.dll bin
copy ..\deps\curl-7.19.2\bin\libcurl.dll bin
copy ..\deps\curl-7.19.2\bin\libeay32.dll bin
copy ..\deps\curl-7.19.2\bin\libidn-11.dll bin
copy ..\deps\curl-7.19.2\bin\libssl32.dll bin
copy ..\deps\gettext-0.14.4\bin\libintl3.dll bin
copy ..\deps\libmpdclient\bin\Release\libmpdclient.dll bin
copy ..\bin-deps\libiconv-1.9.2-1-bin\bin\libiconv2.dll bin
| Lokke/ario-git | deliver.bat | bat | gpl-2.0 | 1,787 |
cmd_fs/nfsd/nfsctl.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,fs/nfsd/.nfsctl.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -DMODULE -mlong-calls -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(nfsctl)" -D"KBUILD_MODNAME=KBUILD_STR(nfsd)" -c -o fs/nfsd/nfsctl.o fs/nfsd/nfsctl.c
deps_fs/nfsd/nfsctl.o := \
fs/nfsd/nfsctl.c \
$(wildcard include/config/nfsd/v4.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/sysfs.h) \
include/linux/spinlock.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/sgidefs.h \
include/asm/types.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.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 \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mips64/r2.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm/cpu-features.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm-generic/bitops/ext2-atomic.h \
include/asm-generic/bitops/minix.h \
include/asm/thread_info.h \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/8kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/processor.h \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/asm/current.h \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.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/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
include/asm-mips/mach-generic/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm-mips/mach-generic/timex.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/asm/module.h \
$(wildcard include/config/cpu/mips32/r2.h) \
$(wildcard include/config/cpu/mips64/r1.h) \
$(wildcard include/config/cpu/r6000.h) \
include/asm/uaccess.h \
include/asm-generic/uaccess.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/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/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/asm/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 \
include/linux/err.h \
include/linux/net.h \
$(wildcard include/config/sysctl.h) \
include/asm/socket.h \
include/asm/sockios.h \
include/linux/random.h \
include/linux/sysctl.h \
$(wildcard include/config/bcm/nat.h) \
include/linux/in.h \
include/linux/socket.h \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/compat.h) \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/syscalls.h \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/v850.h) \
$(wildcard include/config/asus/sw/qos.h) \
include/linux/config.h \
$(wildcard include/config/h.h) \
include/linux/aio_abi.h \
include/linux/capability.h \
include/linux/sem.h \
$(wildcard include/config/sysvipc.h) \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/asm/signal.h \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/linux/key.h \
$(wildcard include/config/keys.h) \
include/linux/rbtree.h \
include/linux/unistd.h \
include/asm/unistd.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
$(wildcard include/config/mmu.h) \
include/linux/magic.h \
include/linux/seq_file.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm/pgtable-32.h \
include/asm/fixmap.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
include/linux/uaccess.h \
include/asm/cacheflush.h \
include/asm/kmap_types.h \
$(wildcard include/config/debug/highmem.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
$(wildcard include/config/preempt/bkl.h) \
include/linux/ctype.h \
include/linux/nfsd_idmap.h \
include/linux/sunrpc/svc.h \
include/linux/in6.h \
include/linux/sunrpc/types.h \
include/linux/sunrpc/debug.h \
include/linux/sunrpc/xdr.h \
include/linux/scatterlist.h \
include/asm/scatterlist.h \
include/linux/sunrpc/auth.h \
include/linux/sunrpc/sched.h \
include/linux/sunrpc/svcauth.h \
include/linux/sunrpc/cache.h \
include/linux/hash.h \
include/linux/lockd/bind.h \
$(wildcard include/config/lockd/v4.h) \
include/linux/lockd/nlm.h \
include/linux/lockd/xdr.h \
include/linux/lockd/xdr4.h \
include/linux/sunrpc/svcsock.h \
include/linux/nfsd/nfsd.h \
$(wildcard include/config/nfsd/v3.h) \
$(wildcard include/config/nfsd/v2/acl.h) \
$(wildcard include/config/nfsd/v3/acl.h) \
include/linux/dirent.h \
include/linux/posix_acl.h \
include/linux/mount.h \
include/linux/nfsd/debug.h \
include/linux/nfsd/nfsfh.h \
include/linux/nfsd/const.h \
include/linux/nfs2.h \
include/linux/nfs3.h \
include/linux/nfs4.h \
include/linux/nfsd/export.h \
include/linux/nfsd/auth.h \
include/linux/nfsd/stats.h \
include/linux/nfsd/interface.h \
include/linux/nfsd/cache.h \
include/linux/nfsd/xdr.h \
include/linux/vfs.h \
include/linux/statfs.h \
include/asm/statfs.h \
include/linux/nfsd/syscall.h \
fs/nfsd/nfsctl.o: $(deps_fs/nfsd/nfsctl.o)
$(deps_fs/nfsd/nfsctl.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/fs/nfsd/.nfsctl.o.cmd | bat | gpl-2.0 | 16,850 |
@echo off
SET RDP_PORT=%1
SET NAGIOSHOST1=%2
SET NAGIOSHOST2=%3
SET NAGIOSHOST3=%4
IF NOT DEFINED RDP_PORT GOTO :defsettings
IF %RDP_PORT% EQU "-h" GOTO :usage
GOTO check
:defsettings
set RDP_PORT=3389
:check
netstat -a -n | find "%RDP_PORT%" | find "LISTENING" > NUL
IF %ERRORLEVEL% NEQ 0 goto portnotfound
:connection_check
IF NOT DEFINED NAGIOSHOST1 GOTO check_s0
IF NOT DEFINED NAGIOSHOST2 GOTO check_s1
IF NOT DEFINED NAGIOSHOST3 GOTO check_s12
GOTO check_s123
:check_s0
netstat -a -n | find "%RDP_PORT%" | find "ESTABLISHED"
IF %ERRORLEVEL% NEQ 0 goto noconnections
exit /b 2
:check_s1
netstat -a -n | find "%RDP_PORT%" | find "ESTABLISHED" | find /V "%NAGIOSHOST1%"
IF %ERRORLEVEL% NEQ 0 goto noconnections
exit /b 2
:check_s12
netstat -a -n | find "%RDP_PORT%" | find "ESTABLISHED" | find /V "%NAGIOSHOST1%" | find /V "%NAGIOSHOST2%"
IF %ERRORLEVEL% NEQ 0 goto noconnections
exit /b 2
:check_s123
netstat -a -n | find "%RDP_PORT%" | find "ESTABLISHED" | find /V "%NAGIOSHOST1%" | find /V "%NAGIOSHOST2%" | find /V "%NAGIOSHOST3%"
IF %ERRORLEVEL% NEQ 0 goto noconnections
exit /b 2
:portnotfound
echo RDP not listening! Is port %RDP_PORT% (still) correct?
exit /b 2
:usage
echo Usage: check_rdp.bat PORT HOST1 HOST2 HOST3
exit /b 3
:noconnections
echo OK: No connections.
exit /b 0
| mickem/nscp | scripts/check_no_rdp.bat | bat | gpl-2.0 | 1,299 |
::
:: Easybuild - Generate a clean ET:L build
::
:: Change MSVS version to your own
:: Install assets in fs_homepath/etmain
::
@echo off
@setLocal EnableDelayedExpansion
:: variables
SET game_homepath=%USERPROFILE%\Documents\ETLegacy
SET game_basepath=%USERPROFILE%\Documents\ETLegacy-Build
SET build_type=Release
SET batloc=%~dp0
SET build_dir=!batloc!build
SET project_dir=!batloc!project
SET build_64=0
SET mod_only=0
SET use_autoupdate=1
SET use_extra=1
SET build_r2=1
SET generator=
REM SET generator=Visual Studio 14 2015
REM SET platform_toolset=-T v141_xp
:: pickup some parameters before proceeding
set i=0
:loop
IF NOT "%1"=="" (
IF /I "%1"=="--help" (
ECHO Write some help text here....
GOTO:EOF
) ELSE IF /I "%1"=="-64" (
SET build_64=1
) ELSE IF /I "%1"=="-mod" (
SET mod_only=1
) ELSE IF /I "%1"=="-noupdate" (
SET use_autoupdate=0
) ELSE IF /I "%1"=="-noextra" (
SET use_extra=0
) ELSE IF /I "%1"=="-debug" (
SET build_type=Debug
) ELSE IF /I "%1"=="-nor2" (
SET build_r2=0
) ELSE IF /I "%1"=="-generator" (
SET generator=%~2
SHIFT
) ELSE IF /I "%1"=="-toolset" (
SET platform_toolset=-T %~2
SHIFT
) ELSE IF /I "%1"=="-build_dir" (
SET build_dir=%~dpnx2
SHIFT
) ELSE (
SET /A i+=1
SET commands[!i!]=%~1
)
SHIFT
GOTO :loop
)
SET tasks=%i%
IF NOT "%generator%"=="" (
SET generator=-G "%generator%
IF %build_64%==1 (
SET generator=!generator! Win64"
) ELSE (
SET generator=!generator!"
)
)
REM for /L %%i in (1,1,%tasks%) do echo Task number %%i: "!commands[%%i]!"
if !errorlevel!==1 exit /b !errorlevel!
REM ECHO Checking application status
where /q cmake >nul 2>&1 && (
REM ECHO CMake ok.
) || (
ECHO Missing CMake cannot proceed.
GOTO:EOF
)
REM ECHO Applications ok. Proceeding.
:: Init the submdule
CALL:INITSUBMODULE
IF "%tasks%"=="0" (
GOTO:DEFAULTPROCESS
) ELSE (
GOTO:PROCESSCOMMANDS
)
GOTO:EOF
:: process commands if any
:PROCESSCOMMANDS
FOR /L %%i in (1,1,%tasks%) DO (
if !errorlevel!==1 exit /b !errorlevel!
CALL:FUNCTIONS "!commands[%%i]!"
)
GOTO:EOF
:FUNCTIONS
set curvar=%~1
IF /I "!curvar!"=="clean" CALL:DOCLEAN
IF /I "!curvar!"=="build" CALL:DOBUILD
IF /I "!curvar!"=="install" CALL:DOINSTALL
IF /I "!curvar!"=="package" CALL:DOPACKAGE
IF /I "!curvar!"=="crust" GOTO:UNCRUSTCODE
IF /I "!curvar!"=="project" CALL:OPENPROJECT
:: download pak0 - 2 to the homepath if they do not exist
IF /I "!curvar!"=="download" CALL:DOWNLOADPAKS "https://mirror.etlegacy.com/etmain/"
IF /I "!curvar!"=="open" explorer !game_basepath!
IF /I "!curvar!"=="release" CALL:DORELEASE
GOTO:EOF
:DORELEASE
CALL:DOCLEAN
CALL:DOBUILD
CALL:DOPACKAGE
GOTO:EOF
:INITSUBMODULE
IF NOT EXIST "!batloc!libs\CMakeLists.txt" (
ECHO Getting bundled libs...
CD !batloc!
git submodule init
git submodule update
)
GOTO:EOF
:SETUPFOLDERS
IF NOT EXIST "!game_basepath!" (
ECHO Will create base directory: "!game_basepath!"
mkdir "!game_basepath!"
)
CD !build_dir!
CALL:CLEANPATH "!game_basepath!\legacy\" "*.pk3 *.dll *.dat"
CALL:CLEANPATH "!game_homepath!\legacy\" "*.pk3 *.dll *.dat"
CALL:COPYFROMPATH "%cd%\" "et*.exe renderer_openg*.dll SDL2.dll" "!game_basepath!\"
CALL:COPYFROMPATH "%cd%\legacy\" "*.pk3 qagame*.dll *.dat" "!game_basepath!\legacy\"
GOTO:EOF
:CLEANPATH
IF NOT EXIST %~1 GOTO:EOF
set bacpath=%cd%
cd %~1
FOR %%F IN (%~2) DO (
DEL %%F
)
cd !bacpath!
GOTO:EOF
:COPYFROMPATH
set bacpath=%cd%
cd %~1
FOR %%F IN (%~2) DO (
CALL:COPYFILE "%%F" %~3
)
cd %bacpath%
GOTO:EOF
:COPYFILE
REM /D
IF EXIST %~1 XCOPY %~1 %~2 /Y >nul
GOTO:EOF
:DEFAULTPROCESS
TITLE Building ET: Legacy
ECHO ETLegacy easybuild for Windows
CALL:DOCLEAN
CALL:DOBUILD
if errorlevel 1 (
ECHO There was an issue with the build so no files are copied
PAUSE
GOTO:EOF
)
CALL:DOINSTALL
GOTO:EOF
:DOCLEAN
:: clean
ECHO Cleaning...
IF EXIST !game_basepath! RMDIR /s /q !game_basepath!
IF EXIST !build_dir! RMDIR /s /q !build_dir!
IF EXIST !batloc!libs (
cd "!batloc!libs"
git clean -d -f
)
GOTO:EOF
:: GenerateProject(targetDir, sourceDir, compileType, crossCompile, buildR2)
:GENERATEPROJECT
ECHO Generating...
IF EXIST "%~1" RMDIR /s /q "%~1"
MKDIR "%~1"
CD "%~1"
set build_string=
CALL:GENERATECMAKE build_string
cmake !generator! !platform_toolset! %build_string% "%~2"
ECHO cmake !generator! !platform_toolset! %build_string% "%~2"
GOTO:EOF
:OPENPROJECT
CALL:GENERATEPROJECT !project_dir! "!batloc!"
ETLEGACY.sln
GOTO:EOF
:DOBUILD
:: build
CALL:GENERATEPROJECT !build_dir! "!batloc!"
ECHO Building...
REM msbuild ETLEGACY.sln /target:CMake\ALL_BUILD /p:Configuration=%build_type%
cmake --build . --config %build_type%
GOTO:EOF
:DOINSTALL
:: install
ECHO Setting up the game
CALL:SETUPFOLDERS
:: done
CALL:CREATELINK "ETLegacy" "!game_basepath!\etl.exe" "!game_basepath!"
ECHO The %build_type% build has been installed in %game_basepath%, and shortcut has been added to your desktop
GOTO:EOF
:DOPACKAGE
:: package
ECHO Packaging...
CD %build_dir%
cpack
GOTO:EOF
:UNCRUSTCODE
echo Uncrustifying code...
FOR /R "!batloc!src" %%G IN (*.h *.c *.cpp *.glsl) DO call:UNCRUSTFILE %%G
GOTO:EOF
:UNCRUSTFILE
set pathstr=%~1
if not x%pathstr:unzip.c=%==x%pathstr% GOTO:EOF
if not x%pathstr:sha-1=%==x%pathstr% GOTO:EOF
if not x%pathstr:Omnibot=%==x%pathstr% GOTO:EOF
uncrustify --no-backup -c %batloc%uncrustify.cfg %~1
GOTO:EOF
:CREATELINK
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
echo Set oWS = WScript.CreateObject("WScript.Shell") >> !SCRIPT!
echo sLinkFile = "%USERPROFILE%\Desktop\%~1.lnk" >> !SCRIPT!
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> !SCRIPT!
echo oLink.TargetPath = "%~2" >> !SCRIPT!
echo oLink.WorkingDirectory = "%~3" >> !SCRIPT!
echo oLink.Save >> !SCRIPT!
cscript /nologo !SCRIPT!
del !SCRIPT!
GOTO:EOF
:DOWNLOADPAKS
IF NOT EXIST "!game_homepath!\etmain" (
md "!game_homepath!\etmain"
)
IF NOT EXIST "!game_homepath!\etmain\pak0.pk3" (
bitsadmin /transfer "pak0" %~1pak0.pk3 "!game_homepath!\etmain\pak0.pk3"
)
IF NOT EXIST "!game_homepath!\etmain\pak1.pk3" (
bitsadmin /transfer "pak1" %~1pak1.pk3 "!game_homepath!\etmain\pak1.pk3"
)
IF NOT EXIST "!game_homepath!\etmain\pak2.pk3" (
bitsadmin /transfer "pak2" %~1pak2.pk3 "!game_homepath!\etmain\pak2.pk3"
)
GOTO:EOF
:Substring
::Substring(retVal,string,startIndex,length)
:: extracts the substring from string starting at startIndex for the specified length
SET string=%2%
SET startIndex=%3%
SET length=%4%
if "%4" == "0" goto :noLength
CALL SET _substring=%%string:~%startIndex%,%length%%%
goto :substringResult
:noLength
CALL SET _substring=%%string:~%startIndex%%%
:substringResult
set "%~1=%_substring%"
GOTO :EOF
:: GenerateCmake(outputVar, crosscompile, buildR2)
:GENERATECMAKE
SETLOCAL
IF %build_64%==1 (
SET CROSSCOMP=NO
) ELSE (
SET CROSSCOMP=YES
)
SET loca_build_string=-DBUNDLED_LIBS=YES ^
-DCMAKE_BUILD_TYPE=!build_type! ^
-DFEATURE_AUTOUPDATE=!use_autoupdate! ^
-DINSTALL_EXTRA=!use_extra! ^
-DCROSS_COMPILE32=!CROSSCOMP! ^
-DRENDERER_DYNAMIC=!build_r2! ^
-DFEATURE_RENDERER2=!build_r2!
IF !mod_only!==1 (
SET loca_build_string=!loca_build_string! ^
-DBUILD_CLIENT=0 ^
-DBUILD_SERVER=0
)
ENDLOCAL&SET "%~1=%loca_build_string%"
GOTO:EOF
| zturtleman/etlegacy | easybuild.bat | bat | gpl-3.0 | 7,281 |
@echo off
setlocal enabledelayedexpansion
mkdir tmp
for %%F in (lib*.so.*) do IF /i "%%~xF" NEQ ".so" (
set libout=%%~nF
del !libout!
echo OUTPUT_FORMAT^(elf32-littlearm^)> tmp\!libout!
echo GROUP ^( %%F ^)>> tmp\!libout!
)
REM Do a second round from the temp folder
cd tmp
for %%F in (lib*.so.*) do IF /i "%%~xF" NEQ ".so" (
set libout=%%~nF
del !libout!
echo OUTPUT_FORMAT^(elf32-littlearm^)> !libout!
echo GROUP ^( %%F ^)>> !libout!
)
cd ..
| 333fred/allwpilib | ni-libraries/lib/genlinks.bat | bat | bsd-3-clause | 482 |
@echo off
if "%1" == "" goto err
echo Removing NoSound...
del %1\data\nosound\*.* /n
rmdir %1\data\nosound
echo NoSound has been removed.
goto end
:err
echo This batch file is only intended for use by the OpenTTD installer.
:end
| dolly22/openttd-sai | os/os2/installer/remove_nosound.cmd | bat | gpl-2.0 | 234 |
@echo OFF
SETLOCAL
REM----------------------------------------------------------------------------
REM Copyright (c) Microsoft. All rights reserved.
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM You may obtain a copy of the License at
REM 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----------------------------------------------------------------------------
cls
if "%1%" == "" (
set PYTHONDIR=%SystemDrive%\Python27
) else (
set PYTHONDIR=%1%
)
if "%PYTHONPATH%" == "" (
set PYTHONPATH=.
)
set PYTHONPATH=%PYTHONPATH%;..\..\azure-common
set PYTHONPATH=%PYTHONPATH%;..\..\azure-mgmt
set PYTHONPATH=%PYTHONPATH%;..\..\azure-mgmt-common
set PYTHONPATH=%PYTHONPATH%;..\..\azure-mgmt-compute
set PYTHONPATH=%PYTHONPATH%;..\..\azure-mgmt-network
set PYTHONPATH=%PYTHONPATH%;..\..\azure-mgmt-resource
set PYTHONPATH=%PYTHONPATH%;..\..\azure-mgmt-storage
echo Running tests using %PYTHONDIR%
%PYTHONDIR%\python.exe -m unittest discover -p "test_mgmt_*.py"
set UNITTEST_EC=%ERRORLEVEL%
echo Finished running tests!
REM ---------------------------------------------------------------------------
:exit_door
exit /B %UNITTEST_EC% | crwilcox/azure-sdk-for-python | azure-mgmt/tests/run-mgmt.bat | bat | apache-2.0 | 1,564 |
nuget pack ..\src\YaccConstructor\YC.Core.nuspec | melentyev/YaccConstructor | NuGet/YC.Core.cmd | bat | apache-2.0 | 48 |
REM This file should be executed from the command line prior to the first
REM build. It will be necessary to refresh the Eclipse project once the
REM .bat file has been executed (normally just press F5 to refresh).
REM Copies all the required files from their location within the standard
REM FreeRTOS directory structure to under the Eclipse project directory.
REM This permits the Eclipse project to be used in 'managed' mode and without
REM having to setup any linked resources.
REM Standard paths
SET FREERTOS_SOURCE=..\..\Source
SET COMMON_SOURCE=..\Common\minimal
SET COMMON_INCLUDE=..\Common\include
REM Have the files already been copied?
IF EXIST src\FreeRTOS_Source Goto END
REM Create the required directory structure.
MD src\FreeRTOS_Source
MD src\FreeRTOS_Source\include
MD src\FreeRTOS_Source\portable
MD src\FreeRTOS_Source\portable\GCC
MD src\FreeRTOS_Source\portable\GCC\ARM_CM4F
MD src\FreeRTOS_Source\portable\MemMang
MD src\Common_Demo_Source
MD src\Common_Demo_Source\include
REM Copy the core kernel files into the SDK projects directory
copy %FREERTOS_SOURCE%\tasks.c src\FreeRTOS_Source
copy %FREERTOS_SOURCE%\queue.c src\FreeRTOS_Source
copy %FREERTOS_SOURCE%\list.c src\FreeRTOS_Source
copy %FREERTOS_SOURCE%\timers.c src\FreeRTOS_Source
REM Copy the common header files into the SDK projects directory
copy %FREERTOS_SOURCE%\include\*.* src\FreeRTOS_Source\include
REM Copy the portable layer files into the projects directory
copy %FREERTOS_SOURCE%\portable\GCC\ARM_CM4F\*.* src\FreeRTOS_Source\portable\GCC\ARM_CM4F
REM Copy the basic memory allocation files into the SDK projects directory
copy %FREERTOS_SOURCE%\portable\MemMang\heap_2.c src\FreeRTOS_Source\portable\MemMang
REM Copy the files that define the common demo tasks.
copy %COMMON_SOURCE%\dynamic.c src\Common_Demo_Source
copy %COMMON_SOURCE%\BlockQ.c src\Common_Demo_Source
copy %COMMON_SOURCE%\death.c src\Common_Demo_Source
copy %COMMON_SOURCE%\blocktim.c src\Common_Demo_Source
copy %COMMON_SOURCE%\semtest.c src\Common_Demo_Source
copy %COMMON_SOURCE%\PollQ.c src\Common_Demo_Source
copy %COMMON_SOURCE%\GenQTest.c src\Common_Demo_Source
copy %COMMON_SOURCE%\recmutex.c src\Common_Demo_Source
copy %COMMON_SOURCE%\sp_flop.c src\Common_Demo_Source
copy %COMMON_SOURCE%\countsem.c src\Common_Demo_Source
copy %COMMON_SOURCE%\integer.c src\Common_Demo_Source
REM Copy the common demo file headers.
copy %COMMON_INCLUDE%\*.h src\Common_Demo_Source\include
: END
| openthread/ot-rtos | third_party/freertos/repo/FreeRTOS/Demo/CORTEX_M4F_Infineon_XMC4500_GCC_Atollic/CreateProjectDirectoryStructure.bat | bat | bsd-3-clause | 2,788 |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Bake is a shell script for running CakePHP bake script
::
:: CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
:: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
::
:: Licensed under The MIT License
:: Redistributions of files must retain the above copyright notice.
::
:: @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
:: @link https://cakephp.org CakePHP(tm) Project
:: @package app.Console
:: @since CakePHP(tm) v 2.0
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: In order for this script to work as intended, the cake\console\ folder must be in your PATH
@echo.
@echo off
SET app=%0
SET lib=%~dp0
php -q "%lib%cake.php" -working "%CD% " %*
echo.
exit /B %ERRORLEVEL%
| xplico/CapAnalysis | www/lib/Cake/Console/Templates/skel/Console/cake.bat | bat | gpl-2.0 | 940 |
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\4441471891\species.lambdas -c E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\4441471891\species.asc E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\4441471891\absence
@if errorlevel 1 pause
| mauriciovancine/enm_r | data/temp/raster/maxent/4441471891/species_explain.bat | bat | mit | 644 |
docker run --rm --name digits-cpu -d -v "%cd:\=/%/digits-jobs":/jobs -p 5000:5000 rquintino/digits-cpu
start http://localhost:5000
if not exist "digits-data/mnist" ( docker exec -it digits-cpu python -m digits.download_data mnist /tmp/mnist ) else (echo Mnist exists) | rquintino/ml-dockerfiles | digits-cpu/test.cmd | bat | mit | 267 |
@echo off
chcp 65001
echo.
pushd %~dp0
::Attempts to start py launcher without relying on PATH
%SYSTEMROOT%\py.exe --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO attempt
%SYSTEMROOT%\py.exe -3.5 SanjayBot/Bot.py
PAUSE
GOTO end
::Attempts to start py launcher by relying on PATH
:attempt
py.exe --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO lastattempt
py.exe -3.5 SanjayBot/Bot.py
PAUSE
GOTO end
::As a last resort, attempts to start whatever Python there is
:lastattempt
python.exe --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO message
python.exe SanjayBot/Bot.py
PAUSE
GOTO end
:message
echo Couldn't find a valid Python 3.5 installation. Python needs to be installed and available in the PATH environment
echo variable.
echo Restart script.
PAUSE
:end
| Sanjay-B/Sanjay-DiscordBot | start.bat | bat | mit | 800 |
sicstus -l load_and_run_japanese_dm_server.pl
pause
| TeamSPoon/logicmoo_workspace | packs_sys/logicmoo_nlu/ext/regulus/Examples/Calendar/scripts/run_japanese_dm_server.bat | bat | mit | 53 |
@echo off
pnputil /enable-device "HID\SYNA7813&COL01\5&68BDC47&0&0000" | frank-deng/fgfs-tools | enable-touchscreen.bat | bat | mit | 71 |
@echo off
cls
Tools\nuget.exe install FAKE -ExcludeVersion -OutputDirectory "Tools"
Tools\FAKE\tools\Fake.exe Build.fsx "%*" | Ravadre/Ultima.Toolkit | Build.cmd | bat | mit | 124 |
cmd_arch/arm/lib/clearbit.o := arm-eabi-gcc -Wp,-MD,arch/arm/lib/.clearbit.o.d -nostdinc -isystem /home/nonamer/android-toolchain-eabi-4.5/bin/../lib/gcc/arm-eabi/4.5.4/include -I/home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -mfpu=neon -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -ffast-math -fsingle-precision-constant -pipe -c -o arch/arm/lib/clearbit.o arch/arm/lib/clearbit.S
deps_arch/arm/lib/clearbit.o := \
arch/arm/lib/clearbit.S \
/home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/linkage.h \
/home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/home/nonamer/bravo_2.6.35_gb-mr/arch/arm/include/asm/hwcap.h \
arch/arm/lib/bitops.h \
$(wildcard include/config/cpu/32v6k.h) \
arch/arm/lib/clearbit.o: $(deps_arch/arm/lib/clearbit.o)
$(deps_arch/arm/lib/clearbit.o):
| NooNameR/Sense4.0-kernel | arch/arm/lib/.clearbit.o.cmd | bat | gpl-2.0 | 1,820 |
pushd "%~dp0"
if NOT %pw%.==. goto gotpw
:readpw
set /p pw=Password:
if %pw%.==. goto readpw
:gotpw
set pw=%pw:"=%
if "%pw%"=="" goto readpw
C:\SVN\Syandus_Company\Source\Verisign\signtool.exe ^
sign ^
/f C:\SVN\Syandus_Company\Source\Verisign\Syandus.pfx ^
/p %pw% ^
/t http://timestamp.comodoca.com/authenticode ^
merck_courses_english_v1.msi
dir merck_courses_english_v1.msi
| syandus/syenigma | dist/signmsi.bat | bat | gpl-2.0 | 393 |
cmd_sound/pci/korg1212/built-in.o := rm -f sound/pci/korg1212/built-in.o; /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/pci/korg1212/built-in.o
| arshull/GalaTab3_Kernel | sound/pci/korg1212/.built-in.o.cmd | bat | gpl-2.0 | 170 |
cmd_sound/i2c/built-in.o := /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o sound/i2c/built-in.o sound/i2c/other/built-in.o
| MadRocker/experimental-2.6.29-MadRocker | sound/i2c/.built-in.o.cmd | bat | gpl-2.0 | 166 |
cmd_sound/isa/gus/built-in.o := rm -f sound/isa/gus/built-in.o; ar rcs sound/isa/gus/built-in.o
| Existed/kernel-2.6.35.14 | sound/isa/gus/.built-in.o.cmd | bat | gpl-2.0 | 97 |
@setlocal
@set TMPEXE=Release\Sudo-con.exe
@if NOT EXIST %TMPEXE% goto NOEXE
@set TMP_DEF_FILE=C:\GTools\tools\Sudoku\examples\diabolical.txt
@REM set TMP_DEF_FILE "/home/geoff/projects/Sudoku/examples/y-wing.txt"
@if NOT EXIST %TMP_DEF_FILE% goto NOFIL
@set TMPFIL=
@set GOTFIL=0
@set TMPCMD=
:RPT
@if "%~1x" == "x" goto GOTCMD
@set TMPCMD=%TMPCMD% %1
@set TMPFIL=%1
@shift
@if NOT EXIST %TMPFIL% goto RPT
@set GOTFIL=1
@goto RPT
:GOTCMD
@if "%GOTFIL%x" == "0x" (
@set TMPCMD=%TMPCMD% %TMP_DEF_FILE%
)
%TMPEXE% %TMPCMD%
@goto END
:NOEXE
@echo Can NOT locate %TMPEXE%! Has it been built? *** FIX ME ***
:END
| geoffmcl/Sudoku | build.x64/run-rel.bat | bat | gpl-2.0 | 618 |
@echo off
SetLocal EnableExtensions
cd /d "%~dp0"
if not exist apps.txt (
echo Creating List. Please wait...
dir /b /a-d /s "%SystemDrive%\*.exe" "%SystemRoot%\*.sys" > apps.txt
echo.
set /p "=Ready! Total lines = " <NUL
find /c /v "" < apps.txt
echo.
echo.
pause
)
:: Clear
if exist report_sign_signed.txt del report_sign_signed.txt
if exist report_sign_bad.txt del report_sign_bad.txt
if exist report_sign_error.txt del report_sign_error.txt
if exist report_sign_not_signed.txt del report_sign_not_signed.txt
For /F "delims=" %%a in ('find /c /v "" ^< apps.txt') do set Total=%%a
echo.
echo.
echo Begin digital signature checking...
echo.
echo.
set t0=%time%
For /F "UseBackQ delims=" %%a in ("apps.txt") do call :CheckOne "%%~a"
echo.
echo.
echo All Done!
set t1=%time%
call :difftime
echo.
echo.
pause
goto :eof
:CheckOne
set /a n+=1
echo %n% / %Total%
SignVer.exe "%~1"
if %errorlevel%==1000 (
echo "%~1">> report_sign_signed.txt
) else (
if %errorlevel%==1001 (
echo "%~1">> report_sign_not_signed.txt
) else (
if %errorlevel%==1002 (
echo "%~1">> report_sign_bad.txt
) else (
if %errorlevel%==1 (
echo "%~1">> report_sign_error.txt
))))
exit /B
:difftime
for /F "tokens=1-8 delims=:.," %%a in ("%t0: =0%:%t1: =0%") do set /a "a=(((1%%e-1%%a)*60)+1%%f-1%%b)*6000+1%%g%%h-1%%c%%d, a+=(a>>31) & 8640000, a/=100"
echo Time spent: %a% seconds.
goto :eof | dragokas/hijackthis | src/tools/Cert/enumerator/Root/CertEnum-src/VerifyByList.cmd | bat | gpl-2.0 | 1,512 |
/* $Id: bdftops.cmd,v 1.4 2002/02/21 21:49:28 giles Exp $ */
/*
* This file is maintained by a user: if you have any questions about it,
* please contact Mark Hale ([email protected]).
*/
@gsos2 -q -dBATCH -dNODISPLAY -- bdftops.ps %1 %2 %3 %4 %5 %6 %7 %8 %9
| brho/plan9 | sys/src/cmd/gs/lib/bdftops.cmd | bat | gpl-2.0 | 267 |
cmd_drivers/gpu/vga/built-in.o := rm -f drivers/gpu/vga/built-in.o; /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/gpu/vga/built-in.o
| doadin/samsung-kernel-msm7x30-Doadin | drivers/gpu/vga/.built-in.o.cmd | bat | gpl-2.0 | 170 |
cmd_util-linux/volume_id/sysv.o := gcc -Wp,-MD,util-linux/volume_id/.sysv.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(sysv)" -D"KBUILD_MODNAME=KBUILD_STR(sysv)" -c -o util-linux/volume_id/sysv.o util-linux/volume_id/sysv.c
deps_util-linux/volume_id/sysv.o := \
util-linux/volume_id/sysv.c \
util-linux/volume_id/volume_id_internal.h \
include/libbb.h \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/busybox/exec/path.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/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/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/bits/predefs.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \
/usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/x86_64-linux-gnu/sys/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/x86_64-linux-gnu/sys/resource.h \
/usr/include/x86_64-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
include/volume_id.h \
util-linux/volume_id/sysv.o: $(deps_util-linux/volume_id/sysv.o)
$(deps_util-linux/volume_id/sysv.o):
| muthumani2/Muthu-busybox | util-linux/volume_id/.sysv.o.cmd | bat | gpl-2.0 | 9,525 |
: Start-Tape-Job.cmd
@start "Start-Tape-Job" cmd /c PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {(Add-PSSnapin VeeamPSSnapin); (Get-VBRTapeJob | Start-VBRJob -FullBackup)}"
| Fr3db3rt/VEEAM-Scripts | Start-Tape-Job.cmd | bat | gpl-3.0 | 187 |
forfiles /P "C:\HOW2SAY\logs" /D -30 /C "cmd /c DEL /Q @FILE"
forfiles /P "C:\HOW2SAY\SAVE" /D -2 /C "cmd /c DEL /Q @FILE"
| olanto/HOW2SAY | run/cleanLogAndSave.bat | bat | agpl-3.0 | 123 |
net stop ScadaCommService
net start ScadaCommService
| RapidScada/scada | ScadaComm/ScadaComm/ScadaCommSvc/Script/svc_restart.bat | bat | apache-2.0 | 53 |
::
:: Copyright 2014-2022 Real Logic Limited.
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: https://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
::
@echo off
setlocal EnableExtensions EnableDelayedExpansion
set "DIR=%~dp0"
call "%DIR%\java-common"
"%JAVA_HOME%\bin\java" ^
-cp "%DIR%\..\..\aeron-all\build\libs\aeron-all-%VERSION%.jar" ^
-javaagent:"%DIR%\..\..\aeron-agent\build\libs\aeron-agent-${VERSION}.jar" ^
!JAVA_OPTIONS! ^
!ADD_OPENS! ^
%JVM_OPTS% ^
%*
| mikeb01/Aeron | aeron-samples/scripts/run-java-logging.cmd | bat | apache-2.0 | 933 |
:: Copyright 2017, IBM.
::
:: This source code is licensed under the Apache License, Version 2.0 found in
:: the LICENSE.txt file in the root directory of this source tree.
@ECHO OFF
@SETLOCAL enabledelayedexpansion
pushd %~dp0
SET target=%~n1
IF "%target%"=="env" GOTO :env
IF "%target%"=="run" GOTO :run
IF "%target%"=="lint" GOTO :lint
IF "%target%"=="test" GOTO :test
IF "%target%"=="clean" GOTO :clean
:usage
ECHO.
ECHO.Usage:
ECHO. .\make env Switches to a Python virtual environment
ECHO. .\make run Runs Jupyter tutorials
ECHO. .\make lint Runs Python source code analisys tool
ECHO. .\make test Runs tests
ECHO. .\make prfile Runs profiling tests
ECHO. .\make clean Cleans previoulsy generated documentation
ECHO.
GOTO :end
:env
SET QISKIT_ENV_FOUND=No
@FOR /F %%i IN ('conda info --envs') DO (
IF "%%i"=="QISKitenv" SET QISKIT_ENV_FOUND=Yes
)
IF "%QISKIT_ENV_FOUND%"=="No" (
conda create -y -n QISKitenv python=3
)
IF errorlevel 9009 GOTO :error
activate QISKitenv & pip install -r requirements.txt
IF errorlevel 9009 GOTO :error
GOTO :next
:lint
pylint qiskit test
IF errorlevel 9009 GOTO :error
GOTO :next
:test
IF errorlevel 9009 GOTO :error
python -m unittest discover -v
IF errorlevel 9009 GOTO :error
GOTO :next
:clean
GOTO :next
:error
ECHO.
ECHO.Somehting is missing in your Python installation.
ECHO.Please make sure you have properly installed Anaconda3
ECHO.(https://www.continuum.io/downloads), and that you are
ECHO.running the "Anaconda Shell Command".
ECHO.
exit /b 1
:next
:end
popd
ENDLOCAL | QISKit/qiskit-sdk-py | Make.bat | bat | apache-2.0 | 1,565 |
set VIZCLASSPATH=lib\jogl.all.jar;lib\nativewindow.all.jar;lib\gluegen-rt.jar;lib\newt.all.jar;lib\jsgl.jar;lib\commons-compress-1.5.jar;RoboViz.jar;.
| pmacalpine/RoboViz | scripts/setEnvironment.bat | bat | apache-2.0 | 151 |
@echo off
echo Setting up Rocket project files...
rem ## Rocket Visual Studio project setup script
rem ## Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
rem ## This script is expecting to exist in the Engine/Build/BatchFiles directory. It will not work correctly
rem ## if you copy it to a different location and run it.
rem ## First, make sure the batch file exists in the folder we expect it to. This is necessary in order to
rem ## verify that our relative path to the /Engine/Source directory is correct
if not exist "%~dp0..\..\Source" goto Error_BatchFileInWrongLocation
rem ## Change the CWD to /Engine/Source. We always need to run UnrealBuildTool from /Engine/Source!
pushd "%~dp0..\..\Source"
if not exist ..\Build\BatchFiles\RocketGenerateProjectFiles.bat goto Error_BatchFileInWrongLocation
rem ## Check to see if we're already running under a Visual Studio environment shell
if not "%INCLUDE%" == "" if not "%LIB%" == "" goto ReadyToCompile
rem ## Check for Visual Studio 2013
pushd %~dp0
call GetVSComnToolsPath 12
popd
if "%VsComnToolsPath%" == "" goto NoVisualStudio2013Environment
call "%VsComnToolsPath%/../../VC/bin/x86_amd64/vcvarsx86_amd64.bat" >NUL
goto ReadyToCompile
:NoVisualStudio2013Environment
goto Error_NoVisualStudioEnvironment
:ReadyToCompile
rem ## Run UnrealBuildTool to generate Visual Studio solution and project files
rem ## NOTE: We also pass along any arguments to the GenerateProjectFiles.bat here
..\Binaries\DotNET\UnrealBuildTool.exe -ProjectFiles -rocket %*
if not %ERRORLEVEL% == 0 goto Error_ProjectGenerationFailed
rem ## Success!
goto Exit
:Error_BatchFileInWrongLocation
echo GenerateProjectFiles ERROR: The batch file does not appear to be located in the /Engine/Build/BatchFiles directory. This script must be run from within that directory.
pause
goto Exit
:Error_NoVisualStudioEnvironment
echo GenerateProjectFiles ERROR: A valid version of Visual Studio 2013 does not appear to be installed.
pause
goto Exit
:Error_ProjectGenerationFailed
echo GenerateProjectFiles ERROR: UnrealBuildTool was unable to generate project files.
pause
goto Exit
:Exit
rem ## Restore original CWD in case we change it
popd
| PopCap/GameIdea | Engine/Build/BatchFiles/RocketGenerateProjectFiles.bat | bat | bsd-2-clause | 2,197 |
setlocal
echo Setting JAVA_HOME to %JAVA8_HOME%.
set JAVA_HOME=%JAVA8_HOME%
call mvn clean install -Pall,sonatype-oss-release -DperformRelease --fail-at-end
endlocal | highsource/maven-jaxb2-plugin | tests/full-build-1.8.bat | bat | bsd-2-clause | 165 |
@echo off
set keytool_raw="C:\Program Files\Java\jdk1.8.0_102\bin\keytool"
set openssl="C:\Program Files\Git\mingw64\bin\openssl"
set keytool=%keytool_raw% -keystore
set pwd=-storepass StorePass -keypass KeyPass -alias
%keytool% Server.key.jks %pwd% key -genkeypair -keyalg RSA -validity 20000 -dname "cn=Server"
%keytool% ClientCA.key.jks %pwd% key -genkeypair -keyalg RSA -validity 20000 -dname "cn=ClientCA"
%keytool% Client.key.jks %pwd% key -genkeypair -keyalg RSA -validity 20000 -dname "cn=Client"
%keytool% Server.key.jks %pwd% key -exportcert -rfc -file Server.cert.pem
%keytool% ClientCA.key.jks %pwd% key -exportcert -rfc -file ClientCA.cert.pem
%keytool% Server.cert.jks %pwd% cert -importcert -noprompt -file Server.cert.pem
%keytool% ClientCA.cert.jks %pwd% cert -importcert -noprompt -file ClientCA.cert.pem
%keytool% Client.key.jks %pwd% ca -importcert -noprompt -file ClientCA.cert.pem
%keytool% Client.key.jks %pwd% key -certreq | %keytool% ClientCA.key.jks %pwd% key -gencert -validity 20000 | %keytool% Client.key.jks %pwd% key -importcert
%keytool_raw% -importkeystore -srckeystore Server.key.jks -destkeystore Server.key.pkcs12 -deststoretype PKCS12 -srcalias key -srcstorepass StorePass -srckeypass KeyPass -deststorepass KeyPass -destkeypass KeyPass -noprompt
%keytool_raw% -importkeystore -srckeystore Client.key.jks -destkeystore Client.key.pkcs12 -deststoretype PKCS12 -srcalias key -srcstorepass StorePass -srckeypass KeyPass -deststorepass KeyPass -destkeypass KeyPass -noprompt
%openssl% pkcs12 -in Server.key.pkcs12 -passin pass:KeyPass -out Server.key.pem -passout pass:KeyPass
%openssl% pkcs12 -in Client.key.pkcs12 -passin pass:KeyPass -out Client.key.pem -passout pass:KeyPass
%keytool% Server.cert.jks -storepass StorePass -list -v
%keytool% ClientCA.cert.jks -storepass StorePass -list -v
%keytool% Client.key.jks -storepass StorePass -list -v
| sushicutta/yass | certificates/create.bat | bat | bsd-3-clause | 1,903 |
@rem ---------------------------------------------------------------------------------
@rem Copyright 2008 Microsoft Corporation. All rights reserved.
@rem This is provided as sample to deploy the package using msdeploy.exe
@rem For information about IIS Web Deploy technology,
@rem please visit http://go.microsoft.com/?linkid=9278654
@rem Note: This batch file assumes the package and setparametsrs.xml are in the same folder with this file
@rem ---------------------------------------------------------------------------------
@if %_echo%!==! echo off
setlocal
@rem ---------------------------------------------------------------------------------
@rem Please Make sure you have Web Deploy install in your machine.
@rem Alternatively, you can explicit set the MsDeployPath to the location it is on your machine
@rem set MSDeployPath="C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\"
@rem ---------------------------------------------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem if user does not set MsDeployPath environment variable, we will try to retrieve it from registry.
@rem ---------------------------------------------------------------------------------
if "%MSDeployPath%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IIS Extensions\MSDeploy" /s ^| findstr -i "InstallPath"`) do (
if /I "%%h" == "InstallPath" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
if "%%~dpj" == "%%j" (
set MSDeployPath=%%j
))))))
@rem ------------------------------------------
@rem ------------------------------------------
if not exist "%MSDeployPath%msdeploy.exe" (
echo. msdeploy.exe is not found on this machine. Please install Web Deploy before execute the script.
echo. Please visit http://go.microsoft.com/?linkid=9278654
goto :usage
)
set RootPath=%~dp0
if /I "%_DeploySetParametersFile%" == "" (
set _DeploySetParametersFile=%RootPath%philameter.SetParameters.xml
)
@rem ------------------------------------------
@rem ------------------------------------------
set _ArgTestDeploy=
set _ArgDestinationType=auto
set _ArgComputerNameWithQuote=""
set _ArgUserNameWithQuote=""
set _ArgPasswordWithQuote=""
set _ArgEncryptPasswordWithQuote=""
set _ArgIncludeAclsWithQuote="False"
set _ArgAuthTypeWithQuote=""
set _ArgtempAgentWithQuote=""
set _ArgLocalIIS=
set _ArgLocalIISVersion=
set _HaveArgMSDeployAdditonalFlags=
@rem ---------------------------------------------------------------------------------
@rem Simple Parse the arguments
@rem ---------------------------------------------------------------------------------
:NextArgument
set _ArgCurrent=%~1
set _ArgFlagFirst=%_ArgCurrent:~0,1%
set _ArgFlag=%_ArgCurrent:~0,3%
set _ArgValue=%_ArgCurrent:~3%
if /I "%_ArgFlag%" == "" goto :GetStarted
if /I "%_ArgFlag%" == "~0,3" goto :GetStarted
if /I "%_ArgFlag%" == "/T" set _ArgTestDeploy=true&goto :ArgumentOK
if /I "%_ArgFlag%" == "/Y" set _ArgTestDeploy=false&goto :ArgumentOK
if /I "%_ArgFlag%" == "/L" set _ArgLocalIIS=true&goto :ArgumentOK
if /I "%_ArgFlag%" == "/M:" set _ArgComputerNameWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/U:" set _ArgUserNameWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/P:" set _ArgPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/E:" set _ArgEncryptPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/I:" set _ArgIncludeAclsWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/A:" set _ArgAuthTypeWithQuote="%_ArgValue%"&goto :ArgumentOK
if /I "%_ArgFlag%" == "/G:" set _ArgtempAgentWithQuote="%_ArgValue%"&goto :ArgumentOK
@rem Any addition flags, pass through to the msdeploy
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
goto :Assign_ArgMsDeployAdditionalFlags
)
set _ArgMsDeployAdditionalFlags=%_ArgMsDeployAdditionalFlags:&=^&% %_ArgCurrent:&=^&%
set _HaveArgMSDeployAdditonalFlags=1
goto :ArgumentOK
:Assign_ArgMsDeployAdditionalFlags
set _ArgMsDeployAdditionalFlags=%_ArgCurrent:&=^&%
set _HaveArgMSDeployAdditonalFlags=1
goto :ArgumentOK
:ArgumentOK
shift
goto :NextArgument
:GetStarted
@rem ------------------------------------------
@rem ------------------------------------------
if /I "%_ArgTestDeploy%" == "" goto :usage
if /I "%_ArgDestinationType%" == "" goto :usage
set _Destination=%_ArgDestinationType%
if not %_ArgComputerNameWithQuote% == "" set _Destination=%_Destination%,computerName=%_ArgComputerNameWithQuote%
if not %_ArgUserNameWithQuote% == "" set _Destination=%_Destination%,userName=%_ArgUserNameWithQuote%
if not %_ArgPasswordWithQuote% == "" set _Destination=%_Destination%,password=%_ArgPasswordWithQuote%
if not %_ArgAuthTypeWithQuote% == "" set _Destination=%_Destination%,authtype=%_ArgAuthTypeWithQuote%
if not %_ArgEncryptPasswordWithQuote% == "" set _Destination=%_Destination%,encryptPassword=%_ArgEncryptPasswordWithQuote%
if not %_ArgIncludeAclsWithQuote% == "" set _Destination=%_Destination%,includeAcls=%_ArgIncludeAclsWithQuote%
if not %_ArgtempAgentWithQuote% == "" set _Destination=%_Destination%,tempAgent=%_ArgtempAgentWithQuote%
@rem ------------------------------------------
@rem ------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem add -whatif when -T is specified
@rem ---------------------------------------------------------------------------------
if /I "%_ArgTestDeploy%" NEQ "false" (
set _MsDeployAdditionalFlags=-whatif %_MsDeployAdditionalFlags%
)
@rem ------------------------------------------
@rem ------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem add flags for IISExpress when -L is specified
@rem ---------------------------------------------------------------------------------
if /I "%_ArgLocalIIS%" == "true" (
call :SetIISExpressArguments
)
if /I "%_ArgLocalIIS%" == "true" (
if not exist "%IISExpressPath%%IISExpressManifest%" (
echo. IISExpress is not found on this machine. Please install through Web Platform Installer before execute the script.
echo. or remove /L flag
echo. Please visit http://go.microsoft.com/?linkid=9278654
goto :usage
)
if not exist "%IISExpressUserProfileDirectory%" (
echo. %IISExpressUserProfileDirectory% is not exists
echo. IISExpress is found on the machine. But the user have run IISExpress at least once.
echo. Please visit http://go.microsoft.com/?linkid=9278654 for detail
goto :usage
)
set _MsDeployAdditionalFlags=%_MsDeployAdditionalFlags% -appHostConfigDir:%IISExpressUserProfileDirectory% -WebServerDir:"%IISExpressPath%" -webServerManifest:"%IISExpressManifest%"
)
@rem ---------------------------------------------------------------------------------
@rem check the existence of the package file
@rem ---------------------------------------------------------------------------------
if not exist "%RootPath%philameter.zip" (
echo "%RootPath%philameter.zip" does not exist.
echo This batch file relies on this deploy source file^(s^) in the same folder.
goto :usage
)
@rem ---------------------------------------------
@rem ---------------------------------------------
@rem ---------------------------------------------------------------------------------
@rem Execute msdeploy.exe command line
@rem ---------------------------------------------------------------------------------
call :CheckParameterFile
echo. Start executing msdeploy.exe
echo -------------------------------------------------------
if not exist "%_DeploySetParametersFile%" (
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%philameter.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension
) else (
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%philameter.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -setParamFile:"%_DeploySetParametersFile%"
)
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
goto :MSDeployWithOutArgMsDeployAdditionalFlag
)
goto :MSDeployWithArgMsDeployAdditionalFlag
goto :eof
@rem ---------------------------------------------------------------------------------
@rem MSDeployWithArgMsDeployAdditionalFlag
@rem ---------------------------------------------------------------------------------
:MSDeployWithArgMsDeployAdditionalFlag
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
%_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
goto :eof
@rem ---------------------------------------------------------------------------------
@rem MSDeployWithOutArgMsDeployAdditionalFlag
@rem ---------------------------------------------------------------------------------
:MSDeployWithOutArgMsDeployAdditionalFlag
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags%
%_MSDeployCommandline% %_MsDeployAdditionalFlags%
goto :eof
@rem ---------------------------------------------------------------------------------
@rem Find and set IISExpress argument.
@rem ---------------------------------------------------------------------------------
:SetIISExpressArguments
if "%IISExpressPath%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
if /I "%%h" == "InstallPath" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
if "%%~dpj" == "%%j" (
set IISExpressPath=%%j
))))))
if "%IISExpressPath%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
if /I "%%h" == "InstallPath" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
if "%%~dpj" == "%%j" (
set IISExpressPath=%%j
))))))
if "%PersonalDocumentFolder%" == "" (
for /F "usebackq tokens=2*" %%i in (`reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal`) do (
set PersonalDocumentFolder=%%j
))
if "%IISExpressManifest%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
if /I "%%h" == "Manifest" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
set IISExpressManifest=%%j
)))))
if "%IISExpressManifest%" == "" (
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
if /I "%%h" == "Manifest" (
if /I "%%i" == "REG_SZ" (
if not "%%j" == "" (
set IISExpressManifest=%%j
)))))
set IISExpressUserProfileDirectory="%PersonalDocumentFolder%\IISExpress\config"
@rem ---------------------------------------------
@rem ---------------------------------------------
goto :eof
@rem ---------------------------------------------------------------------------------
@rem CheckParameterFile -- check if the package's setparamters.xml exists or not
@rem ---------------------------------------------------------------------------------
:CheckParameterFile
if exist "%_DeploySetParametersFile%" (
echo SetParameters from:
echo "%_DeploySetParametersFile%"
echo You can change IIS Application Name, Physical path, connectionString
echo or other deploy parameters in the above file.
) else (
echo SetParamterFiles does not exist in package location.
echo Use package embedded defaultValue to deploy.
)
echo -------------------------------------------------------
goto :eof
@rem ---------------------------------------------------------------------------------
@rem Usage
@rem ---------------------------------------------------------------------------------
:usage
echo =========================================================
if not exist "%RootPath%philameter.deploy-readme.txt" (
echo Usage:%~nx0 [/T^|/Y] [/M:ComputerName] [/U:userName] [/P:password] [/G:tempAgent] [additional msdeploy flags ...]
echo Required flags:
echo /T Calls msdeploy.exe with the "-whatif" flag, which simulates deployment.
echo /Y Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or destination server
echo Optional flags:
echo. By Default, this script deploy to the current machine where this script is invoked which will use current user credential without tempAgent.
echo. Only pass these arguments when in advance scenario.
echo /M: Msdeploy destination name of remote computer or proxy-URL. Default is local.
echo /U: Msdeploy destination user name.
echo /P: Msdeploy destination password.
echo /G: Msdeploy destination tempAgent. True or False. Default is false.
echo /A: specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic
otherwise, the default authentication type is NTLM.
echo /L: Deploy to Local IISExpress User Instance.
echo.[additional msdeploy flags]: note: " is required for passing = through command line.
echo "-skip:objectName=setAcl" "-skip:objectName=dbFullSql"
echo.Alternative environment variable _MsDeployAdditionalFlags is also honored.
echo.
echo. Please make sure MSDeploy is installed in the box http://go.microsoft.com/?linkid=9278654
echo.
echo In addition, you can change IIS Application Name, Physical path,
echo connectionString and other deploy parameters in the following file:
echo "%_DeploySetParametersFile%"
echo.
echo For more information about this batch file, visit http://go.microsoft.com/fwlink/?LinkID=183544
) else (
start notepad "%RootPath%philameter.deploy-readme.txt"
)
echo =========================================================
goto :eof
| bowersad/Philameter | philameter.deploy.cmd | bat | mit | 14,075 |
@echo off
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
regsvr32 UnityCamService.dll
:--------------------------------------
| mrayy/UnityCam | RunMe First/x64/Register.bat | bat | mit | 752 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OUTSPS.S02_OperateListItems.MSOUTSPS_S02_TC49_OperationListItemsForDiscussion /testcontainer:..\..\MS-OUTSPS\TestSuite\bin\Debug\MS-OUTSPS_TestSuite.dll /runconfig:..\..\MS-OUTSPS\MS-OUTSPS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-OUTSPS/RunMSOUTSPS_S02_TC49_OperationListItemsForDiscussion.cmd | bat | mit | 310 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCFXICS.S05_SyncICSHierarchyImportErrorCode_TestSuite.MSOXCFXICS_S05_SyncICSHierarchyImportErrorCode_TestSuite /testcontainer:..\..\MS-OXCFXICS\TestSuite\bin\Debug\MS-OXCFXICS_TestSuite.dll /runconfig:..\..\MS-OXCFXICS\MS-OXCFXICS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeMAPI/Source/Scripts/MS-OXCFXICS/RunMSOXCFXICS_S05_SyncICSHierarchyImportErrorCode_TestSuite.cmd | bat | mit | 352 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCFOLD.S03_FolderInformation.MSOXCFOLD_S03_TC08_SetAndGetProperties /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_S03_TC08_SetAndGetProperties.cmd | bat | mit | 305 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.