code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
@ECHO OFF 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 Command file for Sphinx documentation set SPHINXBUILD=sphinx-build set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. 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. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp 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 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\CMISLibrary.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\CMISLibrary.ghc goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck 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 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
concordusapps/python-cmislib
src/doc/src/make.bat
bat
apache-2.0
3,949
wla-65816.exe -io crt0_snes.asm crt0_snes.obj wla-65816.exe -io libc.asm libc.obj wla-65816.exe -io libm.asm libm.obj wla-65816.exe -io libtcc.asm libtcc.obj
wilkie/classickong
libs/compile.bat
bat
apache-2.0
162
date /T > test_log.txt time /T >> test_log.txt rem the pings are to wait between builds so visual studio doesn't get in a funk. echo testing python >> test_log.txt rm -rf build_python mkdir build_python cd build_python cmake -G "Visual Studio 14 2015 Win64" ../../../tools/python -DPYTHON3=ON cmake --build . --config Release --target install || exit /B ping 127.0.0.1 -n 5 -w 1000 > null cd .. echo testing vc2015 >> test_log.txt rm -rf build_vc2015_64 mkdir build_vc2015_64 cd build_vc2015_64 cmake -G "Visual Studio 14 2015 Win64" .. cmake --build . --config Release || exit /B ping 127.0.0.1 -n 5 -w 1000 > null cmake --build . --config Debug || exit /B ping 127.0.0.1 -n 5 -w 1000 > null cd Release dtest --runall -d || exit /B cd .. cd .. del null type test_log.txt date /T time /T
mkdubik/multinet
multinet/lib/dlib/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat
bat
gpl-2.0
846
@echo off setlocal python ../../AutoTuner.py pipeline_config=../../pipeline.xml scene_config=scene_OPTh.xml %* endlocal
pboechat/OperatorGraph
auto_tuner/scenes/suburban_house/auto_tune_OPTh.bat
bat
mit
119
@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.SSTableImport if NOT DEFINED JAVA_HOME goto :err REM ***** JAVA options ***** set JAVA_OPTS=^ -Dlogback.configurationFile=logback-tools.xml 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 "%%i" goto okClasspath :append set CLASSPATH=%CLASSPATH%;%1 goto :eof :okClasspath REM Include the build\classes\main directory so it works in development set CASSANDRA_CLASSPATH=%CLASSPATH%;"%CASSANDRA_HOME%\build\classes\main";%CASSANDRA_CONF%;"%CASSANDRA_HOME%\build\classes\thrift" set CASSANDRA_PARAMS= set TOOLS_PARAMS= FOR %%A IN (%*) DO call :appendToolsParams %%A goto runTool :appendToolsParams set TOOLS_PARAMS=%TOOLS_PARAMS% %1 goto :eof :runTool "%JAVA_HOME%\bin\java" %JAVA_OPTS% %CASSANDRA_PARAMS% -cp %CASSANDRA_CLASSPATH% "%CASSANDRA_MAIN%" %TOOLS_PARAMS% goto finally :err echo JAVA_HOME environment variable must be set! pause :finally ENDLOCAL
ibmsoe/cassandra
tools/bin/json2sstable.bat
bat
apache-2.0
2,292
@echo off :: Use argument to decide which build system should be used if "%1" == "gradle" goto initForGradle if "%1" == "maven" goto initForMaven if "%1" == "ant" goto initForAnt goto invalidInput :initForGradle echo "Executing Gradle setup..." goto initDefault :initForMaven echo "Executing Maven setup..." goto initDefault :initForAnt echo "Executing Ant setup..." ::If the directory exists the script has already been executed ::Gets the owncloud-android-library call git submodule init call git submodule update call android.bat update project -p libs/android-support-appcompat-v7-exploded-aar --target android-16 call android.bat update lib-project -p owncloud-android-library call android.bat update project -p . call android.bat update project -p oc_jb_workaround call android.bat update test-project -p tests -m .. goto complete :initDefault call git submodule init call git submodule update call android.bat update lib-project -p owncloud-android-library call android.bat update project -p . call android.bat update project -p oc_jb_workaround call android.bat update test-project -p tests -m .. goto complete :invalidInput echo "Input argument invalid." echo "Usage: %0 [ant | maven | gradle]." goto exit :complete echo "...setup complete." goto exit :exit
ylfonline/owncloud
setup_env.bat
bat
gpl-2.0
1,277
@ECHO OFF SET BIN_TARGET=%~dp0/../doctrine/dbal/bin/doctrine-dbal php "%BIN_TARGET%" %*
bantudevelopment/smis
vendor/bin/doctrine-dbal.bat
bat
bsd-3-clause
91
echo input.file %1 echo workspace.loc %2 echo equinox.jar %3 echo global.file %4 java -Dfile.encoding=UTF-8 -Dinput.file=%1 -Dglobal.file=%4 -cp %3 org.eclipse.core.launcher.Main -data %2 -application com.pat.tool.keditor.konyapplication exit %ERRORLEVEL%
kony/WidgetLevelAnimation
widgetanimation/run.bat
bat
mit
258
:: :: 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 echo. set "JVM_OPTS=-Xms6g -Xmx6g -XX:+AggressiveOpts -XX:MaxMetaspaceSize=256m" set "JVM_OPTS=%JVM_OPTS% -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+UseTLAB -XX:NewSize=128m -XX:MaxNewSize=768m" set "JVM_OPTS=%JVM_OPTS% -Xss16m"
irudyak/ignite
modules/cassandra/store/src/test/scripts/jvm-opts.bat
bat
apache-2.0
1,046
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\has-ansi\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\has-ansi\cli.js" %* )
alienwizard/tmsab
wp-content/themes/yeopress/node_modules/.bin/has-ansi.cmd
bat
gpl-2.0
172
dotnet nuget push "HtmlBuilders/bin/Release/HtmlBuilders.6.0.0.nupkg" -s https://api.nuget.org/v3/index.json dotnet nuget push "HtmlBuilders/bin/Release/HtmlBuilders.6.0.0.symbols.nupkg" -s https://nuget.smbsrc.net/ pause
amoerie/HtmlBuilders
04 - nuget publish.cmd
bat
mit
221
xelatex Main.tex pause
AronTrask/Kaspbot
go.bat
bat
mit
22
@echo off & setlocal enabledelayedexpansion IF EXIST "%APPDATA%\elixir_ls\setup.bat" ( CALL "%APPDATA%\elixir_ls\setup.bat" > nul ) SET ERL_LIBS=%~dp0;%ERL_LIBS% elixir --erl "+sbwt none +sbwtdcpu none +sbwtdio none" -e "ElixirLS.Debugger.CLI.main()"
dmilith/SublimeText3-dmilith
Package Storage/LSP-elixir/server/0.7.0/debugger.bat
bat
mit
265
magick.exe convert Icon-16.png Icon-24.png Icon-32.png Icon-48.png Icon-64.png Icon-96.png Icon-128.png Icon-192.png Icon-256.png Icon.ico pause
Equilibrium-Games/Flounder
Resources/Icons/generate.bat
bat
mit
144
mkdir -p ..\frogs vipsthumbnail -c -o ..\frogs/%s-128x128.jpg[Q=30] *.jpg vipsthumbnail --size=180x90 -c -o ..\frogs/%s-180x90.jpg[Q=30] *.jpg
cilogi/cilogi-guides
offline/botanics/media/images/mkthumbs.bat
bat
mit
185
@echo off :: Special launcher to start notepad++ with 2nd to 9th arguments. :: It's only needed when using Image File Execution to replacing Notepad.exe. :: http://stackoverflow.com/questions/2984846/ :: :: Activate with: :: :: reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v ^ :: "Debugger" /t REG_SZ /d "c:\bin\nppLauncher.bat" /f :: :: Remove with: :: :: reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" :: :: This used to have fancier IF EXIST/ELSE and used %ProgamFiles% variables, :: but it was devilishly difficult to get bug free. if exist "C:\Program Files\Notepad++\notepad++.exe" start "" "C:\Program Files\Notepad++\notepad++.exe" %2 %3 %4 %5 %6 %7 %8 %9 if exist "C:\Program Files (x86)\Notepad++\notepad++.exe" start "" "C:\Program Files (x86)\Notepad++\notepad++.exe" %2 %3 %4 %5 %6 %7 %8 %9
maphew/scripts
bin/nppLauncher.bat
bat
mit
924
@call dotnet restore -v m ..\ @if ERRORLEVEL 1 ( echo Error! Restoring dependencies failed. exit /b 1 ) else ( echo Restoring dependencies was successful. ) @set project=..\src\Ecwid\ @call dotnet build -c Release %project% @if ERRORLEVEL 1 ( echo Error! Build Ecwid failed. exit /b 1 ) @set project=..\src\Ecwid.Legacy\ @call dotnet build -c Release %project% @if ERRORLEVEL 1 ( echo Error! Build Ecwid.Legacy failed. exit /b 1 ) @set project=..\src\Ecwid.OAuth\ @call dotnet build -c Release %project% @if ERRORLEVEL 1 ( echo Error! Build Ecwid.OAuth failed. exit /b 1 )
kroniak/extensions-ecwid
build/build.cmd
bat
mit
582
<<<<<<< HEAD <<<<<<< HEAD @IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\has-ansi\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\has-ansi\cli.js" %* ======= @IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\has-ansi\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\has-ansi\cli.js" %* >>>>>>> b875702c9c06ab5012e52ff4337439b03918f453 ======= @IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\has-ansi\cli.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\has-ansi\cli.js" %* >>>>>>> b875702c9c06ab5012e52ff4337439b03918f453 )
ArcherSys/ArcherSys
node_modules/yo/node_modules/chalk/node_modules/.bin/has-ansi.cmd
bat
mit
654
@ECHO OFF REM How to use: REM To begin with execute make build && make copy && make generate-log REM This will initiate the logstats folder in the bin directory. Afterwards you can then REM run make build && make run to build and then execute from source. REM Set executable name SET PACKAGENAME=main.exe REM Set GOBIN SET GOBIN=%GOPATH%\bin\logstats REM Set ld flags containing current version and git hash SET VERSION=1.0.0 for /f "delims=" %%a in ('git rev-parse HEAD') do SET BUILD=%%a SET LDFLAGS=-ldflags "-X main.Version=%VERSION% -X main.Build=%BUILD%" REM Set current working directory SET CWD=%cd% REM Get first argument passed by command line set ARG1=%1 REM Do action if found if "%ARG1%" == "clean" ( echo Cleaning Build Directory CALL :clean ) ELSE IF "%ARG1%" == "copy" ( echo Copying extra files CALL :copy ) ELSE IF "%ARG1%" == "build" ( echo Building Project CALL :build echo Copying extra files CALL :copy ) ELSE IF "%ARG1%" == "update" ( echo Updating dependencies CALL :update ) ELSE IF "%ARG1%" == "run" ( CALL :run ) ELSE IF "%ARG1%" == "build-test-log" ( echo Building Test Log CALL :generate-log ) ELSE ( ECHO Incorrect arguments passed [%ARG1%] ) EXIT /B 0 :run %GOBIN%\%PACKAGENAME% -d %GOBIN% EXIT /B 0 :update go get -v ./... EXIT /B 0 :clean if exist %GOBIN% ( RD /S /Q %GOBIN% ) EXIT /B 0 :build @ECHO ON go install %LDFLAGS% %CWD%\cmd\ircstats\main.go @ECHO OFF EXIT /B 0 :copy cd extra copy "config.yaml" "%GOBIN%\config.yaml" > nul copy "template.html" "%GOBIN%\template.html" > nul cd .. EXIT /B 0 :generate-log php %CWD%\extra\createtestlog.php > %GOBIN%\irctest.log EXIT /B 0
carbontwelve/go-irc-stats
make.bat
bat
mit
1,686
mkdir classes javac -d classes SoftHardCleaner.java
spookiecookie/SoftHardCleaner
make.bat
bat
mit
54
avrdude.exe -c usbtiny -p atmega328p -U lfuse:w:0xFF:m -U hfuse:w:0xD6:m -U efuse:w:0x05:m avrdude.exe -c usbtiny -p atmega328p -C avrdude.conf -U flash:w:MotorController.ino.3.1.2.hex:i pause
SaintGimp/MotorController
code/install/install-upgrade.bat
bat
mit
192
cmd_drivers/platform/msm/seemp_core/built-in.o := /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ld -EL -r -o drivers/platform/msm/seemp_core/built-in.o drivers/platform/msm/seemp_core/seemp_core.o
livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel
drivers/platform/msm/seemp_core/.built-in.o.cmd
bat
gpl-2.0
285
cmd_/scratch/nathan/arm-lite/obj/linux-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu/tmp-install/include/drm/.install := perl scripts/headers_install.pl /scratch/nathan/arm-lite/obj/linux-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu/include/drm /scratch/nathan/arm-lite/obj/linux-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu/tmp-install/include/drm arm drm.h drm_mode.h drm_sarea.h i810_drm.h i830_drm.h i915_drm.h mga_drm.h nouveau_drm.h r128_drm.h radeon_drm.h savage_drm.h sis_drm.h via_drm.h vmwgfx_drm.h; perl scripts/headers_install.pl /scratch/nathan/arm-lite/obj/linux-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu/include/drm /scratch/nathan/arm-lite/obj/linux-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu/tmp-install/include/drm arm ; touch /scratch/nathan/arm-lite/obj/linux-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu/tmp-install/include/drm/.install
Merrii/buildroot
target/dragonboard/sysroot/usr/include/drm/..install.cmd
bat
gpl-2.0
904
cmd_mm/built-in.o := /root/adam/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o mm/built-in.o mm/bootmem.o mm/filemap.o mm/mempool.o mm/oom_kill.o mm/fadvise.o mm/maccess.o mm/page_alloc.o mm/page-writeback.o mm/readahead.o mm/swap.o mm/truncate.o mm/vmscan.o mm/shmem.o mm/prio_tree.o mm/util.o mm/mmzone.o mm/vmstat.o mm/backing-dev.o mm/page_isolation.o mm/mm_init.o mm/mmu_context.o mm/fremap.o mm/highmem.o mm/madvise.o mm/memory.o mm/mincore.o mm/mlock.o mm/mmap.o mm/mprotect.o mm/mremap.o mm/msync.o mm/rmap.o mm/vmalloc.o mm/pagewalk.o mm/init-mm.o mm/bounce.o mm/page_io.o mm/swap_state.o mm/swapfile.o mm/thrash.o mm/dmapool.o mm/ashmem.o mm/slab.o
DJSteve/StreakKernel
mm/.built-in.o.cmd
bat
gpl-2.0
687
@rem = '--*-Perl-*-- @echo off if "%OS%" == "Windows_NT" goto WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) ELSE ( perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 ) goto endofperl :WinNT IF EXIST "%~dp0perl.exe" ( "%~dp0perl.exe" -x -S %0 %* ) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" ( "%~dp0..\..\bin\perl.exe" -x -S %0 %* ) ELSE ( perl -x -S %0 %* ) if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul goto endofperl @rem '; #!/usr/bin/perl #line 29 package perlver; $perlver::VERSION = '1.38'; =pod =head1 NAME perlver - The Perl Minimum Version Analyzer =head1 SYNOPSIS adam@red:~$ perlver Perl-MinimumVersion Found directory '.' Searching for Perl files... found 3 file(s) Scanning lib/Perl/MinimumVersion.pm... done Scanning t/01_compile.t... done Scanning t/02_main.t... done --------------------------------------------------------- | file | explicit | syntax | external | | --------------------------------------------------------- | | lib/Perl/MinimumVersion.pm | 5.005 | ~ | n/a | | t/01_compile.t | ~ | ~ | n/a | | t/02_main.t | ~ | ~ | n/a | --------------------------------------------------------- Minimum version of Perl required: ... adam@red:~$ =head1 DESCRIPTION C<perlver> is a console script created to provide convenient access to the functionality provided by L<Perl::MinimumVersion>. --blame option shows code which requires this version of perl The synopsis above pretty much covers all you need to know at this point. =cut use 5.005; use strict; use version 'qv'; use File::Spec (); use Getopt::Long 'GetOptions'; use Params::Util '_INSTANCE'; use File::Find::Rule (); use File::Find::Rule::Perl (); use Perl::MinimumVersion 'PMV'; # Define prototypes sub verbose ($); sub message ($); sub error (@); sub format_version ($); sub dist ($); use vars qw{$VERBOSE $BLAME $EXPLAIN}; BEGIN { # Configuration globals $VERBOSE = ''; $BLAME = ''; $EXPLAIN = ''; # Unbuffer output $| = 1; } ##################################################################### # Configuration GetOptions( verbose => \$VERBOSE, blame => \$BLAME, explain => \$EXPLAIN, ); # Get the target my $target = shift @ARGV; unless ( $target ) { error("You did not provide a file or directory to check"); } print "\n"; if ( $BLAME ) { blame($target); } else { summary($target); } exit(0); ##################################################################### # Regular Mode sub summary { my $target = shift; my @files = (); if ( -d $target ) { verbose "Found directory '$target'\n"; verbose "Searching for Perl files... "; @files = find($target); verbose "found " . scalar(@files) . " file(s)\n"; } elsif ( -f $target ) { verbose "Found file '$target'\n"; @files = $target; } else { error "File or directory '$target' does not exist"; } # Scan the files verbose "Processing files...\n"; my @results = (); my $file_len = 12 + List::Util::max map { length $_ } @files; foreach my $file ( @files ) { # Set up the results data verbose sprintf("%-${file_len}s", "Scanning $file..."); my $result = [ $file, undef, undef ]; push @results, $result; # Load the document standalone first so we store the file name my $document = PPI::Document::File->new( $file, readonly => 1, ); unless ( $document ) { verbose "[error]\n"; next; } # Create the version checker my $pmv = PMV->new( $document ); unless ( $pmv ) { verbose "[error]\n"; next; } # Check the explicit version $result->[1] = $pmv->minimum_explicit_version; # Check the syntax version $result->[2] = $pmv->minimum_syntax_version; $result->[4] = $pmv->{syntax_check_failed} if exists $pmv->{syntax_check_failed}; verbose "[ok]\n"; } # Calculate the minimum explicit, syntax and total versions verbose "Compiling results...\n"; my $pmv_explicit = PMV->_max( map { $_->[1] } @results ); my $pmv_syntax = PMV->_max( map { $_->[2] } @results ); my $pmv_bug = !! ($pmv_explicit and $pmv_syntax and $pmv_syntax > $pmv_explicit); my $pmv_total = PMV->_max( $pmv_explicit, $pmv_syntax ); # Generate the output values my @outputs = ( [ 'file', 'explicit', 'syntax', 'external' ] ); foreach my $result ( @results ) { my $output = []; $output->[0] = $result->[0]; $output->[1] = format_version($result->[1]); $output->[2] = format_version($result->[2]); # $output->[3] = format_version($result->[3]); $output->[3] = 'n/a'; $output->[4] = $result->[4] || '' if ($EXPLAIN); push @outputs, $output; } # Complete the output preperation work $pmv_explicit = format_version( $pmv_explicit ); $pmv_syntax = format_version( $pmv_syntax ); $pmv_total = format_version( $pmv_total ); if ( $pmv_total eq '~' ) { $pmv_total = format_version( qv(5.004) ) . ' (default)'; } my $len0 = List::Util::max map { length $_->[0] } @outputs; my $len1 = List::Util::max map { length $_->[1] } @outputs; my $len2 = List::Util::max map { length $_->[2] } @outputs; my $len3 = List::Util::max map { length $_->[3] } @outputs; my $len_all = $len0 + $len1 + $len2 + $len3 + 9; my $len_totals = $len1 + $len2 + $len3 + 6; my $line_format = " | %-${len0}s | %-${len1}s | %-${len2}s | %-${len3}s |\n"; if ($EXPLAIN) { chomp($line_format); $line_format.=" (%s)\n"; } my $spacer = '-' x $len_all; my $error_message = "ERROR DETECTED : ACTUAL DEPENDENCY HIGHER THAN SPECIFIED"; my $error_length = length $error_message; if ( $error_length > $len_all ) { my $diff = $error_length - $len_all; $len_all += $diff; $len0 += $diff; } # Prepare formatting parts my $divider = " | $spacer |\n"; my $capline = " $spacer \n"; my $rowline = " | %-${len_all}s |\n"; # Print the results print "\n"; print $capline; printf( $line_format, @{shift(@outputs)} ); print $divider; foreach my $result ( @outputs ) { printf( $line_format, @$result ); } print $divider; printf( $rowline, "Minimum explicit version : $pmv_explicit" ); printf( $rowline, "Minimum syntax version : $pmv_syntax" ); printf( $rowline, "Minimum version of perl : $pmv_total" ); if ( $pmv_bug ) { print $divider; printf( $rowline, "ERROR : ACTUAL DEPENDENCY HIGHER THAN SPECIFIED" ); printf( $rowline, "DETAILS : perlver --blame $target" ); } print $capline; print "\n"; } sub blame { my $target = shift; my @files = (); if ( -d $target ) { verbose "Found directory '$target'\n"; verbose "Searching for Perl files... "; @files = find($target); verbose "found " . scalar(@files) . " file(s)\n"; } elsif ( -f $target ) { verbose "Found file '$target'\n"; @files = $target; } else { error "File or directory '$target' does not exist"; } # Scan the files verbose "Processing files...\n"; my $maximum = undef; my $blame = undef; my $file_len = 12 + List::Util::max map { length $_ } @files; my $max = undef; my $maxpmv = undef; foreach my $file ( @files ) { # Set up the results data verbose sprintf("%-${file_len}s", "Scanning $file..."); # Load the document standalone first so we store the file name my $document = PPI::Document::File->new( $file, readonly => 1, ); unless ( $document ) { verbose "[error]\n"; next; } # Create the version checker my $pmv = PMV->new( $document ); unless ( $pmv ) { verbose "[error]\n"; next; } # Check the syntax version my $reason = $pmv->minimum_syntax_reason( $max ? $max->version : undef ); if ( $reason ) { verbose $reason->version . "\n"; } else { verbose "~\n"; next; } # Handle the first successful case if ( ! $max or $reason->version > $max->version ) { $max = $reason; $maxpmv = $pmv; next; } } # Anything? unless ( $max ) { print "Nothing obvious to blame\n"; exit(0); } # Index and prepare my $element = $max->element or die "Reason element unknown"; my $document = $element->top or die "Reason document unknown"; $document->index_locations; # Generate the location message my $file = $document->filename; my $line = $element->line_number; my $char = $element->column_number; my $content = $element->content; my $rule = $max->rule; my $version = $max->version; print " ------------------------------------------------------------\n"; print " File : $file\n"; print " Line : $line\n"; print " Char : $char\n"; print " Rule : $rule\n"; print " Version : $version\n"; print " ------------------------------------------------------------\n"; print " $content\n"; print " ------------------------------------------------------------\n"; } sub find { my $dir = shift; my $perl = File::Find::Rule->perl_file; my $build = File::Find::Rule->name('blib', '_build')->directory; return dist($dir) ? File::Find::Rule->any( $build->prune->discard, $perl, )->in( $dir ) : $perl->in( $dir ); } ##################################################################### # Support Functions sub verbose ($) { return 1 unless $VERBOSE; print ' ' . $_[0]; } sub message ($) { print ' ' . $_[0]; } sub error (@) { print ' ' . join '', map { "$_\n" } ('', @_, ''); exit(255); } sub format_version ($) { my $version = shift; if ( _INSTANCE($version, 'Perl::MinimumVersion::Reason') ) { $version = $version->version->normal; } elsif ( _INSTANCE($version, 'version') ) { return $version->normal; } elsif ( $version ) { return "$version"; } elsif ( defined $version ) { return '~'; } else { return 'undef'; } } sub format_reason ($) { my $reason = shift; # Index the document of the worse offender my $element = $reason->element; my $document = $element->top; $document->index_locations; $DB::single = 1; 1; } sub dist ($) { my $dir = shift; if ( -f File::Spec->catfile($dir, 'Makefile.PL') ) { return 1; } if ( -f File::Spec->catfile($dir, 'Build.PL') ) { return 1; } return ''; } =pod =head1 TO DO - Add PPI::Cache integration - Add PPI::Metrics integration (once it exists) - Add some sort of parseable output =head1 SUPPORT All bugs should be filed via the bug tracker at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl-MinimumVersion> For other issues, or commercial enhancement and support, contact the author =head1 AUTHORS Adam Kennedy <adamk@cpan.org> =head1 SEE ALSO L<PPI>, L<Perl::MinimumVersion> =head1 COPYRIGHT Copyright 2005 - 2012 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =cut __END__ :endofperl
mishin/dwimperl-windows
strawberry-perl-5.20.0.1-32bit-portable/perl/site/bin/perlver.bat
bat
gpl-2.0
11,652
cmd_fs/notify/built-in.o := /home/sinxoner18/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o fs/notify/built-in.o fs/notify/fsnotify.o fs/notify/notification.o fs/notify/group.o fs/notify/inode_mark.o fs/notify/mark.o fs/notify/vfsmount_mark.o fs/notify/dnotify/built-in.o fs/notify/inotify/built-in.o fs/notify/fanotify/built-in.o
SinxOner/android_kernel_lge_p710
fs/notify/.built-in.o.cmd
bat
gpl-2.0
363
cmd_drivers/scsi/scsi_wait_scan.ko := ld -r -m elf_i386 --build-id -o drivers/scsi/scsi_wait_scan.ko drivers/scsi/scsi_wait_scan.o drivers/scsi/scsi_wait_scan.mod.o
namgk/kernel-tut
drivers/scsi/.scsi_wait_scan.ko.cmd
bat
gpl-2.0
166
cmd_lib/built-in.o := ld -m elf_i386 -r -o lib/built-in.o lib/bcd.o lib/div64.o lib/sort.o lib/parser.o lib/halfmd4.o lib/debug_locks.o lib/random32.o lib/bust_spinlocks.o lib/hexdump.o lib/kasprintf.o lib/bitmap.o lib/scatterlist.o lib/string_helpers.o lib/gcd.o lib/lcm.o lib/list_sort.o lib/iomap.o lib/iomap_copy.o lib/devres.o lib/find_last_bit.o lib/hweight.o lib/kernel_lock.o lib/bitrev.o lib/crc-ccitt.o lib/crc16.o lib/crc-t10dif.o lib/crc-itu-t.o lib/crc32.o lib/zlib_inflate/built-in.o lib/percpu_counter.o lib/audit.o lib/syscall.o lib/nlattr.o
madhwang/linuxKernel
lib/.built-in.o.cmd
bat
gpl-2.0
562
cmd_arch/arm/lib/testclearbit.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/lib/.testclearbit.o.d -nostdinc -isystem /opt/toolchains/arm-2009q3/bin/../lib/gcc/arm-none-eabi/4.4.1/include -I/home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s5pv210/include -Iarch/arm/plat-s5p/include -Iarch/arm/plat-samsung/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/testclearbit.o arch/arm/lib/testclearbit.S deps_arch/arm/lib/testclearbit.o := \ arch/arm/lib/testclearbit.S \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/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/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/linkage.h \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/diz/androidBOCA/system/kernel/samsung/2.6.35-tab/arch/arm/include/asm/hwcap.h \ arch/arm/lib/bitops.h \ $(wildcard include/config/cpu/32v6k.h) \ arch/arm/lib/testclearbit.o: $(deps_arch/arm/lib/testclearbit.o) $(deps_arch/arm/lib/testclearbit.o):
dizgustipated/BOCA-2.6.35.14
arch/arm/lib/.testclearbit.o.cmd
bat
gpl-2.0
2,005
cmd_fs/splice.o := arm-linux-gnueabihf-gcc -Wp,-MD,fs/.splice.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabihf/4.6/include -I/home/tyler/dev/rk3188/tylermk908/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk3188/include -Iarch/arm/plat-rk/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -Wno-unused-but-set-variable -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(splice)" -D"KBUILD_MODNAME=KBUILD_STR(splice)" -c -o fs/splice.o fs/splice.c source_fs/splice.o := fs/splice.c deps_fs/splice.o := \ include/linux/fs.h \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/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 \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/posix_types.h \ include/linux/linkage.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/const.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/bitops.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/system.h \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cpu/32v6k.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/v6.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/irqflags.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hwcap.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/asm-generic/bitops/le.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/lib/gcc/arm-linux-gnueabihf/4.6/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/dynamic_debug.h \ /home/tyler/dev/rk3188/tylermk908/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/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/spinlock.h \ $(wildcard include/config/thumb2/kernel.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/errata/754327.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hw_breakpoint.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.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) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/rcutree.h \ include/linux/rculist_bl.h \ include/linux/list_bl.h \ include/linux/bit_spinlock.h \ include/linux/path.h \ include/linux/stat.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/have/arch/mutex/cpu/relax.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/errno.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/percpu_counter.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/smp.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/file.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/transparent/hugepage.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/ksm.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/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/hugetlbfs.h) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/have/arch/pfn/valid.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /home/tyler/dev/rk3188/tylermk908/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) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/glue.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ arch/arm/mach-rk3188/include/mach/memory.h \ arch/arm/plat-rk/include/plat/memory.h \ include/linux/version.h \ arch/arm/mach-rk3188/include/mach/io.h \ arch/arm/plat-rk/include/plat/io.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/proc-fns.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/glue-proc.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6k.h) \ $(wildcard include/config/cpu/v7.h) \ arch/arm/mach-rk3188/include/mach/vmalloc.h \ arch/arm/include/generated/../../mach-rk30/include/mach/vmalloc.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/huge_mm.h \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/vm_event_item.h \ include/linux/highmem.h \ $(wildcard include/config/x86/32.h) \ $(wildcard include/config/debug/highmem.h) \ include/linux/uaccess.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/uaccess.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/linux/hardirq.h \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/irq/time/accounting.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hardirq.h \ $(wildcard include/config/local/timers.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/irq.h \ arch/arm/mach-rk3188/include/mach/irqs.h \ include/linux/irq_cpustat.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/smp/on/up.h) \ $(wildcard include/config/arm/errata/411920.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/glue-cache.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/shmparam.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/kmap_types.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/highmem.h \ $(wildcard include/config/cpu/tlb/v6.h) \ include/linux/hugetlb_inline.h \ include/linux/splice.h \ include/linux/pipe_fs_i.h \ include/linux/memcontrol.h \ $(wildcard include/config/cgroup/mem/res/ctlr/swap.h) \ $(wildcard include/config/cgroup/mem/cont.h) \ include/linux/cgroup.h \ $(wildcard include/config/cgroups.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/sched/autogroup.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/fanotify.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/cgroup/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/rcu/boost.h) \ $(wildcard include/config/compat/brk.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/linux/param.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/timex.h \ arch/arm/mach-rk3188/include/mach/timex.h \ arch/arm/plat-rk/include/plat/timex.h \ include/linux/jiffies.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ipcbuf.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sigcontext.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/proportions.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 \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/timerfd.h) \ include/linux/timerqueue.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/user/ns.h) \ include/linux/key.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) \ $(wildcard include/config/freezer.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/idr.h \ include/linux/cgroup_subsys.h \ $(wildcard include/config/cgroup/debug.h) \ $(wildcard include/config/cgroup/cpuacct.h) \ $(wildcard include/config/cgroup/device.h) \ $(wildcard include/config/cgroup/freezer.h) \ $(wildcard include/config/net/cls/cgroup.h) \ $(wildcard include/config/blk/cgroup.h) \ $(wildcard include/config/cgroup/perf.h) \ include/linux/mm_inline.h \ include/linux/swap.h \ include/linux/node.h \ $(wildcard include/config/memory/hotplug/sparse.h) \ include/linux/sysdev.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/module.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) \ $(wildcard include/config/debug/set/module/ronx.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/elf.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ include/linux/export.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ include/linux/writeback.h \ include/linux/buffer_head.h \ include/linux/syscalls.h \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/mips.h) \ $(wildcard include/config/have/syscall/wrappers.h) \ include/linux/unistd.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/unistd.h \ $(wildcard include/config/oabi/compat.h) \ include/trace/syscall.h \ include/linux/ftrace_event.h \ include/linux/ring_buffer.h \ $(wildcard include/config/ring/buffer/allow/swap.h) \ include/linux/kmemcheck.h \ include/linux/seq_file.h \ include/linux/trace_seq.h \ include/linux/perf_event.h \ $(wildcard include/config/perf/use/vmalloc.h) \ include/linux/pid_namespace.h \ $(wildcard include/config/pid/ns.h) \ include/linux/nsproxy.h \ include/linux/ftrace.h \ $(wildcard include/config/function/tracer.h) \ $(wildcard include/config/dynamic/ftrace.h) \ $(wildcard include/config/stack/tracer.h) \ $(wildcard include/config/frame/pointer.h) \ include/linux/trace_clock.h \ include/linux/kallsyms.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ftrace.h \ $(wildcard include/config/old/mcount.h) \ include/linux/cpu.h \ $(wildcard include/config/arch/cpu/probe/release.h) \ $(wildcard include/config/pm/sleep/smp.h) \ include/linux/irq_work.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ include/linux/security.h \ $(wildcard include/config/security/path.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/securityfs.h) \ include/linux/fsnotify.h \ include/linux/fsnotify_backend.h \ $(wildcard include/config/fanotify/access/permissions.h) \ include/linux/audit.h \ $(wildcard include/config/change.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/msgbuf.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/socket.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/socket.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sockios.h \ include/linux/sockios.h \ include/linux/in6.h \ fs/splice.o: $(deps_fs/splice.o) $(deps_fs/splice.o):
tyeo098/MK908-Kernel-NAND
fs/.splice.o.cmd
bat
gpl-2.0
30,911
cmd_scripts/mod/modpost.o := gcc -Wp,-MD,scripts/mod/.modpost.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o scripts/mod/modpost.o scripts/mod/modpost.c deps_scripts/mod/modpost.o := \ scripts/mod/modpost.c \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/module/srcversion/all.h) \ $(wildcard include/config/relocatable.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/debug/section/mismatch.h) \ /usr/include/stdc-predef.h \ /usr/include/stdio.h \ /usr/include/features.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-redhat-linux/4.8.3/include/stddef.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-redhat-linux/4.8.3/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/include/ctype.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/bits/byteswap-16.h \ /usr/include/xlocale.h \ scripts/mod/modpost.h \ /usr/include/stdlib.h \ /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h \ /usr/include/sys/types.h \ /usr/include/time.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/bits/stdlib-bsearch.h \ /usr/include/bits/stdlib-float.h \ /usr/include/string.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ /usr/include/sys/stat.h \ /usr/include/bits/stat.h \ /usr/include/sys/mman.h \ /usr/include/bits/mman.h \ /usr/include/bits/mman-linux.h \ /usr/include/fcntl.h \ /usr/include/bits/fcntl.h \ /usr/include/bits/fcntl-linux.h \ /usr/include/bits/uio.h \ /usr/include/unistd.h \ /usr/include/bits/posix_opt.h \ /usr/include/bits/environments.h \ /usr/include/bits/confname.h \ /usr/include/getopt.h \ /usr/include/elf.h \ /usr/lib/gcc/x86_64-redhat-linux/4.8.3/include/stdint.h \ /usr/include/stdint.h \ /usr/include/bits/wchar.h \ scripts/mod/elfconfig.h \ scripts/mod/../../include/linux/license.h \ scripts/mod/modpost.o: $(deps_scripts/mod/modpost.o) $(deps_scripts/mod/modpost.o):
Existed/kernel-2.6.35.14
scripts/mod/.modpost.o.cmd
bat
gpl-2.0
2,585
cmd_sound/soc/codecs/snd-soc-omap-hdmi-codec.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ld -EL -r -o sound/soc/codecs/snd-soc-omap-hdmi-codec.o sound/soc/codecs/omap-hdmi-codec.o
0xD34D/kernel_amazon_tate
sound/soc/codecs/.snd-soc-omap-hdmi-codec.o.cmd
bat
gpl-2.0
217
@echo off 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. REM ------------------------------------------------------------------------ set JAVA_HOME = "C:\dev\Java\jdk1.7.0_79" if exist "%HOME%\activemqrc_pre.bat" call "%HOME%\activemqrc_pre.bat" if "%OS%"=="Windows_NT" @setlocal rem %~dp0 is expanded pathname of the current script under NT set DEFAULT_ACTIVEMQ_HOME=%~dp0.. if "%ACTIVEMQ_HOME%"=="" set ACTIVEMQ_HOME=%DEFAULT_ACTIVEMQ_HOME% set DEFAULT_ACTIVEMQ_HOME= :doneStart rem find ACTIVEMQ_HOME if it does not exist due to either an invalid value passed rem by the user or the %0 problem on Windows 9x if exist "%ACTIVEMQ_HOME%\README.txt" goto checkJava rem check for activemq in Program Files on system drive if not exist "%SystemDrive%\Program Files\activemq" goto checkSystemDrive set ACTIVEMQ_HOME=%SystemDrive%\Program Files\activemq goto checkJava :checkSystemDrive rem check for activemq in root directory of system drive if not exist %SystemDrive%\activemq\README.txt goto checkCDrive set ACTIVEMQ_HOME=%SystemDrive%\activemq goto checkJava :checkCDrive rem check for activemq in C:\activemq for Win9X users if not exist C:\activemq\README.txt goto noAntHome set ACTIVEMQ_HOME=C:\activemq goto checkJava :noAntHome echo ACTIVEMQ_HOME is set incorrectly or activemq could not be located. Please set ACTIVEMQ_HOME. goto end :checkJava set _JAVACMD=%JAVACMD% if "%JAVA_HOME%" == "" goto noJavaHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe goto runAnt :noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=java.exe echo. echo Warning: JAVA_HOME environment variable is not set. echo. :runAnt if "%ACTIVEMQ_BASE%" == "" set ACTIVEMQ_BASE=%ACTIVEMQ_HOME% if "%ACTIVEMQ_CONF%" == "" set ACTIVEMQ_CONF=%ACTIVEMQ_HOME%\conf if "%ACTIVEMQ_DATA%" == "" set ACTIVEMQ_DATA=%ACTIVEMQ_HOME%\data if "%ACTIVEMQ_TMP%" == "" set ACTIVEMQ_TMP=%ACTIVEMQ_DATA%\tmp if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=%ACTIVEMQ_CONF%\login.config set ACTIVEMQ_OPTS=%ACTIVEMQ_OPTS% -Dmessaging.configuration.home=C:\dev\configuration\instance1 if "%SUNJMX%" == "" set SUNJMX=-Dcom.sun.management.jmxremote REM set SUNJMX=-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false REM Uncomment to enable YourKit profiling REM SET ACTIVEMQ_DEBUG_OPTS="-agentlib:yjpagent" REM Uncomment to enable remote debugging REM SET ACTIVEMQ_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 REM Setup ActiveMQ Classpath. REM Add instance conf dir before AMQ install conf dir to pick up instance-specific classpath entries first set ACTIVEMQ_CLASSPATH=%ACTIVEMQ_CONF%;%ACTIVEMQ_BASE%/conf;%ACTIVEMQ_HOME%/conf;%ACTIVEMQ_CLASSPATH% "%_JAVACMD%" %SUNJMX% %ACTIVEMQ_DEBUG_OPTS% %ACTIVEMQ_OPTS% %SSL_OPTS% -Dactivemq.classpath="%ACTIVEMQ_CLASSPATH%" -Dactivemq.home="%ACTIVEMQ_HOME%" -Dactivemq.base="%ACTIVEMQ_BASE%" -Dactivemq.conf="%ACTIVEMQ_CONF%" -Dactivemq.data="%ACTIVEMQ_DATA%" -Djava.io.tmpdir="%ACTIVEMQ_TMP%" -jar "%ACTIVEMQ_HOME%/bin/activemq.jar" %* goto end :end set _JAVACMD= if "%OS%"=="Windows_NT" @endlocal :mainEnd if exist "%HOME%\activemqrc_post.bat" call "%HOME%\activemqrc_post.bat"
naggens/Messaging
activemq_setup/activemq.bat
bat
gpl-2.0
4,244
cmd_arch/arm/mach-msm/idle.o := arm-eabi-gcc -Wp,-MD,arch/arm/mach-msm/.idle.o.d -nostdinc -isystem /usr/bin/../lib/gcc/arm-eabi/4.5.0/include -Iinclude -I/home/jacob/source/wildfire-kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -gdwarf-2 -c -o arch/arm/mach-msm/idle.o arch/arm/mach-msm/idle.S deps_arch/arm/mach-msm/idle.o := \ arch/arm/mach-msm/idle.S \ $(wildcard include/config/oprofile.h) \ $(wildcard include/config/msm/fiq/support.h) \ $(wildcard include/config/cpu/v7.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/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ $(wildcard include/config/smp.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \ arch/arm/mach-msm/idle.o: $(deps_arch/arm/mach-msm/idle.o) $(deps_arch/arm/mach-msm/idle.o):
HCDRJacob/wildfire-kernel
arch/arm/mach-msm/.idle.o.cmd
bat
gpl-2.0
1,481
@echo Testing GetMap ... @echo Info: http://onearth.jpl.nasa.gov/tiled.html @REM NOTE THE ESCAPE CHAR, '^', BEFORE EACH '&', TO ENSURE IT REMAINS!!! @REM =================================================================== @set TEMPBASE=http://wms.jpl.nasa.gov/cgi-bin/wms.cgi?LAYERS=modis,global_mosaic^&styles=default,visual^& @set TEMPEXE=bin\GetMap.exe @if NOT EXIST %TEMPEXE% goto ERR1 @if "%1x" == "x" goto HELP @if NOT EXIST %1\. goto ERR2 @set TEMPHTM=%1\tempmaps.htm @REM KSFO = --lat=37.621 --lon=-122.381 @REM %TEMPEXE% --help @REM GetMap - FlightGear mapping retrieval utility @REM Usage: @REM --size=pixels Create map of size pixels*pixels (default 256) @REM --base-url=url Beginning of the url of the WMS server @REM --atlas=path Create maps of all scenery, and store them in path @REM --min-lat Minimum latitude @REM --max-lat Maximum latitude @REM --min-lon Minimum longitude @REM --max-lon Maximum longitude @REM --verbose Display information during processing @set TEMPCMD=--base-url="%TEMPBASE%" @set TEMPCMD=%TEMPCMD% --size=512 @set TEMPCMD=%TEMPCMD% --atlas=%1 @set TEMPCMD=%TEMPCMD% --min-lat=36 @set TEMPCMD=%TEMPCMD% --max-lat=39 @set TEMPCMD=%TEMPCMD% --min-lon=-123 @set TEMPCMD=%TEMPCMD% --max-lon=-121 @set TEMPCMD=%TEMPCMD% --verbose @echo Run %TEMPEXE% with commands - @echo %TEMPCMD% @echo This should write 6 images... Ctrl+C to abort... @pause %TEMPEXE% %TEMPCMD% @echo ^<html^>^<head^>^<title^>GetMap Maps^</title^> >%TEMPHTM% @if NOT EXIST %TEMPHTM% goto NOHTM @echo ^<style type="text/css"^> >>%TEMPHTM% @echo .nob { margin:0; padding:0; border:0; } >>%TEMPHTM% @echo ^</style^> >>%TEMPHTM% @echo ^<body^> >>%TEMPHTM% @echo ^<table border="0" cellpadding="0" cellspacing="0" class="nob" align="center" summary="image holder"^> >>%TEMPHTM% @echo ^<tr^> >>%TEMPHTM% @echo ^<td class="nob"^>^<img class="nob" src="w123n38.jpg" alt="IMG"^>^</td^> >>%TEMPHTM% @echo ^<td class="nob"^>^<img class="nob" src="w122n38.jpg" alt="IMG"^>^</td^> >>%TEMPHTM% @echo ^</tr^> >>%TEMPHTM% @echo ^<tr^> >>%TEMPHTM% @echo ^<td class="nob"^>^<img class="nob" src="w123n37.jpg" alt="IMG"^>^</td^> >>%TEMPHTM% @echo ^<td class="nob"^>^<img class="nob" src="w122n37.jpg" alt="IMG"^>^</td^> >>%TEMPHTM% @echo ^</tr^> >>%TEMPHTM% @echo ^<tr^> >>%TEMPHTM% @echo ^<td class="nob"^>^<img class="nob" src="w123n36.jpg" alt="IMG"^>^</td^> >>%TEMPHTM% @echo ^<td class="nob"^>^<img class="nob" src="w122n36.jpg" alt="IMG"^>^</td^> >>%TEMPHTM% @echo ^</tr^> >>%TEMPHTM% @echo ^</table^> >>%TEMPHTM% @echo ^</body^> >>%TEMPHTM% @echo ^</html^> >>%TEMPHTM% @start %TEMPHTM% @goto END :NOHTM @echo WARNING: Can NOT write %TEMPHTM% file, to view maps... @goto END :ERR1 @echo ERROR: Can NOT locate %TEMPEXE% ... check name, location ... @goto END :ERR2 @echo ERROR: Can NOT locate %1 path ... check name, or create first ... @goto END :HELP @echo GetMap will fetch maps from the above server, but you @echo must give an existing OUTPUT directory, @echo where to store the maps retrieved ... @goto END :END
congocongo/fg-atlas
projects/msvc/rungetmap.bat
bat
gpl-2.0
3,128
@start javaw -jar ISync.jar
m34434/JavaGimmicks-Playground
Applications/ISync/etc/ISync.bat
bat
gpl-3.0
27
java -jar AAATools-${project.version}.jar -d -c "Konfigurationen/AAAKatalog-AFIS-7.1.1.xml"
ShapeChange/AAATools
src/main/resources/bat/katalog_afis.bat
bat
gpl-3.0
92
del ..\test.o3\*.* del ..\text.o3\*.* ..\masmx a1 ..\test.o3\a2 -z > ..\text.o3\a2.txt ..\masmx a1 ..\test.o3\a3 -c > ..\text.o3\a3.txt ..\masmx a1 ..\test.o3\a4 -zc > ..\text.o3\a4.txt ..\masmx 1101 -lnoy ..\test.o3\1101 > ..\text.o3\1101.txt ..\masmx 1103 -lnoy ..\test.o3\1103 > ..\text.o3\1103.txt ..\masmx 14 -lnoy ..\test.o3\14 > ..\text.o3\14.txt ..\masmx 16lib24 -lnoy ..\test.o3\16lib24 > ..\text.o3\16lib24.txt ..\masmx 1st -lnoy ..\test.o3\1st > ..\text.o3\1st.txt ..\masmx 2468 -lnoy ..\test.o3\2468 > ..\text.o3\2468.txt ..\masmx 2manif -lnoy ..\test.o3\2manif > ..\text.o3\2manif.txt ..\masmx 2nd -lnoy ..\test.o3\2nd > ..\text.o3\2nd.txt ..\masmx 3byte -lnoy ..\test.o3\3byte > ..\text.o3\3byte.txt ..\masmx 3rd -lnoy ..\test.o3\3rd > ..\text.o3\3rd.txt ..\masmx @ -lnoy ..\test.o3\@ > ..\text.o3\@.txt ..\masmx @1 -lnoy ..\test.o3\@1 > ..\text.o3\@1.txt ..\masmx a1 -lnoy ..\test.o3\a1 > ..\text.o3\a1.txt ..\masmx abit -lnoy ..\test.o3\abit > ..\text.o3\abit.txt ..\masmx about -lnoy ..\test.o3\about > ..\text.o3\about.txt ..\masmx addo -lnoy ..\test.o3\addo > ..\text.o3\addo.txt ..\masmx addu -lnoy ..\test.o3\addu > ..\text.o3\addu.txt ..\masmx addz -lnoy ..\test.o3\addz > ..\text.o3\addz.txt ..\masmx adsomor1 -lnoy ..\test.o3\adsomor1 > ..\text.o3\adsomor1.txt ..\masmx adsomor2 -lnoy ..\test.o3\adsomor2 > ..\text.o3\adsomor2.txt ..\masmx adsomor3 -lnoy ..\test.o3\adsomor3 > ..\text.o3\adsomor3.txt ..\masmx adsomor4 -lnoy ..\test.o3\adsomor4 > ..\text.o3\adsomor4.txt ..\masmx afile -lnoy ..\test.o3\afile > ..\text.o3\afile.txt ..\masmx aglimpse -lnoy ..\test.o3\aglimpse > ..\text.o3\aglimpse.txt ..\masmx agranoy -lnoy ..\test.o3\agranoy > ..\text.o3\agranoy.txt ..\masmx ajoko -lnoy ..\test.o3\ajoko > ..\text.o3\ajoko.txt ..\masmx algebra -lnoy ..\test.o3\algebra > ..\text.o3\algebra.txt ..\masmx align -lnoy ..\test.o3\align > ..\text.o3\align.txt ..\masmx allyoobl -lnoy ..\test.o3\allyoobl > ..\text.o3\allyoobl.txt ..\masmx alyat -lnoy ..\test.o3\alyat > ..\text.o3\alyat.txt ..\masmx anew -lnoy ..\test.o3\anew > ..\text.o3\anew.txt ..\masmx another -lnoy ..\test.o3\another > ..\text.o3\another.txt ..\masmx aon -lnoy ..\test.o3\aon > ..\text.o3\aon.txt ..\masmx app -lnoy ..\test.o3\app > ..\text.o3\app.txt ..\masmx app1 -lnoy ..\test.o3\app1 > ..\text.o3\app1.txt ..\masmx app2 -lnoy ..\test.o3\app2 > ..\text.o3\app2.txt ..\masmx app3 -lnoy ..\test.o3\app3 > ..\text.o3\app3.txt ..\masmx app4 -lnoy ..\test.o3\app4 > ..\text.o3\app4.txt ..\masmx app7 -lnoy ..\test.o3\app7 > ..\text.o3\app7.txt ..\masmx appoint -lnoy ..\test.o3\appoint > ..\text.o3\appoint.txt ..\masmx approx -lnoy ..\test.o3\approx > ..\text.o3\approx.txt ..\masmx aqt -lnoy ..\test.o3\aqt > ..\text.o3\aqt.txt ..\masmx arm -lnoy ..\test.o3\arm > ..\text.o3\arm.txt ..\masmx array -lnoy ..\test.o3\array > ..\text.o3\array.txt ..\masmx arrayok -lnoy ..\test.o3\arrayok > ..\text.o3\arrayok.txt ..\masmx asample -lnoy ..\test.o3\asample > ..\text.o3\asample.txt ..\masmx ast -lnoy ..\test.o3\ast > ..\text.o3\ast.txt ..\masmx atest -lnoy ..\test.o3\atest > ..\text.o3\atest.txt ..\masmx attempt -lnoy ..\test.o3\attempt > ..\text.o3\attempt.txt ..\masmx avast -lnoy ..\test.o3\avast > ..\text.o3\avast.txt ..\masmx avastok -lnoy ..\test.o3\avastok > ..\text.o3\avastok.txt ..\masmx avenu -lnoy ..\test.o3\avenu > ..\text.o3\avenu.txt ..\masmx awail -lnoy ..\test.o3\awail > ..\text.o3\awail.txt ..\masmx awain -lnoy ..\test.o3\awain > ..\text.o3\awain.txt ..\masmx away -lnoy ..\test.o3\away > ..\text.o3\away.txt ..\masmx awkward -lnoy ..\test.o3\awkward > ..\text.o3\awkward.txt ..\masmx azuli -lnoy ..\test.o3\azuli > ..\text.o3\azuli.txt ..\masmx b -lnoy ..\test.o3\b > ..\text.o3\b.txt ..\masmx badly -lnoy ..\test.o3\badly > ..\text.o3\badly.txt ..\masmx balance -lnoy ..\test.o3\balance > ..\text.o3\balance.txt ..\masmx banks -lnoy ..\test.o3\banks > ..\text.o3\banks.txt ..\masmx banks2 -lnoy ..\test.o3\banks2 > ..\text.o3\banks2.txt ..\masmx basal1 -lnoy ..\test.o3\basal1 > ..\text.o3\basal1.txt ..\masmx basalall -lnoy ..\test.o3\basalall > ..\text.o3\basalall.txt ..\masmx basalone -lnoy ..\test.o3\basalone > ..\text.o3\basalone.txt ..\masmx basalthr -lnoy ..\test.o3\basalthr > ..\text.o3\basalthr.txt ..\masmx basaltwo -lnoy ..\test.o3\basaltwo > ..\text.o3\basaltwo.txt ..\masmx basis -lnoy ..\test.o3\basis > ..\text.o3\basis.txt ..\masmx bb -lnoy ..\test.o3\bb > ..\text.o3\bb.txt ..\masmx bdw -lnoy ..\test.o3\bdw > ..\text.o3\bdw.txt ..\masmx bequf -lnoy ..\test.o3\bequf > ..\text.o3\bequf.txt ..\masmx big -lnoy ..\test.o3\big > ..\text.o3\big.txt ..\masmx big48 -lnoy ..\test.o3\big48 > ..\text.o3\big48.txt ..\masmx bitsof -lnoy ..\test.o3\bitsof > ..\text.o3\bitsof.txt ..\masmx blanks -lnoy ..\test.o3\blanks > ..\text.o3\blanks.txt ..\masmx blanquo -lnoy ..\test.o3\blanquo > ..\text.o3\blanquo.txt ..\masmx bogle -lnoy ..\test.o3\bogle > ..\text.o3\bogle.txt ..\masmx bonkers -lnoy ..\test.o3\bonkers > ..\text.o3\bonkers.txt ..\masmx bounded -lnoy ..\test.o3\bounded > ..\text.o3\bounded.txt ..\masmx boxy -lnoy ..\test.o3\boxy > ..\text.o3\boxy.txt ..\masmx bqt -lnoy ..\test.o3\bqt > ..\text.o3\bqt.txt ..\masmx brickie -lnoy ..\test.o3\brickie > ..\text.o3\brickie.txt ..\masmx brozzing -lnoy ..\test.o3\brozzing > ..\text.o3\brozzing.txt ..\masmx btest -lnoy ..\test.o3\btest > ..\text.o3\btest.txt ..\masmx buy_sell -lnoy ..\test.o3\buy_sell > ..\text.o3\buy_sell.txt ..\masmx bway -lnoy ..\test.o3\bway > ..\text.o3\bway.txt ..\masmx cancan -lnoy ..\test.o3\cancan > ..\text.o3\cancan.txt ..\masmx capsule -lnoy ..\test.o3\capsule > ..\text.o3\capsule.txt ..\masmx carryon -lnoy ..\test.o3\carryon > ..\text.o3\carryon.txt ..\masmx case -lnoy ..\test.o3\case > ..\text.o3\case.txt ..\masmx cases -lnoy ..\test.o3\cases > ..\text.o3\cases.txt ..\masmx cc -lnoy ..\test.o3\cc > ..\text.o3\cc.txt ..\masmx cdml -lnoy ..\test.o3\cdml > ..\text.o3\cdml.txt ..\masmx cheese -lnoy ..\test.o3\cheese > ..\text.o3\cheese.txt ..\masmx code -lnoy ..\test.o3\code > ..\text.o3\code.txt ..\masmx commas -lnoy ..\test.o3\commas > ..\text.o3\commas.txt ..\masmx comment -lnoy ..\test.o3\comment > ..\text.o3\comment.txt ..\masmx comment1 -lnoy ..\test.o3\comment1 > ..\text.o3\comment1.txt ..\masmx complex -lnoy ..\test.o3\complex > ..\text.o3\complex.txt ..\masmx compo -lnoy ..\test.o3\compo > ..\text.o3\compo.txt ..\masmx compose -lnoy ..\test.o3\compose > ..\text.o3\compose.txt ..\masmx constanz -lnoy ..\test.o3\constanz > ..\text.o3\constanz.txt ..\masmx context -lnoy ..\test.o3\context > ..\text.o3\context.txt ..\masmx continu -lnoy ..\test.o3\continu > ..\text.o3\continu.txt ..\masmx contrary -lnoy ..\test.o3\contrary > ..\text.o3\contrary.txt ..\masmx controb2 -lnoy ..\test.o3\controb2 > ..\text.o3\controb2.txt ..\masmx control1 -lnoy ..\test.o3\control1 > ..\text.o3\control1.txt ..\masmx control2 -lnoy ..\test.o3\control2 > ..\text.o3\control2.txt ..\masmx control3 -lnoy ..\test.o3\control3 > ..\text.o3\control3.txt ..\masmx control4 -lnoy ..\test.o3\control4 > ..\text.o3\control4.txt ..\masmx cqt -lnoy ..\test.o3\cqt > ..\text.o3\cqt.txt ..\masmx crabble -lnoy ..\test.o3\crabble > ..\text.o3\crabble.txt ..\masmx ctest -lnoy ..\test.o3\ctest > ..\text.o3\ctest.txt ..\masmx d -lnoy ..\test.o3\d > ..\text.o3\d.txt ..\masmx dd -lnoy ..\test.o3\dd > ..\text.o3\dd.txt ..\masmx ddd -lnoy ..\test.o3\ddd > ..\text.o3\ddd.txt ..\masmx dde -lnoy ..\test.o3\dde > ..\text.o3\dde.txt ..\masmx decode -lnoy ..\test.o3\decode > ..\text.o3\decode.txt ..\masmx deep -lnoy ..\test.o3\deep > ..\text.o3\deep.txt ..\masmx deep_lit -lnoy ..\test.o3\deep_lit > ..\text.o3\deep_lit.txt ..\masmx demo1 -lnoy ..\test.o3\demo1 > ..\text.o3\demo1.txt ..\masmx demo2 -lnoy ..\test.o3\demo2 > ..\text.o3\demo2.txt ..\masmx demo3 -lnoy ..\test.o3\demo3 > ..\text.o3\demo3.txt ..\masmx detune -lnoy ..\test.o3\detune > ..\text.o3\detune.txt ..\masmx dfp -lnoy ..\test.o3\dfp > ..\text.o3\dfp.txt ..\masmx dfp16 -lnoy ..\test.o3\dfp16 > ..\text.o3\dfp16.txt ..\masmx diffi -lnoy ..\test.o3\diffi > ..\text.o3\diffi.txt ..\masmx dl -lnoy ..\test.o3\dl > ..\text.o3\dl.txt ..\masmx do -lnoy ..\test.o3\do > ..\text.o3\do.txt ..\masmx do1 -lnoy ..\test.o3\do1 > ..\text.o3\do1.txt ..\masmx do2 -lnoy ..\test.o3\do2 > ..\text.o3\do2.txt ..\masmx do3 -lnoy ..\test.o3\do3 > ..\text.o3\do3.txt ..\masmx do32 -lnoy ..\test.o3\do32 > ..\text.o3\do32.txt ..\masmx do4 -lnoy ..\test.o3\do4 > ..\text.o3\do4.txt ..\masmx dogma -lnoy ..\test.o3\dogma > ..\text.o3\dogma.txt ..\masmx dollar -lnoy ..\test.o3\dollar > ..\text.o3\dollar.txt ..\masmx dollar1 -lnoy ..\test.o3\dollar1 > ..\text.o3\dollar1.txt ..\masmx dormouse -lnoy ..\test.o3\dormouse > ..\text.o3\dormouse.txt ..\masmx dotable -lnoy ..\test.o3\dotable > ..\text.o3\dotable.txt ..\masmx drat -lnoy ..\test.o3\drat > ..\text.o3\drat.txt ..\masmx dudif -lnoy ..\test.o3\dudif > ..\text.o3\dudif.txt ..\masmx dumexa -lnoy ..\test.o3\dumexa > ..\text.o3\dumexa.txt ..\masmx dup -lnoy ..\test.o3\dup > ..\text.o3\dup.txt ..\masmx dx -lnoy ..\test.o3\dx > ..\text.o3\dx.txt ..\masmx edit -lnoy ..\test.o3\edit > ..\text.o3\edit.txt ..\masmx elboaze -lnoy ..\test.o3\elboaze > ..\text.o3\elboaze.txt ..\masmx elf -lnoy ..\test.o3\elf > ..\text.o3\elf.txt ..\masmx entrada -lnoy ..\test.o3\entrada > ..\text.o3\entrada.txt ..\masmx environ -lnoy ..\test.o3\environ > ..\text.o3\environ.txt ..\masmx eq -lnoy ..\test.o3\eq > ..\text.o3\eq.txt ..\masmx equf -lnoy ..\test.o3\equf > ..\text.o3\equf.txt ..\masmx equf32 -lnoy ..\test.o3\equf32 > ..\text.o3\equf32.txt ..\masmx expo -lnoy ..\test.o3\expo > ..\text.o3\expo.txt ..\masmx export -lnoy ..\test.o3\export > ..\text.o3\export.txt ..\masmx f -lnoy ..\test.o3\f > ..\text.o3\f.txt ..\masmx f2f -lnoy ..\test.o3\f2f > ..\text.o3\f2f.txt ..\masmx factor -lnoy ..\test.o3\factor > ..\text.o3\factor.txt ..\masmx fames -lnoy ..\test.o3\fames > ..\text.o3\fames.txt ..\masmx fatalp -lnoy ..\test.o3\fatalp > ..\text.o3\fatalp.txt ..\masmx feelup -lnoy ..\test.o3\feelup > ..\text.o3\feelup.txt ..\masmx fff -lnoy ..\test.o3\fff > ..\text.o3\fff.txt ..\masmx flags -lnoy ..\test.o3\flags > ..\text.o3\flags.txt ..\masmx forgot -lnoy ..\test.o3\forgot > ..\text.o3\forgot.txt ..\masmx forjoy -lnoy ..\test.o3\forjoy > ..\text.o3\forjoy.txt ..\masmx form -lnoy ..\test.o3\form > ..\text.o3\form.txt ..\masmx fp -lnoy ..\test.o3\fp > ..\text.o3\fp.txt ..\masmx fp32 -lnoy ..\test.o3\fp32 > ..\text.o3\fp32.txt ..\masmx fpsize -lnoy ..\test.o3\fpsize > ..\text.o3\fpsize.txt ..\masmx fptest -lnoy ..\test.o3\fptest > ..\text.o3\fptest.txt ..\masmx fptestu -lnoy ..\test.o3\fptestu > ..\text.o3\fptestu.txt ..\masmx fpx -lnoy ..\test.o3\fpx > ..\text.o3\fpx.txt ..\masmx fragment -lnoy ..\test.o3\fragment > ..\text.o3\fragment.txt ..\masmx frame2 -lnoy ..\test.o3\frame2 > ..\text.o3\frame2.txt ..\masmx fref -lnoy ..\test.o3\fref > ..\text.o3\fref.txt ..\masmx fruit -lnoy ..\test.o3\fruit > ..\text.o3\fruit.txt ..\masmx frung -lnoy ..\test.o3\frung > ..\text.o3\frung.txt ..\masmx fs -lnoy ..\test.o3\fs > ..\text.o3\fs.txt ..\masmx fs32 -lnoy ..\test.o3\fs32 > ..\text.o3\fs32.txt ..\masmx fs48 -lnoy ..\test.o3\fs48 > ..\text.o3\fs48.txt ..\masmx further -lnoy ..\test.o3\further > ..\text.o3\further.txt ..\masmx fx -lnoy ..\test.o3\fx > ..\text.o3\fx.txt ..\masmx fzero -lnoy ..\test.o3\fzero > ..\text.o3\fzero.txt ..\masmx gap -lnoy ..\test.o3\gap > ..\text.o3\gap.txt ..\masmx general -lnoy ..\test.o3\general > ..\text.o3\general.txt ..\masmx gfactor -lnoy ..\test.o3\gfactor > ..\text.o3\gfactor.txt ..\masmx gfar -lnoy ..\test.o3\gfar > ..\text.o3\gfar.txt ..\masmx gflo -lnoy ..\test.o3\gflo > ..\text.o3\gflo.txt ..\masmx gframe2 -lnoy ..\test.o3\gframe2 > ..\text.o3\gframe2.txt ..\masmx gfurther -lnoy ..\test.o3\gfurther > ..\text.o3\gfurther.txt ..\masmx goodbit -lnoy ..\test.o3\goodbit > ..\text.o3\goodbit.txt ..\masmx grade -lnoy ..\test.o3\grade > ..\text.o3\grade.txt ..\masmx gram -lnoy ..\test.o3\gram > ..\text.o3\gram.txt ..\masmx grig -lnoy ..\test.o3\grig > ..\text.o3\grig.txt ..\masmx grobags -lnoy ..\test.o3\grobags > ..\text.o3\grobags.txt ..\masmx gross -lnoy ..\test.o3\gross > ..\text.o3\gross.txt ..\masmx grum -lnoy ..\test.o3\grum > ..\text.o3\grum.txt ..\masmx gscale22 -lnoy ..\test.o3\gscale22 > ..\text.o3\gscale22.txt ..\masmx gscale23 -lnoy ..\test.o3\gscale23 > ..\text.o3\gscale23.txt ..\masmx gscale24 -lnoy ..\test.o3\gscale24 > ..\text.o3\gscale24.txt ..\masmx gsoso -lnoy ..\test.o3\gsoso > ..\text.o3\gsoso.txt ..\masmx gworser -lnoy ..\test.o3\gworser > ..\text.o3\gworser.txt ..\masmx gwyllmp -lnoy ..\test.o3\gwyllmp > ..\text.o3\gwyllmp.txt ..\masmx gzactor -lnoy ..\test.o3\gzactor > ..\text.o3\gzactor.txt ..\masmx haive -lnoy ..\test.o3\haive > ..\text.o3\haive.txt ..\masmx handfull -lnoy ..\test.o3\handfull > ..\text.o3\handfull.txt ..\masmx hangobar -lnoy ..\test.o3\hangobar > ..\text.o3\hangobar.txt ..\masmx hflo -lnoy ..\test.o3\hflo > ..\text.o3\hflo.txt ..\masmx high -lnoy ..\test.o3\high > ..\text.o3\high.txt ..\masmx hinge -lnoy ..\test.o3\hinge > ..\text.o3\hinge.txt ..\masmx howmany -lnoy ..\test.o3\howmany > ..\text.o3\howmany.txt ..\masmx howslow -lnoy ..\test.o3\howslow > ..\text.o3\howslow.txt ..\masmx hubert -lnoy ..\test.o3\hubert > ..\text.o3\hubert.txt ..\masmx hwis -lnoy ..\test.o3\hwis > ..\text.o3\hwis.txt ..\masmx ican -lnoy ..\test.o3\ican > ..\text.o3\ican.txt ..\masmx ieee754 -lnoy ..\test.o3\ieee754 > ..\text.o3\ieee754.txt ..\masmx ieee754s -lnoy ..\test.o3\ieee754s > ..\text.o3\ieee754s.txt ..\masmx ieeef -lnoy ..\test.o3\ieeef > ..\text.o3\ieeef.txt ..\masmx if -lnoy ..\test.o3\if > ..\text.o3\if.txt ..\masmx iffy -lnoy ..\test.o3\iffy > ..\text.o3\iffy.txt ..\masmx ifp -lnoy ..\test.o3\ifp > ..\text.o3\ifp.txt ..\masmx ifwise -lnoy ..\test.o3\ifwise > ..\text.o3\ifwise.txt ..\masmx iii -lnoy ..\test.o3\iii > ..\text.o3\iii.txt ..\masmx immediat -lnoy ..\test.o3\immediat > ..\text.o3\immediat.txt ..\masmx import -lnoy ..\test.o3\import > ..\text.o3\import.txt ..\masmx inc -lnoy ..\test.o3\inc > ..\text.o3\inc.txt ..\masmx inc1 -lnoy ..\test.o3\inc1 > ..\text.o3\inc1.txt ..\masmx inc2 -lnoy ..\test.o3\inc2 > ..\text.o3\inc2.txt ..\masmx inc3 -lnoy ..\test.o3\inc3 > ..\text.o3\inc3.txt ..\masmx info -lnoy ..\test.o3\info > ..\text.o3\info.txt ..\masmx inside -lnoy ..\test.o3\inside > ..\text.o3\inside.txt ..\masmx intrepid -lnoy ..\test.o3\intrepid > ..\text.o3\intrepid.txt ..\masmx intune -lnoy ..\test.o3\intune > ..\text.o3\intune.txt ..\masmx iscale1 -lnoy ..\test.o3\iscale1 > ..\text.o3\iscale1.txt ..\masmx iscale2 -lnoy ..\test.o3\iscale2 > ..\text.o3\iscale2.txt ..\masmx iscale3 -lnoy ..\test.o3\iscale3 > ..\text.o3\iscale3.txt ..\masmx iside1 -lnoy ..\test.o3\iside1 > ..\text.o3\iside1.txt ..\masmx isobar -lnoy ..\test.o3\isobar > ..\text.o3\isobar.txt ..\masmx isobar1 -lnoy ..\test.o3\isobar1 > ..\text.o3\isobar1.txt ..\masmx isthatso -lnoy ..\test.o3\isthatso > ..\text.o3\isthatso.txt ..\masmx j2 -lnoy ..\test.o3\j2 > ..\text.o3\j2.txt ..\masmx j3 -lnoy ..\test.o3\j3 > ..\text.o3\j3.txt ..\masmx justname -lnoy ..\test.o3\justname > ..\text.o3\justname.txt ..\masmx keeptry -lnoy ..\test.o3\keeptry > ..\text.o3\keeptry.txt ..\masmx kette -lnoy ..\test.o3\kette > ..\text.o3\kette.txt ..\masmx keyword -lnoy ..\test.o3\keyword > ..\text.o3\keyword.txt ..\masmx l -lnoy ..\test.o3\l > ..\text.o3\l.txt ..\masmx labels -lnoy ..\test.o3\labels > ..\text.o3\labels.txt ..\masmx langobar -lnoy ..\test.o3\langobar > ..\text.o3\langobar.txt ..\masmx largle -lnoy ..\test.o3\largle > ..\text.o3\largle.txt ..\masmx lcodes -lnoy ..\test.o3\lcodes > ..\text.o3\lcodes.txt ..\masmx ldes -lnoy ..\test.o3\ldes > ..\text.o3\ldes.txt ..\masmx ldes2 -lnoy ..\test.o3\ldes2 > ..\text.o3\ldes2.txt ..\masmx leggy -lnoy ..\test.o3\leggy > ..\text.o3\leggy.txt ..\masmx letsbya -lnoy ..\test.o3\letsbya > ..\text.o3\letsbya.txt ..\masmx liable -lnoy ..\test.o3\liable > ..\text.o3\liable.txt ..\masmx linitup -lnoy ..\test.o3\linitup > ..\text.o3\linitup.txt ..\masmx lit -lnoy ..\test.o3\lit > ..\text.o3\lit.txt ..\masmx lit8051 -lnoy ..\test.o3\lit8051 > ..\text.o3\lit8051.txt ..\masmx literal -lnoy ..\test.o3\literal > ..\text.o3\literal.txt ..\masmx little -lnoy ..\test.o3\little > ..\text.o3\little.txt ..\masmx ll -lnoy ..\test.o3\ll > ..\text.o3\ll.txt ..\masmx ll2 -lnoy ..\test.o3\ll2 > ..\text.o3\ll2.txt ..\masmx ll3 -lnoy ..\test.o3\ll3 > ..\text.o3\ll3.txt ..\masmx ll4 -lnoy ..\test.o3\ll4 > ..\text.o3\ll4.txt ..\masmx ll5 -lnoy ..\test.o3\ll5 > ..\text.o3\ll5.txt ..\masmx ll5abs -lnoy ..\test.o3\ll5abs > ..\text.o3\ll5abs.txt ..\masmx ll6 -lnoy ..\test.o3\ll6 > ..\text.o3\ll6.txt ..\masmx ll6abs -lnoy ..\test.o3\ll6abs > ..\text.o3\ll6abs.txt ..\masmx lodation -lnoy ..\test.o3\lodation > ..\text.o3\lodation.txt ..\masmx longjump -lnoy ..\test.o3\longjump > ..\text.o3\longjump.txt ..\masmx loopy -lnoy ..\test.o3\loopy > ..\text.o3\loopy.txt ..\masmx lorg -lnoy ..\test.o3\lorg > ..\text.o3\lorg.txt ..\masmx lorgle -lnoy ..\test.o3\lorgle > ..\text.o3\lorgle.txt ..\masmx luri -lnoy ..\test.o3\luri > ..\text.o3\luri.txt ..\masmx m -lnoy ..\test.o3\m > ..\text.o3\m.txt ..\masmx mafcol1 -lnoy ..\test.o3\mafcol1 > ..\text.o3\mafcol1.txt ..\masmx mangle -lnoy ..\test.o3\mangle > ..\text.o3\mangle.txt ..\masmx mango -lnoy ..\test.o3\mango > ..\text.o3\mango.txt ..\masmx manif -lnoy ..\test.o3\manif > ..\text.o3\manif.txt ..\masmx many -lnoy ..\test.o3\many > ..\text.o3\many.txt ..\masmx map -lnoy ..\test.o3\map > ..\text.o3\map.txt ..\masmx map1 -lnoy ..\test.o3\map1 > ..\text.o3\map1.txt ..\masmx map10 -lnoy ..\test.o3\map10 > ..\text.o3\map10.txt ..\masmx map10g -lnoy ..\test.o3\map10g > ..\text.o3\map10g.txt ..\masmx map11 -lnoy ..\test.o3\map11 > ..\text.o3\map11.txt ..\masmx map12 -lnoy ..\test.o3\map12 > ..\text.o3\map12.txt ..\masmx map15 -lnoy ..\test.o3\map15 > ..\text.o3\map15.txt ..\masmx map2 -lnoy ..\test.o3\map2 > ..\text.o3\map2.txt ..\masmx map3 -lnoy ..\test.o3\map3 > ..\text.o3\map3.txt ..\masmx map4 -lnoy ..\test.o3\map4 > ..\text.o3\map4.txt ..\masmx map5 -lnoy ..\test.o3\map5 > ..\text.o3\map5.txt ..\masmx map6 -lnoy ..\test.o3\map6 > ..\text.o3\map6.txt ..\masmx map7 -lnoy ..\test.o3\map7 > ..\text.o3\map7.txt ..\masmx map7g -lnoy ..\test.o3\map7g > ..\text.o3\map7g.txt ..\masmx map8 -lnoy ..\test.o3\map8 > ..\text.o3\map8.txt ..\masmx map8g -lnoy ..\test.o3\map8g > ..\text.o3\map8g.txt ..\masmx map9 -lnoy ..\test.o3\map9 > ..\text.o3\map9.txt ..\masmx mary -lnoy ..\test.o3\mary > ..\text.o3\mary.txt ..\masmx masm7 -lnoy ..\test.o3\masm7 > ..\text.o3\masm7.txt ..\masmx maxfloat -lnoy ..\test.o3\maxfloat > ..\text.o3\maxfloat.txt ..\masmx maxmaxi -lnoz ..\test.o3\maxmaxi > ..\text.o3\maxmaxi.txt ..\masmx maxtini -lnoz ..\test.o3\maxtini > ..\text.o3\maxtini.txt ..\masmx maxwini -lnoz ..\test.o3\maxwini > ..\text.o3\maxwini.txt ..\masmx mbank -lnoy ..\test.o3\mbank > ..\text.o3\mbank.txt ..\masmx mbank1 -lnoy ..\test.o3\mbank1 > ..\text.o3\mbank1.txt ..\masmx mikros -lnoy ..\test.o3\mikros > ..\text.o3\mikros.txt ..\masmx ml -lnoy ..\test.o3\ml > ..\text.o3\ml.txt ..\masmx mlingba -lnoy ..\test.o3\mlingba > ..\text.o3\mlingba.txt ..\masmx modest -lnoy ..\test.o3\modest > ..\text.o3\modest.txt ..\masmx mojo -lnoy ..\test.o3\mojo > ..\text.o3\mojo.txt ..\masmx more -lnoy ..\test.o3\more > ..\text.o3\more.txt ..\masmx mouli -lnoy ..\test.o3\mouli > ..\text.o3\mouli.txt ..\masmx movem -lnoy ..\test.o3\movem > ..\text.o3\movem.txt ..\masmx multest -lnoy ..\test.o3\multest > ..\text.o3\multest.txt ..\masmx multitr -lnoy ..\test.o3\multitr > ..\text.o3\multitr.txt ..\masmx mungle -lnoy ..\test.o3\mungle > ..\text.o3\mungle.txt ..\masmx n -lnoy ..\test.o3\n > ..\text.o3\n.txt ..\masmx name -lnoy ..\test.o3\name > ..\text.o3\name.txt ..\masmx names -lnoy ..\test.o3\names > ..\text.o3\names.txt ..\masmx nang -lnoy ..\test.o3\nang > ..\text.o3\nang.txt ..\masmx needle -lnoy ..\test.o3\needle > ..\text.o3\needle.txt ..\masmx nest -lnoy ..\test.o3\nest > ..\text.o3\nest.txt ..\masmx netbio -lnoy ..\test.o3\netbio > ..\text.o3\netbio.txt ..\masmx netio -lnoy ..\test.o3\netio > ..\text.o3\netio.txt ..\masmx netvalue -lnoy ..\test.o3\netvalue > ..\text.o3\netvalue.txt ..\masmx new -lnoy ..\test.o3\new > ..\text.o3\new.txt ..\masmx newby -lnoy ..\test.o3\newby > ..\text.o3\newby.txt ..\masmx nipit -lnoy ..\test.o3\nipit > ..\text.o3\nipit.txt ..\masmx norkette -lnoy ..\test.o3\norkette > ..\text.o3\norkette.txt ..\masmx nosedive -lnoy ..\test.o3\nosedive > ..\text.o3\nosedive.txt ..\masmx noso -lnoy ..\test.o3\noso > ..\text.o3\noso.txt ..\masmx nostroph -lnoy ..\test.o3\nostroph > ..\text.o3\nostroph.txt ..\masmx notmany -lnoy ..\test.o3\notmany > ..\text.o3\notmany.txt ..\masmx notso -lnoy ..\test.o3\notso > ..\text.o3\notso.txt ..\masmx notvast -lnoy ..\test.o3\notvast > ..\text.o3\notvast.txt ..\masmx nuri -lnoy ..\test.o3\nuri > ..\text.o3\nuri.txt ..\masmx nvg -lnoy ..\test.o3\nvg > ..\text.o3\nvg.txt ..\masmx o -lnoy ..\test.o3\o > ..\text.o3\o.txt ..\masmx ocycle -lnoy ..\test.o3\ocycle > ..\text.o3\ocycle.txt ..\masmx oddly -lnoy ..\test.o3\oddly > ..\text.o3\oddly.txt ..\masmx offset -lnoy ..\test.o3\offset > ..\text.o3\offset.txt ..\masmx ok1 -lnoy ..\test.o3\ok1 > ..\text.o3\ok1.txt ..\masmx one -lnoy ..\test.o3\one > ..\text.o3\one.txt ..\masmx onetwo -lnoy ..\test.o3\onetwo > ..\text.o3\onetwo.txt ..\masmx oreally -lnoy ..\test.o3\oreally > ..\text.o3\oreally.txt ..\masmx orgalign -lnoy ..\test.o3\orgalign > ..\text.o3\orgalign.txt ..\masmx otherwis -lnoy ..\test.o3\otherwis > ..\text.o3\otherwis.txt ..\masmx outline -lnoy ..\test.o3\outline > ..\text.o3\outline.txt ..\masmx outrage -lnoy ..\test.o3\outrage > ..\text.o3\outrage.txt ..\masmx outside -lnoy ..\test.o3\outside > ..\text.o3\outside.txt ..\masmx overlaid -lnoy ..\test.o3\overlaid > ..\text.o3\overlaid.txt ..\masmx overlay -lnoy ..\test.o3\overlay > ..\text.o3\overlay.txt ..\masmx p -lnoy ..\test.o3\p > ..\text.o3\p.txt ..\masmx packem -lnoy ..\test.o3\packem > ..\text.o3\packem.txt ..\masmx paraform -lnoy ..\test.o3\paraform > ..\text.o3\paraform.txt ..\masmx param -lnoy ..\test.o3\param > ..\text.o3\param.txt ..\masmx paren -lnoy ..\test.o3\paren > ..\text.o3\paren.txt ..\masmx passes -lnoy ..\test.o3\passes > ..\text.o3\passes.txt ..\masmx passive -lnoy ..\test.o3\passive > ..\text.o3\passive.txt ..\masmx perform -lnoy ..\test.o3\perform > ..\text.o3\perform.txt ..\masmx plain -lnoy ..\test.o3\plain > ..\text.o3\plain.txt ..\masmx plank -lnoy ..\test.o3\plank > ..\text.o3\plank.txt ..\masmx plobbo -lnoy ..\test.o3\plobbo > ..\text.o3\plobbo.txt ..\masmx ppc1 -lnoy ..\test.o3\ppc1 > ..\text.o3\ppc1.txt ..\masmx ppcsinga -lnoy ..\test.o3\ppcsinga > ..\text.o3\ppcsinga.txt ..\masmx ppcsingb -lnoy ..\test.o3\ppcsingb > ..\text.o3\ppcsingb.txt ..\masmx ppcsingr -lnoy ..\test.o3\ppcsingr > ..\text.o3\ppcsingr.txt ..\masmx ppcuvast -lnoy ..\test.o3\ppcuvast > ..\text.o3\ppcuvast.txt ..\masmx prango -lnoy ..\test.o3\prango > ..\text.o3\prango.txt ..\masmx prango32 -lnoy ..\test.o3\prango32 > ..\text.o3\prango32.txt ..\masmx pratisla -lnoy ..\test.o3\pratisla > ..\text.o3\pratisla.txt ..\masmx predikat -lnoy ..\test.o3\predikat > ..\text.o3\predikat.txt ..\masmx prelink -lnoy ..\test.o3\prelink > ..\text.o3\prelink.txt ..\masmx proceds -lnoy ..\test.o3\proceds > ..\text.o3\proceds.txt ..\masmx proxy -lnoy ..\test.o3\proxy > ..\text.o3\proxy.txt ..\masmx ptup -lnoy ..\test.o3\ptup > ..\text.o3\ptup.txt ..\masmx pusingv -lnoy ..\test.o3\pusingv > ..\text.o3\pusingv.txt ..\masmx pvusinga -lnoy ..\test.o3\pvusinga > ..\text.o3\pvusinga.txt ..\masmx pzero -lnoy ..\test.o3\pzero > ..\text.o3\pzero.txt ..\masmx q -lnoy ..\test.o3\q > ..\text.o3\q.txt ..\masmx q1 -lnoy ..\test.o3\q1 > ..\text.o3\q1.txt ..\masmx qati -lnoy ..\test.o3\qati > ..\text.o3\qati.txt ..\masmx qb2i -lnoy ..\test.o3\qb2i > ..\text.o3\qb2i.txt ..\masmx qbig -lnoy ..\test.o3\qbig > ..\text.o3\qbig.txt ..\masmx qf -lnoy ..\test.o3\qf > ..\text.o3\qf.txt ..\masmx qflic -lnoy ..\test.o3\qflic > ..\text.o3\qflic.txt ..\masmx qpart -lnoy ..\test.o3\qpart > ..\text.o3\qpart.txt ..\masmx qplain -lnoy ..\test.o3\qplain > ..\text.o3\qplain.txt ..\masmx qt -lnoy ..\test.o3\qt > ..\text.o3\qt.txt ..\masmx quicki -lnoy ..\test.o3\quicki > ..\text.o3\quicki.txt ..\masmx quidgeo -lnoy ..\test.o3\quidgeo > ..\text.o3\quidgeo.txt ..\masmx quitebad -lnoy ..\test.o3\quitebad > ..\text.o3\quitebad.txt ..\masmx quo -lnoy ..\test.o3\quo > ..\text.o3\quo.txt ..\masmx quo1 -lnoy ..\test.o3\quo1 > ..\text.o3\quo1.txt ..\masmx quo2 -lnoy ..\test.o3\quo2 > ..\text.o3\quo2.txt ..\masmx quo3 -lnoy ..\test.o3\quo3 > ..\text.o3\quo3.txt ..\masmx quo4 -lnoy ..\test.o3\quo4 > ..\text.o3\quo4.txt ..\masmx quo5 -lnoy ..\test.o3\quo5 > ..\text.o3\quo5.txt ..\masmx qzuli -lnoy ..\test.o3\qzuli > ..\text.o3\qzuli.txt ..\masmx qzweli -lnoy ..\test.o3\qzweli > ..\text.o3\qzweli.txt ..\masmx r -lnoy ..\test.o3\r > ..\text.o3\r.txt ..\masmx r_u_rel -lnoy ..\test.o3\r_u_rel > ..\text.o3\r_u_rel.txt ..\masmx radalupu -lnoy ..\test.o3\radalupu > ..\text.o3\radalupu.txt ..\masmx random -lnoy ..\test.o3\random > ..\text.o3\random.txt ..\masmx really -lnoy ..\test.o3\really > ..\text.o3\really.txt ..\masmx reappear -lnoy ..\test.o3\reappear > ..\text.o3\reappear.txt ..\masmx reco -lnoy ..\test.o3\reco > ..\text.o3\reco.txt ..\masmx recurs -lnoy ..\test.o3\recurs > ..\text.o3\recurs.txt ..\masmx rel -lnoy ..\test.o3\rel > ..\text.o3\rel.txt ..\masmx rel2 -lnoy ..\test.o3\rel2 > ..\text.o3\rel2.txt ..\masmx relj -lnoy ..\test.o3\relj > ..\text.o3\relj.txt ..\masmx relja -lnoy ..\test.o3\relja > ..\text.o3\relja.txt ..\masmx relstack -lnoy ..\test.o3\relstack > ..\text.o3\relstack.txt ..\masmx remindme -lnoy ..\test.o3\remindme > ..\text.o3\remindme.txt ..\masmx rempack -lnoy ..\test.o3\rempack > ..\text.o3\rempack.txt ..\masmx rempart -lnoy ..\test.o3\rempart > ..\text.o3\rempart.txt ..\masmx rename -lnoy ..\test.o3\rename > ..\text.o3\rename.txt ..\masmx rep -lnoy ..\test.o3\rep > ..\text.o3\rep.txt ..\masmx res -lnoy ..\test.o3\res > ..\text.o3\res.txt ..\masmx rino -lnoy ..\test.o3\rino > ..\text.o3\rino.txt ..\masmx risobar -lnoy ..\test.o3\risobar > ..\text.o3\risobar.txt ..\masmx rough -lnoy ..\test.o3\rough > ..\text.o3\rough.txt ..\masmx roundelay -lnoy ..\test.o3\roundelay > ..\text.o3\roundelay.txt ..\masmx rounding -lnoy ..\test.o3\rounding > ..\text.o3\rounding.txt ..\masmx rplain -lnoy ..\test.o3\rplain > ..\text.o3\rplain.txt ..\masmx rumad -lnoy ..\test.o3\rumad > ..\text.o3\rumad.txt ..\masmx ryatha -lnoy ..\test.o3\ryatha > ..\text.o3\ryatha.txt ..\masmx s -lnoy ..\test.o3\s > ..\text.o3\s.txt ..\masmx sample -lnoy ..\test.o3\sample > ..\text.o3\sample.txt ..\masmx sample2 -lnoy ..\test.o3\sample2 > ..\text.o3\sample2.txt ..\masmx scabrous -lnoy ..\test.o3\scabrous > ..\text.o3\scabrous.txt ..\masmx scale -lnoy ..\test.o3\scale > ..\text.o3\scale.txt ..\masmx scale1 -lnoy ..\test.o3\scale1 > ..\text.o3\scale1.txt ..\masmx scale2 -lnoy ..\test.o3\scale2 > ..\text.o3\scale2.txt ..\masmx scale22 -lnoy ..\test.o3\scale22 > ..\text.o3\scale22.txt ..\masmx scale23 -lnoy ..\test.o3\scale23 > ..\text.o3\scale23.txt ..\masmx scale24 -lnoy ..\test.o3\scale24 > ..\text.o3\scale24.txt ..\masmx scale3 -lnoy ..\test.o3\scale3 > ..\text.o3\scale3.txt ..\masmx scale4 -lnoy ..\test.o3\scale4 > ..\text.o3\scale4.txt ..\masmx scale5 -lnoy ..\test.o3\scale5 > ..\text.o3\scale5.txt ..\masmx scale6 -lnoy ..\test.o3\scale6 > ..\text.o3\scale6.txt ..\masmx scale8 -lnoy ..\test.o3\scale8 > ..\text.o3\scale8.txt ..\masmx scally -lnoy ..\test.o3\scally > ..\text.o3\scally.txt ..\masmx scally2 -lnoy ..\test.o3\scally2 > ..\text.o3\scally2.txt ..\masmx scally3 -lnoy ..\test.o3\scally3 > ..\text.o3\scally3.txt ..\masmx scally4 -lnoy ..\test.o3\scally4 > ..\text.o3\scally4.txt ..\masmx scandal -lnoy ..\test.o3\scandal > ..\text.o3\scandal.txt ..\masmx scrabble -lnoy ..\test.o3\scrabble > ..\text.o3\scrabble.txt ..\masmx see -lnoy ..\test.o3\see > ..\text.o3\see.txt ..\masmx see2it -lnoy ..\test.o3\see2it > ..\text.o3\see2it.txt ..\masmx seomac -lnoy ..\test.o3\seomac > ..\text.o3\seomac.txt ..\masmx set -lnoy ..\test.o3\set > ..\text.o3\set.txt ..\masmx shifty -lnoy ..\test.o3\shifty > ..\text.o3\shifty.txt ..\masmx sim -lnoy ..\test.o3\sim > ..\text.o3\sim.txt ..\masmx similar -lnoy ..\test.o3\similar > ..\text.o3\similar.txt ..\masmx simple -lnoy ..\test.o3\simple > ..\text.o3\simple.txt ..\masmx simpler -lnoy ..\test.o3\simpler > ..\text.o3\simpler.txt ..\masmx simples -lnoy ..\test.o3\simples > ..\text.o3\simples.txt ..\masmx simplify -lnoy ..\test.o3\simplify > ..\text.o3\simplify.txt ..\masmx sipit -lnoy ..\test.o3\sipit > ..\text.o3\sipit.txt ..\masmx sky -lnoy ..\test.o3\sky > ..\text.o3\sky.txt ..\masmx sleunig -lnoy ..\test.o3\sleunig > ..\text.o3\sleunig.txt ..\masmx slingba -lnoy ..\test.o3\slingba > ..\text.o3\slingba.txt ..\masmx slipcan -lnoy ..\test.o3\slipcan > ..\text.o3\slipcan.txt ..\masmx slipshod -lnoy ..\test.o3\slipshod > ..\text.o3\slipshod.txt ..\masmx smaragd -lnoy ..\test.o3\smaragd > ..\text.o3\smaragd.txt ..\masmx smaragd1 -lnoy ..\test.o3\smaragd1 > ..\text.o3\smaragd1.txt ..\masmx smaragd7 -lnoy ..\test.o3\smaragd7 > ..\text.o3\smaragd7.txt ..\masmx snappie -lnoy ..\test.o3\snappie > ..\text.o3\snappie.txt ..\masmx snippie -lnoy ..\test.o3\snippie > ..\text.o3\snippie.txt ..\masmx snozeli -lnoy ..\test.o3\snozeli > ..\text.o3\snozeli.txt ..\masmx somestuf -lnoy ..\test.o3\somestuf > ..\text.o3\somestuf.txt ..\masmx somular -lnoy ..\test.o3\somular > ..\text.o3\somular.txt ..\masmx soso -lnoy ..\test.o3\soso > ..\text.o3\soso.txt ..\masmx space -lnoy ..\test.o3\space > ..\text.o3\space.txt ..\masmx spitz -lnoy ..\test.o3\spitz > ..\text.o3\spitz.txt ..\masmx splativo -lnoy ..\test.o3\splativo > ..\text.o3\splativo.txt ..\masmx sprativo -lnoy ..\test.o3\sprativo > ..\text.o3\sprativo.txt ..\masmx squeeze -lnoy ..\test.o3\squeeze > ..\text.o3\squeeze.txt ..\masmx stack -lnoy ..\test.o3\stack > ..\text.o3\stack.txt ..\masmx stcomple -lnoy ..\test.o3\stcomple > ..\text.o3\stcomple.txt ..\masmx steamer -lnoy ..\test.o3\steamer > ..\text.o3\steamer.txt ..\masmx step1 -lnoy ..\test.o3\step1 > ..\text.o3\step1.txt ..\masmx step2 -lnoy ..\test.o3\step2 > ..\text.o3\step2.txt ..\masmx steps -lnoy ..\test.o3\steps > ..\text.o3\steps.txt ..\masmx sterm -lnoy ..\test.o3\sterm > ..\text.o3\sterm.txt ..\masmx strahl -lnoy ..\test.o3\strahl > ..\text.o3\strahl.txt ..\masmx strain -lnoy ..\test.o3\strain > ..\text.o3\strain.txt ..\masmx straling -lnoy ..\test.o3\straling > ..\text.o3\straling.txt ..\masmx strange -lnoy ..\test.o3\strange > ..\text.o3\strange.txt ..\masmx strangely -lnoy ..\test.o3\strangely > ..\text.o3\strangely.txt ..\masmx stretch -lnoy ..\test.o3\stretch > ..\text.o3\stretch.txt ..\masmx strial1 -lnoy ..\test.o3\strial1 > ..\text.o3\strial1.txt ..\masmx strial2 -lnoy ..\test.o3\strial2 > ..\text.o3\strial2.txt ..\masmx strial3 -lnoy ..\test.o3\strial3 > ..\text.o3\strial3.txt ..\masmx strial4 -lnoy ..\test.o3\strial4 > ..\text.o3\strial4.txt ..\masmx strial5 -lnoy ..\test.o3\strial5 > ..\text.o3\strial5.txt ..\masmx strial6 -lnoy ..\test.o3\strial6 > ..\text.o3\strial6.txt ..\masmx stringli -lnoy ..\test.o3\stringli > ..\text.o3\stringli.txt ..\masmx strophe -lnoy ..\test.o3\strophe > ..\text.o3\strophe.txt ..\masmx strugl5 -lnoy ..\test.o3\strugl5 > ..\text.o3\strugl5.txt ..\masmx stsimple -lnoy ..\test.o3\stsimple > ..\text.o3\stsimple.txt ..\masmx stt -lnoy ..\test.o3\stt > ..\text.o3\stt.txt ..\masmx subfi -lnoy ..\test.o3\subfi > ..\text.o3\subfi.txt ..\masmx submarine -lnoy ..\test.o3\submarine > ..\text.o3\submarine.txt ..\masmx subs -lnoy ..\test.o3\subs > ..\text.o3\subs.txt ..\masmx subs1 -lnoy ..\test.o3\subs1 > ..\text.o3\subs1.txt ..\masmx suficsee -lnoy ..\test.o3\suficsee > ..\text.o3\suficsee.txt ..\masmx suppose -lnoy ..\test.o3\suppose > ..\text.o3\suppose.txt ..\masmx synonyms -lnoy ..\test.o3\synonyms > ..\text.o3\synonyms.txt ..\masmx sysgo -lnoy ..\test.o3\sysgo > ..\text.o3\sysgo.txt ..\masmx table -lnoy ..\test.o3\table > ..\text.o3\table.txt ..\masmx tally2 -lnoy ..\test.o3\tally2 > ..\text.o3\tally2.txt ..\masmx tally3 -lnoy ..\test.o3\tally3 > ..\text.o3\tally3.txt ..\masmx tally4 -lnoy ..\test.o3\tally4 > ..\text.o3\tally4.txt ..\masmx tarsub -lnoy ..\test.o3\tarsub > ..\text.o3\tarsub.txt ..\masmx tcp_in -lnoy ..\test.o3\tcp_in > ..\text.o3\tcp_in.txt ..\masmx tcp_rxip -lnoy ..\test.o3\tcp_rxip > ..\text.o3\tcp_rxip.txt ..\masmx temp -lnoy ..\test.o3\temp > ..\text.o3\temp.txt ..\masmx temper -lnoy ..\test.o3\temper > ..\text.o3\temper.txt ..\masmx tempo -lnoy ..\test.o3\tempo > ..\text.o3\tempo.txt ..\masmx term -lnoy ..\test.o3\term > ..\text.o3\term.txt ..\masmx terrify1 -lnoy ..\test.o3\terrify1 > ..\text.o3\terrify1.txt ..\masmx terrify2 -lnoy ..\test.o3\terrify2 > ..\text.o3\terrify2.txt ..\masmx terrify3 -lnoy ..\test.o3\terrify3 > ..\text.o3\terrify3.txt ..\masmx these -lnoy ..\test.o3\these > ..\text.o3\these.txt ..\masmx thing -lnoy ..\test.o3\thing > ..\text.o3\thing.txt ..\masmx three4 -lnoy ..\test.o3\three4 > ..\text.o3\three4.txt ..\masmx thru -lnoy ..\test.o3\thru > ..\text.o3\thru.txt ..\masmx times -lnoy ..\test.o3\times > ..\text.o3\times.txt ..\masmx tisobar -lnoy ..\test.o3\tisobar > ..\text.o3\tisobar.txt ..\masmx tla -lnoy ..\test.o3\tla > ..\text.o3\tla.txt ..\masmx together -lnoy ..\test.o3\together > ..\text.o3\together.txt ..\masmx tomp -lnoy ..\test.o3\tomp > ..\text.o3\tomp.txt ..\masmx toozl -lnoy ..\test.o3\toozl > ..\text.o3\toozl.txt ..\masmx trail -lnoy ..\test.o3\trail > ..\text.o3\trail.txt ..\masmx trait -lnoy ..\test.o3\trait > ..\text.o3\trait.txt ..\masmx trangle -lnoy ..\test.o3\trangle > ..\text.o3\trangle.txt ..\masmx transport -lnoy ..\test.o3\transport > ..\text.o3\transport.txt ..\masmx tranwys -lnoy ..\test.o3\tranwys > ..\text.o3\tranwys.txt ..\masmx trau -lnoy ..\test.o3\trau > ..\text.o3\trau.txt ..\masmx trbyte -lnoy ..\test.o3\trbyte > ..\text.o3\trbyte.txt ..\masmx tree -lnoy ..\test.o3\tree > ..\text.o3\tree.txt ..\masmx trees -lnoy ..\test.o3\trees > ..\text.o3\trees.txt ..\masmx tribit -lnoy ..\test.o3\tribit > ..\text.o3\tribit.txt ..\masmx tricki -lnoy ..\test.o3\tricki > ..\text.o3\tricki.txt ..\masmx trinsic -lnoy ..\test.o3\trinsic > ..\text.o3\trinsic.txt ..\masmx trip -lnoy ..\test.o3\trip > ..\text.o3\trip.txt ..\masmx trivial -lnoy ..\test.o3\trivial > ..\text.o3\trivial.txt ..\masmx trivs -lnoy ..\test.o3\trivs > ..\text.o3\trivs.txt ..\masmx trtab -lnoy ..\test.o3\trtab > ..\text.o3\trtab.txt ..\masmx trtab2 -lnoy ..\test.o3\trtab2 > ..\text.o3\trtab2.txt ..\masmx tryafew -lnoy ..\test.o3\tryafew > ..\text.o3\tryafew.txt ..\masmx trysome -lnoy ..\test.o3\trysome > ..\text.o3\trysome.txt ..\masmx ttable -lnoy ..\test.o3\ttable > ..\text.o3\ttable.txt ..\masmx tump -lnoy ..\test.o3\tump > ..\text.o3\tump.txt ..\masmx tumpoon -lnoy ..\test.o3\tumpoon > ..\text.o3\tumpoon.txt ..\masmx tumpshie -lnoy ..\test.o3\tumpshie > ..\text.o3\tumpshie.txt ..\masmx twiggy -lnoy ..\test.o3\twiggy > ..\text.o3\twiggy.txt ..\masmx tz -lnoy ..\test.o3\tz > ..\text.o3\tz.txt ..\masmx uart -lnoy ..\test.o3\uart > ..\text.o3\uart.txt ..\masmx udp_rxip -lnoy ..\test.o3\udp_rxip > ..\text.o3\udp_rxip.txt ..\masmx updown -lnoy ..\test.o3\updown > ..\text.o3\updown.txt ..\masmx using -lnoy ..\test.o3\using > ..\text.o3\using.txt ..\masmx usinga -lnoy ..\test.o3\usinga > ..\text.o3\usinga.txt ..\masmx usingb -lnoy ..\test.o3\usingb > ..\text.o3\usingb.txt ..\masmx usingl -lnoy ..\test.o3\usingl > ..\text.o3\usingl.txt ..\masmx usingpv -lnoy ..\test.o3\usingpv > ..\text.o3\usingpv.txt ..\masmx usingr -lnoy ..\test.o3\usingr > ..\text.o3\usingr.txt ..\masmx usingv -lnoy ..\test.o3\usingv > ..\text.o3\usingv.txt ..\masmx utable -lnoy ..\test.o3\utable > ..\text.o3\utable.txt ..\masmx uzactor -lnoy ..\test.o3\uzactor > ..\text.o3\uzactor.txt ..\masmx v -lnoy ..\test.o3\v > ..\text.o3\v.txt ..\masmx var -lnoy ..\test.o3\var > ..\text.o3\var.txt ..\masmx vast -lnoy ..\test.o3\vast > ..\text.o3\vast.txt ..\masmx vector -lnoy ..\test.o3\vector > ..\text.o3\vector.txt ..\masmx viable -lnoy ..\test.o3\viable > ..\text.o3\viable.txt ..\masmx victim -lnoy ..\test.o3\victim > ..\text.o3\victim.txt ..\masmx visobar -lnoy ..\test.o3\visobar > ..\text.o3\visobar.txt ..\masmx vitest -lnoy ..\test.o3\vitest > ..\text.o3\vitest.txt ..\masmx vitest2 -lnoy ..\test.o3\vitest2 > ..\text.o3\vitest2.txt ..\masmx vitest3 -lnoy ..\test.o3\vitest3 > ..\text.o3\vitest3.txt ..\masmx void -lnoy ..\test.o3\void > ..\text.o3\void.txt ..\masmx vr -lnoy ..\test.o3\vr > ..\text.o3\vr.txt ..\masmx vsim -lnoy ..\test.o3\vsim > ..\text.o3\vsim.txt ..\masmx vsimpl -lnoy ..\test.o3\vsimpl > ..\text.o3\vsimpl.txt ..\masmx vsimpl2 -lnoy ..\test.o3\vsimpl2 > ..\text.o3\vsimpl2.txt ..\masmx vspace -lnoy ..\test.o3\vspace > ..\text.o3\vspace.txt ..\masmx wanayooz -lnoy ..\test.o3\wanayooz > ..\text.o3\wanayooz.txt ..\masmx watabout -lnoy ..\test.o3\watabout > ..\text.o3\watabout.txt ..\masmx watslong -lnoy ..\test.o3\watslong > ..\text.o3\watslong.txt ..\masmx weel -lnoy ..\test.o3\weel > ..\text.o3\weel.txt ..\masmx welblech -lnoy ..\test.o3\welblech > ..\text.o3\welblech.txt ..\masmx wellaugh -lnoy ..\test.o3\wellaugh > ..\text.o3\wellaugh.txt ..\masmx wellbad -lnoy ..\test.o3\wellbad > ..\text.o3\wellbad.txt ..\masmx wellfest -lnoy ..\test.o3\wellfest > ..\text.o3\wellfest.txt ..\masmx whereami -lnoy ..\test.o3\whereami > ..\text.o3\whereami.txt ..\masmx whether -lnoy ..\test.o3\whether > ..\text.o3\whether.txt ..\masmx why -lnoy ..\test.o3\why > ..\text.o3\why.txt ..\masmx wibl -lnoy ..\test.o3\wibl > ..\text.o3\wibl.txt ..\masmx wirr -lnoy ..\test.o3\wirr > ..\text.o3\wirr.txt ..\masmx wolverine -lnoy ..\test.o3\wolverine > ..\text.o3\wolverine.txt ..\masmx woodbits -lnoy ..\test.o3\woodbits > ..\text.o3\woodbits.txt ..\masmx worser -lnoy ..\test.o3\worser > ..\text.o3\worser.txt ..\masmx wozita -lnoy ..\test.o3\wozita > ..\text.o3\wozita.txt ..\masmx wyzat -lnoy ..\test.o3\wyzat > ..\text.o3\wyzat.txt ..\masmx xtrem -lnoy ..\test.o3\xtrem > ..\text.o3\xtrem.txt ..\masmx yanutha -lnoy ..\test.o3\yanutha > ..\text.o3\yanutha.txt ..\masmx yasimi -lnoy ..\test.o3\yasimi > ..\text.o3\yasimi.txt ..\masmx yepnope -lnoy ..\test.o3\yepnope > ..\text.o3\yepnope.txt ..\masmx yoho -lnoy ..\test.o3\yoho > ..\text.o3\yoho.txt ..\masmx yowl -lnoy ..\test.o3\yowl > ..\text.o3\yowl.txt ..\masmx ytup -lnoy ..\test.o3\ytup > ..\text.o3\ytup.txt ..\masmx zactor -lnoy ..\test.o3\zactor > ..\text.o3\zactor.txt ..\masmx zibble -lnoy ..\test.o3\zibble > ..\text.o3\zibble.txt ..\masmx zipit -lnoy ..\test.o3\zipit > ..\text.o3\zipit.txt ..\masmx zoto -lnoy ..\test.o3\zoto > ..\text.o3\zoto.txt ..\masmx ztup -lnoy ..\test.o3\ztup > ..\text.o3\ztup.txt call ..\linkpart call ..\coldfire call ..\ppc_kern
TimMilesCox/masmx
masmx.7r3/w32_dos.bat/test1.bat
bat
gpl-3.0
38,907
@echo off setlocal setlocal & cd Images && call Build || exit /b 1 & endlocal
pbetti/ZDS
software/RomWBW/Source/BuildImages.cmd
bat
gpl-3.0
81
copy D:\Daten\Projekte\FileMonitor\Debug\flmonsvc.exe \\192.168.0.201\userspace\flmonsvc.exe
novoid/tstest
filemonitor/development_stage/flmonsvc/copyservice.cmd
bat
gpl-3.0
92
java -jar talent-aio-im-client.jar
tywo45/talent-aio
example/im/talent-aio-examples-im-client/startup-no-param.bat
bat
lgpl-2.1
34
# Please NOTE: In this sample we're assuming Cloud Api Server is hosted at "https://localhost". # If it's not then please replace this with with your hosting url. curl --location --request POST 'https://localhost/pdf/edit/replace-text' \ --header 'Content-Type: application/json' \ --header 'x-api-key: {{x-api-key}}' \ --data-raw '{ "url": "https://bytescout-com.s3.amazonaws.com/files/demo-files/cloud-api/pdf-split/sample.pdf", "searchStrings": [ "conspicuous feature", "Martian" ], "replaceStrings": [ "Replaced1", "Replaced2" ], "caseSensitive": true, "pages": "", "password":"", "name": "finalFile" }'
bytescout/ByteScout-SDK-SourceCode
Cloud API Server/Replace Text From PDF/cURL/Replace Text Multiple Occurances/ReplaceTextMultipleOccurances.cmd
bat
apache-2.0
646
@echo off rem use variable CUSTOM_JAVA_OPTS to set additional JAVA options rem uncomment the following lines to configure HTTP proxy rem set http_proxy=http://<proxy>:<port> rem set https_proxy=https://<proxy>:<port> rem set no_proxy=localhost,127.0.0.0,.local for /F "delims=/" %%x in ('"java -classpath .;%~dp0\lib\* org.apache.chemistry.opencmis.workbench.ProxyDetector -j -s"') do set "JAVA_PROXY_CONF=%%x" set JAVA_OPTS=%JAVA_PROXY_CONF% java %JAVA_OPTS% %CUSTOM_JAVA_OPTS% -classpath ".;%~dp0\lib\*" com.sap.sdc.tck.corprep.tests.ConsoleRunner %*
SAP/cloud-cmis-workbench
src/main/start/runtck.bat
bat
apache-2.0
558
@echo off rem -------------------------------------------------------- rem Derive node name from first argument (or use default) rem -------------------------------------------------------- set NODE=%1 if "%NODE%" == "" set NODE=node1 rem -------------------------------------------------------- rem Derive JMX port from second argument (or use default) rem -------------------------------------------------------- set PORT=%2 if "%PORT%" == "" set PORT=1801 set REGPORT=%3 if "%REGPORT%" == "" set REGPORT=1091 rem -------------------------------------------------------- rem JMX and cluster node system properties rem -------------------------------------------------------- set JAVA_OPTS=-Xmx256m -Dcluster.node.dir=%NODE% -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=%PORT% -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dorg.apache.camel.jmx.rmiConnector.registryPort=%REGPORT% rem -------------------------------------------------------- rem Startup tutorial server (cluster node) rem -------------------------------------------------------- "%JAVA_HOME%\bin\java.exe" -javaagent:lib\spring-agent.jar %JAVA_OPTS% -cp conf;lib\* org.openehealth.ipf.tutorials.ref.TutorialServer
krasserm/ipf
tutorials/ref/start-node.bat
bat
apache-2.0
1,259
@echo off REM REM Copyright 2017 Jari Hämäläinen / https://github.com/nuumio 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 "%~1" NEQ "" ( set SERVER=%~1 ) else ( set SERVER=localhost ) IF "%~2" NEQ "" ( set CLIENT=%~2 ) else ( set CLIENT=client ) IF "%~3" NEQ "" ( set GROUP=%~3 ) else ( set GROUP=group ) IF "%~4" NEQ "" ( set GROUPTOKEN=%~4 ) else ( set GROUPTOKEN=groupToken ) IF "%~5" NEQ "" ( set SYNCPOINT=%~5 ) else ( set SYNCPOINT=syncPoint ) IF "%~6" NEQ "" ( set MEMBERS=%~6 ) else ( set MEMBERS=2 ) for %%a in (build\libs\netsync*.jar) do set CP=%%a for %%a in (locallibs\*.jar) do set CP=%CP%;%%a java -cp %CP% fi.nuumio.netsync.NetSyncClientExample %SERVER% %CLIENT% %GROUP% %GROUPTOKEN% %SYNCPOINT% %MEMBERS%
nuumio/netsync
runclient.bat
bat
apache-2.0
1,358
@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\hunt.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\hunt.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
dreamwalker/hunt
docs/make.bat
bat
bsd-2-clause
6,455
C: cd C:\wamp\www\apive\ C:\wamp\bin\php\php5.4.16\php.exe C:\wamp\www\apive\app\console cache:clear --env=prod --no-debug C:\wamp\bin\php\php5.4.16\php.exe C:\wamp\www\apive\app\console assets:install --env=prod --no-debug C:\wamp\bin\php\php5.4.16\php.exe C:\wamp\www\apive\app\console assetic:dump --env=prod --no-debug C:\wamp\bin\php\php5.4.16\php.exe C:\wamp\www\apive\app\console cache:warmup --env=prod --no-debug C:\wamp\bin\mysql\mysql5.6.12\bin\mysql -u root mysql < C:\wamp\www\apive\apive.sql
ludwingperezt/apive
installer/scripts/siapive-install.bat
bat
bsd-2-clause
505
@echo off Nuget.exe restore "Source\MSBuild.Community.Tasks.sln" NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.2 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
loresoft/msbuildtasks
bootstrap.cmd
bat
bsd-2-clause
331
@echo off REM Script for automatic test execution and logging from the command line REM Opens all experiment files in the current directory in autorun mode set IgorPath="%PROGRAMFILES(x86)%\WaveMetrics\Igor Pro Folder\Igor.exe" set StateFile="DO_AUTORUN.TXT" REM set StateFile="DO_AUTORUN_PLAIN.TXT" if exist %IgorPath% goto foundIgor echo Igor Pro could not be found in %IgorPath%, please adjust the variable IgorPath in the script goto done :foundIgor echo "" > %StateFile% for /F "tokens=*" %%f IN ('dir /b *.pxp') do ( echo Running experiment %%f %IgorPath% /I "%%f" ) del %StateFile% :done
t-b/igor-unit-testing-framework
helper/autorun-test-IP6.bat
bat
bsd-3-clause
607
msxsl tags.xml -pi > tags.html
drzippie/morcegocms
doc/build-doc-msxsl.cmd
bat
bsd-3-clause
31
@ECHO OFF :: ******************************************************************************************************************** :: :: enabling Technology progressive OS deployment :: Client System Bootstrapper for Windows 10 Enterprise Installations :: :: Update Help Files For All Installed PowerShell Modules :: Version 1.0.0 :: :: Tested with Windows 10 Enterprise Release 2004 and Release 2009 :: :: Please review all the scripts BEFORE you install it on any of your systems. :: This installation/configuration is customized to our internal requirements and might not fit for everyone! :: :: ******************************************************************************************************************** SETLOCAL :UpdateHelpFilesForAllInstalledPowerShellModules TITLE UpdateHelpFilesForAllInstalledPowerShellModules SET Module=UpdateHelpFilesForAllInstalledPowerShellModules SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt :SetLogHeader ECHO ******************************************************************************** >%logfile_setup% ECHO Started %Module% on %DATE:~0% - %TIME:~0,8% ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup% ECHO.>>%logfile_setup% 2>nul :LOGIC ECHO Update help files for all installed PowerShell Modules ECHO %TIME:~0,8% Update help files for all installed PowerShell Modules >>%logfile_setup% 2>&1 "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Update-PowerShellModulesHelp.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1 ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul ECHO.>>%logfile_setup% 2>nul ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8% ECHO ******************************************************************************** >>%logfile_setup% ECHO.>>%logfile_setup% 2>nul :: ******************************************************************************************************************** :: :: Changelog: :: :: 0.9.0: Internal Test :: 1.0.0: Initial Release :: :: ******************************************************************************************************************** :: :: License: BSD 3-Clause License :: :: Copyright 2020, enabling Technology :: All rights reserved. :: :: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the :: following conditions are met: :: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following :: disclaimer. :: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the :: following disclaimer in the documentation and/or other materials provided with the distribution. :: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote :: products derived from this software without specific prior written permission. :: :: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, :: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE :: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, :: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR :: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, :: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE :: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. :: :: ******************************************************************************************************************** :: :: Disclaimer: :: - Use at your own risk, etc. :: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty :: in any kind :: - This is a third-party Software :: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its :: subsidiaries in any way :: - The Software is not supported by Microsoft Corp (MSFT) :: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above :: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution :: :: ********************************************************************************************************************
jhochwald/PowerShell-collection
Windows10-Bootstrapper/sources/$OEM$/$$/Setup/Scripts/38-UpdateHelpFilesForAllInstalledPowerShellModules/UpdateHelpFilesForAllInstalledPowerShellModules.cmd
bat
bsd-3-clause
4,652
@echo off pushd %~dp0 @call ..\properties.bat @call "%flex_bin%\mxmlc.bat" -o "..\%build_dir%\HLSDynamicPlugin.swf" ^ -debug=%debug% ^ -swf-version=11 ^ -target-player=%target_player% ^ -default-size=640,360 ^ -default-background-color=0 ^ -static-link-runtime-shared-libraries=true ^ -l "%flex_sdk%\frameworks\libs" "%flex_sdk%\frameworks\locale\{locale}" ^ -l ..\%build_dir% ^ -define CONFIG::FLASH_10_1 %FLASH_10_1% ^ -define CONFIG::LOGGING %logging% ^ -- src\HLSDynamicPlugin.as popd
denivip/osmf-hls-plugin
HLSDynamicPlugin/build.bat
bat
isc
503
start "Encrypter" "C:\Program Files (x86)\Java\jre1.5.0_22\bin"\java.exe -cp . encryption.cipher.Program -e 5000 127.0.0.1 5500 exit
ComputationalReflection/weaveJ
Benchmarks/Real Applications/JAsCo/FTP_Encryption/dir1/execute1.bat
bat
mit
133
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_COPYS.S01_CopyIntoItems.MSCOPYS_S01_TC02_GetItem_Fail /testcontainer:..\..\MS-COPYS\TestSuite\bin\Debug\MS-COPYS_TestSuite.dll /runconfig:..\..\MS-COPYS\MS-COPYS.testsettings /unique pause
XinwLi/Interop-TestSuites-1
SharePoint/Source/Scripts/MS-COPYS/RunMSCOPYS_S01_TC02_GetItem_Fail.cmd
bat
mit
282
mmem on linkfast /INC:5000 /MAP @opus.lnk rc -l opus.res opus.exe opus mmem off strpmap opus.map opusnew.map strpmap.str mv opusnew.map opus.map mapsym opus
lborgav/Historical-Source-Codes
Microsoft Word for Windows Version 1.1a/Word 1.1a CHM Distribution/Opus/tools/stropmap.bat
bat
mit
164
@echo off REM PHPUnit REM REM Copyright (c) 2002-2008, Sebastian Bergmann <sb@sebastian-bergmann.de>. REM All rights reserved. REM REM Redistribution and use in source and binary forms, with or without REM modification, are permitted provided that the following conditions REM are met: REM REM * Redistributions of source code must retain the above copyright REM notice, this list of conditions and the following disclaimer. REM REM * Redistributions in binary form must reproduce the above copyright REM notice, this list of conditions and the following disclaimer in REM the documentation and/or other materials provided with the REM distribution. REM REM * Neither the name of Sebastian Bergmann nor the names of his REM contributors may be used to endorse or promote products derived REM from this software without specific prior written permission. REM REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS REM FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REM COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, REM INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, REM BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; REM LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER REM CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC REM LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN REM ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE REM POSSIBILITY OF SUCH DAMAGE. REM REM $Id: pear-phpunit.bat 2798 2008-04-14 16:48:33Z sb $ REM set PHPBIN="C:\wamp\bin\php\php5.4.3\.\php.exe" "C:\wamp\bin\php\php5.4.3\.\php.exe">_results_c.txt "C:\wamp\bin\php\php5.4.3\phpunit" --coverage-html coverage --configuration coverage.xml _runAllTests.php
mizukami2005/swatter
fuel/vendor/smarty/smarty/development/PHPunit/_phpunit-tests-coverage.bat
bat
mit
1,964
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXNSPI.S05_NegativeBehavior.MSOXNSPI_S05_TC12_ModLinkAttFailedWithInvalidParameter /testcontainer:..\..\MS-OXNSPI\TestSuite\bin\Debug\MS-OXNSPI_TestSuite.dll /runconfig:..\..\MS-OXNSPI\MS-OXNSPI.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeMAPI/Source/Scripts/MS-OXNSPI/RunMSOXNSPI_S05_TC12_ModLinkAttFailedWithInvalidParameter.cmd
bat
mit
315
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S03_OperationOnListItem.MSLISTSWS_S03_TC59_GetVersionCollection_InvalidGUIDAndNotCorrespond_SP3WSS3 /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique pause
XinwLi/Interop-TestSuites-1
SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S03_TC59_GetVersionCollection_InvalidGUIDAndNotCorrespond_SP3WSS3.cmd
bat
mit
344
@REM This batch file has been generated by the IAR Embedded Workbench @REM C-SPY Debugger, as an aid to preparing a command line for running @REM the cspybat command line utility using the appropriate settings. @REM @REM Note that this file is generated every time a new debug session @REM is initialized, so you may want to move or rename the file before @REM making changes. @REM @REM You can launch cspybat by typing the name of this batch file followed @REM by the name of the debug file (usually an ELF/DWARF or UBROF file). @REM @REM Read about available command line parameters in the C-SPY Debugging @REM Guide. Hints about additional command line parameters that may be @REM useful in specific cases: @REM --download_only Downloads a code image without starting a debug @REM session afterwards. @REM --silent Omits the sign-on message. @REM --timeout Limits the maximum allowed execution time. @REM "C:\Program Files\IAR Systems\Embedded Workbench 7.0\common\bin\cspybat" "C:\Program Files\IAR Systems\Embedded Workbench 7.0\arm\bin\armproc.dll" "C:\Program Files\IAR Systems\Embedded Workbench 7.0\arm\bin\armjlink.dll" %1 --plugin "C:\Program Files\IAR Systems\Embedded Workbench 7.0\arm\bin\armbat.dll" --device_macro "C:\Program Files\IAR Systems\Embedded Workbench 7.0\arm\config\debugger\ST\STM32F1xx.dmac" --backend -B "--endian=little" "--cpu=Cortex-M3" "--fpu=None" "-p" "C:\Program Files\IAR Systems\Embedded Workbench 7.0\arm\CONFIG\debugger\ST\STM32F103xE.ddf" "--drv_verify_download" "--semihosting" "--device=STM32F103xE" "--jlink_device_select=0" "--drv_communication=USB0" "--jlink_speed=auto" "--jlink_initial_speed=1000" "--jlink_reset_strategy=0,0" "--drv_catch_exceptions=0x000" "--drv_swo_clock_setup=72000000,0,2000000"
boyisgood86/rtt_thread_new-version
new_version/rt-thread-1.2.2/bsp/stm32f10x/settings/project.Debug.cspy.bat
bat
gpl-2.0
1,827
cmd_arch/arm/kernel/vmlinux.lds := /home/adam/android/kernel_dev/samsung/espressovzw/scripts/gcc-wrapper.py arm-eabi-gcc -E -Wp,-MD,arch/arm/kernel/.vmlinux.lds.d -nostdinc -isystem /home/adam/android/prebuilts/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -DTEXT_OFFSET=0x00008000 -P -C -Uarm -D__ASSEMBLY__ -DLINKER_SCRIPT -o arch/arm/kernel/vmlinux.lds arch/arm/kernel/vmlinux.lds.S source_arch/arm/kernel/vmlinux.lds := arch/arm/kernel/vmlinux.lds.S deps_arch/arm/kernel/vmlinux.lds := \ $(wildcard include/config/strict/memory/rwx.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/smp/on/up.h) \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/xip/kernel.h) \ $(wildcard include/config/xip/phys/addr.h) \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/unwind.h) \ $(wildcard include/config/have/tcm.h) \ include/asm-generic/vmlinux.lds.h \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/pm/trace.h) \ $(wildcard include/config/blk/dev/initrd.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/iwmmxt.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/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/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ include/linux/const.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/arch/msm/cortex/a5.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm8x60.h) \ $(wildcard include/config/arch/msm8960.h) \ $(wildcard include/config/dont/map/hole/after/membank0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ $(wildcard include/config/arch/msm/krait.h) \ $(wildcard include/config/arch/msm7x27.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/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/sa1100.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/have/arch/pfn/valid.h) \ $(wildcard include/config/memory/hotplug/sparse.h) \ include/asm-generic/getorder.h \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/proc-fns.h \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/glue-proc.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/fa526.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/sa110.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/v6k.h) \ $(wildcard include/config/cpu/v7.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/glue.h \ arch/arm/mach-msm/include/mach/vmalloc.h \ $(wildcard include/config/vmsplit/2g.h) \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/pgtable-hwdef.h \ /home/adam/android/kernel_dev/samsung/espressovzw/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ $(wildcard include/config/arm/errata/720789.h) \ arch/arm/kernel/vmlinux.lds: $(deps_arch/arm/kernel/vmlinux.lds) $(deps_arch/arm/kernel/vmlinux.lds):
MrHyde03/android_kernel_samsung_espressovzw
arch/arm/kernel/.vmlinux.lds.cmd
bat
gpl-2.0
7,516
@echo off REM ================================================================ REM Licensed to the Apache Software Foundation (ASF) under one REM or more contributor license agreements. See the NOTICE file REM distributed with this work for additional information REM regarding copyright ownership. The ASF licenses this file REM to you under the Apache License, Version 2.0 (the REM "License"); you may not use this file except in compliance REM with the License. You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, 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 ================================================================ SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION CALL ..\svn-config.cmd IF ERRORLEVEL 1 EXIT /B 1 PUSHD ..\deps nant gen-dev -D:wc=..\build -D:impBase=../deps/build/win32 -D:botBuild=true %SVN_NANT_ARGS% IF ERRORLEVEL 1 EXIT /B 1 POPD msbuild subversion_vcnet.sln /m /v:m /p:Configuration=Debug /p:Platform=Win32 /t:__ALL_TESTS__ %SVN_MSBUILD_ARGS% IF ERRORLEVEL 1 EXIT /B 1 EXIT /B 0
YueLinHo/Subversion
tools/buildbot/slaves/win32-SharpSvn/svntest-build.cmd
bat
apache-2.0
1,385
-- Creates the object diagram: -- read examples/Documentation/Demo/SplitCommands/Demo4.cmd -- Project research !create research : Project !set research.name := 'Research' !set research.budget := 12000 -- Project teaching !create teaching : Project !set teaching.name := 'Validating UML' !set teaching.budget := 3000 -- Controls !insert (cs,research) into Controls !insert (cs,teaching) into Controls -- WorksOn !insert (frank,research) into WorksOn !insert (frank,teaching) into WorksOn !insert (john,research) into WorksOn
vnu-dse/rtl
examples/Documentation/Demo/SplitCommands/Demo4.cmd
bat
gpl-2.0
528
cd ..\ out.exe cd srcBOTs
baskerbill/Core
Core/allegro/sidescroller/srcEditor/run.bat
bat
gpl-3.0
29
:: :: Start editConfiguration with a mimimized console window :: powershell -Sta -WindowStyle Minimized %~dp0\winbuild\editConfiguration.ps1 %*
gavioto/psqlodbc
editConfiguration.bat
bat
lgpl-2.1
144
rem build the standalone Dronekit.exe for Windows. rem This assumes Python2 is installed in C:\Python27 rem This assumes Inno Setup 5 is installed in C:\Program Files (x86)\Inno Setup 5 SETLOCAL enableextensions rem get the version for /f "tokens=*" %%a in ( 'python returnVersion.py' ) do ( set VERSION=%%a ) rem -----Build the Installer----- "C:\Program Files (x86)\Inno Setup 5\ISCC.exe" /dMyAppVersion=%VERSION% dronekit_installer.iss
dronekit/dronekit-python
windows/dronekitWinBuild.bat
bat
apache-2.0
459
bin\node.exe node_modules\ep_etherpad-lite\node\server.js
swapnilp/etherpadlite
start.bat
bat
apache-2.0
57
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. if "%OS%" == "Windows_NT" setlocal rem --------------------------------------------------------------------------- rem Stop script for the CATALINA Server rem rem $Id: shutdown.bat 562770 2007-08-04 22:13:58Z markt $ rem --------------------------------------------------------------------------- rem Guess CATALINA_HOME if not defined set CURRENT_DIR=%cd% if not "%CATALINA_HOME%" == "" goto gotHome set CATALINA_HOME=%CURRENT_DIR% if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome cd .. set CATALINA_HOME=%cd% cd %CURRENT_DIR% :gotHome if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome echo The CATALINA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program goto end :okHome set EXECUTABLE=%CATALINA_HOME%\bin\catalina.bat rem Check that target executable exists if exist "%EXECUTABLE%" goto okExec echo Cannot find %EXECUTABLE% echo This file is needed to run this program goto end :okExec rem Get remaining unshifted command line arguments and save them in the set CMD_LINE_ARGS= :setArgs if ""%1""=="""" goto doneSetArgs set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 shift goto setArgs :doneSetArgs call "%EXECUTABLE%" stop %CMD_LINE_ARGS% :end
uliana291/audit_is
tomcat/bin/shutdown.bat
bat
apache-2.0
2,096
@echo off python "%~dp0\sdl-config" %*
slightperturbation/Cobalt
ext/emsdk_portable/emscripten/tag-1.34.1/system/bin/sdl-config.bat
bat
apache-2.0
38
@echo off REM This batch file compiles the demo program with the Borland C++ 5.5 compiler for Windows set src=../shared/commonlib.c ../shared/mmio.c ../shared/myblas.c ../ini.c ../lp_rlp.c ../lp_crash.c ../bfp/bfp_LUSOL/lp_LUSOL.c ../bfp/bfp_LUSOL/LUSOL/lusol.c ../lp_Hash.c ../lp_lib.c ../lp_wlp.c ../lp_matrix.c ../lp_mipbb.c ../lp_MPS.c ../lp_params.c ../lp_presolve.c ../lp_price.c ../lp_pricePSE.c ../lp_report.c ../lp_scale.c ../lp_simplex.c ../lp_SOS.c ../lp_utils.c ../yacc_read.c ../lp_MDO.c ../colamd/colamd.c set c=bcc32 -w-8004 -w-8057 set PLATFORM=win32 if not exist bin\%PLATFORM%\*.* md bin\%PLATFORM% %c% -I.. -I../bfp -I../bfp/bfp_LUSOL -I../bfp/bfp_LUSOL/LUSOL -I../colamd -I../shared -a8 -DWIN32 -DYY_NEVER_INTERACTIVE=1 -DPARSER_LP -DINVERSE_ACTIVE=INVERSE_LUSOL -DRoleIsExternalInvEngine demo.c -ebin\%PLATFORM%\demo.exe %src% if exist *.obj del *.obj set PLATFORM=
hoytak/pylpsolve
pylpsolve/lp_solve_5.5/demo/cbcc32.bat
bat
lgpl-2.1
910
// At startup the commands written below will be executed
openthread/ot-rtos
third_party/freertos/repo/FreeRTOS/Demo/HCS12_CodeWarrior_small/cmd/SofTec_Startup.cmd
bat
bsd-3-clause
59
@setlocal @set node_name=princess @rem Get the absolute path to the parent directory, @rem which is assumed to be the node root. @for /F "delims=" %%I in ("%~dp0..") do @set node_root=%%~fI @set releases_dir=%node_root%\releases @rem Parse ERTS version and release version from start_erl.data @for /F "usebackq tokens=1,2" %%I in ("%releases_dir%\start_erl.data") do @( @call :set_trim erts_version %%I @call :set_trim release_version %%J ) @set vm_args=%releases_dir%\%release_version%\vm.args @set sys_config=%releases_dir%\%release_version%\sys.config @set node_boot_script=%releases_dir%\%release_version%\%node_name% @set clean_boot_script=%releases_dir%\%release_version%\start_clean @rem extract erlang cookie from vm.args @for /f "usebackq tokens=1-2" %%I in (`findstr /b \-setcookie "%vm_args%"`) do @set erlang_cookie=%%J @set erts_bin=%node_root%\erts-%erts_version%\bin @set service_name=%node_name%_%release_version% @set erlsrv="%erts_bin%\erlsrv.exe" @set epmd="%erts_bin%\epmd.exe" @set escript="%erts_bin%\escript.exe" @set werl="%erts_bin%\werl.exe" @set nodetool="%erts_bin%\nodetool" @if "%1"=="usage" @goto usage @if "%1"=="install" @goto install @if "%1"=="uninstall" @goto uninstall @if "%1"=="start" @goto start @if "%1"=="stop" @goto stop @if "%1"=="restart" @call :stop && @goto start @if "%1"=="console" @goto console @if "%1"=="ping" @goto ping @if "%1"=="query" @goto query @if "%1"=="attach" @goto attach @if "%1"=="upgrade" @goto upgrade @echo Unknown command: "%1" :usage @echo Usage: %~n0 [install^|uninstall^|start^|stop^|restart^|console^|ping^|query^|attach^|upgrade] @goto :EOF :install @set description=Erlang node %node_name% in %node_root% @set start_erl=%node_root%\bin\start_erl.cmd @set args= ++ %node_name% ++ %node_root% @%erlsrv% add %service_name% -c "%description%" -sname %node_name% -w "%node_root%" -m "%start_erl%" -args "%args%" -stopaction "init:stop()." @goto :EOF :uninstall @%erlsrv% remove %service_name% @%epmd% -kill @goto :EOF :start @%erlsrv% start %service_name% @goto :EOF :stop @%erlsrv% stop %service_name% @goto :EOF :console @start "%node_name% console" %werl% -boot "%node_boot_script%" -config "%sys_config%" -args_file "%vm_args%" -sname %node_name% @goto :EOF :ping @%escript% %nodetool% ping -sname "%node_name%" -setcookie "%erlang_cookie%" @exit %ERRORLEVEL% @goto :EOF :query @%erlsrv% list %service_name% @exit %ERRORLEVEL% @goto :EOF :attach @for /f "usebackq" %%I in (`hostname`) do @set hostname=%%I start "%node_name% attach" %werl% -boot "%clean_boot_script%" -remsh %node_name%@%hostname% -sname console -setcookie %erlang_cookie% @goto :EOF :upgrade @if "%2"=="" ( @echo Missing upgrade package argument @echo Usage: %~n0 upgrade {package base name} @echo NOTE {package base name} MUST NOT include the .tar.gz suffix @goto :EOF ) @%escript% %node_root%\bin\install_upgrade.escript %node_name% %erlang_cookie% %2 @goto :EOF :set_trim @set %1=%2 @goto :EOF
DavidAlphaFox/princess
rel/files/princess.cmd
bat
mit
2,984
@echo off git fetch upstream master git checkout -b %1 upstream/master git push -u origin %1 :exit
k2workflow/Clay
git-feature.bat
bat
mit
99
powershell.exe -NoExit -Command "& {& '%~dp0_scripts\Increase-Build.ps1'}"
IInspectable/IXOS-File-Name-Extensions
IncreaseBuild.bat
bat
mit
75
pushd Microsoft.Bot.Builder call createpackage.cmd popd pushd Microsoft.Bot.Builder.FormFlow.Json call createpackage.cmd popd pushd Microsoft.Bot.Builder.Calling call createpackage.cmd popd pushd Microsoft.Bot.Builder.History call createpackage.cmd popd
xiangyan99/BotBuilder
CSharp/Library/createallpackages.cmd
bat
mit
254
@echo off cargo build --target=wasm32-unknown-unknown --release copy /B /Y "%~dp0\..\target\wasm32-unknown-unknown\release\pelite_wasm.wasm" "%~dp0\pkg\pelite.wasm"
CasualX/pelite
wasm/build.bat
bat
mit
165
@echo Off set config=%1 if "%config%" == "" ( set config=Release ) set version=1.0.0 if not "%PackageVersion%" == "" ( set version=%PackageVersion% ) set nuget= if "%nuget%" == "" ( set nuget=nuget ) REM Package restore call %NuGet% restore Gallifrey.SharedKernel\packages.config -OutputDirectory %cd%\packages -NonInteractive call %NuGet% restore Gallifrey.Infrastructure\packages.config -OutputDirectory %cd%\packages -NonInteractive call %NuGet% restore Gallifrey.Persistence\packages.config -OutputDirectory %cd%\packages -NonInteractive call %NuGet% restore Gallifrey.RestApiController\packages.config -OutputDirectory %cd%\packages -NonInteractive call %NuGet% restore FunctonalTest\packages.config -OutputDirectory %cd%\packages -NonInteractive %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Gallifrey.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=diag /nr:false mkdir Build mkdir Build\lib mkdir Build\lib\net40 %nuget% pack "Gallifrey.nuspec" -NoPackageAnalysis -verbosity detailed -o Build -Version %version% -p Configuration="%config%"
pedrohugorm/Gallifrey
build.bat
bat
mit
1,099
@ECHO OFF :: Kill all these processes taskkill /f /IM nginx.exe taskkill /f /IM php-cgi.exe taskkill /f /IM mysqld.exe taskkill /f /IM memcached.exe EXIT
Xeoncross/wnmp
stop_server.bat
bat
mit
153
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\www2csv.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\www2csv.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
waveform80/lars
docs/make.bat
bat
mit
5,098
@echo off python tool_title.py -m u -s "old\title.bin" -d "old_title"
leomontenegro6/megaman-zx-traducao-ptbr
asm/tool_title/unpack_title.bat
bat
mit
69
cmd_arch/x86/boot/video-bios.o := gcc -Wp,-MD,arch/x86/boot/.video-bios.o.d -nostdinc -isystem /usr/lib/gcc/i686-linux-gnu/4.4.7/include -I/home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -I/home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include -Iinclude -include include/generated/autoconf.h -g -Os -D_SETUP -D__KERNEL__ -DDISABLE_BRANCH_PROFILING -Wall -Wstrict-prototypes -march=i386 -mregparm=3 -include /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/boot/code16gcc.h -fno-strict-aliasing -fomit-frame-pointer -ffreestanding -fno-toplevel-reorder -fno-stack-protector -mpreferred-stack-boundary=2 -m32 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(video_bios)" -D"KBUILD_MODNAME=KBUILD_STR(video_bios)" -c -o arch/x86/boot/.tmp_video-bios.o arch/x86/boot/video-bios.c deps_arch/x86/boot/video-bios.o := \ arch/x86/boot/video-bios.c \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/boot/code16gcc.h \ arch/x86/boot/boot.h \ /usr/lib/gcc/i686-linux-gnu/4.4.7/include/stdarg.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/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/types.h \ include/asm-generic/int-ll64.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/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/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/posix_types_32.h \ include/linux/edd.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/boot.h \ $(wildcard include/config/physical/start.h) \ $(wildcard include/config/physical/align.h) \ $(wildcard include/config/kernel/bzip2.h) \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/pgtable_types.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/compat/vdso.h) \ $(wildcard include/config/proc/fs.h) \ include/linux/const.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/page_types.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/page_32_types.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/4kstacks.h) \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/pgtable_32_types.h \ $(wildcard include/config/highmem.h) \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/pgtable-2level_types.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/pgtable-nopmd.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/setup.h \ $(wildcard include/config/x86/visws.h) \ $(wildcard include/config/x86/mrst.h) \ include/linux/pfn.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/bootparam.h \ include/linux/screen_info.h \ include/linux/apm_bios.h \ include/linux/ioctl.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/e820.h \ $(wildcard include/config/nodes/shift.h) \ $(wildcard include/config/efi.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/memtest.h) \ include/linux/early_res.h \ include/linux/range.h \ include/linux/ioport.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/ist.h \ include/video/edid.h \ $(wildcard include/config/x86.h) \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/x86_init.h \ arch/x86/boot/bitops.h \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ /home/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ $(wildcard include/config/x86/cmov.h) \ $(wildcard include/config/x86/use/3dnow.h) \ $(wildcard include/config/x86/p6/nop.h) \ $(wildcard include/config/paravirt.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/madhwang/Development/linuxSource/linux-2.6.34.7/arch/x86/include/asm/processor-flags.h \ $(wildcard include/config/vm86.h) \ arch/x86/boot/video.h \ arch/x86/boot/video-bios.o: $(deps_arch/x86/boot/video-bios.o) $(deps_arch/x86/boot/video-bios.o):
madhwang/linuxKernel
arch/x86/boot/.video-bios.o.cmd
bat
gpl-2.0
5,790
cmd_arch/arm/lib/testchangebit.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.testchangebit.o.d -nostdinc -isystem /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/lithium/kfhd/kernel/android-3.0/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-omap2/include -Iarch/arm/plat-omap/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/testchangebit.o arch/arm/lib/testchangebit.S source_arch/arm/lib/testchangebit.o := arch/arm/lib/testchangebit.S deps_arch/arm/lib/testchangebit.o := \ /home/lithium/kfhd/kernel/android-3.0/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/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/linkage.h \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/hwcap.h \ /home/lithium/kfhd/kernel/android-3.0/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/lib/bitops.h \ arch/arm/lib/testchangebit.o: $(deps_arch/arm/lib/testchangebit.o) $(deps_arch/arm/lib/testchangebit.o):
0xD34D/kernel_amazon_tate
arch/arm/lib/.testchangebit.o.cmd
bat
gpl-2.0
2,142
cmd_drivers/gpu/ion/built-in.o := rm -f drivers/gpu/ion/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/gpu/ion/built-in.o
selva-simple/Galaxy-R-Kernel
drivers/gpu/ion/.built-in.o.cmd
bat
gpl-2.0
177
cmd_arch/arm/mm/tlb-v4wbi.o := /root/CodeSourcery/Sourcery_G++_Lite//bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/mm/.tlb-v4wbi.o.d -nostdinc -isystem /root/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -Iinclude -I/usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -include asm/unified.h -msoft-float -c -o arch/arm/mm/tlb-v4wbi.o arch/arm/mm/tlb-v4wbi.S deps_arch/arm/mm/tlb-v4wbi.o := \ arch/arm/mm/tlb-v4wbi.S \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/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) \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/linkage.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/asm/asm-offsets.h \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ arch/arm/mm/proc-macros.S \ $(wildcard include/config/cpu/dcache/writethrough.h) \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /usr/local/dvsdk/psp/linux-2.6.32-rc2-psp03.01.00.37/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ arch/arm/mm/tlb-v4wbi.o: $(deps_arch/arm/mm/tlb-v4wbi.o) $(deps_arch/arm/mm/tlb-v4wbi.o):
gzdaoke/linux2.6.32_kernel
arch/arm/mm/.tlb-v4wbi.o.cmd
bat
gpl-2.0
3,048
cmd_sound/soc/kirkwood/built-in.o := rm -f sound/soc/kirkwood/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD sound/soc/kirkwood/built-in.o
avareldalton85/rpi2-linux-rt
sound/soc/kirkwood/.built-in.o.cmd
bat
gpl-2.0
202
C:\Programmi\Plink.exe root@192.168.0.30 -pw fegato349217 /home/pi/scripts/shutdown.sh @echo off pause
ilplasticomodulare/RocPiLCD
Shutdown.bat
bat
gpl-2.0
102
cmd_drivers/net/ethernet/i825xx/built-in.o := rm -f drivers/net/ethernet/i825xx/built-in.o; /mnt/640/ubu/gtabkernelsrc/android_prebuilt_toolchains-master/arm-cortex_a15-linux-gnueabihf-linaro_4.9.1/bin/arm-cortex_a15-linux-gnueabihf-ar rcsD drivers/net/ethernet/i825xx/built-in.o
chase2534/gtab47.freekern
drivers/net/ethernet/i825xx/.built-in.o.cmd
bat
gpl-2.0
281
cmd_mm/dmapool.o := /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,mm/.dmapool.o.d -nostdinc -isystem /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/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 -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 -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dmapool)" -D"KBUILD_MODNAME=KBUILD_STR(dmapool)" -c -o mm/.tmp_dmapool.o mm/dmapool.c deps_mm/dmapool.o := \ mm/dmapool.c \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slub/debug/on.h) \ include/linux/device.h \ $(wildcard include/config/of.h) \ $(wildcard include/config/debug/devres.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/devtmpfs.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/ioport.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/posix_types.h \ include/linux/kobject.h \ $(wildcard include/config/hotplug.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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/hwcap.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/irqflags.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ include/asm-generic/cmpxchg-local.h \ include/linux/sysfs.h \ $(wildcard include/config/debug/lock/alloc.h) \ $(wildcard include/config/sysfs.h) \ include/linux/errno.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.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) \ $(wildcard include/config/prove/rcu.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.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 \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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) \ 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/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/dynamic_debug.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/rwlock_types.h \ include/linux/spinlock_up.h \ include/linux/rwlock.h \ include/linux/spinlock_api_up.h \ include/linux/kref.h \ include/linux/wait.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/current.h \ include/linux/klist.h \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modules.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/stat.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/seqlock.h \ include/linux/math64.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/sparsemem.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.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 \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/generated/bounds.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/memory/hotplug/sparse.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ $(wildcard include/config/arch/msm/scorpionmp.h) \ $(wildcard include/config/arch/msm7x27.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/rwsem.h \ include/linux/srcu.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/sparsemem.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/use/percpu/numa/node/id.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/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/elf.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/user.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/completion.h \ include/linux/rcutiny.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ $(wildcard include/config/pm/ops.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/dma-mapping.h \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/have/dma/attrs.h) \ $(wildcard include/config/need/dma/map/state.h) \ include/linux/err.h \ include/linux/dma-attrs.h \ include/linux/bug.h \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/scatterlist.h \ include/asm-generic/scatterlist.h \ $(wildcard include/config/need/sg/dma/length.h) \ include/linux/mm.h \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/rbtree.h \ include/linux/prio_tree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_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/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-msm/include/mach/vmalloc.h \ $(wildcard include/config/vmsplit/2g.h) \ $(wildcard include/config/vmsplit/1g.h) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/pgtable-hwdef.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ $(wildcard include/config/arm/errata/720789.h) \ $(wildcard include/config/arch/msm8x60.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/core/dump/default/elf/headers.h) \ $(wildcard include/config/virt/cpu/accounting.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/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/rcu/boost.h) \ $(wildcard include/config/cc/stackprotector.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/have/unstable/sched/clock.h) \ $(wildcard include/config/irq/time/accounting.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ include/linux/capability.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/ipcbuf.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/sigcontext.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.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/rculist.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/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/debug/credentials.h) \ $(wildcard include/config/security.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/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) \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/io.h \ arch/arm/mach-msm/include/mach/io.h \ /home/doadin/Desktop/ancora_tmo_4.0.4_2.6/arch/arm/include/asm/dma-mapping.h \ include/asm-generic/dma-coherent.h \ $(wildcard include/config/have/generic/dma/coherent.h) \ include/linux/dmapool.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemtrace.h \ $(wildcard include/config/kmemtrace.h) \ include/trace/events/kmem.h \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ mm/dmapool.o: $(deps_mm/dmapool.o) $(deps_mm/dmapool.o):
doadin/samsung-kernel-msm7x30-Doadin
mm/.dmapool.o.cmd
bat
gpl-2.0
24,786
cmd_scripts/kconfig/lxdialog/menubox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.menubox.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu89 -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/menubox.o scripts/kconfig/lxdialog/menubox.c source_scripts/kconfig/lxdialog/menubox.o := scripts/kconfig/lxdialog/menubox.c deps_scripts/kconfig/lxdialog/menubox.o := \ /usr/include/stdc-predef.h \ scripts/kconfig/lxdialog/dialog.h \ /usr/include/arm-linux-gnueabihf/sys/types.h \ /usr/include/features.h \ /usr/include/arm-linux-gnueabihf/sys/cdefs.h \ /usr/include/arm-linux-gnueabihf/bits/wordsize.h \ /usr/include/arm-linux-gnueabihf/gnu/stubs.h \ /usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \ /usr/include/arm-linux-gnueabihf/bits/types.h \ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/arm-linux-gnueabihf/4.9/include/stddef.h \ /usr/include/endian.h \ /usr/include/arm-linux-gnueabihf/bits/endian.h \ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \ /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \ /usr/include/arm-linux-gnueabihf/sys/select.h \ /usr/include/arm-linux-gnueabihf/bits/select.h \ /usr/include/arm-linux-gnueabihf/bits/sigset.h \ /usr/include/arm-linux-gnueabihf/bits/time.h \ /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \ /usr/include/fcntl.h \ /usr/include/arm-linux-gnueabihf/bits/fcntl.h \ /usr/include/arm-linux-gnueabihf/bits/fcntl-linux.h \ /usr/include/arm-linux-gnueabihf/bits/stat.h \ /usr/include/unistd.h \ /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \ /usr/include/arm-linux-gnueabihf/bits/environments.h \ /usr/include/arm-linux-gnueabihf/bits/confname.h \ /usr/include/getopt.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/stdlib.h \ /usr/include/arm-linux-gnueabihf/bits/waitflags.h \ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \ /usr/include/alloca.h \ /usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \ /usr/include/string.h \ /usr/include/arm-linux-gnueabihf/bits/string.h \ /usr/include/arm-linux-gnueabihf/bits/string2.h \ /usr/lib/gcc/arm-linux-gnueabihf/4.9/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/arm-linux-gnueabihf/bits/locale.h \ /usr/include/curses.h \ /usr/include/ncurses_dll.h \ /usr/lib/gcc/arm-linux-gnueabihf/4.9/include/stdint.h \ /usr/include/stdint.h \ /usr/include/arm-linux-gnueabihf/bits/wchar.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/arm-linux-gnueabihf/4.9/include/stdarg.h \ /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \ /usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \ /usr/include/arm-linux-gnueabihf/bits/stdio.h \ /usr/include/unctrl.h \ /usr/include/curses.h \ scripts/kconfig/lxdialog/menubox.o: $(deps_scripts/kconfig/lxdialog/menubox.o) $(deps_scripts/kconfig/lxdialog/menubox.o):
a1d3s/linux-bpi
scripts/kconfig/lxdialog/.menubox.o.cmd
bat
gpl-2.0
3,159
@echo off REM script to automate delivery correctly REM this script use command supplied by cygwin, so it is a linux like script, and not a classical dos batch file mkdir testPolicyManager REM copy the repository to deliver in flux_profil_delivery cp -r scripts testPolicyManager REM copy the configuration file cp -r config testPolicyManager REM allow user to modify all file chmod -R u+w testPolicyManager REM pack all data in a zip file "c:\Program Files\7-Zip\7z" a testPolicyManager.zip testPolicyManager/ REM erase temp repository testPolicyManager rm -rf testPolicyManager @echo on
yongs2/mts-project
mts/test/testDCB_PolicyManager/makeDelivery.bat
bat
gpl-3.0
595
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\color-support\bin.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\color-support\bin.js" %* )
chenc4/RedwoodHQ
node_modules/nodeunit/node_modules/tap/node_modules/.bin/color-support.cmd
bat
gpl-3.0
188
scut 80047908 130ACA0B 23478 MAIN.EXE MAIN.BIN
rururutan/hoot-patches
pc/koei/aokiookami2/cut/cut.bat
bat
gpl-3.0
47
@echo off echo R_ADDONS= > conf.inc echo C_ADDONS= >> conf.inc echo A_ADDONS= >> conf.inc echo L_ADDONS= >> conf.inc echo ALL_OBJS=$(BCC32_WIN32_X86_OBJS) >> conf.inc echo ALL_CPPS=$(BCC32_WIN32_X86_CPPS) >> conf.inc call "..\bat\cb2010_win32_x86.bat" make -fbcc32\win32\x86\core.mak make -fbcc32\win32\x86\gfx2.mak make -fbcc32\win32\x86\gfx3.mak make -fbcc32\win32\x86\math.mak make -fbcc32\win32\x86\fmtz.mak make -fbcc32\win32\x86\util.mak move *.dll ..\bin\cb2010_win32_x86 move *.lib ..\bin\cb2010_win32_x86 del conf.inc
prefetchnta/crhack
mak/bcb2010.bat
bat
lgpl-2.1
544
:: https://github.com/microsoft/vcpkg/blob/master/docs/specifications/manifests.md mkdir build-x86-windows & pushd build-x86-windows cmake .. -DCMAKE_TOOLCHAIN_FILE="%VCPKG_ROOT%\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x86-windows -DCMAKE_GENERATOR_PLATFORM=Win32 popd cmake --build build-x86-windows --config Release build-x86-windows\Release\attribute-demo.exe pause
myd7349/Ongoing-Study
cpp/HDF5/HighFive/attribute-demo/build-x86-windows.bat
bat
lgpl-3.0
386
@echo off ::------------------------------------------------------------- :: Check permissions and run as Administrator. ::------------------------------------------------------------- ATTRIB %windir%\system32 -h | FINDSTR /I "denied" >nul IF NOT ERRORLEVEL 1 GOTO:ADM GOTO:EXE ::------------------------------------------------------------- :ADM ::------------------------------------------------------------- :: Create temp batch. SET tb="%TEMP%\%~n0.tmp.bat" SET tj="%TEMP%\%~n0.tmp.js" echo @echo off> %tb% echo %~d0>> %tb% echo cd "%~p0">> %tb% echo call "%~nx0" %1 %2 %3 %4 %5 %6 %7 %8 %9>> %tb% echo del %tj%>> %tb% :: Delete itself without generating any error message. echo (goto) 2^>nul ^& del %tb%>> %tb% :: Create temp script. echo var arg = WScript.Arguments;> %tj% echo var wsh = WScript.CreateObject("WScript.Shell");>> %tj% echo var sha = WScript.CreateObject("Shell.Application");>> %tj% echo sha.ShellExecute(arg(0), "", wsh.CurrentDirectory, "runas", 1);>> %tj% :: Execute as Administrator. cscript /B /NoLogo %tj% %tb% GOTO:EOF ::------------------------------------------------------------- :EXE ::------------------------------------------------------------- ::------------------------------------------------------------- :: Main ::------------------------------------------------------------- SET src=d:\Projects\Jocys.com\WoW\TextToSpeech\WoW\JocysCom-TextToSpeech-WoW SET dst=d:\Program Files\World of Warcraft\Interface\AddOns\JocysCom-TextToSpeech-WoW IF EXIST "%dst%" RMDIR /S /Q "%dst%" mklink /D "%dst%" "%src%" pause GOTO:EOF
JocysCom/TextToSpeech
TextToSpeech/WoW/JocysCom.TextToSpeech.WoW.mklink.bat
bat
lgpl-3.0
1,561
rem pip install wheel rem pip install pyinstaller pyinstaller -c --onedir --onefile -n rtlaimage rtlaimage.py copy /b dist\rtlaimage.exe ..\..\USDK\component\soc\realtek\8195a\misc\iar_utility\common\tools\rtlaimage.exe del /Q rtlaimage.spec rm -rf dist build
pvvx/RTL00_WEB
tools/rtlaimage/make_windows_exe.bat
bat
unlicense
260
call add_message_server_reboot.bat call !backup_from_b.bat call !backup_from_b_as_zip.bat call !backup_daily.bat D:\Utilities\wizmo\wizmo.exe quiet reboot
wolispace/cow_windows_server
oldcow_on_apache/!reboot_pc.bat
bat
apache-2.0
157
@echo off cd bin/windows start zookeeper-server-start.bat "%~dp0zookeeper.properties" cd "%~dp0"
TK-TarunW/ecosystem
kafka_2.11-0.10.1.0/zookeeper-start.bat
bat
apache-2.0
98
@echo off cls setlocal :: save directories (launch/current) set ldir=%~dp0 set cdir=%CD% :: find the compiler for /f "delims=" %%a in ( 'where devenv.exe' ) do @set cc=%%a :: check for the compiler if [%cc] == [] GOTO nocc :: find project file if not exist %ldir%\VERSION goto nodir :: ensure out-of-source build directory if not exist %ldir%\build ( md %ldir%\build ) :: goto and cleean the build directory cd %ldir%\build :: clean up any old data for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s /q || del "%%i" /s /q) :: run cmake cmake -Wno-dev .. :: check return code if not errorlevel 0 goto failure :: check that the solution file was created if not exist %ldir%\build\tnsutil.sln goto nodir :: compile Release devenv tnsutil.sln /Build Release :: check return code if not errorlevel 0 goto falied :: compile Debug :: devenv tnsutil.sln /Build Debug :: check return code if not errorlevel 0 goto falied :: all done goto end :nodir echo Could not find project file %ldir%\VERSION goto end :nocc echo Could not find the Visual Studio compiler (devenv.exe) in the path goto end :failure echo Cmake out-of-source build failed goto end :falied echo Solution falied to build goto end :end cd %cdir% :: end of batch
nvanwyen/tnsutil
configure.bat
bat
bsd-3-clause
1,312
npm --prefix scr-app\ run build firebase use production firebase deploy firebase use default
tlatoza/SeeCodeRun
deploySCR.bat
bat
mit
92
@ECHO OFF if "%ELF_USER%"=="" goto usage if "%ELF_IP%"=="" goto usage if "%ELF_PRIVATE_KEY_NAME%"=="" goto usage if "%ELF_PRIVATE_KEY_DIR%"=="" goto usage ECHO Your set up looks good. ECHO ELF_USER=%ELF_USER% ECHO ELF_IP=%ELF_IP% ECHO ELF_PRIVATE_KEY_NAME=%ELF_PRIVATE_KEY_NAME% ECHO ELF_PRIVATE_KEY_DIR=%ELF_PRIVATE_KEY_DIR% goto :eof :usage ECHO ============================================= ECHO ====== Batch Files in This Directory ======== ECHO ============================================= ECHO Some of the scripts in this folder expect ECHO two environment variables on your system ECHO to be set. They are called ELF_USER and ECHO ELF_IP. ECHO --------------------------------------------- ECHO Before you run this script, set ELF_USER ECHO and ELF_IP. Your ELF_IP might be your ECHO elastic ip if you are using EC2. Otherwise ECHO it is probably the IP of your remote system. ECHO --------------------------------------------- ECHO You can set ELF_USER and ELF_IP by using the ECHO ENVIRONMENT VARIABLES dialog. To get to ECHO that dialog: ECHO Control Panel\System and Security\System ECHO Advanced System Settings\Environment Vars ECHO --------------------------------------------- ECHO Alternatively you can set them temporarily ECHO at the command prompt like this: ECHO set ELF_USER=MyUserName ECHO set ELF_IP=MyRemoteIp ECHO set ELF_PRIVATE_KEY_DIR=MyPrivateKeyDirectory ECHO set ELF_PRIVATE_KEY_NAME=FileNameOfPrivateKey ECHO For instance: ECHO set ELF_USER=charlie ECHO set ELF_IP=192.168.2.3 ECHO set ELF_PRIVATE_KEY_NAME=CharlieMainKey.pem ECHO SET ELF_PRIVATE_KEY_DIR=C:\Users\charles.calvert\documents\Data\Putty\ ECHO =============================================
donlee888/JsObjects
Utilities/ClonePrivateRepository/TestSetup.bat
bat
mit
1,713