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 start "" "c:\program files (x86)\microsoft lync\communicator.exe" ^& exit exit
kubow/HAC
Links/Batch/Lync.bat
bat
unlicense
89
@echo off SETLOCAL enabledelayedexpansion TITLE Elasticsearch Service ${project.version} if NOT DEFINED JAVA_HOME goto err if not "%CONF_FILE%" == "" goto conffileset set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI rem Detect JVM version to figure out appropriate executable to use if not exist "%JAVA_HOME%\bin\java.exe" ( echo JAVA_HOME points to an invalid Java installation (no java.exe found in "%JAVA_HOME%"^). Exiting... goto:eof ) "%JAVA_HOME%\bin\java" -Xmx50M -version > nul 2>&1 if errorlevel 1 ( echo Warning: Could not start JVM to detect version, defaulting to x86: goto x86 ) "%JAVA_HOME%\bin\java" -Xmx50M -version 2>&1 | "%windir%\System32\find" "64-Bit" >nul: if errorlevel 1 goto x86 set EXECUTABLE=%ES_HOME%\bin\elasticsearch-service-x64.exe set SERVICE_ID=elasticsearch-service-x64 set ARCH=64-bit goto checkExe :x86 set EXECUTABLE=%ES_HOME%\bin\elasticsearch-service-x86.exe set SERVICE_ID=elasticsearch-service-x86 set ARCH=32-bit :checkExe if EXIST "%EXECUTABLE%" goto okExe echo elasticsearch-service-(x86|x64).exe was not found... :okExe set ES_VERSION=${project.version} if "%LOG_DIR%" == "" set LOG_DIR=%ES_HOME%\logs if "x%1x" == "xx" goto displayUsage set SERVICE_CMD=%1 shift if "x%1x" == "xx" goto checkServiceCmd set SERVICE_ID=%1 :checkServiceCmd if "%LOG_OPTS%" == "" set LOG_OPTS=--LogPath "%LOG_DIR%" --LogPrefix "%SERVICE_ID%" --StdError auto --StdOutput auto if /i %SERVICE_CMD% == install goto doInstall if /i %SERVICE_CMD% == remove goto doRemove if /i %SERVICE_CMD% == start goto doStart if /i %SERVICE_CMD% == stop goto doStop if /i %SERVICE_CMD% == manager goto doManagment echo Unknown option "%SERVICE_CMD%" :displayUsage echo. echo Usage: service.bat install^|remove^|start^|stop^|manager [SERVICE_ID] goto:eof :doStart "%EXECUTABLE%" //ES//%SERVICE_ID% %LOG_OPTS% if not errorlevel 1 goto started echo Failed starting '%SERVICE_ID%' service goto:eof :started echo The service '%SERVICE_ID%' has been started goto:eof :doStop "%EXECUTABLE%" //SS//%SERVICE_ID% %LOG_OPTS% if not errorlevel 1 goto stopped echo Failed stopping '%SERVICE_ID%' service goto:eof :stopped echo The service '%SERVICE_ID%' has been stopped goto:eof :doManagment set EXECUTABLE_MGR=%ES_HOME%\bin\elasticsearch-service-mgr.exe "%EXECUTABLE_MGR%" //ES//%SERVICE_ID% if not errorlevel 1 goto managed echo Failed starting service manager for '%SERVICE_ID%' goto:eof :managed echo Successfully started service manager for '%SERVICE_ID%'. goto:eof :doRemove rem Remove the service "%EXECUTABLE%" //DS//%SERVICE_ID% %LOG_OPTS% if not errorlevel 1 goto removed echo Failed removing '%SERVICE_ID%' service goto:eof :removed echo The service '%SERVICE_ID%' has been removed goto:eof :doInstall echo Installing service : "%SERVICE_ID%" echo Using JAVA_HOME (%ARCH%): "%JAVA_HOME%" rem Check JVM server dll first if exist "%JAVA_HOME%"\jre\bin\server\jvm.dll ( set JVM_DLL=\jre\bin\server\jvm.dll goto foundJVM ) rem Check 'server' JRE (JRE installed on Windows Server) if exist "%JAVA_HOME%"\bin\server\jvm.dll ( set JVM_DLL=\bin\server\jvm.dll goto foundJVM ) rem Fallback to 'client' JRE if exist "%JAVA_HOME%"\bin\client\jvm.dll ( set JVM_DLL=\bin\client\jvm.dll echo Warning: JAVA_HOME points to a JRE and not JDK installation; a client (not a server^) JVM will be used... ) else ( echo JAVA_HOME points to an invalid Java installation (no jvm.dll found in "%JAVA_HOME%"^). Exiting... goto:eof ) :foundJVM if "%ES_MIN_MEM%" == "" set ES_MIN_MEM=${packaging.elasticsearch.heap.min} if "%ES_MAX_MEM%" == "" set ES_MAX_MEM=${packaging.elasticsearch.heap.max} if NOT "%ES_HEAP_SIZE%" == "" set ES_MIN_MEM=%ES_HEAP_SIZE% if NOT "%ES_HEAP_SIZE%" == "" set ES_MAX_MEM=%ES_HEAP_SIZE% call:convertxm %ES_MIN_MEM% JVM_XMS call:convertxm %ES_MAX_MEM% JVM_XMX REM java_opts might be empty - init to avoid tripping commons daemon (if the command starts with ;) if "%JAVA_OPTS%" == "" set JAVA_OPTS=-XX:+UseParNewGC CALL "%ES_HOME%\bin\elasticsearch.in.bat" rem thread stack size set JVM_SS=256 if "%DATA_DIR%" == "" set DATA_DIR=%ES_HOME%\data if "%CONF_DIR%" == "" set CONF_DIR=%ES_HOME%\config set ES_PARAMS=-Delasticsearch;-Des.path.home="%ES_HOME%";-Des.default.path.home="%ES_HOME%";-Des.default.path.logs="%LOG_DIR%";-Des.default.path.data="%DATA_DIR%";-Des.default.path.conf="%CONF_DIR%" set JVM_OPTS=%JAVA_OPTS: =;% if not "%ES_JAVA_OPTS%" == "" set JVM_ES_JAVA_OPTS=%ES_JAVA_OPTS: =#% if not "%ES_JAVA_OPTS%" == "" set JVM_OPTS=%JVM_OPTS%;%JVM_ES_JAVA_OPTS% if "%ES_START_TYPE%" == "" set ES_START_TYPE=manual if "%ES_STOP_TIMEOUT%" == "" set ES_STOP_TIMEOUT=0 "%EXECUTABLE%" //IS//%SERVICE_ID% --Startup %ES_START_TYPE% --StopTimeout %ES_STOP_TIMEOUT% --StartClass org.elasticsearch.bootstrap.Elasticsearch --StopClass org.elasticsearch.bootstrap.Elasticsearch --StartMethod main --StopMethod close --Classpath "%ES_CLASSPATH%" --JvmSs %JVM_SS% --JvmMs %JVM_XMS% --JvmMx %JVM_XMX% --JvmOptions %JVM_OPTS% ++JvmOptions %ES_PARAMS% %LOG_OPTS% --PidFile "%SERVICE_ID%.pid" --DisplayName "Elasticsearch %ES_VERSION% (%SERVICE_ID%)" --Description "Elasticsearch %ES_VERSION% Windows Service - http://elasticsearch.org" --Jvm "%%JAVA_HOME%%%JVM_DLL%" --StartMode jvm --StopMode jvm --StartPath "%ES_HOME%" ++StartParams start if not errorlevel 1 goto installed echo Failed installing '%SERVICE_ID%' service goto:eof :installed echo The service '%SERVICE_ID%' has been installed. goto:eof :err echo JAVA_HOME environment variable must be set! pause goto:eof rem --- rem Function for converting Xm[s|x] values into MB which Commons Daemon accepts rem --- :convertxm set value=%~1 rem extract last char (unit) set unit=%value:~-1% rem assume the unit is specified set conv=%value:~0,-1% if "%unit%" == "k" goto kilo if "%unit%" == "K" goto kilo if "%unit%" == "m" goto mega if "%unit%" == "M" goto mega if "%unit%" == "g" goto giga if "%unit%" == "G" goto giga rem no unit found, must be bytes; consider the whole value set conv=%value% rem convert to KB set /a conv=%conv% / 1024 :kilo rem convert to MB set /a conv=%conv% / 1024 goto mega :giga rem convert to MB set /a conv=%conv% * 1024 :mega set "%~2=%conv%" goto:eof :conffileset echo CONF_FILE setting is no longer supported. elasticsearch.yml must be placed in the config directory and cannot be renamed. goto:eof ENDLOCAL
Kamapcuc/elasticsearch
distribution/src/main/resources/bin/service.bat
bat
apache-2.0
6,374
@echo off rem Wait for just long enough for the async-it.cmd script to start up and emit its verify message rem Can't use Windows timeout command as it throws ERROR: Input redirection is not supported, exiting the process immediately. rem timeout 1 /nobreak > nul waitfor /T 2 xxx > nul echo post-async-it
mojohaus/exec-maven-plugin
src/it/projects/async/src/main/scripts/post-async-it.cmd
bat
apache-2.0
312
@echo off setlocal REM Copyright 2006-2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific REM language governing permissions and limitations under the License. REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%EC2_HOME% if %CHK_HOME% == "_" goto HOME_MISSING "%EC2_HOME:"=%\bin\ec2-cmd" DescribeAvailabilityZones %* goto DONE :HOME_MISSING echo EC2_HOME is not set exit /b 1 :DONE
sujoyg/tool
vendor/ec2-api-tools-1.4.2.2/bin/ec2daz.cmd
bat
mit
1,042
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCPRPT.S05_RopCopyToWantAsynchronously_TestSuite.MSOXCPRPT_S05_RopCopyToWantAsynchronously_TestSuite /testcontainer:..\..\MS-OXCPRPT\TestSuite\bin\Debug\MS-OXCPRPT_TestSuite.dll /runconfig:..\..\MS-OXCPRPT\MS-OXCPRPT.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeMAPI/Source/Scripts/MS-OXCPRPT/RunMSOXCPRPT_S05_RopCopyToWantAsynchronously_TestSuite.cmd
bat
mit
338
chcp 65001 scripts/build ^ production ^ /
maxim-kuzmin/Makc2017
src/Makc2017.Apps.React/cmd/build.prod.iisexpress.cmd
bat
mit
41
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\alias.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\alias.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
roberto-lagreca/alias
docs/make.bat
bat
gpl-2.0
7,251
cmd_lib/parser.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,lib/.parser.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(parser)" -D"KBUILD_MODNAME=KBUILD_STR(parser)" -c -o lib/parser.o lib/parser.c deps_lib/parser.o := \ lib/parser.c \ include/linux/ctype.h \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/sysfs.h) \ include/linux/spinlock.h \ $(wildcard include/config/smp.h) \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ include/linux/thread_info.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ include/linux/compiler-gcc4.h \ $(wildcard include/config/forced/inlining.h) \ include/linux/compiler-gcc.h \ include/asm/posix_types.h \ include/asm/sgidefs.h \ include/asm/types.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/64bit/phys/addr.h) \ $(wildcard include/config/64bit.h) \ include/linux/bitops.h \ include/asm/bitops.h \ $(wildcard include/config/cpu/mipsr2.h) \ $(wildcard include/config/cpu/mips32.h) \ $(wildcard include/config/cpu/mips64.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/mips/mt/smtc.h) \ $(wildcard include/config/irq/cpu.h) \ $(wildcard include/config/mips/mt/smtc/instant/replay.h) \ include/asm/hazards.h \ $(wildcard include/config/cpu/r10000.h) \ $(wildcard include/config/cpu/rm9000.h) \ $(wildcard include/config/cpu/sb1.h) \ include/asm/barrier.h \ $(wildcard include/config/cpu/has/sync.h) \ $(wildcard include/config/cpu/has/wb.h) \ $(wildcard include/config/weak/ordering.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ include/asm/break.h \ include/asm-generic/bug.h \ $(wildcard include/config/debug/bugverbose.h) \ include/asm/byteorder.h \ $(wildcard include/config/cpu/mips64/r2.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm/cpu-features.h \ $(wildcard include/config/32bit.h) \ $(wildcard include/config/cpu/mipsr2/irq/vi.h) \ $(wildcard include/config/cpu/mipsr2/irq/ei.h) \ include/asm/cpu.h \ include/asm/cpu-info.h \ $(wildcard include/config/sgi/ip27.h) \ $(wildcard include/config/mips/mt.h) \ include/asm/cache.h \ $(wildcard include/config/mips/l1/cache/shift.h) \ include/asm-mips/mach-generic/kmalloc.h \ $(wildcard include/config/dma/coherent.h) \ include/asm-mips/mach-generic/cpu-feature-overrides.h \ include/asm/war.h \ $(wildcard include/config/sgi/ip22.h) \ $(wildcard include/config/sni/rm.h) \ $(wildcard include/config/cpu/r5432.h) \ $(wildcard include/config/sb1/pass/1/workarounds.h) \ $(wildcard include/config/sb1/pass/2/workarounds.h) \ $(wildcard include/config/mips/malta.h) \ $(wildcard include/config/mips/atlas.h) \ $(wildcard include/config/mips/sead.h) \ $(wildcard include/config/cpu/tx49xx.h) \ $(wildcard include/config/momenco/jaguar/atx.h) \ $(wildcard include/config/pmc/yosemite.h) \ $(wildcard include/config/basler/excite.h) \ $(wildcard include/config/momenco/ocelot/3.h) \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ffz.h \ include/asm-generic/bitops/find.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm-generic/bitops/ext2-atomic.h \ include/asm-generic/bitops/minix.h \ include/asm/thread_info.h \ $(wildcard include/config/page/size/4kb.h) \ $(wildcard include/config/page/size/8kb.h) \ $(wildcard include/config/page/size/16kb.h) \ $(wildcard include/config/page/size/64kb.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/processor.h \ $(wildcard include/config/mips/mt/fpaff.h) \ $(wildcard include/config/cpu/has/prefetch.h) \ include/linux/cpumask.h \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/bitmap.h \ include/linux/string.h \ include/asm/string.h \ $(wildcard include/config/cpu/r3000.h) \ include/asm/cachectl.h \ include/asm/mipsregs.h \ $(wildcard include/config/cpu/vr41xx.h) \ include/asm/prefetch.h \ include/asm/system.h \ include/asm/addrspace.h \ $(wildcard include/config/cpu/r4300.h) \ $(wildcard include/config/cpu/r4x00.h) \ $(wildcard include/config/cpu/r5000.h) \ $(wildcard include/config/cpu/rm7000.h) \ $(wildcard include/config/cpu/nevada.h) \ $(wildcard include/config/cpu/r8000.h) \ $(wildcard include/config/cpu/sb1a.h) \ include/asm-mips/mach-generic/spaces.h \ $(wildcard include/config/dma/noncoherent.h) \ include/asm/dsp.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/linux/spinlock_types_up.h \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.h \ include/linux/seqlock.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ include/linux/errno.h \ include/asm/errno.h \ include/asm-generic/errno-base.h \ include/linux/elf.h \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/linux/elf-em.h \ include/asm/elf.h \ $(wildcard include/config/mips32/n32.h) \ $(wildcard include/config/mips32/o32.h) \ $(wildcard include/config/mips32/compat.h) \ include/linux/kobject.h \ $(wildcard include/config/hotplug.h) \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/wait.h \ include/asm/current.h \ include/linux/moduleparam.h \ include/linux/init.h \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/acpi/hotplug/memory.h) \ include/asm/local.h \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/asm/page.h \ $(wildcard include/config/build/elf64.h) \ $(wildcard include/config/limited/dma.h) \ include/linux/pfn.h \ include/asm/io.h \ include/asm-generic/iomap.h \ include/asm/pgtable-bits.h \ $(wildcard include/config/cpu/mips32/r1.h) \ $(wildcard include/config/cpu/tx39xx.h) \ $(wildcard include/config/mips/uncached.h) \ include/asm-mips/mach-generic/ioremap.h \ include/asm-mips/mach-generic/mangle-port.h \ $(wildcard include/config/swap/io/space.h) \ include/asm-generic/memory_model.h \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/smp.h \ include/asm/topology.h \ include/asm-mips/mach-generic/topology.h \ include/asm-generic/topology.h \ include/linux/slub_def.h \ include/linux/workqueue.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/calc64.h \ include/asm/div64.h \ include/asm-generic/div64.h \ include/linux/timex.h \ $(wildcard include/config/time/interpolation.h) \ $(wildcard include/config/no/hz.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/asm/timex.h \ include/asm-mips/mach-generic/timex.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ include/asm/module.h \ $(wildcard include/config/cpu/mips32/r2.h) \ $(wildcard include/config/cpu/mips64/r1.h) \ $(wildcard include/config/cpu/r6000.h) \ include/asm/uaccess.h \ include/asm-generic/uaccess.h \ include/linux/parser.h \ lib/parser.o: $(deps_lib/parser.o) $(deps_lib/parser.o):
smx-smx/dsl-n55u-bender
release/src-ra/linux/linux-2.6.21.x/lib/.parser.o.cmd
bat
gpl-2.0
11,813
update_me.exe
patel344/Mr.Miner
Mr.Mining/MikeTheMiner/dist/Santas_helpers/update_miner.bat
bat
gpl-3.0
13
call mvn clean:clean call mvn eclipse:clean call mvn eclipse:eclipse call mvn -Dmaven.test.skip=true package -U -Pdeploy @pause
liqilun/iticket
package.bat
bat
apache-2.0
131
python d:\workspace\nbconvert\nbconvert.py -f latex recitation1.ipynb pandoc recitation1.tex -o recitation1.pdf -s -S
hrayatnia/SciPy
ipython gallery/CS1001.py-master/knit.bat
bat
bsd-3-clause
118
cmd_net/ipv6/ipv6_sockglue.o := gcc -Wp,-MD,net/ipv6/.ipv6_sockglue.o.d -nostdinc -iwithprefix include -D__KERNEL__ -Iinclude -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -pipe -msoft-float -mpreferred-stack-boundary=2 -march=i686 -Iinclude/asm-i386/mach-default -DKBUILD_BASENAME=ipv6_sockglue -DKBUILD_MODNAME=ipv6 -c -o net/ipv6/ipv6_sockglue.o net/ipv6/ipv6_sockglue.c deps_net/ipv6/ipv6_sockglue.o := \ net/ipv6/ipv6_sockglue.c \ $(wildcard include/config/netfilter.h) \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ include/linux/config.h \ $(wildcard include/config/h.h) \ include/linux/sched.h \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/preempt.h) \ include/asm/param.h \ include/linux/capability.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ include/linux/compiler-gcc2.h \ include/linux/compiler-gcc.h \ include/asm/posix_types.h \ include/asm/types.h \ $(wildcard include/config/highmem64g.h) \ $(wildcard include/config/lbd.h) \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/lockmeter.h) \ include/linux/preempt.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/regparm.h) \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/thread_info.h \ include/linux/bitops.h \ include/asm/bitops.h \ include/asm/thread_info.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ $(wildcard include/config/x86/use/3dnow.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/discontigmem.h) \ include/asm/processor.h \ $(wildcard include/config/mk8.h) \ $(wildcard include/config/mk7.h) \ include/asm/vm86.h \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/segment.h \ include/asm/cpufeature.h \ include/asm/msr.h \ include/asm/system.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/oostore.h) \ include/linux/kernel.h \ $(wildcard include/config/debug/spinlock/sleep.h) \ /usr/lib/gcc-lib/i386-linux/2.95.4/include/stdarg.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm/bug.h \ include/asm-generic/bug.h \ include/linux/cache.h \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/stringify.h \ include/asm/spinlock.h \ $(wildcard include/config/x86/ppro/fence.h) \ include/asm/atomic.h \ include/asm/rwlock.h \ include/linux/timex.h \ $(wildcard include/config/time/interpolation.h) \ include/asm/timex.h \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/x86/tsc.h) \ $(wildcard include/config/x86/generic.h) \ include/linux/time.h \ include/linux/seqlock.h \ include/asm/div64.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/cpumask.h \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/string.h \ include/asm/string.h \ include/asm/semaphore.h \ include/linux/wait.h \ include/linux/list.h \ include/linux/prefetch.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/asm/ptrace.h \ $(wildcard include/config/frame/pointer.h) \ include/asm/mmu.h \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ include/asm/fixmap.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/acpi/boot.h) \ $(wildcard include/config/pci/mmconfig.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/pci.h) \ $(wildcard include/config/acpi/sleep.h) \ include/asm/apicdef.h \ include/asm/mpspec.h \ include/asm/mpspec_def.h \ include/asm-i386/mach-default/mach_mpspec.h \ include/asm/io_apic.h \ $(wildcard include/config/pci/msi.h) \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ include/asm-i386/mach-default/mach_apicdef.h \ include/linux/sem.h \ $(wildcard include/config/sysvipc.h) \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/resource.h \ include/asm/resource.h \ include/linux/securebits.h \ include/linux/fs_struct.h \ include/linux/completion.h \ include/linux/pid.h \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/.h) \ include/linux/gfp.h \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ include/linux/numa.h \ include/linux/topology.h \ include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/kmalloc_sizes.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/large/allocs.h) \ include/linux/param.h \ include/linux/timer.h \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/asm/current.h \ include/linux/stat.h \ include/asm/stat.h \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ $(wildcard include/config/hotplug.h) \ include/linux/errno.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/elf.h \ include/asm/elf.h \ include/asm/user.h \ include/linux/utsname.h \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kref.h \ include/linux/moduleparam.h \ include/linux/init.h \ include/asm/local.h \ include/asm/module.h \ $(wildcard include/config/m386.h) \ $(wildcard include/config/m486.h) \ $(wildcard include/config/m586.h) \ $(wildcard include/config/m586tsc.h) \ $(wildcard include/config/m586mmx.h) \ $(wildcard include/config/m686.h) \ $(wildcard include/config/mpentiumii.h) \ $(wildcard include/config/mpentiumiii.h) \ $(wildcard include/config/mpentiumm.h) \ $(wildcard include/config/mpentium4.h) \ $(wildcard include/config/mk6.h) \ $(wildcard include/config/mcrusoe.h) \ $(wildcard include/config/mwinchipc6.h) \ $(wildcard include/config/mwinchip2.h) \ $(wildcard include/config/mwinchip3d.h) \ $(wildcard include/config/mcyrixiii.h) \ $(wildcard include/config/mviac3/2.h) \ include/linux/socket.h \ $(wildcard include/config/compat.h) \ include/asm/socket.h \ include/asm/sockios.h \ include/linux/sockios.h \ include/linux/uio.h \ include/linux/net.h \ include/linux/in6.h \ include/linux/netdevice.h \ $(wildcard include/config/ax25.h) \ $(wildcard include/config/ax25/module.h) \ $(wildcard include/config/tr.h) \ $(wildcard include/config/net/ipip.h) \ $(wildcard include/config/ipv6.h) \ $(wildcard include/config/ipv6/module.h) \ $(wildcard include/config/netpoll.h) \ $(wildcard include/config/net/poll/controller.h) \ $(wildcard include/config/net/divert.h) \ $(wildcard include/config/netpoll/trap.h) \ $(wildcard include/config/sysctl.h) \ include/linux/if.h \ include/linux/hdlc/ioctl.h \ include/linux/if_ether.h \ include/linux/skbuff.h \ $(wildcard include/config/bridge/netfilter.h) \ $(wildcard include/config/vlan/8021q.h) \ $(wildcard include/config/vlan/8021q/module.h) \ $(wildcard include/config/netfilter/debug.h) \ $(wildcard include/config/hippi.h) \ $(wildcard include/config/net/sched.h) \ $(wildcard include/config/net/cls/act.h) \ include/linux/mm.h \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/arch/gate/area.h) \ include/linux/prio_tree.h \ include/linux/fs.h \ $(wildcard include/config/quota.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/auditsyscall.h) \ include/linux/limits.h \ include/linux/kdev_t.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/linux/dcache.h \ include/linux/rcupdate.h \ include/linux/radix-tree.h \ include/linux/audit.h \ $(wildcard include/config/audit.h) \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/linux/err.h \ include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm/pgtable-2level-defs.h \ include/asm/pgtable-2level.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/swap.h) \ include/linux/highmem.h \ include/asm/cacheflush.h \ include/linux/poll.h \ include/asm/poll.h \ include/asm/uaccess.h \ $(wildcard include/config/x86/intel/usercopy.h) \ $(wildcard include/config/x86/wp/works/ok.h) \ include/net/checksum.h \ include/asm/checksum.h \ include/linux/if_packet.h \ include/linux/device.h \ include/linux/ioport.h \ include/linux/interrupt.h \ include/linux/hardirq.h \ include/linux/smp_lock.h \ include/asm/hardirq.h \ include/linux/irq.h \ $(wildcard include/config/arch/s390.h) \ include/asm/irq.h \ include/asm-i386/mach-default/irq_vectors.h \ include/asm-i386/mach-default/irq_vectors_limits.h \ include/asm/hw_irq.h \ include/linux/profile.h \ $(wildcard include/config/profiling.h) \ include/asm/sections.h \ include/asm-generic/sections.h \ include/linux/irq_cpustat.h \ include/linux/notifier.h \ include/linux/if_arp.h \ include/linux/sysctl.h \ include/linux/netfilter.h \ include/net/sock.h \ include/linux/security.h \ $(wildcard include/config/security/network.h) \ include/linux/binfmts.h \ include/linux/shm.h \ include/asm/shmparam.h \ include/asm/shmbuf.h \ include/linux/msg.h \ include/asm/msgbuf.h \ include/linux/netlink.h \ include/linux/filter.h \ include/net/dst.h \ $(wildcard include/config/net/cls/route.h) \ $(wildcard include/config/xfrm.h) \ include/linux/rtnetlink.h \ include/net/neighbour.h \ include/linux/seq_file.h \ include/net/snmp.h \ include/linux/snmp.h \ include/net/ipv6.h \ include/linux/ipv6.h \ $(wildcard include/config/ipv6/privacy.h) \ include/linux/icmpv6.h \ include/net/if_inet6.h \ include/linux/tcp.h \ include/linux/ip.h \ include/linux/igmp.h \ include/linux/in.h \ include/net/flow.h \ include/linux/udp.h \ include/net/ndisc.h \ include/net/protocol.h \ include/net/transp_v6.h \ include/net/ip6_route.h \ include/net/ip6_fib.h \ include/linux/ipv6_route.h \ include/net/addrconf.h \ include/net/inet_common.h \ include/net/tcp.h \ include/net/ip.h \ $(wildcard include/config/inet.h) \ include/linux/inetdevice.h \ include/linux/in_route.h \ include/net/route.h \ include/net/inetpeer.h \ include/linux/route.h \ include/net/arp.h \ include/net/tcp_ecn.h \ include/net/inet_ecn.h \ include/net/dsfield.h \ include/net/udp.h \ include/net/xfrm.h \ include/linux/xfrm.h \ include/linux/crypto.h \ $(wildcard include/config/crypto/hmac.h) \ include/linux/pfkeyv2.h \ net/ipv6/ipv6_sockglue.o: $(deps_net/ipv6/ipv6_sockglue.o) $(deps_net/ipv6/ipv6_sockglue.o):
binhqnguyen/lena
nsc/linux-2.6/net/ipv6/.ipv6_sockglue.o.cmd
bat
gpl-2.0
12,553
@echo off bash sh\clean.sh
osgcc/ryzom
nel/tools/3d/build_gamedata/1_clean.bat
bat
agpl-3.0
31
java -jar jbpt-pm-entropia-1.6.jar --help pause
jbpt/codebase
jbpt-pm/target/help.bat
bat
lgpl-3.0
48
rem --------------------------------------------------------------------------- rem Set CLASSPATH and Java options rem rem $Id: setclasspath.bat 545668 2007-06-09 00:18:22Z markt $ rem --------------------------------------------------------------------------- rem Make sure prerequisite environment variables are set if not "%JAVA_HOME%" == "" goto gotJdkHome if not "%JRE_HOME%" == "" goto gotJreHome echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined echo At least one of these environment variable is needed to run this program goto exit :gotJreHome if not exist "%JRE_HOME%\bin\java.exe" goto noJavaHome if not exist "%JRE_HOME%\bin\javaw.exe" goto noJavaHome if not ""%1"" == ""debug"" goto okJavaHome echo JAVA_HOME should point to a JDK in order to run in debug mode. goto exit :gotJdkHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome if not exist "%JAVA_HOME%\bin\javaw.exe" goto noJavaHome if not exist "%JAVA_HOME%\bin\jdb.exe" goto noJavaHome if not exist "%JAVA_HOME%\bin\javac.exe" goto noJavaHome if not "%JRE_HOME%" == "" goto okJavaHome set JRE_HOME=%JAVA_HOME% goto okJavaHome :noJavaHome echo The JAVA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program echo NB: JAVA_HOME should point to a JDK not a JRE goto exit :okJavaHome if not "%BASEDIR%" == "" goto gotBasedir echo The BASEDIR environment variable is not defined echo This environment variable is needed to run this program goto exit :gotBasedir if exist "%BASEDIR%\bin\setclasspath.bat" goto okBasedir echo The BASEDIR environment variable is not defined correctly echo This environment variable is needed to run this program goto exit :okBasedir rem Set the default -Djava.endorsed.dirs argument set JAVA_ENDORSED_DIRS=%BASEDIR%\endorsed rem Set standard CLASSPATH rem Note that there are no quotes as we do not want to introduce random rem quotes into the CLASSPATH if not exist "%JAVA_HOME%\lib\tools.jar" goto noJavac set CLASSPATH=%JAVA_HOME%\lib\tools.jar :noJavac rem Set standard command for invoking Java. rem Note that NT requires a window name argument when using start. rem Also note the quoting as JAVA_HOME may contain spaces. set _RUNJAVA="%JRE_HOME%\bin\java" set _RUNJAVAW="%JRE_HOME%\bin\javaw" set _RUNJDB="%JAVA_HOME%\bin\jdb" set _RUNJAVAC="%JAVA_HOME%\bin\javac" goto end :exit exit /b 1 :end
nologic/nabs
client/trunk/Consoles/RemoteGate/tomcat/apache-tomcat-6.0.14/bin/setclasspath.bat
bat
gpl-2.0
2,471
RESTART 3600 WRITE_CONFIG config FINISH
polymer1/simpatico
examples/diblock/N32/md/restart.cmd
bat
gpl-3.0
56
@echo off rem This is waf.bat from https://github.com/waf-project/waf/blob/master/utils/waf.bat rem from issue #964 Setlocal EnableDelayedExpansion rem Check Windows Version set TOKEN=tokens=3* ver | findstr /i "5\.0\." > nul if %ERRORLEVEL% EQU 0 SET TOKEN=tokens=3* ver | findstr /i "5\.1\." > nul if %ERRORLEVEL% EQU 0 SET TOKEN=tokens=3* ver | findstr /i "5\.2\." > nul if %ERRORLEVEL% EQU 0 SET TOKEN=tokens=3* ver | findstr /i "6\.0\." > nul if %ERRORLEVEL% EQU 0 SET TOKEN=tokens=2* ver | findstr /i "6\.1\." > nul if %ERRORLEVEL% EQU 0 SET TOKEN=tokens=2* rem Start calculating PYTHON and PYTHON_DIR set PYTHON= set PYTHON_DIR= Setlocal EnableDelayedExpansion set PYTHON_DIR_OK=FALSE set REGPATH= for %%i in (3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.7 2.6 2.5) do ( for %%j in (HKCU HKLM) do ( for %%k in (SOFTWARE\Wow6432Node SOFTWARE) do ( for %%l in (Python\PythonCore IronPython) do ( set REG_PYTHON_EXE=python.exe if "%%l"=="IronPython" ( set REG_PYTHON_EXE=ipy.exe ) @echo on set REGPATH=%%j\%%k\%%l\%%i\InstallPath rem @echo Regpath !REGPATH! REG QUERY "!REGPATH!" /ve 1>nul 2>nul if !ERRORLEVEL! equ 0 ( for /F "%TOKEN% delims= " %%A IN ('REG QUERY "!REGPATH!" /ve') do @set REG_PYTHON_DIR=%%B if exist !REG_PYTHON_DIR! ( IF NOT "!REG_PYTHON_DIR:~-1!"=="\" SET REG_PYTHON_DIR=!REG_PYTHON_DIR!\ set REG_PYTHON=!REG_PYTHON_DIR!!REG_PYTHON_EXE! rem set PYTHON_DIR_OK=TRUE if "!PYTHON_DIR_OK!"=="FALSE" ( set PYTHON_DIR=!REG_PYTHON_DIR! set PYTHON=!REG_PYTHON! set PYTHON_DIR_OK=TRUE ) rem set PYTHON_DIR_OK=FALSE rem @echo Find !REG_PYTHON! rem goto finished ) ) echo off ) rem for l ) rem for k ) rem for j ) rem for i :finished Endlocal & SET PYTHON_DIR=%PYTHON_DIR% & SET PYTHON=%PYTHON% if "%PYTHON_DIR%" == "" ( rem @echo No Python dir set PYTHON=python goto running ) rem @echo %PYTHON_DIR% if "%PYTHON%" == "" ( rem @echo No Python set PYTHON=python goto running ) :running rem @echo Using %PYTHON% "%PYTHON%" -x "%~dp0waf" %* & Endlocal & exit /b %ERRORLEVEL%
Perelandric/ponyc
make.bat
bat
bsd-2-clause
2,064
@echo off REM build a pyzmq release on Windows REM 32+64b eggs on Python 27, and wheels on 27, 34 REM that's 6 bdists REM requires Windows SDK 7.0 (for py2) and 7.1 (for py3) REM and Python installed in the locations: C:\Python34 (32b) and C:\Python34_64 (64b) REM run with cmd /k $PWD/tools/release_windows.bat setlocal EnableDelayedExpansion set SDKS=C:\Program Files\Microsoft SDKs\Windows set SDK7=%SDKS%\v7.0 set SDK71=%SDKS%\v7.1 set DISTUTILS_USE_SDK=1 set UPLOAD=%~1 set PYROOT=C:\ for %%p in (35, 34, 27) do ( if "%%p"=="27" ( set SDK=%SDK7% set cmd=build bdist_egg bdist_wheel --zmq=bundled %UPLOAD% ) else ( set SDK=%SDK71% set cmd=build bdist_wheel --zmq=bundled %UPLOAD% ) for %%b in (64, 32) do ( if "%%b"=="64" ( set SUFFIX=_64 set ARCH=/x64 ) else ( set SUFFIX= set ARCH=/x86 ) set PY=%PYROOT%\Python%%p!SUFFIX!\Python echo !PY! !SDK! !PY! -m pip install --upgrade setuptools pip wheel @call "!SDK!\Bin\SetEnv.cmd" /release !ARCH! if !errorlevel! neq 0 exit /b !errorlevel! @echo on !PY! setup.py !cmd! @echo off if !errorlevel! neq 0 exit !errorlevel! ) ) exit
ArvinPan/pyzmq
tools/release_windows.bat
bat
bsd-3-clause
1,188
del %SystemDrive%\DisconnectAll.signal /F cmd /c schtasks /end /TN Negotiate_RDPConnect cmd /c schtasks /end /TN DirectCredSSP_RDPConnect cmd /c schtasks /end /TN DirectTls_RDPConnect cmd /c schtasks /end /TN TriggerNetworkFailure cmd /c schtasks /end /TN TriggerInputEvents cmd /c taskkill /F /IM mstsc.exe echo finished. > %SystemDrive%\DisconnectAll.signal
dongruiqing/WindowsProtocolTestSuites
TestSuites/RDP/Setup/Data/DisconnectAll.bat
bat
mit
365
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: :: :: This file is part of IfcOpenShell. :: :: :: :: IfcOpenShell is free software: you can redistribute it and/or modify :: :: it under the terms of the Lesser GNU General Public License as published by :: :: the Free Software Foundation, either version 3.0 of the License, or :: :: (at your option) any later version. :: :: :: :: IfcOpenShell is distributed in the hope that it will be useful, :: :: but WITHOUT ANY WARRANTY; without even the implied warranty of :: :: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the :: :: Lesser GNU General Public License for more details. :: :: :: :: You should have received a copy of the Lesser GNU General Public License :: :: along with this program. If not, see <http://www.gnu.org/licenses/>. :: :: :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: The first argument is assumed to be a CMake generator and it is passed for build-deps, run-cmake, build-ifcopenshell, :: and install-ifcopenshell. The second argument is assumed to be a build configuration type and it is passed for build-deps, :: build-ifcopenshell and install-ifcopenshell. The rest of the arguments are passed for run-cmake. :: Usage example for doing an optimized vs2015-x64 build with debug information and using IFC 4: :: > build-all.cmd vs2015-x64 RelWithDebInfo -DUSE_IFC4=1 -DENABLE_BUILD_OPTIMIZATIONS=1 @echo off setlocal EnableDelayedExpansion call vs-cfg.cmd %1 if not %ERRORLEVEL%==0 GOTO :Error :: Use "yes" trick to break the pause in build-deps.cmd echo y | call .\build-deps %1 %2 if not %ERRORLEVEL%==0 goto :EOF :: Same trick as in run-cmake.bat set ARGUMENTS=%* if not (%1)==() call set ARGUMENTS=%%ARGUMENTS:%1=%% if not (%2)==() call set ARGUMENTS=%%ARGUMENTS:%2=%% call .\run-cmake %1 %ARGUMENTS% if not %ERRORLEVEL%==0 goto :EOF call .\build-ifcopenshell %1 %2 ECHO %ERRORLEVEL% if not %ERRORLEVEL%==0 goto :EOF call .\install-ifcopenshell %1 %2
IfcOpenShell/IfcOpenShell
win/build-all.cmd
bat
lgpl-3.0
2,570
MEMORY { PAGE 0 : /* BEGIN is used for the "boot to SARAM" bootloader mode */ BEGIN : origin = 0x000000, length = 0x000002 RAMM0 : origin = 0x000122, length = 0x0002DE RAMD0 : origin = 0x00B000, length = 0x000800 RAMLS0 : origin = 0x008000, length = 0x000800 RAMLS1 : origin = 0x008800, length = 0x000800 RAMLS2 : origin = 0x009000, length = 0x000800 RAMLS3 : origin = 0x009800, length = 0x000800 RAMLS4 : origin = 0x00A000, length = 0x000800 RESET : origin = 0x3FFFC0, length = 0x000002 RAMGS0_2 : origin = 0x00C000, length = 0x003000 PAGE 1 : BOOT_RSVD : origin = 0x000002, length = 0x000120 /* Part of M0, BOOT rom will use this for stack */ RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */ RAMD1 : origin = 0x00B800, length = 0x000800 RAMLS5 : origin = 0x00A800, length = 0x000800 RAMGS3 : origin = 0x00F000, length = 0x001000 RAMGS4 : origin = 0x010000, length = 0x001000 RAMGS5 : origin = 0x011000, length = 0x001000 RAMGS6 : origin = 0x012000, length = 0x001000 RAMGS7 : origin = 0x013000, length = 0x001000 RAMGS8 : origin = 0x014000, length = 0x001000 RAMGS9 : origin = 0x015000, length = 0x001000 RAMGS10 : origin = 0x016000, length = 0x001000 RAMGS11 : origin = 0x017000, length = 0x001000 RAMGS12 : origin = 0x018000, length = 0x001000 /* Only Available on F28379D, F28377D, F28375D devices. Remove line on other devices. */ RAMGS13 : origin = 0x019000, length = 0x001000 /* Only Available on F28379D, F28377D, F28375D devices. Remove line on other devices. */ RAMGS14 : origin = 0x01A000, length = 0x001000 /* Only Available on F28379D, F28377D, F28375D devices. Remove line on other devices. */ RAMGS15 : origin = 0x01B000, length = 0x001000 /* Only Available on F28379D, F28377D, F28375D devices. Remove line on other devices. */ CANA_MSG_RAM : origin = 0x049000, length = 0x000800 CANB_MSG_RAM : origin = 0x04B000, length = 0x000800 CPU2TOCPU1RAM : origin = 0x03F800, length = 0x000400 CPU1TOCPU2RAM : origin = 0x03FC00, length = 0x000400 } SECTIONS { codestart : > BEGIN, PAGE = 0 .text : >>RAMGS0_2, PAGE = 0 .cinit : > RAMM0, PAGE = 0 .pinit : > RAMM0, PAGE = 0 .switch : > RAMM0, PAGE = 0 .reset : > RESET, PAGE = 0, TYPE = DSECT /* not used, */ .stack : > RAMM1, PAGE = 1 .ebss : > RAMLS5, PAGE = 1 .econst : > RAMLS5, PAGE = 1 .esysmem : > RAMLS5, PAGE = 1 #ifdef __TI_COMPILER_VERSION__ #if __TI_COMPILER_VERSION__ >= 15009000 .TI.ramfunc : {} > RAMM0, PAGE = 0 #else ramfuncs : > RAMM0 PAGE = 0 #endif #endif /* The following section definitions are required when using the IPC API Drivers */ GROUP : > CPU1TOCPU2RAM, PAGE = 1 { PUTBUFFER PUTWRITEIDX GETREADIDX } GROUP : > CPU2TOCPU1RAM, PAGE = 1 { GETBUFFER : TYPE = DSECT GETWRITEIDX : TYPE = DSECT PUTREADIDX : TYPE = DSECT } } /* //=========================================================================== // End of file. //=========================================================================== */
armink/rt-thread
bsp/tms320f28379d/libraries/common/cmd/2837xD_RAM_SWPrioritizedISR_lnk_cpu1.cmd
bat
apache-2.0
3,572
@echo off IF DEFINED JAVA_HOME ( set JAVA="%JAVA_HOME%\bin\java.exe" ) ELSE ( FOR %%I IN (java.exe) DO set JAVA=%%~$PATH:I ) IF NOT EXIST %JAVA% ( ECHO Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME 1>&2 EXIT /B 1 ) set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI REM check in case a user was using this mechanism if "%ES_CLASSPATH%" == "" ( set ES_CLASSPATH=!ES_HOME!/lib/elasticsearch-${project.version}.jar;!ES_HOME!/lib/* ) else ( ECHO Error: Don't modify the classpath with ES_CLASSPATH, Best is to add 1>&2 ECHO additional elements via the plugin mechanism, or if code must really be 1>&2 ECHO added to the main classpath, add jars to lib\, unsupported 1>&2 EXIT /B 1 ) %JAVA% -cp "%ES_CLASSPATH%" "org.elasticsearch.tools.JavaVersionChecker" IF ERRORLEVEL 1 ( ECHO Elasticsearch requires at least Java 8 but your Java version from %JAVA% does not meet this requirement EXIT /B 1 ) set ES_PARAMS=-Delasticsearch -Des.path.home="%ES_HOME%"
njlawton/elasticsearch
distribution/src/main/resources/bin/elasticsearch.in.bat
bat
apache-2.0
1,039
@echo off bash script\version %*
pwaller/hub
script/version.bat
bat
mit
34
@ECHO OFF set java=java set classpath=bin set vmargs=-Xms1G -Xmx1G set mainclass=com.runescape.Game title Game Client %java% %vmargs% -cp %classpath% %mainclass% PAUSE
atomicint/aj8
client/initialize.cmd
bat
isc
170
@echo off SET PATH=%PATH%;%~dp0 "%~dp0node" "%~dp0..\..\packages\NoGit.0.0.7\node_modules\nogit\bin\git.js" %*
cgjerdingen/AngularFunKata
packages/NoGit.0.0.7/content/.bin/git.cmd
bat
mit
110
data AAA_tree ans fc AAA.out ans.out || pause %0
xzj1997/AAA-Tree
test/check_AAA.bat
bat
mit
48
ECHO OFF REM usage : REM run_on_dir.bat <list> <command> REM REM <list> : output from a DIR command with only files to process REM <command> : command to execute against each files from the list REM REM example : REM run_on_dir.bat dir.txt echo set "list=%1" set "command=%2" for /F "tokens=4" %%a in (%list%) do ( call %command% %%a )
thlabbe/C-sharp-utils
run_on_dir.bat
bat
mit
354
@python build.py
jeremejevs/battletag
build.bat
bat
mit
18
@echo off setlocal pushd %~dp0\.. set VSCODEUSERDATADIR=%TMP%\vscodeuserfolder-%RANDOM%-%TIME:~6,5% :: Tests in the extension host call .\scripts\code.bat %~dp0\..\extensions\vscode-api-tests\testWorkspace --extensionDevelopmentPath=%~dp0\..\extensions\vscode-api-tests --extensionTestsPath=%~dp0\..\extensions\vscode-api-tests\out\singlefolder-tests --disableExtensions --user-data-dir=%VSCODEUSERDATADIR% if %errorlevel% neq 0 exit /b %errorlevel% call .\scripts\code.bat %~dp0\..\extensions\vscode-api-tests\testworkspace.code-workspace --extensionDevelopmentPath=%~dp0\..\extensions\vscode-api-tests --extensionTestsPath=%~dp0\..\extensions\vscode-api-tests\out\workspace-tests --disableExtensions --user-data-dir=%VSCODEUSERDATADIR% if %errorlevel% neq 0 exit /b %errorlevel% call .\scripts\code.bat %~dp0\..\extensions\vscode-colorize-tests\test --extensionDevelopmentPath=%~dp0\..\extensions\vscode-colorize-tests --extensionTestsPath=%~dp0\..\extensions\vscode-colorize-tests\out --disableExtensions --user-data-dir=%VSCODEUSERDATADIR% if %errorlevel% neq 0 exit /b %errorlevel% call .\scripts\code.bat $%~dp0\..\extensions\emmet\test-fixtures --extensionDevelopmentPath=%~dp0\..\extensions\emmet --extensionTestsPath=%~dp0\..\extensions\emmet\out\test --disableExtensions --user-data-dir=%VSCODEUSERDATADIR% . if %errorlevel% neq 0 exit /b %errorlevel% :: Integration & performance tests in AMD call .\scripts\test.bat --runGlob **\*.integrationTest.js %* if %errorlevel% neq 0 exit /b %errorlevel% # Tests in commonJS (HTML, CSS, JSON language server tests...) call .\scripts\node-electron.bat .\node_modules\mocha\bin\_mocha .\extensions\*\server\out\test\**\*.test.js if %errorlevel% neq 0 exit /b %errorlevel% rmdir /s /q %VSCODEUSERDATADIR% popd endlocal
rishii7/vscode
scripts/test-integration.bat
bat
mit
1,780
cd ..\_compile\_helpers\worlds call prepareScrollWorld2.bat cd ..\..\..\ScrollWorld2
kosmonautdnb/TheLandsOfZador
AsmPlus4/ScrollWorld2/_collect.bat
bat
mit
84
REM Monero monero-wallet-cli Launcher, (c) 2016 bigreddmachine. REM https://github.com/Monero-Monitor/monero-wallet-chrome REM REM This script allows monero-wallet-cli to be run in rpc mode easily and quickly. User passwords REM are secured by passing them as a terminal input, rather than requiring them to be stored REM as clear text in the script. REM REM This script is released under the MIT License. @echo off cls set WALLET_FILENAME=wallet.bin set PROGRAM_DIR=C:\Program Files\MoneroWallet echo. echo ==================================================================================== echo Monero monero-wallet-cli Launcher for Windows echo. echo Copyright (c) 2016 bigreddmachine. echo Released under the MIT License as part of Monero Wallet for Chrome. echo https://github.com/monero-monitor/monero-wallet-chrome echo ==================================================================================== echo. set WALLET_DIR=%PROGRAM_DIR%\wallet IF not exist %WALLET_DIR% (mkdir %WALLET_DIR%) set FILE=%WALLET_DIR%\%WALLET_FILENAME% echo Which Monero daemon would you like to connect to? echo 1. remote (node.moneroclub.com:8880) echo 2. local (127.0.0.1:18081) echo 3. custom echo. set /p DAEMON=Please make a selection: if NOT %DAEMON% == 1 if NOT %DAEMON% == 2 if NOT %DAEMO% == 3 ( set -p exitinput=Invalid daemon selection. Press enter to quit. exit ) if %DAEMON% == 1 ( set USE_DAEMON=node.moneroclub.com:8880 ) if %DAEMON% == 2 ( set USE_DAEMON=127.0.0.1:18081 ) if %DAEMON% == 3 ( set /p USE_DAEMON=Please enter custom daemon (ex: 192.168.0.1:18081): ) echo. echo ---------------------- echo. if exist %FILE% ( REM If this script has been run previously, a wallet should already exist. Start it in RPC mode. echo Launching monero-wallet-cli in RPC mode, listening on localhost (127.0.0.1), port 18082. echo. set /p PASS=Please enter your password: echo. echo Choose a User Agent. You can use a new User Agent each time you use your wallet. set /p USERAGENT=Please enter a User Agent: echo Launching monero-wallet-cli... echo. start "%PROGRAM_DIR%\monero-wallet-cli --wallet-file %FILE% --password %PASS% --user-agent %USERAGENT% --rpc-bind-ip 127.0.0.1 --rpc-bind-port 18082 --daemon-address %USE_DAEMON%" echo monero-wallet-cli should now be running in RPC mode. You can verify this by checking if echo your Chrome extension says "online". It may take a few seconds for the wallet to echo connect to monero-wallet-cli. If it fails to come online, please check your password echo and user agent and try again. echo. echo To shutdown monero-wallet-cli, choose 'Stop Wallet' in the extension's menu. echo. echo Thank you for using Monero Wallet for Chrome! You may now close this window. echo. ) else ( REM The first time this script is run, open the command line wallet. echo You have not created a wallet yet. This script will help you do that. echo. echo To create a wallet, follow the prompts. Enter a password, then pick a echo language for your wallet. echo. echo Once you have created a wallet, monero-wallet-cli will open and a prompt echo line will appear. Type 'refresh', then once it is done type 'exit'. echo You are then ready to use Monero Wallet for Chrome. echo. set /p userinput=When you are ready to begin, press enter... echo. echo ---------- set /p NEWPASS=Please pick a password for your new wallet: echo. set /p CONFIRM_NEWPASS=Confirm password: if NOT %NEWPASS% == %CONFIRM_NEWPASS% ( echo Your passwords do not match. Please restart the script and try again. echo. set /p userinput=Press "enter" to exit. exit ) echo ---------- echo. %PROGRAM_DIR%\monero-wallet-cli --generate-new-wallet %FILE% --password %NEWPASS% --daemon-address %USE_DAEMON% echo. echo ---------- echo. if exist %FILE% ( echo Everything looks good. You can now start your wallet in RPC mode at any time by re-running this script. echo. set /p userinput=Press "enter" to exit Monero monero-wallet-cli Launcher. ) else ( echo There seems to have been an issue creating your wallet. echo. set /p userinput=Press "enter" to exit. ) ) echo.
Monero-Monitor/monero-wallet-chrome
scripts/Windows/MoneroWallet.bat
bat
mit
4,379
/******************************************************************************/ /* lnk_msp430f2274.cmd - LINKER COMMAND FILE FOR LINKING MSP430F2274 PROGRAMS */ /* */ /* Ver | dd mmm yyyy | Who | Description of changes */ /* =====|=============|======|============================================= */ /* 0.01| 08 Mar 2004 | A.D. | First prototype */ /* 0.02| 26 Mai 2004 | A.D. | Leading symbol underscores removed, */ /* | | | Interrupt vector definition changed */ /* 0.03| 22 Jun 2004 | A.D. | File reformatted */ /* */ /* Usage: lnk430 <obj files...> -o <out file> -m <map file> lnk.cmd */ /* cl430 <src files...> -z -o <out file> -m <map file> lnk.cmd */ /* */ /*----------------------------------------------------------------------------*/ /* These linker options are for command line linking only. For IDE linking, */ /* you should set your linker options in Project Properties */ /* -c LINK USING C CONVENTIONS */ /* -stack 0x0100 SOFTWARE STACK SIZE */ /* -heap 0x0100 HEAP AREA SIZE */ /*----------------------------------------------------------------------------*/ /* 'Allocate' peripheral registers at given addresses */ /*----------------------------------------------------------------------------*/ /****************************************************************************/ /* SPECIFY THE SYSTEM MEMORY MAP */ /****************************************************************************/ MEMORY { SFR : origin = 0x0000, length = 0x0010 PERIPHERALS_8BIT : origin = 0x0010, length = 0x00F0 PERIPHERALS_16BIT : origin = 0x0100, length = 0x0100 RAM : origin = 0x0200, length = 0x0400 INFOA : origin = 0x10C0, length = 0x0040 INFOB : origin = 0x1080, length = 0x0040 INFOC : origin = 0x1040, length = 0x0040 INFOD : origin = 0x1000, length = 0x0040 FLASH : origin = 0x8000, length = 0x7FDE INT00 : origin = 0xFFE0, length = 0x0002 INT01 : origin = 0xFFE2, length = 0x0002 INT02 : origin = 0xFFE4, length = 0x0002 INT03 : origin = 0xFFE6, length = 0x0002 INT04 : origin = 0xFFE8, length = 0x0002 INT05 : origin = 0xFFEA, length = 0x0002 INT06 : origin = 0xFFEC, length = 0x0002 INT07 : origin = 0xFFEE, length = 0x0002 INT08 : origin = 0xFFF0, length = 0x0002 INT09 : origin = 0xFFF2, length = 0x0002 INT10 : origin = 0xFFF4, length = 0x0002 INT11 : origin = 0xFFF6, length = 0x0002 INT12 : origin = 0xFFF8, length = 0x0002 INT13 : origin = 0xFFFA, length = 0x0002 INT14 : origin = 0xFFFC, length = 0x0002 RESET : origin = 0xFFFE, length = 0x0002 } /****************************************************************************/ /* SPECIFY THE SECTIONS ALLOCATION INTO MEMORY */ /****************************************************************************/ SECTIONS { .bss : {} > RAM /* GLOBAL & STATIC VARS */ .sysmem : {} > RAM /* DYNAMIC MEMORY ALLOCATION AREA */ .stack : {} > RAM (HIGH) /* SOFTWARE SYSTEM STACK */ .text : {} > FLASH /* CODE */ .cinit : {} > FLASH /* INITIALIZATION TABLES */ .const : {} > FLASH /* CONSTANT DATA */ .cio : {} > RAM /* C I/O BUFFER */ .pinit : {} > FLASH /* C++ CONSTRUCTOR TABLES */ .infoA : {} > INFOA /* MSP430 INFO FLASH MEMORY SEGMENTS */ .infoB : {} > INFOB .infoC : {} > INFOC .infoD : {} > INFOD .int00 : {} > INT00 /* MSP430 INTERRUPT VECTORS */ .int01 : {} > INT01 .int02 : {} > INT02 .int03 : {} > INT03 .int04 : {} > INT04 .int05 : {} > INT05 .int06 : {} > INT06 .int07 : {} > INT07 .int08 : {} > INT08 .int09 : {} > INT09 .int10 : {} > INT10 .int11 : {} > INT11 .int12 : {} > INT12 .int13 : {} > INT13 .int14 : {} > INT14 .reset : {} > RESET /* MSP430 RESET VECTOR */ } /****************************************************************************/ /* INCLUDE PERIPHERALS MEMORY MAP */ /****************************************************************************/ -l msp430x22x4.cmd
fquinto/Wireless_sensor_network
MSP430_CCS_Source/Projects/eZ430RF/eZ430-RF2500_WSM/lnk_msp430f2274.cmd
bat
mit
5,462
if not exist "%~dp0..\artifacts\build\netstandard1.0" mkdir "%~dp0..\artifacts\build\netstandard1.0" if not exist "%~dp0..\artifacts\build\portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10" mkdir "%~dp0..\artifacts\build\portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10" if not exist "%~dp0..\artifacts\tools" mkdir "%~dp0..\artifacts\tools" @rem build command param @echo off setlocal for /f %%f in ('dir /b %~dp0..\src\ReferenceGenerator\bin\%1\*.dll') do call :concat %~dp0..\src\ReferenceGenerator\bin\%1\%%f "%HOMEDRIVE%%HOMEPATH%\.nuget\packages\ILMerge\2.14.1208\tools\ilmerge.exe" "%~dp0..\src\ReferenceGenerator\bin\%1\ReferenceGenerator.exe" %a% /out:"%~dp0..\artifacts\tools\RefGen.exe" /internalize /targetplatform:"v4,C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5" copy "%~dp0..\src\ReferenceGenerator\bin\%1\ReferenceGenerator.exe.config" "%~dp0..\artifacts\tools\RefGen.exe.config" /y copy "%~dp0..\src\ReferenceGenerator\NuSpec.ReferenceGenerator.targets" "%~dp0..\artifacts\build\netstandard1.0\NuSpec.ReferenceGenerator.targets" /y copy "%~dp0..\src\ReferenceGenerator\NuSpec.ReferenceGenerator.targets" "%~dp0..\artifacts\build\portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10\NuSpec.ReferenceGenerator.targets" /y goto :eof :concat set a=%a% %1 goto :eof
onovotny/ReferenceGenerator
scripts/BuildPackageLayout.cmd
bat
mit
1,380
@set GEVENT_LOOP=uvent.loop.UVLoop @set GEVENT_RESOLVER=gevent.resolver_thread.Resolver @set GOAGENT_LISTEN_VISIBLE=1 @start "GoAgent" "%~dp0python27.exe" "%~dp0..\local\proxy.py"
JerryXia/fastgoagent
goagent/local/uvent.bat
bat
mit
180
cmd_drivers/video/modedb.o := arm-eabi-gcc -Wp,-MD,drivers/video/.modedb.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 -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -fno-dwarf2-cfi-asm -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(modedb)" -D"KBUILD_MODNAME=KBUILD_STR(fb)" -c -o drivers/video/modedb.o drivers/video/modedb.c deps_drivers/video/modedb.o := \ drivers/video/modedb.c \ $(wildcard include/config/fb/mode/helpers.h) \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm7225.h) \ $(wildcard include/config/arch/msm7200a.h) \ $(wildcard include/config/arch/msm7201a.h) \ $(wildcard include/config/arch/msm7x00a.h) \ $(wildcard include/config/mach/desirec.h) \ $(wildcard include/config/arch/msm7227.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ include/asm/mach-types.h \ $(wildcard include/config/arch/ebsa110.h) \ $(wildcard include/config/arch/rpc.h) \ $(wildcard include/config/arch/nexuspci.h) \ $(wildcard include/config/arch/ebsa285.h) \ $(wildcard include/config/arch/netwinder.h) \ $(wildcard include/config/arch/cats.h) \ $(wildcard include/config/arch/tbox.h) \ $(wildcard include/config/arch/co285.h) \ $(wildcard include/config/arch/clps7110.h) \ $(wildcard include/config/arch/arc.h) \ $(wildcard include/config/arch/a5k.h) \ $(wildcard include/config/arch/etoile.h) \ $(wildcard include/config/arch/lacie/nas.h) \ $(wildcard include/config/arch/clps7500.h) \ $(wildcard include/config/arch/shark.h) \ $(wildcard include/config/sa1100/brutus.h) \ $(wildcard include/config/arch/personal/server.h) \ $(wildcard include/config/sa1100/itsy.h) \ $(wildcard include/config/arch/l7200.h) \ $(wildcard include/config/sa1100/pleb.h) \ $(wildcard include/config/arch/integrator.h) \ $(wildcard include/config/sa1100/h3600.h) \ $(wildcard include/config/arch/ixp1200.h) \ $(wildcard include/config/arch/p720t.h) \ $(wildcard include/config/sa1100/assabet.h) \ $(wildcard include/config/sa1100/victor.h) \ $(wildcard include/config/sa1100/lart.h) \ $(wildcard include/config/sa1100/ranger.h) \ $(wildcard include/config/sa1100/graphicsclient.h) \ $(wildcard include/config/sa1100/xp860.h) \ $(wildcard include/config/sa1100/cerf.h) \ $(wildcard include/config/sa1100/nanoengine.h) \ $(wildcard include/config/sa1100/fpic.h) \ $(wildcard include/config/sa1100/extenex1.h) \ $(wildcard include/config/sa1100/sherman.h) \ $(wildcard include/config/sa1100/accelent.h) \ $(wildcard include/config/arch/l7200/accelent.h) \ $(wildcard include/config/sa1100/netport.h) \ $(wildcard include/config/sa1100/pangolin.h) \ $(wildcard include/config/sa1100/yopy.h) \ $(wildcard include/config/sa1100/coolidge.h) \ $(wildcard include/config/sa1100/huw/webpanel.h) \ $(wildcard include/config/arch/spotme.h) \ $(wildcard include/config/arch/freebird.h) \ $(wildcard include/config/arch/ti925.h) \ $(wildcard include/config/arch/riscstation.h) \ $(wildcard include/config/sa1100/cavy.h) \ $(wildcard include/config/sa1100/jornada720.h) \ $(wildcard include/config/sa1100/omnimeter.h) \ $(wildcard include/config/arch/edb7211.h) \ $(wildcard include/config/sa1100/citygo.h) \ $(wildcard include/config/sa1100/pfs168.h) \ $(wildcard include/config/sa1100/spot.h) \ $(wildcard include/config/sa1100/flexanet.h) \ $(wildcard include/config/arch/webpal.h) \ $(wildcard include/config/sa1100/linpda.h) \ $(wildcard include/config/arch/anakin.h) \ $(wildcard include/config/sa1100/mvi.h) \ $(wildcard include/config/sa1100/jupiter.h) \ $(wildcard include/config/arch/psionw.h) \ $(wildcard include/config/sa1100/aln.h) \ $(wildcard include/config/arch/camelot.h) \ $(wildcard include/config/sa1100/gds2200.h) \ $(wildcard include/config/sa1100/psion/series7.h) \ $(wildcard include/config/sa1100/xfile.h) \ $(wildcard include/config/arch/accelent/ep9312.h) \ $(wildcard include/config/arch/ic200.h) \ $(wildcard include/config/sa1100/creditlart.h) \ $(wildcard include/config/sa1100/htm.h) \ $(wildcard include/config/arch/iq80310.h) \ $(wildcard include/config/sa1100/freebot.h) \ $(wildcard include/config/arch/entel.h) \ $(wildcard include/config/arch/enp3510.h) \ $(wildcard include/config/sa1100/trizeps.h) \ $(wildcard include/config/sa1100/nesa.h) \ $(wildcard include/config/arch/venus.h) \ $(wildcard include/config/arch/tardis.h) \ $(wildcard include/config/arch/mercury.h) \ $(wildcard include/config/sa1100/empeg.h) \ $(wildcard include/config/arch/i80200fcc.h) \ $(wildcard include/config/sa1100/itt/cpb.h) \ $(wildcard include/config/sa1100/svc.h) \ $(wildcard include/config/sa1100/alpha2.h) \ $(wildcard include/config/sa1100/alpha1.h) \ $(wildcard include/config/arch/netarm.h) \ $(wildcard include/config/sa1100/simpad.h) \ $(wildcard include/config/arch/pda1.h) \ $(wildcard include/config/arch/lubbock.h) \ $(wildcard include/config/arch/aniko.h) \ $(wildcard include/config/arch/clep7212.h) \ $(wildcard include/config/arch/cs89712.h) \ $(wildcard include/config/sa1100/weararm.h) \ $(wildcard include/config/sa1100/possio/px.h) \ $(wildcard include/config/sa1100/sidearm.h) \ $(wildcard include/config/sa1100/stork.h) \ $(wildcard include/config/sa1100/shannon.h) \ $(wildcard include/config/arch/ace.h) \ $(wildcard include/config/sa1100/ballyarm.h) \ $(wildcard include/config/sa1100/simputer.h) \ $(wildcard include/config/sa1100/nexterm.h) \ $(wildcard include/config/sa1100/sa1100/elf.h) \ $(wildcard include/config/sa1100/gator.h) \ $(wildcard include/config/arch/granite.h) \ $(wildcard include/config/sa1100/consus.h) \ $(wildcard include/config/arch/aaed2000.h) \ $(wildcard include/config/arch/cdb89712.h) \ $(wildcard include/config/sa1100/graphicsmaster.h) \ $(wildcard include/config/sa1100/adsbitsy.h) \ $(wildcard include/config/arch/pxa/idp.h) \ $(wildcard include/config/arch/plce.h) \ $(wildcard include/config/sa1100/pt/system3.h) \ $(wildcard include/config/arch/medalb.h) \ $(wildcard include/config/arch/eagle.h) \ $(wildcard include/config/arch/dsc21.h) \ $(wildcard include/config/arch/dsc24.h) \ $(wildcard include/config/arch/ti5472.h) \ $(wildcard include/config/arch/autcpu12.h) \ $(wildcard include/config/arch/uengine.h) \ $(wildcard include/config/sa1100/bluestem.h) \ $(wildcard include/config/arch/xingu8.h) \ $(wildcard include/config/arch/bushstb.h) \ $(wildcard include/config/sa1100/epsilon1.h) \ $(wildcard include/config/sa1100/balloon.h) \ $(wildcard include/config/arch/puppy.h) \ $(wildcard include/config/sa1100/elroy.h) \ $(wildcard include/config/arch/gms720.h) \ $(wildcard include/config/arch/s24x.h) \ $(wildcard include/config/arch/jtel/clep7312.h) \ $(wildcard include/config/arch/cx821xx.h) \ $(wildcard include/config/arch/edb7312.h) \ $(wildcard include/config/sa1100/bsa1110.h) \ $(wildcard include/config/arch/powerpin.h) \ $(wildcard include/config/arch/openarm.h) \ $(wildcard include/config/sa1100/whitechapel.h) \ $(wildcard include/config/sa1100/h3100.h) \ $(wildcard include/config/sa1100/h3800.h) \ $(wildcard include/config/arch/blue/v1.h) \ $(wildcard include/config/arch/pxa/cerf.h) \ $(wildcard include/config/arch/arm7tevb.h) \ $(wildcard include/config/sa1100/d7400.h) \ $(wildcard include/config/arch/piranha.h) \ $(wildcard include/config/sa1100/sbcamelot.h) \ $(wildcard include/config/sa1100/kings.h) \ $(wildcard include/config/arch/smdk2400.h) \ $(wildcard include/config/sa1100/collie.h) \ $(wildcard include/config/arch/idr.h) \ $(wildcard include/config/sa1100/badge4.h) \ $(wildcard include/config/arch/webnet.h) \ $(wildcard include/config/sa1100/d7300.h) \ $(wildcard include/config/sa1100/cep.h) \ $(wildcard include/config/arch/fortunet.h) \ $(wildcard include/config/arch/vc547x.h) \ $(wildcard include/config/sa1100/filewalker.h) \ $(wildcard include/config/sa1100/netgateway.h) \ $(wildcard include/config/sa1100/symbol2800.h) \ $(wildcard include/config/sa1100/suns.h) \ $(wildcard include/config/sa1100/frodo.h) \ $(wildcard include/config/sa1100/mach/tyte/ms301.h) \ $(wildcard include/config/arch/mx1ads.h) \ $(wildcard include/config/arch/h7201.h) \ $(wildcard include/config/arch/h7202.h) \ $(wildcard include/config/arch/amico.h) \ $(wildcard include/config/sa1100/iam.h) \ $(wildcard include/config/sa1100/tt530.h) \ $(wildcard include/config/arch/sam2400.h) \ $(wildcard include/config/sa1100/jornada56x.h) \ $(wildcard include/config/sa1100/active.h) \ $(wildcard include/config/arch/iq80321.h) \ $(wildcard include/config/sa1100/wid.h) \ $(wildcard include/config/arch/sabinal.h) \ $(wildcard include/config/arch/ixp425/matacumbe.h) \ $(wildcard include/config/sa1100/miniprint.h) \ $(wildcard include/config/arch/adm510x.h) \ $(wildcard include/config/sa1100/svs200.h) \ $(wildcard include/config/arch/atg/tcu.h) \ $(wildcard include/config/sa1100/jornada820.h) \ $(wildcard include/config/arch/s3c44b0.h) \ $(wildcard include/config/arch/margis2.h) \ $(wildcard include/config/arch/ks8695.h) \ $(wildcard include/config/arch/brh.h) \ $(wildcard include/config/arch/s3c2410.h) \ $(wildcard include/config/arch/possio/px30.h) \ $(wildcard include/config/arch/s3c2800.h) \ $(wildcard include/config/sa1100/fleetwood.h) \ $(wildcard include/config/arch/omaha.h) \ $(wildcard include/config/arch/ta7.h) \ $(wildcard include/config/sa1100/nova.h) \ $(wildcard include/config/arch/hmk.h) \ $(wildcard include/config/arch/karo.h) \ $(wildcard include/config/sa1100/fester.h) \ $(wildcard include/config/arch/gpi.h) \ $(wildcard include/config/arch/smdk2410.h) \ $(wildcard include/config/arch/i519.h) \ $(wildcard include/config/sa1100/nexio.h) \ $(wildcard include/config/sa1100/bitbox.h) \ $(wildcard include/config/sa1100/g200.h) \ $(wildcard include/config/sa1100/gill.h) \ $(wildcard include/config/arch/pxa/mercury.h) \ $(wildcard include/config/arch/ceiva.h) \ $(wildcard include/config/sa1100/fret.h) \ $(wildcard include/config/sa1100/emailphone.h) \ $(wildcard include/config/arch/h3900.h) \ $(wildcard include/config/arch/pxa1.h) \ $(wildcard include/config/sa1100/koan369.h) \ $(wildcard include/config/arch/cogent.h) \ $(wildcard include/config/arch/esl/simputer.h) \ $(wildcard include/config/arch/esl/simputer/clr.h) \ $(wildcard include/config/arch/esl/simputer/bw.h) \ $(wildcard include/config/arch/hhp/cradle.h) \ $(wildcard include/config/arch/he500.h) \ $(wildcard include/config/sa1100/inhandelf2.h) \ $(wildcard include/config/sa1100/inhandftip.h) \ $(wildcard include/config/sa1100/dnp1110.h) \ $(wildcard include/config/sa1100/pnp1110.h) \ $(wildcard include/config/arch/csb226.h) \ $(wildcard include/config/sa1100/arnold.h) \ $(wildcard include/config/mach/voiceblue.h) \ $(wildcard include/config/arch/jz8028.h) \ $(wildcard include/config/arch/h5400.h) \ $(wildcard include/config/sa1100/forte.h) \ $(wildcard include/config/sa1100/acam.h) \ $(wildcard include/config/sa1100/abox.h) \ $(wildcard include/config/arch/atmel.h) \ $(wildcard include/config/arch/sitsang.h) \ $(wildcard include/config/sa1100/cpu1110lcdnet.h) \ $(wildcard include/config/arch/mpl/vcma9.h) \ $(wildcard include/config/arch/opus/a1.h) \ $(wildcard include/config/arch/daytona.h) \ $(wildcard include/config/sa1100/killbear.h) \ $(wildcard include/config/arch/yoho.h) \ $(wildcard include/config/arch/jasper.h) \ $(wildcard include/config/arch/dsc25.h) \ $(wildcard include/config/mach/omap/innovator.h) \ $(wildcard include/config/arch/ramses.h) \ $(wildcard include/config/arch/s28x.h) \ $(wildcard include/config/arch/mport3.h) \ $(wildcard include/config/arch/pxa/eagle250.h) \ $(wildcard include/config/arch/pdb.h) \ $(wildcard include/config/sa1100/blue/2g.h) \ $(wildcard include/config/sa1100/bluearch.h) \ $(wildcard include/config/arch/ixdp2400.h) \ $(wildcard include/config/arch/ixdp2800.h) \ $(wildcard include/config/sa1100/explorer.h) \ $(wildcard include/config/arch/ixdp425.h) \ $(wildcard include/config/arch/chimp.h) \ $(wildcard include/config/arch/stork/nest.h) \ $(wildcard include/config/arch/stork/egg.h) \ $(wildcard include/config/sa1100/wismo.h) \ $(wildcard include/config/arch/ezlinx.h) \ $(wildcard include/config/arch/at91rm9200.h) \ $(wildcard include/config/arch/adtech/orion.h) \ $(wildcard include/config/arch/neptune.h) \ $(wildcard include/config/sa1100/hackkit.h) \ $(wildcard include/config/arch/pxa/wins30.h) \ $(wildcard include/config/sa1100/lavinna.h) \ $(wildcard include/config/arch/pxa/uengine.h) \ $(wildcard include/config/arch/innokom.h) \ $(wildcard include/config/arch/bms.h) \ $(wildcard include/config/arch/ixcdp1100.h) \ $(wildcard include/config/arch/prpmc1100.h) \ $(wildcard include/config/arch/at91rm9200dk.h) \ $(wildcard include/config/arch/armstick.h) \ $(wildcard include/config/arch/armonie.h) \ $(wildcard include/config/arch/mport1.h) \ $(wildcard include/config/arch/s3c5410.h) \ $(wildcard include/config/arch/zcp320a.h) \ $(wildcard include/config/arch/i/box.h) \ $(wildcard include/config/arch/stlc1502.h) \ $(wildcard include/config/arch/siren.h) \ $(wildcard include/config/arch/greenlake.h) \ $(wildcard include/config/arch/argus.h) \ $(wildcard include/config/sa1100/combadge.h) \ $(wildcard include/config/arch/rokepxa.h) \ $(wildcard include/config/arch/cintegrator.h) \ $(wildcard include/config/arch/guidea07.h) \ $(wildcard include/config/arch/tat257.h) \ $(wildcard include/config/arch/igp2425.h) \ $(wildcard include/config/arch/bluegramma.h) \ $(wildcard include/config/arch/ipod.h) \ $(wildcard include/config/arch/adsbitsyx.h) \ $(wildcard include/config/arch/trizeps2.h) \ $(wildcard include/config/arch/viper.h) \ $(wildcard include/config/sa1100/adsbitsyplus.h) \ $(wildcard include/config/sa1100/adsagc.h) \ $(wildcard include/config/arch/stp7312.h) \ $(wildcard include/config/mach/nx/phnx.h) \ $(wildcard include/config/arch/wep/ep250.h) \ $(wildcard include/config/arch/inhandelf3.h) \ $(wildcard include/config/arch/adi/coyote.h) \ $(wildcard include/config/arch/iyonix.h) \ $(wildcard include/config/arch/damicam/sa1110.h) \ $(wildcard include/config/arch/meg03.h) \ $(wildcard include/config/arch/pxa/whitechapel.h) \ $(wildcard include/config/arch/nwsc.h) \ $(wildcard include/config/arch/nwlarm.h) \ $(wildcard include/config/arch/ixp425/mguard.h) \ $(wildcard include/config/arch/pxa/netdcu4.h) \ $(wildcard include/config/arch/ixdp2401.h) \ $(wildcard include/config/arch/ixdp2801.h) \ $(wildcard include/config/arch/zodiac.h) \ $(wildcard include/config/arch/armmodul.h) \ $(wildcard include/config/sa1100/ketop.h) \ $(wildcard include/config/arch/av7200.h) \ $(wildcard include/config/arch/arch/ti925.h) \ $(wildcard include/config/arch/acq200.h) \ $(wildcard include/config/sa1100/pt/dafit.h) \ $(wildcard include/config/arch/ihba.h) \ $(wildcard include/config/arch/quinque.h) \ $(wildcard include/config/arch/nimbraone.h) \ $(wildcard include/config/arch/nimbra29x.h) \ $(wildcard include/config/arch/nimbra210.h) \ $(wildcard include/config/arch/hhp/d95xx.h) \ $(wildcard include/config/arch/labarm.h) \ $(wildcard include/config/arch/m825xx.h) \ $(wildcard include/config/sa1100/m7100.h) \ $(wildcard include/config/arch/nipc2.h) \ $(wildcard include/config/arch/fu7202.h) \ $(wildcard include/config/arch/adsagx.h) \ $(wildcard include/config/arch/pxa/pooh.h) \ $(wildcard include/config/arch/bandon.h) \ $(wildcard include/config/arch/pcm7210.h) \ $(wildcard include/config/arch/nms9200.h) \ $(wildcard include/config/arch/logodl.h) \ $(wildcard include/config/sa1100/m7140.h) \ $(wildcard include/config/arch/korebot.h) \ $(wildcard include/config/arch/iq31244.h) \ $(wildcard include/config/sa1100/koan393.h) \ $(wildcard include/config/arch/inhandftip3.h) \ $(wildcard include/config/arch/gonzo.h) \ $(wildcard include/config/arch/bast.h) \ $(wildcard include/config/arch/scanpass.h) \ $(wildcard include/config/arch/ep7312/pooh.h) \ $(wildcard include/config/arch/ta7s.h) \ $(wildcard include/config/arch/ta7v.h) \ $(wildcard include/config/sa1100/icarus.h) \ $(wildcard include/config/arch/h1900.h) \ $(wildcard include/config/sa1100/gemini.h) \ $(wildcard include/config/arch/axim.h) \ $(wildcard include/config/arch/audiotron.h) \ $(wildcard include/config/arch/h2200.h) \ $(wildcard include/config/arch/loox600.h) \ $(wildcard include/config/arch/niop.h) \ $(wildcard include/config/arch/dm310.h) \ $(wildcard include/config/arch/seedpxa/c2.h) \ $(wildcard include/config/arch/ixp4xx/mguard/pci.h) \ $(wildcard include/config/arch/h1940.h) \ $(wildcard include/config/arch/scorpio.h) \ $(wildcard include/config/arch/viva.h) \ $(wildcard include/config/arch/pxa/xcard.h) \ $(wildcard include/config/arch/csb335.h) \ $(wildcard include/config/arch/ixrd425.h) \ $(wildcard include/config/arch/iq80315.h) \ $(wildcard include/config/arch/nmp7312.h) \ $(wildcard include/config/arch/cx861xx.h) \ $(wildcard include/config/arch/enp2611.h) \ $(wildcard include/config/sa1100/xda.h) \ $(wildcard include/config/arch/csir/ims.h) \ $(wildcard include/config/arch/ixp421/dnaeeth.h) \ $(wildcard include/config/arch/pocketserv9200.h) \ $(wildcard include/config/arch/toto.h) \ $(wildcard include/config/arch/s3c2440.h) \ $(wildcard include/config/arch/ks8695p.h) \ $(wildcard include/config/arch/se4000.h) \ $(wildcard include/config/arch/quadriceps.h) \ $(wildcard include/config/arch/bronco.h) \ $(wildcard include/config/arch/esl/wireless/tab.h) \ $(wildcard include/config/arch/esl/sofcomp.h) \ $(wildcard include/config/arch/s5c7375.h) \ $(wildcard include/config/arch/spearhead.h) \ $(wildcard include/config/arch/pantera.h) \ $(wildcard include/config/arch/prayoglite.h) \ $(wildcard include/config/arch/gumstix.h) \ $(wildcard include/config/arch/rcube.h) \ $(wildcard include/config/arch/rea/olv.h) \ $(wildcard include/config/arch/pxa/iphone.h) \ $(wildcard include/config/arch/s3c3410.h) \ $(wildcard include/config/arch/espd/4510b.h) \ $(wildcard include/config/arch/mp1x.h) \ $(wildcard include/config/arch/at91rm9200tb.h) \ $(wildcard include/config/arch/adsvgx.h) \ $(wildcard include/config/mach/omap/h2.h) \ $(wildcard include/config/arch/pelee.h) \ $(wildcard include/config/mach/e740.h) \ $(wildcard include/config/arch/iq80331.h) \ $(wildcard include/config/arch/versatile/pb.h) \ $(wildcard include/config/mach/kev7a400.h) \ $(wildcard include/config/mach/lpd7a400.h) \ $(wildcard include/config/mach/lpd7a404.h) \ $(wildcard include/config/arch/fujitsu/camelot.h) \ $(wildcard include/config/arch/janus2m.h) \ $(wildcard include/config/mach/embtf.h) \ $(wildcard include/config/mach/hpm.h) \ $(wildcard include/config/mach/smdk2410tk.h) \ $(wildcard include/config/mach/smdk2410aj.h) \ $(wildcard include/config/mach/streetracer.h) \ $(wildcard include/config/mach/eframe.h) \ $(wildcard include/config/mach/csb337.h) \ $(wildcard include/config/mach/pxa/lark.h) \ $(wildcard include/config/mach/pnp2110.h) \ $(wildcard include/config/mach/tcc72x.h) \ $(wildcard include/config/mach/altair.h) \ $(wildcard include/config/mach/kc3.h) \ $(wildcard include/config/mach/sinteftd.h) \ $(wildcard include/config/mach/mainstone.h) \ $(wildcard include/config/mach/aday4x.h) \ $(wildcard include/config/mach/lite300.h) \ $(wildcard include/config/mach/s5c7376.h) \ $(wildcard include/config/mach/mt02.h) \ $(wildcard include/config/mach/mport3s.h) \ $(wildcard include/config/mach/ra/alpha.h) \ $(wildcard include/config/mach/xcep.h) \ $(wildcard include/config/mach/arcom/vulcan.h) \ $(wildcard include/config/mach/stargate.h) \ $(wildcard include/config/mach/armadilloj.h) \ $(wildcard include/config/mach/elroy/jack.h) \ $(wildcard include/config/mach/backend.h) \ $(wildcard include/config/mach/s5linbox.h) \ $(wildcard include/config/mach/nomadik.h) \ $(wildcard include/config/mach/ia/cpu/9200.h) \ $(wildcard include/config/mach/at91/bja1.h) \ $(wildcard include/config/mach/corgi.h) \ $(wildcard include/config/mach/poodle.h) \ $(wildcard include/config/mach/ten.h) \ $(wildcard include/config/mach/roverp5p.h) \ $(wildcard include/config/mach/sc2700.h) \ $(wildcard include/config/mach/ex/eagle.h) \ $(wildcard include/config/mach/nx/pxa12.h) \ $(wildcard include/config/mach/nx/pxa5.h) \ $(wildcard include/config/mach/blackboard2.h) \ $(wildcard include/config/mach/i819.h) \ $(wildcard include/config/mach/ixmb995e.h) \ $(wildcard include/config/mach/skyrider.h) \ $(wildcard include/config/mach/skyhawk.h) \ $(wildcard include/config/mach/enterprise.h) \ $(wildcard include/config/mach/dep2410.h) \ $(wildcard include/config/mach/armcore.h) \ $(wildcard include/config/mach/hobbit.h) \ $(wildcard include/config/mach/h7210.h) \ $(wildcard include/config/mach/pxa/netdcu5.h) \ $(wildcard include/config/mach/acc.h) \ $(wildcard include/config/mach/esl/sarva.h) \ $(wildcard include/config/mach/xm250.h) \ $(wildcard include/config/mach/t6tc1xb.h) \ $(wildcard include/config/mach/ess710.h) \ $(wildcard include/config/mach/mx31ads.h) \ $(wildcard include/config/mach/himalaya.h) \ $(wildcard include/config/mach/bolfenk.h) \ $(wildcard include/config/mach/at91rm9200kr.h) \ $(wildcard include/config/mach/edb9312.h) \ $(wildcard include/config/mach/omap/generic.h) \ $(wildcard include/config/mach/aximx3.h) \ $(wildcard include/config/mach/eb67xdip.h) \ $(wildcard include/config/mach/webtxs.h) \ $(wildcard include/config/mach/hawk.h) \ $(wildcard include/config/mach/ccat91sbc001.h) \ $(wildcard include/config/mach/expresso.h) \ $(wildcard include/config/mach/h4000.h) \ $(wildcard include/config/mach/dino.h) \ $(wildcard include/config/mach/ml675k.h) \ $(wildcard include/config/mach/edb9301.h) \ $(wildcard include/config/mach/edb9315.h) \ $(wildcard include/config/mach/reciva/tt.h) \ $(wildcard include/config/mach/cstcb01.h) \ $(wildcard include/config/mach/cstcb1.h) \ $(wildcard include/config/mach/shadwell.h) \ $(wildcard include/config/mach/goepel263.h) \ $(wildcard include/config/mach/acq100.h) \ $(wildcard include/config/mach/mx1fs2.h) \ $(wildcard include/config/mach/hiptop/g1.h) \ $(wildcard include/config/mach/sparky.h) \ $(wildcard include/config/mach/ns9750.h) \ $(wildcard include/config/mach/phoenix.h) \ $(wildcard include/config/mach/vr1000.h) \ $(wildcard include/config/mach/deisterpxa.h) \ $(wildcard include/config/mach/bcm1160.h) \ $(wildcard include/config/mach/pcm022.h) \ $(wildcard include/config/mach/adsgcx.h) \ $(wildcard include/config/mach/dreadnaught.h) \ $(wildcard include/config/mach/dm320.h) \ $(wildcard include/config/mach/markov.h) \ $(wildcard include/config/mach/cos7a400.h) \ $(wildcard include/config/mach/milano.h) \ $(wildcard include/config/mach/ue9328.h) \ $(wildcard include/config/mach/uex255.h) \ $(wildcard include/config/mach/ue2410.h) \ $(wildcard include/config/mach/a620.h) \ $(wildcard include/config/mach/ocelot.h) \ $(wildcard include/config/mach/cheetah.h) \ $(wildcard include/config/mach/omap/perseus2.h) \ $(wildcard include/config/mach/zvue.h) \ $(wildcard include/config/mach/roverp1.h) \ $(wildcard include/config/mach/asidial2.h) \ $(wildcard include/config/mach/s3c24a0.h) \ $(wildcard include/config/mach/e800.h) \ $(wildcard include/config/mach/e750.h) \ $(wildcard include/config/mach/s3c5500.h) \ $(wildcard include/config/mach/smdk5500.h) \ $(wildcard include/config/mach/signalsync.h) \ $(wildcard include/config/mach/nbc.h) \ $(wildcard include/config/mach/kodiak.h) \ $(wildcard include/config/mach/netbookpro.h) \ $(wildcard include/config/mach/hw90200.h) \ $(wildcard include/config/mach/condor.h) \ $(wildcard include/config/mach/cup.h) \ $(wildcard include/config/mach/kite.h) \ $(wildcard include/config/mach/scb9328.h) \ $(wildcard include/config/mach/omap/h3.h) \ $(wildcard include/config/mach/omap/h4.h) \ $(wildcard include/config/mach/n10.h) \ $(wildcard include/config/mach/montajade.h) \ $(wildcard include/config/mach/sg560.h) \ $(wildcard include/config/mach/dp1000.h) \ $(wildcard include/config/mach/omap/osk.h) \ $(wildcard include/config/mach/rg100v3.h) \ $(wildcard include/config/mach/mx2ads.h) \ $(wildcard include/config/mach/pxa/kilo.h) \ $(wildcard include/config/mach/ixp4xx/eagle.h) \ $(wildcard include/config/mach/tosa.h) \ $(wildcard include/config/mach/mb2520f.h) \ $(wildcard include/config/mach/emc1000.h) \ $(wildcard include/config/mach/tidsc25.h) \ $(wildcard include/config/mach/akcpmxl.h) \ $(wildcard include/config/mach/av3xx.h) \ $(wildcard include/config/mach/avila.h) \ $(wildcard include/config/mach/pxa/mpm10.h) \ $(wildcard include/config/mach/pxa/kyanite.h) \ $(wildcard include/config/mach/sgold.h) \ $(wildcard include/config/mach/oscar.h) \ $(wildcard include/config/mach/epxa4usb2.h) \ $(wildcard include/config/mach/xsengine.h) \ $(wildcard include/config/mach/ip600.h) \ $(wildcard include/config/mach/mcan2.h) \ $(wildcard include/config/mach/ddi/blueridge.h) \ $(wildcard include/config/mach/skyminder.h) \ $(wildcard include/config/mach/lpd79520.h) \ $(wildcard include/config/mach/edb9302.h) \ $(wildcard include/config/mach/hw90340.h) \ $(wildcard include/config/mach/cip/box.h) \ $(wildcard include/config/mach/ivpn.h) \ $(wildcard include/config/mach/rsoc2.h) \ $(wildcard include/config/mach/husky.h) \ $(wildcard include/config/mach/boxer.h) \ $(wildcard include/config/mach/shepherd.h) \ $(wildcard include/config/mach/aml42800aa.h) \ $(wildcard include/config/mach/lpc2294.h) \ $(wildcard include/config/mach/switchgrass.h) \ $(wildcard include/config/mach/ens/cmu.h) \ $(wildcard include/config/mach/mm6/sdb.h) \ $(wildcard include/config/mach/saturn.h) \ $(wildcard include/config/mach/i30030evb.h) \ $(wildcard include/config/mach/mxc27530evb.h) \ $(wildcard include/config/mach/smdk2800.h) \ $(wildcard include/config/mach/mtwilson.h) \ $(wildcard include/config/mach/ziti.h) \ $(wildcard include/config/mach/grandfather.h) \ $(wildcard include/config/mach/tengine.h) \ $(wildcard include/config/mach/s3c2460.h) \ $(wildcard include/config/mach/pdm.h) \ $(wildcard include/config/mach/h4700.h) \ $(wildcard include/config/mach/h6300.h) \ $(wildcard include/config/mach/rz1700.h) \ $(wildcard include/config/mach/a716.h) \ $(wildcard include/config/mach/estk2440a.h) \ $(wildcard include/config/mach/atwixp425.h) \ $(wildcard include/config/mach/csb336.h) \ $(wildcard include/config/mach/rirm2.h) \ $(wildcard include/config/mach/cx23518.h) \ $(wildcard include/config/mach/cx2351x.h) \ $(wildcard include/config/mach/computime.h) \ $(wildcard include/config/mach/izarus.h) \ $(wildcard include/config/mach/rts.h) \ $(wildcard include/config/mach/se5100.h) \ $(wildcard include/config/mach/s3c2510.h) \ $(wildcard include/config/mach/csb437tl.h) \ $(wildcard include/config/mach/slauson.h) \ $(wildcard include/config/mach/pearlriver.h) \ $(wildcard include/config/mach/tdc/p210.h) \ $(wildcard include/config/mach/sg580.h) \ $(wildcard include/config/mach/wrsbcarm7.h) \ $(wildcard include/config/mach/ipd.h) \ $(wildcard include/config/mach/pxa/dnp2110.h) \ $(wildcard include/config/mach/xaeniax.h) \ $(wildcard include/config/mach/somn4250.h) \ $(wildcard include/config/mach/pleb2.h) \ $(wildcard include/config/mach/cornwallis.h) \ $(wildcard include/config/mach/gurney/drv.h) \ $(wildcard include/config/mach/chaffee.h) \ $(wildcard include/config/mach/rms101.h) \ $(wildcard include/config/mach/rx3715.h) \ $(wildcard include/config/mach/swift.h) \ $(wildcard include/config/mach/roverp7.h) \ $(wildcard include/config/mach/pr818s.h) \ $(wildcard include/config/mach/trxpro.h) \ $(wildcard include/config/mach/nslu2.h) \ $(wildcard include/config/mach/e400.h) \ $(wildcard include/config/mach/trab.h) \ $(wildcard include/config/mach/cmc/pu2.h) \ $(wildcard include/config/mach/fulcrum.h) \ $(wildcard include/config/mach/netgate42x.h) \ $(wildcard include/config/mach/str710.h) \ $(wildcard include/config/mach/ixdpg425.h) \ $(wildcard include/config/mach/tomtomgo.h) \ $(wildcard include/config/mach/versatile/ab.h) \ $(wildcard include/config/mach/edb9307.h) \ $(wildcard include/config/mach/sg565.h) \ $(wildcard include/config/mach/lpd79524.h) \ $(wildcard include/config/mach/lpd79525.h) \ $(wildcard include/config/mach/rms100.h) \ $(wildcard include/config/mach/kb9200.h) \ $(wildcard include/config/mach/sx1.h) \ $(wildcard include/config/mach/hms39c7092.h) \ $(wildcard include/config/mach/armadillo.h) \ $(wildcard include/config/mach/ipcu.h) \ $(wildcard include/config/mach/loox720.h) \ $(wildcard include/config/mach/ixdp465.h) \ $(wildcard include/config/mach/ixdp2351.h) \ $(wildcard include/config/mach/adsvix.h) \ $(wildcard include/config/mach/dm270.h) \ $(wildcard include/config/mach/socltplus.h) \ $(wildcard include/config/mach/ecia.h) \ $(wildcard include/config/mach/cm4008.h) \ $(wildcard include/config/mach/p2001.h) \ $(wildcard include/config/mach/twister.h) \ $(wildcard include/config/mach/mudshark.h) \ $(wildcard include/config/mach/hb2.h) \ $(wildcard include/config/mach/iq80332.h) \ $(wildcard include/config/mach/sendt.h) \ $(wildcard include/config/mach/mx2jazz.h) \ $(wildcard include/config/mach/multiio.h) \ $(wildcard include/config/mach/hrdisplay.h) \ $(wildcard include/config/mach/mxc27530ads.h) \ $(wildcard include/config/mach/trizeps3.h) \ $(wildcard include/config/mach/zefeerdza.h) \ $(wildcard include/config/mach/zefeerdzb.h) \ $(wildcard include/config/mach/zefeerdzg.h) \ $(wildcard include/config/mach/zefeerdzn.h) \ $(wildcard include/config/mach/zefeerdzq.h) \ $(wildcard include/config/mach/gtwx5715.h) \ $(wildcard include/config/mach/astro/jack.h) \ $(wildcard include/config/mach/tip03.h) \ $(wildcard include/config/mach/a9200ec.h) \ $(wildcard include/config/mach/pnx0105.h) \ $(wildcard include/config/mach/adcpoecpu.h) \ $(wildcard include/config/mach/csb637.h) \ $(wildcard include/config/mach/mb9200.h) \ $(wildcard include/config/mach/kulun.h) \ $(wildcard include/config/mach/snapper.h) \ $(wildcard include/config/mach/optima.h) \ $(wildcard include/config/mach/dlhsbc.h) \ $(wildcard include/config/mach/x30.h) \ $(wildcard include/config/mach/n30.h) \ $(wildcard include/config/mach/manga/ks8695.h) \ $(wildcard include/config/mach/ajax.h) \ $(wildcard include/config/mach/nec/mp900.h) \ $(wildcard include/config/mach/vvtk1000.h) \ $(wildcard include/config/mach/kafa.h) \ $(wildcard include/config/mach/vvtk3000.h) \ $(wildcard include/config/mach/pimx1.h) \ $(wildcard include/config/mach/ollie.h) \ $(wildcard include/config/mach/skymax.h) \ $(wildcard include/config/mach/jazz.h) \ $(wildcard include/config/mach/tel/t3.h) \ $(wildcard include/config/mach/aisino/fcr255.h) \ $(wildcard include/config/mach/btweb.h) \ $(wildcard include/config/mach/dbg/lh79520.h) \ $(wildcard include/config/mach/cm41xx.h) \ $(wildcard include/config/mach/ts72xx.h) \ $(wildcard include/config/mach/nggpxa.h) \ $(wildcard include/config/mach/csb535.h) \ $(wildcard include/config/mach/csb536.h) \ $(wildcard include/config/mach/pxa/trakpod.h) \ $(wildcard include/config/mach/praxis.h) \ $(wildcard include/config/mach/lh75411.h) \ $(wildcard include/config/mach/otom.h) \ $(wildcard include/config/mach/nexcoder/2440.h) \ $(wildcard include/config/mach/loox410.h) \ $(wildcard include/config/mach/westlake.h) \ $(wildcard include/config/mach/nsb.h) \ $(wildcard include/config/mach/esl/sarva/stn.h) \ $(wildcard include/config/mach/esl/sarva/tft.h) \ $(wildcard include/config/mach/esl/sarva/iad.h) \ $(wildcard include/config/mach/esl/sarva/acc.h) \ $(wildcard include/config/mach/typhoon.h) \ $(wildcard include/config/mach/cnav.h) \ $(wildcard include/config/mach/a730.h) \ $(wildcard include/config/mach/netstar.h) \ $(wildcard include/config/mach/phasefale/supercon.h) \ $(wildcard include/config/mach/shiva1100.h) \ $(wildcard include/config/mach/etexsc.h) \ $(wildcard include/config/mach/ixdpg465.h) \ $(wildcard include/config/mach/a9m2410.h) \ $(wildcard include/config/mach/a9m2440.h) \ $(wildcard include/config/mach/a9m9750.h) \ $(wildcard include/config/mach/a9m9360.h) \ $(wildcard include/config/mach/unc90.h) \ $(wildcard include/config/mach/eco920.h) \ $(wildcard include/config/mach/satview.h) \ $(wildcard include/config/mach/roadrunner.h) \ $(wildcard include/config/mach/at91rm9200ek.h) \ $(wildcard include/config/mach/gp32.h) \ $(wildcard include/config/mach/gem.h) \ $(wildcard include/config/mach/i858.h) \ $(wildcard include/config/mach/hx2750.h) \ $(wildcard include/config/mach/mxc91131evb.h) \ $(wildcard include/config/mach/p700.h) \ $(wildcard include/config/mach/cpe.h) \ $(wildcard include/config/mach/spitz.h) \ $(wildcard include/config/mach/nimbra340.h) \ $(wildcard include/config/mach/lpc22xx.h) \ $(wildcard include/config/mach/comet3.h) \ $(wildcard include/config/mach/comet4.h) \ $(wildcard include/config/mach/csb625.h) \ $(wildcard include/config/mach/fortunet2.h) \ $(wildcard include/config/mach/s5h2200.h) \ $(wildcard include/config/mach/optorm920.h) \ $(wildcard include/config/mach/adsbitsyxb.h) \ $(wildcard include/config/mach/adssphere.h) \ $(wildcard include/config/mach/adsportal.h) \ $(wildcard include/config/mach/ln2410sbc.h) \ $(wildcard include/config/mach/cb3rufc.h) \ $(wildcard include/config/mach/mp2usb.h) \ $(wildcard include/config/mach/ntnp425c.h) \ $(wildcard include/config/mach/colibri.h) \ $(wildcard include/config/mach/pcm7220.h) \ $(wildcard include/config/mach/gateway7001.h) \ $(wildcard include/config/mach/pcm027.h) \ $(wildcard include/config/mach/cmpxa.h) \ $(wildcard include/config/mach/anubis.h) \ $(wildcard include/config/mach/ite8152.h) \ $(wildcard include/config/mach/lpc3xxx.h) \ $(wildcard include/config/mach/puppeteer.h) \ $(wildcard include/config/mach/e570.h) \ $(wildcard include/config/mach/x50.h) \ $(wildcard include/config/mach/recon.h) \ $(wildcard include/config/mach/xboardgp8.h) \ $(wildcard include/config/mach/fpic2.h) \ $(wildcard include/config/mach/akita.h) \ $(wildcard include/config/mach/a81.h) \ $(wildcard include/config/mach/svm/sc25x.h) \ $(wildcard include/config/mach/vadatech020.h) \ $(wildcard include/config/mach/tli.h) \ $(wildcard include/config/mach/edb9315lc.h) \ $(wildcard include/config/mach/passec.h) \ $(wildcard include/config/mach/ds/tiger.h) \ $(wildcard include/config/mach/e310.h) \ $(wildcard include/config/mach/e330.h) \ $(wildcard include/config/mach/rt3000.h) \ $(wildcard include/config/mach/nokia770.h) \ $(wildcard include/config/mach/pnx0106.h) \ $(wildcard include/config/mach/hx21xx.h) \ $(wildcard include/config/mach/faraday.h) \ $(wildcard include/config/mach/sbc9312.h) \ $(wildcard include/config/mach/batman.h) \ $(wildcard include/config/mach/jpd201.h) \ $(wildcard include/config/mach/mipsa.h) \ $(wildcard include/config/mach/kacom.h) \ $(wildcard include/config/mach/swarcocpu.h) \ $(wildcard include/config/mach/swarcodsl.h) \ $(wildcard include/config/mach/blueangel.h) \ $(wildcard include/config/mach/hairygrama.h) \ $(wildcard include/config/mach/banff.h) \ $(wildcard include/config/mach/carmeva.h) \ $(wildcard include/config/mach/sam255.h) \ $(wildcard include/config/mach/ppm10.h) \ $(wildcard include/config/mach/edb9315a.h) \ $(wildcard include/config/mach/sunset.h) \ $(wildcard include/config/mach/stargate2.h) \ $(wildcard include/config/mach/intelmote2.h) \ $(wildcard include/config/mach/trizeps4.h) \ $(wildcard include/config/mach/mainstone2.h) \ $(wildcard include/config/mach/ez/ixp42x.h) \ $(wildcard include/config/mach/tapwave/zodiac.h) \ $(wildcard include/config/mach/universalmeter.h) \ $(wildcard include/config/mach/hicoarm9.h) \ $(wildcard include/config/mach/pnx4008.h) \ $(wildcard include/config/mach/kws6000.h) \ $(wildcard include/config/mach/portux920t.h) \ $(wildcard include/config/mach/ez/x5.h) \ $(wildcard include/config/mach/omap/rudolph.h) \ $(wildcard include/config/mach/cpuat91.h) \ $(wildcard include/config/mach/rea9200.h) \ $(wildcard include/config/mach/acts/pune/sa1110.h) \ $(wildcard include/config/mach/ixp425.h) \ $(wildcard include/config/mach/i30030ads.h) \ $(wildcard include/config/mach/perch.h) \ $(wildcard include/config/mach/eis05r1.h) \ $(wildcard include/config/mach/pepperpad.h) \ $(wildcard include/config/mach/sb3010.h) \ $(wildcard include/config/mach/rm9200.h) \ $(wildcard include/config/mach/dma03.h) \ $(wildcard include/config/mach/road/s101.h) \ $(wildcard include/config/mach/iq81340sc.h) \ $(wildcard include/config/mach/iq/nextgen/b.h) \ $(wildcard include/config/mach/iq81340mc.h) \ $(wildcard include/config/mach/iq/nextgen/d.h) \ $(wildcard include/config/mach/iq/nextgen/e.h) \ $(wildcard include/config/mach/mallow/at91.h) \ $(wildcard include/config/mach/cybertracker/i.h) \ $(wildcard include/config/mach/gesbc931x.h) \ $(wildcard include/config/mach/centipad.h) \ $(wildcard include/config/mach/armsoc.h) \ $(wildcard include/config/mach/se4200.h) \ $(wildcard include/config/mach/ems197a.h) \ $(wildcard include/config/mach/micro9.h) \ $(wildcard include/config/mach/micro9l.h) \ $(wildcard include/config/mach/uc5471dsp.h) \ $(wildcard include/config/mach/sj5471eng.h) \ $(wildcard include/config/mach/cmpxa26x.h) \ $(wildcard include/config/mach/nc.h) \ $(wildcard include/config/mach/omap/palmte.h) \ $(wildcard include/config/mach/ajax52x.h) \ $(wildcard include/config/mach/siriustar.h) \ $(wildcard include/config/mach/iodata/hdlg.h) \ $(wildcard include/config/mach/at91rm9200utl.h) \ $(wildcard include/config/mach/biosafe.h) \ $(wildcard include/config/mach/mp1000.h) \ $(wildcard include/config/mach/parsy.h) \ $(wildcard include/config/mach/ccxp.h) \ $(wildcard include/config/mach/omap/gsample.h) \ $(wildcard include/config/mach/realview/eb.h) \ $(wildcard include/config/mach/samoa.h) \ $(wildcard include/config/mach/palmt3.h) \ $(wildcard include/config/mach/i878.h) \ $(wildcard include/config/mach/borzoi.h) \ $(wildcard include/config/mach/gecko.h) \ $(wildcard include/config/mach/ds101.h) \ $(wildcard include/config/mach/omap/palmtt2.h) \ $(wildcard include/config/mach/palmld.h) \ $(wildcard include/config/mach/cc9c.h) \ $(wildcard include/config/mach/sbc1670.h) \ $(wildcard include/config/mach/ixdp28x5.h) \ $(wildcard include/config/mach/omap/palmtt.h) \ $(wildcard include/config/mach/ml696k.h) \ $(wildcard include/config/mach/arcom/zeus.h) \ $(wildcard include/config/mach/osiris.h) \ $(wildcard include/config/mach/maestro.h) \ $(wildcard include/config/mach/palmte2.h) \ $(wildcard include/config/mach/ixbbm.h) \ $(wildcard include/config/mach/mx27ads.h) \ $(wildcard include/config/mach/ax8004.h) \ $(wildcard include/config/mach/at91sam9261ek.h) \ $(wildcard include/config/mach/loft.h) \ $(wildcard include/config/mach/magpie.h) \ $(wildcard include/config/mach/mx21ads.h) \ $(wildcard include/config/mach/mb87m3400.h) \ $(wildcard include/config/mach/mguard/delta.h) \ $(wildcard include/config/mach/davinci/dvdp.h) \ $(wildcard include/config/mach/htcuniversal.h) \ $(wildcard include/config/mach/tpad.h) \ $(wildcard include/config/mach/roverp3.h) \ $(wildcard include/config/mach/jornada928.h) \ $(wildcard include/config/mach/mv88fxx81.h) \ $(wildcard include/config/mach/stmp36xx.h) \ $(wildcard include/config/mach/sxni79524.h) \ $(wildcard include/config/mach/ams/delta.h) \ $(wildcard include/config/mach/uranium.h) \ $(wildcard include/config/mach/ucon.h) \ $(wildcard include/config/mach/nas100d.h) \ $(wildcard include/config/mach/l083/1000.h) \ $(wildcard include/config/mach/ezx.h) \ $(wildcard include/config/mach/pnx5220.h) \ $(wildcard include/config/mach/butte.h) \ $(wildcard include/config/mach/srm2.h) \ $(wildcard include/config/mach/dsbr.h) \ $(wildcard include/config/mach/crystalball.h) \ $(wildcard include/config/mach/tinypxa27x.h) \ $(wildcard include/config/mach/herbie.h) \ $(wildcard include/config/mach/magician.h) \ $(wildcard include/config/mach/cm4002.h) \ $(wildcard include/config/mach/b4.h) \ $(wildcard include/config/mach/maui.h) \ $(wildcard include/config/mach/cybertracker/g.h) \ $(wildcard include/config/mach/nxdkn.h) \ $(wildcard include/config/mach/mio8390.h) \ $(wildcard include/config/mach/omi/board.h) \ $(wildcard include/config/mach/mx21civ.h) \ $(wildcard include/config/mach/mahi/cdac.h) \ $(wildcard include/config/mach/palmtx.h) \ $(wildcard include/config/mach/s3c2413.h) \ $(wildcard include/config/mach/samsys/ep0.h) \ $(wildcard include/config/mach/wg302v1.h) \ $(wildcard include/config/mach/wg302v2.h) \ $(wildcard include/config/mach/eb42x.h) \ $(wildcard include/config/mach/iq331es.h) \ $(wildcard include/config/mach/cosydsp.h) \ $(wildcard include/config/mach/uplat7d.h) \ $(wildcard include/config/mach/ptdavinci.h) \ $(wildcard include/config/mach/mbus.h) \ $(wildcard include/config/mach/nadia2vb.h) \ $(wildcard include/config/mach/r1000.h) \ $(wildcard include/config/mach/hw90250.h) \ $(wildcard include/config/mach/omap/2430sdp.h) \ $(wildcard include/config/mach/davinci/evm.h) \ $(wildcard include/config/mach/omap/tornado.h) \ $(wildcard include/config/mach/olocreek.h) \ $(wildcard include/config/mach/palmz72.h) \ $(wildcard include/config/mach/nxdb500.h) \ $(wildcard include/config/mach/apf9328.h) \ $(wildcard include/config/mach/omap/wipoq.h) \ $(wildcard include/config/mach/omap/twip.h) \ $(wildcard include/config/mach/treo650.h) \ $(wildcard include/config/mach/acumen.h) \ $(wildcard include/config/mach/xp100.h) \ $(wildcard include/config/mach/fs2410.h) \ $(wildcard include/config/mach/pxa270/cerf.h) \ $(wildcard include/config/mach/sq2ftlpalm.h) \ $(wildcard include/config/mach/bsemserver.h) \ $(wildcard include/config/mach/netclient.h) \ $(wildcard include/config/mach/palmt5.h) \ $(wildcard include/config/mach/palmtc.h) \ $(wildcard include/config/mach/omap/apollon.h) \ $(wildcard include/config/mach/mxc30030evb.h) \ $(wildcard include/config/mach/rea/2d.h) \ $(wildcard include/config/mach/ti3e524.h) \ $(wildcard include/config/mach/ateb9200.h) \ $(wildcard include/config/mach/auckland.h) \ $(wildcard include/config/mach/ak3320m.h) \ $(wildcard include/config/mach/duramax.h) \ $(wildcard include/config/mach/n35.h) \ $(wildcard include/config/mach/pronghorn.h) \ $(wildcard include/config/mach/fundy.h) \ $(wildcard include/config/mach/logicpd/pxa270.h) \ $(wildcard include/config/mach/cpu777.h) \ $(wildcard include/config/mach/simicon9201.h) \ $(wildcard include/config/mach/leap2/hpm.h) \ $(wildcard include/config/mach/cm922txa10.h) \ $(wildcard include/config/mach/pxa.h) \ $(wildcard include/config/mach/sandgate2.h) \ $(wildcard include/config/mach/sandgate2g.h) \ $(wildcard include/config/mach/sandgate2p.h) \ $(wildcard include/config/mach/fred/jack.h) \ $(wildcard include/config/mach/ttg/color1.h) \ $(wildcard include/config/mach/nxeb500hmi.h) \ $(wildcard include/config/mach/netdcu8.h) \ $(wildcard include/config/mach/ng/fvx538.h) \ $(wildcard include/config/mach/ng/fvs338.h) \ $(wildcard include/config/mach/pnx4103.h) \ $(wildcard include/config/mach/hesdb.h) \ $(wildcard include/config/mach/xsilo.h) \ $(wildcard include/config/mach/espresso.h) \ $(wildcard include/config/mach/emlc.h) \ $(wildcard include/config/mach/sisteron.h) \ $(wildcard include/config/mach/rx1950.h) \ $(wildcard include/config/mach/tsc/venus.h) \ $(wildcard include/config/mach/ds101j.h) \ $(wildcard include/config/mach/mxc30030ads.h) \ $(wildcard include/config/mach/fujitsu/wimaxsoc.h) \ $(wildcard include/config/mach/dualpcmodem.h) \ $(wildcard include/config/mach/gesbc9312.h) \ $(wildcard include/config/mach/htcapache.h) \ $(wildcard include/config/mach/ixdp435.h) \ $(wildcard include/config/mach/catprovt100.h) \ $(wildcard include/config/mach/picotux1xx.h) \ $(wildcard include/config/mach/picotux2xx.h) \ $(wildcard include/config/mach/dsmg600.h) \ $(wildcard include/config/mach/empc2.h) \ $(wildcard include/config/mach/ventura.h) \ $(wildcard include/config/mach/phidget/sbc.h) \ $(wildcard include/config/mach/ij3k.h) \ $(wildcard include/config/mach/pisgah.h) \ $(wildcard include/config/mach/omap/fsample.h) \ $(wildcard include/config/mach/sg720.h) \ $(wildcard include/config/mach/redfox.h) \ $(wildcard include/config/mach/mysh/ep9315/1.h) \ $(wildcard include/config/mach/tpf106.h) \ $(wildcard include/config/mach/at91rm9200kg.h) \ $(wildcard include/config/mach/sledb.h) \ $(wildcard include/config/mach/ontrack.h) \ $(wildcard include/config/mach/pm1200.h) \ $(wildcard include/config/mach/ess24xxx.h) \ $(wildcard include/config/mach/coremp7.h) \ $(wildcard include/config/mach/nexcoder/6446.h) \ $(wildcard include/config/mach/stvc8380.h) \ $(wildcard include/config/mach/teklynx.h) \ $(wildcard include/config/mach/carbonado.h) \ $(wildcard include/config/mach/sysmos/mp730.h) \ $(wildcard include/config/mach/snapper/cl15.h) \ $(wildcard include/config/mach/pgigim.h) \ $(wildcard include/config/mach/ptx9160p2.h) \ $(wildcard include/config/mach/dcore1.h) \ $(wildcard include/config/mach/victorpxa.h) \ $(wildcard include/config/mach/mx2dtb.h) \ $(wildcard include/config/mach/pxa/irex/er0100.h) \ $(wildcard include/config/mach/omap/palmz71.h) \ $(wildcard include/config/mach/bartec/deg.h) \ $(wildcard include/config/mach/hw50251.h) \ $(wildcard include/config/mach/ibox.h) \ $(wildcard include/config/mach/atlaslh7a404.h) \ $(wildcard include/config/mach/pt2026.h) \ $(wildcard include/config/mach/htcalpine.h) \ $(wildcard include/config/mach/bartec/vtu.h) \ $(wildcard include/config/mach/vcoreii.h) \ $(wildcard include/config/mach/pdnb3.h) \ $(wildcard include/config/mach/htcbeetles.h) \ $(wildcard include/config/mach/s3c6400.h) \ $(wildcard include/config/mach/s3c2443.h) \ $(wildcard include/config/mach/omap/ldk.h) \ $(wildcard include/config/mach/smdk2460.h) \ $(wildcard include/config/mach/smdk2440.h) \ $(wildcard include/config/mach/smdk2412.h) \ $(wildcard include/config/mach/webbox.h) \ $(wildcard include/config/mach/cwwndp.h) \ $(wildcard include/config/mach/dragon.h) \ $(wildcard include/config/mach/opendo/cpu/board.h) \ $(wildcard include/config/mach/ccm2200.h) \ $(wildcard include/config/mach/etwarm.h) \ $(wildcard include/config/mach/m93030.h) \ $(wildcard include/config/mach/cc7u.h) \ $(wildcard include/config/mach/mtt/ranger.h) \ $(wildcard include/config/mach/nexus.h) \ $(wildcard include/config/mach/desman.h) \ $(wildcard include/config/mach/bkde303.h) \ $(wildcard include/config/mach/smdk2413.h) \ $(wildcard include/config/mach/aml/m7200.h) \ $(wildcard include/config/mach/aml/m5900.h) \ $(wildcard include/config/mach/sg640.h) \ $(wildcard include/config/mach/edg79524.h) \ $(wildcard include/config/mach/ai2410.h) \ $(wildcard include/config/mach/ixp465.h) \ $(wildcard include/config/mach/balloon3.h) \ $(wildcard include/config/mach/heins.h) \ $(wildcard include/config/mach/mpluseva.h) \ $(wildcard include/config/mach/rt042.h) \ $(wildcard include/config/mach/cwiem.h) \ $(wildcard include/config/mach/cm/x270.h) \ $(wildcard include/config/mach/cm/x255.h) \ $(wildcard include/config/mach/esh/at91.h) \ $(wildcard include/config/mach/sandgate3.h) \ $(wildcard include/config/mach/primo.h) \ $(wildcard include/config/mach/gemstone.h) \ $(wildcard include/config/mach/pronghornmetro.h) \ $(wildcard include/config/mach/sidewinder.h) \ $(wildcard include/config/mach/picomod1.h) \ $(wildcard include/config/mach/sg590.h) \ $(wildcard include/config/mach/akai9307.h) \ $(wildcard include/config/mach/fontaine.h) \ $(wildcard include/config/mach/wombat.h) \ $(wildcard include/config/mach/acq300.h) \ $(wildcard include/config/mach/mod/270.h) \ $(wildcard include/config/mach/vc0820.h) \ $(wildcard include/config/mach/ani/aim.h) \ $(wildcard include/config/mach/jellyfish.h) \ $(wildcard include/config/mach/amanita.h) \ $(wildcard include/config/mach/vlink.h) \ $(wildcard include/config/mach/dexflex.h) \ $(wildcard include/config/mach/eigen/ttq.h) \ $(wildcard include/config/mach/arcom/titan.h) \ $(wildcard include/config/mach/tabla.h) \ $(wildcard include/config/mach/mdirac3.h) \ $(wildcard include/config/mach/mrhfbp2.h) \ $(wildcard include/config/mach/at91rm9200rb.h) \ $(wildcard include/config/mach/ani/apm.h) \ $(wildcard include/config/mach/ella1.h) \ $(wildcard include/config/mach/inhand/pxa27x.h) \ $(wildcard include/config/mach/inhand/pxa25x.h) \ $(wildcard include/config/mach/empos/xm.h) \ $(wildcard include/config/mach/empos.h) \ $(wildcard include/config/mach/empos/tiny.h) \ $(wildcard include/config/mach/empos/sm.h) \ $(wildcard include/config/mach/egret.h) \ $(wildcard include/config/mach/ostrich.h) \ $(wildcard include/config/mach/n50.h) \ $(wildcard include/config/mach/ecbat91.h) \ $(wildcard include/config/mach/stareast.h) \ $(wildcard include/config/mach/dspg/dw.h) \ $(wildcard include/config/mach/onearm.h) \ $(wildcard include/config/mach/mrg110/6.h) \ $(wildcard include/config/mach/wrt300nv2.h) \ $(wildcard include/config/mach/xm/bulverde.h) \ $(wildcard include/config/mach/msm6100.h) \ $(wildcard include/config/mach/eti/b1.h) \ $(wildcard include/config/mach/zilog/za9l.h) \ $(wildcard include/config/mach/bit2440.h) \ $(wildcard include/config/mach/nbi.h) \ $(wildcard include/config/mach/smdk2443.h) \ $(wildcard include/config/mach/vdavinci.h) \ $(wildcard include/config/mach/atc6.h) \ $(wildcard include/config/mach/multmdw.h) \ $(wildcard include/config/mach/mba2440.h) \ $(wildcard include/config/mach/ecsd.h) \ $(wildcard include/config/mach/palmz31.h) \ $(wildcard include/config/mach/fsg.h) \ $(wildcard include/config/mach/razor101.h) \ $(wildcard include/config/mach/opera/tdm.h) \ $(wildcard include/config/mach/comcerto.h) \ $(wildcard include/config/mach/tb0319.h) \ $(wildcard include/config/mach/kws8000.h) \ $(wildcard include/config/mach/b2.h) \ $(wildcard include/config/mach/lcl54.h) \ $(wildcard include/config/mach/at91sam9260ek.h) \ $(wildcard include/config/mach/glantank.h) \ $(wildcard include/config/mach/n2100.h) \ $(wildcard include/config/mach/n4100.h) \ $(wildcard include/config/mach/vertical/rsc4.h) \ $(wildcard include/config/mach/sg8100.h) \ $(wildcard include/config/mach/im42xx.h) \ $(wildcard include/config/mach/ftxx.h) \ $(wildcard include/config/mach/lwfusion.h) \ $(wildcard include/config/mach/qt2410.h) \ $(wildcard include/config/mach/kixrp435.h) \ $(wildcard include/config/mach/ccw9c.h) \ $(wildcard include/config/mach/dabhs.h) \ $(wildcard include/config/mach/gzmx.h) \ $(wildcard include/config/mach/ipnw100ap.h) \ $(wildcard include/config/mach/cc9p9360dev.h) \ $(wildcard include/config/mach/cc9p9750dev.h) \ $(wildcard include/config/mach/cc9p9360val.h) \ $(wildcard include/config/mach/cc9p9750val.h) \ $(wildcard include/config/mach/nx70v.h) \ $(wildcard include/config/mach/at91rm9200df.h) \ $(wildcard include/config/mach/se/pilot2.h) \ $(wildcard include/config/mach/mtcn/t800.h) \ $(wildcard include/config/mach/vcmx212.h) \ $(wildcard include/config/mach/lynx.h) \ $(wildcard include/config/mach/at91sam9260id.h) \ $(wildcard include/config/mach/hw86052.h) \ $(wildcard include/config/mach/pilz/pmi3.h) \ $(wildcard include/config/mach/edb9302a.h) \ $(wildcard include/config/mach/edb9307a.h) \ $(wildcard include/config/mach/ct/dfs.h) \ $(wildcard include/config/mach/pilz/pmi4.h) \ $(wildcard include/config/mach/xceednp/ixp.h) \ $(wildcard include/config/mach/smdk2442b.h) \ $(wildcard include/config/mach/xnode.h) \ $(wildcard include/config/mach/aidx270.h) \ $(wildcard include/config/mach/rema.h) \ $(wildcard include/config/mach/bps1000.h) \ $(wildcard include/config/mach/hw90350.h) \ $(wildcard include/config/mach/omap/3430sdp.h) \ $(wildcard include/config/mach/bluetouch.h) \ $(wildcard include/config/mach/vstms.h) \ $(wildcard include/config/mach/xsbase270.h) \ $(wildcard include/config/mach/at91sam9260ek/cn.h) \ $(wildcard include/config/mach/adsturboxb.h) \ $(wildcard include/config/mach/oti4110.h) \ $(wildcard include/config/mach/hme/pxa.h) \ $(wildcard include/config/mach/deisterdca.h) \ $(wildcard include/config/mach/ces/ssem2.h) \ $(wildcard include/config/mach/ces/mtr.h) \ $(wildcard include/config/mach/tds/avng/sbc.h) \ $(wildcard include/config/mach/everest.h) \ $(wildcard include/config/mach/pnx4010.h) \ $(wildcard include/config/mach/oxnas.h) \ $(wildcard include/config/mach/fiori.h) \ $(wildcard include/config/mach/ml1200.h) \ $(wildcard include/config/mach/pecos.h) \ $(wildcard include/config/mach/nb2xxx.h) \ $(wildcard include/config/mach/hw6900.h) \ $(wildcard include/config/mach/cdcs/quoll.h) \ $(wildcard include/config/mach/quicksilver.h) \ $(wildcard include/config/mach/uplat926.h) \ $(wildcard include/config/mach/dep2410/thomas.h) \ $(wildcard include/config/mach/dtk2410.h) \ $(wildcard include/config/mach/chili.h) \ $(wildcard include/config/mach/demeter.h) \ $(wildcard include/config/mach/dionysus.h) \ $(wildcard include/config/mach/as352x.h) \ $(wildcard include/config/mach/service.h) \ $(wildcard include/config/mach/cs/e9301.h) \ $(wildcard include/config/mach/micro9m.h) \ $(wildcard include/config/mach/ia/mospck.h) \ $(wildcard include/config/mach/ql201b.h) \ $(wildcard include/config/mach/bbm.h) \ $(wildcard include/config/mach/exxx.h) \ $(wildcard include/config/mach/wma11b.h) \ $(wildcard include/config/mach/pelco/atlas.h) \ $(wildcard include/config/mach/g500.h) \ $(wildcard include/config/mach/bug.h) \ $(wildcard include/config/mach/mx33ads.h) \ $(wildcard include/config/mach/chub.h) \ $(wildcard include/config/mach/neo1973/gta01.h) \ $(wildcard include/config/mach/w90n740.h) \ $(wildcard include/config/mach/medallion/sa2410.h) \ $(wildcard include/config/mach/ia/cpu/9200/2.h) \ $(wildcard include/config/mach/dimmrm9200.h) \ $(wildcard include/config/mach/pm9261.h) \ $(wildcard include/config/mach/ml7304.h) \ $(wildcard include/config/mach/ucp250.h) \ $(wildcard include/config/mach/intboard.h) \ $(wildcard include/config/mach/gulfstream.h) \ $(wildcard include/config/mach/labquest.h) \ $(wildcard include/config/mach/vcmx313.h) \ $(wildcard include/config/mach/urg200.h) \ $(wildcard include/config/mach/cpux255lcdnet.h) \ $(wildcard include/config/mach/netdcu9.h) \ $(wildcard include/config/mach/netdcu10.h) \ $(wildcard include/config/mach/dspg/dga.h) \ $(wildcard include/config/mach/dspg/dvw.h) \ $(wildcard include/config/mach/solos.h) \ $(wildcard include/config/mach/at91sam9263ek.h) \ $(wildcard include/config/mach/osstbox.h) \ $(wildcard include/config/mach/kbat9261.h) \ $(wildcard include/config/mach/ct1100.h) \ $(wildcard include/config/mach/akcppxa.h) \ $(wildcard include/config/mach/ochaya1020.h) \ $(wildcard include/config/mach/hitrack.h) \ $(wildcard include/config/mach/syme1.h) \ $(wildcard include/config/mach/syhl1.h) \ $(wildcard include/config/mach/empca400.h) \ $(wildcard include/config/mach/em7210.h) \ $(wildcard include/config/mach/htchermes.h) \ $(wildcard include/config/mach/eti/c1.h) \ $(wildcard include/config/mach/ac100.h) \ $(wildcard include/config/mach/sneetch.h) \ $(wildcard include/config/mach/studentmate.h) \ $(wildcard include/config/mach/zir2410.h) \ $(wildcard include/config/mach/zir2413.h) \ $(wildcard include/config/mach/dlonip3.h) \ $(wildcard include/config/mach/instream.h) \ $(wildcard include/config/mach/ambarella.h) \ $(wildcard include/config/mach/nevis.h) \ $(wildcard include/config/mach/htc/trinity.h) \ $(wildcard include/config/mach/ql202b.h) \ $(wildcard include/config/mach/vpac270.h) \ $(wildcard include/config/mach/rd129.h) \ $(wildcard include/config/mach/htcwizard.h) \ $(wildcard include/config/mach/treo680.h) \ $(wildcard include/config/mach/tecon/tmezon.h) \ $(wildcard include/config/mach/zylonite.h) \ $(wildcard include/config/mach/gene1270.h) \ $(wildcard include/config/mach/zir2412.h) \ $(wildcard include/config/mach/mx31lite.h) \ $(wildcard include/config/mach/t700wx.h) \ $(wildcard include/config/mach/vf100.h) \ $(wildcard include/config/mach/nsb2.h) \ $(wildcard include/config/mach/nxhmi/bb.h) \ $(wildcard include/config/mach/nxhmi/re.h) \ $(wildcard include/config/mach/n4100pro.h) \ $(wildcard include/config/mach/sam9260.h) \ $(wildcard include/config/mach/omap/treo600.h) \ $(wildcard include/config/mach/indy2410.h) \ $(wildcard include/config/mach/nelt/a.h) \ $(wildcard include/config/mach/n311.h) \ $(wildcard include/config/mach/at91sam9260vgk.h) \ $(wildcard include/config/mach/at91leppe.h) \ $(wildcard include/config/mach/at91lepccn.h) \ $(wildcard include/config/mach/apc7100.h) \ $(wildcard include/config/mach/stargazer.h) \ $(wildcard include/config/mach/sonata.h) \ $(wildcard include/config/mach/schmoogie.h) \ $(wildcard include/config/mach/aztool.h) \ $(wildcard include/config/mach/mioa701.h) \ $(wildcard include/config/mach/sxni9260.h) \ $(wildcard include/config/mach/mxc27520evb.h) \ $(wildcard include/config/mach/armadillo5x0.h) \ $(wildcard include/config/mach/mb9260.h) \ $(wildcard include/config/mach/mb9263.h) \ $(wildcard include/config/mach/ipac9302.h) \ $(wildcard include/config/mach/cc9p9360js.h) \ $(wildcard include/config/mach/gallium.h) \ $(wildcard include/config/mach/msc2410.h) \ $(wildcard include/config/mach/ghi270.h) \ $(wildcard include/config/mach/davinci/leonardo.h) \ $(wildcard include/config/mach/oiab.h) \ $(wildcard include/config/mach/smdk6400.h) \ $(wildcard include/config/mach/nokia/n800.h) \ $(wildcard include/config/mach/greenphone.h) \ $(wildcard include/config/mach/compexwp18.h) \ $(wildcard include/config/mach/xmate.h) \ $(wildcard include/config/mach/energizer.h) \ $(wildcard include/config/mach/ime1.h) \ $(wildcard include/config/mach/swedatms.h) \ $(wildcard include/config/mach/ntnp435c.h) \ $(wildcard include/config/mach/spectro2.h) \ $(wildcard include/config/mach/h6039.h) \ $(wildcard include/config/mach/ep80219.h) \ $(wildcard include/config/mach/samoa/ii.h) \ $(wildcard include/config/mach/cwmxl.h) \ $(wildcard include/config/mach/as9200.h) \ $(wildcard include/config/mach/sfx1149.h) \ $(wildcard include/config/mach/navi010.h) \ $(wildcard include/config/mach/multmdp.h) \ $(wildcard include/config/mach/scb9520.h) \ $(wildcard include/config/mach/htcathena.h) \ $(wildcard include/config/mach/xp179.h) \ $(wildcard include/config/mach/h4300.h) \ $(wildcard include/config/mach/goramo/mlr.h) \ $(wildcard include/config/mach/mxc30020evb.h) \ $(wildcard include/config/mach/adsbitsyg5.h) \ $(wildcard include/config/mach/adsportalplus.h) \ $(wildcard include/config/mach/mmsp2plus.h) \ $(wildcard include/config/mach/em/x270.h) \ $(wildcard include/config/mach/tpp302.h) \ $(wildcard include/config/mach/tpm104.h) \ $(wildcard include/config/mach/tpm102.h) \ $(wildcard include/config/mach/tpm109.h) \ $(wildcard include/config/mach/fbxo1.h) \ $(wildcard include/config/mach/hxd8.h) \ $(wildcard include/config/mach/neo1973/gta02.h) \ $(wildcard include/config/mach/emtest.h) \ $(wildcard include/config/mach/ad6900.h) \ $(wildcard include/config/mach/europa.h) \ $(wildcard include/config/mach/metroconnect.h) \ $(wildcard include/config/mach/ez/s2410.h) \ $(wildcard include/config/mach/ez/s2440.h) \ $(wildcard include/config/mach/ez/ep9312.h) \ $(wildcard include/config/mach/ez/ep9315.h) \ $(wildcard include/config/mach/ez/x7.h) \ $(wildcard include/config/mach/godotdb.h) \ $(wildcard include/config/mach/mistral.h) \ $(wildcard include/config/mach/msm.h) \ $(wildcard include/config/mach/ct5910.h) \ $(wildcard include/config/mach/ct5912.h) \ $(wildcard include/config/mach/hynet/ine.h) \ $(wildcard include/config/mach/hynet/app.h) \ $(wildcard include/config/mach/msm7200.h) \ $(wildcard include/config/mach/msm7600.h) \ $(wildcard include/config/mach/ceb255.h) \ $(wildcard include/config/mach/ciel.h) \ $(wildcard include/config/mach/slm5650.h) \ $(wildcard include/config/mach/at91sam9rlek.h) \ $(wildcard include/config/mach/comtech/router.h) \ $(wildcard include/config/mach/sbc2410x.h) \ $(wildcard include/config/mach/at4x0bd.h) \ $(wildcard include/config/mach/cbifr.h) \ $(wildcard include/config/mach/arcom/quantum.h) \ $(wildcard include/config/mach/matrix520.h) \ $(wildcard include/config/mach/matrix510.h) \ $(wildcard include/config/mach/matrix500.h) \ $(wildcard include/config/mach/m501.h) \ $(wildcard include/config/mach/aaeon1270.h) \ $(wildcard include/config/mach/matrix500ev.h) \ $(wildcard include/config/mach/pac500.h) \ $(wildcard include/config/mach/pnx8181.h) \ $(wildcard include/config/mach/colibri320.h) \ $(wildcard include/config/mach/aztoolbb.h) \ $(wildcard include/config/mach/aztoolg2.h) \ $(wildcard include/config/mach/dvlhost.h) \ $(wildcard include/config/mach/zir9200.h) \ $(wildcard include/config/mach/zir9260.h) \ $(wildcard include/config/mach/cocopah.h) \ $(wildcard include/config/mach/nds.h) \ $(wildcard include/config/mach/rosencrantz.h) \ $(wildcard include/config/mach/fttx/odsc.h) \ $(wildcard include/config/mach/classe/r6904.h) \ $(wildcard include/config/mach/cam60.h) \ $(wildcard include/config/mach/mxc30031ads.h) \ $(wildcard include/config/mach/datacall.h) \ $(wildcard include/config/mach/at91eb01.h) \ $(wildcard include/config/mach/rty.h) \ $(wildcard include/config/mach/dwl2100.h) \ $(wildcard include/config/mach/vinsi.h) \ $(wildcard include/config/mach/db88f5281.h) \ $(wildcard include/config/mach/csb726.h) \ $(wildcard include/config/mach/tik27.h) \ $(wildcard include/config/mach/mx/uc7420.h) \ $(wildcard include/config/mach/rirm3.h) \ $(wildcard include/config/mach/pelco/odyssey.h) \ $(wildcard include/config/mach/adx/abox.h) \ $(wildcard include/config/mach/adx/tpid.h) \ $(wildcard include/config/mach/minicheck.h) \ $(wildcard include/config/mach/idam.h) \ $(wildcard include/config/mach/mario/mx.h) \ $(wildcard include/config/mach/vi1888.h) \ $(wildcard include/config/mach/zr4230.h) \ $(wildcard include/config/mach/t1/ix/blue.h) \ $(wildcard include/config/mach/syhq2.h) \ $(wildcard include/config/mach/computime/r3.h) \ $(wildcard include/config/mach/oratis.h) \ $(wildcard include/config/mach/mikko.h) \ $(wildcard include/config/mach/holon.h) \ $(wildcard include/config/mach/olip8.h) \ $(wildcard include/config/mach/ghi270hg.h) \ $(wildcard include/config/mach/davinci/dm6467/evm.h) \ $(wildcard include/config/mach/davinci/dm355/evm.h) \ $(wildcard include/config/mach/blackriver.h) \ $(wildcard include/config/mach/sandgatewp.h) \ $(wildcard include/config/mach/cdotbwsg.h) \ $(wildcard include/config/mach/quark963.h) \ $(wildcard include/config/mach/csb735.h) \ $(wildcard include/config/mach/littleton.h) \ $(wildcard include/config/mach/mio/p550.h) \ $(wildcard include/config/mach/motion2440.h) \ $(wildcard include/config/mach/imm500.h) \ $(wildcard include/config/mach/homematic.h) \ $(wildcard include/config/mach/ermine.h) \ $(wildcard include/config/mach/kb9202b.h) \ $(wildcard include/config/mach/hs1xx.h) \ $(wildcard include/config/mach/studentmate2440.h) \ $(wildcard include/config/mach/arvoo/l1/z1.h) \ $(wildcard include/config/mach/dep2410k.h) \ $(wildcard include/config/mach/xxsvideo.h) \ $(wildcard include/config/mach/im4004.h) \ $(wildcard include/config/mach/ochaya1050.h) \ $(wildcard include/config/mach/lep9261.h) \ $(wildcard include/config/mach/svenmeb.h) \ $(wildcard include/config/mach/fortunet2ne.h) \ $(wildcard include/config/mach/nxhx.h) \ $(wildcard include/config/mach/realview/pb11mp.h) \ $(wildcard include/config/mach/ids500.h) \ $(wildcard include/config/mach/ors/n725.h) \ $(wildcard include/config/mach/hsdarm.h) \ $(wildcard include/config/mach/sha/pon003.h) \ $(wildcard include/config/mach/sha/pon004.h) \ $(wildcard include/config/mach/sha/pon007.h) \ $(wildcard include/config/mach/sha/pon011.h) \ $(wildcard include/config/mach/h6042.h) \ $(wildcard include/config/mach/h6043.h) \ $(wildcard include/config/mach/looxc550.h) \ $(wildcard include/config/mach/cnty/titan.h) \ $(wildcard include/config/mach/app3xx.h) \ $(wildcard include/config/mach/sideoatsgrama.h) \ $(wildcard include/config/mach/treo700p.h) \ $(wildcard include/config/mach/treo700w.h) \ $(wildcard include/config/mach/treo750.h) \ $(wildcard include/config/mach/treo755p.h) \ $(wildcard include/config/mach/ezreganut9200.h) \ $(wildcard include/config/mach/sarge.h) \ $(wildcard include/config/mach/a696.h) \ $(wildcard include/config/mach/turtle.h) \ $(wildcard include/config/mach/mx27/3ds.h) \ $(wildcard include/config/mach/bishop.h) \ $(wildcard include/config/mach/pxx.h) \ $(wildcard include/config/mach/redwood.h) \ $(wildcard include/config/mach/omap/2430dlp.h) \ $(wildcard include/config/mach/omap/2430osk.h) \ $(wildcard include/config/mach/sardine.h) \ $(wildcard include/config/mach/halibut.h) \ $(wildcard include/config/mach/trout.h) \ $(wildcard include/config/mach/goldfish.h) \ $(wildcard include/config/mach/gesbc2440.h) \ $(wildcard include/config/mach/nomad.h) \ $(wildcard include/config/mach/rosalind.h) \ $(wildcard include/config/mach/cc9p9215.h) \ $(wildcard include/config/mach/cc9p9210.h) \ $(wildcard include/config/mach/cc9p9215js.h) \ $(wildcard include/config/mach/cc9p9210js.h) \ $(wildcard include/config/mach/nasffe.h) \ $(wildcard include/config/mach/tn2x0bd.h) \ $(wildcard include/config/mach/gwmpxa.h) \ $(wildcard include/config/mach/exyplus.h) \ $(wildcard include/config/mach/jadoo21.h) \ $(wildcard include/config/mach/looxn560.h) \ $(wildcard include/config/mach/bonsai.h) \ $(wildcard include/config/mach/adsmilgato.h) \ $(wildcard include/config/mach/gba.h) \ $(wildcard include/config/mach/h6044.h) \ $(wildcard include/config/mach/app.h) \ $(wildcard include/config/mach/tct/hammer.h) \ $(wildcard include/config/mach/herald.h) \ $(wildcard include/config/mach/artemis.h) \ $(wildcard include/config/mach/htctitan.h) \ $(wildcard include/config/mach/qranium.h) \ $(wildcard include/config/mach/adx/wsc2.h) \ $(wildcard include/config/mach/adx/medcom.h) \ $(wildcard include/config/mach/bboard.h) \ $(wildcard include/config/mach/cambria.h) \ $(wildcard include/config/mach/mt7xxx.h) \ $(wildcard include/config/mach/matrix512.h) \ $(wildcard include/config/mach/matrix522.h) \ $(wildcard include/config/mach/ipac5010.h) \ $(wildcard include/config/mach/sakura.h) \ $(wildcard include/config/mach/grocx.h) \ $(wildcard include/config/mach/pm9263.h) \ $(wildcard include/config/mach/sim/one.h) \ $(wildcard include/config/mach/acq132.h) \ $(wildcard include/config/mach/datr.h) \ $(wildcard include/config/mach/actux1.h) \ $(wildcard include/config/mach/actux2.h) \ $(wildcard include/config/mach/actux3.h) \ $(wildcard include/config/mach/flexit.h) \ $(wildcard include/config/mach/bh2x0bd.h) \ $(wildcard include/config/mach/atb2002.h) \ $(wildcard include/config/mach/xenon.h) \ $(wildcard include/config/mach/fm607.h) \ $(wildcard include/config/mach/matrix514.h) \ $(wildcard include/config/mach/matrix524.h) \ $(wildcard include/config/mach/inpod.h) \ $(wildcard include/config/mach/jive.h) \ $(wildcard include/config/mach/tll/mx21.h) \ $(wildcard include/config/mach/sbc2800.h) \ $(wildcard include/config/mach/cc7ucamry.h) \ $(wildcard include/config/mach/ubisys/p9/sc15.h) \ $(wildcard include/config/mach/ubisys/p9/ssc2d10.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3.h) \ $(wildcard include/config/mach/aml/m8000.h) \ $(wildcard include/config/mach/snapper/270.h) \ $(wildcard include/config/mach/omap/bbx.h) \ $(wildcard include/config/mach/ucn2410.h) \ $(wildcard include/config/mach/sam9/l9260.h) \ $(wildcard include/config/mach/eti/c2.h) \ $(wildcard include/config/mach/avalanche.h) \ $(wildcard include/config/mach/realview/pb1176.h) \ $(wildcard include/config/mach/dp1500.h) \ $(wildcard include/config/mach/apple/iphone.h) \ $(wildcard include/config/mach/yl9200.h) \ $(wildcard include/config/mach/rd88f5182.h) \ $(wildcard include/config/mach/kurobox/pro.h) \ $(wildcard include/config/mach/se/poet.h) \ $(wildcard include/config/mach/mx31/3ds.h) \ $(wildcard include/config/mach/r270.h) \ $(wildcard include/config/mach/armour21.h) \ $(wildcard include/config/mach/dt2.h) \ $(wildcard include/config/mach/vt4.h) \ $(wildcard include/config/mach/tyco320.h) \ $(wildcard include/config/mach/adma.h) \ $(wildcard include/config/mach/wp188.h) \ $(wildcard include/config/mach/corsica.h) \ $(wildcard include/config/mach/bigeye.h) \ $(wildcard include/config/mach/tll5000.h) \ $(wildcard include/config/mach/bebot.h) \ $(wildcard include/config/mach/qong.h) \ $(wildcard include/config/mach/tcompact.h) \ $(wildcard include/config/mach/puma5.h) \ $(wildcard include/config/mach/elara.h) \ $(wildcard include/config/mach/ellington.h) \ $(wildcard include/config/mach/xda/atom.h) \ $(wildcard include/config/mach/energizer2.h) \ $(wildcard include/config/mach/odin.h) \ $(wildcard include/config/mach/actux4.h) \ $(wildcard include/config/mach/esl/omap.h) \ $(wildcard include/config/mach/omap2evm.h) \ $(wildcard include/config/mach/omap3evm.h) \ $(wildcard include/config/mach/adx/pcu57.h) \ $(wildcard include/config/mach/monaco.h) \ $(wildcard include/config/mach/levante.h) \ $(wildcard include/config/mach/tmxipx425.h) \ $(wildcard include/config/mach/leep.h) \ $(wildcard include/config/mach/raad.h) \ $(wildcard include/config/mach/dns323.h) \ $(wildcard include/config/mach/ap1000.h) \ $(wildcard include/config/mach/a9sam6432.h) \ $(wildcard include/config/mach/shiny.h) \ $(wildcard include/config/mach/omap3/beagle.h) \ $(wildcard include/config/mach/csr/bdb2.h) \ $(wildcard include/config/mach/nokia/n810.h) \ $(wildcard include/config/mach/c270.h) \ $(wildcard include/config/mach/sentry.h) \ $(wildcard include/config/mach/pcm038.h) \ $(wildcard include/config/mach/anc300.h) \ $(wildcard include/config/mach/htckaiser.h) \ $(wildcard include/config/mach/sbat100.h) \ $(wildcard include/config/mach/modunorm.h) \ $(wildcard include/config/mach/pelos/twarm.h) \ $(wildcard include/config/mach/flank.h) \ $(wildcard include/config/mach/sirloin.h) \ $(wildcard include/config/mach/brisket.h) \ $(wildcard include/config/mach/chuck.h) \ $(wildcard include/config/mach/otter.h) \ $(wildcard include/config/mach/davinci/ldk.h) \ $(wildcard include/config/mach/phreedom.h) \ $(wildcard include/config/mach/sg310.h) \ $(wildcard include/config/mach/ts209.h) \ $(wildcard include/config/mach/at91cap9adk.h) \ $(wildcard include/config/mach/tion9315.h) \ $(wildcard include/config/mach/mast.h) \ $(wildcard include/config/mach/pfw.h) \ $(wildcard include/config/mach/yl/p2440.h) \ $(wildcard include/config/mach/zsbc32.h) \ $(wildcard include/config/mach/omap/pace2.h) \ $(wildcard include/config/mach/imx/pace2.h) \ $(wildcard include/config/mach/mx31moboard.h) \ $(wildcard include/config/mach/mx37/3ds.h) \ $(wildcard include/config/mach/rcc.h) \ $(wildcard include/config/mach/arm9.h) \ $(wildcard include/config/mach/vision/ep9307.h) \ $(wildcard include/config/mach/scly1000.h) \ $(wildcard include/config/mach/fontel/ep.h) \ $(wildcard include/config/mach/voiceblue3g.h) \ $(wildcard include/config/mach/tt9200.h) \ $(wildcard include/config/mach/digi2410.h) \ $(wildcard include/config/mach/terastation/pro2.h) \ $(wildcard include/config/mach/linkstation/pro.h) \ $(wildcard include/config/mach/motorola/a780.h) \ $(wildcard include/config/mach/motorola/e6.h) \ $(wildcard include/config/mach/motorola/e2.h) \ $(wildcard include/config/mach/motorola/e680.h) \ $(wildcard include/config/mach/ur2410.h) \ $(wildcard include/config/mach/tas9261.h) \ $(wildcard include/config/mach/hermes/hd.h) \ $(wildcard include/config/mach/perseo/hd.h) \ $(wildcard include/config/mach/stargazer2.h) \ $(wildcard include/config/mach/e350.h) \ $(wildcard include/config/mach/wpcm450.h) \ $(wildcard include/config/mach/cartesio.h) \ $(wildcard include/config/mach/toybox.h) \ $(wildcard include/config/mach/tx27.h) \ $(wildcard include/config/mach/ts409.h) \ $(wildcard include/config/mach/p300.h) \ $(wildcard include/config/mach/xdacomet.h) \ $(wildcard include/config/mach/dexflex2.h) \ $(wildcard include/config/mach/ow.h) \ $(wildcard include/config/mach/armebs3.h) \ $(wildcard include/config/mach/u3.h) \ $(wildcard include/config/mach/smdk2450.h) \ $(wildcard include/config/mach/rsi/ews.h) \ $(wildcard include/config/mach/tnb.h) \ $(wildcard include/config/mach/toepath.h) \ $(wildcard include/config/mach/kb9263.h) \ $(wildcard include/config/mach/mt7108.h) \ $(wildcard include/config/mach/smtr2440.h) \ $(wildcard include/config/mach/manao.h) \ $(wildcard include/config/mach/cm/x300.h) \ $(wildcard include/config/mach/gulfstream/kp.h) \ $(wildcard include/config/mach/lanreadyfn522.h) \ $(wildcard include/config/mach/arma37.h) \ $(wildcard include/config/mach/mendel.h) \ $(wildcard include/config/mach/pelco/iliad.h) \ $(wildcard include/config/mach/unit2p.h) \ $(wildcard include/config/mach/inc20otter.h) \ $(wildcard include/config/mach/at91sam9g20ek.h) \ $(wildcard include/config/mach/storcenter.h) \ $(wildcard include/config/mach/smdk6410.h) \ $(wildcard include/config/mach/u300.h) \ $(wildcard include/config/mach/u500.h) \ $(wildcard include/config/mach/ds9260.h) \ $(wildcard include/config/mach/riverrock.h) \ $(wildcard include/config/mach/scibath.h) \ $(wildcard include/config/mach/at91sam7se512ek.h) \ $(wildcard include/config/mach/wrt350n/v2.h) \ $(wildcard include/config/mach/multimedia.h) \ $(wildcard include/config/mach/marvin.h) \ $(wildcard include/config/mach/x500.h) \ $(wildcard include/config/mach/awlug4lcu.h) \ $(wildcard include/config/mach/palermoc.h) \ $(wildcard include/config/mach/omap/ldp.h) \ $(wildcard include/config/mach/ip500.h) \ $(wildcard include/config/mach/ase2.h) \ $(wildcard include/config/mach/mx35evb.h) \ $(wildcard include/config/mach/aml/m8050.h) \ $(wildcard include/config/mach/mx35/3ds.h) \ $(wildcard include/config/mach/mars.h) \ $(wildcard include/config/mach/neuros/osd2.h) \ $(wildcard include/config/mach/badger.h) \ $(wildcard include/config/mach/trizeps4wl.h) \ $(wildcard include/config/mach/trizeps5.h) \ $(wildcard include/config/mach/marlin.h) \ $(wildcard include/config/mach/ts78xx.h) \ $(wildcard include/config/mach/hpipaq214.h) \ $(wildcard include/config/mach/at572d940dcm.h) \ $(wildcard include/config/mach/ne1board.h) \ $(wildcard include/config/mach/zante.h) \ $(wildcard include/config/mach/sffsdr.h) \ $(wildcard include/config/mach/tw2662.h) \ $(wildcard include/config/mach/vf10xx.h) \ $(wildcard include/config/mach/zoran43xx.h) \ $(wildcard include/config/mach/sonix926.h) \ $(wildcard include/config/mach/celestialsemi.h) \ $(wildcard include/config/mach/cc9m2443js.h) \ $(wildcard include/config/mach/tw5334.h) \ $(wildcard include/config/mach/htcartemis.h) \ $(wildcard include/config/mach/nal/hlite.h) \ $(wildcard include/config/mach/htcvogue.h) \ $(wildcard include/config/mach/smartweb.h) \ $(wildcard include/config/mach/mv86xx.h) \ $(wildcard include/config/mach/mv87xx.h) \ $(wildcard include/config/mach/songyoungho.h) \ $(wildcard include/config/mach/younghotema.h) \ $(wildcard include/config/mach/pcm037.h) \ $(wildcard include/config/mach/mmvp.h) \ $(wildcard include/config/mach/mmap.h) \ $(wildcard include/config/mach/ptid2410.h) \ $(wildcard include/config/mach/james/926.h) \ $(wildcard include/config/mach/fm6000.h) \ $(wildcard include/config/mach/db88f6281/bp.h) \ $(wildcard include/config/mach/rd88f6192/nas.h) \ $(wildcard include/config/mach/rd88f6281.h) \ $(wildcard include/config/mach/db78x00/bp.h) \ $(wildcard include/config/mach/smdk2416.h) \ $(wildcard include/config/mach/oce/spider/si.h) \ $(wildcard include/config/mach/oce/spider/sk.h) \ $(wildcard include/config/mach/rovern6.h) \ $(wildcard include/config/mach/pelco/evolution.h) \ $(wildcard include/config/mach/wbd111.h) \ $(wildcard include/config/mach/elaracpe.h) \ $(wildcard include/config/mach/mabv3.h) \ $(wildcard include/config/mach/mv2120.h) \ $(wildcard include/config/mach/csb737.h) \ $(wildcard include/config/mach/mx51/3ds.h) \ $(wildcard include/config/mach/g900.h) \ $(wildcard include/config/mach/apf27.h) \ $(wildcard include/config/mach/ggus2000.h) \ $(wildcard include/config/mach/omap/2430/mimic.h) \ $(wildcard include/config/mach/imx27lite.h) \ $(wildcard include/config/mach/almex.h) \ $(wildcard include/config/mach/control.h) \ $(wildcard include/config/mach/mba2410.h) \ $(wildcard include/config/mach/volcano.h) \ $(wildcard include/config/mach/zenith.h) \ $(wildcard include/config/mach/muchip.h) \ $(wildcard include/config/mach/magellan.h) \ $(wildcard include/config/mach/usb/a9260.h) \ $(wildcard include/config/mach/usb/a9263.h) \ $(wildcard include/config/mach/qil/a9260.h) \ $(wildcard include/config/mach/cme9210.h) \ $(wildcard include/config/mach/hczh4.h) \ $(wildcard include/config/mach/spearbasic.h) \ $(wildcard include/config/mach/dep2440.h) \ $(wildcard include/config/mach/hdl/gxr.h) \ $(wildcard include/config/mach/hdl/gt.h) \ $(wildcard include/config/mach/hdl/4g.h) \ $(wildcard include/config/mach/s3c6000.h) \ $(wildcard include/config/mach/mmsp2/mdk.h) \ $(wildcard include/config/mach/mpx220.h) \ $(wildcard include/config/mach/kzm/arm11/01.h) \ $(wildcard include/config/mach/htc/polaris.h) \ $(wildcard include/config/mach/htc/kaiser.h) \ $(wildcard include/config/mach/lg/ks20.h) \ $(wildcard include/config/mach/hhgps.h) \ $(wildcard include/config/mach/nokia/n810/wimax.h) \ $(wildcard include/config/mach/insight.h) \ $(wildcard include/config/mach/sapphire.h) \ $(wildcard include/config/mach/csb637xo.h) \ $(wildcard include/config/mach/evisiong.h) \ $(wildcard include/config/mach/stmp37xx.h) \ $(wildcard include/config/mach/stmp378x.h) \ $(wildcard include/config/mach/tnt.h) \ $(wildcard include/config/mach/tbxt.h) \ $(wildcard include/config/mach/playmate.h) \ $(wildcard include/config/mach/pns10.h) \ $(wildcard include/config/mach/eznavi.h) \ $(wildcard include/config/mach/ps4000.h) \ $(wildcard include/config/mach/ezx/a780.h) \ $(wildcard include/config/mach/ezx/e680.h) \ $(wildcard include/config/mach/ezx/a1200.h) \ $(wildcard include/config/mach/ezx/e6.h) \ $(wildcard include/config/mach/ezx/e2.h) \ $(wildcard include/config/mach/ezx/a910.h) \ $(wildcard include/config/mach/cwmx31.h) \ $(wildcard include/config/mach/sl2312.h) \ $(wildcard include/config/mach/blenny.h) \ $(wildcard include/config/mach/ds107.h) \ $(wildcard include/config/mach/dsx07.h) \ $(wildcard include/config/mach/picocom1.h) \ $(wildcard include/config/mach/lynx/wolverine.h) \ $(wildcard include/config/mach/ubisys/p9/sc19.h) \ $(wildcard include/config/mach/kratos/low.h) \ $(wildcard include/config/mach/m700.h) \ $(wildcard include/config/mach/edmini/v2.h) \ $(wildcard include/config/mach/zipit2.h) \ $(wildcard include/config/mach/hslfemtocell.h) \ $(wildcard include/config/mach/daintree/at91.h) \ $(wildcard include/config/mach/sg560usb.h) \ $(wildcard include/config/mach/omap3/pandora.h) \ $(wildcard include/config/mach/usr8200.h) \ $(wildcard include/config/mach/s1s65k.h) \ $(wildcard include/config/mach/s2s65a.h) \ $(wildcard include/config/mach/icore.h) \ $(wildcard include/config/mach/mss2.h) \ $(wildcard include/config/mach/belmont.h) \ $(wildcard include/config/mach/asusp525.h) \ $(wildcard include/config/mach/lb88rc8480.h) \ $(wildcard include/config/mach/hipxa.h) \ $(wildcard include/config/mach/mx25/3ds.h) \ $(wildcard include/config/mach/m800.h) \ $(wildcard include/config/mach/omap3530/lv/som.h) \ $(wildcard include/config/mach/prima/evb.h) \ $(wildcard include/config/mach/mx31bt1.h) \ $(wildcard include/config/mach/atlas4/evb.h) \ $(wildcard include/config/mach/mx31cicada.h) \ $(wildcard include/config/mach/mi424wr.h) \ $(wildcard include/config/mach/axs/ultrax.h) \ $(wildcard include/config/mach/at572d940deb.h) \ $(wildcard include/config/mach/davinci/da830/evm.h) \ $(wildcard include/config/mach/ep9302.h) \ $(wildcard include/config/mach/at572d940hfeb.h) \ $(wildcard include/config/mach/cybook3.h) \ $(wildcard include/config/mach/wdg002.h) \ $(wildcard include/config/mach/sg560adsl.h) \ $(wildcard include/config/mach/nextio/n2800/ica.h) \ $(wildcard include/config/mach/dove/db.h) \ $(wildcard include/config/mach/marvell/newdb.h) \ $(wildcard include/config/mach/vandihud.h) \ $(wildcard include/config/mach/magx/e8.h) \ $(wildcard include/config/mach/magx/z6.h) \ $(wildcard include/config/mach/magx/v8.h) \ $(wildcard include/config/mach/magx/u9.h) \ $(wildcard include/config/mach/toughcf08.h) \ $(wildcard include/config/mach/zw4400.h) \ $(wildcard include/config/mach/marat91.h) \ $(wildcard include/config/mach/overo.h) \ $(wildcard include/config/mach/at2440evb.h) \ $(wildcard include/config/mach/neocore926.h) \ $(wildcard include/config/mach/wnr854t.h) \ $(wildcard include/config/mach/imx27.h) \ $(wildcard include/config/mach/moose/db.h) \ $(wildcard include/config/mach/fab4.h) \ $(wildcard include/config/mach/htcdiamond.h) \ $(wildcard include/config/mach/fiona.h) \ $(wildcard include/config/mach/mxc30030/x.h) \ $(wildcard include/config/mach/bmp1000.h) \ $(wildcard include/config/mach/logi9200.h) \ $(wildcard include/config/mach/tqma31.h) \ $(wildcard include/config/mach/ccw9p9215js.h) \ $(wildcard include/config/mach/rd88f5181l/ge.h) \ $(wildcard include/config/mach/sifmain.h) \ $(wildcard include/config/mach/sam9/l9261.h) \ $(wildcard include/config/mach/cc9m2443.h) \ $(wildcard include/config/mach/xaria300.h) \ $(wildcard include/config/mach/it9200.h) \ $(wildcard include/config/mach/rd88f5181l/fxo.h) \ $(wildcard include/config/mach/kriss/sensor.h) \ $(wildcard include/config/mach/pilz/pmi5.h) \ $(wildcard include/config/mach/jade.h) \ $(wildcard include/config/mach/ks8695/softplc.h) \ $(wildcard include/config/mach/gprisc3.h) \ $(wildcard include/config/mach/stamp9g20.h) \ $(wildcard include/config/mach/smdk6430.h) \ $(wildcard include/config/mach/smdkc100.h) \ $(wildcard include/config/mach/tavorevb.h) \ $(wildcard include/config/mach/saar.h) \ $(wildcard include/config/mach/deister/eyecam.h) \ $(wildcard include/config/mach/at91sam9m10g45ek.h) \ $(wildcard include/config/mach/linkstation/produo.h) \ $(wildcard include/config/mach/hit/b0.h) \ $(wildcard include/config/mach/adx/rmu.h) \ $(wildcard include/config/mach/xg/cpe/main.h) \ $(wildcard include/config/mach/edb9407a.h) \ $(wildcard include/config/mach/dtb9608.h) \ $(wildcard include/config/mach/em104v1.h) \ $(wildcard include/config/mach/demo.h) \ $(wildcard include/config/mach/logi9260.h) \ $(wildcard include/config/mach/mx31/exm32.h) \ $(wildcard include/config/mach/usb/a9g20.h) \ $(wildcard include/config/mach/picproje2008.h) \ $(wildcard include/config/mach/cs/e9315.h) \ $(wildcard include/config/mach/qil/a9g20.h) \ $(wildcard include/config/mach/sha/pon020.h) \ $(wildcard include/config/mach/nad.h) \ $(wildcard include/config/mach/sbc35/a9260.h) \ $(wildcard include/config/mach/sbc35/a9g20.h) \ $(wildcard include/config/mach/davinci/beginning.h) \ $(wildcard include/config/mach/uwc.h) \ $(wildcard include/config/mach/mxlads.h) \ $(wildcard include/config/mach/htcnike.h) \ $(wildcard include/config/mach/deister/pxa270.h) \ $(wildcard include/config/mach/cme9210js.h) \ $(wildcard include/config/mach/cc9p9360.h) \ $(wildcard include/config/mach/mocha.h) \ $(wildcard include/config/mach/wapd170ag.h) \ $(wildcard include/config/mach/linkstation/mini.h) \ $(wildcard include/config/mach/afeb9260.h) \ $(wildcard include/config/mach/w90x900.h) \ $(wildcard include/config/mach/w90x700.h) \ $(wildcard include/config/mach/kt300ip.h) \ $(wildcard include/config/mach/kt300ip/g20.h) \ $(wildcard include/config/mach/srcm.h) \ $(wildcard include/config/mach/wlnx/9260.h) \ $(wildcard include/config/mach/openmoko/gta03.h) \ $(wildcard include/config/mach/osprey2.h) \ $(wildcard include/config/mach/kbio9260.h) \ $(wildcard include/config/mach/ginza.h) \ $(wildcard include/config/mach/a636n.h) \ $(wildcard include/config/mach/imx27ipcam.h) \ $(wildcard include/config/mach/nemoc.h) \ $(wildcard include/config/mach/geneva.h) \ $(wildcard include/config/mach/htcpharos.h) \ $(wildcard include/config/mach/neonc.h) \ $(wildcard include/config/mach/nas7100.h) \ $(wildcard include/config/mach/teuphone.h) \ $(wildcard include/config/mach/annax/eth2.h) \ $(wildcard include/config/mach/csb733.h) \ $(wildcard include/config/mach/bk3.h) \ $(wildcard include/config/mach/omap/em32.h) \ $(wildcard include/config/mach/et9261cp.h) \ $(wildcard include/config/mach/jasperc.h) \ $(wildcard include/config/mach/issi/arm9.h) \ $(wildcard include/config/mach/ued.h) \ $(wildcard include/config/mach/esiblade.h) \ $(wildcard include/config/mach/eye02.h) \ $(wildcard include/config/mach/imx27kbd.h) \ $(wildcard include/config/mach/sst61vc010/fpga.h) \ $(wildcard include/config/mach/kixvp435.h) \ $(wildcard include/config/mach/kixnp435.h) \ $(wildcard include/config/mach/africa.h) \ $(wildcard include/config/mach/nh233.h) \ $(wildcard include/config/mach/rd88f6183ap/ge.h) \ $(wildcard include/config/mach/bcm4760.h) \ $(wildcard include/config/mach/eddy/v2.h) \ $(wildcard include/config/mach/realview/pba8.h) \ $(wildcard include/config/mach/hid/a7.h) \ $(wildcard include/config/mach/hero.h) \ $(wildcard include/config/mach/omap/poseidon.h) \ $(wildcard include/config/mach/realview/pbx.h) \ $(wildcard include/config/mach/micro9s.h) \ $(wildcard include/config/mach/mako.h) \ $(wildcard include/config/mach/xdaflame.h) \ $(wildcard include/config/mach/phidget/sbc2.h) \ $(wildcard include/config/mach/limestone.h) \ $(wildcard include/config/mach/iprobe/c32.h) \ $(wildcard include/config/mach/rut100.h) \ $(wildcard include/config/mach/asusp535.h) \ $(wildcard include/config/mach/htcraphael.h) \ $(wildcard include/config/mach/sygdg1.h) \ $(wildcard include/config/mach/sygdg2.h) \ $(wildcard include/config/mach/seoul.h) \ $(wildcard include/config/mach/salerno.h) \ $(wildcard include/config/mach/ucn/s3c64xx.h) \ $(wildcard include/config/mach/msm7201a.h) \ $(wildcard include/config/mach/lpr1.h) \ $(wildcard include/config/mach/armadillo500fx.h) \ $(wildcard include/config/mach/g3evm.h) \ $(wildcard include/config/mach/z3/dm355.h) \ $(wildcard include/config/mach/w90p910evb.h) \ $(wildcard include/config/mach/w90p920evb.h) \ $(wildcard include/config/mach/w90p950evb.h) \ $(wildcard include/config/mach/w90n960evb.h) \ $(wildcard include/config/mach/camhd.h) \ $(wildcard include/config/mach/mvc100.h) \ $(wildcard include/config/mach/electrum/200.h) \ $(wildcard include/config/mach/htcjade.h) \ $(wildcard include/config/mach/memphis.h) \ $(wildcard include/config/mach/imx27sbc.h) \ $(wildcard include/config/mach/lextar.h) \ $(wildcard include/config/mach/mv88f6281gtw/ge.h) \ $(wildcard include/config/mach/ncp.h) \ $(wildcard include/config/mach/z32an.h) \ $(wildcard include/config/mach/tmq/capd.h) \ $(wildcard include/config/mach/omap3/wl.h) \ $(wildcard include/config/mach/chumby.h) \ $(wildcard include/config/mach/atsarm9.h) \ $(wildcard include/config/mach/davinci/dm365/evm.h) \ $(wildcard include/config/mach/bahamas.h) \ $(wildcard include/config/mach/das.h) \ $(wildcard include/config/mach/minidas.h) \ $(wildcard include/config/mach/vk1000.h) \ $(wildcard include/config/mach/centro.h) \ $(wildcard include/config/mach/ctera/2bay.h) \ $(wildcard include/config/mach/edgeconnect.h) \ $(wildcard include/config/mach/nd27000.h) \ $(wildcard include/config/mach/gemalto/cobra.h) \ $(wildcard include/config/mach/ingelabs/comet.h) \ $(wildcard include/config/mach/pollux/wiz.h) \ $(wildcard include/config/mach/blackstone.h) \ $(wildcard include/config/mach/topaz.h) \ $(wildcard include/config/mach/aixle.h) \ $(wildcard include/config/mach/mw998.h) \ $(wildcard include/config/mach/nokia/rx51.h) \ $(wildcard include/config/mach/vsc5605ev.h) \ $(wildcard include/config/mach/nt98700dk.h) \ $(wildcard include/config/mach/icontact.h) \ $(wildcard include/config/mach/swarco/frcpu.h) \ $(wildcard include/config/mach/swarco/scpu.h) \ $(wildcard include/config/mach/bbox/p16.h) \ $(wildcard include/config/mach/bstd.h) \ $(wildcard include/config/mach/sbc2440ii.h) \ $(wildcard include/config/mach/pcm034.h) \ $(wildcard include/config/mach/neso.h) \ $(wildcard include/config/mach/wlnx/9g20.h) \ $(wildcard include/config/mach/omap/zoom2.h) \ $(wildcard include/config/mach/totemnova.h) \ $(wildcard include/config/mach/c5000.h) \ $(wildcard include/config/mach/unipo/at91sam9263.h) \ $(wildcard include/config/mach/ethernut5.h) \ $(wildcard include/config/mach/arm11.h) \ $(wildcard include/config/mach/cpuat9260.h) \ $(wildcard include/config/mach/cpupxa255.h) \ $(wildcard include/config/mach/cpuimx27.h) \ $(wildcard include/config/mach/cheflux.h) \ $(wildcard include/config/mach/eb/cpux9k2.h) \ $(wildcard include/config/mach/opcotec.h) \ $(wildcard include/config/mach/yt.h) \ $(wildcard include/config/mach/motoq.h) \ $(wildcard include/config/mach/bsb1.h) \ $(wildcard include/config/mach/acs5k.h) \ $(wildcard include/config/mach/milan.h) \ $(wildcard include/config/mach/quartzv2.h) \ $(wildcard include/config/mach/rsvp.h) \ $(wildcard include/config/mach/rmp200.h) \ $(wildcard include/config/mach/snapper/9260.h) \ $(wildcard include/config/mach/dsm320.h) \ $(wildcard include/config/mach/adsgcm.h) \ $(wildcard include/config/mach/ase2/400.h) \ $(wildcard include/config/mach/pizza.h) \ $(wildcard include/config/mach/spot/ngpl.h) \ $(wildcard include/config/mach/armata.h) \ $(wildcard include/config/mach/exeda.h) \ $(wildcard include/config/mach/mx31sf005.h) \ $(wildcard include/config/mach/f5d8231/4/v2.h) \ $(wildcard include/config/mach/q2440.h) \ $(wildcard include/config/mach/qq2440.h) \ $(wildcard include/config/mach/mini2440.h) \ $(wildcard include/config/mach/colibri300.h) \ $(wildcard include/config/mach/jades.h) \ $(wildcard include/config/mach/spark.h) \ $(wildcard include/config/mach/benzina.h) \ $(wildcard include/config/mach/blaze.h) \ $(wildcard include/config/mach/linkstation/ls/hgl.h) \ $(wildcard include/config/mach/htcvenus.h) \ $(wildcard include/config/mach/sony/prs505.h) \ $(wildcard include/config/mach/hanlin/v3.h) \ $(wildcard include/config/mach/sapphira.h) \ $(wildcard include/config/mach/dack/sda/01.h) \ $(wildcard include/config/mach/armbox.h) \ $(wildcard include/config/mach/harris/rvp.h) \ $(wildcard include/config/mach/ribaldo.h) \ $(wildcard include/config/mach/agora.h) \ $(wildcard include/config/mach/omap3/mini.h) \ $(wildcard include/config/mach/a9sam6432/b.h) \ $(wildcard include/config/mach/usg2410.h) \ $(wildcard include/config/mach/pc72052/i10/revb.h) \ $(wildcard include/config/mach/mx35/exm32.h) \ $(wildcard include/config/mach/topas910.h) \ $(wildcard include/config/mach/hyena.h) \ $(wildcard include/config/mach/pospax.h) \ $(wildcard include/config/mach/hdl/gx.h) \ $(wildcard include/config/mach/ctera/4bay.h) \ $(wildcard include/config/mach/ctera/plug/c.h) \ $(wildcard include/config/mach/crwea/plug/i.h) \ $(wildcard include/config/mach/egauge2.h) \ $(wildcard include/config/mach/didj.h) \ $(wildcard include/config/mach/meister.h) \ $(wildcard include/config/mach/htcblackstone.h) \ $(wildcard include/config/mach/cpuat9g20.h) \ $(wildcard include/config/mach/smdk6440.h) \ $(wildcard include/config/mach/omap/35xx/mvp.h) \ $(wildcard include/config/mach/ctera/plug/i.h) \ $(wildcard include/config/mach/pvg610.h) \ $(wildcard include/config/mach/hprw6815.h) \ $(wildcard include/config/mach/omap3/oswald.h) \ $(wildcard include/config/mach/nas4220b.h) \ $(wildcard include/config/mach/htcraphael/cdma.h) \ $(wildcard include/config/mach/htcdiamond/cdma.h) \ $(wildcard include/config/mach/scaler.h) \ $(wildcard include/config/mach/zylonite2.h) \ $(wildcard include/config/mach/aspenite.h) \ $(wildcard include/config/mach/teton.h) \ $(wildcard include/config/mach/ttc/dkb.h) \ $(wildcard include/config/mach/bishop2.h) \ $(wildcard include/config/mach/ippv5.h) \ $(wildcard include/config/mach/farm926.h) \ $(wildcard include/config/mach/mmccpu.h) \ $(wildcard include/config/mach/sgmsfl.h) \ $(wildcard include/config/mach/tt8000.h) \ $(wildcard include/config/mach/zrn4300lp.h) \ $(wildcard include/config/mach/mptc.h) \ $(wildcard include/config/mach/h6051.h) \ $(wildcard include/config/mach/pvg610/101.h) \ $(wildcard include/config/mach/stamp9261/pc/evb.h) \ $(wildcard include/config/mach/pelco/odysseus.h) \ $(wildcard include/config/mach/tny/a9260.h) \ $(wildcard include/config/mach/tny/a9g20.h) \ $(wildcard include/config/mach/aesop/mp2530f.h) \ $(wildcard include/config/mach/dx900.h) \ $(wildcard include/config/mach/cpodc2.h) \ $(wildcard include/config/mach/tilt/8925.h) \ $(wildcard include/config/mach/davinci/dm357/evm.h) \ $(wildcard include/config/mach/swordfish.h) \ $(wildcard include/config/mach/corvus.h) \ $(wildcard include/config/mach/taurus.h) \ $(wildcard include/config/mach/axm.h) \ $(wildcard include/config/mach/axc.h) \ $(wildcard include/config/mach/baby.h) \ $(wildcard include/config/mach/mp200.h) \ $(wildcard include/config/mach/pcm043.h) \ $(wildcard include/config/mach/hanlin/v3c.h) \ $(wildcard include/config/mach/kbk9g20.h) \ $(wildcard include/config/mach/adsturbog5.h) \ $(wildcard include/config/mach/avenger/lite1.h) \ $(wildcard include/config/mach/suc.h) \ $(wildcard include/config/mach/at91sam7s256.h) \ $(wildcard include/config/mach/mendoza.h) \ $(wildcard include/config/mach/kira.h) \ $(wildcard include/config/mach/mx1hbm.h) \ $(wildcard include/config/mach/quatro43xx.h) \ $(wildcard include/config/mach/quatro4230.h) \ $(wildcard include/config/mach/nsb400.h) \ $(wildcard include/config/mach/drp255.h) \ $(wildcard include/config/mach/thoth.h) \ $(wildcard include/config/mach/firestone.h) \ $(wildcard include/config/mach/asusp750.h) \ $(wildcard include/config/mach/ctera/dl.h) \ $(wildcard include/config/mach/socr.h) \ $(wildcard include/config/mach/htcoxygen.h) \ $(wildcard include/config/mach/heroc.h) \ $(wildcard include/config/mach/zeno6800.h) \ $(wildcard include/config/mach/sc2mcs.h) \ $(wildcard include/config/mach/gene100.h) \ $(wildcard include/config/mach/as353x.h) \ $(wildcard include/config/mach/sheevaplug.h) \ $(wildcard include/config/mach/at91sam9g20.h) \ $(wildcard include/config/mach/mv88f6192gtw/fe.h) \ $(wildcard include/config/mach/cc9200.h) \ $(wildcard include/config/mach/sm9200.h) \ $(wildcard include/config/mach/tp9200.h) \ $(wildcard include/config/mach/snapperdv.h) \ $(wildcard include/config/mach/avengers/lite.h) \ $(wildcard include/config/mach/avengers/lite1.h) \ $(wildcard include/config/mach/omap3axon.h) \ $(wildcard include/config/mach/ma8xx.h) \ $(wildcard include/config/mach/mp201ek.h) \ $(wildcard include/config/mach/davinci/tux.h) \ $(wildcard include/config/mach/mpa1600.h) \ $(wildcard include/config/mach/pelco/troy.h) \ $(wildcard include/config/mach/nsb667.h) \ $(wildcard include/config/mach/rovers5/4mpix.h) \ $(wildcard include/config/mach/twocom.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3r2.h) \ $(wildcard include/config/mach/hero/espresso.h) \ $(wildcard include/config/mach/afeusb.h) \ $(wildcard include/config/mach/t830.h) \ $(wildcard include/config/mach/spd8020/cc.h) \ $(wildcard include/config/mach/om/3d7k.h) \ $(wildcard include/config/mach/picocom2.h) \ $(wildcard include/config/mach/uwg4mx27.h) \ $(wildcard include/config/mach/uwg4mx31.h) \ $(wildcard include/config/mach/cherry.h) \ $(wildcard include/config/mach/mx51/babbage.h) \ $(wildcard include/config/mach/s3c2440turkiye.h) \ $(wildcard include/config/mach/tx37.h) \ $(wildcard include/config/mach/sbc2800/9g20.h) \ $(wildcard include/config/mach/benzglb.h) \ $(wildcard include/config/mach/benztd.h) \ $(wildcard include/config/mach/cartesio/plus.h) \ $(wildcard include/config/mach/solrad/g20.h) \ $(wildcard include/config/mach/mx27wallace.h) \ $(wildcard include/config/mach/fmzwebmodul.h) \ $(wildcard include/config/mach/rd78x00/masa.h) \ $(wildcard include/config/mach/smallogger.h) \ $(wildcard include/config/mach/ccw9p9215.h) \ $(wildcard include/config/mach/dm355/leopard.h) \ $(wildcard include/config/mach/ts219.h) \ $(wildcard include/config/mach/tny/a9263.h) \ $(wildcard include/config/mach/apollo.h) \ $(wildcard include/config/mach/at91cap9stk.h) \ $(wildcard include/config/mach/spc300.h) \ $(wildcard include/config/mach/eko.h) \ $(wildcard include/config/mach/ccw9m2443.h) \ $(wildcard include/config/mach/ccw9m2443js.h) \ $(wildcard include/config/mach/m2m/router/device.h) \ $(wildcard include/config/mach/star9104nas.h) \ $(wildcard include/config/mach/pca100.h) \ $(wildcard include/config/mach/z3/dm365/mod/01.h) \ $(wildcard include/config/mach/hipox.h) \ $(wildcard include/config/mach/omap3/piteds.h) \ $(wildcard include/config/mach/bm150r.h) \ $(wildcard include/config/mach/tbone.h) \ $(wildcard include/config/mach/merlin.h) \ $(wildcard include/config/mach/falcon.h) \ $(wildcard include/config/mach/davinci/da850/evm.h) \ $(wildcard include/config/mach/s5p6440.h) \ $(wildcard include/config/mach/at91sam9g10ek.h) \ $(wildcard include/config/mach/omap/4430sdp.h) \ $(wildcard include/config/mach/lpc313x.h) \ $(wildcard include/config/mach/magx/zn5.h) \ $(wildcard include/config/mach/magx/em30.h) \ $(wildcard include/config/mach/magx/ve66.h) \ $(wildcard include/config/mach/meesc.h) \ $(wildcard include/config/mach/otc570.h) \ $(wildcard include/config/mach/bcu2412.h) \ $(wildcard include/config/mach/beacon.h) \ $(wildcard include/config/mach/actia/tgw.h) \ $(wildcard include/config/mach/e4430.h) \ $(wildcard include/config/mach/ql300.h) \ $(wildcard include/config/mach/btmavb101.h) \ $(wildcard include/config/mach/btmawb101.h) \ $(wildcard include/config/mach/sq201.h) \ $(wildcard include/config/mach/quatro45xx.h) \ $(wildcard include/config/mach/openpad.h) \ $(wildcard include/config/mach/tx25.h) \ $(wildcard include/config/mach/omap3/torpedo.h) \ $(wildcard include/config/mach/htcraphael/k.h) \ $(wildcard include/config/mach/lal43.h) \ $(wildcard include/config/mach/htcraphael/cdma500.h) \ $(wildcard include/config/mach/anw6410.h) \ $(wildcard include/config/mach/htcprophet.h) \ $(wildcard include/config/mach/cfa/10022.h) \ $(wildcard include/config/mach/imx27/visstrim/m10.h) \ $(wildcard include/config/mach/px2imx27.h) \ $(wildcard include/config/mach/stm3210e/eval.h) \ $(wildcard include/config/mach/dvs10.h) \ $(wildcard include/config/mach/portuxg20.h) \ $(wildcard include/config/mach/arm/spv.h) \ $(wildcard include/config/mach/smdkc110.h) \ $(wildcard include/config/mach/cabespresso.h) \ $(wildcard include/config/mach/hmc800.h) \ $(wildcard include/config/mach/sholes.h) \ $(wildcard include/config/mach/btmxc31.h) \ $(wildcard include/config/mach/dt501.h) \ $(wildcard include/config/mach/ktx.h) \ $(wildcard include/config/mach/omap3517evm.h) \ $(wildcard include/config/mach/netspace/v2.h) \ $(wildcard include/config/mach/netspace/max/v2.h) \ $(wildcard include/config/mach/d2net/v2.h) \ $(wildcard include/config/mach/net2big/v2.h) \ $(wildcard include/config/mach/net4big/v2.h) \ $(wildcard include/config/mach/net5big/v2.h) \ $(wildcard include/config/mach/endb2443.h) \ $(wildcard include/config/mach/inetspace/v2.h) \ $(wildcard include/config/mach/tros.h) \ $(wildcard include/config/mach/pelco/homer.h) \ $(wildcard include/config/mach/ofsp8.h) \ $(wildcard include/config/mach/at91sam9g45ekes.h) \ $(wildcard include/config/mach/guf/cupid.h) \ $(wildcard include/config/mach/eab1r.h) \ $(wildcard include/config/mach/cordoba.h) \ $(wildcard include/config/mach/irvine.h) \ $(wildcard include/config/mach/sff772.h) \ $(wildcard include/config/mach/pelco/milano.h) \ $(wildcard include/config/mach/pc7302.h) \ $(wildcard include/config/mach/bip6000.h) \ $(wildcard include/config/mach/silvermoon.h) \ $(wildcard include/config/mach/vc0830.h) \ $(wildcard include/config/mach/dt430.h) \ $(wildcard include/config/mach/ji42pf.h) \ $(wildcard include/config/mach/gnet/ksm.h) \ $(wildcard include/config/mach/gnet/sgm.h) \ $(wildcard include/config/mach/gnet/sgr.h) \ $(wildcard include/config/mach/omap3/icetekevm.h) \ $(wildcard include/config/mach/pnp.h) \ $(wildcard include/config/mach/ctera/2bay/k.h) \ $(wildcard include/config/mach/ctera/2bay/u.h) \ $(wildcard include/config/mach/sas/c.h) \ $(wildcard include/config/mach/vma2315.h) \ $(wildcard include/config/mach/vcs.h) \ $(wildcard include/config/mach/spear600.h) \ $(wildcard include/config/mach/spear300.h) \ $(wildcard include/config/mach/spear1300.h) \ $(wildcard include/config/mach/lilly1131.h) \ $(wildcard include/config/mach/arvoo/ax301.h) \ $(wildcard include/config/mach/mapphone.h) \ $(wildcard include/config/mach/legend.h) \ $(wildcard include/config/mach/salsa.h) \ $(wildcard include/config/mach/lounge.h) \ $(wildcard include/config/mach/vision.h) \ $(wildcard include/config/mach/vmb20.h) \ $(wildcard include/config/mach/hy2410.h) \ $(wildcard include/config/mach/hy9315.h) \ $(wildcard include/config/mach/bullwinkle.h) \ $(wildcard include/config/mach/arm/ultimator2.h) \ $(wildcard include/config/mach/vs/v210.h) \ $(wildcard include/config/mach/vs/v212.h) \ $(wildcard include/config/mach/hmt.h) \ $(wildcard include/config/mach/suen3.h) \ $(wildcard include/config/mach/vesper.h) \ $(wildcard include/config/mach/str9.h) \ $(wildcard include/config/mach/omap3/wl/ff.h) \ $(wildcard include/config/mach/simcom.h) \ $(wildcard include/config/mach/mcwebio.h) \ $(wildcard include/config/mach/omap3/phrazer.h) \ $(wildcard include/config/mach/darwin.h) \ $(wildcard include/config/mach/oratiscomu.h) \ $(wildcard include/config/mach/rtsbc20.h) \ $(wildcard include/config/mach/i780.h) \ $(wildcard include/config/mach/gemini324.h) \ $(wildcard include/config/mach/oratislan.h) \ $(wildcard include/config/mach/oratisalog.h) \ $(wildcard include/config/mach/oratismadi.h) \ $(wildcard include/config/mach/oratisot16.h) \ $(wildcard include/config/mach/oratisdesk.h) \ $(wildcard include/config/mach/v2p/ca9.h) \ $(wildcard include/config/mach/sintexo.h) \ $(wildcard include/config/mach/cm3389.h) \ $(wildcard include/config/mach/omap3/cio.h) \ $(wildcard include/config/mach/sgh/i900.h) \ $(wildcard include/config/mach/bst100.h) \ $(wildcard include/config/mach/passion.h) \ $(wildcard include/config/mach/indesign/at91sam.h) \ $(wildcard include/config/mach/c4/badger.h) \ $(wildcard include/config/mach/c4/viper.h) \ $(wildcard include/config/mach/d2net.h) \ $(wildcard include/config/mach/bigdisk.h) \ $(wildcard include/config/mach/notalvision.h) \ $(wildcard include/config/mach/omap3/kboc.h) \ $(wildcard include/config/mach/cyclone.h) \ $(wildcard include/config/mach/ninja.h) \ $(wildcard include/config/mach/at91sam9g20ek/2mmc.h) \ $(wildcard include/config/mach/bcmring.h) \ $(wildcard include/config/mach/resol/dl2.h) \ $(wildcard include/config/mach/ifosw.h) \ $(wildcard include/config/mach/htcrhodium.h) \ $(wildcard include/config/mach/htctopaz.h) \ $(wildcard include/config/mach/matrix504.h) \ $(wildcard include/config/mach/mrfsa.h) \ $(wildcard include/config/mach/sc/p270.h) \ $(wildcard include/config/mach/atlas5/evb.h) \ $(wildcard include/config/mach/pelco/lobox.h) \ $(wildcard include/config/mach/dilax/pcu200.h) \ $(wildcard include/config/mach/leonardo.h) \ $(wildcard include/config/mach/zoran/approach7.h) \ $(wildcard include/config/mach/dp6xx.h) \ $(wildcard include/config/mach/bcm2153/vesper.h) \ $(wildcard include/config/mach/passionc.h) \ $(wildcard include/config/mach/clickc.h) \ $(wildcard include/config/mach/zb/gateway.h) \ $(wildcard include/config/mach/tazcard.h) \ $(wildcard include/config/mach/tazdev.h) \ $(wildcard include/config/mach/annax/cb/arm.h) \ $(wildcard include/config/mach/annax/dm3.h) \ $(wildcard include/config/mach/cerebric.h) \ $(wildcard include/config/mach/orca.h) \ $(wildcard include/config/mach/pc9260.h) \ $(wildcard include/config/mach/ems285a.h) \ $(wildcard include/config/mach/gec2410.h) \ $(wildcard include/config/mach/gec2440.h) \ $(wildcard include/config/mach/arch/mw903.h) \ $(wildcard include/config/mach/mw2440.h) \ $(wildcard include/config/mach/ecac2378.h) \ $(wildcard include/config/mach/tazkiosk.h) \ $(wildcard include/config/mach/whiterabbit/mch.h) \ $(wildcard include/config/mach/sbox9263.h) \ $(wildcard include/config/mach/oreo.h) \ $(wildcard include/config/mach/smdk6442.h) \ $(wildcard include/config/mach/openrd/base.h) \ $(wildcard include/config/mach/incredible.h) \ $(wildcard include/config/mach/incrediblec.h) \ $(wildcard include/config/mach/heroct.h) \ $(wildcard include/config/mach/mmnet1000.h) \ $(wildcard include/config/mach/devkit8000.h) \ $(wildcard include/config/mach/devkit9000.h) \ $(wildcard include/config/mach/mx31txtr.h) \ $(wildcard include/config/mach/u380.h) \ $(wildcard include/config/mach/hualu/board.h) \ $(wildcard include/config/mach/npcmx50.h) \ $(wildcard include/config/mach/mx51/lange51.h) \ $(wildcard include/config/mach/mx51/lange52.h) \ $(wildcard include/config/mach/riom.h) \ $(wildcard include/config/mach/comcas.h) \ $(wildcard include/config/mach/wsi/mx27.h) \ $(wildcard include/config/mach/cm/t35.h) \ $(wildcard include/config/mach/net2big.h) \ $(wildcard include/config/mach/motorola/a1600.h) \ $(wildcard include/config/mach/igep0020.h) \ $(wildcard include/config/mach/igep0010.h) \ $(wildcard include/config/mach/mv6281gtwge2.h) \ $(wildcard include/config/mach/scat100.h) \ $(wildcard include/config/mach/sanmina.h) \ $(wildcard include/config/mach/momento.h) \ $(wildcard include/config/mach/nuc9xx.h) \ $(wildcard include/config/mach/nuc910evb.h) \ $(wildcard include/config/mach/nuc920evb.h) \ $(wildcard include/config/mach/nuc950evb.h) \ $(wildcard include/config/mach/nuc945evb.h) \ $(wildcard include/config/mach/nuc960evb.h) \ $(wildcard include/config/mach/nuc932evb.h) \ $(wildcard include/config/mach/nuc900.h) \ $(wildcard include/config/mach/sd1soc.h) \ $(wildcard include/config/mach/ln2440bc.h) \ $(wildcard include/config/mach/rsbc.h) \ $(wildcard include/config/mach/openrd/client.h) \ $(wildcard include/config/mach/hpipaq11x.h) \ $(wildcard include/config/mach/wayland.h) \ $(wildcard include/config/mach/acnbsx102.h) \ $(wildcard include/config/mach/hwat91.h) \ $(wildcard include/config/mach/at91sam9263cs.h) \ $(wildcard include/config/mach/csb732.h) \ $(wildcard include/config/mach/u8500.h) \ $(wildcard include/config/mach/huqiu.h) \ $(wildcard include/config/mach/mx51/kunlun.h) \ $(wildcard include/config/mach/pmt1g.h) \ $(wildcard include/config/mach/htcelf.h) \ $(wildcard include/config/mach/armadillo420.h) \ $(wildcard include/config/mach/armadillo440.h) \ $(wildcard include/config/mach/u/chip/dual/arm.h) \ $(wildcard include/config/mach/csr/bdb3.h) \ $(wildcard include/config/mach/dolby/cat1018.h) \ $(wildcard include/config/mach/hy9307.h) \ $(wildcard include/config/mach/a/es.h) \ $(wildcard include/config/mach/davinci/irif.h) \ $(wildcard include/config/mach/agama9263.h) \ $(wildcard include/config/mach/marvell/jasper.h) \ $(wildcard include/config/mach/flint.h) \ $(wildcard include/config/mach/tavorevb3.h) \ $(wildcard include/config/mach/sch/m490.h) \ $(wildcard include/config/mach/rbl01.h) \ $(wildcard include/config/mach/omnifi.h) \ $(wildcard include/config/mach/otavalo.h) \ $(wildcard include/config/mach/sienna.h) \ $(wildcard include/config/mach/htc/excalibur/s620.h) \ $(wildcard include/config/mach/htc/opal.h) \ $(wildcard include/config/mach/touchbook.h) \ $(wildcard include/config/mach/latte.h) \ $(wildcard include/config/mach/xa200.h) \ $(wildcard include/config/mach/nimrod.h) \ $(wildcard include/config/mach/cc9p9215/3g.h) \ $(wildcard include/config/mach/cc9p9215/3gjs.h) \ $(wildcard include/config/mach/tk71.h) \ $(wildcard include/config/mach/comham3525.h) \ $(wildcard include/config/mach/mx31erebus.h) \ $(wildcard include/config/mach/mcardmx27.h) \ $(wildcard include/config/mach/paradise.h) \ $(wildcard include/config/mach/tide.h) \ $(wildcard include/config/mach/wzl2440.h) \ $(wildcard include/config/mach/sdrdemo.h) \ $(wildcard include/config/mach/ethercan2.h) \ $(wildcard include/config/mach/ecmimg20.h) \ $(wildcard include/config/mach/omap/dragon.h) \ $(wildcard include/config/mach/halo.h) \ $(wildcard include/config/mach/huangshan.h) \ $(wildcard include/config/mach/vl/ma2sc.h) \ $(wildcard include/config/mach/raumfeld/rc.h) \ $(wildcard include/config/mach/raumfeld/connector.h) \ $(wildcard include/config/mach/raumfeld/speaker.h) \ $(wildcard include/config/mach/multibus/master.h) \ $(wildcard include/config/mach/multibus/pbk.h) \ $(wildcard include/config/mach/tnetv107x.h) \ $(wildcard include/config/mach/snake.h) \ $(wildcard include/config/mach/cwmx27.h) \ $(wildcard include/config/mach/sch/m480.h) \ $(wildcard include/config/mach/platypus.h) \ $(wildcard include/config/mach/pss2.h) \ $(wildcard include/config/mach/davinci/apm150.h) \ $(wildcard include/config/mach/str9100.h) \ $(wildcard include/config/mach/net5big.h) \ $(wildcard include/config/mach/seabed9263.h) \ $(wildcard include/config/mach/mx51/m2id.h) \ $(wildcard include/config/mach/octvocplus/eb.h) \ $(wildcard include/config/mach/klk/firefox.h) \ $(wildcard include/config/mach/klk/wirma.h) \ $(wildcard include/config/mach/klk/wirma/mmi.h) \ $(wildcard include/config/mach/supersonic.h) \ $(wildcard include/config/mach/liberty.h) \ $(wildcard include/config/mach/mh355.h) \ $(wildcard include/config/mach/pc7802.h) \ $(wildcard include/config/mach/gnet/sgc.h) \ $(wildcard include/config/mach/einstein15.h) \ $(wildcard include/config/mach/cmpd.h) \ $(wildcard include/config/mach/davinci/hase1.h) \ $(wildcard include/config/mach/lgeincitephone.h) \ $(wildcard include/config/mach/ea313x.h) \ $(wildcard include/config/mach/fwbd/39064.h) \ $(wildcard include/config/mach/fwbd/390128.h) \ $(wildcard include/config/mach/pelco/moe.h) \ $(wildcard include/config/mach/minimix27.h) \ $(wildcard include/config/mach/omap3/thunder.h) \ $(wildcard include/config/mach/mx27amata.h) \ $(wildcard include/config/mach/bgat1.h) \ $(wildcard include/config/mach/buzz.h) \ $(wildcard include/config/mach/mb9g20.h) \ $(wildcard include/config/mach/yushan.h) \ $(wildcard include/config/mach/lizard.h) \ $(wildcard include/config/mach/omap3polycom.h) \ $(wildcard include/config/mach/smdkv210.h) \ $(wildcard include/config/mach/bravo.h) \ $(wildcard include/config/mach/siogentoo1.h) \ $(wildcard include/config/mach/siogentoo2.h) \ $(wildcard include/config/mach/sm3k.h) \ $(wildcard include/config/mach/acer/tempo/f900.h) \ $(wildcard include/config/mach/sst61vc010/dev.h) \ $(wildcard include/config/mach/glittertind.h) \ $(wildcard include/config/mach/omap/zoom3.h) \ $(wildcard include/config/mach/omap/3630sdp.h) \ $(wildcard include/config/mach/cybook2440.h) \ $(wildcard include/config/mach/torino/s.h) \ $(wildcard include/config/mach/havana.h) \ $(wildcard include/config/mach/beaumont/11.h) \ $(wildcard include/config/mach/vanguard.h) \ $(wildcard include/config/mach/s5pc110/draco.h) \ $(wildcard include/config/mach/cartesio/two.h) \ $(wildcard include/config/mach/aster.h) \ $(wildcard include/config/mach/voguesv210.h) \ $(wildcard include/config/mach/acm500x.h) \ $(wildcard include/config/mach/km9260.h) \ $(wildcard include/config/mach/nideflexg1.h) \ $(wildcard include/config/mach/ctera/plug/io.h) \ $(wildcard include/config/mach/smartq7.h) \ $(wildcard include/config/mach/at91sam9g10ek2.h) \ $(wildcard include/config/mach/asusp527.h) \ $(wildcard include/config/mach/at91sam9g20mpm2.h) \ $(wildcard include/config/mach/topasa900.h) \ $(wildcard include/config/mach/electrum/100.h) \ $(wildcard include/config/mach/mx51grb.h) \ $(wildcard include/config/mach/xea300.h) \ $(wildcard include/config/mach/htcstartrek.h) \ $(wildcard include/config/mach/lima.h) \ $(wildcard include/config/mach/csb740.h) \ $(wildcard include/config/mach/usb/s8815.h) \ $(wildcard include/config/mach/watson/efm/plugin.h) \ $(wildcard include/config/mach/milkyway.h) \ $(wildcard include/config/mach/g4evm.h) \ $(wildcard include/config/mach/picomod6.h) \ $(wildcard include/config/mach/omapl138/hawkboard.h) \ $(wildcard include/config/mach/ip6000.h) \ $(wildcard include/config/mach/ip6010.h) \ $(wildcard include/config/mach/utm400.h) \ $(wildcard include/config/mach/omap3/zybex.h) \ $(wildcard include/config/mach/wireless/space.h) \ $(wildcard include/config/mach/sx560.h) \ $(wildcard include/config/mach/ts41x.h) \ $(wildcard include/config/mach/elphel10373.h) \ $(wildcard include/config/mach/rhobot.h) \ $(wildcard include/config/mach/mx51/refresh.h) \ $(wildcard include/config/mach/ls9260.h) \ $(wildcard include/config/mach/shank.h) \ $(wildcard include/config/mach/qsd8x50/st1.h) \ $(wildcard include/config/mach/at91sam9m10ekes.h) \ $(wildcard include/config/mach/hiram.h) \ $(wildcard include/config/mach/phy3250.h) \ $(wildcard include/config/mach/ea3250.h) \ $(wildcard include/config/mach/fdi3250.h) \ $(wildcard include/config/mach/whitestone.h) \ $(wildcard include/config/mach/at91sam9263nit.h) \ $(wildcard include/config/mach/ccmx51.h) \ $(wildcard include/config/mach/ccmx51js.h) \ $(wildcard include/config/mach/ccwmx51.h) \ $(wildcard include/config/mach/ccwmx51js.h) \ $(wildcard include/config/mach/mini6410.h) \ $(wildcard include/config/mach/tiny6410.h) \ $(wildcard include/config/mach/nano6410.h) \ $(wildcard include/config/mach/at572d940hfnldb.h) \ $(wildcard include/config/mach/htcleo.h) \ $(wildcard include/config/mach/avp13.h) \ $(wildcard include/config/mach/xxsvideod.h) \ $(wildcard include/config/mach/vpnext.h) \ $(wildcard include/config/mach/swarco/itc3.h) \ $(wildcard include/config/mach/tx51.h) \ $(wildcard include/config/mach/dolby/cat1021.h) \ $(wildcard include/config/mach/mx28evk.h) \ $(wildcard include/config/mach/phoenix260.h) \ $(wildcard include/config/mach/uvaca/stork.h) \ $(wildcard include/config/mach/smartq5.h) \ $(wildcard include/config/mach/all3078.h) \ $(wildcard include/config/mach/ctera/2bay/ds.h) \ $(wildcard include/config/mach/siogentoo3.h) \ $(wildcard include/config/mach/epb5000.h) \ $(wildcard include/config/mach/hy9263.h) \ $(wildcard include/config/mach/acer/tempo/m900.h) \ $(wildcard include/config/mach/acer/tempo/dx900.h) \ $(wildcard include/config/mach/acer/tempo/x960.h) \ $(wildcard include/config/mach/acer/eten/v900.h) \ $(wildcard include/config/mach/acer/eten/x900.h) \ $(wildcard include/config/mach/bonnell.h) \ $(wildcard include/config/mach/oht/mx27.h) \ $(wildcard include/config/mach/htcquartz.h) \ $(wildcard include/config/mach/davinci/dm6467tevm.h) \ $(wildcard include/config/mach/c3ax03.h) \ $(wildcard include/config/mach/mxt/td60.h) \ $(wildcard include/config/mach/esyx.h) \ $(wildcard include/config/mach/dove/db2.h) \ $(wildcard include/config/mach/bulldog.h) \ $(wildcard include/config/mach/derell/me2000.h) \ $(wildcard include/config/mach/bcmring/base.h) \ $(wildcard include/config/mach/bcmring/evm.h) \ $(wildcard include/config/mach/bcmring/evm/jazz.h) \ $(wildcard include/config/mach/bcmring/sp.h) \ $(wildcard include/config/mach/bcmring/sv.h) \ $(wildcard include/config/mach/bcmring/sv/jazz.h) \ $(wildcard include/config/mach/bcmring/tablet.h) \ $(wildcard include/config/mach/bcmring/vp.h) \ $(wildcard include/config/mach/bcmring/evm/seikor.h) \ $(wildcard include/config/mach/bcmring/sp/wqvga.h) \ $(wildcard include/config/mach/bcmring/custom.h) \ $(wildcard include/config/mach/acer/s200.h) \ $(wildcard include/config/mach/bt270.h) \ $(wildcard include/config/mach/iseo.h) \ $(wildcard include/config/mach/cezanne.h) \ $(wildcard include/config/mach/lucca.h) \ $(wildcard include/config/mach/supersmart.h) \ $(wildcard include/config/mach/cs/misano.h) \ $(wildcard include/config/mach/magnolia2.h) \ $(wildcard include/config/mach/emxx.h) \ $(wildcard include/config/mach/outlaw.h) \ $(wildcard include/config/mach/riot/bei2.h) \ $(wildcard include/config/mach/riot/vox.h) \ $(wildcard include/config/mach/riot/x37.h) \ $(wildcard include/config/mach/mega25mx.h) \ $(wildcard include/config/mach/benzina2.h) \ $(wildcard include/config/mach/ignite.h) \ $(wildcard include/config/mach/foggia.h) \ $(wildcard include/config/mach/arezzo.h) \ $(wildcard include/config/mach/leica/skywalker.h) \ $(wildcard include/config/mach/jacinto2/jamr.h) \ $(wildcard include/config/mach/gts/nova.h) \ $(wildcard include/config/mach/p3600.h) \ $(wildcard include/config/mach/dlt2.h) \ $(wildcard include/config/mach/df3120.h) \ $(wildcard include/config/mach/ecucore/9g20.h) \ $(wildcard include/config/mach/nautel/lpc3240.h) \ $(wildcard include/config/mach/glacier.h) \ $(wildcard include/config/mach/phrazer/bulldog.h) \ $(wildcard include/config/mach/omap3/bulldog.h) \ $(wildcard include/config/mach/pca101.h) \ $(wildcard include/config/mach/buzzc.h) \ $(wildcard include/config/mach/sasie2.h) \ $(wildcard include/config/mach/davinci/cio.h) \ $(wildcard include/config/mach/smartmeter/dl.h) \ $(wildcard include/config/mach/wzl6410.h) \ $(wildcard include/config/mach/wzl6410m.h) \ $(wildcard include/config/mach/wzl6410f.h) \ $(wildcard include/config/mach/wzl6410i.h) \ $(wildcard include/config/mach/spacecom1.h) \ $(wildcard include/config/mach/pingu920.h) \ $(wildcard include/config/mach/bravoc.h) \ $(wildcard include/config/mach/cybo2440.h) \ $(wildcard include/config/mach/vdssw.h) \ $(wildcard include/config/mach/romulus.h) \ $(wildcard include/config/mach/omap/magic.h) \ $(wildcard include/config/mach/eltd100.h) \ $(wildcard include/config/mach/capc7117.h) \ $(wildcard include/config/mach/swan.h) \ $(wildcard include/config/mach/veu.h) \ $(wildcard include/config/mach/rm2.h) \ $(wildcard include/config/mach/tt2100.h) \ $(wildcard include/config/mach/venice.h) \ $(wildcard include/config/mach/pc7323.h) \ $(wildcard include/config/mach/masp.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc1.h) \ $(wildcard include/config/mach/lexikon.h) \ $(wildcard include/config/mach/mini2440v2.h) \ $(wildcard include/config/mach/icontrol.h) \ $(wildcard include/config/mach/sheevad.h) \ $(wildcard include/config/mach/qsd8x50a/st1/1.h) \ $(wildcard include/config/mach/qsd8x50a/st1/5.h) \ $(wildcard include/config/mach/bee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/linkage.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/linux/stat.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/math64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/mutex-debug.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/module.h \ include/linux/fb.h \ $(wildcard include/config/fb/backlight.h) \ $(wildcard include/config/fb/deferred/io.h) \ $(wildcard include/config/fb/tileblitting.h) \ $(wildcard include/config/fb/foreign/endian.h) \ $(wildcard include/config/fb/both/endian.h) \ $(wildcard include/config/fb/big/endian.h) \ $(wildcard include/config/fb/little/endian.h) \ include/linux/i2c.h \ $(wildcard include/config/i2c/boardinfo.h) \ include/linux/i2c-id.h \ include/linux/mod_devicetable.h \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/semaphore.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/iowait/acct.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/timex.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/timex.h \ arch/arm/mach-msm/include/mach/timex.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ipcbuf.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sigcontext.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/radix-tree.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/backlight.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/io.h \ arch/arm/mach-msm/include/mach/io.h \ drivers/video/modedb.o: $(deps_drivers/video/modedb.o) $(deps_drivers/video/modedb.o):
HCDRJacob/wildfire-kernel
drivers/video/.modedb.o.cmd
bat
gpl-2.0
146,850
cmd_/home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/wcomp.o := ld -m elf_i386 -r -o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/wcomp.o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/objects/hal/components/wcomp.o
CalvinHsu1223/LinuxCNC-HAL-EtherCAT-Driver-with-ILC
src/.wcomp.o.cmd
bat
gpl-2.0
216
cmd_usr/initramfs_data.cpio := /bin/bash /root/streak/3/kern.bak/scripts/gen_initramfs_list.sh -o usr/initramfs_data.cpio -d
DJSteve/StreakKernel
usr/.initramfs_data.cpio.cmd
bat
gpl-2.0
127
cmd_drivers/net/hamradio/built-in.o := rm -f drivers/net/hamradio/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/net/hamradio/built-in.o
avareldalton85/rpi2-linux-rt
drivers/net/hamradio/.built-in.o.cmd
bat
gpl-2.0
208
cmd_sound/core/snd-rawmidi.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 sound/core/snd-rawmidi.o sound/core/rawmidi.o
livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel
sound/core/.snd-rawmidi.o.cmd
bat
gpl-2.0
224
cmd_block/cfq-iosched.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-gcc -Wp,-MD,block/.cfq-iosched.o.d -nostdinc -isystem /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include -Iinclude -I/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-goldfish/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(cfq_iosched)" -D"KBUILD_MODNAME=KBUILD_STR(cfq_iosched)" -c -o block/cfq-iosched.o block/cfq-iosched.c deps_block/cfq-iosched.o := \ block/cfq-iosched.c \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/posix_types.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hwcap.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ include/linux/linkage.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/linux/stat.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/math64.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/wait.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-goldfish/include/mach/memory.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/elf.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/module.h \ include/linux/blkdev.h \ $(wildcard include/config/block.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/blk/dev/bsg.h) \ $(wildcard include/config/bounce.h) \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/timex.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/timex.h \ arch/arm/mach-goldfish/include/mach/timex.h \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ipcbuf.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sigcontext.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/security.h) \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/major.h \ include/linux/genhd.h \ $(wildcard include/config/fail/make/request.h) \ $(wildcard include/config/solaris/x86/partition.h) \ $(wildcard include/config/bsd/disklabel.h) \ $(wildcard include/config/unixware/disklabel.h) \ $(wildcard include/config/minix/subpartition.h) \ include/linux/kdev_t.h \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/semaphore.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/radix-tree.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/pagemap.h \ include/linux/mm.h \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cpu-single.h \ arch/arm/mach-goldfish/include/mach/vmalloc.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/highmem.h \ include/linux/uaccess.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/uaccess.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ $(wildcard include/config/outer/cache.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/shmparam.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/kmap_types.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/dynamic/ftrace.h) \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hardirq.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irq.h \ arch/arm/mach-goldfish/include/mach/irqs.h \ include/linux/irq_cpustat.h \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/mempool.h \ include/linux/bio.h \ include/linux/ioprio.h \ include/linux/iocontext.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/io.h \ arch/arm/mach-goldfish/include/mach/io.h \ include/linux/bsg.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ include/linux/elevator.h \ include/linux/blktrace_api.h \ include/linux/relay.h \ $(wildcard include/config/relay.h) \ include/linux/poll.h \ /net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/poll.h \ include/asm-generic/poll.h \ block/cfq-iosched.o: $(deps_block/cfq-iosched.o) $(deps_block/cfq-iosched.o):
mjmccall/Kernel
block/.cfq-iosched.o.cmd
bat
gpl-2.0
24,816
cmd_/home/maximilian/projects/git-clean/ev3sources/lms2012/d_pwm/Linuxmod_AM1808/d_pwm.ko := arm-none-linux-gnueabi-ld -EL -r -T /home/maximilian/projects/git-clean/ev3sources/extra/linux-03.20.00.13/scripts/module-common.lds --build-id -o /home/maximilian/projects/git-clean/ev3sources/lms2012/d_pwm/Linuxmod_AM1808/d_pwm.ko /home/maximilian/projects/git-clean/ev3sources/lms2012/d_pwm/Linuxmod_AM1808/d_pwm.o /home/maximilian/projects/git-clean/ev3sources/lms2012/d_pwm/Linuxmod_AM1808/d_pwm.mod.o
EAVR/EV3.14
ev3sources/lms2012/d_pwm/Linuxmod_AM1808/.d_pwm.ko.cmd
bat
gpl-2.0
501
cmd_drivers/gpu/stub/built-in.o := rm -f drivers/gpu/stub/built-in.o; /home/aashir/android/toolchain/linaro/bin/arm-eabi-ar rcsD drivers/gpu/stub/built-in.o
emwno/android_kernel_U8500
drivers/gpu/stub/.built-in.o.cmd
bat
gpl-2.0
158
cmd_arch/arm/mm/pabort-v7.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/mm/.pabort-v7.o.d -nostdinc -isystem /opt/toolchains/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-tegra/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/mm/pabort-v7.o arch/arm/mm/pabort-v7.S source_arch/arm/mm/pabort-v7.o := arch/arm/mm/pabort-v7.S deps_arch/arm/mm/pabort-v7.o := \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/include/linux/kconfig.h \ $(wildcard include/config/h.h) \ $(wildcard include/config/.h) \ $(wildcard include/config/foo.h) \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/linkage.h \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/hwcap.h \ /home/cody/build_kernel/SGH-I927_Kernel/LiteKernel/LiteKERNEL/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ arch/arm/mm/pabort-v7.o: $(deps_arch/arm/mm/pabort-v7.o) $(deps_arch/arm/mm/pabort-v7.o):
TeamGlide/LiteKernel
arch/arm/mm/.pabort-v7.o.cmd
bat
gpl-2.0
2,423
cmd_drivers/cpuidle/built-in.o := /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ld -EL -r -o drivers/cpuidle/built-in.o drivers/cpuidle/cpuidle.o drivers/cpuidle/driver.o drivers/cpuidle/governor.o drivers/cpuidle/sysfs.o drivers/cpuidle/governors/built-in.o
friedrich420/Note-3-Kernel
drivers/cpuidle/.built-in.o.cmd
bat
gpl-2.0
274
cmd_sound/sh/built-in.o := rm -f sound/sh/built-in.o; /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ar rcs sound/sh/built-in.o
damageless/linux-kernel-ican-tab
sound/sh/.built-in.o.cmd
bat
gpl-2.0
175
cmd_net/ipv4/netfilter/iptable_nat.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/ipv4/netfilter/iptable_nat.o net/ipv4/netfilter/nf_nat_rule.o net/ipv4/netfilter/nf_nat_standalone.o
PrestigeMod/SHW-M440S
net/ipv4/netfilter/.iptable_nat.o.cmd
bat
gpl-2.0
246
set PYTHON_PATH=%PROGRAMFILES%\Python37 py -3 "%PYTHON_PATH%\Tools\i18n\pygettext.py" -o main.pot ..\main.pyw ..\settings.py
Himura2la/FestEngine
src/locale/gettext.bat
bat
gpl-3.0
126
call python C:\Users\mmarius\Desktop\RAWSimO\Repo\Material\Scripts\experiment_client.py 131.234.154.43 net C:\Users\mmarius\Desktop\RAWSimO\Repo\RAWSimO.CLI\bin\x86\Debug\RAWSimO.CLI.exe C:\Users\mmarius\Desktop\RAWSimO\InstanceConfigSet C:\Users\mmarius\Desktop\RAWSimO\Repo C:\Users\mmarius\Desktop\RAWSimO\output 4
merschformann/RAWSim-O
Material/Scripts/sample_script_call_client.cmd
bat
gpl-3.0
318
# Assumes that Debugging Tools for Windows is installed in C:\windbg set DBGSDK_INC_PATH=C:\windbg\sdk\inc set DBGSDK_LIB_PATH=C:\windbg\sdk\lib set DBGLIB_LIB_PATH=C:\windbg\sdk\lib REM build byakugan build -cZMg REM build injectsu cd injectsu\ build -cZMg cd .. copy /Y i386\byakugan.dll C:\windbg\winext\ copy /Y injectsu\i386\injectsu.dll C:\windbg\
cSploit/android.MSF
external/source/byakugan/setup.bat
bat
gpl-3.0
377
taskkill /F /IM php.exe taskkill /F /IM Wscript.exe taskkill /F /IM cmd.exe
hisapi/his
his-server-installer-win-wget/kill-win-his-server.bat
bat
gpl-3.0
77
java -cp ..\bin Servidor temp server1 pause
LuisAlho/ServerDirectoryFiles
PDTPFinal/BatchFiles/correServer.bat
bat
gpl-3.0
49
@echo off REM uniCenta oPOS Touch Friendly Point of Sales designed for Touch Screen REM Copyright (c) 2009-2014 uniCenta & previous Openbravo POS works REM http://sourceforge.net/projects/unicentaopos REM REM This file is part of uniCenta oPOS REM Contributed by John L REM REM uniCenta oPOS is free software: you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by REM the Free Software Foundation, either version 3 of the License, or REM (at your option) any later version. REM REM uniCenta oPOS is distributed in the hope that it will be useful, REM but WITHOUT ANY WARRANTY; without even the implied warranty of REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the REM GNU General Public License for more details. REM REM You should have received a copy of the GNU General Public License REM along with uniCenta oPOS. If not, see <http://www.gnu.org/licenses/> REM set DIRNAME=%~dp0 set CP="%DIRNAME%unicentaopos.jar" set CP=%CP%;"%DIRNAME%locales/" set CP=%CP%;"%DIRNAME%lib/substance.jar" start /B javaw -cp %CP% com.openbravo.pos.sales.JResetPickupID
itecfx/unicenta
ResetSeq.bat
bat
gpl-3.0
1,171
start javaw -cp "lib/pty4j-0.3.jar;lib/guava-14.0.1.jar;lib/jna.jar;lib/jna-platform.jar;lib/jsch-0.1.50.jar;lib/junit-4.10.jar;lib/jzlib-1.07.jar;lib/log4j-1.2.14.jar;lib/purejavacomm-0.0.17.jar;build/jediterm-pty-2.0.jar" com.jediterm.pty.PtyMain
neoedmund/jediterm
jediterm-pty.bat
bat
lgpl-2.1
250
@echo off runtime\bin\python\python_mcp runtime\updatemcp.py %* pause
HATB0T/RuneCraftery
forge/mcp/updatemcp.bat
bat
lgpl-3.0
70
@echo off :: =========================================================================== :: Product: QP-nano build script for PC-Lint(TM) :: Last Updated for Version: 5.4.0 :: Date of the Last Update: 2015-04-15 :: :: Q u a n t u m L e a P s :: --------------------------- :: innovating embedded systems :: :: Copyright (C) Quantum Leaps, LLC. All rights reserved. :: :: This program is open source software: you can redistribute it and/or :: modify it under the terms of the GNU General Public License as published :: by the Free Software Foundation, either version 3 of the License, or :: (at your option) any later version. :: :: Alternatively, this program may be distributed and modified under the :: terms of Quantum Leaps commercial licenses, which expressly supersede :: the GNU General Public License and are specifically designed for :: licensees interested in retaining the proprietary status of their code. :: :: This program is distributed in the hope that it will be useful, :: but WITHOUT ANY WARRANTY; without even the implied warranty of :: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the :: GNU General Public License for more details. :: :: You should have received a copy of the GNU General Public License :: along with this program. If not, see <http://www.gnu.org/licenses/>. :: :: Contact information: :: Web : http://www.state-machine.com :: Email: [email protected] :: =========================================================================== setlocal :: Options for calling lin.bat :: up to 4 other options, if needed :: NOTE: adjust to for your installation directory of PC-Lint :: set PC_LINT_DIR=C:\tools\lint set QPN=..\..\..\.. set PROJ_DIR=.. set LINTFLAGS=-i%PC_LINT_DIR%\lnt %QPN%\include\std.lnt options.lnt -i%PROJ_DIR% %1 %2 %3 %4 :: linting ------------------------------------------------------------------- %PC_LINT_DIR%\lint-nt -os(lint_out.txt) %LINTFLAGS% %PROJ_DIR%\philo.c %PROJ_DIR%\table.c endlocal
hyller/GladiatorCots
QP/v5.4.2/qpn/examples/arm-cm/dpp_ek-tm4c123gxl/lint/lin.bat
bat
unlicense
2,088
@echo off set BATCHDIR=%~dp0 if "%1"=="" ( echo ƒtƒ@ƒCƒ‹‚ðŽw’肵‚Ä‚­‚¾‚³‚¢ pause exit 0 ) set script=%BATCHDIR%\dumpbin.py "C:\Program Files (x86)\IronPython 2.7\ipy.exe" "%script%" "%1" pause
bugoodby/bugoodbylib
script/py/dumpbin.bat
bat
unlicense
214
@echo off rem -------------------------------------------------------- rem Start JConsole with flow manager jar containing DTOs rem -------------------------------------------------------- jconsole -J-Djava.class.path="%JAVA_HOME%/lib/jconsole.jar";"%JAVA_HOME%/lib/tools.jar";lib/ipf-commons-flow-${project.version}.jar
krasserm/ipf
tutorials/ref/start-console.bat
bat
apache-2.0
323
redis-server --service-uninstall --service-name "redis_slaver" pause
jior/cluster
redis-slaver/redis-uninstallservice.bat
bat
apache-2.0
68
@echo off python ..\closure\closure\bin\build\depswriter.py --root_with_prefix=". ../../../visualizer" > deps.js python ..\closure\closure\bin\build\closurebuilder.py --root=. --root=..\closure --namespace="monoid.main" --output_mode=compiled --compiler_jar=..\closure\compiler.jar -f --warning_level=VERBOSE -f --externs=extern.js -f --js=..\closure\closure\goog\deps.js > main-compiled.js
sundbry/hwo-2014-monoid
visualizer/build.bat
bat
apache-2.0
390
conda install -y wxpython conda update -y scipy numpy tables wxpython pip install --upgrade pip rpy2 pip install --upgrade sten ipython --c "import sten; sten.gui()" http://www.r-bloggers.com/how-to-do-a-silent-install-of-r/ Install current R version
jknebel/STEN
bin/sten_install.bat
bat
bsd-3-clause
262
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Gradientzoo.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Gradientzoo.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
gradientzoo/python-gradientzoo
docs/make.bat
bat
bsd-3-clause
7,742
rem helps installing socket.io on windows 7 with VS 2012 installed, alongside with other node modules call npm install --msvs_version=2012 pause
lvnhmd/collab.js
npm_win_vs2012.cmd
bat
mit
144
@erase lang.inc @echo lang fix ru >lang.inc @fasm free3d04.asm free3d04 @erase lang.inc @pause
devlato/kolibrios-llvm
programs/demos/free3d04/trunk/build_ru.bat
bat
mit
94
@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\Tabulate.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Tabulate.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
tabulate/tabulate3
docs/make.bat
bat
gpl-2.0
6,705
mkdir "%APPDATA%\JetBrains\dotCover\v2.0\Plugins" 2> NUL mkdir "%APPDATA%\JetBrains\dotCover\v2.0\Plugins\mspec" 2> NUL copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\dotCover\v2.0\Plugins\mspec" copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\dotCover\v2.0\Plugins\mspec" > NUL copy /y Machine.Specifications.dotCoverRunner.2.0.dll "%APPDATA%\JetBrains\dotCover\v2.0\Plugins\mspec" copy /y Machine.Specifications.dotCoverRunner.2.0.pdb "%APPDATA%\JetBrains\dotCover\v2.0\Plugins\mspec" > NUL pause
JamesKovacs/cm-cqrs
src/packages/Machine.Specifications.0.7.0/tools/InstallDotCoverRunner.2.0.bat
bat
mit
523
cmd_net/ipv6/ipv6.o := ld -m elf_i386 -r -o net/ipv6/ipv6.o net/ipv6/af_inet6.o net/ipv6/anycast.o net/ipv6/ip6_output.o net/ipv6/ip6_input.o net/ipv6/addrconf.o net/ipv6/sit.o net/ipv6/route.o net/ipv6/ip6_fib.o net/ipv6/ipv6_sockglue.o net/ipv6/ndisc.o net/ipv6/udp.o net/ipv6/raw.o net/ipv6/protocol.o net/ipv6/icmp.o net/ipv6/mcast.o net/ipv6/reassembly.o net/ipv6/tcp_ipv6.o net/ipv6/exthdrs.o net/ipv6/sysctl_net_ipv6.o net/ipv6/datagram.o net/ipv6/proc.o net/ipv6/ip6_flowlabel.o net/ipv6/ipv6_syms.o
binhqnguyen/lena
nsc/linux-2.6/net/ipv6/.ipv6.o.cmd
bat
gpl-2.0
509
@echo off :: Now we declare a scope Setlocal EnableDelayedExpansion EnableExtensions if not defined Configuration set Configuration=2015 if "%Configuration%"=="MinGW" ( goto :mingw ) set arch=x86 if "%platform%" EQU "x64" ( set arch=x86_amd64 ) if "%Configuration%"=="2015" ( set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" ) if "%Configuration%"=="2013" ( set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" ) if "%Configuration%"=="2012" ( set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" ) if "%Configuration%"=="2010" ( set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" ) if "%Configuration%"=="2008" ( set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" ) :: Visual Studio detected endlocal & call %SET_VS_ENV% %arch% goto :eof :: MinGW detected :mingw endlocal & set PATH=c:\mingw\bin;%PATH%
ignacio/lua-rapidjson
.scripts/set_compiler_env.bat
bat
mit
993
node_modules\.bin\mocha --reporter nyan nativescriptsetup_tests & PAUSE
Plamen5kov/nativescript_windows_set_up
nativescriptsetup_tests/run_tests.bat
bat
mit
71
@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\ace.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\ace.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
partofthething/ace
doc/make.bat
bat
mit
6,695
@echo off If exist x:\windows\system32\IME\IMEReg.cmd call x:\windows\system32\IME\IMEReg.cmd wpeinit If exist x:\ghost\ghost32.exe start "" x:\ghost\ghost32.exe /split=2048
morokoshi/Build-BootableWindowsPe
Windows PE Builder/Windows PE Builder/Templates/Base/x86/Windows/System32/startnet.cmd
bat
mit
177
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\[email protected]@eslint\bin\eslint.js" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\[email protected]@eslint\bin\eslint.js" %* )
levi1994/fast-console
node_modules/.bin/eslint.cmd
bat
mit
214
@node etsi %*
vladimir-kotikov/etsi
bin/etsi.bat
bat
mit
15
@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\Boiler.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Boiler.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
jpritt/boiler
docs/make.bat
bat
mit
6,701
@echo off REM PHPSpec REM REM GNU LESSER GENERAL PUBLIC LICENSE REM Version 3, 29 June 2007 REM REM Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> REM Everyone is permitted to copy and distribute verbatim copies REM of this license document, but changing it is not allowed. REM REM REM This version of the GNU Lesser General Public License incorporates REM the terms and conditions of version 3 of the GNU General Public REM License, supplemented by the additional permissions listed below. REM REM 0. Additional Definitions. REM REM As used herein, "this License" refers to version 3 of the GNU Lesser REM General Public License, and the "GNU GPL" refers to version 3 of the GNU REM General Public License. REM REM "The Library" refers to a covered work governed by this License, REM other than an Application or a Combined Work as defined below. REM REM An "Application" is any work that makes use of an interface provided REM by the Library, but which is not otherwise based on the Library. REM Defining a subclass of a class defined by the Library is deemed a mode REM of using an interface provided by the Library. REM REM A "Combined Work" is a work produced by combining or linking an REM Application with the Library. The particular version of the Library REM with which the Combined Work was made is also called the "Linked REM Version". REM REM The "Minimal Corresponding Source" for a Combined Work means the REM Corresponding Source for the Combined Work, excluding any source code REM for portions of the Combined Work that, considered in isolation, are REM based on the Application, and not on the Linked Version. REM REM The "Corresponding Application Code" for a Combined Work means the REM object code and/or source code for the Application, including any data REM and utility programs needed for reproducing the Combined Work from the REM Application, but excluding the System Libraries of the Combined Work. REM REM 1. Exception to Section 3 of the GNU GPL. REM REM You may convey a covered work under sections 3 and 4 of this License REM without being bound by section 3 of the GNU GPL. REM REM 2. Conveying Modified Versions. REM REM If you modify a copy of the Library, and, in your modifications, a REM facility refers to a function or data to be supplied by an Application REM that uses the facility (other than as an argument passed when the REM facility is invoked), then you may convey a copy of the modified REM version: REM REM a) under this License, provided that you make a good faith effort to REM ensure that, in the event an Application does not supply the REM function or data, the facility still operates, and performs REM whatever part of its purpose remains meaningful, or REM REM b) under the GNU GPL, with none of the additional permissions of REM this License applicable to that copy. REM REM 3. Object Code Incorporating Material from Library Header Files. REM REM The object code form of an Application may incorporate material from REM a header file that is part of the Library. You may convey such object REM code under terms of your choice, provided that, if the incorporated REM material is not limited to numerical parameters, data structure REM layouts and accessors, or small macros, inline functions and templates REM (ten or fewer lines in length), you do both of the following: REM REM a) Give prominent notice with each copy of the object code that the REM Library is used in it and that the Library and its use are REM covered by this License. REM REM b) Accompany the object code with a copy of the GNU GPL and this license REM document. REM REM 4. Combined Works. REM REM You may convey a Combined Work under terms of your choice that, REM taken together, effectively do not restrict modification of the REM portions of the Library contained in the Combined Work and reverse REM engineering for debugging such modifications, if you also do each of REM the following: REM REM a) Give prominent notice with each copy of the Combined Work that REM the Library is used in it and that the Library and its use are REM covered by this License. REM REM b) Accompany the Combined Work with a copy of the GNU GPL and this license REM document. REM REM c) For a Combined Work that displays copyright notices during REM execution, include the copyright notice for the Library among REM these notices, as well as a reference directing the user to the REM copies of the GNU GPL and this license document. REM REM d) Do one of the following: REM REM 0) Convey the Minimal Corresponding Source under the terms of this REM License, and the Corresponding Application Code in a form REM suitable for, and under terms that permit, the user to REM recombine or relink the Application with a modified version of REM the Linked Version to produce a modified Combined Work, in the REM manner specified by section 6 of the GNU GPL for conveying REM Corresponding Source. REM REM 1) Use a suitable shared library mechanism for linking with the REM Library. A suitable mechanism is one that (a) uses at run time REM a copy of the Library already present on the user's computer REM system, and (b) will operate properly with a modified version REM of the Library that is interface-compatible with the Linked REM Version. REM REM e) Provide Installation Information, but only if you would otherwise REM be required to provide such information under section 6 of the REM GNU GPL, and only to the extent that such information is REM necessary to install and execute a modified version of the REM Combined Work produced by recombining or relinking the REM Application with a modified version of the Linked Version. (If REM you use option 4d0, the Installation Information must accompany REM the Minimal Corresponding Source and Corresponding Application REM Code. If you use option 4d1, you must provide the Installation REM Information in the manner specified by section 6 of the GNU GPL REM for conveying Corresponding Source.) REM REM 5. Combined Libraries. REM REM You may place library facilities that are a work based on the REM Library side by side in a single library together with other library REM facilities that are not Applications and are not covered by this REM License, and convey such a combined library under terms of your REM choice, if you do both of the following: REM REM a) Accompany the combined library with a copy of the same work based REM on the Library, uncombined with any other library facilities, REM conveyed under the terms of this License. REM REM b) Give prominent notice with the combined library that part of it REM is a work based on the Library, and explaining where to find the REM accompanying uncombined form of the same work. REM REM 6. Revised Versions of the GNU Lesser General Public License. REM REM The Free Software Foundation may publish revised and/or new versions REM of the GNU Lesser General Public License from time to time. Such new REM versions will be similar in spirit to the present version, but may REM differ in detail to address new problems or concerns. REM REM Each version is given a distinguishing version number. If the REM Library as you received it specifies that a certain numbered version REM of the GNU Lesser General Public License "or any later version" REM applies to it, you have the option of following the terms and REM conditions either of that published version or of any later version REM published by the Free Software Foundation. If the Library as you REM received it does not specify a version number of the GNU Lesser REM General Public License, you may choose any version of the GNU Lesser REM General Public License ever published by the Free Software Foundation. REM REM If the Library as you received it specifies that a proxy can decide REM whether future versions of the GNU Lesser General Public License shall REM apply, that proxy's public statement of acceptance of any version is REM permanent authorization for you to choose that version for the REM Library. REM if "%PHPBIN%" == "" set PHPBIN=@php_bin@ if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH GOTO RUN :USE_PEAR_PATH set PHPBIN=%PHP_PEAR_PHP_BIN% :RUN "%PHPBIN%" "@bin_dir@\phpspec" %*
manufy/PHP-BDD-YaCMS
Lib/PHPSpec-1.3.0beta/phpspec.bat
bat
mit
8,510
@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\rogue.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\rogue.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
4383/rogue
docs/make.bat
bat
mit
6,457
@echo off setlocal if "%1"=="" ( echo pe_profile ProblemNumber exit /b ) set CDIR=%~dp0 @echo on python -m cProfile %CDIR%pe%1.py %* @echo off exit /b
kittttttan/pe
py/pe/profile.bat
bat
mit
159
cd C:\Program Files\MongoDB\Server\3.4\bin mongod --dbpath "C:\MyFolder\Work\Projects\akvilor\data\db"
donrebel/akvilor
1_runMongoDB.bat
bat
mit
110
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Clib.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Clib.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
rig-project/clib
site/make.bat
bat
mit
7,240
@set scriptPath=%~f0&@powershell -NoProfile -ExecutionPolicy ByPass -InputFormat None "$s=[scriptblock]::create((gc \"%~f0\"|?{$_.readcount -gt 2})-join\"`n\");&$s" %* @exit /b %errorlevel% # markdown -> docx param($mdFile = $(Read-Host "Enter markdown file path")) $ErrorActionPreference = "stop" $DebugPreference = "SilentlyContinue" # Continue SilentlyContinue Stop Inquire # for break point use $host.EnterNestedPrompt() $cmdFile = & { if ($env:scriptPath) { return [System.IO.Path]::GetFullPath($env:scriptPath) } else { return [System.IO.Path]::GetFullPath($script:MyInvocation.MyCommand.Path) } } $cmdDir = Split-Path -parent $cmdFile Set-Location $cmdDir <# for test $mdFile = Join-Path $commandPath "test.md" #> # Const variable $CONST = @{ msoConnectorCurve = 3 msoConnectorElbow = 2 msoConnectorStraight = 1 msoConnectorTypeMixed = -2 msoFalse = 0 msoLineSingle = 1 msoLineStyleMixed = -2 msoLineThickBetweenThin = 5 msoLineThickThin = 4 msoLineThinThick = 3 msoLineThinThin = 2 msoTrue = -1 wdAlertsAll = -1 wdAlertsMessageBox = -2 wdAlertsNone = 0 wdAlignParagraphCenter = 1 wdAlignParagraphLeft = 0 wdAlignParagraphRight = 2 wdAutoFitContent = 1 wdAutoFitFixed = 0 wdAutoFitWindow = 2 wdColumnBreak = 8 wdDoNotSaveChanges = 0 wdFieldEmpty = -1 wdFieldPage = 33 wdHeaderFooterEvenPages = 3 wdHeaderFooterFirstPage = 2 wdHeaderFooterPrimary = 1 wdLineBreak = 6 wdLineBreakClearLeft = 9 wdLineBreakClearRight = 10 wdListApplyToWholeList = 0 wdBulletGallery = 1 wdBorderLeft = -2 wdBorderRight = -4 wdBorderTop = -1 wdBorderBottom = -3 wdBorderDiagonalDown = -7 wdBorderDiagonalUp = -8 wdBorderHorizontal = -5 wdBorderVertical = -6 wdLineStyleDashDot = 5 wdLineStyleDashDotDot = 6 wdLineStyleDashDotStroked = 20 wdLineStyleDashLargeGap = 4 wdLineStyleDashSmallGap = 3 wdLineStyleDot = 2 wdLineStyleDouble = 7 wdLineStyleDoubleWavy = 19 wdLineStyleEmboss3D = 21 wdLineStyleEngrave3D = 22 wdLineStyleInset = 24 wdLineStyleNone = 0 wdLineStyleOutset = 23 wdLineStyleSingle = 1 wdLineStyleSingleWavy = 18 wdLineStyleThickThinLargeGap = 16 wdLineStyleThickThinMedGap = 13 wdLineStyleThickThinSmallGap = 10 wdLineStyleThinThickLargeGap = 15 wdLineStyleThinThickMedGap = 12 wdLineStyleThinThickSmallGap = 9 wdLineStyleThinThickThinLargeGap = 17 wdLineStyleThinThickThinMedGap = 14 wdLineStyleThinThickThinSmallGap = 11 wdLineStyleTriple = 8 wdLineWidth025pt = 2 wdLineWidth050pt = 4 wdLineWidth075pt = 6 wdLineWidth100pt = 8 wdLineWidth150pt = 12 wdLineWidth225pt = 18 wdLineWidth300pt = 24 wdLineWidth450pt = 36 wdLineWidth600pt = 48 wdNumberGallery = 2 wdOutlineNumberGallery = 3 wdPageBreak = 7 wdPromptToSaveChanges = -2 wdSaveChanges = -1 wdSectionBreakContinuous = 3 wdSectionBreakEvenPage = 4 wdSectionBreakNextPage = 2 wdSectionBreakOddPage = 5 wdSeekCurrentPageFooter = 10 wdSeekCurrentPageHeader = 9 wdSeekMainDocument = 0 wdTextWrappingBreak = 11 wdThemeColorAccent1 = 4 wdThemeColorAccent2 = 5 wdThemeColorAccent3 = 6 wdThemeColorAccent4 = 7 wdThemeColorAccent5 = 8 wdThemeColorAccent6 = 9 wdWord8TableBehavior = 0 wdWord9TableBehavior = 1 wdTableFormat3DEffects1 = 32 wdTableFormat3DEffects2 = 33 wdTableFormat3DEffects3 = 34 wdTableFormatClassic1 = 4 wdTableFormatClassic2 = 5 wdTableFormatClassic3 = 6 wdTableFormatClassic4 = 7 wdTableFormatColorful1 = 8 wdTableFormatColorful2 = 9 wdTableFormatColorful3 = 10 wdTableFormatColumns1 = 11 wdTableFormatColumns2 = 12 wdTableFormatColumns3 = 13 wdTableFormatColumns4 = 14 wdTableFormatColumns5 = 15 wdTableFormatContemporary = 35 wdTableFormatElegant = 36 wdTableFormatGrid1 = 16 wdTableFormatGrid2 = 17 wdTableFormatGrid3 = 18 wdTableFormatGrid4 = 19 wdTableFormatGrid5 = 20 wdTableFormatGrid6 = 21 wdTableFormatGrid7 = 22 wdTableFormatGrid8 = 23 wdTableFormatList1 = 24 wdTableFormatList2 = 25 wdTableFormatList3 = 26 wdTableFormatList4 = 27 wdTableFormatList5 = 28 wdTableFormatList6 = 29 wdTableFormatList7 = 30 wdTableFormatList8 = 31 wdTableFormatNone = 0 wdTableFormatProfessional = 37 wdTableFormatSimple1 = 1 wdTableFormatSimple2 = 2 wdTableFormatSimple3 = 3 wdTableFormatSubtle1 = 38 wdTableFormatSubtle2 = 39 wdTableFormatWeb1 = 40 wdTableFormatWeb2 = 41 wdTableFormatWeb3 = 42 } function rgb($r, $g, $b) { return ($b + ($g * 256) + ($r * 65536)) } function randomColor() { $r = $(0..255 | Get-Random) $g = $(0..255 | Get-Random) $b = $(0..255 | Get-Random) return rgb $r $g $b } function checkFilePath($path) { trap { Write-Host "[checkFilePath]: Error $($_)"; throw $_ } $path = $path -replace """", "" $path = $path -replace "'", "" if (! (Test-Path $path)) { Write-Host "$($path) is not found !" return $false } # to abs path $path = Convert-Path $path Write-Debug $path return $path } function typeText($line, $word, $doc, $selection, [ref]$commandFlg, [ref]$tableMap, [ref]$listMap) { trap { Write-Host "[typeText]: Error $($_)"; throw $_ } # command if ($commandFlg.Value) { # Check command end if ($line -match "^-->$") { #Write-Debug "---------- command end ----------" # do command $commandStr = $commandList.ToArray() -join "`n" #Write-Debug $commandStr Invoke-Expression $commandStr $commandList = New-Object System.Collections.Generic.List[string] $commandFlg.Value = $false return } $commandList.Add($line) return } # table if ($tableMap.Value.flg) { # Check tale end if ($line -notmatch "^\|.*\|$") { Write-Debug "---------- table end ----------" Write-Debug "table row = $($tableMap.Value.row)" Write-Debug "table col = $($tableMap.Value.col)" $table = $doc.Range([ref]$tableMap.Value.rangeStart, [ref]$tableMap.Value.rangeEnd).ConvertToTable("|", $tableMap.Value.row, $tableMap.Value.col) $table.AutoFormat($CONST.wdTableFormatElegant) # Cell Alignment $tableDelRow = 0 $table.Rows | % { $rowNum = $_.Index $_ | % { $val = $_.Range.Text Write-Debug $val if ($val -match "^:-*$") { $tableDelRow = $rowNum $table.Columns.Item($_.Index).Select() $selection.ParagraphFormat.Alignment = $CONST.wdAlignParagraphLeft } elseif ($val -match "^-*:$") { $tableDelRow = $rowNum $table.Columns.Item($_.Index).Select() $selection.ParagraphFormat.Alignment = $CONST.wdAlignParagraphRight } elseif ($val -match "^:-*:$") { $tableDelRow = $rowNum $table.Columns.Item($_.Index).Select() $selection.ParagraphFormat.Alignment = $CONST.wdAlignParagraphCenter } } } if ($tableDelRow -ne 0) { Write-Debug "Delete $($tableDelRow) row" } $tableMap.Value.row = 0 $tableMap.Value.col = 0 $tableMap.Value.rangeStart = 0 $tableMap.Value.rangeEnd = 0 $tableMap.Value.flg = $false } } # command if ($line -match "<!--!(?<command>.*)-->") { $inlineCommand = $matches.command $line = $line -replace "<!--!.*-->", "" } else { $inlineCommand = "" } switch -regex ($line) { # title "^#<!--%title--> " { $line = $line -replace "^#<!--%title--> ", "" $selection.TypeText($line) $selection.Style = $doc.Styles.Item("•\‘è") break } # subtitle "^#<!--%subtitle--> " { $line = $line -replace "^#<!--%subtitle--> ", "" $selection.TypeText($line) $selection.Style = $doc.Styles.Item("•›‘è") break } # head 1 "^# " { $line = $line -replace "^# ", "" $selection.TypeText($line) $selection.Style = $doc.Styles.Item("Œ©o‚µ 1") } # head 2 "^## " { $line = $line -replace "^## ", "" $selection.TypeText($line) $selection.Style = $doc.Styles.Item("Œ©o‚µ 2") } # head 3 "^### " { $line = $line -replace "^### ", "" $selection.TypeText($line) $selection.Style = $doc.Styles.Item("Œ©o‚µ 3") } # head 4 "^#### " { $line = $line -replace "^#### ", "" $selection.TypeText($line) $selection.Style = $doc.Styles.Item("Œ©o‚µ 4") } # bullet list "^(?<bIndent>\s*)\* " { $line = $line -replace "^\s*\* ", "" $selection.Range.ListFormat.ApplyBulletDefault() # indent $indentCnt = ($matches.bIndent).Length if ($indentCnt -ne 0) { if ($listMap.Value.indentCnt -eq 0) { $listMap.Value.indentCnt = $indentCnt } $indent = $indentCnt / $listMap.Value.indentCnt for ($i = 0; $i -lt $indent; $i++) { $selection.Range.ListFormat.ListIndent() } } $selection.TypeText($line) } # number list "^(?<nIndent>\s*)[0-9]+\. " { $line = $line -replace "^\s*[0-9]+\. ", "" $selection.Range.ListFormat.ApplyNumberDefault() if ($listMap.Value.continuous) { $selection.Range.ListFormat.ApplyListTemplate($word.ListGalleries.Item($CONST.wdNumberGallery).ListTemplates.Item(1), $true) } else { $selection.Range.ListFormat.ApplyListTemplate($word.ListGalleries.Item($CONST.wdNumberGallery).ListTemplates.Item(1), $false) $listMap.Value.continuous = $true } # indent $indentCnt = ($matches.nIndent).Length if ($indentCnt -ne 0) { if ($listMap.Value.indentCnt -eq 0) { $listMap.Value.indentCnt = $indentCnt } $indent = $indentCnt / $listMap.Value.indentCnt for ($i = 0; $i -lt $indent; $i++) { $selection.Range.ListFormat.ListIndent() } } $selection.TypeText($line) } # list continuous "<!--% *end of list *-->$" { $listMap.Value.continuous = $false return } # image "!\[(?<imgName>.*)\]\((?<imgUrl>.*)\)(<!--%(?<width>[0-9]*)x(?<height>[0-9]*)-->|.*)" { $imgPath = $(Join-Path (Split-Path -parent $mdFile) $matches.imgUrl) if (Test-Path $imgPath) { $img = $selection.InlineShapes.AddPicture($imgPath) #Write-Debug "Height: [$($img.Height)] Width: [$($img.Width)]" $img.LockAspectRatio = $CONST.msoTrue if ($matches.width) { $img.Width = $matches.width } if ($matches.height) { $img.Height = $matches.height } } else { Write-Error "$($imgPath) is not found !" } } # hyperlink "^(?<lHead>.*)\[(?<text>.*)\]\((?<url>.*)\)" { Write-Debug "text: [$($matches.text)] url: [$($matches.url)]" $selection.TypeText($matches.lHead) $doc.Hyperlinks.Add($selection.Range, $matches.url, [System.Reflection.Missing]::Value, [System.Reflection.Missing]::Value, $matches.text) } # page break "^<!-- *%(\[‰üƒy[ƒW\]|\[PageBreak\]) *-->" { $selection.InsertBreak() return } # section break "^<!-- *%(\[‰üƒZƒNƒVƒ‡ƒ“\]|\[SectionBreak\]) *-->" { $selection.InsertBreak($CONST.wdSectionBreakNextPage) return } # comment command start "^<!--!$" { #Write-Debug "---------- command start ----------" $commandFlg.Value = $true return } # table "^\|.*\|$" { # Ignore markdown alignment row. if ($line -match "^\|[:\-\| ]*\|$") { return } Write-Debug "---------- table start ----------" $lineArray = $line.SubString(1, $line.Length - 2) -split "\|" $tableMap.Value.col = $lineArray.Length $tableMap.Value.row++ if (!$tableMap.Value.flg) { $tableMap.Value.rangeStart = $selection.Start } $lineArray = $lineArray | % { $_.Trim() } $selection.TypeText($lineArray -join "|") $tableMap.Value.rangeEnd = $selection.End $tableMap.Value.flg = $true } # comment "<!--[^!].*-->" { # do nothing #Write-Debug "comment" } # other default { $selection.TypeText($line) } } # Do inline command if ($inlineCommand -ne "") { Invoke-Expression $inlineCommand } $selection.TypeParagraph() $selection.Style = $doc.Styles.Item("•W€") } function readps1() { trap { Write-Host "[readps1]: Error $($_)"; throw $_ } $mdFileInfo = gci $mdFile $ps1File = Join-Path $mdFileInfo.DirectoryName ($mdFileInfo.BaseName + ".ps1") if (Test-Path $ps1File) { Write-Debug "$($ps1File) is exists !" Write-Host "Excute $($ps1File)..." Invoke-Expression "& '$ps1File'" } } function main() { trap { Write-Host "[main]: Error $($_)"; throw $_ } $commandList = New-Object System.Collections.Generic.List[string] $commandFlg = $false $tableMap = @{ flg = $false row = 0 col = 0 rangeStart = 0 rangeEnd = 0 } $listMap = @{ continuous = $true indentCnt = 0 } # check file $mdFile = checkFilePath $mdFile if (! $mdFile) { return -1 } Write-Host "Executing..." # Open docx try { $word = New-Object -ComObject Word.Application $word.Application.DisplayAlerts = $CONST.wdAlertsNone # $word.Visible = $true $doc = $word.Documents.Add() $selection = $word.Selection gc -Encoding UTF8 $mdFile | % { #Write-Debug $_ typeText $_ $word $doc $selection ([ref]$commandFlg) ([ref]$tableMap) ([ref]$listMap) } # Read and excute out script readps1 # reset style $selection.Style = $doc.Styles.Item("•W€") $mdFileInfo = gci $mdFile $doc.SaveAs([ref]$(Join-Path $mdFileInfo.DirectoryName ($mdFileInfo.BaseName + ".docx"))) } catch [Exception] { throw "[main]: Error $($_)" } finally { if ($word) { $word.Quit([ref]$CONST.wdDoNotSaveChanges) } } } # call main Measure-Command { main }
yukimemi/md2docx
md2docx.cmd
bat
mit
14,573
@echo off set branch=master set version=1.1 :st if not "%~1" == "" ( if /i "%~1" == "-b" set branch=%~2 & shift /2 if /i "%~2" == "-b" set branch=%~3 & shift /2 if /i "%~3" == "-b" set branch=%~4 & shift /2 if /i "%~4" == "-b" set branch=%~5 & shift /2 if /i "%~1" == "-v" set version=%~2 & shift /2 if /i "%~2" == "-v" set version=%~3 & shift /2 if /i "%~3" == "-v" set version=%~4 & shift /2 if /i "%~4" == "-v" set version=%~5 & shift /2 if /i "%~1" == "/?" goto help if /i "%~1" == "-h" goto help if /i "%~1" == "-i" goto init if /i "%~1" == "-u" goto main if /i "%~1" == "-d" goto dl if /i "%~1" == "-a" goto add if /i "%~1" == "-r" goto restore if /i "%~1" == "-l" goto log if "%~1" == "" goto main shift goto st ) :help echo Deploy a project to Github (or get it here) echo Usages: deploy [-i] [project] [-b branch^|-v version] echo deploy -d username@host:/path/to/repo echo deploy [-u^|-a [file]] [comment] [-b branch] echo deploy [comment] [-b branch^|-v version]] echo deploy [-r file^|-l [all^|change]] echo. echo -i Initialise and deploy (no need to specify -u) echo -u Update the Github repo (same as no parameter) echo project Name of the project echo -d Download the project from Github echo username@host:/path/to/repo Place to get it (default: Berkmann18@github:[project]) echo -a [file] [comment] Add a file with the corresponding commit message echo -b branch Branch to deploy at (default: master) echo -v version Version to deploy (default: 1.1) echo -r file File to restore from HEAD (if you messed something) echo -l [^|all^|change] Log, all logs or logs on the changes exit /b :init git init git add . git commit -m "Initial commit" git remote add origin https://github.com/Berkmann18/EssenceJS git remote -v git push origin %branch% exit /b :main git add * if not "%~2" == "" git commit -F "%version%/updates.md" -m "%~2" if "%~2" == "" git commit -F "%version%/updates.md" -m "Update" git push origin %branch% echo %tab%%tab%Git status git status exit /b :dl git init git pull origin %branch% EssenceJS exit /b :add if not "%~2" == "" git add %~2 if "%~2" == "" git add * if not "%~3" == "" git commit -m "%~3" if "%~3" == "" git commit -m "Add file via upload" git push origin %branch% exit /b :restore git checkout -- %~2 exit /b :log if "%~2" == "" git log --graph --oneline --decorate & exit /b if "%~2" == "all" git log --graph --oneline --decorate --all & exit /b if "%~2" == "change" git log --name-status & echo. & exit /b
Berkmann18/Essencejs
deploy.bat
bat
mit
2,586
"..\.nuget\NuGet.exe" push logging.0.9.1.nupkg
azraelrabbit/webstack
logging/push-nuget.bat
bat
mit
46
#!/bin/sh rem (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. rem rem This file contains confidential and proprietary information rem of Xilinx, Inc. and is protected under U.S. and rem international copyright and other intellectual property rem laws. rem rem DISCLAIMER rem This disclaimer is not a license and does not grant any rem rights to the materials distributed herewith. Except as rem otherwise provided in a valid license issued to you by rem Xilinx, and to the maximum extent permitted by applicable rem law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND rem WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES rem AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING rem BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- rem INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and rem (2) Xilinx shall not be liable (whether in contract or tort, rem including negligence, or under any other theory of rem liability) for any loss or damage of any kind or nature rem related to, arising under or in connection with these rem materials, including for any direct, or any indirect, rem special, incidental, or consequential loss or damage rem (including loss of data, profits, goodwill, or any type of rem loss or damage suffered as a result of any action brought rem by a third party) even if such damage or loss was rem reasonably foreseeable or Xilinx had been advised of the rem possibility of the same. rem rem CRITICAL APPLICATIONS rem Xilinx products are not designed or intended to be fail- rem safe, or for use in any application requiring fail-safe rem performance, such as life-support or safety devices or rem systems, Class III medical devices, nuclear facilities, rem applications related to the deployment of airbags, or any rem other applications that could lead to death, personal rem injury, or severe property or environmental damage rem (individually and collectively, "Critical rem Applications"). Customer assumes the sole risk and rem liability of any use of Xilinx products in Critical rem Applications, subject only to applicable laws and rem regulations governing limitations on product liability. rem rem THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS rem PART OF THIS FILE AT ALL TIMES. rem ----------------------------------------------------------------------------- rem Script to synthesize and implement the Coregen FIFO Generator rem ----------------------------------------------------------------------------- rmdir /S /Q results mkdir results cd results copy ..\..\..\vram.ngc . planAhead -mode batch -source ..\planAhead_ise.tcl
chrismasters/fpga-space-invaders
project/ipcore_dir/vram/implement/planAhead_ise.bat
bat
mit
2,626
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\outbit.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\outbit.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
starboarder2001/outbit
docs/make.bat
bat
mit
7,741
@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\Mongu.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Mongu.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
tevino/mongu
docs/make.bat
bat
mit
6,699
@echo off REM Fake makefile for Windows. set OUTDIR=wout set TARGET=TestMain.exe if "%1" == "print" goto :print if "%1" == "test" goto :test if "%1" == "clean" goto :clean :exe echo Build %TARGET% cd src cl *.c /link /out:%TARGET% set exitcode=%ERRORLEVEL% set outdir1=..\%OUTDIR% if not exist %outdir1% mkdir %outdir1% if exist "%TARGET%" move %TARGET% %outdir1% for %%F in (*.obj) do move %%F %outdir1% if exist src\ut del src\ut cd .. echo Exit code = %exitcode% exit /b %exitcode% :print echo OUTDIR = %OUTDIR% echo TARGET = %TARGET% exit /b 0 :test if not exist %OUTDIR%\%TARGET% ( echo %TARGET% not found. Please build the project first. exit /b 1 ) %OUTDIR%\%TARGET% set exitcode=%ERRORLEVEL% echo Exit code = %exitcode% exit /b %exitcode% :clean echo Clean files if exist %OUTDIR% rd /s /q %OUTDIR% if exist src\ut del src\ut exit /b 0
choksheak/C-GenericMap
wmake.bat
bat
mit
967
SET JAVA_HOME=D:\SDKs\jdk1.7.0_80 gradlew desktop:dist pause
gforcedev/alexml
Compile.bat
bat
mit
62
zfc -i "C:\Users\y.kawai\Documents\neuecc\ZeroFormatter\sandbox\Sandbox.Shared\Sandbox.Shared.csproj" -o "here.cs" -c UNITY -u
neuecc/ZeroFormatter
nuget/check_zfc.bat
bat
mit
126
cls make && run
spookiecookie/acm
build and run.bat
bat
mit
18
cmd_sound/isa/sb/built-in.o := rm -f sound/isa/sb/built-in.o; arm-poky-linux-gnueabi-ar rcsD sound/isa/sb/built-in.o
heyoufei2/yocto3.14.38_kernel
sound/isa/sb/.built-in.o.cmd
bat
gpl-2.0
118
cmd_drivers/i2c/chips/built-in.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/i2c/chips/built-in.o drivers/i2c/chips/yda165_integ.o drivers/i2c/chips/gp2a_proximity.o drivers/i2c/chips/gp2a_light.o drivers/i2c/chips/gp2a_proc.o drivers/i2c/chips/fsa9480.o drivers/i2c/chips/k3g.o drivers/i2c/chips/orientation.o
dagnarf/sgh-i717-dagkernel
drivers/i2c/chips/.built-in.o.cmd
bat
gpl-2.0
356
cmd_arch/arm/kernel/head.o := /home/pasquale/android/arm-2009q3/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/kernel/.head.o.d -nostdinc -isystem /home/pasquale/android/arm-2009q3/bin/../lib/gcc/arm-none-eabi/4.4.1/include -I/home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -msoft-float -DTEXT_OFFSET=0x00008000 -ffast-math -mfpu=vfp -pipe -c -o arch/arm/kernel/head.o arch/arm/kernel/head.S deps_arch/arm/kernel/head.o := \ arch/arm/kernel/head.S \ $(wildcard include/config/xip/kernel.h) \ $(wildcard include/config/xip/phys/addr.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/allow/cpu/alignment.h) \ $(wildcard include/config/cpu/dcache/disable.h) \ $(wildcard include/config/cpu/bpredict/disable.h) \ $(wildcard include/config/cpu/icache/disable.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ $(wildcard include/config/debug/ll.h) \ $(wildcard include/config/arch/netwinder.h) \ $(wildcard include/config/arch/cats.h) \ $(wildcard include/config/arch/rpc.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/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/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/linkage.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/hwcap.h \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/mmu.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.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/sparsemem.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/mach/lge.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ $(wildcard include/config/arch/msm/scorpionmp.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/pasquale/Scrivania/FranciscoFranco_ICS_kernel/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) \ arch/arm/kernel/head-common.S \ arch/arm/kernel/head.o: $(deps_arch/arm/kernel/head.o) $(deps_arch/arm/kernel/head.o):
p500-ics-cm9/Franco-ICS-Kernel
arch/arm/kernel/.head.o.cmd
bat
gpl-2.0
4,730
cmd_arch/arm/lib/memzero.o := /home/rms/EXP/scripts/gcc-wrapper.py arm-eabi-gcc -Wp,-MD,arch/arm/lib/.memzero.o.d -nostdinc -isystem /home/rms/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/rms/EXP/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/memzero.o arch/arm/lib/memzero.S source_arch/arm/lib/memzero.o := arch/arm/lib/memzero.S deps_arch/arm/lib/memzero.o := \ /home/rms/EXP/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/rms/EXP/arch/arm/include/asm/linkage.h \ /home/rms/EXP/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/rms/EXP/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/rms/EXP/arch/arm/include/asm/hwcap.h \ /home/rms/EXP/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ $(wildcard include/config/emulate/domain/manager/v7.h) \ arch/arm/lib/memzero.o: $(deps_arch/arm/lib/memzero.o) $(deps_arch/arm/lib/memzero.o):
R-M-S/RMS_DragunKernal_V.10-MAX-8-29-2012_3.0.42
arch/arm/lib/.memzero.o.cmd
bat
gpl-2.0
1,966
cmd_drivers/usb/usbip/built-in.o := rm -f drivers/usb/usbip/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/usb/usbip/built-in.o
avareldalton85/rpi2-linux-rt
drivers/usb/usbip/.built-in.o.cmd
bat
gpl-2.0
199
cmd_drivers/hid/usbhid/built-in.o := /mnt/disk2/Dev/UG802/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld.bfd -EL -r -o drivers/hid/usbhid/built-in.o drivers/hid/usbhid/usbhid.o
aloksinha2001/picuntu-3.0.8-alok
drivers/hid/usbhid/.built-in.o.cmd
bat
gpl-2.0
191
cmd_fs/jffs2/compr.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/jffs2/.compr.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(compr)" -D"KBUILD_MODNAME=KBUILD_STR(jffs2)" -c -o fs/jffs2/compr.o fs/jffs2/compr.c deps_fs/jffs2/compr.o := \ fs/jffs2/compr.c \ $(wildcard include/config/jffs2/zlib.h) \ $(wildcard include/config/jffs2/rtime.h) \ $(wildcard include/config/jffs2/rubin.h) \ $(wildcard include/config/jffs2/lzo.h) \ $(wildcard include/config/jffs2/cmode/none.h) \ $(wildcard include/config/jffs2/cmode/size.h) \ $(wildcard include/config/jffs2/cmode/favourlzo.h) \ fs/jffs2/compr.h \ include/linux/kernel.h \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \ include/linux/stddef.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \ $(wildcard include/config/smp.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/const.h \ arch/arm/plat-pnx/include/mach/memory.h \ $(wildcard include/config/nkernel.h) \ $(wildcard include/config/mach/pnx/realloc.h) \ $(wildcard include/config/android/pmem.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \ include/asm/nkern.h \ $(wildcard include/config/nkernel/console.h) \ include/asm/nk/f_nk.h \ include/asm/nk/nk_f.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/vmalloc.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/string.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/wait.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/seqlock.h \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/mutex-debug.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/workqueue.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/time.h \ include/linux/math64.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \ include/linux/jiffies.h \ include/linux/timex.h \ $(wildcard include/config/no/hz.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \ arch/arm/plat-pnx/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ $(wildcard include/config/sysfs.h) \ include/linux/kref.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ include/linux/path.h \ include/linux/stat.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/jffs2.h \ include/linux/magic.h \ fs/jffs2/jffs2_fs_i.h \ $(wildcard include/config/jffs2/fs/posix/acl.h) \ include/linux/rbtree.h \ include/linux/posix_acl.h \ fs/jffs2/jffs2_fs_sb.h \ $(wildcard include/config/jffs2/fs/wbuf/verify.h) \ $(wildcard include/config/jffs2/fs/writebuffer.h) \ $(wildcard include/config/jffs2/fs/xattr.h) \ fs/jffs2/nodelist.h \ fs/jffs2/xattr.h \ $(wildcard include/config/jffs2/fs/security.h) \ include/linux/xattr.h \ fs/jffs2/acl.h \ fs/jffs2/summary.h \ $(wildcard include/config/jffs2/summary.h) \ include/linux/uio.h \ include/linux/mtd/compatmac.h \ fs/jffs2/os-linux.h \ fs/jffs2/debug.h \ $(wildcard include/config/jffs2/fs/debug.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ include/linux/key.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/aio_abi.h \ fs/jffs2/compr.o: $(deps_fs/jffs2/compr.o) $(deps_fs/jffs2/compr.o):
yohanes/Acer-BeTouch-E130-Linux-Kernel
fs/jffs2/.compr.o.cmd
bat
gpl-2.0
18,702
REM add commandline parameter for all RR applications. Like the -darkUI flag set "RRCMD= "
michimussato/pypelyne2
pypelyne2/payload/rr/7.0.29__installer/files/win__global.bat
bat
gpl-2.0
94
cmd_build_x86_64_linux/netdisk/des.o := gcc -Wp,-MD,build_x86_64_linux/netdisk/des.o.d -D_X86_64 -fno-strict-aliasing -fno-common -ffreestanding -fomit-frame-pointer -march=k8 -mtune=nocona -mno-red-zone -mcmodel=kernel -pipe -fno-reorder-blocks -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-stack-protector -DLINUX -pipe -fno-builtin-sprintf -fno-builtin-log2 -fno-builtin-puts -fno-strict-aliasing -fno-common -fomit-frame-pointer -Wall -I/home/david/ndas4linux/3.3.4/inc -I/home/david/ndas4linux/3.3.4/inc/lspx -D__LITTLE_ENDIAN_BYTEORDER -D__LITTLE_ENDIAN_BITFIELD -D__LITTLE_ENDIAN__ -DNDAS_VER_MAJOR="3" -DNDAS_VER_MINOR="3" -DNDAS_VER_BUILD="4" -O2 -DXPLAT_SIO -DXPLAT_NDASHIX -DXPLAT_PNP -DXPLAT_ASYNC_IO -DXPLAT_RESTORE -DRELEASE -DXPLAT_BPC -O2 -c -o build_x86_64_linux/netdisk/des.o netdisk/des.c deps_build_x86_64_linux/netdisk/des.o := \ netdisk/des.c \ netdisk/des.h \ /home/david/ndas4linux/3.3.4/inc/sal/types.h \ build_x86_64_linux/netdisk/des.o: $(deps_build_x86_64_linux/netdisk/des.o) $(deps_build_x86_64_linux/netdisk/des.o):
iocellnetworks/ndas4linux
3.3.4/build_x86_64_linux/netdisk/des.o.cmd
bat
gpl-2.0
1,072
cmd_net/ipv4/netfilter/nf_conntrack_ipv4.o := /home/dman3285/CM10/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/ipv4/netfilter/nf_conntrack_ipv4.o net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.o net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.o net/ipv4/netfilter/nf_conntrack_proto_icmp.o
AOSP-ZEUS/android_kernel_samsung_n1
net/ipv4/netfilter/.nf_conntrack_ipv4.o.cmd
bat
gpl-2.0
325
cmd_usr/initramfs_data.o := /home/sinxoner18/android/kernel/scripts/gcc-wrapper.py /home/sinxoner18/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-gcc -Wp,-MD,usr/.initramfs_data.o.d -nostdinc -isystem /home/sinxoner18/android/kernel/toolchains/arm-eabi-linaro-4.6.2/bin/../lib/gcc/arm-eabi/4.6.2/include -I/home/sinxoner18/android/kernel/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/sinxoner18/android/kernel/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -gdwarf-2 -DINITRAMFS_IMAGE="usr/initramfs_data.cpio" -c -o usr/initramfs_data.o usr/initramfs_data.S source_usr/initramfs_data.o := usr/initramfs_data.S deps_usr/initramfs_data.o := \ $(wildcard include/config/64bit.h) \ /home/sinxoner18/android/kernel/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/stringify.h \ include/asm-generic/vmlinux.lds.h \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/hotplug/cpu.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/generic/bug.h) \ $(wildcard include/config/pm/trace.h) \ $(wildcard include/config/blk/dev/initrd.h) \ usr/initramfs_data.o: $(deps_usr/initramfs_data.o) $(deps_usr/initramfs_data.o):
SinxOner/android_kernel_lge_p710
usr/.initramfs_data.o.cmd
bat
gpl-2.0
1,930
:: Copyright 2012 The Go Authors. All rights reserved. :: Use of this source code is governed by a BSD-style :: license that can be found in the LICENSE file. :: Environment variables that control make.bat: :: :: GOROOT_FINAL: The expected final Go root, baked into binaries. :: The default is the location of the Go tree during the build. :: :: GOHOSTARCH: The architecture for host tools (compilers and :: binaries). Binaries of this type must be executable on the current :: system, so the only common reason to set this is to set :: GOHOSTARCH=386 on an amd64 machine. :: :: GOARCH: The target architecture for installed packages and tools. :: :: GOOS: The target operating system for installed packages and tools. :: :: GO_GCFLAGS: Additional 5g/6g/8g arguments to use when :: building the packages and commands. :: :: GO_LDFLAGS: Additional 5l/6l/8l arguments to use when :: building the commands. :: :: CGO_ENABLED: Controls cgo usage during the build. Set it to 1 :: to include all cgo related files, .c and .go file with "cgo" :: build directive, in the build. Set it to 0 to ignore them. @echo off :: Keep environment variables within this script :: unless invoked with --no-local. if x%1==x--no-local goto nolocal if x%2==x--no-local goto nolocal setlocal :nolocal set GOBUILDFAIL=0 if exist make.bat goto ok echo Must run make.bat from Go src directory. goto fail :ok :: Clean old generated file that will cause problems in the build. del /F ".\pkg\runtime\runtime_defs.go" 2>NUL :: Grab default GOROOT_FINAL and set GOROOT for build. :: The expression %VAR:\=\\% means to take %VAR% :: and apply the substitution \ = \\, escaping the :: backslashes. Then we wrap that in quotes to create :: a C string. cd .. set GOROOT=%CD% cd src if "x%GOROOT_FINAL%"=="x" set GOROOT_FINAL=%GOROOT% set DEFGOROOT=-DGOROOT_FINAL="\"%GOROOT_FINAL:\=\\%\"" echo # Building C bootstrap tool. echo cmd/dist if not exist ..\bin\tool mkdir ..\bin\tool :: Windows has no glob expansion, so spell out cmd/dist/*.c. gcc -O2 -Wall -Werror -o cmd/dist/dist.exe -Icmd/dist %DEFGOROOT% cmd/dist/buf.c cmd/dist/build.c cmd/dist/buildgc.c cmd/dist/buildgo.c cmd/dist/buildruntime.c cmd/dist/goc2c.c cmd/dist/main.c cmd/dist/windows.c cmd/dist/arm.c if errorlevel 1 goto fail .\cmd\dist\dist env -wp >env.bat if errorlevel 1 goto fail call env.bat del env.bat echo. if x%1==x--dist-tool goto copydist if x%2==x--dist-tool goto copydist echo # Building compilers and Go bootstrap tool. set buildall=-a if x%1==x--no-clean set buildall= .\cmd\dist\dist bootstrap %buildall% -v if errorlevel 1 goto fail :: Delay move of dist tool to now, because bootstrap cleared tool directory. move .\cmd\dist\dist.exe "%GOTOOLDIR%\dist.exe" "%GOTOOLDIR%\go_bootstrap" clean -i std echo. if not %GOHOSTARCH% == %GOARCH% goto localbuild if not %GOHOSTOS% == %GOOS% goto localbuild goto mainbuild :localbuild echo # Building tools for local system. %GOHOSTOS%/%GOHOSTARCH% setlocal set GOOS=%GOHOSTOS% set GOARCH=%GOHOSTARCH% "%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -v std endlocal if errorlevel 1 goto fail echo. :mainbuild echo # Building packages and commands. setlocal set CC=%CC_FOR_TARGET% set CXX=%CXX_FOR_TARGET% set PKG_CONFIG_LIBDIR=%PKG_CONFIG_LIBDIR_FOR_TARGET% set PATH=%PATH_FOR_TARGET% "%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -a -v std endlocal if errorlevel 1 goto fail del "%GOTOOLDIR%\go_bootstrap.exe" echo. if x%1==x--no-banner goto nobanner "%GOTOOLDIR%\dist" banner :nobanner goto end :copydist mkdir "%GOTOOLDIR%" 2>NUL copy cmd\dist\dist.exe "%GOTOOLDIR%\" goto end :fail set GOBUILDFAIL=1 :end
rupor-github/kindle
go_1.3.1/make.cmd
bat
gpl-2.0
3,689