code stringlengths 3 1.03M | repo_name stringlengths 5 84 | path stringlengths 4 233 | language stringclasses 1
value | license stringclasses 15
values | size int32 3 1.03M |
|---|---|---|---|---|---|
@echo off
setlocal
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" ReplaceRouteTableAssociation %*
goto DONE
:HOME_MISSING
echo EC2_HOME is not set
exit /b 1
:DONE
| capotej/whim | ec2_home/ec2-api-tools-1.6.3.1/bin/ec2reprtbassoc.cmd | bat | mit | 1,050 |
REM You can override pass the following parameters to this script:
REM
set JVM=java
REM Find location of this script
set SDIR=%~dp0
if "%SDIR:~-1%"=="\" set SDIR=%SDIR:~0,-1%
"%JVM%" -Dlog4j.configuration=file:%SDIR%\log4j.properties -classpath "%SDIR%\..\solr-webapp\webapp\WEB-INF\lib\*;%SDIR%\..\lib\ext\*" org.apache.solr.cloud.ZkCLI %*
| arnaud71/webso-db | webso/cloud-scripts/zkcli.bat | bat | apache-2.0 | 358 |
:: From https://github.com/ogrisel/python-appveyor-demo
::
:: To build extensions for 64 bit Python 3, we need to configure environment
:: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of:
:: MS Windows SDK for Windows 7 and .NET Framework 4 (SDK v7.1)
::
:: To build extensions for 64 bit Python 2, we need to configure environment
:: variables to use the MSVC 2008 C++ compilers from GRMSDKX_EN_DVD.iso of:
:: MS Windows SDK for Windows 7 and .NET Framework 3.5 (SDK v7.0)
::
:: 32 bit builds, and 64-bit builds for 3.5 and beyond, do not require specific
:: environment configurations.
::
:: Note: this script needs to be run with the /E:ON and /V:ON flags for the
:: cmd interpreter, at least for (SDK v7.0)
::
:: More details at:
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
:: http://stackoverflow.com/a/13751649/163740
::
:: Author: Olivier Grisel
:: License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
::
:: Notes about batch files for Python people:
::
:: Quotes in values are literally part of the values:
:: SET FOO="bar"
:: FOO is now five characters long: " b a r "
:: If you don't want quotes, don't include them on the right-hand side.
::
:: The CALL lines at the end of this file look redundant, but if you move them
:: outside of the IF clauses, they do not run properly in the SET_SDK_64==Y
:: case, I don't know why.
@ECHO OFF
SET COMMAND_TO_RUN=%*
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows
SET WIN_WDK=c:\Program Files (x86)\Windows Kits\10\Include\wdf
:: Extract the major and minor versions, and allow for the minor version to be
:: more than 9. This requires the version number to have two dots in it.
SET MAJOR_PYTHON_VERSION=%PYTHON:~0,1%
IF "%PYTHON:~3,1%" == "." (
SET MINOR_PYTHON_VERSION=%PYTHON:~2,1%
) ELSE (
SET MINOR_PYTHON_VERSION=%PYTHON:~2,2%
)
:: Based on the Python version, determine what SDK version to use, and whether
:: to set the SDK for 64-bit.
IF %MAJOR_PYTHON_VERSION% == 2 (
SET WINDOWS_SDK_VERSION="v7.0"
SET SET_SDK_64=Y
) ELSE (
IF %MAJOR_PYTHON_VERSION% == 3 (
SET WINDOWS_SDK_VERSION="v7.1"
IF %MINOR_PYTHON_VERSION% LEQ 4 (
SET SET_SDK_64=Y
) ELSE (
SET SET_SDK_64=N
IF EXIST "%WIN_WDK%" (
:: See: https://connect.microsoft.com/VisualStudio/feedback/details/1610302/
REN "%WIN_WDK%" 0wdf
)
)
) ELSE (
ECHO Unsupported Python version: "%MAJOR_PYTHON_VERSION%"
EXIT 1
)
)
IF %ARCH% == 64 (
IF %SET_SDK_64% == Y (
ECHO Configuring Windows SDK %WINDOWS_SDK_VERSION% for Python %MAJOR_PYTHON_VERSION% on a 64 bit architecture
SET DISTUTILS_USE_SDK=1
SET MSSdk=1
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WINDOWS_SDK_VERSION%
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release
ECHO Executing: %COMMAND_TO_RUN%
call %COMMAND_TO_RUN% || EXIT 1
) ELSE (
ECHO Using default MSVC build environment for 64 bit architecture
ECHO Executing: %COMMAND_TO_RUN%
call %COMMAND_TO_RUN% || EXIT 1
)
) ELSE (
ECHO Using default MSVC build environment for 32 bit architecture
ECHO Executing: %COMMAND_TO_RUN%
call %COMMAND_TO_RUN% || EXIT 1
)
| chrisbarber/dask | continuous_integration/run_with_env.cmd | bat | bsd-3-clause | 3,386 |
@echo off
@title Map Rotator
if not exist setnewmap.bat exit 11
call setnewmap.bat
cd ..
if exist updating.lk exit 21
if exist rotating.lk exit 22
if not exist config.bat exit 12
call config.bat
echo lock>rotating.lk
cls
echo Rotating map to %MAPROTATE%
call bin\findab.bat
cls
echo Rotating map to %MAPROTATE%
call bin\copyfromgit.bat
cls
echo Rotating map to %MAPROTATE%
call bin\build.bat
@del /F /Q rotating.lk >nul 2>nul
if %DM_EXIT% neq 0 exit 31
rmdir /q gamefolder
mklink /d gamefolder gamecode\%AB%
| Cheridan/-tg-station | tools/tgstation-server/bin/maprotate.bat | bat | agpl-3.0 | 517 |
REM CommandInterpreter: $(COMSPEC)
if not exist .\release\nul mkdir release
if not exist .\release\obj\nul mkdir release\obj
if not exist .\release\obj\libexpat\nul mkdir release\obj\libexpat
if not exist .\release\obj\libexpatw\nul mkdir release\obj\libexpatw
if not exist .\release\obj\libexpat_static\nul mkdir release\obj\libexpat_static
if not exist .\release\obj\libexpatw_static\nul mkdir release\obj\libexpatw_static
if not exist .\release\obj\examples\nul mkdir release\obj\examples
if not exist .\release\obj\xmlwf\nul mkdir release\obj\xmlwf
| tspires/personal | zillow/node_modules/xml2json/node_modules/node-expat/deps/libexpat/bcb5/setup.bat | bat | mit | 553 |
@ECHO OFF
PowerShell -Command "Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All"
pause | dev4s/old-batch-scripts | Public/HyperVDisable.bat | bat | mit | 111 |
@echo off
del /Q /S dist
del /Q /S src\Glimpse.Common\bin\Release
del /Q /S src\Glimpse.Server\bin\Release
del /Q /S src\Glimpse.Agent.AspNet\bin\Release
del /Q /S src\Glimpse.Agent.AspNet.Mvc\bin\Release
md dist
REM get time
For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set DATE=%%c%%a%%b)
For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set TIME=%%a%%b)
set MILESTONE=beta2-%DATE%%TIME%
call dotnet restore .\src\Glimpse.Common\Glimpse.Common.csproj /p:VersionSuffix=%MILESTONE%
call dotnet restore .\src\Glimpse.Server\Glimpse.Server.csproj /p:VersionSuffix=%MILESTONE%
call dotnet restore .\src\Glimpse.Agent.AspNet\Glimpse.Agent.AspNet.csproj /p:VersionSuffix=%MILESTONE%
call dotnet restore .\src\Glimpse.Agent.AspNet.Mvc\Glimpse.Agent.AspNet.Mvc.csproj /p:VersionSuffix=%MILESTONE%
call dotnet pack .\src\Glimpse.Common\Glimpse.Common.csproj --configuration Release --version-suffix %MILESTONE%
call dotnet pack .\src\Glimpse.Server\Glimpse.Server.csproj --configuration Release --version-suffix %MILESTONE%
call dotnet pack .\src\Glimpse.Agent.AspNet\Glimpse.Agent.AspNet.csproj --configuration Release --version-suffix %MILESTONE%
call dotnet pack .\src\Glimpse.Agent.AspNet.Mvc\Glimpse.Agent.AspNet.Mvc.csproj --configuration Release --version-suffix %MILESTONE%
call nuget pack src\Glimpse\Glimpse.nuspec -OutputDirectory dist -version 2.0.0-%MILESTONE%
copy /Y src\Glimpse.Common\bin\Release\*.nupkg dist
copy /Y src\Glimpse.Server\bin\Release\*.nupkg dist
copy /Y src\Glimpse.Agent.AspNet\bin\Release\*.nupkg dist
copy /Y src\Glimpse.Agent.AspNet.Mvc\bin\Release\*.nupkg dist | Glimpse/Glimpse.Prototype | pack.cmd | bat | mit | 1,608 |
call mov2gif.cmd Text input\example.mp4 10 10
| cinemapub/mov2animgif | example.cmd | bat | mit | 46 |
"C:\Program Files\Actiona\actiona.exe" -e actiona.ascr
| tlemoult/spectroDb | pipeline/isis/actionna.bat | bat | mit | 55 |
@echo off
paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)
"packages/build/FAKE/tools/FAKE.exe" "build/build.fsx" %* | RFQ-hub/SocketIoSuave | build.cmd | bat | mit | 130 |
java -mx500m -cp "/C:/Users/Compaq 6910p/Documents/R/win-library/3.4/dismo/java/maxent.jar;C:/Users/Compaq 6910p/Documents/R/win-library/3.4/rJava/java/boot;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\dismo.jar;C:\Users\Compaq 6910p\Documents\R\win-library\3.4\dismo\java\maxent.jar" density.Explain -l E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\8851303216\species.lambdas -c E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\8851303216\species.asc E:\github_mauriciovancine\R-ENM\data\temp\raster\maxent\8851303216\absence
@if errorlevel 1 pause
| mauriciovancine/enm_r | data/temp/raster/maxent/8851303216/species_explain.bat | bat | mit | 644 |
echo off
pushd %~dp0
%SystemRoot%\SysWoW64\REG.exe query "HKLM\software\META" /v "META_PATH"
SET QUERY_ERRORLEVEL=%ERRORLEVEL%
IF %QUERY_ERRORLEVEL% == 0 (
FOR /F "skip=2 tokens=2,*" %%A IN ('%SystemRoot%\SysWoW64\REG.exe query "HKLM\software\META" /v "META_PATH"') DO SET META_PATH=%%B)
)
IF %QUERY_ERRORLEVEL% == 1 (
echo on
echo "META tools not installed." >> _FAILED.txt
echo "META tools not installed."
exit /b %QUERY_ERRORLEVEL%
)
"%META_PATH%\bin\LayoutSolver.exe" layout-input.json layout.json %*
SET LAYOUT_ERRORLEVEL=%ERRORLEVEL%
IF %LAYOUT_ERRORLEVEL% neq 0 (
echo on
echo "Layout Solver Failed." >> _FAILED.txt
echo "Layout Solver Failed."
exit /b %LAYOUT_ERRORLEVEL%
)
SET BOARDSYNTHESIS=%META_PATH%\bin\BoardSynthesis.exe
IF EXIST "%META_PATH%\..\tonka\src\BoardSynthesis\bin\Release\BoardSynthesis.exe" SET BOARDSYNTHESIS=%META_PATH%\..\tonka\src\BoardSynthesis\bin\Release\BoardSynthesis.exe
"%BOARDSYNTHESIS%" schema.sch layout.json
SET SYNTH_ERRORLEVEL=%ERRORLEVEL%
IF %SYNTH_ERRORLEVEL% neq 0 (
echo on
echo "Board Synthesis Failed." >> _FAILED.txt
echo "Board Synthesis Failed."
exit /b %SYNTH_ERRORLEVEL%
)
%SystemRoot%\SysWoW64\REG.exe query "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\eagle.exe" /v "Path"
SET QUERY_ERRORLEVEL=%ERRORLEVEL%
IF %QUERY_ERRORLEVEL% == 0 (
FOR /F "skip=2 tokens=2,*" %%A IN ('%SystemRoot%\SysWoW64\REG.exe query "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\eagle.exe" /v "Path"') DO SET EAGLE_PATH=%%B)
)
IF %QUERY_ERRORLEVEL% == 1 (
echo on
echo "Eagle CAD tools not installed." >> _FAILED.txt
echo "Eagle CAD tools not installed."
exit /b %QUERY_ERRORLEVEL%
)
"%EAGLE_PATH%\bin\eagle.exe" schema.brd -C "auto; set confirm yes; export image schema.png 300; write; quit;"
SET AUTOR_ERRORLEVEL=%ERRORLEVEL%
IF %AUTOR_ERRORLEVEL% neq 0 (
echo on
echo "Auto Routing Failed." >> _FAILED.txt
echo "Auto Routing Failed."
exit /b %AUTOR_ERRORLEVEL%
)
popd
| pombredanne/metamorphosys-desktop | metamorphosys/tonka/src/CyPhy2Schematic/bat/placement.bat | bat | mit | 2,052 |
@echo off
set ERL="erl.exe"
echo Build Nitrogen...
pushd ..\apps\nitrogen
%ERL% -make
popd
echo Build Simple Bridge...
pushd ..\apps\simple_bridge
%ERL% -make
popd
echo Build NProcReg...
pushd ..\apps\nprocreg
%ERL% -make
popd
echo Build the Quickstart...
%ERL% -make
echo Copy static files...
rd /q /s static\nitrogen
xcopy /q /y /e /s "..\apps\nitrogen\www\*" "static\nitrogen\"
set PA1=".\ebin"
set PA2="..\apps\nitrogen\ebin"
set PA3="..\apps\nitrogen\include"
set PA4="..\apps\simple_bridge\ebin"
set PA5="..\apps\simple_bridge\include"
set PA6="..\apps\nprocreg\ebin"
set PA7="..\apps\nprocreg\include"
@echo on
%ERL% -name "nitrogen@127.0.0.1" -pa %PA1% -pa %PA2% -pa %PA3% -pa %PA4% -pa %PA5% -pa %PA6% -pa %PA7% -eval "application:start(nprocreg)" -eval "application:start(quickstart)" | kblake/erlang-chat-demo | Quickstart/quickstart.bat | bat | mit | 802 |
# -*- mode: epics -*-
# This file should be used with EPICS base 3.15.4 and mrfioc2 2.7.13
# With current EEE 1.8.2, the proper command is
# $ iocsh -3.14.12.5 cpci-evg-220_14Hz.cmd
# iocsh -3.14.12.5 cpci-evg-220/cpci-evg220_14Hz-evr230.cmd
require mrfioc2,iocuser
epicsEnvSet( "IOC" "ICS-TS01")
epicsEnvSet( "SYS" "ICS")
epicsEnvSet( "EVG" "EVG")
epicsEnvSet( "EVG_BUS" "0x16")
epicsEnvSet( "EVG_DEV" "0x0e")
epicsEnvSet( "EVG_FUNC" "0x0")
mrmEvgSetupPCI($(EVG), $(EVG_BUS), $(EVG_DEV), $(EVG_FUNC))
# Fake timestamp source for testing without real hardware timestamp source (e.g., GPS recevier)
mrmEvgSoftTime($(EVG))
epicsEnvSet( "EVR" "EVR")
epicsEnvSet( "EVR_BUS" "0x16")
epicsEnvSet( "EVR_DEV" "0x09")
epicsEnvSet( "EVR_FUNC" "0x0")
epicsEnvSet("EVR_DOMAIN" "0x0000")
mrmEvrSetupPCI($(EVR), $(EVR_DOMAIN), $(EVR_BUS), $(EVR_DEV), $(EVR_FUNC))
# ESS ICS Definition
epicsEnvSet("HWEVT" "14")
epicsEnvSet("EVTFREQ" "14")
epicsEnvSet("EPICSEVT" "14")
# Fake Timestamp
epicsEnvSet("EVRTSE" "-2")
# Don't change HBEVT
epicsEnvSet("HBEVT" "122")
# One can change, but don't change it.
epicsEnvSet("HBFREQ" "1")
# --------------------------------------------------------
# Set Heart Beat Event (Evtcode, Fre, TrigSrc7) (122, 1, 1)
# Set 14 Hz Event (Evtcode, Fre, TrigSrc0) (14, 14, 1)
#
dbLoadRecords("evg-cpci.db", "DEVICE=$(EVG), SYS=$(SYS), TrigEvt7-EvtCode-SP=$(HBEVT), Mxc2-Frequency-SP=$(HBFREQ), Mxc2-TrigSrc7-SP=1, TrigEvt0-EvtCode-SP=$(HWEVT), Mxc0-Frequency-SP=$(EVTFREQ), Mxc0-TrigSrc0-SP=1, SoftEvt-Enable-Sel=1")
dbLoadRecords("evr-cpci-230.db", "DEVICE=$(EVR), SYS=$(SYS)")
#Generate trigger signals
# Time Stamping on EVR
dbLoadRecords("evr-softEvent.template", "DEVICE=$(EVR), SYS=$(SYS), CODE=$(EPICSEVT), EVT=$(HWEVT)")
# Trigger Output on EVR
dbLoadRecords("evr-pulserMap.template", "DEVICE=$(EVR), SYS=$(SYS), PID=0, F=Trig, ID=0, EVT=$(HWEVT)")
iocInit
# EVR
# make the timestamp available to other equipment (e.g., data acquisition)
dbpf $(SYS)-$(EVR):Time-I.TSE $(EVRTSE)
# Which EVNT should we use? I guess the EPICS EventNumber EPICSEVT
dbpf $(SYS)-$(EVR):Time-I.EVNT $(EPICSEVT)
# Mandatory if Fake timestamp source for testing without real hardware timestamp source (e.g., GPS recevier)
#
dbl > $(IOC).pvlist
sleep(5)
dbpf $(SYS)-$(EVG):SyncTimestamp-Cmd 1
| icshwi/icsem_scripts | cpci-evg-220/cpci-evg220_14Hz-evr230.cmd | bat | gpl-2.0 | 2,432 |
"C:\Program Files\Java\jdk1.8.0_45\bin\javac.exe" -d bin -classpath C:\Users\Alexey\OneDrive\Äîêóìåíòû\workspace.java\JavaRushHomeWork\src\com\javarush\test\level26\lesson15\big01 -sourcepath C:\Users\Alexey\OneDrive\Äîêóìåíòû\workspace.java\JavaRushHomeWork\src\com\javarush\test\level26\lesson15\big01\* CashMachine.java | plx9421/JavaRushHomeWork | javarush/test/level26/lesson15/big01/c.bat | bat | gpl-2.0 | 323 |
echo off
echo $Id: a7.bat,v 1.3 2006/03/14 21:11:56 wmsr Exp $
:a
if exist test7.bin del test7.bin
cbmctrl download 8 0xc000 0x0001 test7.bin
set RETCODE=%ERRORLEVEL%
if exist test7.bin (
if not "%RETCODE%" == "0" (
echo ERROR-Condition: Unsuccessful command created a file of size:
dir | find "test7.bin"
) else (
echo single MP test was completely successful
)
) else (
if "%RETCODE%" == "0" (
echo ERROR-Condition: Successful command did not create a file
) else (
echo unsuccessful single MP test did not create a file, which is correct
)
)
goto :a
| jkaessens/opencbm | internal/testsuite/mp_test/a7.bat | bat | gpl-2.0 | 596 |
cmd_sound/soc/fsl/built-in.o := rm -f sound/soc/fsl/built-in.o; /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ar rcs sound/soc/fsl/built-in.o
| dagnarf/sgh-i717-dagkernel | sound/soc/fsl/.built-in.o.cmd | bat | gpl-2.0 | 157 |
@echo off
rem Set default values for GS (gs with graphics window) and GSC
rem (console mode gs) if the user hasn't set them.
if %GS%/==/ set GS=gswin64
if %GSC%/==/ set GSC=gswin64c
| mfaber/quexf | software/gs/lib/gssetgs64.bat | bat | gpl-2.0 | 184 |
cmd_kernel/irq/built-in.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o kernel/irq/built-in.o kernel/irq/handle.o kernel/irq/manage.o kernel/irq/spurious.o kernel/irq/resend.o kernel/irq/chip.o kernel/irq/devres.o kernel/irq/autoprobe.o kernel/irq/proc.o kernel/irq/pm.o
| dizgustipated/BOCA-2.6.35.14 | kernel/irq/.built-in.o.cmd | bat | gpl-2.0 | 291 |
cmd_fs/quota/built-in.o := rm -f fs/quota/built-in.o; /space/android/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs fs/quota/built-in.o
| asopov/linux-tpt-2.6.39 | fs/quota/.built-in.o.cmd | bat | gpl-2.0 | 161 |
python __init__.py
pause | Yuriu5/mumbleBot | opus/api/aze.bat | bat | gpl-2.0 | 24 |
cmd_crypto/crc32c.o := arm-linux-androideabi-gcc -Wp,-MD,crypto/.crc32c.o.d -nostdinc -isystem /usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.3/include -I/usr/src/dell/lhbalanced/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -mfpu=neon -march=armv7-a -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=3072 -fno-stack-protector -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(crc32c)" -D"KBUILD_MODNAME=KBUILD_STR(crc32c)" -c -o crypto/crc32c.o crypto/crc32c.c
deps_crypto/crc32c.o := \
crypto/crc32c.c \
include/crypto/internal/hash.h \
include/crypto/algapi.h \
include/linux/crypto.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/atomic.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/generic/atomic64.h) \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/posix_types.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
include/linux/typecheck.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/irqflags.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/hwcap.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
arch/arm/mach-msm/include/mach/barriers.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/atomic-long.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/stat.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/numa.h) \
/usr/src/dell/android-ndk-r8/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.4.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) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/usr/src/dell/lhbalanced/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) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/div64.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) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/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) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/usr/src/dell/lhbalanced/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 \
$(wildcard include/config/binary/printf.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/usr/src/dell/lhbalanced/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) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/elf.h \
/usr/src/dell/lhbalanced/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/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutiny.h \
$(wildcard include/config/no/hz.h) \
/usr/src/dell/lhbalanced/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/kmalloc_sizes.h \
include/linux/uaccess.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/uaccess.h \
/usr/src/dell/lhbalanced/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/crypto/hash.h \
crypto/crc32c.o: $(deps_crypto/crc32c.o)
$(deps_crypto/crc32c.o):
| tenorntex/lhbalanced | crypto/.crc32c.o.cmd | bat | gpl-2.0 | 16,090 |
cmd_drivers/mtd/nand/plat_nand.ko := ld -r -m elf_i386 -T /home/madhwang/Development/linuxSource/linux-2.6.34.7/scripts/module-common.lds --build-id -o drivers/mtd/nand/plat_nand.ko drivers/mtd/nand/plat_nand.o drivers/mtd/nand/plat_nand.mod.o
| madhwang/linuxKernel | drivers/mtd/nand/.plat_nand.ko.cmd | bat | gpl-2.0 | 244 |
cmd_/home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/wcomp.ko := ld -r -m elf_i386 -T /usr/src/linux-headers-2.6.32-122-rtai/scripts/module-common.lds --build-id -o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/wcomp.ko /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/wcomp.o /home/yutingkao23/ILC-with-LinuxCNC-ILCv1/src/wcomp.mod.o
| CalvinHsu1223/LinuxCNC-HAL-EtherCAT-Driver-with-ILC | src/.wcomp.ko.cmd | bat | gpl-2.0 | 329 |
cmd_arch/arm/lib/clearbit.o := arm-linux-gcc -Wp,-MD,arch/arm/lib/.clearbit.o.d -nostdinc -isystem /opt/FriendlyARM/toolschain/4.4.3/lib/gcc/arm-none-linux-gnueabi/4.4.3/include -Iinclude -I/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s3c2410/include -Iarch/arm/mach-s3c2400/include -Iarch/arm/mach-s3c2412/include -Iarch/arm/mach-s3c2440/include -Iarch/arm/mach-s3c2442/include -Iarch/arm/mach-s3c2443/include -Iarch/arm/plat-s3c24xx/include -Iarch/arm/plat-s3c/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=4 -march=armv4t -mtune=arm9tdmi -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/clearbit.o arch/arm/lib/clearbit.S
deps_arch/arm/lib/clearbit.o := \
arch/arm/lib/clearbit.S \
/opt/Kernel_Study/linux-2.6.32.2/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) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/linkage.h \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/opt/Kernel_Study/linux-2.6.32.2/arch/arm/include/asm/hwcap.h \
arch/arm/lib/bitops.h \
$(wildcard include/config/cpu/32v6k.h) \
arch/arm/lib/clearbit.o: $(deps_arch/arm/lib/clearbit.o)
$(deps_arch/arm/lib/clearbit.o):
| kaylorchen/Linux_for_mini2440 | arch/arm/lib/.clearbit.o.cmd | bat | gpl-2.0 | 1,966 |
@echo off
REM
REM Copyright 2005-2013 Intel Corporation. All Rights Reserved.
REM
REM This file is part of Threading Building Blocks.
REM
REM Threading Building Blocks is free software; you can redistribute it
REM and/or modify it under the terms of the GNU General Public License
REM version 2 as published by the Free Software Foundation.
REM
REM Threading Building Blocks is distributed in the hope that it will be
REM useful, but WITHOUT ANY WARRANTY; without even the implied warranty
REM of 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 Threading Building Blocks; if not, write to the Free Software
REM Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
REM
REM As a special exception, you may use this file as part of a free software
REM library without restriction. Specifically, if other files instantiate
REM templates or use macros or inline functions from this file, or you compile
REM this file and link it with other files to produce an executable, this
REM file does not by itself cause the resulting executable to be covered by
REM the GNU General Public License. This exception does not however
REM invalidate any other reasons why the executable file might be covered by
REM the GNU General Public License.
REM
:: Getting parameters
if ("%1") == ("") goto error
if ("%2") == ("") goto error
if ("%3") == ("") goto error
set arch=%1
if ("%2") == ("debug") set postfix=_debug
set output_dir=%3
:: Optional 4th parameter to set install root
if ("%4") NEQ ("") set TBBROOT=%4
:: Actually we can set install root by ourselves
if ("%TBBROOT%") == ("") set TBBROOT=%~d0%~p0..\..\
:: Getting vs folders in case vc_mt binaries are not provided
if ("%VS90COMNTOOLS%") NEQ ("") set vc_dir=vc9
if ("%VS100COMNTOOLS%") NEQ ("") set vc_dir=vc10
if ("%VS110COMNTOOLS%") NEQ ("") set vc_dir=vc11
:: Are we standalone/oss or inside compiler?
if exist "%TBBROOT%\bin\%arch%\vc9\tbb%postfix%.dll" set interim_path=bin\%arch%
if exist "%TBBROOT%\..\redist\%arch%\tbb\vc9\tbb%postfix%.dll" set interim_path=..\redist\%arch%\tbb
if ("%interim_path%") == ("") goto error
:: Do we provide vc_mt binaries?
if exist "%TBBROOT%\%interim_path%\vc_mt\tbb%postfix%.dll" set vc_dir=vc_mt
if ("%vc_dir%") == ("") goto error
:: We know everything we wanted and there are no errors
:: Copying binaries
copy "%TBBROOT%\%interim_path%\%vc_dir%\tbb%postfix%.dll" "%output_dir%"
copy "%TBBROOT%\%interim_path%\%vc_dir%\tbb%postfix%.pdb" "%output_dir%"
copy "%TBBROOT%\%interim_path%\%vc_dir%\tbbmalloc%postfix%.dll" "%output_dir%"
copy "%TBBROOT%\%interim_path%\%vc_dir%\tbbmalloc%postfix%.pdb" "%output_dir%"
if exist "%TBBROOT%\%interim_path%\%vc_dir%\tbb_preview%postfix%.dll" copy "%TBBROOT%\%interim_path%\%vc_dir%\tbb_preview%postfix%.dll" "%output_dir%"
if exist "%TBBROOT%\%interim_path%\%vc_dir%\tbb_preview%postfix%.pdb" copy "%TBBROOT%\%interim_path%\%vc_dir%\tbb_preview%postfix%.pdb" "%output_dir%"
goto end
:error
echo Error occurred in libraries copying during post-build step.
exit /B 1
:end
exit /B 0
| simonlynen/tbb-arm | examples/common/copy_libraries.bat | bat | gpl-2.0 | 3,190 |
"I:\!lucho-temp\netradiant-1.5.0-20110819\q3map2.exe" -fs_basepath "C:\openarena-0.8.1" -fs_game "baseoa" -game "oa" -flares -meta -patchmeta -v -verboseentities "C:\openarena-0.8.1\baseoa\maps\071hydronex.map"
Pause
"I:\!lucho-temp\netradiant-1.5.0-20110819\q3map2.exe" -fs_basepath "C:\openarena-0.8.1" -fs_game "baseoa" -game "oa" -vis -v "C:\openarena-0.8.1\baseoa\maps\071hydronex.map"
"I:\!lucho-temp\netradiant-1.5.0-20110819\q3map2.exe" -fs_basepath "C:\openarena-0.8.1" -fs_game "baseoa" -game "oa" -light -dark -dirt -fast -filter -patchshadows -bounce 8 -gamma 1.0 -samples 3 "C:\openarena-0.8.1\baseoa\maps\071hydronex.map"
"I:\!lucho-temp\netradiant-1.5.0-20110819\bspc.exe" -bsp2aas "C:\openarena-0.8.1\baseoa\maps\071hydronex.bsp" -forcesidesvisible -optimize
| NeonKnightOA/oaassets | tools/compile-scripts/batch/071hydronex.bat | bat | gpl-2.0 | 775 |
cd CBCJVM
ant
| bmcdorman/CBCJVM | cbc/Build.bat | bat | gpl-3.0 | 14 |
@ECHO off
set BASENAME=%0
set QMAKE=qmake
set DEBUG=no
set APP_NAME=Nulloy
set CONSOLE=no
set FORCE_VERSION=no
set BUILD_GSTREAMER=yes
set BUILD_GSTREAMER_TAGREADER=no
set BUILD_TAGLIB=yes
set BUILD_VLC=no
set BUILD_TESTS=no
set SUPPORT_SKINS=yes
:getopt
shift
if "%0" == "--no-gstreamer" (
set BUILD_GSTREAMER=no
goto getopt
)
if "%0" == "--gstreamer-tagreader" (
set BUILD_GSTREAMER_TAGREADER=yes
goto getopt
)
if "%0" == "--vlc" (
set BUILD_VLC=yes
goto getopt
)
if "%0" == "--no-taglib" (
set BUILD_TAGLIB=no
goto getopt
)
if "%0" == "--tests" (
set BUILD_TESTS=yes
goto getopt
)
if "%0" == "--no-skins" (
set SUPPORT_SKINS=no
goto getopt
)
if "%0" == "--force-version" (
set FORCE_VERSION=%1
shift
goto getopt
)
if "%0" == "--debug" (
set DEBUG=yes
goto getopt
)
if "%0" == "--console" (
set CONSOLE=yes
goto getopt
)
if "%0" == "" goto getopt_finished
if "%0" == "-h" goto help
if "%0" == "--help" goto help
if "%0" == "/?" goto help
echo %BASENAME%: invalid argument: %0
goto try_help
:try_help
echo.
echo Try `%BASENAME% --help' for more information
goto end
:help
echo Usage: %BASENAME% [options]
echo --no-gstreamer do not build GStreamer plugin
echo --gstreamer-tagreader include TagReader in GStreamer plugin
echo --vlc build VLC plugin
echo --no-taglib do not build TagLib plugin
echo --no-skins disable skins support
echo --console build with console output support
echo --force-version VERSION overrides version.pri
echo --debug build in debug mode
echo --tests build unit tests
goto end
:getopt_finished
%QMAKE% -v > NUL 2>&1
if errorlevel 1 goto qmake_not_found
goto qmake_ok
:qmake_not_found
echo %BASENAME%: Unable to find qmake. Check the PATH environment variable.
goto end
:qmake_ok
set QMAKE_CACHE=.qmake.cache
echo. > %QMAKE_CACHE%
if "%BUILD_GSTREAMER%" == "yes" echo CONFIG += gstreamer>> %QMAKE_CACHE%
if "%BUILD_GSTREAMER_TAGREADER%" == "yes" echo CONFIG += gstreamer-tagreader>> %QMAKE_CACHE%
if "%BUILD_VLC%" == "yes" echo CONFIG += vlc>> %QMAKE_CACHE%
if "%BUILD_TAGLIB%" == "yes" echo CONFIG += taglib>> %QMAKE_CACHE%
if "%BUILD_TESTS%" == "yes" echo CONFIG += tests>> %QMAKE_CACHE%
if "%SUPPORT_SKINS%" == "no" echo CONFIG += no-skins>> %QMAKE_CACHE%
if "%CONSOLE%" == "yes" echo CONFIG += console>> %QMAKE_CACHE%
if "%DEBUG%" == "yes" (
echo CONFIG += debug>> %QMAKE_CACHE%
) else (
echo CONFIG += release>> %QMAKE_CACHE%
)
echo APP_NAME = %APP_NAME%>> %QMAKE_CACHE%
if not "%FORCE_VERSION%" == "no" (
echo Forced version: %FORCE_VERSION%
echo N_CONFIG_FORCE_VERSION = %FORCE_VERSION%>> %QMAKE_CACHE%
)
echo N_CONFIG_SUCCESS = yes>> %QMAKE_CACHE%
echo.
echo Running qmake...
%QMAKE%
echo Nulloy has been configured. Now run `make'.
:end
| nulloy/nulloy | configure.bat | bat | gpl-3.0 | 3,285 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=-Xmx1g
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| MinestrapTeam/Minestrappolation-4 | gradlew.bat | bat | gpl-3.0 | 2,320 |
@echo off
SET TMP=C:\Temp
SET TEMP=C:\Temp
SET UVEXE=C:\Keil\UV4\UV4.EXE
echo.
echo Building DSP Libraries G++
echo.
echo Building DSP Library for Cortex-M0 Little Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M0l" -o "DspLib_M0l_build.log"
echo Building DSP Library for Cortex-M0 Big Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M0b" -o "DspLib_M0b_build.log"
echo Building DSP Library for Cortex-M3 Little Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M3l" -o "DspLib_M3l_build.log"
echo Building DSP Library for Cortex-M3 Big Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M3b" -o "DspLib_M3b_build.log"
echo Building DSP Library for Cortex-M4 Little Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M4l" -o "DspLib_M4l_build.log"
echo Building DSP Library for Cortex-M4 Big Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M4b" -o "DspLib_M4b_build.log"
echo Building DSP Library for Cortex-M4 with FPU Little Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M4lf" -o "DspLib_M4lf_build.log"
echo Building DSP Library for Cortex-M4 with FPU Big Endian
%UVEXE% -rb -j0 arm_cortexM_math.uvproj -t "M4bf" -o "DspLib_M4bf_build.log"
echo.
ECHO Deleting intermediate files
rmdir /S /Q IntermediateFiles\M0l
rmdir /S /Q IntermediateFiles\M0b
rmdir /S /Q IntermediateFiles\M3l
rmdir /S /Q IntermediateFiles\M3b
rmdir /S /Q IntermediateFiles\M4l
rmdir /S /Q IntermediateFiles\M4b
rmdir /S /Q IntermediateFiles\M4lf
rmdir /S /Q IntermediateFiles\M4bf
del /Q IntermediateFiles\*.*
del /Q *.bak
del /Q *.dep
del /Q *.uvgui.*
del /Q ArInp.* | jhausladen/esclide | cloud9workspace/XMCExamples/mbed_XMC4500_make_blinky/system/CMSIS/DSP_Lib/Source/G++/arm_cortexM_math_Build.bat | bat | agpl-3.0 | 1,625 |
windres.exe peazip.rc peazip.res | Arucard1983/PeaZip-for-ARM | manifests.bat | bat | lgpl-3.0 | 32 |
@rem Fetches (and builds if necessary) external dependencies
@rem Assume we start inside the Python source directory
call "Tools\buildbot\external-common.bat"
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
if not exist tcltk64\bin\tcl86tg.dll (
cd tcl-8.6.1.0\win
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean core shell dlls
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 install-binaries install-libraries
cd ..\..
)
if not exist tcltk64\bin\tk86tg.dll (
cd tk-8.6.1.0\win
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.6.1.0 clean
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.6.1.0 all
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.6.1.0 install-binaries install-libraries
cd ..\..
)
if not exist tcltk64\lib\tix8.4.3\tix84g.dll (
cd tix-8.4.3.4\win
nmake -f python.mak DEBUG=1 MACHINE=AMD64 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk64 clean
nmake -f python.mak DEBUG=1 MACHINE=AMD64 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk64 all
nmake -f python.mak DEBUG=1 MACHINE=AMD64 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk64 install
cd ..\..
)
| Orav/kbengine | kbe/src/lib/python/Tools/buildbot/external-amd64.bat | bat | lgpl-3.0 | 1,431 |
"h:\Games\Games\NWN Diamond\utils\clcompile.exe" *.nss
del *.ndb | Otaka/mydifferentprojects | NcsInterpeter/NcsInterpeter/src/test/java/com/kotorresearch/script/integration/testsuites/compileTestNss.bat | bat | apache-2.0 | 65 |
cmd_findutils/find.o := gcc -Wp,-MD,findutils/.find.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-builtin-printf -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(find)" -D"KBUILD_MODNAME=KBUILD_STR(find)" -c -o findutils/find.o findutils/find.c
deps_findutils/find.o := \
findutils/find.c \
$(wildcard include/config/find.h) \
$(wildcard include/config/feature/find/xdev.h) \
$(wildcard include/config/feature/find/maxdepth.h) \
$(wildcard include/config/feature/find/depth.h) \
$(wildcard include/config/feature/find/paren.h) \
$(wildcard include/config/feature/find/not.h) \
$(wildcard include/config/feature/find/path.h) \
$(wildcard include/config/feature/find/regex.h) \
$(wildcard include/config/feature/find/type.h) \
$(wildcard include/config/feature/find/perm.h) \
$(wildcard include/config/feature/find/mtime.h) \
$(wildcard include/config/feature/find/mmin.h) \
$(wildcard include/config/feature/find/newer.h) \
$(wildcard include/config/feature/find/inum.h) \
$(wildcard include/config/feature/find/user.h) \
$(wildcard include/config/feature/find/group.h) \
$(wildcard include/config/feature/find/size.h) \
$(wildcard include/config/feature/find/links.h) \
$(wildcard include/config/feature/find/context.h) \
$(wildcard include/config/feature/find/prune.h) \
$(wildcard include/config/feature/find/print0.h) \
$(wildcard include/config/feature/find/exec.h) \
$(wildcard include/config/feature/find/exec/plus.h) \
$(wildcard include/config/feature/find/delete.h) \
$(wildcard include/config/use/portable/code.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/lfs.h) \
/usr/include/stdc-predef.h \
/usr/include/fnmatch.h \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/verbose.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdbool.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/ctype.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/paths.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/libgen.h \
/usr/include/poll.h \
/usr/include/x86_64-linux-gnu/sys/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll2.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/x86_64-linux-gnu/bits/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/mntent.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/utmp.h \
/usr/include/x86_64-linux-gnu/bits/utmp.h \
/usr/include/utmpx.h \
/usr/include/x86_64-linux-gnu/bits/utmpx.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
include/common_bufsiz.h \
include/xregex.h \
/usr/include/regex.h \
findutils/find.o: $(deps_findutils/find.o)
$(deps_findutils/find.o):
| rennman/copfvtci | build/busybox-1.25.1/findutils/.find.o.cmd | bat | apache-2.0 | 11,610 |
# gnuplot -e "cols=${COLUMNS}; rows=${LINES}"
unset output
set terminal dumb
#set output "/tmp/output.ascii"
set term dumb size cols, rows
set origin 0,0
set multiplot
set size 1,0.4
set origin 0,0.6
set logscale x
unset xtics
set xlabel "Percentile"
set ylabel "Latency nanoseconds"
set title "Inter-thread latency breakdown"
plot \
'/tmp/encoded-result-histogram-Accumulator_Message_Transit_Latency__ns_-20180327-121054-LABEL_LAPTOP.report.enc.decoded.hgrm' using 4:1 with lines title "LAPTOP", \
'./xlabels.dat' with labels center offset 0, 1.5 point title ""
unset multiplot
unset output
reset
| epickrram/perf-workshop | src/main/shell/terminal_latency.cmd | bat | apache-2.0 | 602 |
@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\KIDReadout.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\KIDReadout.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
| ColumbiaCMB/kid_readout | docs/make.bat | bat | bsd-2-clause | 6,709 |
if "%ARCH%"=="32" (
set PLATFORM=x86
) else (
set PLATFORM=x64
)
:: build the shell
cl /DSQLITE_ENABLE_RTREE shell.c sqlite3.c -Fesqlite3.exe /DSQLITE_EXPORTS
:: build the dll
cl /DSQLITE_ENABLE_RTREE sqlite3.c -link -dll -out:sqlite3.dll
COPY sqlite3.exe %LIBRARY_BIN% || exit 1
COPY sqlite3.dll %LIBRARY_BIN% || exit 1
COPY sqlite3.lib %LIBRARY_LIB% || exit 1
COPY sqlite3.h %LIBRARY_INC% || exit 1
| jjhelmus/berryconda | recipes/sqlite/bld.bat | bat | bsd-3-clause | 422 |
c:\Python27\python.exe ^
C:\dev\Projects\Misc\closure-library\closure\bin\build\depswriter.py ^
--root_with_prefix=". ../../../../labs/jish/js.net.tests/resources/closure_command_test/" ^
--output_file=deps.js | gatapia/jish | js.net.tests/resources/closure_command_test/deps.bat | bat | bsd-3-clause | 218 |
@echo off
nmake /f OhNet.mak %*
| DoomHammer/ohNetGenerated | make.bat | bat | mit | 34 |
@echo #define LANG_ENG 1 >lang.h--
C-- tmpdisk.c
@del tmpdisk
@rename tmpdisk.com tmpdisk
@del warning.txt
@del lang.h--
@pause
| devlato/kolibrios-llvm | programs/cmm/tmpdisk/compile_en.bat | bat | mit | 129 |
cmd_fs/nfsd/nfsfh.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,fs/nfsd/.nfsfh.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -DMODULE -mlong-calls -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(nfsfh)" -D"KBUILD_MODNAME=KBUILD_STR(nfsd)" -c -o fs/nfsd/nfsfh.o fs/nfsd/nfsfh.c
deps_fs/nfsd/nfsfh.o := \
fs/nfsd/nfsfh.c \
$(wildcard include/config/nfsd/v3.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/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/spinlock.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/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/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) \
/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/wait.h \
include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/linux/seqlock.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/errno.h \
include/asm/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/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/time.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/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/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
include/asm/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
$(wildcard include/config/profiling.h) \
include/linux/rcupdate.h \
include/linux/percpu.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/namei.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/asm/semaphore.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/unistd.h \
include/asm/unistd.h \
$(wildcard include/config/asus/sw/qos.h) \
$(wildcard include/config/mips32/o32.h) \
include/linux/config.h \
$(wildcard include/config/h.h) \
include/linux/mount.h \
include/linux/sunrpc/clnt.h \
include/linux/sunrpc/sched.h \
include/linux/sunrpc/types.h \
include/linux/sunrpc/debug.h \
$(wildcard include/config/sysctl.h) \
include/linux/sunrpc/xdr.h \
include/linux/uio.h \
include/linux/scatterlist.h \
include/asm/scatterlist.h \
include/linux/mm.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/capability.h \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm/pgtable-32.h \
include/asm/fixmap.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/sunrpc/xprt.h \
include/linux/socket.h \
$(wildcard include/config/compat.h) \
include/asm/socket.h \
include/asm/sockios.h \
include/linux/sockios.h \
include/linux/in.h \
include/linux/sunrpc/auth.h \
include/linux/sunrpc/stats.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/magic.h \
include/linux/sunrpc/timer.h \
include/asm/signal.h \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/sunrpc/svc.h \
include/linux/in6.h \
include/linux/sunrpc/svcauth.h \
include/linux/sunrpc/cache.h \
include/linux/hash.h \
include/linux/nfsd/nfsd.h \
$(wildcard include/config/nfsd/v4.h) \
$(wildcard include/config/nfsd/v2/acl.h) \
$(wildcard include/config/nfsd/v3/acl.h) \
include/linux/dirent.h \
include/linux/posix_acl.h \
include/linux/nfsd/debug.h \
include/linux/nfsd/nfsfh.h \
include/linux/nfsd/const.h \
include/linux/nfs2.h \
include/linux/nfs3.h \
include/linux/nfs4.h \
include/linux/nfsd/export.h \
include/linux/nfsd/auth.h \
include/linux/nfsd/stats.h \
include/linux/nfsd/interface.h \
fs/nfsd/nfsfh.o: $(deps_fs/nfsd/nfsfh.o)
$(deps_fs/nfsd/nfsfh.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/fs/nfsd/.nfsfh.o.cmd | bat | gpl-2.0 | 14,949 |
@echo Full distr and tests
@echo add MSBuild 15 to your path
MSBuild.exe ./Build.csproj
MSBuild.exe ./Build.csproj /t:CreateZipForUpdateDll
MSBuild.exe ./Build.csproj /t:xUnitTest | Faithfinder/OneScript | dist.cmd | bat | mpl-2.0 | 180 |
@rem Copyright 2009 Ramnivas Laddad
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
call ant clean run-woven
| sobkowiak/aspectj-in-action-code | ch02/workspace/Section2.4.2BinaryWeaving/run-ant.bat | bat | apache-2.0 | 664 |
@echo off
REM --------------------------------------------------------------
REM Set PATH, INCLUDE, and LIB environment variables so
REM that CMAKE can be invoked and Condor can be built from
REM the command line.
REM
REM Note that the existing PATH is not preserved, although the new
REM path will still have Windows, PERL, and CMAKE in it.
REM
REM if USER_TOOLS_DIR and/or USER_TOOLS_DIR2 are set, they will be
REM added to the path, USER_TOOLS_DIR will be a the beginning
REM and USER_TOOLS_DIR2 will be at the end of the path.
REM
REM This batch file will setup the following environment variables
REM if they do not already exist.
REM CMAKE_BIN_DIR - short path to cmake\bin
REM WIX_BIN_DIR - short path to Wix\bin
REM ZIP_BIN_DIR - short path to 7-Zip
REM PERL_BIN_DIR - short path to Perl (c:\Perl\bin)
REM GIT_BIN_DIR - short path to git\bin
REM VS_DIR - the short path to the Visual Studio 2008 directory tree
REM VC_DIR - the short path to %VS_DIR%\VC (used to set include and lib)
REM VC_BIN - the short path to %VS_DIR%\VC\bin (where the compiler is)
REM SDK_DIR - the short path to the Windows SDK (v7.0)
REM DOTNET_DIRS - paths to .NET 3.5 and 2.0
REM
REM PATH, LIB, and INCLUDE are then constructed from these
REM
REM Requirements:
REM
REM before executing this batch script, CMAKE.EXE must
REM be in the PATH, or CMAKE_BIN_DIR must be set to its location
REM or CMAKE must be installed in c:\tools\cmake
REM
REM MSCONFIG_TOOLS_DIR must be set to the condor sources msconfig dir
REM or this batch file must be run from that directory
REM
REM the location of the MS C compiler is derived from the
REM VS110COMNTOOLS environment variable. (which is set in all
REM user's environments by the default compiler install.)
REM
REM
:: check to see if MSCONFIG_TOOLS_DIR is set, if it is not set assume that it
:: is where this file is. also strip off an trailing \ from the path.
::
if "~%MSCONFIG_TOOLS_DIR%"=="~" set MSCONFIG_TOOLS_DIR=%~sdp0
if "~%MSCONFIG_TOOLS_DIR:~-1%"=="~\" Set MSCONFIG_TOOLS_DIR=%MSCONFIG_TOOLS_DIR:~0,-1%
if not exist %MSCONFIG_TOOLS_DIR%\license.rtf (
echo MSCONFIG_TOOLS_DIR is not valid!
)
:: set CMAKE_BIN_DIR if it is not already set, look first in the path then
:: in the registry and finally both of those fail just set it to C:\tools\cmake
::
if "~%CMAKE_BIN_DIR%"=="~" for %%I in (cmake.exe) DO Set CMAKE_BIN_DIR=%%~sdp$PATH:I
if "~%CMAKE_BIN_DIR%"=="~" (
@echo Searching for CMake.exe...
for /F "tokens=1,2*" %%I in ('reg query "HKLM\SOFTWARE" /k /f "CMake*" /ve /s') do (
if "%%I"=="(Default)" (
if "%%J"=="REG_SZ" (
set CMAKE_BIN_DIR=%%K\bin
@echo found CMake in the registry at %%K
)
)
)
)
if "~%CMAKE_BIN_DIR%"=="~" set CMAKE_BIN_DIR=c:\Tools\CMake\bin
:: we don't want CMAKE_BIN_DIR to have a trailing slash.
::
if "~%CMAKE_BIN_DIR:~-1%"=="~\" Set CMAKE_BIN_DIR=%CMAKE_BIN_DIR:~0,-1%
echo CMAKE_BIN_DIR=%CMAKE_BIN_DIR%
if not exist %CMAKE_BIN_DIR%\cmake.exe (
echo can't find CMake.exe, please set CMAKE_BIN_DIR to the path to it.
)
:: find ActivePerl bin dir
::
:: set PERL_BIN_DIR=%SystemDrive%\Perl\bin
if "~%PERL_BIN_DIR%"=="~" for %%I in (perl.exe) DO Set PERL_BIN_DIR=%%~sdp$PATH:I
if "~%PERL_BIN_DIR%"=="~" (
@echo Searching for Perl.exe...
for /F "tokens=1,2*" %%I in ('reg query "HKLM\Software" /f "Perl.exe"') do (
if "%%I"=="BinDir" (
set PERL_BIN_DIR=%%~sfK
)
)
)
if "~%PERL_BIN_DIR:~-1%"=="~\" Set PERL_BIN_DIR=%PERL_BIN_DIR:~0,-1%
echo PERL_BIN_DIR=%PERL_BIN_DIR%
if not exist %PERL_BIN_DIR%\perl.exe echo could not find ActiveState Perl.exe, this is needed to build Condor
:: WiX should be in the path or WIX_BIN_DIR must be set
::
if "~%WIX_BIN_DIR%"=="~" for %%I in (wix.dll) DO Set WIX_BIN_DIR=%%~sdp$PATH:I
if "~%WIX_BIN_DIR%"=="~" set WIX_BIN_DIR=c:\Tools\WiX\bin
if "~%WIX_BIN_DIR:~-1%"=="~\" Set WIX_BIN_DIR=%WIX_BIN_DIR:~0,-1%
echo WIX_BIN_DIR=%WIX_BIN_DIR%
if not exist %WIX_BIN_DIR%\wix.dll echo could not find WiX binaries which are needed to create the Installer
:: need the 7zip path also
::
if "~%ZIP_BIN_DIR%"=="~" for %%I in (7z.exe) do set ZIP_BIN_DIR=%%~sdp$PATH:I
if "~%ZIP_BIN_DIR%"=="~" set ZIP_BIN_DIR=c:\Tools\7-zip
if "~%ZIP_BIN_DIR:~-1%"=="~\" Set ZIP_BIN_DIR=%ZIP_BIN_DIR:~0,-1%
echo ZIP_BIN_DIR=%ZIP_BIN_DIR%
if not exist %ZIP_BIN_DIR%\7z.exe echo could not find 7z.exe, this is needed to PACKAGE condor
:: setup GIT_BIN_DIR if we can find git. this isn't needed to build condor
:: but it is needed to do condor development.
::
if "~%GIT_BIN_DIR%"=="~" for %%I in (git.exe) Do Set GIT_BIN_DIR=%%~sdp$PATH:I
if "~%GIT_BIN_DIR%"=="~" set GIT_BIN_DIR=c:\Tools\Git\bin
if "~%GIT_BIN_DIR:~-1%"=="~\" Set GIT_BIN_DIR=%GIT_BIN_DIR:~0,-1%
echo GIT_BIN_DIR=%GIT_BIN_DIR%
if not exist %GIT_BIN_DIR%\git.exe echo could not find Git.exe, (but it is not needed to build condor)
:: set USER_TOOLS_DIR if it isn't already set. we point it at c:\tools if
:: that directory exists.
::
if "~%USER_TOOLS_DIR%"=="~" (
REM if exist c:\Tools\NUL set USER_TOOLS_DIR=C:\Tools
)
echo USER_TOOLS_DIR=%USER_TOOLS_DIR%
REM 64-bit environments have a slightly different directory layout here
REM we take this in to account so that we can prefix paths later with the
REM the correct program files path. (Note, this assumes a clean install.
REM I'll harden it further if there is a requirement for it.)
set PROGRAMS_DIR=%ProgramFiles%
if not "~%ProgramFiles(x86)%"=="~" set PROGRAMS_DIR=%SystemDrive%\PROGRA~2
:: If Visual Studio 2012 is installed, then VS110COMNTOOLS should be defined
:: we can use that to setup the compiler environment. if it's not set
:: then all we can do is choose default values for environment variables.
::
if "~%VS110COMNTOOLS%"=="~" goto use_default_paths
:: derive from VS110COMNTOOLS
::
for /D %%I in ("%VS110COMNTOOLS%..") do set VS110ROOT=%%~sdpI
set VS_DIR=%VS110ROOT:~0,-1%
set VC_DIR=%VS_DIR%\VC
set VC_BIN=%VC_DIR%\bin
set DBG_TOOLS_DIR=%ProgramFiles%\Debugging Tools for Windows (x86);%ProgramFiles%\Debugging Tools for Windows (x64)
set DOTNET_DIRS=%SystemRoot%\Microsoft.NET\Framework\v3.5;%SystemRoot%\Microsoft.NET\Framework\v2.0.50727
:: find the latest windows SDK dir
::
::set SDK_DIR=%SystemDrive%\PROGRA~1\MICROS~3\Windows\v7.0
if "~%SDK_DIR%"=="~" (
for /F "tokens=1,2*" %%I in ('reg query "HKLM\Software\Microsoft\Microsoft SDKs\Windows" /v "CurrentInstallFolder"') do (
if "%%I"=="CurrentInstallFolder" (
set SDK_DIR=%%~sfK
)
)
)
if "~%SDK_DIR:~-1%"=="~\" Set SDK_DIR=%SDK_DIR:~0,-1%
goto got_paths
:: don't have VS110COMNTOOLS defined, so we will have to assume default
:: installation paths for compiler
::
:use_default_paths
:: Set default paths for Visual C++, the Platform SDKs, and Perl
set VS_DIR=%PROGRAMS_DIR%\Microsoft Visual Studio 11.0
set VC_DIR=%VS_DIR%\VC
set VC_BIN=%VC_DIR%\bin
set PERL_BIN_DIR=%SystemDrive%\Perl\bin
set SDK_DIR=%ProgramFiles%\Microsoft SDKs\Windows\v7.0
set DBG_TOOLS_DIR=%ProgramFiles%\Debugging Tools for Windows (x86);%ProgramFiles%\Debugging Tools for Windows (x64)
set DOTNET_DIRS=%SystemRoot%\Microsoft.NET\Framework\v3.5;%SystemRoot%\Microsoft.NET\Framework\v2.0.50727
:got_paths
REM Setup the path to point to Windows, the C compiler, msconfig for stuff
REM like awk, gunzip, tar, bison, yacc...
REM
set PATH=%SystemRoot%;%SystemRoot%\system32;%CMAKE_BIN_DIR%;%MSCONFIG_TOOLS_DIR%
set PATH=%PATH%;%VS_DIR%\Common7\IDE;%VC_DIR%;%VC_BIN%
if NOT "~%SDK_DIR%"=="~" set PATH=%PATH%;%SDK_DIR%\bin
if NOT "~%PERL_BIN_DIR%"=="~" set PATH=%PATH%;%PERL_BIN_DIR%
if NOT "~%DOTNET_DIRS%"=="~" set PATH=%PATH%;%DOTNET_DIRS%
REM if NOT "~%DBG_TOOLS_DIR%"=="~" set PATH=%PATH%;%DBG_TOOLS_DIR%
if NOT "~%WIX_BIN_DIR%"=="~" set PATH=%PATH%;%WIX_BIN_DIR%
if NOT "~%GIT_BIN_DIR%"=="~" set PATH=%PATH%;%GIT_BIN_DIR%
if NOT "~%ZIP_BIN_DIR%"=="~" set PATH=%PATH%;%ZIP_BIN_DIR%
if NOT "~%USER_TOOLS_DIR%"=="~" set PATH=%USER_TOOLS_DIR%;%PATH%
if NOT "~%USER_TOOLS_DIR2%"=="~" set PATH=%PATH%;%USER_TOOLS_DIR2%
REM setup include path
REM
set INCLUDE=%VC_DIR%\include
set INCLUDE=%INCLUDE%;%VC_DIR%\atlmfc\include
if NOT "~%SDK_DIR%"=="~" set INCLUDE=%INCLUDE%;%SDK_DIR%\include
if NOT "~%DOTNET_DIRS%"=="~" set INCLUDE=%INCLUDE%;%DOTNET_DIRS%
REM setup lib path
REM
set LIB=%VC_DIR%\lib
set LIB=%LIB%;%VC_DIR%\atlmfc\lib
if NOT "~%SDK_DIR%"=="~" set LIB=%LIB%;%SDK_DIR%\lib
REM Dump the Windows build environment at this point
REM echo ----------------------- BUILD ENV ----------------------
setlocal
@echo PATH is
set _remain_=%PATH%
call :listenv
@echo INCLUDE is
set _remain_=%INCLUDE%
call :listenv
@echo LIB is
set _remain_=%LIB%
call :listenv
REM echo --------------------------------------------------------
exit /B 0
:listenv
if "~%_remain_%"=="~" goto :EOF
for /F "delims=; tokens=1,*" %%I in ("%_remain_%") do (
set _remain_=%%J
echo. %%I
)
goto listenv
| bbockelm/htcondor | msconfig/set_build_env.bat | bat | apache-2.0 | 9,151 |
REM Refresh compilation date (which we store in a file).
echo del /F %1\compiledate.txt
del /F %1\compiledate.txt
echo Creating compiledate.txt
date /T > %1\compiledate.txt
time /T >> %1\compiledate.txt
echo rmdir /S /Q %1\ZipFolder\randoop
rmdir /S /Q %1\ZipFolder\randoop
echo del randoop.zip
del randoop.zip
echo mkdir %1\ZipFolder
mkdir %1\ZipFolder
echo mkdir %1\ZipFolder\randoop
mkdir %1\ZipFolder\randoop
echo mkdir %1\ZipFolder\randoop\testresources
mkdir %1\ZipFolder\randoop\testresources
echo mkdir %1\ZipFolder\randoop\docs
mkdir %1\ZipFolder\randoop\docs
echo mkdir %1\ZipFolder\randoop\default_config_files
mkdir %1\ZipFolder\randoop\default_config_files
echo mkdir %1\ZipFolder\randoop\auxtools
mkdir %1\ZipFolder\randoop\auxtools
echo copy %1\auxtools\pageheap.exe %1\ZipFolder\randoop\auxtools\
copy %1\auxtools\pageheap.exe %1\ZipFolder\randoop\auxtools\
echo mkdir %1\ZipFolder\randoop\bin
mkdir %1\ZipFolder\randoop\bin
echo copy %1\RandoopCommon\bin\Release\RandoopCommon.dll %1\ZipFolder\randoop\bin\
copy %1\RandoopCommon\bin\Release\RandoopCommon.dll %1\ZipFolder\randoop\bin\
echo copy %1\RandoopCommon\bin\Release\RandoopCommon.pdb %1\ZipFolder\randoop\bin\
copy %1\RandoopCommon\bin\Release\RandoopCommon.pdb %1\ZipFolder\randoop\bin\
echo copy %1\AssemblyInfoPrinter\bin\Release\AssemblyInfoPrinter.exe %1\ZipFolder\randoop\bin\
copy %1\AssemblyInfoPrinter\bin\Release\AssemblyInfoPrinter.exe %1\ZipFolder\randoop\bin\
echo copy %1\AssemblyInfoPrinter\bin\Release\AssemblyInfoPrinter.pdb %1\ZipFolder\randoop\bin\
copy %1\AssemblyInfoPrinter\bin\Release\AssemblyInfoPrinter.pdb %1\ZipFolder\randoop\bin\
echo copy %1\RandoopTests\bin\Release\RandoopTests.exe %1\ZipFolder\randoop\bin\
copy %1\RandoopTests\bin\Release\RandoopTests.exe %1\ZipFolder\randoop\bin\
echo copy %1\RandoopTests\bin\Release\RandoopTests.pdb %1\ZipFolder\randoop\bin\
copy %1\RandoopTests\bin\Release\RandoopTests.pdb %1\ZipFolder\randoop\bin\
echo copy %1\Randoop\bin\Release\Randoop.exe %1\ZipFolder\randoop\bin\
copy %1\Randoop\bin\Release\Randoop.exe %1\ZipFolder\randoop\bin\
echo copy %1\Randoop\bin\Release\Randoop.pdb %1\ZipFolder\randoop\bin\
copy %1\Randoop\bin\Release\Randoop.pdb %1\ZipFolder\randoop\bin\
echo copy %1\RandoopBare\bin\Release\RandoopBare.exe %1\ZipFolder\randoop\bin\
copy %1\RandoopBare\bin\Release\RandoopBare.exe %1\ZipFolder\randoop\bin\
echo copy %1\RandoopBare\bin\Release\RandoopBare.pdb %1\ZipFolder\randoop\bin\
copy %1\RandoopBare\bin\Release\RandoopBare.pdb %1\ZipFolder\randoop\bin\
echo copy %1\RandoopImpl\bin\Release\RandoopImpl.dll %1\ZipFolder\randoop\bin\
copy %1\RandoopImpl\bin\Release\RandoopImpl.dll %1\ZipFolder\randoop\bin\
echo copy %1\RandoopImpl\bin\Release\RandoopImpl.pdb %1\ZipFolder\randoop\bin\
copy %1\RandoopImpl\bin\Release\RandoopImpl.pdb %1\ZipFolder\randoop\bin\
copy %1\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.dll %1\ZipFolder\randoop\bin\
copy %1\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Mdb.dll %1\ZipFolder\randoop\bin\
copy %1\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Pdb.dll %1\ZipFolder\randoop\bin\
copy %1\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Rocks.dll %1\ZipFolder\randoop\bin\
echo copy %1\README.txt %1\ZipFolder\randoop\
copy %1\README.txt %1\ZipFolder\randoop\
echo copy %1\RELEASE_NOTES.txt %1\ZipFolder\randoop\
copy %1\RELEASE_NOTES.txt %1\ZipFolder\randoop\
echo copy %1\compiledate.txt %1\ZipFolder\randoop\
copy %1\compiledate.txt %1\ZipFolder\randoop\
echo copy "%1\Randoop Manual.doc" %1\ZipFolder\randoop\docs\
copy "%1\Randoop Manual.doc" %1\ZipFolder\randoop\docs\
echo copy "%1\Randoop Developer Notes.doc" %1\ZipFolder\randoop\docs\
copy "%1\Randoop Developer Notes.doc" %1\ZipFolder\randoop\docs\
copy %1\default_config_files\seed_sbyte.txt %1\ZipFolder\randoop\default_config_files\seed_sbyte.txt
copy %1\default_config_files\seed_byte.txt %1\ZipFolder\randoop\default_config_files\seed_byte.txt
copy %1\default_config_files\seed_short.txt %1\ZipFolder\randoop\default_config_files\seed_short.txt
copy %1\default_config_files\seed_ushort.txt %1\ZipFolder\randoop\default_config_files\seed_ushort.txt
copy %1\default_config_files\seed_int.txt %1\ZipFolder\randoop\default_config_files\seed_int.txt
copy %1\default_config_files\seed_uint.txt %1\ZipFolder\randoop\default_config_files\seed_uint.txt
copy %1\default_config_files\seed_long.txt %1\ZipFolder\randoop\default_config_files\seed_long.txt
copy %1\default_config_files\seed_ulong.txt %1\ZipFolder\randoop\default_config_files\seed_ulong.txt
copy %1\default_config_files\seed_char.txt %1\ZipFolder\randoop\default_config_files\seed_char.txt
copy %1\default_config_files\seed_float.txt %1\ZipFolder\randoop\default_config_files\seed_float.txt
copy %1\default_config_files\seed_double.txt %1\ZipFolder\randoop\default_config_files\seed_double.txt
copy %1\default_config_files\seed_bool.txt %1\ZipFolder\randoop\default_config_files\seed_bool.txt
copy %1\default_config_files\seed_decimal.txt %1\ZipFolder\randoop\default_config_files\seed_decimal.txt
copy %1\default_config_files\seed_string.txt %1\ZipFolder\randoop\default_config_files\seed_string.txt
copy %1\default_config_files\mapped_methods.txt %1\ZipFolder\randoop\default_config_files\mapped_methods.txt
echo copy %1\default_config_files\forbid_fields.txt %1\ZipFolder\randoop\default_config_files\forbid_fields.txt
copy %1\default_config_files\forbid_fields.txt %1\ZipFolder\randoop\default_config_files\forbid_fields.txt
echo copy %1\default_config_files\forbid_types.txt %1\ZipFolder\randoop\default_config_files\forbid_types.txt
copy %1\default_config_files\forbid_types.txt %1\ZipFolder\randoop\default_config_files\forbid_types.txt
echo copy %1\default_config_files\forbid_members.txt %1\ZipFolder\randoop\default_config_files\forbid_members.txt
copy %1\default_config_files\forbid_members.txt %1\ZipFolder\randoop\default_config_files\forbid_members.txt
echo copy %1\default_config_files\require_types.txt %1\ZipFolder\randoop\default_config_files\require_types.txt
copy %1\default_config_files\require_types.txt %1\ZipFolder\randoop\default_config_files\require_types.txt
echo copy %1\default_config_files\require_members.txt %1\ZipFolder\randoop\default_config_files\require_members.txt
copy %1\default_config_files\require_members.txt %1\ZipFolder\randoop\default_config_files\require_members.txt
echo copy %1\default_config_files\require_fields.txt %1\ZipFolder\randoop\default_config_files\require_fields.txt
copy %1\default_config_files\require_fields.txt %1\ZipFolder\randoop\default_config_files\require_fields.txt
REM echo "C:\Program Files\WinZip\WINZIP32.EXE" -min -a -r %1\randoop.zip %1\ZipFolder
REM "C:\Program Files\WinZip\WINZIP32.EXE" -min -a -r %1\randoop.zip %1\ZipFolder
| abb-iss/Randoop.NET | randoop-NET-src/createzip.bat | bat | apache-2.0 | 6,791 |
@echo off
setlocal
REM Set intermediate env vars because the %VAR:x=y% notation below
REM (which replaces the string x with the string y in VAR)
REM doesn't handle undefined environment variables. This way
REM we're always dealing with defined variables in those tests.
set CHK_HOME=_%AWS_RDS_HOME%
if "%CHK_HOME:"=%" == "_" goto HOME_MISSING
"%AWS_RDS_HOME:"=%\bin\rds.cmd" rds-delete-db-instance %*
goto DONE
:HOME_MISSING
echo AWS_RDS_HOME is not set
exit /b 1
:DONE | sujoyg/tool | vendor/RDSCli-1.3.003/bin/rds-delete-db-instance.cmd | bat | mit | 492 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
set I18NSPHINXOPTS=%SPHINXOPTS% source
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\CatMAP.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\CatMAP.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
| charlietsai/catmap | docs/make.bat | bat | gpl-3.0 | 6,710 |
if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt46.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt46.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt46%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt46%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt44.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt44.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt44%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt44%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\libicuin%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libicuin%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\libicuuc%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libicuuc%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt40.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt40.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt40%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt42.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt42.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icudt42%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation.resources" xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CoreFoundation.resources" "%CONFIGURATIONBUILDDIR%\bin\CoreFoundation.resources"
if exist "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\objc%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\objc%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\ASL%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\ASL%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
if exist "%WEBKITLIBRARIESDIR%\bin\libdispatch%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libdispatch%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
cmd /c
| nawawi/wkhtmltopdf | webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/testRegExp/testRegExpPostBuild.cmd | bat | lgpl-3.0 | 3,425 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\acorn\bin\acorn" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\acorn\bin\acorn" %*
) | Moccine/global-service-plus.com | web/libariries/bootstrap/node_modules/pug-lexer/node_modules/.bin/acorn.cmd | bat | mit | 178 |
@echo off
powershell -NoProfile -NoLogo -ExecutionPolicy ByPass -command "& """%~dp0init-tools-native.ps1""" %*"
exit /b %ErrorLevel% | zenos-os/zenos | vendor/corert/eng/common/init-tools-native.cmd | bat | mit | 133 |
@ECHO OFF
call VSProjects.bat VS10
| kangaj/cmake | helloworld/GenVS10Projects.bat | bat | mit | 36 |
echo off
pushd %~dp0
%SystemRoot%\SysWoW64\REG.exe query "HKLM\software\META" /v "META_PATH"
SET QUERY_ERRORLEVEL=%ERRORLEVEL%
IF %QUERY_ERRORLEVEL% == 0 (
FOR /F "skip=2 tokens=2,*" %%A IN ('%SystemRoot%\SysWoW64\REG.exe query "HKLM\software\META" /v "META_PATH"') DO SET META_PATH=%%B)
)
IF %QUERY_ERRORLEVEL% == 1 (
echo on
echo "META tools not installed." >> _FAILED.txt
echo "META tools not installed."
exit /b %QUERY_ERRORLEVEL%
)
"%META_PATH%\bin\LayoutSolver.exe" layout-input.json layout.json %*
SET LAYOUT_ERRORLEVEL=%ERRORLEVEL%
IF %LAYOUT_ERRORLEVEL% neq 0 (
echo on
echo "Layout Solver Failed." >> _FAILED.txt
echo "Layout Solver Failed."
exit /b %LAYOUT_ERRORLEVEL%
)
"%META_PATH%\bin\BoardSynthesis.exe" schema.sch layout.json
SET SYNTH_ERRORLEVEL=%ERRORLEVEL%
IF %SYNTH_ERRORLEVEL% neq 0 (
echo on
echo "Board Synthesis Failed." >> _FAILED.txt
echo "Board Synthesis Failed."
exit /b %SYNTH_ERRORLEVEL%
)
popd
| pombredanne/metamorphosys-desktop | metamorphosys/tonka/src/CyPhy2Schematic/bat/placeonly.bat | bat | mit | 995 |
cd \
cd c:\angular-admin
npm install --global webpack
npm install --global webpack-dev-server
npm install --global typescript
npm install primeng --save
npm install
npm uninstall webpack --save-dev
npm install webpack@2.1.0-beta.22 --save-dev | jscanlon77/angular-admin | bat/make.bat | bat | mit | 242 |
@echo USAGE: get-cvs-modules.bat [name]
@echo Where name = SourceForge login id for the littleb project.
@echo If name is missing, checkout is anonymous
@echo This script checks out libraries required by little b from SourceForge.net.
@echo To work, cvs.exe (Concurrent Version System) must be in the path.
@echo And CVS_RSH=path/to/plink.exe
rmdir /s /q lisa
rmdir /s /q graph-tools
rmdir /s /q slime
@if (%1)==() goto anonymous_checkout
@set protocol=:ext:%1
@goto do_checkout
@:anonymous_checkout
@set protocol=:pserver:anonymous
@:do_checkout
cvs -z3 -d %protocol%@littleb.cvs.sourceforge.net:/cvsroot/littleb co -P lisa
cvs -z3 -d %protocol%@littleb.cvs.sourceforge.net:/cvsroot/littleb co -P graph-tools
cvs -z3 -d :pserver:anonymous@common-lisp.net:/project/slime/cvsroot co slime
@echo Checked out lisa and graph-tools modules as %1 from littleb on Sourceforge
@echo Checked out slime as anonymous from common-lisp.net
| aneilbaboo/littleb | get-cvs-modules.bat | bat | mit | 949 |
@echo off
set /p file="Enter filename without .java: "
javac %file%.java
java %file%
| Mysterypancake1/Source-Fun | batch/javacompile.bat | bat | mit | 89 |
"C:\Program Files\MongoDB\Server\3.2\bin\mongo" --host %1 10.10.139.148 gdcame.js
"C:\Program Files\MongoDB\Server\3.2\bin\mongoimport" -v --host %1 10.10.139.148 -d "gdcame" -c "User" --file data\User.json --type json --jsonArray
"C:\Program Files\MongoDB\Server\3.2\bin\mongoimport" -v --host %1 10.10.139.148 -d "gdcame" -c "Item" --file data\Item.json --type json --jsonArray
"C:\Program Files\MongoDB\Server\3.2\bin\mongoimport" -v --host %1 10.10.139.148 -d "gdcame" -c "Counter" --file data\Counter.json --type json --jsonArray
| EntityFX/GdcGame | Sources/EntityFX.Gdcame.DataAccess.Repository.Mongo/mongo-scripts/import.cmd | bat | mit | 538 |
CALL service_variables
REM Pre
REM bitsadmin /transfer mydownloadjob /download /priority normal %MONGO_URL% %MONGO_INSTALLER%
REM Act
msiexec.exe /quiet /i %MONGO_INSTALLER_PATH% INSTALLLOCATION="%MONGO_DIR%" ADDLOCAL="all"
REM Post
service_create
| fraxedas/mongo | mongo_install.bat | bat | mit | 262 |
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off
:: ----------------------
:: KUDU Deployment Script
:: Version: 1.0.6
:: ----------------------
:: Prerequisites
:: -------------
:: Verify node.js installed
where node 2>nul >nul
IF %ERRORLEVEL% NEQ 0 (
echo Missing node.js executable, please install node.js, if already installed make sure it can be reached from current environment.
goto error
)
:: Setup
:: -----
setlocal enabledelayedexpansion
SET ARTIFACTS=%~dp0%..\artifacts
IF NOT DEFINED DEPLOYMENT_SOURCE (
SET DEPLOYMENT_SOURCE=%~dp0%.
)
IF NOT DEFINED DEPLOYMENT_TARGET (
SET DEPLOYMENT_TARGET=%ARTIFACTS%\wwwroot
)
IF NOT DEFINED NEXT_MANIFEST_PATH (
SET NEXT_MANIFEST_PATH=%ARTIFACTS%\manifest
IF NOT DEFINED PREVIOUS_MANIFEST_PATH (
SET PREVIOUS_MANIFEST_PATH=%ARTIFACTS%\manifest
)
)
IF NOT DEFINED KUDU_SYNC_CMD (
:: Install kudu sync
echo Installing Kudu Sync
call npm install kudusync -g --silent
IF !ERRORLEVEL! NEQ 0 goto error
:: Locally just running "kuduSync" would also work
SET KUDU_SYNC_CMD=%appdata%\npm\kuduSync.cmd
)
goto Deployment
:: Utility Functions
:: -----------------
:SelectNodeVersion
IF DEFINED KUDU_SELECT_NODE_VERSION_CMD (
:: The following are done only on Windows Azure Websites environment
call %KUDU_SELECT_NODE_VERSION_CMD% "%DEPLOYMENT_SOURCE%" "%DEPLOYMENT_TARGET%" "%DEPLOYMENT_TEMP%"
IF !ERRORLEVEL! NEQ 0 goto error
IF EXIST "%DEPLOYMENT_TEMP%\__nodeVersion.tmp" (
SET /p NODE_EXE=<"%DEPLOYMENT_TEMP%\__nodeVersion.tmp"
IF !ERRORLEVEL! NEQ 0 goto error
)
IF EXIST "%DEPLOYMENT_TEMP%\__npmVersion.tmp" (
SET /p NPM_JS_PATH=<"%DEPLOYMENT_TEMP%\__npmVersion.tmp"
IF !ERRORLEVEL! NEQ 0 goto error
)
IF NOT DEFINED NODE_EXE (
SET NODE_EXE=node
)
SET NPM_CMD="!NODE_EXE!" "!NPM_JS_PATH!"
) ELSE (
SET NPM_CMD=npm
SET NODE_EXE=node
)
goto :EOF
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Deployment
:: ----------
:Deployment
echo Handling node.js deployment.
:: 2. Select node version
call :SelectNodeVersion
:: 3. Install npm packages
echo Install npm packages
echo %DEPLOYMENT_TARGET%\package.json
IF EXIST "%DEPLOYMENT_SOURCE%\package.json" (
pushd "%DEPLOYMENT_SOURCE%"
call !NPM_CMD! install
IF !ERRORLEVEL! NEQ 0 goto error
popd
)
:: 4. Run gulp transformations
echo 4. Running gulp !NPM_CMD! .\node_modules\.bin\gulp build.prod
IF EXIST "%DEPLOYMENT_SOURCE%\gulpfile.ts" (
echo Found gulpfile
pushd "%DEPLOYMENT_SOURCE%"
call :ExecuteCmd !NPM_CMD! run build.prod
IF !ERRORLEVEL! NEQ 0 goto error
popd
)
dir
:: 5. KuduSync
echo 5. KuduSync
IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" (
call :ExecuteCmd "%KUDU_SYNC_CMD%" -v 50 -f "%DEPLOYMENT_SOURCE%\dist\prod" -t "%DEPLOYMENT_TARGET%" -n "%NEXT_MANIFEST_PATH%" -p "%PREVIOUS_MANIFEST_PATH%" -i ".git;.hg;.deployment;deploy.cmd"
IF !ERRORLEVEL! NEQ 0 goto error
)
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Post deployment stub
IF DEFINED POST_DEPLOYMENT_ACTION call "%POST_DEPLOYMENT_ACTION%"
IF !ERRORLEVEL! NEQ 0 goto error
goto end
:: Execute command routine that will echo out when error
:ExecuteCmd
setlocal
set _CMD_=%*
call %_CMD_%
if "%ERRORLEVEL%" NEQ "0" echo Failed exitCode=%ERRORLEVEL%, command=%_CMD_%
exit /b %ERRORLEVEL%
:error
endlocal
echo An error has occurred during web site deployment.
call :exitSetErrorLevel
call :exitFromFunction 2>nul
:exitSetErrorLevel
exit /b 1
:exitFromFunction
()
:end
endlocal
echo Finished successfully.
| JLou/JandelouFront | deploy.cmd | bat | mit | 3,665 |
@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% 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\Flask-Perm.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Flask-Perm.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
| soasme/flask-perm | docs/make.bat | bat | mit | 7,257 |
@echo off
setlocal EnableDelayedExpansion
echo. *** soaprunner.bat called with params: [ %* ] ***
set SOAPUI_HOME=%TOOLCHAIN%\libs\soapui\bin
set CLASSPATH=%SOAPUI_HOME%\soapui.jar;%SOAPUI_HOME%\..\lib\*;
set JAVA_OPTS=-Xms128m -Xmx512m -Dsoapui.logroot="%SOAPUI_LOGSDIR%\\" -Dsoapui.properties=soapui.properties -Dsoapui.home="%SOAPUI_HOME%" -Dsoapui.ext.libraries="%SOAPUI_HOME%\ext"
set JAVA=java
set SOAPUI_ERRORS_LOG=soapui-errors.log
set ERRORSTATUS=
if not exist "%SOAPUI_SETTINGS%" (call soapsettings)
:: handle multiple project files, error and exception handling ...
for %%F in (%*) do (
echo. @@@ Running SoapUITestCaseRunner with param [%%F] @@@
echo. %JAVA% %JAVA_OPTS% com.eviware.soapui.tools.SoapUITestCaseRunner -r -a -j -M -f %SOAPUI_LOGSDIR% %DB_PROPERTIES% -t soapui-settings.xml %%F
%JAVA% %JAVA_OPTS% com.eviware.soapui.tools.SoapUITestCaseRunner -r -a -j -M -f %SOAPUI_LOGSDIR% %DB_PROPERTIES% -t soapui-settings.xml %%F
if errorlevel 1 (
echo. ERROR: [%%F] SoapUITestCaseRunner returned errorlevel [1]
set ERRORSTATUS=1
)
for /F "delims=" %%A in ('wc -l %SOAPUI_LOGSDIR%\%SOAPUI_ERRORS_LOG% 2^>NUL ^| awk "{print $1}"') do (
if "%%A" NEQ "0" (
set ERRORSTATUS=1
echo. ERROR: [%%F] tripped SoapUITestCaseRunner - stack trace in [%SOAPUI_ERRORS_LOG%]
)
)
)
:: end of for
if defined ERRORSTATUS (goto:error) else (goto:end)
:error
echo. XXX ERROR: SoapUITestCaseRunner returned an error status. XXX
:end
rm -f soapui-settings.xml
endlocal & exit /B %ERRORSTATUS% | ktan2020/legacy-automation | tools/soaprunner.bat | bat | mit | 1,562 |
@echo off
setlocal ENABLEEXTENSIONS
set PATH=%PATH%;C:\Batch\bin
title %~1
set /a FONT=6, SHOWTITLE=0
if not "%~2"=="" set /a FONT=%~2
if not "%~3"=="" set /a SHOWTITLE=%~3
:SHOWLOOP
cmdwiz setfont %FONT% & cmdwiz setbuffersize - - & cmdwiz fullscreen 1 & cmdwiz showcursor 0
rem cmdgfx "fbox 8 0 fa"
gotoxy 0 0 "\Nfa" 8 0
set /a XP=0, YP=0
for /F "tokens=1,2,3,4" %%a in ('cmdwiz gxyinfo %1') do @if "%%a"=="Dimension:" set /a IMGW=%%b, IMGH=%%d
cmdwiz getconsoledim sw
set /a SCRW=%errorlevel%
cmdwiz getconsoledim sh
set /a SCRH=%errorlevel%
set /a XP=%SCRW%/2 - %IMGW%/2
set /a YP=%SCRH%/2 - %IMGH%/2 - 1
:MINILOOP
gotoxy 0 0 "\M1024{\gfa}" 8 0 x
rem cmdgfx "fbox 8 0 fa 0,0,1024,0" p
gotoxy %XP% %YP% %1
if %SHOWTITLE% equ 1 gotoxy 0 0 "%~n1%~x1 " 7 0 i
cmdwiz getch
set /a KEY=%errorlevel%
if %KEY% == 116 set /a SHOWTITLE=1-%SHOWTITLE% & goto :MINILOOP
if %KEY% == 102 set /a SHOWTITLE=1-%SHOWTITLE% & goto :MINILOOP
if %KEY% == 105 set /a SHOWTITLE=1-%SHOWTITLE% & goto :MINILOOP
if %KEY% == 333 call :CHANGEFILE "%~n1%~x1" "%0"
if %KEY% == 331 call :CHANGEFILE "%~n1%~x1" "%0" -
if %KEY% geq 48 if %KEY% leq 57 cmdwiz fullscreen 0 & set /a FONT=%KEY%-48 & goto :SHOWLOOP
endlocal
goto :eof
:CHANGEFILE
setlocal ENABLEDELAYEDEXPANSION
set /a FND=0
for /f "tokens=*" %%F in ('dir /o%3n /-p /b *.gxy') do (
if !FND! == 1 call %~2 "%CD%\%%F" %FONT% %SHOWTITLE% & set /a FND=0
if "%~1"=="%%F" set /a FND=1
)
endlocal
| misol1/cmdgfx | showgxy-explorer.bat | bat | gpl-2.0 | 1,453 |
@echo off
setlocal
rem Copyright (c) 1999, 2008 Tanuki Software, Inc.
rem http://www.tanukisoftware.com
rem All rights reserved.
rem
rem This software is the proprietary information of Tanuki Software.
rem You shall use it only in accordance with the terms of the
rem license agreement you entered into with Tanuki Software.
rem http://wrapper.tanukisoftware.org/doc/english/licenseOverview.html
rem
rem Java Service Wrapper general NT service start script.
rem Optimized for use with version 3.3.1 of the Wrapper.
rem
if "%OS%"=="Windows_NT" goto nt
echo This script only works with NT-based versions of Windows.
goto :eof
:nt
rem
rem Find the application home.
rem
rem %~dp0 is location of current script under NT
set _REALPATH=%~dp0..\
rem Decide on the wrapper binary.
set _WRAPPER_BASE=SOCVFinderService
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
if exist "%_WRAPPER_EXE%" goto conf
set _WRAPPER_EXE=%_REALPATH%%_WRAPPER_BASE%.exe
if exist "%_WRAPPER_EXE%" goto conf
echo Unable to locate a Wrapper executable using any of the following names:
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-32.exe
echo %_REALPATH%%_WRAPPER_BASE%-windows-x86-64.exe
echo %_REALPATH%%_WRAPPER_BASE%.exe
pause
goto :eof
rem
rem Find the wrapper.conf
rem
:conf
set _WRAPPER_CONF="%~f1"
if not %_WRAPPER_CONF%=="" goto install
set _WRAPPER_CONF="%_REALPATH%\service\wrapper.conf"
rem
rem Install the Wrapper NT service.
rem
:install
"%_WRAPPER_EXE%" -i %_WRAPPER_CONF%
if not errorlevel 1 goto :startup
pause
rem
rem Start the Wrapper NT service.
rem
:startup
"%_WRAPPER_EXE%" -t %_WRAPPER_CONF%
if not errorlevel 1 goto :eof
pause
| SOCVFinder/SOCVFinder | SOCVDBService/service/Install & Start SOCVFinderService.bat | bat | gpl-2.0 | 1,739 |
@REM Create JK2MV projects for Visual Studio 2013 using CMake
@echo off
for %%X in (cmake.exe) do (set FOUND=%%~$PATH:X)
if not defined FOUND (
echo CMake was not found on your system. Please make sure you have installed CMake
echo from http://www.cmake.org/ and cmake.exe is installed to your system's PATH
echo environment variable.
echo.
pause
exit /b 1
) else (
echo Found CMake!
)
mkdir msvc10_x64
cd msvc10_x64
cmake -G "Visual Studio 10 Win64" ../..
pause | ensiform/jk2mv | build/create-vs2010-x64-projects.bat | bat | gpl-2.0 | 469 |
@echo off
call "environment.cmd"
echo Building Greentea...
ninja bootcd
| GreenteaOS/Kernel | autobuild-bootcd.cmd | bat | gpl-2.0 | 76 |
REM Python 3.6 64bit is required!
set PYTHON=c:/tools/Python36
IF EXIST ".venv" (
rmdir /q /s .venv
)
%PYTHON%/python.exe -m venv .venv
IF NOT EXIST ".venv" (
echo Python virtual environment faild to create.
pause
exit 1
)
call .venv\scripts\activate.bat
pip install https://github.com/s4w3d0ff/python-poloniex/archive/v0.4.7.zip
pip install -r requirements.txt
| 0x1001/StockMarket | crypto/install.bat | bat | gpl-2.0 | 373 |
cmd_sound/drivers/built-in.o := ld -m elf_x86_64 -r -o sound/drivers/built-in.o sound/drivers/opl3/built-in.o sound/drivers/opl4/built-in.o sound/drivers/mpu401/built-in.o sound/drivers/vx/built-in.o sound/drivers/pcsp/built-in.o
| Existed/kernel-2.6.35.14 | sound/drivers/.built-in.o.cmd | bat | gpl-2.0 | 234 |
# (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
#
# This file contains confidential and proprietary information
# of Xilinx, Inc. and is protected under U.S. and
# international copyright and other intellectual property
# laws.
#
# DISCLAIMER
# This disclaimer is not a license and does not grant any
# rights to the materials distributed herewith. Except as
# otherwise provided in a valid license issued to you by
# Xilinx, and to the maximum extent permitted by applicable
# law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
# WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
# AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
# BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
# INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
# (2) Xilinx shall not be liable (whether in contract or tort,
# including negligence, or under any other theory of
# liability) for any loss or damage of any kind or nature
# related to, arising under or in connection with these
# materials, including for any direct, or any indirect,
# special, incidental, or consequential loss or damage
# (including loss of data, profits, goodwill, or any type of
# loss or damage suffered as a result of any action brought
# by a third party) even if such damage or loss was
# reasonably foreseeable or Xilinx had been advised of the
# possibility of the same.
#
# CRITICAL APPLICATIONS
# Xilinx products are not designed or intended to be fail-
# safe, or for use in any application requiring fail-safe
# performance, such as life-support or safety devices or
# systems, Class III medical devices, nuclear facilities,
# applications related to the deployment of airbags, or any
# other applications that could lead to death, personal
# injury, or severe property or environmental damage
# (individually and collectively, "Critical
# Applications"). Customer assumes the sole risk and
# liability of any use of Xilinx products in Critical
# Applications, subject only to applicable laws and
# regulations governing limitations on product liability.
#
# THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
# PART OF THIS FILE AT ALL TIMES.
#--------------------------------------------------------------------------------
mkdir work
echo "Compiling Core Verilog UNISIM/Behavioral model"
ncvlog -work work ../../../txreg.v
ncvhdl -v93 -work work ../../example_design/txreg_exdes.vhd
echo "Compiling Test Bench Files"
ncvhdl -v93 -work work ../txreg_pkg.vhd
ncvhdl -v93 -work work ../txreg_rng.vhd
ncvhdl -v93 -work work ../txreg_dgen.vhd
ncvhdl -v93 -work work ../txreg_dverif.vhd
ncvhdl -v93 -work work ../txreg_pctrl.vhd
ncvhdl -v93 -work work ../txreg_synth.vhd
ncvhdl -v93 -work work ../txreg_tb.vhd
echo "Elaborating Design"
ncvlog -work work $XILINX/verilog/src/glbl.v
ncelab -access +rwc glbl work.txreg_tb
echo "Simulating Design"
ncsim -gui -input @"simvision -input wave_ncsim.sv" work.txreg_tb
| gigglesninja/digital-system-design | spi/ipcore_dir/txreg/simulation/functional/simulate_ncsim.bat | bat | gpl-2.0 | 2,945 |
cmd_net/key/built-in.o := /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o net/key/built-in.o net/key/af_key.o
| MadRocker/experimental-2.6.29-MadRocker | net/key/.built-in.o.cmd | bat | gpl-2.0 | 152 |
cmd_sound/pci/built-in.o := arm-linux-gnueabi-ld -EL -r -o sound/pci/built-in.o sound/pci/ac97/built-in.o sound/pci/ali5451/built-in.o sound/pci/asihpi/built-in.o sound/pci/au88x0/built-in.o sound/pci/aw2/built-in.o sound/pci/ctxfi/built-in.o sound/pci/ca0106/built-in.o sound/pci/cs46xx/built-in.o sound/pci/cs5535audio/built-in.o sound/pci/lola/built-in.o sound/pci/lx6464es/built-in.o sound/pci/echoaudio/built-in.o sound/pci/emu10k1/built-in.o sound/pci/hda/built-in.o sound/pci/ice1712/built-in.o sound/pci/korg1212/built-in.o sound/pci/mixart/built-in.o sound/pci/nm256/built-in.o sound/pci/oxygen/built-in.o sound/pci/pcxhr/built-in.o sound/pci/riptide/built-in.o sound/pci/rme9652/built-in.o sound/pci/trident/built-in.o sound/pci/ymfpci/built-in.o sound/pci/vx222/built-in.o
| jpsminix/minix5 | sound/pci/.built-in.o.cmd | bat | gpl-2.0 | 789 |
cmd_net/ipv6/netfilter/ip6t_NPT.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/ipv6/netfilter/ip6t_NPT.ko net/ipv6/netfilter/ip6t_NPT.o net/ipv6/netfilter/ip6t_NPT.mod.o
| avareldalton85/rpi2-linux-rt | net/ipv6/netfilter/.ip6t_NPT.ko.cmd | bat | gpl-2.0 | 279 |
cmd_sound/soc/au1x/built-in.o := rm -f sound/soc/au1x/built-in.o; /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ar rcsD sound/soc/au1x/built-in.o
| domintech/PandaBoard-LinuxKernel | sound/soc/au1x/.built-in.o.cmd | bat | gpl-2.0 | 222 |
cmd_net/unix/unix.o := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o net/unix/unix.o net/unix/af_unix.o net/unix/garbage.o net/unix/sysctl_net_unix.o
| kingklick/kk-evo-kernel | net/unix/.unix.o.cmd | bat | gpl-2.0 | 195 |
cmd_drivers/gpio/built-in.o := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ld.bfd -EL -r -o drivers/gpio/built-in.o drivers/gpio/gpiolib.o drivers/gpio/gpio-rk30.o
| Zaphod-Beeblebrox/kernel_rockchip_rk3188 | drivers/gpio/.built-in.o.cmd | bat | gpl-2.0 | 182 |
cmd_drivers/media/dvb/frontends/cx24123.ko := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -T /home/envy/kernel/shinano-sirius_msm8974abpro/scripts/module-common.lds --build-id -o drivers/media/dvb/frontends/cx24123.ko drivers/media/dvb/frontends/cx24123.o drivers/media/dvb/frontends/cx24123.mod.o
| Envious-Data/shinano-sirius_msm8974abpro | drivers/media/dvb/frontends/.cx24123.ko.cmd | bat | gpl-2.0 | 338 |
cmd_drivers/mmc/core/mmc_ops.o := arm-eabi-gcc -Wp,-MD,drivers/mmc/core/.mmc_ops.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mmc_ops)" -D"KBUILD_MODNAME=KBUILD_STR(mmc_core)" -D"DEBUG_HASH=45" -D"DEBUG_HASH2=41" -c -o drivers/mmc/core/mmc_ops.o drivers/mmc/core/mmc_ops.c
deps_drivers/mmc/core/mmc_ops.o := \
drivers/mmc/core/mmc_ops.c \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/failslab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/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/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/data/repos/kernels/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/repos/kernels/arch/arm/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/data/repos/kernels/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/repos/kernels/arch/arm/include/asm/bitops.h \
/data/repos/kernels/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/data/repos/kernels/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/trace/irqflags/support.h) \
/data/repos/kernels/arch/arm/include/asm/irqflags.h \
/data/repos/kernels/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/data/repos/kernels/arch/arm/include/asm/hwcap.h \
/data/repos/kernels/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
/data/repos/kernels/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/repos/kernels/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/repos/kernels/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/emulate/domain/manager/v7.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/data/repos/kernels/arch/arm/include/asm/processor.h \
/data/repos/kernels/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/dynamic_debug.h \
/data/repos/kernels/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/repos/kernels/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
/data/repos/kernels/arch/arm/include/asm/spinlock.h \
include/linux/rwlock.h \
include/linux/spinlock_api_smp.h \
$(wildcard include/config/inline/spin/lock.h) \
$(wildcard include/config/inline/spin/lock/bh.h) \
$(wildcard include/config/inline/spin/lock/irq.h) \
$(wildcard include/config/inline/spin/lock/irqsave.h) \
$(wildcard include/config/inline/spin/trylock.h) \
$(wildcard include/config/inline/spin/trylock/bh.h) \
$(wildcard include/config/inline/spin/unlock.h) \
$(wildcard include/config/inline/spin/unlock/bh.h) \
$(wildcard include/config/inline/spin/unlock/irq.h) \
$(wildcard include/config/inline/spin/unlock/irqrestore.h) \
include/linux/rwlock_api_smp.h \
$(wildcard include/config/inline/read/lock.h) \
$(wildcard include/config/inline/write/lock.h) \
$(wildcard include/config/inline/read/lock/bh.h) \
$(wildcard include/config/inline/write/lock/bh.h) \
$(wildcard include/config/inline/read/lock/irq.h) \
$(wildcard include/config/inline/write/lock/irq.h) \
$(wildcard include/config/inline/read/lock/irqsave.h) \
$(wildcard include/config/inline/write/lock/irqsave.h) \
$(wildcard include/config/inline/read/trylock.h) \
$(wildcard include/config/inline/write/trylock.h) \
$(wildcard include/config/inline/read/unlock.h) \
$(wildcard include/config/inline/write/unlock.h) \
$(wildcard include/config/inline/read/unlock/bh.h) \
$(wildcard include/config/inline/write/unlock/bh.h) \
$(wildcard include/config/inline/read/unlock/irq.h) \
$(wildcard include/config/inline/write/unlock/irq.h) \
$(wildcard include/config/inline/read/unlock/irqrestore.h) \
$(wildcard include/config/inline/write/unlock/irqrestore.h) \
/data/repos/kernels/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic-long.h \
include/linux/wait.h \
/data/repos/kernels/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/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/data/repos/kernels/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
/data/repos/kernels/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
/data/repos/kernels/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
/data/repos/kernels/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/phys/offset.h) \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/scorpionmp.h) \
$(wildcard include/config/arch/msm7x27.h) \
/data/repos/kernels/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/getorder.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/data/repos/kernels/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) \
/data/repos/kernels/arch/arm/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/repos/kernels/arch/arm/include/asm/smp.h \
arch/arm/mach-msm/include/mach/smp.h \
/data/repos/kernels/arch/arm/include/asm/hardware/gic.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/data/repos/kernels/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/data/repos/kernels/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
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 \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/data/repos/kernels/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/data/repos/kernels/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/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/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/kmemleak.h \
$(wildcard include/config/debug/kmemleak.h) \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/data/repos/kernels/arch/arm/include/asm/scatterlist.h \
include/asm-generic/scatterlist.h \
$(wildcard include/config/need/sg/dma/length.h) \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/repos/kernels/arch/arm/include/asm/auxvec.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/data/repos/kernels/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/data/repos/kernels/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/data/repos/kernels/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/repos/kernels/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
$(wildcard include/config/vmsplit/2g.h) \
/data/repos/kernels/arch/arm/include/asm/pgtable-hwdef.h \
/data/repos/kernels/arch/arm/include/asm/tlbflush.h \
$(wildcard include/config/cpu/tlb/v3.h) \
$(wildcard include/config/cpu/tlb/v4wt.h) \
$(wildcard include/config/cpu/tlb/fa.h) \
$(wildcard include/config/cpu/tlb/v4wbi.h) \
$(wildcard include/config/cpu/tlb/feroceon.h) \
$(wildcard include/config/cpu/tlb/v4wb.h) \
$(wildcard include/config/cpu/tlb/v6.h) \
$(wildcard include/config/cpu/tlb/v7.h) \
$(wildcard include/config/arm/errata/720789.h) \
$(wildcard include/config/arch/msm8x60.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
include/linux/capability.h \
/data/repos/kernels/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/repos/kernels/arch/arm/include/asm/ipcbuf.h \
/data/repos/kernels/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/repos/kernels/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/data/repos/kernels/arch/arm/include/asm/sigcontext.h \
/data/repos/kernels/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/repos/kernels/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/memory/failure.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/data/repos/kernels/arch/arm/include/asm/io.h \
$(wildcard include/config/sec/debug/regrw/log.h) \
arch/arm/mach-msm/include/mach/sec_debug.h \
$(wildcard include/config/sec/debug.h) \
$(wildcard include/config/sec/debug/sched/log.h) \
$(wildcard include/config/sec/debug/irq/exit/log.h) \
$(wildcard include/config/sec/debug/semaphore/log.h) \
$(wildcard include/config/sec/debug/dcvs/log.h) \
$(wildcard include/config/sec/debug/fuelgauge/log.h) \
$(wildcard include/config/sec/debug/mdp/log.h) \
$(wildcard include/config/sec/debug/sdio/log.h) \
include/linux/semaphore.h \
arch/arm/mach-msm/include/mach/io.h \
include/linux/mmc/host.h \
$(wildcard include/config/mmc/debug.h) \
$(wildcard include/config/leds/triggers.h) \
$(wildcard include/config/mmc/embedded/sdio.h) \
$(wildcard include/config/mmc/perf/profiling.h) \
$(wildcard include/config/pm.h) \
include/linux/leds.h \
$(wildcard include/config/leds/trigger/ide/disk.h) \
include/linux/mmc/core.h \
include/linux/interrupt.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/ftrace/nmi/enter.h) \
/data/repos/kernels/arch/arm/include/asm/hardirq.h \
/data/repos/kernels/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm8960.h) \
arch/arm/mach-msm/include/mach/irqs-8x60.h \
include/linux/irq_cpustat.h \
include/linux/device.h \
$(wildcard include/config/of.h) \
$(wildcard include/config/debug/devres.h) \
$(wildcard include/config/devtmpfs.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
include/linux/stat.h \
/data/repos/kernels/arch/arm/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/repos/kernels/arch/arm/include/asm/elf.h \
/data/repos/kernels/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
/data/repos/kernels/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/linux/pm.h \
$(wildcard include/config/pm/runtime.h) \
$(wildcard include/config/pm/ops.h) \
/data/repos/kernels/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
include/linux/mmc/pm.h \
include/linux/mmc/card.h \
include/linux/mmc/mmc.h \
drivers/mmc/core/core.h \
include/linux/delay.h \
/data/repos/kernels/arch/arm/include/asm/delay.h \
drivers/mmc/core/mmc_ops.h \
drivers/mmc/core/mmc_ops.o: $(deps_drivers/mmc/core/mmc_ops.o)
$(deps_drivers/mmc/core/mmc_ops.o):
| bigbiff/i717-GB-Kernel | drivers/mmc/core/.mmc_ops.o.cmd | bat | gpl-2.0 | 26,614 |
-- Opens the class diagram:
-- open examples/Papers/2005/GogollaBohlingRichters/percom.use
-- Creates the object diagram:
-- read examples/Papers/2005/GogollaBohlingRichters/percom-9.cmd
-- generate a snapshot showing that proofs are possible
-- show that if a person has 3 jobs, there must exist at least 3 companies
open examples/Papers/2005/GogollaBohlingRichters/percom.use
gen load examples/Papers/2005/GogollaBohlingRichters/personWith3JobsIn0Or1Or2Companies.invs
gen start examples/Papers/2005/GogollaBohlingRichters/percom.assl generatePersonWith3Jobs0Companies()
gen result
reset
gen load examples/Papers/2005/GogollaBohlingRichters/personWith3JobsIn0Or1Or2Companies.invs
gen start examples/Papers/2005/GogollaBohlingRichters/percom.assl generatePersonWith3Jobs1Company()
gen result
reset
gen load examples/Papers/2005/GogollaBohlingRichters/personWith3JobsIn0Or1Or2Companies.invs
gen start -df yyy.tex examples/Papers/2005/GogollaBohlingRichters/percom.assl generatePersonWith3Jobs2Companies()
gen result
| classicwuhao/maxuse | examples/Papers/2005/GogollaBohlingRichters/percom-9.cmd | bat | gpl-2.0 | 1,055 |
cd %~dp0
call prepare_game_dir.cmd Release
| LibreGameArchive/kraft-der-mada | scripts/prepare_game_dir_release.cmd | bat | gpl-3.0 | 45 |
call %OPENSSL%\openssl enc -des-ecb -nopad -nosalt -K %K8% -e -in plaintext -out des_ecb_8.enc
REM TDES
call %OPENSSL%\openssl enc -des-ede-ecb -nopad -nosalt -K %K16% -e -in plaintext -out tdes_ecb_16.enc
call %OPENSSL%\openssl enc -des-ede3-ecb -nopad -nosalt -K %K24% -e -in plaintext -out tdes_ecb_24.enc
call %OPENSSL%\openssl enc -des-ede-cbc -nopad -nosalt -K %K16% -iv %DES_IV% -e -in plaintext -out tdes_cbc_16.enc
call %OPENSSL%\openssl enc -des-ede3-cbc -nopad -nosalt -K %K24% -iv %DES_IV% -e -in plaintext -out tdes_cbc_24.enc | BrainFPV/betaflight | lib/main/ChibiOS/test/crypto/ref/des_ref.bat | bat | gpl-3.0 | 542 |
@ECHO OFF
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe bin\Release\TortoiseMantis.dll /codebase /regfile:TortoiseMantis.reg
echo. >> TortoiseMantis.reg
echo [HKEY_CLASSES_ROOT\CLSID\{F25B6B8F-1BA0-4BCA-A809-0C0B6F4A0CED}\Implemented Categories\{3494FA92-B139-4730-9591-01135D5E7831}] >> TortoiseMantis.reg
echo. >> TortoiseMantis.reg
| xxNull-lsk/tortoisemantis | do-registry-thingie.cmd | bat | gpl-3.0 | 355 |
"E:\UnrealEngine-4.4.0-release\Engine\Binaries\Win64\UE4Editor.exe" "E:\GitHub\Portfolio\KokkuEngine\KokkuEngine.uproject" -leet | RPGHacker/Portfolio | KokkuEngine/LocTestLeetify.bat | bat | gpl-3.0 | 128 |
@echo off
if "%1"=="" (
ECHO Dieses Skript ist nur zur internen Verwendung von build_x64 gedacht.
EXIT /B
)
CL /c /Ix64\ /I..\..\inc /Zi /nologo /W4 /WX /diagnostics:column /O2 /D _WIN64 /D _AMD64_ /D AMD64 /D WIN32_LEAN_AND_MEAN=1 /D _WIN32_WINNT=0x0A00 /D WINVER=0x0A00 /D WINNT=1 /D NTDDI_VERSION=0x0A000007 /D _WINDLL /Gm- /MD /GS /guard:cf /fp:precise /Zc:wchar_t- /Zc:forScope /Zc:inline /Fo"x64\\" /Fd"x64\vc142.pdb" /Gz /TC /FC /errorReport:prompt kbd%1%.c
RC /D _WIN64 /D _AMD64_=1 /D AMD64 /D WIN32_LEAN_AND_MEAN=1 /D _WIN32_WINNT=0x0A00 /D WINVER=0x0A00 /D WINNT=1 /D NTDDI_VERSION=0x0A000007 /l"0x0409" /Ix64 /I..\..\inc /nologo /fo"x64\kbd%1.res" kbd%1.rc
LINK /ERRORREPORT:PROMPT /OUT:"x64\kbd%1.dll" /INCREMENTAL:NO /NOLOGO /WX kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /DEF:"kbd%1.def" /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"x64\kbd%1.pdb" /TLBID:1 /NOENTRY /DYNAMICBASE /NXCOMPAT /IMPLIB:"x64\kbd%1.lib" /MACHINE:X64 /guard:cf /IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re /ignore:4254 /DLL x64\kbd%1.res x64\kbd%1.obj
| neo-layout/neo-layout | windows/kbdneo2/build/build_variant_x64.cmd | bat | gpl-3.0 | 1,337 |
::============================================================================
:: Batch file to load the PELICAN program to the flash of EK-TM4C123GXL
:: (equivalent to EK-LM4F120XL)
::
:: NOTE: requires the LMFlash programmer from Texas Instruments, see:
:: http://www.ti.com/tool/LMFLASHPROGRAMMER
::
@echo off
setlocal
@echo Load the program to the flash of EK-TM4C123GXL
@echo usage: flash
@echo usage: flash rel
@echo usage: flash spy
::----------------------------------------------------------------------------
:: NOTE: Adjust the following symbol to the location of the
:: LMFlash utility on your machine
::
set LMFLASH=C:\tools\TI\LM_Flash_Programmer\LMFlash.exe
:: set the build directory depending on the first parameter %1
set BUILD_DIR=dbg
if [%1] NEQ [] set BUILD_DIR=%1
@echo on
%LMFLASH% -q ek-tm4c123gxl %BUILD_DIR%\pelican-qv.bin
@echo.
@echo.
@echo Reset the target to start running your program!
@echo off
endlocal | hyller/GladiatorCots | QP/v5.4.2/qpn/examples/arm-cm/pelican_ek-tm4c123gxl/qv/gnu/flash.bat | bat | unlicense | 977 |
@echo off
SET py_file=%~dp0System\test.py
echo run in %~dp0
python %py_file%
| kubow/HAC | test.bat | bat | unlicense | 77 |
upx Intertelecom.exe | infosv/Intertelecom | _UPX.bat | bat | apache-2.0 | 20 |
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"ruby.exe" "c:/projects/chef-repo/vendor/bundle/ruby/1.9.1/bin/ri" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"ruby.exe" "%~dpn0" %*
| ibula/learning-chef | vendor/bundle/ruby/1.9.1/bin/ri.bat | bat | apache-2.0 | 181 |
rm tmp_*
rm .RData | excelly/xpy-ml | omop/clear.bat | bat | apache-2.0 | 18 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_MEETS.S04_RecurringMeeting.MSMEETS_S04_TC01_RecurringMeetingOperations /testcontainer:..\..\MS-MEETS\TestSuite\bin\Debug\MS-MEETS_TestSuite.dll /runconfig:..\..\MS-MEETS\MS-MEETS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | SharePoint/Source/Scripts/MS-MEETS/RunMSMEETS_S04_TC01_RecurringMeetingOperations.cmd | bat | mit | 299 |
sqlite3 -init LtwDb.sql OIS.db .q | RubenCordeiro/ltw13-14 | sql/gen-database.bat | bat | mit | 33 |
cmd_drivers/video/msm/built-in.o := arm-eabi-ld -EL -r -o drivers/video/msm/built-in.o drivers/video/msm/msm_fb.o drivers/video/msm/logo.o drivers/video/msm/mdp.o drivers/video/msm/mdp_debugfs.o drivers/video/msm/mdp4_util.o drivers/video/msm/mdp4_video_enhance.o drivers/video/msm/mdp4_hsic.o drivers/video/msm/mdp4_overlay.o drivers/video/msm/mdp4_overlay_lcdc.o drivers/video/msm/mdp4_overlay_dsi_video.o drivers/video/msm/mdp4_overlay_dsi_cmd.o drivers/video/msm/mdp_dma.o drivers/video/msm/mdp_dma_s.o drivers/video/msm/mdp_vsync.o drivers/video/msm/mdp_cursor.o drivers/video/msm/mdp_dma_tv.o drivers/video/msm/msm_dss_io_8960.o drivers/video/msm/msm_mipi.o drivers/video/msm/mipi_tc358764_dsi2lvds.o drivers/video/msm/msm_fb_panel.o drivers/video/msm/mipi_boeot_tft_video_wsvga_pt.o drivers/video/msm/mdp4_wfd_writeback_panel.o drivers/video/msm/mdp4_wfd_writeback.o drivers/video/msm/mdp4_overlay_writeback.o drivers/video/msm/vidc/built-in.o
| BigBot96/android_kernel_samsung_espressovzw | drivers/video/msm/.built-in.o.cmd | bat | gpl-2.0 | 956 |
cmd_net/ipv6/netfilter/ip6_tables.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,net/ipv6/netfilter/.ip6_tables.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(ip6_tables)" -D"KBUILD_MODNAME=KBUILD_STR(ip6_tables)" -c -o net/ipv6/netfilter/ip6_tables.o net/ipv6/netfilter/ip6_tables.c
deps_net/ipv6/netfilter/ip6_tables.o := \
net/ipv6/netfilter/ip6_tables.c \
$(wildcard include/config/netfilter/debug.h) \
include/linux/capability.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/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/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/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/asm/current.h \
include/linux/in.h \
include/linux/socket.h \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/compat.h) \
include/asm/socket.h \
include/asm/sockios.h \
include/asm/ioctl.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/vlan/8021q.h) \
$(wildcard include/config/raeth/skb/recycle/2k.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
$(wildcard include/config/imq.h) \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/net.h \
$(wildcard include/config/sysctl.h) \
include/linux/wait.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/random.h \
include/linux/ioctl.h \
include/linux/sysctl.h \
$(wildcard include/config/bcm/nat.h) \
include/linux/textsearch.h \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/sysfs.h) \
include/linux/stat.h \
include/asm/stat.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/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/err.h \
include/net/checksum.h \
include/asm/checksum.h \
include/linux/in6.h \
include/linux/rcupdate.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/semaphore.h \
include/asm/device.h \
include/asm-generic/device.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/rbtree.h \
include/linux/vmalloc.h \
include/linux/netdevice.h \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/if_packet.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/asm/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
$(wildcard include/config/i8259.h) \
include/asm/mipsmtregs.h \
include/asm-mips/mach-generic/irq.h \
$(wildcard include/config/irq/cpu/rm7k.h) \
$(wildcard include/config/irq/cpu/rm9k.h) \
include/asm/ptrace.h \
$(wildcard include/config/cpu/has/smartmips.h) \
include/asm/isadep.h \
include/asm/irq_regs.h \
include/asm/hw_irq.h \
include/linux/profile.h \
$(wildcard include/config/profiling.h) \
include/linux/irq_cpustat.h \
include/linux/sched.h \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/fault/injection.h) \
include/asm/mmu.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/securebits.h \
include/linux/fs_struct.h \
include/linux/pid.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/futex.h \
$(wildcard include/config/futex.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/icmpv6.h \
include/net/ipv6.h \
include/linux/ipv6.h \
$(wildcard include/config/ipv6/privacy.h) \
$(wildcard include/config/ipv6/router/pref.h) \
$(wildcard include/config/ipv6/route/info.h) \
$(wildcard include/config/ipv6/optimistic/dad.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/mip6.h) \
$(wildcard include/config/ipv6/subtrees.h) \
$(wildcard include/config/ipv6.h) \
include/linux/tcp.h \
$(wildcard include/config/tcp/md5sig.h) \
include/net/sock.h \
$(wildcard include/config/security/network.h) \
include/linux/mm.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/debug/pagealloc.h) \
include/linux/prio_tree.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/backing-dev.h \
include/linux/mm_types.h \
include/asm/pgtable.h \
include/asm/pgtable-32.h \
include/asm/fixmap.h \
include/asm-generic/pgtable-nopmd.h \
include/asm-generic/pgtable-nopud.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/swap.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/security.h \
$(wildcard include/config/security/network/xfrm.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 \
$(wildcard include/config/cpu/little/endian.h) \
include/linux/key.h \
include/linux/xfrm.h \
include/net/flow.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/linux/netlink.h \
include/linux/if_link.h \
include/linux/if_addr.h \
include/linux/neighbour.h \
include/net/neighbour.h \
include/linux/seq_file.h \
include/net/rtnetlink.h \
include/net/netlink.h \
include/net/inet_connection_sock.h \
include/linux/poll.h \
include/asm/poll.h \
include/net/inet_sock.h \
include/linux/jhash.h \
include/net/request_sock.h \
include/net/inet_timewait_sock.h \
include/net/tcp_states.h \
include/net/timewait_sock.h \
include/linux/udp.h \
include/net/if_inet6.h \
include/net/snmp.h \
include/linux/snmp.h \
include/net/ndisc.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/magic.h \
include/linux/netfilter_ipv6/ip6_tables.h \
include/linux/netfilter_ipv6.h \
$(wildcard include/config/netfilter.h) \
include/linux/netfilter.h \
$(wildcard include/config/ip/nf/nat/needed.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/netfilter/x_tables.h \
$(wildcard include/config/x86/64.h) \
include/linux/netfilter_ipv4.h \
include/linux/netfilter/xt_tcpudp.h \
net/ipv6/netfilter/ip6_tables.o: $(deps_net/ipv6/netfilter/ip6_tables.o)
$(deps_net/ipv6/netfilter/ip6_tables.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/net/ipv6/netfilter/.ip6_tables.o.cmd | bat | gpl-2.0 | 21,266 |
@echo // Copyright (C) 1996-2005 Markus F.X.J. Oberhumer
@echo //
@echo // DOS 16-bit
@echo // Borland C/C++ + Pharlap 286DOS-Extender
@echo //
@call b\prepare.bat
@if "%BECHO%"=="n" echo off
set CC=bcc286 -ml -2
set CF=-O1 -d -w -w-rch -w-sig %CFI% -Iinclude\lzo
set LF=%BLIB%
%CC% %CF% -Isrc -c @b\src.rsp
@if errorlevel 1 goto error
tlib %BLIB% @b\dos16\bc.rsp
@if errorlevel 1 goto error
%CC% %CF% -Iexamples examples\dict.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iexamples -DWITH_TIMER examples\lzopack.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iexamples examples\precomp.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iexamples examples\precomp2.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iexamples examples\simple.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Ilzotest lzotest\lzotest.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -Iminilzo minilzo\testmini.c minilzo\minilzo.c
@if errorlevel 1 goto error
@call b\done.bat
@goto end
:error
@echo ERROR during build!
:end
@call b\unset.bat
| ZHAW-INES/rioxo-uClinux-dist | lib/lzo/lzo-2.02/B/dos16/bc_286.bat | bat | gpl-2.0 | 1,018 |
@echo off
call build.bat clean
call build.bat rebuild
call build.bat -f build\scripts\jarsigner.xml
call build.bat cgMDR-installer | NCIP/cadsr-cgmdr-nci-uk | build-cgMDR-installer.bat | bat | bsd-3-clause | 134 |
rem Create the R-nl language .mo file
rem %1 is Rscript location
rem %2 is get gettext location (stripped "")
rem %3 Tools location
rem %4 R source folder
set PATH=%PATH%;%~2
%1\Rscript %3\translate.R %4
| boutinb/jasp-desktop | Tools/translate.cmd | bat | agpl-3.0 | 206 |
@echo off
cd ..
%~dp0\premake4.exe --file=..\premake4.lua --to=.\VisualC\VS2010 vs2010
pause | orangeloaf/nebelung | remote/sdl/premake/VisualC/build-scripts/vs2010.bat | bat | mit | 95 |
mmcinit
fatload mmc 0 0x82000000 uImage
setenv bootargs 'console=tty1 omapfb.mode=dvi:1024x600MR-24@60 root=/dev/mmcblk0p2 rootwait rootfstype=ext3 mem=99M@0x80000000 mem=128M@0x88000000 vram=18M omapfb.vram=0:10M,1:4M,2:4M'
bootm
| wwright2/dcim3-angstrom1 | sources/meta-angstrom/recipes-angstrom/angstrom/angstrom-uboot-scripts/touchbook.cmd | bat | mit | 231 |
ECHO "DELETE DIRECTORY BUILD" & RMDIR /S /Q dist
ECHO "DELETE DIRECTORY NODE_MODULE" & RMDIR /S /Q node_modules\@ardimedia\angular-portal-azure
ECHO "COPY angularportalazure DEPLOY" & XCOPY ..\angular-portal-azure\dist node_modules\@ardimedia\angular-portal-azure\ /E/I/Q/R/Y
ECHO "COMPILE TSC" & CALL .\node_modules\.bin\tsc
| ardimedia/angular-portal-azure | angular-portal-azure.sample-1/build.bat | bat | isc | 369 |
@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\lifter.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\lifter.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
| EliotBerriot/lifter | docs/make.bat | bat | isc | 6,459 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Folivora.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Folivora.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| rocketDuck/folivora | docs/make.bat | bat | isc | 5,100 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\node_modules\mocha\bin\mocha" %*
) ELSE (
node "%~dp0\node_modules\mocha\bin\mocha" %*
) | Devanshu1991/4LTRProject | node_modules/npm/mocha.cmd | bat | mit | 147 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.