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
|
---|---|---|---|---|---|
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:S1_ConnectionTest_Disconnection_PositiveTest_ClientInitiated /Logger:trx
pause
| dongruiqing/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPBCGR/S1_ConnectionTest_Disconnection_PositiveTest_ClientInitiated.cmd | bat | mit | 249 |
@rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
IF EXIST "%~dp0perl.exe" (
"%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" (
"%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
) ELSE (
perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
)
goto endofperl
:WinNT
IF EXIST "%~dp0perl.exe" (
"%~dp0perl.exe" -x -S %0 %*
) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" (
"%~dp0..\..\bin\perl.exe" -x -S %0 %*
) ELSE (
perl -x -S %0 %*
)
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
goto endofperl
@rem ';
#!/usr/bin/env perl
#line 29
package net_server;
use strict;
use warnings;
if (grep {$_ eq '--help' || $_ eq '-h'} @ARGV) {
require Pod::Usage;
Pod::Usage::pod2usage(-verbose => 1);
exit;
}
my $pkg;
if (@ARGV
&& $ARGV[0]
&& $ARGV[0] =~ /^(\w+)$/
&& ($pkg = $1)
&& eval { require "Net/Server/$pkg.pm" }
) {
$pkg = "Net::Server::$pkg";
} else {
if ($pkg && grep {-e "$_/Net/Server/$pkg.pm"} @INC) {
die "Error trying to become a Net::Server::$pkg:\n\n$@";
}
$pkg = 'Net::Server::MultiType';
}
require base;
import base $pkg;
__PACKAGE__->run;
exit;
sub default_port {
my $self = shift;
return 8080 if $> && $self->isa('Net::Server::HTTP');
return $self->SUPER::default_port;
}
__END__
=head1 NAME
net-server - Base Net::Server starting module
=head1 SYNOPSIS
net-server [base type] [net server arguments]
net-server PreFork ipv '*'
net-server HTTP
net-server HTTP app foo.cgi
net-server HTTP app foo.cgi app /=bar.cgi
net-server HTTP port 8080 port 8443/ssl ipv '*' server_type PreFork --SSL_key_file=my.key --SSL_cert_file=my.crt access_log_file STDERR
=head1 DESCRIPTION
The net-server program gives a simple way to test out code and try
port connection parameters. Though the running server can be robust
enough for full tim use, it is anticipated that this binary will just
be used for basic testing of net-server ports, acting as a simple echo
server, or for running development scripts as CGI.
=head1 OPTIONS
=over 4
=item C<base type>
The very first argument may be a Net::Server flavor. This is given as
shorthand for writing out server_type "ServerFlavor". Additionally,
this allows types such as HTTP and PSGI, which are not true
Net::Server base types, to subclass other server types via an
additional server_type argument.
net-server PreFork
net-server HTTP # becomes a HTTP server in the Fork flavor
net-server HTTP server_type PreFork # preforking HTTP server
=item C<port>
Port to bind upon. Default is 80 if running a HTTP server as root,
8080 if running a HTTP server as non-root, or 20203 otherwise.
Multiple value can be given for binding to multiple ports. All of the
methods for specifying port attributes enumerated in L<Net::Server>
and L<Net::Server::Proto> are available here.
net-server port 20201
net-server port 20202
net-server port 20203/IPv6
=item C<host>
Host to bind to. Default is *. Will bind to an IPv4 socket if an
IPv4 address is given. Will bind to an IPv6 socket if an IPv6 address
is given (requires installation of IO::Socket::INET6).
If a hostname is given and C<ipv> is still set to 4, an IPv4 socket
will be created. If a hostname is given and C<ipv> is set to 6, an
IPv6 socket will be created. If a hostname is given and C<ipv> is set
to * (default), a lookup will be performed and any available IPv4 or
IPv6 addresses will be bound. The C<ipv> parameter can be set
directly, or passed along in the port, or additionally can be passed
as part of the hostname.
net-server host localhost
net-server host localhost/IPv4
=back
There are many more options available. Please see the L<Net::Server>
documentation.
=head1 AUTHOR
Paul Seamons <paul at seamons.com>
=head1 LICENSE
This package may be distributed under the terms of either the
GNU General Public License
or the
Perl Artistic License
=cut
__END__
:endofperl
| mishin/dwimperl-windows | strawberry-perl-5.20.0.1-32bit-portable/perl/site/bin/net-server.bat | bat | gpl-2.0 | 4,344 |
@echo off
REM %1 is File Description
REM %2 is Internal Name
REM %3 is Resource Header FileName
REM %4 is Original Filename
REM %5 is Major Version Number
REM %6 is Minor Version Number 1
REM %7 is Minor Version Number 2
REM %8 is Minor Version Number 3
REM %9 is the Hot Fix Version Number
REM %10 is FileName to output to
REM %11 is the MIME Type
set param1=%1
set param2=%2
set param3=%3
set param4=%4
set param5=%5
set param6=%6
set param7=%7
set param8=%8
set param9=%9
SHIFT
SHIFT
SHIFT
SHIFT
SHIFT
SHIFT
SHIFT
SHIFT
SHIFT
SHIFT
set param10=%0
set param11=%1
echo // Microsoft Visual C++ generated resource script.
echo //
echo #include "%param3%"
echo.
echo #define APSTUDIO_READONLY_SYMBOLS
echo /////////////////////////////////////////////////////////////////////////////
echo //
echo // Generated from the TEXTINCLUDE 2 resource.
echo //
echo #include "afxres.h"
echo.
echo /////////////////////////////////////////////////////////////////////////////
echo #undef APSTUDIO_READONLY_SYMBOLS
echo.
echo /////////////////////////////////////////////////////////////////////////////
echo // English (U.S.) resources
echo.
echo #if ^!defined(AFX_RESOURCE_DLL) ^|^| defined(AFX_TARG_ENU)
echo #ifdef _WIN32
echo LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
echo #pragma code_page(1252)
echo #endif //_WIN32
echo.
echo /////////////////////////////////////////////////////////////////////////////
echo //
echo // Version
echo //
echo.
echo VS_VERSION_INFO VERSIONINFO
echo FILEVERSION %param5%,%param6%,%param7%,%param8%
echo PRODUCTVERSION %param5%,%param6%,%param7%,%param8%
echo FILEFLAGSMASK 0x3fL
echo #ifdef _DEBUG
echo FILEFLAGS 0x1L
echo #else
echo FILEFLAGS 0x0L
echo #endif
echo FILEOS 0x40004L
echo FILETYPE 0x2L
echo FILESUBTYPE 0x0L
echo BEGIN
echo BLOCK "StringFileInfo"
echo BEGIN
echo BLOCK "040904e4"
echo BEGIN
echo VALUE "CompanyName", "Symbol Technologies, Inc"
echo VALUE "FileDescription", %param1%
echo VALUE "FileOpenName", "npwtg_legacy.dll"
echo VALUE "FileVersion", "%param5%, %param6%, %param7%, %param8%"
echo VALUE "InternalName", "%param2%"
echo VALUE "LegalCopyright", "Copyright (C) %date:~-4,4%"
echo VALUE "LegalTrademarks", "Symbol Technologies Inc."
echo VALUE "MIMEType", %param11%
echo VALUE "OriginalFilename", "%param4%"
echo VALUE "ProductName", "Symbol RhoElements v1"
echo VALUE "ProductVersion", "%param5%, %param6%, %param7%, %param8%, %param9%"
echo END
echo END
echo BLOCK "VarFileInfo"
echo BEGIN
echo VALUE "Translation", 0x409, 1252
echo END
echo END
echo.
echo.
echo #ifdef APSTUDIO_INVOKED
echo /////////////////////////////////////////////////////////////////////////////
echo //
echo // TEXTINCLUDE
echo //
echo.
echo 1 TEXTINCLUDE
echo BEGIN
echo "%param3%\0"
echo END
echo.
echo 2 TEXTINCLUDE
echo BEGIN
echo "#include ""afxres.h""\r\n"
echo "\0"
echo END
echo.
echo 3 TEXTINCLUDE
echo BEGIN
echo "\r\n"
echo "\0"
echo END
echo.
echo #endif // APSTUDIO_INVOKED
echo.
echo #endif // English (U.S.) resources
echo /////////////////////////////////////////////////////////////////////////////
echo.
echo.
echo.
echo #ifndef APSTUDIO_INVOKED
echo /////////////////////////////////////////////////////////////////////////////
echo //
echo // Generated from the TEXTINCLUDE 3 resource.
echo //
echo.
echo.
echo /////////////////////////////////////////////////////////////////////////////
echo #endif // not APSTUDIO_INVOKED
echo.
| tauplatform/tau | neon/Helium/GenerateRCFile.bat | bat | mit | 3,617 |
# Universe changed from scheduler -- see gittrac #4394
universe = vanilla
executable = ./x_sleep.pl
arguments = 1
Notification = NEVER
queue
| djw8605/htcondor | src/condor_tests/job_dagman_cycle-A-node.cmd | bat | apache-2.0 | 150 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=openmmtools
if "%1" == "" goto help
%SPHINXBUILD% >NUL 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
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
| choderalab/openmmtools | docs/make.bat | bat | mit | 815 |
@ECHO OFF
ECHO START CREATE CONTROL FILE...
sqlplus sys/sys as sysdba @create_standby_control.sql
ECHO FINISH... | brandonDu/oracle-dataguard-configure | windows/server 2008 + oracle 10g/create_control_file.bat | bat | mit | 112 |
@echo off
cd docs
call .\make.bat html
cd build\html
call python -m http.server 80
cd ..\..\..\
| LuqueDaniel/pybooru | tools/preview_documentation.bat | bat | mit | 97 |
cd ..
rem GEMMA-FRN
E:\soft\R-3.2.2\bin\x64\Rscript bacgwas.R --input D:\work\bio\workdir\raw\dataset_1 --output D:\work\bio\tmp\gemma --plugin frn
rem MOSS-FRN
E:\soft\R-3.2.2\bin\x64\Rscript bacgwas.R --input D:\work\bio\tmp\moss --output D:\work\bio\tmp\moss --plugin moss
rem LASSO-FRN
E:\soft\R-3.2.2\bin\x64\Rscript bacgwas.R --input D:\work\bio\tmp\lasso --output D:\work\bio\tmp\lasso --plugin lasso
rem RANDFOR-FRN
E:\soft\R-3.2.2\bin\x64\Rscript bacgwas.R --input D:\work\bio\tmp\randforests --output D:\work\bio\tmp\randforests --plugin randforests
cd bin
pause | ikavalio/MDRTB-pipe | bin/test_frn.bat | bat | mit | 577 |
set version=%1%
gox -output="bin\{{.OS}}_{{.Arch}}\{{.Dir}}" -osarch="linux/amd64 windows/amd64 darwin/amd64" -ldflags="-X github.com\mpopadic\go_n_find\cmd.Version=v%version%"
cd bin
cd windows_amd64 && zip ..\windows_amd64.zip *
cd ..
rd /s /q windows_amd64
cd linux_amd64 && zip ..\linux_amd64.zip *
cd ..
rd /s /q linux_amd64
cd darwin_amd64 && zip ..\darwin_amd64.zip *
cd ..
rd /s /q darwin_amd64 | mpopadic/go_n_find | build.bat | bat | mit | 404 |
@echo off
rem Read Arguments
IF dummy==dummy%1 (
set application=eden
) ELSE (
set application=%1
)
IF dummy==dummy%2 (
set test=regressionTests
start selenium.cmd
ping -n 12 127.0.0.1
) ELSE (
set test=%2
)
c:
cd \bin\web2py\applications\%application%\tests\selenium\scripts
IF dummy==dummy%2 (
python %test%.py local_ff
) ELSE (
python %test%.py %application%
) | flavour/ssf | tests/selenium/test.cmd | bat | mit | 365 |
@setlocal
@echo off
@if NOT "%ECHO%"=="" @echo %ECHO%
"%OrleansSDK%\StartLocalSilo.cmd"
| yaronthurm/orleans | Samples/Chirper/1.Demo Start Silo.cmd | bat | mit | 90 |
call pathdef.bat
python %apeng-kicad_path%\export_coordinate\export_coordinate.py %1
| apeng2012/apeng-kicad | tools/bin/export_SMT.bat | bat | mit | 86 |
SETLOCAL EnableExtensions EnableDelayedExpansion
SET FILENAME=thesis
rem MIKTEX_BIN=C:\miktex\texmfs\install\miktex\bin\
rem set PATH=%MIKTEX_BIN%;%PATH%
set ROOT_DIR=%~dp0
cd %ROOT_DIR%
DEL /Q "%FILENAME%.aux" >nul 2>&1
DEL /Q "%FILENAME%.bbl" >nul 2>&1
DEL /Q "%FILENAME%.blg" >nul 2>&1
DEL /Q "%FILENAME%.d" >nul 2>&1
DEL /Q "%FILENAME%.fls" >nul 2>&1
DEL /Q "%FILENAME%.ild" >nul 2>&1
DEL /Q "%FILENAME%.ind" >nul 2>&1
DEL /Q "%FILENAME%.toc" >nul 2>&1
DEL /Q "%FILENAME%.lot" >nul 2>&1
DEL /Q "%FILENAME%.lof" >nul 2>&1
DEL /Q "%FILENAME%.idx" >nul 2>&1
DEL /Q "%FILENAME%.out" >nul 2>&1
DEL /Q "%FILENAME%.nlo" >nul 2>&1
DEL /Q "%FILENAME%.nls" >nul 2>&1
DEL /Q "%FILENAME%.pdf" >nul 2>&1
DEL /Q "%FILENAME%.ps" >nul 2>&1
DEL /Q "%FILENAME%.dvi" >nul 2>&1
DEL /Q "%FILENAME%.bcf" >nul 2>&1
DEL /Q "%FILENAME%.aux.bbl" >nul 2>&1
DEL /Q "%FILENAME%.aux.blg" >nul 2>&1
DEL /Q "%FILENAME%.aux" >nul 2>&1
DEL /Q "%FILENAME%.acn" >nul 2>&1
DEL /Q "%FILENAME%.acr" >nul 2>&1
DEL /Q "%FILENAME%.alg" >nul 2>&1
DEL /Q "%FILENAME%.auxlock" >nul 2>&1
DEL /Q "%FILENAME%.bbl" >nul 2>&1
DEL /Q "%FILENAME%.blg" >nul 2>&1
DEL /Q "%FILENAME%.d" >nul 2>&1
DEL /Q "%FILENAME%.fls" >nul 2>&1
DEL /Q "%FILENAME%.ild" >nul 2>&1
DEL /Q "%FILENAME%.ilg" >nul 2>&1
DEL /Q "%FILENAME%.ind" >nul 2>&1
DEL /Q "%FILENAME%.ist" >nul 2>&1
DEL /Q "%FILENAME%.toc" >nul 2>&1
DEL /Q "%FILENAME%.lot" >nul 2>&1
DEL /Q "%FILENAME%.lof" >nul 2>&1
DEL /Q "%FILENAME%.idx" >nul 2>&1
DEL /Q "%FILENAME%.out" >nul 2>&1
DEL /Q "%FILENAME%.pre" >nul 2>&1
DEL /Q "%FILENAME%.nlo" >nul 2>&1
DEL /Q "%FILENAME%.nls" >nul 2>&1
DEL /Q "%FILENAME%.slg" >nul 2>&1
DEL /Q "%FILENAME%.syg" >nul 2>&1
DEL /Q "%FILENAME%.syi" >nul 2>&1
DEL /Q "%FILENAME%.bcf" >nul 2>&1
DEL /Q "%FILENAME%.aux.bbl" >nul 2>&1
DEL /Q "%FILENAME%.aux.blg" >nul 2>&1
| holgern/TUB_PhDThesisTemplate | compile-thesis-windows-clear.bat | bat | mit | 1,805 |
@echo off
REM Install .NET Core (https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script)
REM @powershell -NoProfile -ExecutionPolicy unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -useb 'https://dot.net/v1/dotnet-install.ps1'))) -Channel Current"
REM SET PATH=%LOCALAPPDATA%\Microsoft\dotnet;%PATH%
dotnet restore dotnet-fake.csproj -v:quiet
dotnet fake run %* | OlegZee/Xake | samples/fake.cmd | bat | mit | 397 |
echo off
java PinPDFGen.ImageFetcher "ExampleInput.txt" "Pin Pictures"
pause | Cjsheaf/Pin-PDF-Generator | RunImageFetcher.bat | bat | mit | 76 |
@echo off
taskkill /F /IM AutoKillSwitch.exe > nul 2>&1
taskkill /F /IM StandaloneRTC.exe > nul 2>&1
taskkill /F /IM WerFault.exe > nul 2>&1
taskkill /F /IM EmuHawk.exe > nul 2>&1
taskkill /F /IM ffmpeg.exe > nul 2>&1
start AutoKillSwitch.exe
start EmuHawk.exe
exit | ircluzar/RTC3 | Real-Time Corruptor/BizHawk_RTC/output/StartAutoKillSwitch.bat | bat | mit | 267 |
cmd /k pycreator.py
| Zachacious/PyCreator | PyCreator.bat | bat | mit | 20 |
@echo off
node test.create.table.js
node test.insert.values.js
node test.select.values.js
echo test find...
node test.$and.js
node test.$or.js
node test.$gt.js
node test.$in.js
node test.complex.find.js
node test.select.field.js
echo test insert
node test.table.insert.js
echo test update
node test.table.update.js
echo test delete
node test.table.delete.js
pause | wushengyong/sqlite3-cipher-node | dist/test/run_test.bat | bat | mit | 365 |
copy ..\..\..\style\base.css .
saxon set.difference.xml ../../../style/function.xsl
wzzip -P -o set.difference.zip @set.difference.package.txt
wzzip -P -o set.difference.use-cases.zip @set.difference.use-cases.txt
cd ..
cd ..
saxon set.xml ../style/module.xsl
wzzip -P -o set.zip @set.package.txt
cd ..
saxon modules.xml style/package.xsl
wzzip -P -o all-exslt.zip @package.txt
saxon modules.xml style/xml-package.xsl
wzzip -P -o exslt.zip @xml-package.txt
cd set
cd functions
cd difference
| exslt/exslt.github.io | set/functions/difference/update.bat | bat | mit | 491 |
set maven_home=c:\java\maven-1.0-beta-8
set path=%path%;%maven_home%\bin
| linnet/eclipse-tools | implementors-core/mavensetup.cmd | bat | epl-1.0 | 75 |
:XPDGLOBAL
if "%XPDG%"=="1" goto :XPDBEGIN
if "%XPDG%"=="0" goto :xpdkep
if "%JOYOV%"=="1" goto :XPDBEGIN
"%GBC%\wbox.exe" "Overwrite" "Overwrite existing xpadder profiles?" "Yes;No" /DB=1 /TM=20
if %ERRORLEVEL%==1 goto :XPDBEGIN
if %ERRORLEVEL%==2 goto :xpdkep
goto :cpexit
:xpdkep
SET XPDKP=1
:XPDBEGIN
start "" "%GBC%\wbusy.exe" "xpdcopy" "Creating Joystick Profiles" /marquee
for /f "tokens=* delims= " %%a in ('type "%GBC%\conSelect.set"') do (
SET XPTMP=%%a
CALL :RNTMP
)
start "" "%GBC%\wbusy.exe" "xpdcopy" "Complete" /Stop /timeout:1
goto :cpexit
:RNTMP
if not exist "%GBG%\%GAM%\%CONS%\%XPTMP%" goto :cpexit
if "%XPDEF%"=="1" copy /Y "%GBC%\net\%XPROF%\%XPTMP%\*.xpadderprofile" "%GBG%\%GAM%\%CONS%\%XPTMP%"
if "%XPDBLNK%"=="1" copy /Y "%GBC%\net\%XPROF%\Other\*.xpadderprofile" "%GBG%\%GAM%\%CONS%\%XPTMP%"
if "%XPDEMU%"=="1" copy /Y "%GBC%\net\%XPROF%\EMU\%XPTMP%\*.xpadderprofile" "%GBG%\%GAM%\%CONS%\%XPTMP%"
for /f "tokens=* delims= " %%a in ('dir /b/ad-h "%GBG%\%GAM%\%CONS%\%XPTMP%"') do (
SET XPDDIR=%%~a
CALL :COPYOVER
)
exit /b
:COPYOVER
SET XPDEXIST=
for /f "tokens=* delims= " %%a in ('dir /b/a-d-h "%GBG%\%GAM%\%CONS%\%XPTMP%\*.xpadderprofile"') do (
SET XPDEXIST=%%~a
CALL :COPYXPD
)
exit /b
:COPYXPD
if "%XPDEXIST%" NEQ "" goto :xpdchk
goto :xpdcpy
:xpdchk
if "%XPDKP%"=="1" goto :cpexit
:xpdcpy
copy /Y "%GBG%\%GAM%\%CONS%\%XPTMP%\*.xpadderprofile" "%GBG%\%GAM%\%CONS%\%XPTMP%\%XPDDIR%"
:cpexit | HoodlumDTX/rom-jacket | generateXpadderProfiles.bat | bat | gpl-2.0 | 1,477 |
cmd_arch/arm/lib/lib1funcs.o := /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.lib1funcs.o.d -nostdinc -isystem /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -Iinclude -I/home/madrocker/Desktop/JetDroid1/kernel-work/experimental-2.6.29-MadRocker/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-s3c6400/include -Iarch/arm/mach-s3c6410/include -Iarch/arm/plat-s3c64xx/include -Iarch/arm/plat-s3c/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -gdwarf-2 -c -o arch/arm/lib/lib1funcs.o arch/arm/lib/lib1funcs.S
deps_arch/arm/lib/lib1funcs.o := \
arch/arm/lib/lib1funcs.S \
$(wildcard include/config/aeabi.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/madrocker/Desktop/JetDroid1/kernel-work/experimental-2.6.29-MadRocker/arch/arm/include/asm/linkage.h \
/home/madrocker/Desktop/JetDroid1/kernel-work/experimental-2.6.29-MadRocker/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
/home/madrocker/Desktop/JetDroid1/kernel-work/experimental-2.6.29-MadRocker/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
$(wildcard include/config/smp.h) \
/home/madrocker/Desktop/JetDroid1/kernel-work/experimental-2.6.29-MadRocker/arch/arm/include/asm/hwcap.h \
arch/arm/lib/lib1funcs.o: $(deps_arch/arm/lib/lib1funcs.o)
$(deps_arch/arm/lib/lib1funcs.o):
| MadRocker/experimental-2.6.29-MadRocker | arch/arm/lib/.lib1funcs.o.cmd | bat | gpl-2.0 | 1,803 |
cmd_arch/arm/mvp/built-in.o := /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o arch/arm/mvp/built-in.o arch/arm/mvp/mvpkm/built-in.o arch/arm/mvp/commkm/built-in.o arch/arm/mvp/pvtcpkm/built-in.o
| arshull/GalaTab3_Kernel | arch/arm/mvp/.built-in.o.cmd | bat | gpl-2.0 | 224 |
@rename %1 %2
@rem $Id: mv.cmd,v 1.3 2002/02/21 22:24:53 giles Exp $
| brho/plan9 | sys/src/cmd/gs/src/mv.cmd | bat | gpl-2.0 | 69 |
@echo off
set HOME=C:
set USER=Windows
set CLIENT=.\ccg_client.exe
if exist .\home set HOME=.\home
if exist module_windows32\ccg_client.exe set CLIENT=module_windows32\ccg_client.exe
start %CLIENT% --design 1024x768 --user %USER% %1 %2 %3 %4 %5 %6 %7 %8 %9 metwDC.xml
| markferry/gccg-core | MetwDC.bat | bat | gpl-2.0 | 276 |
cmd_net/bluetooth/bnep/built-in.o := /home/aashir/android/toolchain/linaro/bin/arm-eabi-ld -EL -r -o net/bluetooth/bnep/built-in.o net/bluetooth/bnep/bnep.o
| emwno/android_kernel_U8500 | net/bluetooth/bnep/.built-in.o.cmd | bat | gpl-2.0 | 162 |
cmd_drivers/usb/class/built-in.o := /home/livlogik/android/ndk/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ld -EL -r -o drivers/usb/class/built-in.o drivers/usb/class/cdc-acm.o drivers/usb/class/ccid_bridge.o
| livlogik/Evil_Yummy_Gumdrop--Tmo-V10-Kernel | drivers/usb/class/.built-in.o.cmd | bat | gpl-2.0 | 272 |
cmd_arch/arm/kernel/vmlinux.lds := /home/envy/kernel/shinano-sirius_msm8974abpro/scripts/gcc-wrapper.py /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-gcc -E -Wp,-MD,arch/arm/kernel/.vmlinux.lds.d -nostdinc -isystem /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/../lib/gcc/arm-eabi/4.6.2/include -I/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include -Iarch/arm/include/generated -Iinclude -include /home/envy/kernel/shinano-sirius_msm8974abpro/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -DTEXT_OFFSET=0x00008000 -P -C -Uarm -D__ASSEMBLY__ -DLINKER_SCRIPT -o arch/arm/kernel/vmlinux.lds arch/arm/kernel/vmlinux.lds.S
source_arch/arm/kernel/vmlinux.lds := arch/arm/kernel/vmlinux.lds.S
deps_arch/arm/kernel/vmlinux.lds := \
$(wildcard include/config/strict/memory/rwx.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/smp/on/up.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/hotplug.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/xip/kernel.h) \
$(wildcard include/config/xip/phys/addr.h) \
$(wildcard include/config/arm/unwind.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/have/tcm.h) \
include/asm-generic/vmlinux.lds.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/syscalls.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/pm/trace.h) \
$(wildcard include/config/blk/dev/initrd.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/memory.h \
$(wildcard include/config/need/mach/memory/h.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/arm/patch/phys/virt.h) \
$(wildcard include/config/phys/offset.h) \
include/linux/const.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/arch/dma/addr/t/64bit.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
arch/arm/include/generated/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
arch/arm/include/generated/asm/sizes.h \
include/asm-generic/sizes.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/arch/msm7x30.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/vmsplit/3g.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/arch/msm/cortex/a5.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm8x60.h) \
$(wildcard include/config/arch/msm8960.h) \
$(wildcard include/config/dont/map/hole/after/membank0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
$(wildcard include/config/arch/msm/krait.h) \
$(wildcard include/config/arch/msm7x27.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/copy/v6.h) \
$(wildcard include/config/kuser/helpers.h) \
$(wildcard include/config/arm/lpae.h) \
$(wildcard include/config/have/arch/pfn/valid.h) \
$(wildcard include/config/memory/hotplug/sparse.h) \
include/asm-generic/getorder.h \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/highpte.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/proc-fns.h \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/glue-proc.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v6k.h) \
$(wildcard include/config/cpu/v7.h) \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/glue.h \
include/asm-generic/pgtable-nopud.h \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/pgtable-hwdef.h \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/pgtable-2level-hwdef.h \
/home/envy/kernel/shinano-sirius_msm8974abpro/arch/arm/include/asm/pgtable-2level.h \
arch/arm/kernel/vmlinux.lds: $(deps_arch/arm/kernel/vmlinux.lds)
$(deps_arch/arm/kernel/vmlinux.lds):
| Envious-Data/shinano-sirius_msm8974abpro | arch/arm/kernel/.vmlinux.lds.cmd | bat | gpl-2.0 | 7,132 |
cmd_fs/fat/dir.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-gcc -Wp,-MD,fs/fat/.dir.o.d -nostdinc -isystem /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include -Iinclude -I/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-goldfish/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dir)" -D"KBUILD_MODNAME=KBUILD_STR(fat)" -c -o fs/fat/dir.o fs/fat/dir.c
deps_fs/fat/dir.o := \
fs/fat/dir.c \
$(wildcard include/config/compat.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/posix_types.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hwcap.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
include/linux/linkage.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/stat.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/stat.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/div64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/wait.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
include/linux/const.h \
arch/arm/mach-goldfish/include/mach/memory.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/elf.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/module.h \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/buffer_head.h \
$(wildcard include/config/block.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/pid.h \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/rbtree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/auxvec.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-goldfish/include/mach/vmalloc.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
include/linux/uaccess.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/uaccess.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/shmparam.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/kmap_types.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/no/hz.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
$(wildcard include/config/function/graph/tracer.h) \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/hardirq.h \
/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm/include/asm/irq.h \
arch/arm/mach-goldfish/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/compat.h \
fs/fat/fat.h \
include/linux/nls.h \
include/linux/msdos_fs.h \
include/linux/magic.h \
fs/fat/dir.o: $(deps_fs/fat/dir.o)
$(deps_fs/fat/dir.o):
| mjmccall/Kernel | fs/fat/.dir.o.cmd | bat | gpl-2.0 | 19,618 |
cmd_drivers/char/vt.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,drivers/char/.vt.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(vt)" -D"KBUILD_MODNAME=KBUILD_STR(vt)" -c -o drivers/char/vt.o drivers/char/vt.c
deps_drivers/char/vt.o := \
drivers/char/vt.c \
$(wildcard include/config/vt/console.h) \
$(wildcard include/config/prom/console.h) \
$(wildcard include/config/mda/console.h) \
$(wildcard include/config/vt/hw/console/binding.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mmu.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/linkage.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/tty.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/major.h \
include/linux/termios.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/termios.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/termbits.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctls.h \
include/linux/tty_driver.h \
$(wildcard include/config/console/poll.h) \
include/linux/cdev.h \
include/linux/tty_ldisc.h \
include/linux/tty_flip.h \
include/linux/kd.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \
arch/arm/plat-pnx/include/mach/vmalloc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/console.h \
$(wildcard include/config/vga/console.h) \
include/linux/vt_kern.h \
$(wildcard include/config/console/translations.h) \
include/linux/vt.h \
include/linux/console_struct.h \
include/linux/consolemap.h \
include/linux/selection.h \
include/linux/tiocl.h \
include/linux/vt_buffer.h \
include/linux/kbd_kern.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \
arch/arm/plat-pnx/include/mach/irqs.h \
$(wildcard include/config/arch/pnx67xx.h) \
include/linux/irq_cpustat.h \
include/linux/keyboard.h \
include/linux/bootmem.h \
$(wildcard include/config/crash/dump.h) \
$(wildcard include/config/have/arch/bootmem/node.h) \
$(wildcard include/config/have/arch/alloc/remap.h) \
$(wildcard include/config/x86/64.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/dma.h \
$(wildcard include/config/isa/dma/api.h) \
$(wildcard include/config/pci.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/font.h \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/io.h \
$(wildcard include/config/has/ioport.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/io.h \
arch/arm/plat-pnx/include/mach/io.h \
arch/arm/plat-pnx/include/mach/hardware.h \
$(wildcard include/config/vaddr.h) \
arch/arm/plat-pnx/include/mach/cpu.h \
$(wildcard include/config/arch/pnx67xx/v2.h) \
$(wildcard include/config/arch/pnx6708.h) \
$(wildcard include/config/arch/pnx6711.h) \
$(wildcard include/config/arch/pnx6712.h) \
arch/arm/plat-pnx/include/mach/regs-pnx67xx.h \
$(wildcard include/config/offset.h) \
$(wildcard include/config/reg.h) \
$(wildcard include/config/value.h) \
include/linux/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \
drivers/char/vt.o: $(deps_drivers/char/vt.o)
$(deps_drivers/char/vt.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | drivers/char/.vt.o.cmd | bat | gpl-2.0 | 23,770 |
cmd_sound/soc/davinci/snd-soc-evm.o := arm-arago-linux-gnueabi-ld -EL -r -o sound/soc/davinci/snd-soc-evm.o sound/soc/davinci/davinci-evm.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | sound/soc/davinci/.snd-soc-evm.o.cmd | bat | gpl-2.0 | 144 |
for /l %%x in (1, 1, %1) do (
echo %%x
casperjs op2.js
)
| theapu/OPT | op2.bat | bat | gpl-2.0 | 59 |
cmd_drivers/staging/zram/built-in.o := rm -f drivers/staging/zram/built-in.o; /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-ar rcs drivers/staging/zram/built-in.o
| DrGrip/tiamat-2.6.38-LEO-Dr_Grip | drivers/staging/zram/.built-in.o.cmd | bat | gpl-2.0 | 168 |
@echo off
:: Copyright (C) 2017 Ken Takata
:: License: GPL-2
setlocal
if "%1"=="" (
echo Usage: gen-repoinfo ^<headerfile^>
goto :eof
)
set repoinfo_header=%1
set oldinfo=
if exist %repoinfo_header% (
for /f "delims=" %%i in (%1) do set oldinfo=%%i
) else (
type nul > %repoinfo_header%
)
set newinfo=%oldinfo%
if exist .git (
for /f %%i in ('cmd /c "git describe --tag --exact-match HEAD 2> nul || git rev-parse --short HEAD"') do set newinfo=#define CTAGS_REPOINFO "%%i"
)
if not "%newinfo%"=="%oldinfo%" echo %newinfo%> %repoinfo_header%
| lizh06/ctags | win32/gen-repoinfo.bat | bat | gpl-2.0 | 581 |
cmd_kernel/irq/manage.o := ppc_4xx-gcc -m32 -Wp,-MD,kernel/irq/.manage.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -msoft-float -pipe -Iarch/powerpc -ffixed-r2 -mmultiple -mno-altivec -mno-spe -mspe=no -funit-at-a-time -mno-string -Wa,-m405 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(manage)" -D"KBUILD_MODNAME=KBUILD_STR(manage)" -c -o kernel/irq/.tmp_manage.o kernel/irq/manage.c
deps_kernel/irq/manage.o := \
kernel/irq/manage.c \
$(wildcard include/config/smp.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/debug/shirq.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/lockdep.h) \
include/linux/irq.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/intr/remap.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/numa/irq/desc.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/cpumasks/offstack.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
$(wildcard include/config/debug/preempt.h) \
include/linux/errno.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/types.h \
$(wildcard include/config/phys/64bit.h) \
include/asm-generic/int-ll64.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/posix_types.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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/processor.h \
$(wildcard include/config/vsx.h) \
$(wildcard include/config/ppc32.h) \
$(wildcard include/config/ppc/prep.h) \
$(wildcard include/config/task/size.h) \
$(wildcard include/config/kernel/start.h) \
$(wildcard include/config/ppc64.h) \
$(wildcard include/config/4xx.h) \
$(wildcard include/config/booke.h) \
$(wildcard include/config/altivec.h) \
$(wildcard include/config/spe.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg.h \
$(wildcard include/config/40x.h) \
$(wildcard include/config/fsl/emb/perfmon.h) \
$(wildcard include/config/8xx.h) \
$(wildcard include/config/ppc/book3s/64.h) \
$(wildcard include/config/ppc/book3s/32.h) \
$(wildcard include/config/ppc/book3e/64.h) \
$(wildcard include/config/e200.h) \
$(wildcard include/config/ppc/cell.h) \
include/linux/stringify.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputable.h \
$(wildcard include/config/mpc10x/bridge.h) \
$(wildcard include/config/ppc/83xx.h) \
$(wildcard include/config/8260.h) \
$(wildcard include/config/ppc/mpc52xx.h) \
$(wildcard include/config/bdi/switch.h) \
$(wildcard include/config/power3.h) \
$(wildcard include/config/power4.h) \
$(wildcard include/config/44x.h) \
$(wildcard include/config/e500.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/asm-compat.h \
$(wildcard include/config/power4/only.h) \
$(wildcard include/config/ibm405/err77.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/feature-fixups.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/reg_booke.h \
$(wildcard include/config/403gcx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ptrace.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cache.h \
$(wildcard include/config/ppc/e500mc.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/system.h \
$(wildcard include/config/debugger.h) \
$(wildcard include/config/kexec.h) \
$(wildcard include/config/6xx.h) \
$(wildcard include/config/booke/wdt.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
include/linux/linkage.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/linkage.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bitops.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/synch.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/typecheck.h \
include/linux/dynamic_debug.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/byteorder.h \
include/linux/byteorder/big_endian.h \
include/linux/swab.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/swab.h \
include/linux/byteorder/generic.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irqflags.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hw_irq.h \
$(wildcard include/config/ppc/book3e.h) \
$(wildcard include/config/perf/events.h) \
include/asm-generic/cmpxchg-local.h \
include/linux/cpumask.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/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/string.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.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/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/thread_info.h \
$(wildcard include/config/ppc/256k/pages.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page.h \
$(wildcard include/config/ppc/64k/pages.h) \
$(wildcard include/config/ppc/16k/pages.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/relocatable.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/ppc/std/mmu/64.h) \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/ppc/smlpar.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/kdump.h \
$(wildcard include/config/crash/dump.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/page_32.h \
$(wildcard include/config/physical/align.h) \
$(wildcard include/config/not/coherent/cache.h) \
$(wildcard include/config/pte/64bit.h) \
include/asm-generic/getorder.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/atomic.h \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/current.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/pageblock-flags.h \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/rwsem.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/topology.h \
$(wildcard include/config/pci.h) \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/irqreturn.h \
include/linux/irqnr.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq.h \
$(wildcard include/config/nr/irqs.h) \
$(wildcard include/config/irqstacks.h) \
include/linux/radix-tree.h \
include/linux/rcupdate.h \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
include/linux/completion.h \
include/linux/rcutree.h \
$(wildcard include/config/no/hz.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/irq_regs.h \
include/asm-generic/irq_regs.h \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmemtrace.h \
$(wildcard include/config/kmemtrace.h) \
include/trace/events/kmem.h \
include/linux/tracepoint.h \
$(wildcard include/config/tracepoints.h) \
include/trace/define_trace.h \
$(wildcard include/config/event/tracing.h) \
include/linux/kmalloc_sizes.h \
include/linux/pfn.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
include/linux/kthread.h \
include/linux/err.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/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/stack/growsup.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/capability.h \
include/linux/timex.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/param.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu.h \
$(wildcard include/config/ppc/std/mmu/32.h) \
$(wildcard include/config/ppc/book3e/mmu.h) \
$(wildcard include/config/ppc/8xx.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/mmu-44x.h \
$(wildcard include/config/ppc/early/debug/44x.h) \
$(wildcard include/config/ppc/early/debug/44x/physlow.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ipcbuf.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/sembuf.h \
include/linux/signal.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/seccomp.h \
include/linux/unistd.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/unistd.h \
include/linux/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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/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 \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/stat.h \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/elf.h \
$(wildcard include/config/spu/base.h) \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/local.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/module.h \
$(wildcard include/config/dynamic/ftrace.h) \
include/trace/events/module.h \
include/linux/random.h \
include/linux/ioctl.h \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/interrupt.h \
$(wildcard include/config/pm/sleep.h) \
$(wildcard include/config/generic/irq/probe.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) \
/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/include/asm/hardirq.h \
include/asm-generic/hardirq.h \
include/linux/irq_cpustat.h \
kernel/irq/internals.h \
include/linux/kallsyms.h \
kernel/irq/manage.o: $(deps_kernel/irq/manage.o)
$(deps_kernel/irq/manage.o):
| mattkelly/linux-2.6-xlnx | kernel/irq/.manage.o.cmd | bat | gpl-2.0 | 21,462 |
cmd_security/sony/built-in.o := /home/mpokwsths/android/rom/aosp/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/bin/arm-linux-androideabi-ld -EL -r -o security/sony/built-in.o security/sony/ric.o security/sony/ric_mount.o
| mpokwsths/Z3_kernel | security/sony/.built-in.o.cmd | bat | gpl-2.0 | 234 |
cmd_sound/synth/built-in.o := rm -f sound/synth/built-in.o; arm-arago-linux-gnueabi-ar rcs sound/synth/built-in.o
| calixtolinux/linux-2.6.37-AM18x-OMAPL13x-Calixto-Versa-EVM-V1 | sound/synth/.built-in.o.cmd | bat | gpl-2.0 | 115 |
java -Xmx800M -cp dist/D3D.jar ucl.silver.d3d.core.StartD3D -CubeLength 1.0 -ImmobileVesiclesPercent 20 | SilverLabUCL/D3D_eLife | run2.bat | bat | gpl-3.0 | 103 |
@echo off
set V_PROJECT=fem_draw_winapi
set V_BUILDDIR=build_winapi_msvc2015
@echo on
call "%VS140COMNTOOLS%\vsvars32.bat"
@echo on
cd "%~dp0"
cd ..
rmdir /S /Q %V_BUILDDIR% 2>nul >nul
mkdir %V_BUILDDIR%
cd %V_BUILDDIR%
cl /c /nologo /Ox /EHsc /W3 /MT /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /DNDEBUG /arch:IA32 ..\src_winapi\libs\lodepng.cpp /Fo:lodepng.cpp.obj
@if not exist "lodepng.cpp.obj" goto err
cl /c /nologo /Ox /EHsc /W3 /MT /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /DNDEBUG /arch:IA32 ..\src_winapi\libs\jo_jpeg.cpp /Fo:jo_jpeg.cpp.obj
@if not exist "jo_jpeg.cpp.obj" goto err
cl /c /nologo /Ox /EHsc /W3 /MT /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /DNDEBUG /arch:IA32 ..\src_winapi\libs\jo_gif.cpp /Fo:jo_gif.cpp.obj
@if not exist "jo_gif.cpp.obj" goto err
cl /c /nologo /Ox /EHsc /W3 /MT /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /DNDEBUG /arch:IA32 ..\src_winapi\libs\jo_tga.cpp /Fo:jo_tga.cpp.obj
@if not exist "jo_tga.cpp.obj" goto err
cl /c /nologo /Ox /EHsc /W3 /MT /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /DNDEBUG /arch:IA32 ..\src_winapi\main.cpp /Fo:main.cpp.obj
@if not exist "main.cpp.obj" goto err
cl /c /nologo /Ox /EHsc /W3 /MT /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /DNDEBUG /arch:IA32 ..\src_winapi\paintwidget.cpp /Fo:paintwidget.cpp.obj
@if not exist "paintwidget.cpp.obj" goto err
rc /nologo /DUNICODE /D_UNICODE /DPSAPI_VERSION=1 /fo resources.res ../src_winapi/resources.rc
@if not exist "resources.res" goto err
link /NOLOGO /SUBSYSTEM:WINDOWS,5.01 main.cpp.obj paintwidget.cpp.obj resources.res lodepng.cpp.obj jo_jpeg.cpp.obj jo_gif.cpp.obj jo_tga.cpp.obj gdi32.lib comctl32.lib user32.lib comdlg32.lib shell32.lib /OUT:%V_PROJECT%.exe
@if not exist "%V_PROJECT%.exe" goto err
copy %V_PROJECT%.exe ..\%V_PROJECT%_unicode.exe
@goto end
:err
@echo off
echo.
echo Error!
:end
@echo off
pause
| AlienCowEatCake/fem_draw | buildscripts/winapi_msvc2015.bat | bat | gpl-3.0 | 1,860 |
rem Copy includes
xcopy src\*.h export\all\all\include\ /Y
xcopy src\core\*.h export\all\all\include\ /Y
xcopy src\dialogs\*.h export\all\all\include\ /Y
xcopy src\filterGraph\*.h export\all\all\include\ /Y
xcopy src\filters\*.h export\all\all\include\ /Y
xcopy src\music\*.h export\all\all\include\ /Y
xcopy src\musicUI\*.h export\all\all\include\ /Y
xcopy src\tools\*.h export\all\all\include\ /Y
xcopy src\ui\*.h export\all\all\include\ /Y
xcopy src\vector\*.h export\all\all\include\ /Y
rem Copy Debug libs
xcopy build\Debug\core.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\dialogs.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\filterGraph.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\filters.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\music.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\musicUI.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\tools.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\ui.lib export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\vector.lib export\win32-vs2008\debug\lib\ /Y
rem Copy Debug info
xcopy build\Debug\core.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\dialogs.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\filterGraph.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\filters.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\music.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\musicUI.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\tools.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\ui.pdb export\win32-vs2008\debug\lib\ /Y
xcopy build\Debug\vector.pdb export\win32-vs2008\debug\lib\ /Y
rem Copy Release libs
xcopy build\Release\core.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\dialogs.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\filterGraph.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\filters.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\music.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\musicUI.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\tools.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\ui.lib export\win32-vs2008\release\lib\ /Y
xcopy build\Release\vector.lib export\win32-vs2008\release\lib\ /Y
rem Copy Debug third-party dependencies
xcopy thirdparty\libpng\win32-vs2008\debug\lib\libpng.lib export\win32-vs2008\debug\lib\ /Y
xcopy thirdparty\libjpeg\win32-vs2008\debug\lib\libjpeg.lib export\win32-vs2008\debug\lib\ /Y
xcopy thirdparty\zlib\win32-vs2008\debug\lib\zlib.lib export\win32-vs2008\debug\lib\ /Y
xcopy thirdparty\sqlite3\win32-vs2008\debug\lib\sqlite.lib export\win32-vs2008\debug\lib\ /Y
rem Copy Release third-party dependencies
xcopy thirdparty\libpng\win32-vs2008\release\lib\libpng.lib export\win32-vs2008\release\lib\ /Y
xcopy thirdparty\libjpeg\win32-vs2008\release\lib\libjpeg.lib export\win32-vs2008\release\lib\ /Y
xcopy thirdparty\zlib\win32-vs2008\release\lib\zlib.lib export\win32-vs2008\release\lib\ /Y
xcopy thirdparty\sqlite3\win32-vs2008\release\lib\sqlite.lib export\win32-vs2008\release\lib\ /Y
rem Copy executables
xcopy build\Debug\pki18nlst.exe export\win32-vs2008\debug\bin\ /Y
xcopy build\Debug\pki18nstrip.exe export\win32-vs2008\debug\bin\ /Y
xcopy build\Debug\uiBuilder.exe export\win32-vs2008\debug\bin\ /Y
xcopy build\Release\pki18nlst.exe export\win32-vs2008\release\bin\ /Y
xcopy build\Release\pki18nstrip.exe export\win32-vs2008\release\bin\ /Y
xcopy build\Release\uiBuilder.exe export\win32-vs2008\release\bin\ /Y
rem Use pki18nlst to generate a strings file and export it
call build\Debug\pki18nlst.exe -i i18n\i18nFolderList.txt -o build\projectKetchup_en_US.pot
xcopy build\projectKetchup_en_US.pot export\all\all\i18n\ /Y
if not defined _MASTER_BUILD pause
| roy204/projectKetchup | copy-exports-win32.cmd | bat | gpl-3.0 | 4,229 |
SET machine=tld_test_pal_ntsc
SET speed=2
SET ruta_ucf=pines
SET ruta_bat=..\..\
call %ruta_bat%genxst.bat
rem call %ruta_bat%generar.bat v2_v3 ZZ3
call %ruta_bat%generar.bat v4 ZX1
rem call %ruta_bat%generar.bat Ap ZZA
| antoniovillena/zxuno | cores/test/test_pal_ntsc/make.bat | bat | gpl-3.0 | 220 |
# Pin name action command file
# Start of element Q1
ChangePinName(Q1, 3, D)
ChangePinName(Q1, 2, S)
ChangePinName(Q1, 1, G)
# Start of element C3
ChangePinName(C3, 2, 2)
ChangePinName(C3, 1, 1)
# Start of element VR1
ChangePinName(VR1, 2, 2)
ChangePinName(VR1, 3, 3)
ChangePinName(VR1, 1, 1)
# Start of element R2
ChangePinName(R2, 1, 1)
ChangePinName(R2, 2, 2)
# Start of element C6
ChangePinName(C6, 2, -)
ChangePinName(C6, 1, +)
# Start of element C5
ChangePinName(C5, 2, -)
ChangePinName(C5, 1, +)
# Start of element U2
ChangePinName(U2, 7, Osc)
ChangePinName(U2, 6, LV)
ChangePinName(U2, 3, GND)
ChangePinName(U2, 5, Vout)
ChangePinName(U2, 1, NC)
ChangePinName(U2, 4, CAP-)
ChangePinName(U2, 2, CAP+)
ChangePinName(U2, 8, V+)
# Start of element C4
ChangePinName(C4, 2, 2)
ChangePinName(C4, 1, 1)
# Start of element J1
ChangePinName(J1, 11, 11)
ChangePinName(J1, 12, 12)
ChangePinName(J1, 13, 13)
ChangePinName(J1, 14, 14)
ChangePinName(J1, 15, 15)
ChangePinName(J1, 16, 16)
ChangePinName(J1, 6, 6)
ChangePinName(J1, 7, 7)
ChangePinName(J1, 8, 8)
ChangePinName(J1, 9, 9)
ChangePinName(J1, 10, 10)
ChangePinName(J1, 5, 5)
ChangePinName(J1, 1, 1)
ChangePinName(J1, 4, 4)
ChangePinName(J1, 3, 3)
ChangePinName(J1, 2, 2)
# Start of element R1
ChangePinName(R1, 1, 1)
ChangePinName(R1, 2, 2)
# Start of element C8
ChangePinName(C8, 2, 2)
ChangePinName(C8, 1, 1)
# Start of element J3
ChangePinName(J3, 1, 1)
ChangePinName(J3, 2, 2)
# Start of element R3
ChangePinName(R3, 1, 1)
ChangePinName(R3, 2, 2)
# Start of element C7
ChangePinName(C7, 2, 2)
ChangePinName(C7, 1, 1)
# Start of element J4
ChangePinName(J4, 1, 1)
ChangePinName(J4, 4, 4)
ChangePinName(J4, 3, 3)
ChangePinName(J4, 2, 2)
# Start of element C2
ChangePinName(C2, 2, 2)
ChangePinName(C2, 1, 1)
# Start of element C1
ChangePinName(C1, 2, 2)
ChangePinName(C1, 1, 1)
# Start of element J2
ChangePinName(J2, 6, 6)
ChangePinName(J2, 7, 7)
ChangePinName(J2, 8, 8)
ChangePinName(J2, 9, 9)
ChangePinName(J2, 10, 10)
ChangePinName(J2, 5, 5)
ChangePinName(J2, 1, 1)
ChangePinName(J2, 4, 4)
ChangePinName(J2, 3, 3)
ChangePinName(J2, 2, 2)
# Start of element U1
ChangePinName(U1, 8, P1.6/TA0.1/A6/TDI/TCLK)
ChangePinName(U1, 9, P1.7/A7/TDO/TDI)
ChangePinName(U1, 10, RST/NMI/SBWTDIO)
ChangePinName(U1, 11, TEST/SBWTCK)
ChangePinName(U1, 12, XOUT/P2.7)
ChangePinName(U1, 13, XIN/P2.6/TA0.1)
ChangePinName(U1, 14, DVSS)
ChangePinName(U1, 7, P1.5/TA0.0/A5/SCLK/TMS)
ChangePinName(U1, 6, P1.4/SMCLK/A4/REF+/TCK)
ChangePinName(U1, 5, P1.3/ADC10CLK/A3/REF-)
ChangePinName(U1, 4, P1.2/TA0.1/A2)
ChangePinName(U1, 3, P1.1/TA0.0/A1)
ChangePinName(U1, 2, P1.0/TA0CLK/ACLK/A0)
ChangePinName(U1, 1, DVCC)
| ivanovev/pcb | ue2hdv1/ue2hdv1.cmd | bat | gpl-3.0 | 2,667 |
@setlocal
@set node_name=ebot
@rem Get the absolute path to the parent directory,
@rem which is assumed to be the node root.
@for /F "delims=" %%I in ("%~dp0..") do @set node_root=%%~fI
@set releases_dir=%node_root%\releases
@rem Parse ERTS version and release version from start_erl.data
@for /F "usebackq tokens=1,2" %%I in ("%releases_dir%\start_erl.data") do @(
@call :set_trim erts_version %%I
@call :set_trim release_version %%J
)
@set vm_args=%releases_dir%\%release_version%\vm.args
@set sys_config=%releases_dir%\%release_version%\sys.config
@set node_boot_script=%releases_dir%\%release_version%\%node_name%
@set clean_boot_script=%releases_dir%\%release_version%\start_clean
@rem extract erlang cookie from vm.args
@for /f "usebackq tokens=1-2" %%I in (`findstr /b \-setcookie "%vm_args%"`) do @set erlang_cookie=%%J
@set erts_bin=%node_root%\erts-%erts_version%\bin
@set service_name=%node_name%_%release_version%
@set erlsrv="%erts_bin%\erlsrv.exe"
@set epmd="%erts_bin%\epmd.exe"
@set escript="%erts_bin%\escript.exe"
@set werl="%erts_bin%\werl.exe"
@if "%1"=="usage" @goto usage
@if "%1"=="install" @goto install
@if "%1"=="uninstall" @goto uninstall
@if "%1"=="start" @goto start
@if "%1"=="stop" @goto stop
@if "%1"=="restart" @call :stop && @goto start
@if "%1"=="console" @goto console
@if "%1"=="query" @goto query
@if "%1"=="attach" @goto attach
@if "%1"=="upgrade" @goto upgrade
@echo Unknown command: "%1"
:usage
@echo Usage: %~n0 [install^|uninstall^|start^|stop^|restart^|console^|query^|attach^|upgrade]
@goto :EOF
:install
@set description=Erlang node %node_name% in %node_root%
@set start_erl=%node_root%\bin\start_erl.cmd
@set args= ++ %node_name% ++ %node_root%
@%erlsrv% add %service_name% -c "%description%" -sname %node_name% -w "%node_root%" -m "%start_erl%" -args "%args%" -stopaction "init:stop()."
@goto :EOF
:uninstall
@%erlsrv% remove %service_name%
@%epmd% -kill
@goto :EOF
:start
@%erlsrv% start %service_name%
@goto :EOF
:stop
@%erlsrv% stop %service_name%
@goto :EOF
:console
@start "%node_name% console" %werl% -boot "%node_boot_script%" -config "%sys_config%" -args_file "%vm_args%" -sname %node_name%
@goto :EOF
:query
@%erlsrv% list %service_name%
@exit %ERRORLEVEL%
@goto :EOF
:attach
@for /f "usebackq" %%I in (`hostname`) do @set hostname=%%I
start "%node_name% attach" %werl% -boot "%clean_boot_script%" -remsh %node_name%@%hostname% -sname console -setcookie %erlang_cookie%
@goto :EOF
:upgrade
@if "%2"=="" (
@echo Missing upgrade package argument
@echo Usage: %~n0 upgrade {package base name}
@echo NOTE {package base name} MUST NOT include the .tar.gz suffix
@goto :EOF
)
@%escript% %node_root%\bin\install_upgrade.escript %node_name% %erlang_cookie% %2
@goto :EOF
:set_trim
@set %1=%2
@goto :EOF
| artefactop/ebot | rel/files/ebot.cmd | bat | apache-2.0 | 2,796 |
@echo off
setlocal
@echo off
set VERBOSE=1
if /I "%1"=="-quiet" set VERBOSE=0
if /I "%1"=="-q" set VERBOSE=0
REM # Get the location of quickbuild.bat and drop trailing slash
set PWIZ_ROOT=%~dp0
set PWIZ_ROOT=%PWIZ_ROOT:~0,-1%
pushd %PWIZ_ROOT%
if %VERBOSE%==1 echo Cleaning build directories...
IF EXIST build-nt-x86 rmdir /s /q build-nt-x86
IF EXIST build-nt-x86_64 rmdir /s /q build-nt-x86_64
if %VERBOSE%==1 echo Cleaning libraries...
IF EXIST libraries\boost-build\engine\bin.ntx86 rmdir /s /q libraries\boost-build\engine\bin.ntx86
IF EXIST libraries\boost-build\engine\bootstrap rmdir /s /q libraries\boost-build\engine\bootstrap
IF EXIST libraries\boost_1_43_0 rmdir /s /q libraries\boost_1_43_0
IF EXIST libraries\gd-2.0.33 rmdir /s /q libraries\gd-2.0.33
IF EXIST libraries\zlib-1.2.3 rmdir /s /q libraries\zlib-1.2.3
IF EXIST libraries\libgd-2.1.0alpha rmdir /s /q libraries\libgd-2.1.0alpha
IF EXIST libraries\libpng-1.5.6 rmdir /s /q libraries\libpng-1.5.6
IF EXIST libraries\freetype-2.4.7 rmdir /s /q libraries\freetype-2.4.7
IF EXIST libraries\hdf5-1.8.7 rmdir /s /q libraries\hdf5-1.8.7
IF EXIST libraries\fftw-3.1.2 rmdir /s /q libraries\fftw-3.1.2
IF EXIST libraries\expat-2.0.1 rmdir /s /q libraries\expat-2.0.1
del /f /q libraries\libfftw3-3.d* > nul 2>&1
del /f /q pwiz\Version.cpp > nul 2>&1
del /f /q pwiz\data\msdata\Version.cpp > nul 2>&1
del /f /q pwiz\data\identdata\Version.cpp > nul 2>&1
del /f /q pwiz\data\tradata\Version.cpp > nul 2>&1
del /f /q pwiz\data\proteome\Version.cpp > nul 2>&1
del /f /q pwiz\analysis\Version.cpp > nul 2>&1
if %VERBOSE%==1 echo Cleaning vendor dlls...
del /f /q pwiz_aux\msrc\utility\vendor_api\ABI\*.dll > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\ABI\LicenseKey.h > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\ABI\install_pwiz_vendor_api_abi > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\ABI\vc9 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\ABI\vc10 > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Agilent\*.dll > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Agilent\vc9_x86 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Agilent\vc10_x86 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Agilent\vc10_x64 > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Agilent\EULA.* > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Agilent\Documents > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Bruker\*.dll > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Bruker\*.manifest > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Bruker\*.xml > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Bruker\install_pwiz_vendor_api_bruker_stub > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Thermo\*.dll > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Thermo\*.manifest > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Thermo\x86 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Thermo\x64 > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Thermo\EULA.* > nul 2>&1
del /f /q /s pwiz_aux\msrc\utility\vendor_api\Waters\*.dll > nul 2>&1
del /f /q /s pwiz_aux\msrc\utility\vendor_api\Waters\*.lib > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc9_scl-0 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc9_scl-1 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc10_scl-0 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc9_x86_scl-0 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc9_x86_scl-1 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc10_x86_scl-0 > nul 2>&1
rmdir /s /q pwiz_aux\msrc\utility\vendor_api\Waters\vc10_x64_scl-0 > nul 2>&1
del /f /q pwiz_aux\msrc\utility\vendor_api\Waters\*.h > nul 2>&1
if %VERBOSE%==1 echo Cleaning vendor test data...
rmdir /s /q pwiz\data\vendor_readers\Thermo\Reader_Thermo_Test.data > nul 2>&1
rmdir /s /q pwiz\data\vendor_readers\Agilent\Reader_Agilent_Test.data > nul 2>&1
rmdir /s /q pwiz\data\vendor_readers\ABI\Reader_ABI_Test.data > nul 2>&1
rmdir /s /q pwiz\data\vendor_readers\ABI\T2D\Reader_ABI_T2D_Test.data > nul 2>&1
rmdir /s /q pwiz\data\vendor_readers\Waters\Reader_Waters_Test.data > nul 2>&1
rmdir /s /q pwiz\data\vendor_readers\Bruker\Reader_Bruker_Test.data > nul 2>&1
IF EXIST pwiz_tools\clean-apps.bat call pwiz_tools\clean-apps.bat
popd
| romanzenka/myrimatch | freicore/pwiz_src/clean.bat | bat | apache-2.0 | 4,467 |
@ECHO off
adb shell twrp restore backup | kobotoolbox/android-deploy | scripts/03_restore_new.bat | bat | apache-2.0 | 39 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ONESTORE.S01_TransmissionByFSSHTTP.MSONESTORE_S01_TC05_TestObjectSpaceObjectPropSet /testcontainer:..\..\MS-ONESTORE\TestSuite\bin\Debug\MS-ONESTORE_TestSuite.dll /runconfig:..\..\MS-ONESTORE\MS-ONESTORE.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | FileSyncandWOPI/Source/Scripts/MS-ONESTORE/RunMSONESTORE_S01_TC05.cmd | bat | mit | 324 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCFXICS.S06_SyncICSContentsDeletion_TestSuite.MSOXCFXICS_S06_SyncICSContentsDeletion_TestSuite /testcontainer:..\..\MS-OXCFXICS\TestSuite\bin\Debug\MS-OXCFXICS_TestSuite.dll /runconfig:..\..\MS-OXCFXICS\MS-OXCFXICS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeMAPI/Source/Scripts/MS-OXCFXICS/RunMSOXCFXICS_S06_SyncICSContentsDeletion_TestSuite.cmd | bat | mit | 336 |
@ECHO off
echo Press Ctrl+Z on a blank line to exit
more>%1 | Recdeclec-Public/batchgames | The Hallows/chapters/1/Program Files/edit.bat | bat | mit | 61 |
gcc %1 -o nicklist.dll -Zmt -Zcrtdll -Zdll -D__ST_MT_ERRNO__ -I../../include nicklist.c nicklist.def
| ipwndev/DSLinux-Mirror | user/bitchx/dll/nicklist/Make.cmd | bat | gpl-2.0 | 101 |
cmd_net/bluetooth/hidp/built-in.o := arm-linux-gnueabi-ld -EL -r -o net/bluetooth/hidp/built-in.o net/bluetooth/hidp/hidp.o
| b8e5n/KTG-kernel_es209ra | net/bluetooth/hidp/.built-in.o.cmd | bat | gpl-2.0 | 129 |
cmd_fs/devpts/built-in.o := /home/gjdlfg/kernel/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o fs/devpts/built-in.o fs/devpts/devpts.o
| jdlfg/Mecha-kernel-jdlfg | fs/devpts/.built-in.o.cmd | bat | gpl-2.0 | 163 |
runFlashGUI.cmd it
| hernol/ConuWar | Game/test/test_lang/runFlashGUI_it.cmd | bat | gpl-3.0 | 20 |
@rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
IF EXIST "%~dp0perl.exe" (
"%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" (
"%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
) ELSE (
IF EXIST "%~dp0perl.exe" (
"%~dp0perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" (
"%~dp0..\..\bin\perl.exe" -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
) ELSE (
perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
)
)
goto endofperl
:WinNT
IF EXIST "%~dp0perl.exe" (
"%~dp0perl.exe" -x -S %0 %*
) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" (
"%~dp0..\..\bin\perl.exe" -x -S %0 %*
) ELSE (
IF EXIST "%~dp0perl.exe" (
"%~dp0perl.exe" -x -S %0 %*
) ELSE IF EXIST "%~dp0..\..\bin\perl.exe" (
"%~dp0..\..\bin\perl.exe" -x -S %0 %*
) ELSE (
perl -x -S %0 %*
)
)
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
goto endofperl
@rem ';
#!perl
#line 43
eval 'exec \xampp\perl\bin\perl.exe -S $0 ${1+"$@"}'
if $running_under_some_shell;
#
#
# c2ph (aka pstruct)
# Tom Christiansen, <[email protected]>
#
# As pstruct, dump C structures as generated from 'cc -g -S' stabs.
# As c2ph, do this PLUS generate perl code for getting at the structures.
#
# See the usage message for more. If this isn't enough, read the code.
#
=head1 NAME
c2ph, pstruct - Dump C structures as generated from C<cc -g -S> stabs
=head1 SYNOPSIS
c2ph [-dpnP] [var=val] [files ...]
=head2 OPTIONS
Options:
-w wide; short for: type_width=45 member_width=35 offset_width=8
-x hex; short for: offset_fmt=x offset_width=08 size_fmt=x size_width=04
-n do not generate perl code (default when invoked as pstruct)
-p generate perl code (default when invoked as c2ph)
-v generate perl code, with C decls as comments
-i do NOT recompute sizes for intrinsic datatypes
-a dump information on intrinsics also
-t trace execution
-d spew reams of debugging output
-slist give comma-separated list a structures to dump
=head1 DESCRIPTION
The following is the old c2ph.doc documentation by Tom Christiansen
<[email protected]>
Date: 25 Jul 91 08:10:21 GMT
Once upon a time, I wrote a program called pstruct. It was a perl
program that tried to parse out C structures and display their member
offsets for you. This was especially useful for people looking at
binary dumps or poking around the kernel.
Pstruct was not a pretty program. Neither was it particularly robust.
The problem, you see, was that the C compiler was much better at parsing
C than I could ever hope to be.
So I got smart: I decided to be lazy and let the C compiler parse the C,
which would spit out debugger stabs for me to read. These were much
easier to parse. It's still not a pretty program, but at least it's more
robust.
Pstruct takes any .c or .h files, or preferably .s ones, since that's
the format it is going to massage them into anyway, and spits out
listings like this:
struct tty {
int tty.t_locker 000 4
int tty.t_mutex_index 004 4
struct tty * tty.t_tp_virt 008 4
struct clist tty.t_rawq 00c 20
int tty.t_rawq.c_cc 00c 4
int tty.t_rawq.c_cmax 010 4
int tty.t_rawq.c_cfx 014 4
int tty.t_rawq.c_clx 018 4
struct tty * tty.t_rawq.c_tp_cpu 01c 4
struct tty * tty.t_rawq.c_tp_iop 020 4
unsigned char * tty.t_rawq.c_buf_cpu 024 4
unsigned char * tty.t_rawq.c_buf_iop 028 4
struct clist tty.t_canq 02c 20
int tty.t_canq.c_cc 02c 4
int tty.t_canq.c_cmax 030 4
int tty.t_canq.c_cfx 034 4
int tty.t_canq.c_clx 038 4
struct tty * tty.t_canq.c_tp_cpu 03c 4
struct tty * tty.t_canq.c_tp_iop 040 4
unsigned char * tty.t_canq.c_buf_cpu 044 4
unsigned char * tty.t_canq.c_buf_iop 048 4
struct clist tty.t_outq 04c 20
int tty.t_outq.c_cc 04c 4
int tty.t_outq.c_cmax 050 4
int tty.t_outq.c_cfx 054 4
int tty.t_outq.c_clx 058 4
struct tty * tty.t_outq.c_tp_cpu 05c 4
struct tty * tty.t_outq.c_tp_iop 060 4
unsigned char * tty.t_outq.c_buf_cpu 064 4
unsigned char * tty.t_outq.c_buf_iop 068 4
(*int)() tty.t_oproc_cpu 06c 4
(*int)() tty.t_oproc_iop 070 4
(*int)() tty.t_stopproc_cpu 074 4
(*int)() tty.t_stopproc_iop 078 4
struct thread * tty.t_rsel 07c 4
etc.
Actually, this was generated by a particular set of options. You can control
the formatting of each column, whether you prefer wide or fat, hex or decimal,
leading zeroes or whatever.
All you need to be able to use this is a C compiler than generates
BSD/GCC-style stabs. The B<-g> option on native BSD compilers and GCC
should get this for you.
To learn more, just type a bogus option, like B<-\?>, and a long usage message
will be provided. There are a fair number of possibilities.
If you're only a C programmer, than this is the end of the message for you.
You can quit right now, and if you care to, save off the source and run it
when you feel like it. Or not.
But if you're a perl programmer, then for you I have something much more
wondrous than just a structure offset printer.
You see, if you call pstruct by its other incybernation, c2ph, you have a code
generator that translates C code into perl code! Well, structure and union
declarations at least, but that's quite a bit.
Prior to this point, anyone programming in perl who wanted to interact
with C programs, like the kernel, was forced to guess the layouts of
the C structures, and then hardwire these into his program. Of course,
when you took your wonderfully crafted program to a system where the
sgtty structure was laid out differently, your program broke. Which is
a shame.
We've had Larry's h2ph translator, which helped, but that only works on
cpp symbols, not real C, which was also very much needed. What I offer
you is a symbolic way of getting at all the C structures. I've couched
them in terms of packages and functions. Consider the following program:
#!/usr/local/bin/perl
require 'syscall.ph';
require 'sys/time.ph';
require 'sys/resource.ph';
$ru = "\0" x &rusage'sizeof();
syscall(&SYS_getrusage, &RUSAGE_SELF, $ru) && die "getrusage: $!";
@ru = unpack($t = &rusage'typedef(), $ru);
$utime = $ru[ &rusage'ru_utime + &timeval'tv_sec ]
+ ($ru[ &rusage'ru_utime + &timeval'tv_usec ]) / 1e6;
$stime = $ru[ &rusage'ru_stime + &timeval'tv_sec ]
+ ($ru[ &rusage'ru_stime + &timeval'tv_usec ]) / 1e6;
printf "you have used %8.3fs+%8.3fu seconds.\n", $utime, $stime;
As you see, the name of the package is the name of the structure. Regular
fields are just their own names. Plus the following accessor functions are
provided for your convenience:
struct This takes no arguments, and is merely the number of first-level
elements in the structure. You would use this for indexing
into arrays of structures, perhaps like this
$usec = $u[ &user'u_utimer
+ (&ITIMER_VIRTUAL * &itimerval'struct)
+ &itimerval'it_value
+ &timeval'tv_usec
];
sizeof Returns the bytes in the structure, or the member if
you pass it an argument, such as
&rusage'sizeof(&rusage'ru_utime)
typedef This is the perl format definition for passing to pack and
unpack. If you ask for the typedef of a nothing, you get
the whole structure, otherwise you get that of the member
you ask for. Padding is taken care of, as is the magic to
guarantee that a union is unpacked into all its aliases.
Bitfields are not quite yet supported however.
offsetof This function is the byte offset into the array of that
member. You may wish to use this for indexing directly
into the packed structure with vec() if you're too lazy
to unpack it.
typeof Not to be confused with the typedef accessor function, this
one returns the C type of that field. This would allow
you to print out a nice structured pretty print of some
structure without knoning anything about it beforehand.
No args to this one is a noop. Someday I'll post such
a thing to dump out your u structure for you.
The way I see this being used is like basically this:
% h2ph <some_include_file.h > /usr/lib/perl/tmp.ph
% c2ph some_include_file.h >> /usr/lib/perl/tmp.ph
% install
It's a little tricker with c2ph because you have to get the includes right.
I can't know this for your system, but it's not usually too terribly difficult.
The code isn't pretty as I mentioned -- I never thought it would be a 1000-
line program when I started, or I might not have begun. :-) But I would have
been less cavalier in how the parts of the program communicated with each
other, etc. It might also have helped if I didn't have to divine the makeup
of the stabs on the fly, and then account for micro differences between my
compiler and gcc.
Anyway, here it is. Should run on perl v4 or greater. Maybe less.
--tom
=cut
$RCSID = '$Id: c2ph,v 1.7 95/10/28 10:41:47 tchrist Exp Locker: tchrist $';
use File::Temp;
######################################################################
# some handy data definitions. many of these can be reset later.
$bitorder = 'b'; # ascending; set to B for descending bit fields
%intrinsics =
%template = (
'char', 'c',
'unsigned char', 'C',
'short', 's',
'short int', 's',
'unsigned short', 'S',
'unsigned short int', 'S',
'short unsigned int', 'S',
'int', 'i',
'unsigned int', 'I',
'long', 'l',
'long int', 'l',
'unsigned long', 'L',
'unsigned long', 'L',
'long unsigned int', 'L',
'unsigned long int', 'L',
'long long', 'q',
'long long int', 'q',
'unsigned long long', 'Q',
'unsigned long long int', 'Q',
'float', 'f',
'double', 'd',
'pointer', 'p',
'null', 'x',
'neganull', 'X',
'bit', $bitorder,
);
&buildscrunchlist;
delete $intrinsics{'neganull'};
delete $intrinsics{'bit'};
delete $intrinsics{'null'};
# use -s to recompute sizes
%sizeof = (
'char', '1',
'unsigned char', '1',
'short', '2',
'short int', '2',
'unsigned short', '2',
'unsigned short int', '2',
'short unsigned int', '2',
'int', '4',
'unsigned int', '4',
'long', '4',
'long int', '4',
'unsigned long', '4',
'unsigned long int', '4',
'long unsigned int', '4',
'long long', '8',
'long long int', '8',
'unsigned long long', '8',
'unsigned long long int', '8',
'float', '4',
'double', '8',
'pointer', '4',
);
($type_width, $member_width, $offset_width, $size_width) = (20, 20, 6, 5);
($offset_fmt, $size_fmt) = ('d', 'd');
$indent = 2;
$CC = 'cc';
$CFLAGS = '-gstabs -S';
$DEFINES = '';
$perl++ if $0 =~ m#/?c2ph$#;
use Getopt::Std qw(getopts);
use File::Temp 'tempdir';
eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_]+=)(.*)/ && shift;
getopts('aixdpvtnws:') || &usage(0);
$opt_d && $debug++;
$opt_t && $trace++;
$opt_p && $perl++;
$opt_v && $verbose++;
$opt_n && ($perl = 0);
if ($opt_w) {
($type_width, $member_width, $offset_width) = (45, 35, 8);
}
if ($opt_x) {
($offset_fmt, $offset_width, $size_fmt, $size_width) = ( 'x', '08', 'x', 04 );
}
eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_]+=)(.*)/ && shift;
sub PLUMBER {
select(STDERR);
print "oops, apparent pager foulup\n";
$isatty++;
&usage(1);
}
sub usage {
local($oops) = @_;
unless (-t STDOUT) {
select(STDERR);
} elsif (!$oops) {
$isatty++;
$| = 1;
print "hit <RETURN> for further explanation: ";
<STDIN>;
open (PIPE, "|". ($ENV{PAGER} || 'more'));
$SIG{PIPE} = PLUMBER;
select(PIPE);
}
print "usage: $0 [-dpnP] [var=val] [files ...]\n";
exit unless $isatty;
print <<EOF;
Options:
-w wide; short for: type_width=45 member_width=35 offset_width=8
-x hex; short for: offset_fmt=x offset_width=08 size_fmt=x size_width=04
-n do not generate perl code (default when invoked as pstruct)
-p generate perl code (default when invoked as c2ph)
-v generate perl code, with C decls as comments
-i do NOT recompute sizes for intrinsic datatypes
-a dump information on intrinsics also
-t trace execution
-d spew reams of debugging output
-slist give comma-separated list a structures to dump
Var Name Default Value Meaning
EOF
&defvar('CC', 'which_compiler to call');
&defvar('CFLAGS', 'how to generate *.s files with stabs');
&defvar('DEFINES','any extra cflags or cpp defines, like -I, -D, -U');
print "\n";
&defvar('type_width', 'width of type field (column 1)');
&defvar('member_width', 'width of member field (column 2)');
&defvar('offset_width', 'width of offset field (column 3)');
&defvar('size_width', 'width of size field (column 4)');
print "\n";
&defvar('offset_fmt', 'sprintf format type for offset');
&defvar('size_fmt', 'sprintf format type for size');
print "\n";
&defvar('indent', 'how far to indent each nesting level');
print <<'EOF';
If any *.[ch] files are given, these will be catted together into
a temporary *.c file and sent through:
$CC $CFLAGS $DEFINES
and the resulting *.s groped for stab information. If no files are
supplied, then stdin is read directly with the assumption that it
contains stab information. All other lines will be ignored. At
most one *.s file should be supplied.
EOF
close PIPE;
exit 1;
}
sub defvar {
local($var, $msg) = @_;
printf "%-16s%-15s %s\n", $var, eval "\$$var", $msg;
}
sub safedir {
$SAFEDIR = File::Temp::tempdir("c2ph.XXXXXX", TMPDIR => 1, CLEANUP => 1)
unless (defined($SAFEDIR));
}
undef $SAFEDIR;
$recurse = 1;
if (@ARGV) {
if (grep(!/\.[csh]$/,@ARGV)) {
warn "Only *.[csh] files expected!\n";
&usage;
}
elsif (grep(/\.s$/,@ARGV)) {
if (@ARGV > 1) {
warn "Only one *.s file allowed!\n";
&usage;
}
}
elsif (@ARGV == 1 && $ARGV[0] =~ /\.c$/) {
local($dir, $file) = $ARGV[0] =~ m#(.*/)?(.*)$#;
$chdir = "cd $dir && " if $dir;
&system("$chdir$CC $CFLAGS $DEFINES $file") && exit 1;
$ARGV[0] =~ s/\.c$/.s/;
}
else {
&safedir;
$TMP = "$SAFEDIR/c2ph.$$.c";
&system("cat @ARGV > $TMP") && exit 1;
&system("cd $SAFEDIR && $CC $CFLAGS $DEFINES $TMP") && exit 1;
unlink $TMP;
$TMP =~ s/\.c$/.s/;
@ARGV = ($TMP);
}
}
if ($opt_s) {
for (split(/[\s,]+/, $opt_s)) {
$interested{$_}++;
}
}
$| = 1 if $debug;
main: {
if ($trace) {
if (-t && !@ARGV) {
print STDERR "reading from your keyboard: ";
} else {
print STDERR "reading from " . (@ARGV ? "@ARGV" : "<STDIN>").": ";
}
}
STAB: while (<>) {
if ($trace && !($. % 10)) {
$lineno = $..'';
print STDERR $lineno, "\b" x length($lineno);
}
next unless /^\s*\.stabs\s+/;
$line = $_;
s/^\s*\.stabs\s+//;
if (s/\\\\"[d,]+$//) {
$saveline .= $line;
$savebar = $_;
next STAB;
}
if ($saveline) {
s/^"//;
$_ = $savebar . $_;
$line = $saveline;
}
&stab;
$savebar = $saveline = undef;
}
print STDERR "$.\n" if $trace;
unlink $TMP if $TMP;
&compute_intrinsics if $perl && !$opt_i;
print STDERR "resolving types\n" if $trace;
&resolve_types;
&adjust_start_addrs;
$sum = 2 + $type_width + $member_width;
$pmask1 = "%-${type_width}s %-${member_width}s";
$pmask2 = "%-${sum}s %${offset_width}${offset_fmt}%s %${size_width}${size_fmt}%s";
if ($perl) {
# resolve template -- should be in stab define order, but even this isn't enough.
print STDERR "\nbuilding type templates: " if $trace;
for $i (reverse 0..$#type) {
next unless defined($name = $type[$i]);
next unless defined $struct{$name};
($iname = $name) =~ s/\..*//;
$build_recursed = 0;
&build_template($name) unless defined $template{&psou($name)} ||
$opt_s && !$interested{$iname};
}
print STDERR "\n\n" if $trace;
}
print STDERR "dumping structs: " if $trace;
local($iam);
foreach $name (sort keys %struct) {
($iname = $name) =~ s/\..*//;
next if $opt_s && !$interested{$iname};
print STDERR "$name " if $trace;
undef @sizeof;
undef @typedef;
undef @offsetof;
undef @indices;
undef @typeof;
undef @fieldnames;
$mname = &munge($name);
$fname = &psou($name);
print "# " if $perl && $verbose;
$pcode = '';
print "$fname {\n" if !$perl || $verbose;
$template{$fname} = &scrunch($template{$fname}) if $perl;
&pstruct($name,$name,0);
print "# " if $perl && $verbose;
print "}\n" if !$perl || $verbose;
print "\n" if $perl && $verbose;
if ($perl) {
print "$pcode";
printf("\nsub %-32s { %4d; }\n\n", "${mname}'struct", $countof{$name});
print <<EOF;
sub ${mname}'typedef {
local(\$${mname}'index) = shift;
defined \$${mname}'index
? \$${mname}'typedef[\$${mname}'index]
: \$${mname}'typedef;
}
EOF
print <<EOF;
sub ${mname}'sizeof {
local(\$${mname}'index) = shift;
defined \$${mname}'index
? \$${mname}'sizeof[\$${mname}'index]
: \$${mname}'sizeof;
}
EOF
print <<EOF;
sub ${mname}'offsetof {
local(\$${mname}'index) = shift;
defined \$${mname}index
? \$${mname}'offsetof[\$${mname}'index]
: \$${mname}'sizeof;
}
EOF
print <<EOF;
sub ${mname}'typeof {
local(\$${mname}'index) = shift;
defined \$${mname}index
? \$${mname}'typeof[\$${mname}'index]
: '$name';
}
EOF
print <<EOF;
sub ${mname}'fieldnames {
\@${mname}'fieldnames;
}
EOF
$iam = ($isastruct{$name} && 's') || ($isaunion{$name} && 'u');
print <<EOF;
sub ${mname}'isastruct {
'$iam';
}
EOF
print "\$${mname}'typedef = '" . &scrunch($template{$fname})
. "';\n";
print "\$${mname}'sizeof = $sizeof{$name};\n\n";
print "\@${mname}'indices = (", &squishseq(@indices), ");\n";
print "\n";
print "\@${mname}'typedef[\@${mname}'indices] = (",
join("\n\t", '', @typedef), "\n );\n\n";
print "\@${mname}'sizeof[\@${mname}'indices] = (",
join("\n\t", '', @sizeof), "\n );\n\n";
print "\@${mname}'offsetof[\@${mname}'indices] = (",
join("\n\t", '', @offsetof), "\n );\n\n";
print "\@${mname}'typeof[\@${mname}'indices] = (",
join("\n\t", '', @typeof), "\n );\n\n";
print "\@${mname}'fieldnames[\@${mname}'indices] = (",
join("\n\t", '', @fieldnames), "\n );\n\n";
$template_printed{$fname}++;
$size_printed{$fname}++;
}
print "\n";
}
print STDERR "\n" if $trace;
unless ($perl && $opt_a) {
print "\n1;\n" if $perl;
exit;
}
foreach $name (sort bysizevalue keys %intrinsics) {
next if $size_printed{$name};
print '$',&munge($name),"'sizeof = ", $sizeof{$name}, ";\n";
}
print "\n";
sub bysizevalue { $sizeof{$a} <=> $sizeof{$b}; }
foreach $name (sort keys %intrinsics) {
print '$',&munge($name),"'typedef = '", $template{$name}, "';\n";
}
print "\n1;\n" if $perl;
exit;
}
########################################################################################
sub stab {
next unless $continued || /:[\$\w]+(\(\d+,\d+\))?=[\*\$\w]+/; # (\d+,\d+) is for sun
s/"// || next;
s/",([x\d]+),([x\d]+),([x\d]+),.*// || next;
next if /^\s*$/;
$size = $3 if $3;
$_ = $continued . $_ if length($continued);
if (s/\\\\$//) {
# if last 2 chars of string are '\\' then stab is continued
# in next stab entry
chop;
$continued = $_;
next;
}
$continued = '';
$line = $_;
if (($name, $pdecl) = /^([\$ \w]+):[tT]((\d+)(=[rufs*](\d+))+)$/) {
print "$name is a typedef for some funky pointers: $pdecl\n" if $debug;
&pdecl($pdecl);
next;
}
if (/(([ \w]+):t(\d+|\(\d+,\d+\)))=r?(\d+|\(\d+,\d+\))(;\d+;\d+;)?/) {
local($ident) = $2;
push(@intrinsics, $ident);
$typeno = &typeno($3);
$type[$typeno] = $ident;
print STDERR "intrinsic $ident in new type $typeno\n" if $debug;
next;
}
if (($name, $typeordef, $typeno, $extra, $struct, $_)
= /^([\$ \w]+):([ustT])(\d+|\(\d+,\d+\))(=[rufs*](\d+))?(.*)$/)
{
$typeno = &typeno($typeno); # sun foolery
}
elsif (/^[\$\w]+:/) {
next; # variable
}
else {
warn "can't grok stab: <$_> in: $line " if $_;
next;
}
#warn "got size $size for $name\n";
$sizeof{$name} = $size if $size;
s/;[-\d]*;[-\d]*;$//; # we don't care about ranges
$typenos{$name} = $typeno;
unless (defined $type[$typeno]) {
&panic("type 0??") unless $typeno;
$type[$typeno] = $name unless defined $type[$typeno];
printf "new type $typeno is $name" if $debug;
if ($extra =~ /\*/ && defined $type[$struct]) {
print ", a typedef for a pointer to " , $type[$struct] if $debug;
}
} else {
printf "%s is type %d", $name, $typeno if $debug;
print ", a typedef for " , $type[$typeno] if $debug;
}
print "\n" if $debug;
#next unless $extra =~ /[su*]/;
#$type[$struct] = $name;
if ($extra =~ /[us*]/) {
&sou($name, $extra);
$_ = &sdecl($name, $_, 0);
}
elsif (/^=ar/) {
print "it's a bare array typedef -- that's pretty sick\n" if $debug;
$_ = "$typeno$_";
$scripts = '';
$_ = &adecl($_,1);
}
elsif (s/((\w+):t(\d+|\(\d+,\d+\)))?=r?(;\d+;\d+;)?//) { # the ?'s are for gcc
push(@intrinsics, $2);
$typeno = &typeno($3);
$type[$typeno] = $2;
print STDERR "intrinsic $2 in new type $typeno\n" if $debug;
}
elsif (s/^=e//) { # blessed be thy compiler; mine won't do this
&edecl;
}
else {
warn "Funny remainder for $name on line $_ left in $line " if $_;
}
}
sub typeno { # sun thinks types are (0,27) instead of just 27
local($_) = @_;
s/\(\d+,(\d+)\)/$1/;
$_;
}
sub pstruct {
local($what,$prefix,$base) = @_;
local($field, $fieldname, $typeno, $count, $offset, $entry);
local($fieldtype);
local($type, $tname);
local($mytype, $mycount, $entry2);
local($struct_count) = 0;
local($pad, $revpad, $length, $prepad, $lastoffset, $lastlength, $fmt);
local($bits,$bytes);
local($template);
local($mname) = &munge($name);
sub munge {
local($_) = @_;
s/[\s\$\.]/_/g;
$_;
}
local($sname) = &psou($what);
$nesting++;
for $field (split(/;/, $struct{$what})) {
$pad = $prepad = 0;
$entry = '';
($fieldname, $typeno, $count, $offset, $length) = split(/,/, $field);
$type = $type[$typeno];
$type =~ /([^[]*)(\[.*\])?/;
$mytype = $1;
$count .= $2;
$fieldtype = &psou($mytype);
local($fname) = &psou($name);
if ($build_templates) {
$pad = ($offset - ($lastoffset + $lastlength))/8
if defined $lastoffset;
if (! $finished_template{$sname}) {
if ($isaunion{$what}) {
$template{$sname} .= 'X' x $revpad . ' ' if $revpad;
} else {
$template{$sname} .= 'x' x $pad . ' ' if $pad;
}
}
$template = &fetch_template($type);
&repeat_template($template,$count);
if (! $finished_template{$sname}) {
$template{$sname} .= $template;
}
$revpad = $length/8 if $isaunion{$what};
($lastoffset, $lastlength) = ($offset, $length);
} else {
print '# ' if $perl && $verbose;
$entry = sprintf($pmask1,
' ' x ($nesting * $indent) . $fieldtype,
"$prefix.$fieldname" . $count);
$entry =~ s/(\*+)( )/$2$1/;
printf $pmask2,
$entry,
($base+$offset)/8,
($bits = ($base+$offset)%8) ? ".$bits" : " ",
$length/8,
($bits = $length % 8) ? ".$bits": ""
if !$perl || $verbose;
if ($perl) {
$template = &fetch_template($type);
&repeat_template($template,$count);
}
if ($perl && $nesting == 1) {
push(@sizeof, int($length/8) .",\t# $fieldname");
push(@offsetof, int($offset/8) .",\t# $fieldname");
local($little) = &scrunch($template);
push(@typedef, "'$little', \t# $fieldname");
$type =~ s/(struct|union) //;
push(@typeof, "'$mytype" . ($count ? $count : '') .
"',\t# $fieldname");
push(@fieldnames, "'$fieldname',");
}
print ' ', ' ' x $indent x $nesting, $template
if $perl && $verbose;
print "\n" if !$perl || $verbose;
}
if ($perl) {
local($mycount) = defined $struct{$mytype} ? $countof{$mytype} : 1;
$mycount *= &scripts2count($count) if $count;
if ($nesting==1 && !$build_templates) {
$pcode .= sprintf("sub %-32s { %4d; }\n",
"${mname}'${fieldname}", $struct_count);
push(@indices, $struct_count);
}
$struct_count += $mycount;
}
&pstruct($type, "$prefix.$fieldname", $base+$offset)
if $recurse && defined $struct{$type};
}
$countof{$what} = $struct_count unless defined $countof{$whati};
$template{$sname} .= '$' if $build_templates;
$finished_template{$sname}++;
if ($build_templates && !defined $sizeof{$name}) {
local($fmt) = &scrunch($template{$sname});
print STDERR "no size for $name, punting with $fmt..." if $debug;
eval '$sizeof{$name} = length(pack($fmt, ()))';
if ($@) {
chop $@;
warn "couldn't get size for \$name: $@";
} else {
print STDERR $sizeof{$name}, "\n" if $debUg;
}
}
--$nesting;
}
sub psize {
local($me) = @_;
local($amstruct) = $struct{$me} ? 'struct ' : '';
print '$sizeof{\'', $amstruct, $me, '\'} = ';
printf "%d;\n", $sizeof{$me};
}
sub pdecl {
local($pdecl) = @_;
local(@pdecls);
local($tname);
warn "pdecl: $pdecl\n" if $debug;
$pdecl =~ s/\(\d+,(\d+)\)/$1/g;
$pdecl =~ s/\*//g;
@pdecls = split(/=/, $pdecl);
$typeno = $pdecls[0];
$tname = pop @pdecls;
if ($tname =~ s/^f//) { $tname = "$tname&"; }
#else { $tname = "$tname*"; }
for (reverse @pdecls) {
$tname .= s/^f// ? "&" : "*";
#$tname =~ s/^f(.*)/$1&/;
print "type[$_] is $tname\n" if $debug;
$type[$_] = $tname unless defined $type[$_];
}
}
sub adecl {
($arraytype, $unknown, $lower, $upper) = ();
#local($typeno);
# global $typeno, @type
local($_, $typedef) = @_;
while (s/^((\d+|\(\d+,\d+\))=)?ar(\d+|\(\d+,\d+\));//) {
($arraytype, $unknown) = ($2, $3);
$arraytype = &typeno($arraytype);
$unknown = &typeno($unknown);
if (s/^(\d+);(\d+);//) {
($lower, $upper) = ($1, $2);
$scripts .= '[' . ($upper+1) . ']';
} else {
warn "can't find array bounds: $_";
}
}
if (s/^([(,)\d*f=]*),(\d+),(\d+);//) {
($start, $length) = ($2, $3);
$whatis = $1;
if ($whatis =~ /^(\d+|\(\d+,\d+\))=/) {
$typeno = &typeno($1);
&pdecl($whatis);
} else {
$typeno = &typeno($whatis);
}
} elsif (s/^(\d+)(=[*suf]\d*)//) {
local($whatis) = $2;
if ($whatis =~ /[f*]/) {
&pdecl($whatis);
} elsif ($whatis =~ /[su]/) { #
print "$prefix.$fieldname is an array$scripts anon structs; disgusting\n"
if $debug;
#$type[$typeno] = $name unless defined $type[$typeno];
##printf "new type $typeno is $name" if $debug;
$typeno = $1;
$type[$typeno] = "$prefix.$fieldname";
local($name) = $type[$typeno];
&sou($name, $whatis);
$_ = &sdecl($name, $_, $start+$offset);
1;
$start = $start{$name};
$offset = $sizeof{$name};
$length = $offset;
} else {
warn "what's this? $whatis in $line ";
}
} elsif (/^\d+$/) {
$typeno = $_;
} else {
warn "bad array stab: $_ in $line ";
next STAB;
}
#local($wasdef) = defined($type[$typeno]) && $debug;
#if ($typedef) {
#print "redefining $type[$typeno] to " if $wasdef;
#$type[$typeno] = "$whatis$scripts"; # unless defined $type[$typeno];
#print "$type[$typeno]\n" if $wasdef;
#} else {
#$type[$arraytype] = $type[$typeno] unless defined $type[$arraytype];
#}
$type[$arraytype] = "$type[$typeno]$scripts" if defined $type[$typeno];
print "type[$arraytype] is $type[$arraytype]\n" if $debug;
print "$prefix.$fieldname is an array of $type[$arraytype]\n" if $debug;
$_;
}
sub sdecl {
local($prefix, $_, $offset) = @_;
local($fieldname, $scripts, $type, $arraytype, $unknown,
$whatis, $pdecl, $upper,$lower, $start,$length) = ();
local($typeno,$sou);
SFIELD:
while (/^([^;]+);/) {
$scripts = '';
warn "sdecl $_\n" if $debug;
if (s/^([\$\w]+)://) {
$fieldname = $1;
} elsif (s/(\d+)=([us])(\d+|\(\d+,\d+\))//) { #
$typeno = &typeno($1);
$type[$typeno] = "$prefix.$fieldname";
local($name) = "$prefix.$fieldname";
&sou($name,$2);
$_ = &sdecl("$prefix.$fieldname", $_, $start+$offset);
$start = $start{$name};
$offset += $sizeof{$name};
#print "done with anon, start is $start, offset is $offset\n";
#next SFIELD;
} else {
warn "weird field $_ of $line" if $debug;
next STAB;
#$fieldname = &gensym;
#$_ = &sdecl("$prefix.$fieldname", $_, $start+$offset);
}
if (/^(\d+|\(\d+,\d+\))=ar/) {
$_ = &adecl($_);
}
elsif (s/^(\d+|\(\d+,\d+\))?,(\d+),(\d+);//) {
($start, $length) = ($2, $3);
&panic("no length?") unless $length;
$typeno = &typeno($1) if $1;
}
elsif (s/^(\d+)=xs\w+:,(\d+),(\d+);//) {
($start, $length) = ($2, $3);
&panic("no length?") unless $length;
$typeno = &typeno($1) if $1;
}
elsif (s/^((\d+|\(\d+,\d+\))(=[*f](\d+|\(\d+,\d+\)))+),(\d+),(\d+);//) {
($pdecl, $start, $length) = ($1,$5,$6);
&pdecl($pdecl);
}
elsif (s/(\d+)=([us])(\d+|\(\d+,\d+\))//) { # the dratted anon struct
($typeno, $sou) = ($1, $2);
$typeno = &typeno($typeno);
if (defined($type[$typeno])) {
warn "now how did we get type $1 in $fieldname of $line?";
} else {
print "anon type $typeno is $prefix.$fieldname\n" if $debug;
$type[$typeno] = "$prefix.$fieldname" unless defined $type[$typeno];
};
local($name) = "$prefix.$fieldname";
&sou($name,$sou);
print "anon ".($isastruct{$name}) ? "struct":"union"." for $prefix.$fieldname\n" if $debug;
$type[$typeno] = "$prefix.$fieldname";
$_ = &sdecl("$prefix.$fieldname", $_, $start+$offset);
$start = $start{$name};
$length = $sizeof{$name};
}
else {
warn "can't grok stab for $name ($_) in line $line ";
next STAB;
}
&panic("no length for $prefix.$fieldname") unless $length;
$struct{$name} .= join(',', $fieldname, $typeno, $scripts, $start, $length) . ';';
}
if (s/;\d*,(\d+),(\d+);//) {
local($start, $size) = ($1, $2);
$sizeof{$prefix} = $size;
print "start of $prefix is $start, size of $sizeof{$prefix}\n" if $debug;
$start{$prefix} = $start;
}
$_;
}
sub edecl {
s/;$//;
$enum{$name} = $_;
$_ = '';
}
sub resolve_types {
local($sou);
for $i (0 .. $#type) {
next unless defined $type[$i];
$_ = $type[$i];
unless (/\d/) {
print "type[$i] $type[$i]\n" if $debug;
next;
}
print "type[$i] $_ ==> " if $debug;
s/^(\d+)(\**)\&\*(\**)/"$2($3".&type($1) . ')()'/e;
s/^(\d+)\&/&type($1)/e;
s/^(\d+)/&type($1)/e;
s/(\*+)([^*]+)(\*+)/$1$3$2/;
s/\((\*+)(\w+)(\*+)\)/$3($1$2)/;
s/^(\d+)([\*\[].*)/&type($1).$2/e;
#s/(\d+)(\*|(\[[\[\]\d\*]+]\])+)/&type($1).$2/ge;
$type[$i] = $_;
print "$_\n" if $debug;
}
}
sub type { &psou($type[$_[0]] || "<UNDEFINED>"); }
sub adjust_start_addrs {
for (sort keys %start) {
($basename = $_) =~ s/\.[^.]+$//;
$start{$_} += $start{$basename};
print "start: $_ @ $start{$_}\n" if $debug;
}
}
sub sou {
local($what, $_) = @_;
/u/ && $isaunion{$what}++;
/s/ && $isastruct{$what}++;
}
sub psou {
local($what) = @_;
local($prefix) = '';
if ($isaunion{$what}) {
$prefix = 'union ';
} elsif ($isastruct{$what}) {
$prefix = 'struct ';
}
$prefix . $what;
}
sub scrunch {
local($_) = @_;
return '' if $_ eq '';
study;
s/\$//g;
s/ / /g;
1 while s/(\w) \1/$1$1/g;
# i wanna say this, but perl resists my efforts:
# s/(\w)(\1+)/$2 . length($1)/ge;
&quick_scrunch;
s/ $//;
$_;
}
sub buildscrunchlist {
$scrunch_code = "sub quick_scrunch {\n";
for (values %intrinsics) {
$scrunch_code .= "\ts/(${_}{2,})/'$_' . length(\$1)/ge;\n";
}
$scrunch_code .= "}\n";
print "$scrunch_code" if $debug;
eval $scrunch_code;
&panic("can't eval scrunch_code $@ \nscrunch_code") if $@;
}
sub fetch_template {
local($mytype) = @_;
local($fmt);
local($count) = 1;
&panic("why do you care?") unless $perl;
if ($mytype =~ s/(\[\d+\])+$//) {
$count .= $1;
}
if ($mytype =~ /\*/) {
$fmt = $template{'pointer'};
}
elsif (defined $template{$mytype}) {
$fmt = $template{$mytype};
}
elsif (defined $struct{$mytype}) {
if (!defined $template{&psou($mytype)}) {
&build_template($mytype) unless $mytype eq $name;
}
elsif ($template{&psou($mytype)} !~ /\$$/) {
#warn "incomplete template for $mytype\n";
}
$fmt = $template{&psou($mytype)} || '?';
}
else {
warn "unknown fmt for $mytype\n";
$fmt = '?';
}
$fmt x $count . ' ';
}
sub compute_intrinsics {
&safedir;
local($TMP) = "$SAFEDIR/c2ph-i.$$.c";
open (TMP, ">$TMP") || die "can't open $TMP: $!";
select(TMP);
print STDERR "computing intrinsic sizes: " if $trace;
undef %intrinsics;
print <<'EOF';
main() {
char *mask = "%d %s\n";
EOF
for $type (@intrinsics) {
next if !$type || $type eq 'void' || $type =~ /complex/; # sun stuff
print <<"EOF";
printf(mask,sizeof($type), "$type");
EOF
}
print <<'EOF';
printf(mask,sizeof(char *), "pointer");
exit(0);
}
EOF
close TMP;
select(STDOUT);
open(PIPE, "cd $SAFEDIR && $CC $TMP && $SAFEDIR/a.out|");
while (<PIPE>) {
chop;
split(' ',$_,2);;
print "intrinsic $_[1] is size $_[0]\n" if $debug;
$sizeof{$_[1]} = $_[0];
$intrinsics{$_[1]} = $template{$_[0]};
}
close(PIPE) || die "couldn't read intrinsics!";
unlink($TMP, "$SAFEDIR/a.out");
print STDERR "done\n" if $trace;
}
sub scripts2count {
local($_) = @_;
s/^\[//;
s/\]$//;
s/\]\[/*/g;
$_ = eval;
&panic("$_: $@") if $@;
$_;
}
sub system {
print STDERR "@_\n" if $trace;
system @_;
}
sub build_template {
local($name) = @_;
&panic("already got a template for $name") if defined $template{$name};
local($build_templates) = 1;
local($lparen) = '(' x $build_recursed;
local($rparen) = ')' x $build_recursed;
print STDERR "$lparen$name$rparen " if $trace;
$build_recursed++;
&pstruct($name,$name,0);
print STDERR "TEMPLATE for $name is ", $template{&psou($name)}, "\n" if $debug;
--$build_recursed;
}
sub panic {
select(STDERR);
print "\npanic: @_\n";
exit 1 if $] <= 4.003; # caller broken
local($i,$_);
local($p,$f,$l,$s,$h,$a,@a,@sub);
for ($i = 0; ($p,$f,$l,$s,$h,$w) = caller($i); $i++) {
@a = @DB'args;
for (@a) {
if (/^StB\000/ && length($_) == length($_main{'_main'})) {
$_ = sprintf("%s",$_);
}
else {
s/'/\\'/g;
s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;
s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
}
}
$w = $w ? '@ = ' : '$ = ';
$a = $h ? '(' . join(', ', @a) . ')' : '';
push(@sub, "$w&$s$a from file $f line $l\n");
last if $signal;
}
for ($i=0; $i <= $#sub; $i++) {
last if $signal;
print $sub[$i];
}
exit 1;
}
sub squishseq {
local($num);
local($last) = -1e8;
local($string);
local($seq) = '..';
while (defined($num = shift)) {
if ($num == ($last + 1)) {
$string .= $seq unless $inseq++;
$last = $num;
next;
} elsif ($inseq) {
$string .= $last unless $last == -1e8;
}
$string .= ',' if defined $string;
$string .= $num;
$last = $num;
$inseq = 0;
}
$string .= $last if $inseq && $last != -e18;
$string;
}
sub repeat_template {
# local($template, $scripts) = @_; have to change caller's values
if ( $_[1] ) {
local($ncount) = &scripts2count($_[1]);
if ($_[0] =~ /^\s*c\s*$/i) {
$_[0] = "A$ncount ";
$_[1] = '';
} else {
$_[0] = $template x $ncount;
}
}
}
__END__
:endofperl
| Jaifar/java_ptf | New folder/perl/bin/pstruct.bat | bat | apache-2.0 | 37,711 |
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:Rdpegfx_ClearCodec_NegativeTest_GlyphIndexHitSet_CompositePayloadExists /Logger:trx
pause
| JessieF/WindowsProtocolTestSuites | TestSuites/RDP/src/Batch/RDPEGFX/Rdpegfx_ClearCodec_NegativeTest_GlyphIndexHitSet_CompositePayloadExists.cmd | bat | mit | 260 |
@echo on
setlocal
rem set JMS_IMPL_LIBPATH=.\lib\rabbitMQ\*
rem set JMS_IMPL_LIBPATH=.\lib\solaceLib\*
rem set JMS_IMPL_LIBPATH=.\lib\IBMMQ\*
rem set JMS_IMPL_LIBPATH=.\lib\ActiveMQ\*
set LIBPATH=%LIBPATH%;%JMS_IMPL_LIBPATH%
..\..\bin\tnt4j-streams.bat -f:tnt-data-source.xml | Nastel/tnt4j-streams | tnt4j-streams-jms/samples/jms-textmessage/run.bat | bat | apache-2.0 | 275 |
REM
REM Try Matlab
REM
python build.py clean
if errorlevel 1 goto ERROR
python build.py
if errorlevel 1 goto ERROR
REM Running short Java tests to produce testng output
REM The hudson matrix configuration assumes that there
REM will be test output available. In the future, though
REM we may want to actually run tests in Matlab.
python build.py test-compile
if errorlevel 1 goto ERROR
python build.py -f components\model\build.xml test
if errorlevel 1 goto ERROR
set OMERO_HOME=%CD%\dist
call components\tools\OmeroM\test\omero_test
if errorlevel 1 goto ERROR
exit /b 0
:ERROR
echo Failed %ERRORLEVEL%
exit /b %ERRORLEVEL%
| jballanc/openmicroscopy | docs/hudson/OMERO-matlab.bat | bat | gpl-2.0 | 632 |
@echo off
rem Description:
rem Script reads input FILE_IN ACL file list and filters out records with
rem not existen directories in the SRC_DIR directory.
setlocal
set "FILE_IN=%~f1"
set "SRC_DIR=%~f2"
if not defined FILE_IN exit /b 1
if not exist "%FILE_IN%" exit /b 2
if not defined SRC_DIR exit /b 3
if not exist "%SRC_DIR%\" exit /b 4
set LINE_INDEX=0
set IGNORE_LINE=0
for /F "usebackq tokens=* delims=" %%i in ("%FILE_IN%") do (
set "LINESTR=%%i"
call :PARSE_LINE
)
exit /b 0
:PARSE_LINE
if %IGNORE_LINE% NEQ 0 (
set IGNORE_LINE=0
goto PARSE_LINE_EXIT
)
set /A LINE_OFFSET=LINE_INDEX %% 2
if %LINE_OFFSET% NEQ 0 goto PARSE_LINE_PRINT
if not exist "%SRC_DIR%\%LINESTR%" (
set IGNORE_LINE=1
goto PARSE_LINE_EXIT
)
:PARSE_LINE_PRINT
set "LINESTR=%LINESTR:)=^)%"
echo.%LINESTR%
:PARSE_LINE_EXIT
set /A LINE_INDEX+=1
exit /b
| andry81/contools | Scripts/Tools/admin/cleanup_acl.bat | bat | mit | 901 |
@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\multidimensional_urlencode.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\multidimensional_urlencode.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
| uber/multidimensional_urlencode | docs/make.bat | bat | mit | 6,741 |
cd /d "$(TARGETS.CocoNode.TARGET_ROOT)"
node.exe "$(TARGETS.CocoNode.TARGET_ROOT)/coconode.js"
| mobileFX/Coconut2D | DeviceWrappers/web/CocoNode/start_node.cmd | bat | mit | 99 |
@ECHO off
REM --------------------------
REM ------ Rbyp ------
REM --------------------------
REM
:RESTART
SETLOCAL ENABLEDELAYEDEXPANSION
REM -- ¤ÊÝè --
SET HOSTS=C:\WINDOWS\system32\drivers\etc\
REM -- í\¦Í1/ñ\¦Í0 --
SET PRINT_HOST=0
IF "%RE%"=="1" GOTO RE
REM -- hostsðobNAbv --
cd %~dp1
IF NOT EXIST "hosts_files\hosts_backup.txt" (
ECHO ãLpXÉfBNgð쬵A»ÝÌhostsÌobNAbvðs¢Ü·B
ECHO úÝèðs¢Ü·©H(y/n^)
SET /p SHO=""
IF /i NOT "!SHO!"=="y" GOTO END
mkdir hosts_files
copy /V %HOSTS%hosts hosts_files\hosts_backup.txt >nul
ECHO 127.0.0.1 localhost > hosts_files\example.txt
ECHO ::1 localhost >> hosts_files\example.txt
ECHO »ÝÌhostsðobNAbvµÜµ½B
ECHO hosts_filestH_ð쬵ܵ½B
ECHO hosts_filesÌÉ éexample.txt
ECHO ðQlÉÝèt@Cð쬵A
ECHO EnterðµÄ¾³¢B
PAUSE >nul
GOTO START
)
REM /-- hostsðobNAbv --
REM -- Cj
[ --
:START
ECHO DNS Flushing...
ipconfig /flushdns
cls
set errorlevel=
SET /A count=0
SET mode=0
SET NOW=0
SET FILES=0
FOR %%A IN ( hosts_files\*.txt ) DO SET /A FILES=FILES+1
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO - HOSTS CHANGER -
ECHO +-+-+-+-+-+-+-+-+-+-+
FOR /F %%A IN ('dir /b hosts_files\*.txt') do (
SET /A count=count+1
REM l^ÌæªÉ0ð¯éÆ8iÉÈéÎô
SET CNT=0000!count!
IF "%NUM%"=="!count!" (
SET /p X=^><nul
SET NOW=!count!
)
IF NOT "%NUM%"=="!count!" SET /p X=-<nul
ECHO [!CNT:~-2!] : %%~nA
)
IF "%NOW%"=="%count%" SET NUM=
if "%count%"=="0" (
ECHO hosts_filestH_É*.txtÌ`®Å
ECHO hostst@Cðüêľ³¢B
ECHO EnterÅÄ`FbNµÜ·B
ECHO +-+-+-+-+-+-+-+-+-+-+
PAUSE > nul
GOTO START
)
IF "%NUM%"=="0" ECHO.^>[ 0] : RESET
IF "%NUM%" NEQ "0" ECHO.-[ 0] : RESET
ECHO. [ h] : HELP
REM -- BµR}h --
REM ECHO [e] : ÒW[h
REM ECHO [h] : »ÝÌhostsÌàe
IF "%PRINT_HOST%"=="1" GOTO PRINTHOST
IF "%NUM%"=="p" (
:PRINTHOST
SET NUM=
ECHO +-+-+-+-+-+-+-+-+-+-+
FOR /F "delims=" %%a IN (C:\WINDOWS\system32\drivers\etc\hosts) DO (
ECHO %%a
)
)
IF NOT "%NUM%"=="p" SET NUM=
ECHO +-+-+-+-+-+-+-+-+-+-+
REM IF NOT "%NUM%"=="" ECHO o(ßDß)Á ^>%NUM%ÔȤ
REM IF NOT "%NOW%"=="" ECHO o(ßDß)Á ^>%NOW%ÔȤ
REM SET NUM=
SET /p NUM="Enter the number. >"
rem IF "%NUM%"=="" ECHO
IF /i "%NUM%"=="e" GOTO EDIT
IF /i "%NUM%"=="p" GOTO START
IF /i "%NUM%"=="h" GOTO HELP
IF "%NUM%"=="" (
IF NOT "%NOW%"=="%count%" SET /A NUM=%NOW%
SET /A NUM=NUM+1
IF "%NOW%"=="%count%" (
ENDLOCAL REM ±ÌªÍ½æèå
SET RE=1
GOTO RESTART
:RE
SET /A NUM=0
)
)
IF "%NUM%"=="0" (
ECHO 127.0.0.1 localhost > %HOSTS%hosts
ECHO ::1 localhost >> %HOSTS%hosts
GOTO START
)
IF NOT "%NUM%"=="" GOTO SEARCH
GOTO START
REM -- t@Cõ --
:SEARCH
REM ----- mFæÊ -----
REM ECHO ðÀsµÜ·©? (y/n)
REM SET /p c=
REM IF NOT "%c%"=="y" GOTO START
SET /A search=0
SET FILENAME=
FOR /F %%A IN ('dir /b hosts_files\*.txt') do (
SET /A search=search+1
SET FILENAME=%%A
REM ECHO %%A
IF "%NUM%"=="!search!" IF "%mode%"=="0" GOTO REWRITE
IF "%NUM2%"=="!search!" IF "%mode%"=="1" GOTO MENU
)
@ECHO Nothing... No.%NUM%
PAUSE > nul
GOTO START
REM -- hosts«·¦ --
:REWRITE
IF NOT EXIST "hosts_files\%FILENAME%" (
ECHO t@Cª¶ÝµÜ¹ñDðI¹µÜ·D
GOTO :EOF
)
cd /d %~dp0
SET ck=hosts_files
REM @ECHO #hosts©¦éñ¶á[ver0.2 > C:\WINDOWS\system32\drivers\etc\hosts
@ECHO #hosts changer > C:\WINDOWS\system32\drivers\etc\hosts
FOR /F "delims=" %%a IN (%ck%\%FILENAME%) DO (
REM @ECHO %%a ð«Ýc
@ECHO %%a >> C:\WINDOWS\system32\drivers\etc\hosts
)
GOTO START
REM -- hostsÇj
[ --
:EDIT
cls
SET NUM2=
SET /A count=0
SET mode=1
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO - HOSTS MANAGER -
ECHO +-+-+-+-+-+-+-+-+-+-+
FOR /F %%A IN ('dir /b hosts_files\*.txt') do (
SET /A count=count+1
ECHO [!count!] : %%A
)
ECHO [n] : New File
ECHO [0] : Back
ECHO +-+-+-+-+-+-+-+-+-+-+
SET /p NUM2="Enter the number. >"
IF "%NUM2%"=="n" GOTO NEWFILE
IF "%NUM2%"=="0" GOTO START
IF NOT "%NUM2%"=="" GOTO SEARCH
GOTO START
REM -- VKt@Cì¬ --
:NEWFILE
cls
SET NEWFILENAME=
SET NEWFILENTEXT=
SET /p NEWFILENAME="t@C¼ÍH >"
IF "%NEWFILENAME%"=="" (GOTO EDIT)
:MORE
SET /p NEWFILETEXT="«ÞàeÍH >"
IF "%NEWFILETEXT%"=="" (GOTO EDIT)
ECHO %NEWFILETEXT% >> hosts_files\%NEWFILENAME%
SET NEWFILETEXT=
GOTO MORE
GOTO EDIT
REM -- hostsìj
[ --
:MENU
cls
SET NUM2=
SET NUM3=
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO %FILENAME%
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO [1] : INSERT
ECHO [2] : UPDATE
ECHO [3] : DELETE
ECHO [4] : RENAME
ECHO [5] : DROP
ECHO [0] : BACK
ECHO [x] : Notepad
ECHO +-+-+-+-+-+-+-+-+-+-+
SET /p NUM3="Enter the number. >"
REM IF "%NUM3%"=="" GOTO MENU
IF "%NUM3%"=="1" GOTO INSERT
IF "%NUM3%"=="2" GOTO MODIFY
IF "%NUM3%"=="3" GOTO DELETE
IF "%NUM3%"=="4" GOTO RENAME
IF "%NUM3%"=="5" GOTO DROP
IF "%NUM3%"=="0" GOTO EDIT
IF "%NUM3%"=="x" (
start notepad "hosts_files\%FILENAME%"
ECHO ÒWªIíÁ½çEnterðµÄ¾³¢B
PAUSE > nul
GOTO START
)
GOTO EDIT
REM -- R[hÇÁj
[ --
:INSERT
SET TEXT=
SET /p TEXT="INSERT >"
IF "%TEXT%"=="" GOTO MENU
@ECHO %TEXT% >> hosts_files\%FILENAME%
ECHO I¹·éêÍA»ÌÜÜEnter
GOTO INSERT
REM -- R[hÒWj
[ --
:MODIFY
SET NUM2=
ECHO +-+-+-+-+-+-+-+-+-+-+
SET /A count=0
FOR /F "delims=" %%a IN (hosts_files\%FILENAME%) DO (
SET /A count=count+1
IF "%UPNUM%"=="!count!" (
type hosts_files\%FILENAME% | find /v "%%a" > hosts_files\tmp_%FILENAME%
del hosts_files\%FILENAME%
ren hosts_files\tmp_%FILENAME% %FILENAME%
SET UPNUM=
GOTO MODIFY
)
@ECHO No.!count! ^> %%a
)
ECHO +-+-+-+-+-+-+-+-+-+-+
SET UPNUM=
ECHO I¹·éêÍA»ÌÜÜEnter
SET /p UPNUM="Update num >"
IF "%UPNUM%"=="" GOTO MENU
GOTO MODIFY
GOTO START
REM -- R[híj
[ --
:DELETE
SET NUM2=
ECHO +-+-+-+-+-+-+-+-+-+-+
SET /A count=0
FOR /F "delims=" %%a IN (hosts_files\%FILENAME%) DO (
SET /A count=count+1
IF "%DELNUM%"=="!count!" (
type hosts_files\%FILENAME% | fINd /v "%%a" > hosts_files\tmp_%FILENAME%
del hosts_files\%FILENAME%
ren hosts_files\tmp_%FILENAME% %FILENAME%
SET DELNUM=
GOTO DELETE
)
@ECHO No.!count! ^> %%a
)
ECHO +-+-+-+-+-+-+-+-+-+-+
SET DELNUM=
REM ECHO I¹·éêÍA»ÌÜÜEnter
SET /p DELNUM="Delete Num >"
IF "%DELNUM%"=="" GOTO MENU
GOTO DELETE
GOTO START
REM -- t@C¼ÏXj
[ --
:RENAME
SET NAME=
ECHO Alt + ¼p/¿Åú{êüÍ
SET /p NAME="New FileName >"
IF "%NAME%"=="" GOTO MENU
ren hosts_files\%FILENAME% %NAME%
GOTO START
REM -- t@Cíj
[ --
:DROP
del /p hosts_files\%FILENAME%
GOTO EDIT
:HELP
cls
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO ** command **
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO p »ÝÌhostsàeðoÍ
ECHO e hostsÇj
[
ECHO.
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO ** Short cut **
ECHO +-+-+-+-+-+-+-+-+-+-+
ECHO Enter the number. ^> (¢üÍEnterÅI¹orßé)
ECHO (¦AµAchangeræÊÅÍÔÉhostsØèÖ¦)
SET NUM=
PAUSE > nul
GOTO START
GOTO END
ENDLOCAL
:END | srea/HostsChanger | hostsChanger.bat | bat | mit | 7,492 |
@echo off
wscript %~dp0backup\backup-dev.vbs %~dp0backup\full-idrive-backup-data.txt %~dp0backup\full-local-backup-data.txt | ThomasKrauss/Reconnect | my-utilities/resources/commands/full_backup.bat | bat | mit | 124 |
@echo off
Setlocal EnableDelayedExpansion EnableExtensions
for /r %%i in (jit\*.lua) do (
set "var=%%i" &set "str=!var:@=!"
luajit -b -n jit.%%~ni jit\%%~ni.lua jit\%%~ni.o
)
| hyee/dbcli | src/makefiles/buildJIT_lib.bat | bat | mit | 182 |
@echo off
del *.nupkg
@echo on
".nuget/nuget.exe" pack FactuurSturenNet.Signed.nuspec -symbols
".nuget/nuget.exe" push LVMS.FactuurSturenNet.Signed.*.nupkg
pause | leonmeijer/Factuursturen.NET | LVMS.FactuurSturen.NET/DeployNuGet.bat | bat | mit | 163 |
nuget push Coffee.Beans.*.nupkg -s http://robhendriks.azurewebsites.net/
pause | g3ntle/Coffee.Beans | nuget/push.bat | bat | mit | 78 |
setlocal
call settings.bat
call fetch.bat http://zlib.net/zlib-1.2.11.tar.gz zlib-1.2.11
cd zlib-1.2.11
if "%COMPILER%" == "MINGW" (
SET "PATH=%MSYSDIR%;%PATH%"
SET DESTDIR=%PREFIX:\=/%/
SET INCLUDE_PATH=include
SET LIBRARY_PATH=lib
bash -c "make -f win32/Makefile.gcc install"
bash -c "make -f win32/Makefile.gcc install SHARED_MODE=1"
%ER%
copy /y %PREFIX%\zlib1.dll %PREFIX%\bin
) else (
if "%Variant%" == "Debug" (
"%SEDC%" -i win32/Makefile.msc -e "s@-MD @ -MDd @"
)
nmake /f win32/Makefile.msc AS=ml64
%ER%
copy /y zlib.lib %PREFIX%\lib\
copy /y libz.a %PREFIX%\lib\
copy /y zlib.h %PREFIX%\include
copy /y zconf.h %PREFIX%\include
)
cd ..
| alex85k/winbuilds | build_zlib.bat | bat | cc0-1.0 | 682 |
@echo off
rem Copyright 2009-2020 Ping Identity Corporation
rem All Rights Reserved.
rem
rem -----
rem
rem Copyright 2009-2020 Ping Identity Corporation
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem
rem -----
rem
rem Copyright (C) 2009-2020 Ping Identity Corporation
rem This program is free software; you can redistribute it and/or modify
rem it under the terms of the GNU General Public License (GPLv2 only)
rem or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
rem as published by the Free Software Foundation.
rem
rem This program is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem Get the directory containing this batch file.
set BATDIR=%~dp0
rem Invoke a number of common script utility functions.
call "%BATDIR%\.script-util.bat"
rem Invoke the tool with the provided command-line arguments.
"%JAVA_CMD%" %JAVA_ARGS% -cp "%BATDIR%\..\unboundid-ldapsdk.jar" com.unboundid.ldap.sdk.unboundidds.examples.SubtreeAccessibility %*
| UnboundID/ldapsdk | dist-root/tools/subtree-accessibility.bat | bat | gpl-2.0 | 1,746 |
cmd_fs/notify/inotify/built-in.o := /home/ian/kernel/toolchain/prebuilt/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/notify/inotify/built-in.o fs/notify/inotify/inotify_fsnotify.o fs/notify/inotify/inotify_user.o
| sleshepic/epic_touch_kernel | fs/notify/inotify/.built-in.o.cmd | bat | gpl-2.0 | 217 |
cmd_drivers/staging/zram/zram.o := /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/staging/zram/zram.o drivers/staging/zram/zram_drv.o drivers/staging/zram/zram_sysfs.o drivers/staging/zram/xvmalloc.o
| doadin/samsung-kernel-msm7x30-Doadin | drivers/staging/zram/.zram.o.cmd | bat | gpl-2.0 | 245 |
cmd_net/bluetooth/bnep/bnep.o := /home/erik/froyo/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o net/bluetooth/bnep/bnep.o net/bluetooth/bnep/core.o net/bluetooth/bnep/sock.o net/bluetooth/bnep/netdev.o
| kingklick/kk-evo-kernel | net/bluetooth/bnep/.bnep.o.cmd | bat | gpl-2.0 | 230 |
cmd_sound/soc/jz4740/built-in.o := rm -f sound/soc/jz4740/built-in.o; arm-none-linux-gnueabi-ar rcs sound/soc/jz4740/built-in.o
| srinugnt2000/linux-2.6.37 | sound/soc/jz4740/.built-in.o.cmd | bat | gpl-2.0 | 129 |
REM --------------------------------------------------------------------------
REM Author : Stefano Giorgio [stef145g] - Copyright (C) 2012..2014
REM Updates by:
REM Lisheng [guanlisheng] (C) 2013
REM Nikolay [vomikan] (C) 2013
REM James [siena123] (c) 2014
REM gabriele-v (c) 2014
REM
REM Purpose: To allow the easy collection of support files required for
REM - testing in the msw-vc-2013e environment.
REM - providing a release version for others.
REM
REM Revision of last commit: $Revision$
REM Author of last commit: $Author$
REM --------------------------------------------------------------------------
@echo off
cls
REM Set the variable: mmex_release_version
REM to reflect the correct version.
rem set mmex_release_version=mmex_1.1.0.0
set mmex_release_version=mmex_svn6487
set mmex_system_name=MoneyManagerEX
set mmex_build_location=..\..\build\msw-vc-2013e
set mmex_release_location=..\..\mmex_release
if NOT EXIST %mmex_release_location% md %mmex_release_location%
REM mmex_win_system_type=x64 ... updated later in script.
set mmex_win_system_type=win32
set mmex_build_type=release
@echo ------------------------------------------------------------------------
@echo MMEX Support Files Updating Facility
@echo.
set display_message=Update IDE Build Configurations and MMEX Release Locations.
REM Create a compressed version of the output file for distribution
if exist .\mpress.219\mpress.exe goto display_config_continue
@echo.
@echo The program 'mpress.exe' has not been found in dir: .\mpress.219
@echo.
@echo To distribute compressed versions of: mmex.exe
@echo include the package version of: mpress.219 with this batch file.
@echo.
@echo available from: http://www.matcode.com/mpress.htm
:display_config_continue
@echo.
@echo %display_message%
@echo ------------------------------------------------------------------------
pause
cls
REM Starts with Win32 Release
goto start_update_process
REM --------------------------------------------------------------------------
REM The routine: UpdateFiles
REM will collect the files for all configurations to the specified location.
REM --------------------------------------------------------------------------
:UpdateFiles
REM Initially set the location to the mmex_release location
set mmex_build_dir=%mmex_release_location%\%mmex_release_version%_%mmex_win_system_type%_portable\%location%
if %location%==%mmex_system_name% goto UpdateFiles_Continue
rem Reset the build location to the IDE Build location
set mmex_build_dir=%mmex_build_location%\%mmex_win_system_type%\%location%
:UpdateFiles_Continue
set current_location=%mmex_win_system_type%\%location%
if %current_location% == %mmex_win_system_type%\tests\debug set current_location=..\msw_tests-vc-2013e\%mmex_win_system_type%\debug
if %current_location% == ..\msw_tests-vc-2013e\%mmex_win_system_type%\debug set mmex_build_dir=%mmex_build_location%\%current_location%
if not exist %mmex_build_dir% goto skip_this_location
@echo ------------------------------------------------------------------------
@echo Updating MMEX Files for: %mmex_build_dir%
@echo.
@echo Copying Root files for: %current_location%
@echo ------------------------------------------------------------------------
copy "..\..\doc\*.txt" %mmex_build_dir%
copy "..\..\readme.*" %mmex_build_dir%
@echo.
@echo ------------------------------------------------------------------------
@echo Copying Help files for: %current_location%
@echo ------------------------------------------------------------------------
REM del "%mmex_build_dir%\help\*.* /S"
REM create the directories if they don't exist
if not exist %mmex_build_dir%\help mkdir %mmex_build_dir%\help
copy "..\..\doc\help\*.*" "%mmex_build_dir%\help"
@echo.
for /f %%d IN ('dir /A:D /B ..\..\doc\help') do (
if not exist "%mmex_build_dir%\doc\help\%%d" mkdir "%mmex_build_dir%\help\%%d"
copy "..\..\doc\help\%%d\*.*" "%mmex_build_dir%\help\%%d"
)
@echo ------------------------------------------------------------------------
@echo Copying Language files for: %current_location%
@echo ------------------------------------------------------------------------
if not exist %mmex_build_dir%\po mkdir %mmex_build_dir%\po
if not exist %mmex_build_dir%\po\en mkdir %mmex_build_dir%\po\en
copy "..\..\po\*.mo" "%mmex_build_dir%\po\en"
copy "..\..\po\*.po" "%mmex_build_dir%\po"
@echo.
@echo ------------------------------------------------------------------------
@echo Copying Resources files for: %current_location%
@echo ------------------------------------------------------------------------
if not exist %mmex_build_dir%\res mkdir %mmex_build_dir%\res
copy "..\..\resources\kaching.wav" "%mmex_build_dir%\res"
copy "..\..\resources\mmex.ico" "%mmex_build_dir%\res"
copy "..\..\resources\master.css" "%mmex_build_dir%\res"
copy "..\..\resources\home_page.htt" "%mmex_build_dir%\res"
copy "..\..\3rd\Chart.js\Chart.js" "%mmex_build_dir%\res"
@echo ------------------------------------------------------------------------
@echo.
@echo Updated Support Files for: %mmex_build_dir%
@echo.
pause
cls
:skip_this_location
REM Work out what to do next. Continue from already processed, win32\release
if %current_location%==%mmex_win_system_type%\release goto update_debug
if %current_location%==%mmex_win_system_type%\debug goto update_tests_debug
if %current_location%==..\msw_tests-vc-2013e\%mmex_win_system_type%\debug goto update_release
if %current_location%==win32\%mmex_system_name% goto system_change_x64
goto ScriptEnd
REM --------------------------------------------------------------------------
REM x64 Release
:system_change_x64
set mmex_win_system_type=x64
set location=release
goto UpdateFiles
REM --------------------------------------------------------------------------
REM win32 Release - Initial start.
REM --------------------------------------------------------------------------
:start_update_process
set location=release
goto UpdateFiles
REM win32/x64 Debug
:update_debug
set location=debug
goto UpdateFiles
REM win32/x64 Tests\Debug
:update_tests_debug
set location=tests\debug
goto UpdateFiles
REM Update the release
:update_release
REM Update the exe files first
set location=%mmex_system_name%
set mmex_release_source=%mmex_build_location%\%mmex_win_system_type%\%mmex_build_type%
set mmex_release_destination=%mmex_release_location%\%mmex_release_version%_%mmex_win_system_type%_portable
if not exist %mmex_release_destination% mkdir %mmex_release_destination%
@echo --------------------------------------------------------------------
@echo Updating MMEX Release Location
@echo.
@echo Destination: %mmex_release_destination%
@echo From Source: %mmex_release_source%
@echo --------------------------------------------------------------------
pause
cls
@echo --------------------------------------------------------------------
@echo Updating MMEX System Release
@echo.
@echo Destination: %mmex_release_destination%
@echo From Source: %mmex_release_source%
@echo.
@echo --------------------------------------------------------------------
REM Set up the release location. Create locations if not exist
set mmex_release_dir=%mmex_release_destination%\%location%
if not exist %mmex_release_dir% mkdir %mmex_release_dir%
set mmex_release_bin_dir=%mmex_release_dir%\bin
if not exist %mmex_release_bin_dir% mkdir %mmex_release_bin_dir%
REM Create a zero length file for portable version
copy nul %mmex_release_dir%\mmexini.db3
if %mmex_win_system_type%==x64 goto get_x64_dll_files
REM set up the executable files for Win32
copy %mmex_release_source%\mmex.exe %mmex_release_bin_dir%
copy "C:\Windows\sysWOW64\msvcp120.dll" %mmex_release_bin_dir%
copy "C:\Windows\sysWOW64\msvcr120.dll" %mmex_release_bin_dir%
goto update_release_continue
:get_x64_dll_files
REM set up the executable files for x64
copy %mmex_release_source%\mmex.exe %mmex_release_bin_dir%
copy "C:\Windows\system32\msvcp120.dll" %mmex_release_bin_dir%
copy "C:\Windows\system32\msvcr120.dll" %mmex_release_bin_dir%
:update_release_continue
REM Create a compressed version of the output file for distribution
if not exist .\mpress.219\mpress.exe goto UpdateFiles
.\mpress.219\mpress %mmex_release_bin_dir%\mmex.exe
REM Set up the support files before ending process.
goto UpdateFiles
:ScriptEnd
@echo.
@echo Update completed.
@echo ------------------------------------------------------------------------
pause
| moneymanagerex/moneymanagerex.bak | setup/win/update_mmex_build_files.bat | bat | gpl-2.0 | 8,517 |
if not defined CYGWIN_HOME%2 (
echo "ERROR : CYGWIN_HOME%2 is not set, skipping cli build"
exit 1
) else (
if %2 == x64 (
set CYGWIN_HOME=%CYGWIN_HOMEx64%
) else (
set CYGWIN_HOME=%CYGWIN_HOMEx86%
)
)
if not defined CYGWIN_HOME (
echo "ERROR : CYGWIN_HOME is not set, skipping cli build"
) else (
set "path=%path%;%CYGWIN_HOME%\bin";
%CYGWIN_HOME%\bin\vi "+set ff=unix" +wq! %1
%CYGWIN_HOME%\bin\bash.exe %*
) | mantechnology/wdrbd | build/scripts/cygwinBuild.bat | bat | gpl-2.0 | 423 |
cmd_sound/firewire/built-in.o := rm -f sound/firewire/built-in.o; /home/friedrich420/kernel/sm-arm-eabi-4.10/bin/arm-eabi-ar rcsD sound/firewire/built-in.o
| friedrich420/Note-3-Kernel | sound/firewire/.built-in.o.cmd | bat | gpl-2.0 | 157 |
cmd_lib/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o lib/built-in.o lib/bcd.o lib/div64.o lib/sort.o lib/parser.o lib/halfmd4.o lib/debug_locks.o lib/random32.o lib/bust_spinlocks.o lib/hexdump.o lib/kasprintf.o lib/bitmap.o lib/scatterlist.o lib/string_helpers.o lib/gcd.o lib/lcm.o lib/list_sort.o lib/uuid.o lib/iomap_copy.o lib/devres.o lib/find_last_bit.o lib/hweight.o lib/kernel_lock.o lib/bitrev.o lib/crc-ccitt.o lib/crc16.o lib/crc32.o lib/libcrc32c.o lib/genalloc.o lib/zlib_inflate/built-in.o lib/zlib_deflate/built-in.o lib/reed_solomon/built-in.o lib/textsearch.o lib/ts_kmp.o lib/ts_bm.o lib/ts_fsm.o lib/percpu_counter.o lib/nlattr.o
| wujiku/superstar-kernel-shooter-2.3.4gb | lib/.built-in.o.cmd | bat | gpl-2.0 | 695 |
@ECHO OFF
set GG=C:\projects\GrinGlobal
cscript.exe "%GG%\NewSetupVersion.vbs" "%GG%\GrinGlobal.Admin.Setup\GrinGlobal.Admin.Setup.vdproj"
cscript.exe "%GG%\NewSetupVersion.vbs" "%GG%\GrinGlobal.Web.Setup\GrinGlobal.Web.Setup.vdproj"
cscript.exe "%GG%\NewSetupVersion.vbs" "%GG%\GrinGlobal.Search.Engine.Setup\GrinGlobal.Search.Engine.Setup.vdproj"
cscript.exe "%GG%\NewSetupVersion.vbs" "%GG%\GrinGlobal.Updater.Setup\GrinGlobal.Updater.Setup.vdproj"
cscript.exe "%GG%\NewSetupVersion.vbs" "%GG%\GrinGlobal.Database.Setup\GrinGlobal.Database.Setup.vdproj"
echo %date% %time% Done
pause | ilri/genebank-gg_server | update_setup_projects_build_number.bat | bat | gpl-3.0 | 602 |
@echo off
set PHPBIN="@php_bin@"
"@php_bin@" "@bin_dir@\phpadd" %*
| fmntf/phpadd | phpadd.bat | bat | gpl-3.0 | 68 |
set ProjDir=%1
copy /b "%ProjDir%main.cpp" +,,
copy /b/v/y "%ProjDir%GitInfo.h.template" "%ProjDir%GitInfo.h"
FOR /F "tokens=* USEBACKQ" %%F IN (`git rev-parse --short HEAD`) DO (
SET GitInfo=%%F
)
SET GitDirty=
git diff --quiet
if errorlevel 1 (
SET GitDirty=-dirty
)
IF NOT "%CI%"=="" (
SET GitDirty=%GitDirty%-auto
)
ECHO #define GIT_HASH "%GitInfo%" >>"%ProjDir%GitInfo.h"
ECHO #define GIT_DIFF "%GitDirty%" >>"%ProjDir%GitInfo.h"
| E66666666/GTAVManualTransmission | Gears/PreBuild.bat | bat | mpl-2.0 | 446 |
@echo off
call ant clean
pause
| kralisch/jams | build/clean.bat | bat | lgpl-3.0 | 38 |
-incremental "work.system_tb" "work.glbl" -prj "system.prj" -L "xilinxcorelib_ver" -L "secureip" -L "unisims_ver" -L "unimacro_ver" -o "isim_system.exe"
| jairov4/accel-oil | impl/impl_test_pcie/simulation/behavioral/fuseRelaunch.cmd | bat | lgpl-3.0 | 154 |
::¹Ø±Õ»ØÏÔ
@echo off
::¹¤³ÌËùÔÚ·¾¶£¨sln·¾¶£©£¬¸ù¾Ý¸Ã½Å±¾ËùÔÚĿ¼½øÐÐÐÞ¸Ä
set ProjectPath=%cd%\..\..\src\source\eLTE_SDK
::¿½±´ÒÀÀµ¿â
::--------------------------------------------------------------------------------
set eLTE_Product_SDK_PATH=%ProjectPath%\..\..\platform\SDK
set eSDKClientLogAPI_PATH=%ProjectPath%\..\..\platform\eSDKClientLogAPI
set SDL2_PATH=%ProjectPath%\..\..\..\third_party\open_src\sdl2-2.0.3\release\x86
set Srv_OutPut_Debug_PATH=%ProjectPath%\output\debug\eLTE_NativeService
set Srv_OutPut_Release_PATH=%ProjectPath%\output\release\eLTE_NativeService
set Cli_OutPut_Debug_PATH=%ProjectPath%\output\debug\eLTE_SDK
set Cli_OutPut_Release_PATH=%ProjectPath%\output\release\eLTE_SDK
set ESDK_OCX_PROJECT_PATH=%cd%\..\..\src\source\eLTE_SDK_Player
set ESDK_OCX_OutPut_Debug_PATH=%ESDK_OCX_PROJECT_PATH%\output\debug
set ESDK_OCX_OutPut_Release_PATH=%ESDK_OCX_PROJECT_PATH%\output\release
set IVS_Player_PATH=%ProjectPath%\..\..\platform\IVS_Player
set IVS_NetSource_PATH=%ProjectPath%\..\..\self_dev\IVS_NetSource
set SECURE_PATH=%ProjectPath%\..\..\self_dev\eSDKSecurec\windows
::¿½±´debug¿â
::eLTE Product SDK
xcopy /Y "%eLTE_Product_SDK_PATH%\cert\*.*" "%Srv_OutPut_Debug_PATH%\cert\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\*.*" "%Srv_OutPut_Debug_PATH%\conf\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\cert\*.*" "%Srv_OutPut_Debug_PATH%\conf\cert\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\error\*.*" "%Srv_OutPut_Debug_PATH%\conf\error\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\dc\*.*" "%Srv_OutPut_Debug_PATH%\conf\dc\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\itm\*.*" "%Srv_OutPut_Debug_PATH%\conf\itm\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\ddp\*.*" "%Srv_OutPut_Debug_PATH%\conf\ddp\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\trace_info\*.*" "%Srv_OutPut_Debug_PATH%\conf\trace_info\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\cm_service\*.*" "%Srv_OutPut_Debug_PATH%\conf\cm_service\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\cm_service\en\*.*" "%Srv_OutPut_Debug_PATH%\conf\cm_service\en\"
xcopy /Y "%eLTE_Product_SDK_PATH%\*.*" "%Srv_OutPut_Debug_PATH%\"
xcopy /Y "%eLTE_Product_SDK_PATH%\sdk_plugins\*.dll" "%Srv_OutPut_Debug_PATH%\sdk_plugins\"
xcopy /Y "%eLTE_Product_SDK_PATH%\plugins\*.dll" "%Srv_OutPut_Debug_PATH%\plugins\"
xcopy /Y /E "%eLTE_Product_SDK_PATH%\res\*.*" "%Srv_OutPut_Debug_PATH%\res\"
xcopy /Y /E "%eLTE_Product_SDK_PATH%\pdb\*.*" "%Srv_OutPut_Debug_PATH%\pdb\"
::eSDKClientLogAPI
xcopy /Y "%eSDKClientLogAPI_PATH%\debug\*.dll" "%Srv_OutPut_Debug_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\eSDKClientLogCfg.ini" "%Srv_OutPut_Debug_PATH%\"
xcopy /Y "%SECURE_PATH%\eSDK_Secure_C.dll" "%Srv_OutPut_Debug_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\debug\*.dll" "%Cli_OutPut_Debug_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\eSDKClientLogCfg.ini" "%Cli_OutPut_Debug_PATH%\"
xcopy /Y "%SECURE_PATH%\eSDK_Secure_C.dll" "%Cli_OutPut_Debug_PATH%\"
::SDL2
xcopy /Y "%SDL2_PATH%\dll\*.dll" "%Cli_OutPut_Debug_PATH%\"
::¿½±´release¿â
::eLTE Product SDK
xcopy /Y "%eLTE_Product_SDK_PATH%\cert\*.*" "%Srv_OutPut_Release_PATH%\cert\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\*.*" "%Srv_OutPut_Release_PATH%\conf\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\cert\*.*" "%Srv_OutPut_Release_PATH%\conf\cert\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\error\*.*" "%Srv_OutPut_Release_PATH%\conf\error\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\dc\*.*" "%Srv_OutPut_Release_PATH%\conf\dc\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\itm\*.*" "%Srv_OutPut_Release_PATH%\conf\itm\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\ddp\*.*" "%Srv_OutPut_Release_PATH%\conf\ddp\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\trace_info\*.*" "%Srv_OutPut_Release_PATH%\conf\trace_info\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\cm_service\*.*" "%Srv_OutPut_Release_PATH%\conf\cm_service\"
xcopy /Y "%eLTE_Product_SDK_PATH%\conf\cm_service\en\*.*" "%Srv_OutPut_Release_PATH%\conf\cm_service\en\"
xcopy /Y "%eLTE_Product_SDK_PATH%\*.*" "%Srv_OutPut_Release_PATH%\"
xcopy /Y "%eLTE_Product_SDK_PATH%\sdk_plugins\*.dll" "%Srv_OutPut_Release_PATH%\sdk_plugins\"
xcopy /Y "%eLTE_Product_SDK_PATH%\plugins\*.dll" "%Srv_OutPut_Release_PATH%\plugins\"
xcopy /Y /E "%eLTE_Product_SDK_PATH%\res\*.*" "%Srv_OutPut_Release_PATH%\res\"
xcopy /Y /E "%eLTE_Product_SDK_PATH%\pdb\*.*" "%Srv_OutPut_Release_PATH%\pdb\"
::eSDKClientLogAPI
xcopy /Y "%eSDKClientLogAPI_PATH%\release\*.dll" "%Srv_OutPut_Release_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\release\eSDKClientLogCfg.ini" "%Srv_OutPut_Release_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\eSDKClientLogCfgOcx.ini" "%Srv_OutPut_Release_PATH%\"
xcopy /Y "%SECURE_PATH%\eSDK_Secure_C.dll" "%Srv_OutPut_Release_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\release\*.dll" "%Cli_OutPut_Release_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\debug\eSDKClientLogCfg.ini" "%Cli_OutPut_Release_PATH%\"
xcopy /Y "%eSDKClientLogAPI_PATH%\eSDKClientLogCfgOcx.ini" "%Cli_OutPut_Release_PATH%\"
xcopy /Y "%SECURE_PATH%\eSDK_Secure_C.dll" "%Cli_OutPut_Release_PATH%\"
::SDL2
xcopy /Y "%SDL2_PATH%\dll\*.dll" "%Cli_OutPut_Release_PATH%\"
::--------------------------------------------------------------------------------
::±àÒë
::--------------------------------------------------------------------------------
::±àÒë eLTE_SDK Debug
echo "--------- ±àÒë eLTE_SDK Debug start ---------"
@"%VS100COMNTOOLS%\..\IDE\devenv.com" "%ProjectPath%\eLTE_SDK.sln" /Rebuild "Debug|Win32" /out builddebug.log
echo "--------- ±àÒë eLTE_SDK Debug end ---------"
xcopy /Y "%Srv_OutPut_Debug_PATH%\*.pdb" "%Srv_OutPut_Debug_PATH%\pdb\"
::xcopy /Y "debug\eLTE_SDK\*.pdb" "debug\eLTE_SDK\pdb\"
xcopy /Y "%Cli_OutPut_Debug_PATH%\*.dll" "%ESDK_OCX_OutPut_Debug_PATH%\"
xcopy /Y "%Cli_OutPut_Debug_PATH%\*.ini" "%ESDK_OCX_OutPut_Debug_PATH%\"
::IVS Player
xcopy /Y "%IVS_Player_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Debug_PATH%\"
xcopy /Y "%IVS_Player_PATH%\dll\*.conf" "%ESDK_OCX_OutPut_Debug_PATH%\"
::IVS NetSource
xcopy /Y "%IVS_NetSource_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Debug_PATH%\"
xcopy /Y "%Cli_OutPut_Debug_PATH%\*.dll" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\"
xcopy /Y "%Cli_OutPut_Debug_PATH%\*.ini" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\"
::IVS Player
xcopy /Y "%IVS_Player_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\"
xcopy /Y "%IVS_Player_PATH%\dll\*.conf" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\"
::IVS NetSource
xcopy /Y "%IVS_NetSource_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\"
::±àÒë eLTE_SDK Release
echo "--------- ±àÒë eLTE_SDK Release start ---------"
@"%VS100COMNTOOLS%\..\IDE\devenv.com" "%ProjectPath%\eLTE_SDK.sln" /Rebuild "Release|Win32" /out buildrelease.log
echo "--------- ±àÒë eLTE_SDK Release end ---------"
::--------------------------------------------------------------------------------
xcopy /Y "%Cli_OutPut_Release_PATH%\*.dll" "%ESDK_OCX_OutPut_Release_PATH%\"
xcopy /Y "%Cli_OutPut_Release_PATH%\*.ini" "%ESDK_OCX_OutPut_Release_PATH%\"
::IVS Player
xcopy /Y "%IVS_Player_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Release_PATH%\"
xcopy /Y "%IVS_Player_PATH%\dll\*.conf" "%ESDK_OCX_OutPut_Release_PATH%\"
::IVS NetSource
xcopy /Y "%IVS_NetSource_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Release_PATH%\"
::xcopy /Y "release\eLTE_SDK\*.pdb" "release\eLTE_SDK\pdb\"
xcopy /Y "%Cli_OutPut_Release_PATH%\*.dll" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\"
xcopy /Y "%Cli_OutPut_Release_PATH%\*.ini" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\"
::IVS Player
xcopy /Y "%IVS_Player_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\"
xcopy /Y "%IVS_Player_PATH%\dll\*.conf" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\"
::IVS NetSource
xcopy /Y "%IVS_NetSource_PATH%\dll\*.dll" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\"
::±àÒë
::--------------------------------------------------------------------------------
::±àÒë eLTE_SDK_OCX Debug
echo "--------- ±àÒë eLTE_SDK_OCX Debug start ---------"
@"%VS100COMNTOOLS%\..\IDE\devenv.com" "%ESDK_OCX_PROJECT_PATH%\eLTE_Player.sln" /Rebuild "Debug|Win32" /out builddebug.log
echo "--------- ±àÒë eLTE_SDK_OCX Debug end ---------"
::xcopy /Y "%Srv_OutPut_Debug_PATH%\*.pdb" "%Srv_OutPut_Debug_PATH%\pdb\"
::xcopy /Y "debug\eLTE_SDK\*.pdb" "debug\eLTE_SDK\pdb\"
xcopy /Y "%ESDK_OCX_OutPut_Debug_PATH%\*.ocx" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\"
xcopy /Y "%ESDK_OCX_OutPut_Debug_PATH%\*.pdb" "%ESDK_OCX_OutPut_Debug_PATH%\eLTE_SDK_Player\pdb\"
::±àÒë eLTE_SDK_OCX Release
echo "--------- ±àÒë eLTE_SDK_OCX Release start ---------"
@"%VS100COMNTOOLS%\..\IDE\devenv.com" "%ESDK_OCX_PROJECT_PATH%\eLTE_Player.sln" /Rebuild "Release|Win32" /out buildrelease.log
echo "--------- ±àÒë eLTE_SDK_OCX Release end ---------"
xcopy /Y "%ESDK_OCX_OutPut_Release_PATH%\*.ocx" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\"
xcopy /Y "%ESDK_OCX_OutPut_Release_PATH%\*.pdb" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player\pdb\"
::--------------------------------------------------------------------------------
::xcopy /Y "release\eLTE_SDK\*.pdb" "release\eLTE_SDK\pdb\"
::»ñµÃµ±Ç°Ê±¼ä£¬×÷ΪÉú³É°æ±¾µÄĿ¼Ãû
for /F "tokens=1-4 delims=-/ " %%i in ('date /t') do (
set Year=%%i
set Month=%%j
set Day=%%k
set DayOfWeek=%%l
)
for /F "tokens=1-2 delims=: " %%i in ('time /t') do (
set Hour=%%i
set Minute=%%j
)
::ÉèÖø÷±äÁ¿Ãû
set DateTime=%Year%-%Month%-%Day%-%Hour%-%Minute%
set DateOnly=%Year%-%Month%-%Day%
::¹¤³ÌËùÔÚ·¾¶£¨sln·¾¶£©£¬¸ù¾Ý¸Ã½Å±¾ËùÔÚĿ¼½øÐÐÐÞ¸Ä
set ProjectPath=%cd%\..\..\src\source\eLTE_SDK
::Éú³ÉµÄѹËõ°ü·¾¶£¬¸ù¾ÝÒªÇó½øÐÐÐÞ¸Ä
set ZipPath=%ProjectPath%\..\..\..\..\00.Release\%DateOnly%
set ZipName=%ZipPath%\eSDK_eLTE_OCX_V2.1.10.zip
::´ò°ü
::--------------------------------------------------------------------------------
::ÉèÖø÷±äÁ¿Ãû
if "%PROCESSOR_ARCHITECTURE%"=="x86" goto x86
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto x64
:x86
set WinRarRoot=C:\Program Files\WinRAR
goto setfinish
:x64
set WinRarRoot=C:\Program Files (x86)\WinRAR
:setfinish
::´´½¨Ä¿Â¼
mkdir "%ZipPath%\"
::´ò°üeLTE SDK Debug
echo "--------- ´ò°ü eLTE SDK Debug start ---------"
(chdir "%ProjectPath%\output\")
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\*.exe"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\*.ini"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\*.ocx"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\*.bat"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\*.conf"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\cert\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\sdk_plugins\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\plugins\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\error\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\dc\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\itm\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\ddp\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\trace_info\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\cert\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\cm_service\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\conf\cm_service\en\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\sign\*.pem"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\res"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_NativeService\pdb\*.pdb"
(chdir "%ESDK_OCX_PROJECT_PATH%\output\")
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\*.ini"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\*.conf"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\*.dll"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\pdb\*.pdb"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\Lang\*.ini"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\Skin\*.png"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\Skin\ToolBar\*.png"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\Skin\Caption\*.png"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\*.bat"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\*.ocx"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "debug\eLTE_SDK_Player\pdb\*.pdb"
echo "--------- ´ò°ü eLTE SDK Debug end ---------"
::´ò°üeLTE SDK Release
echo "--------- ´ò°ü eLTE SDK Release start ---------"
(chdir "%ProjectPath%\output\")
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\*.exe"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\*.ini"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\*.dll"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\*.ocx"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\*.bat"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\*.conf"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\sdk_plugins\*.dll"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\plugins\*.dll"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\openssl\lib\*.dll"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.cnf"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.jks"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.keystore"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.pem"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.txt"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.xsd"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.xml"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\*.ini"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\error\*.xsd"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\error\*.xml"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\dc\*.cnf"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\dc\*.xml"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\cm_service\*.xml"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\conf\cm_service\en\*.xml"
REM "%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_NativeService\sign\*.pem"
(chdir "%ESDK_OCX_PROJECT_PATH%\output\")
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\*.ini"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\*.conf"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\pdb\*.pdb"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\Lang\*.ini"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\Skin\*.png"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\Skin\ToolBar\*.png"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\Skin\Caption\*.png"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\*.bat"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\*.ocx"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "release\eLTE_SDK_Player\pdb\*.pdb"
echo "--------- ´ò°ü eLTE SDK Release end ---------"
echo "--------- ´ò°ü eLTE OCX Demo Source start ---------"
set ZipName=%ZipPath%\eSDK_eLTE_OCX_Demo_Source_CPP.zip
(chdir "%ProjectPath%\..\..\..\sample\eLTE_Player\eLTE_PlayerDemo\")
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo.sln"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\res\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.cpp"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.h"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.rc"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.vcxproj"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.filters"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.txt"
"%WinRarRoot%\Rar.exe" u -s- -m1 "%ZipName%" "eLTE_PlayerDemo\*.rc"
(chdir "%ProjectPath%\output\")
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\*.exe"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\*.ini"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\*.ocx"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\*.bat"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\*.conf"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\cert\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\sdk_plugins\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\plugins\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\error\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\dc\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\itm\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\ddp\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\trace_info\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\cert\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\cm_service\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\conf\cm_service\en\*.*"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\sign\*.pem"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\res"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "debug\eLTE_NativeService\pdb\*.pdb"
(chdir "%ESDK_OCX_PROJECT_PATH%\output\")
::¿½±´readme.txt
xcopy /Y "..\eLTE_Player\ReadMe.txt" "%ESDK_OCX_OutPut_Release_PATH%\eLTE_SDK_Player"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\*.ini"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\*.conf"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\*.dll"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\pdb\*.pdb"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\Lang\*.ini"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\Skin\*.png"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\Skin\ToolBar\*.png"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\Skin\Caption\*.png"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\*.bat"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\*.ocx"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\pdb\*.pdb"
"%WinRarRoot%\Rar.exe" u -s- -m1 -ap"eLTE_SDK_OCX" "%ZipName%" "release\eLTE_SDK_Player\ReadMe.txt"
echo "--------- ´ò°ü eLTE OCX Demo Source end ---------"
| Huawei/eSDK_eLTE_SDK_Windows | CI/script/compile_sdk_player.bat | bat | apache-2.0 | 20,991 |
SET MBT=%GOPATH%\src\github.com\mbtproject\mbt
SET LIBGIT2_PATH=%MBT%\libgit2
SET OS=windows
SET ARCH=x86
set OUT="mbt.exe"
go version
cd %LIBGIT2_PATH%
mkdir -p install/lib
mkdir build
cd build
cmake -DTHREADSAFE=ON -DBUILD_CLAR=OFF -DBUILD_SHARED_LIBS=ON -DCMAKE_C_FLAGS=-fPIC -DCMAKE_INSTALL_PREFIX=../install -DUSE_SSH=OFF -DCURL=OFF ..
cmake --build .
cmake --build . --target install
SET PKG_CONFIG_PATH=%LIBGIT2_PATH%/build
for /f %%i in ('pkg-config --libs %LIBGIT2_PATH%\build\libgit2.pc') do set CGO_LDFLAGS=%%i
cd %MBT%
rd /s /q build
mkdir build
IF "%APPVEYOR_REPO_TAG_NAME%"=="" (
go run scripts/update_version.go -custom "%APPVEYOR_REPO_COMMIT%"
)
go get -t
go get github.com/stretchr/testify
copy %LIBGIT2_PATH%\install\bin\git2.dll lib\git2.dll
go test -v ./...
go build -o "build/%OUT%"
copy %LIBGIT2_PATH%\install\bin\git2.dll build\git2.dll
powershell -Command "Compress-Archive -Path build\* -DestinationPath build\mbt_windows_x86.zip"
dir build
| mbtproject/mbt | scripts/build_win.bat | bat | apache-2.0 | 981 |
@echo off
IF "%1"=="" GOTO Stop
"%JAVA_HOME%\bin\java" -DrepeatInterval=120 -Dlog4j.debug=true -Dlog4j.configuration="file:log4j.xml" -jar ../../build/libs/build-whisperer-client-1.5.0-SNAPSHOT-all.jar %1\context.xml
GOTO End
:Stop
echo -----------------------------------------------------------------
echo Please provide the directory name of the example you wish to run.
echo -
echo Example usage: run.bat json-to-log
echo -----------------------------------------------------------------
:End | leojhartiv/build-whisperer | build-whisperer-client/etc/examples/runExample.bat | bat | apache-2.0 | 508 |
@echo off
pushd "%~dp0"
rem This script will configure the JVM memory constraints and fire up the SBT instance.
rem If no arguments were provided to the script, SBT will start in shell mode.
rem -XX:MaxPermSize JVM option is not required if you are running on JVM 8+
rem input.encoding is neccessary to fix jline problems in SBT shell
java ^
-XX:MaxPermSize=256m ^
-Dinput.encoding=Cp1252 ^
-Xss2m -Xms1g -Xmx1g ^
-XX:+TieredCompilation -XX:+CMSClassUnloadingEnabled ^
-XX:+UseNUMA -XX:+UseParallelGC ^
-jar project\strap\gruj_vs_sbt-launch-0.13.x.jar ^
%*
popd
| melezov/pgscala | sbt.bat | bat | bsd-3-clause | 581 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_WOPI.MS_WOPI_S17_FileLevelItems.MSWOPI_S17_TC18_Lock_Fail404 /testcontainer:..\..\MS-WOPI\TestSuite\bin\Debug\MS-WOPI_TestSuite.dll /runconfig:..\..\MS-WOPI\MS-WOPI.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | FileSyncandWOPI/Source/Scripts/MS-WOPI/RunMSWOPI_S17_TC18.cmd | bat | mit | 285 |
cmd_drivers/hid/usbhid/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/hid/usbhid/built-in.o drivers/hid/usbhid/usbhid.o
| friedrich420/Note-3-AEL-Kernel | drivers/hid/usbhid/.built-in.o.cmd | bat | gpl-2.0 | 175 |
taskkill -im freecad.exe /f
@echo OFF
echo cadquery-freecad-module required
@echo ON
cd %~p0
start "" "d:\FreeCAD_015\bin\freecad" main_generator.py R_Array_SIP
:: pause | easyw/kicad-3d-models-in-freecad | cadquery/FCAD_script_generator/Resistor_THT/create_model-example.bat | bat | gpl-2.0 | 171 |
cmd_arch/arm/perfmon/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o arch/arm/perfmon/built-in.o arch/arm/perfmon/perf-function-hooks.o
| friedrich420/Note-3-AEL-Kernel | arch/arm/perfmon/.built-in.o.cmd | bat | gpl-2.0 | 182 |
powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
choco install nodejs -y
call npm install -g grunt-cli bower
cd src\fsharp-angular-web
call npm install grunt
call npm install
call bower install
call dnvm install 1.0.0-beta7
call dnvm upgrade
call dnvm update-self
call dnvm list
call dnvm use 1.0.0-beta7
call %userprofile%\.dnx\runtimes\dnx-clr-win-x86.1.0.0-beta7\bin\dnu restore
cd ..
cd ..
.paket\paket update
echo "Finished" > setup_done.txt
| davidpodhola/fsharp-angular | setup.cmd | bat | gpl-2.0 | 590 |
@echo off
setlocal
rem brief: Compress directory
rem usage: gzipd zip_name dir_name
7z.exe a %1 %2
endlocal
@echo on | hyller/GladiatorFirmware | Scripts/zipd.bat | bat | unlicense | 128 |
@echo off
rem ***************************************************************************
rem * _ _ ____ _
rem * Project ___| | | | _ \| |
rem * / __| | | | |_) | |
rem * | (__| |_| | _ <| |___
rem * \___|\___/|_| \_\_____|
rem *
rem * Copyright (C) 2014 - 2016, Steve Holme, <[email protected]>.
rem *
rem * This software is licensed as described in the file COPYING, which
rem * you should have received as part of this distribution. The terms
rem * are also available at https://curl.haxx.se/docs/copyright.html.
rem *
rem * You may opt to use, copy, modify, merge, publish, distribute and/or sell
rem * copies of the Software, and permit persons to whom the Software is
rem * furnished to do so, under the terms of the COPYING file.
rem *
rem * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
rem * KIND, either express or implied.
rem *
rem ***************************************************************************
:begin
rem Check we are running on a Windows NT derived OS
if not "%OS%" == "Windows_NT" goto nodos
rem Set our variables
setlocal
set CHECK_LIB=TRUE
set CHECK_SRC=TRUE
:parseArgs
if "%~1" == "" goto prerequisites
if /i "%~1" == "-?" (
goto syntax
) else if /i "%~1" == "-h" (
goto syntax
) else if /i "%~1" == "-help" (
goto syntax
) else if /i "%~1" == "lib" (
set CHECK_LIB=TRUE
set CHECK_SRC=FALSE
) else if /i "%~1" == "src" (
set CHECK_LIB=FALSE
set CHECK_SRC=TRUE
) else (
if not defined SRC_DIR (
set SRC_DIR=%~1%
) else (
goto unknown
)
)
shift & goto parseArgs
:prerequisites
rem Check we have Perl in our path
echo %PATH% | findstr /I /C:"\Perl" 1>nul
if errorlevel 1 (
rem It isn't so check we have it installed and set the path if it is
if exist "%SystemDrive%\Perl" (
set "PATH=%SystemDrive%\Perl\bin;%PATH%"
) else (
if exist "%SystemDrive%\Perl64" (
set "PATH=%SystemDrive%\Perl64\bin;%PATH%"
) else (
goto noperl
)
)
)
:configure
if "%SRC_DIR%" == "" set SRC_DIR=..
if not exist "%SRC_DIR%" goto nosrc
:start
if "%CHECK_SRC%" == "TRUE" (
rem Check the src directory
if exist %SRC_DIR%\src (
for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" -Wtool_hugehelp.c "%%i"
for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" "%%i"
)
)
if "%CHECK_LIB%" == "TRUE" (
rem Check the lib directory
if exist %SRC_DIR%\lib (
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" "%%i"
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake "%%i"
)
rem Check the lib\vtls directory
if exist %SRC_DIR%\lib\vtls (
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
)
)
goto success
:syntax
rem Display the help
echo.
echo Usage: checksrc [product] [directory]
echo.
echo Product:
echo.
echo lib - Scan the libcurl source
echo src - Scan the command-line tool source
echo.
echo directory - Specifies the curl source directory
goto success
:unknown
echo.
echo Error: Unknown argument '%1'
goto error
:nodos
echo.
echo Error: Only a Windows NT based Operating System is supported
goto error
:noperl
echo.
echo Error: Perl is not installed
goto error
:nosrc
echo.
echo Error: "%SRC_DIR%" does not exist
goto error
:error
if "%OS%" == "Windows_NT" endlocal
exit /B 1
:success
endlocal
exit /B 0
| mikedlowis-prototypes/albase | source/curl/projects/checksrc.bat | bat | bsd-2-clause | 4,106 |
call mvn clean
set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n -Xms64m -Xmx128m
mvn hpi:run -npu -Djetty.port=8090 | Axway/VersionOne.Integration.Jenkins | runDebug.bat | bat | bsd-3-clause | 151 |
@if "%1" == "" goto :needpackage
..\..\packages\NuGet.CommandLine.3.4.3\tools\nuget.exe push -Source "packages" -ApiKey VSTS %1
@goto end
:needpackage
@echo "You need to pass a package as first parameter"
@goto end
:end | stevengum97/BotBuilder | CSharp/Library/Microsoft.Bot.Connector.NetFramework/pushpackage.cmd | bat | mit | 222 |
copy \\buzz\d$\projects\Compiled\RightClick\Server\bin\debug\server.exe C:\RightClick
start C:\RightClick\server.exe
pause
| compiledtom/rightclick | Server/runserver.bat | bat | bsd-3-clause | 126 |
@echo off
set HOME=%~dp0
%CYGWIN_BIN%\bash --login -i | kakashidinho/HQEngine | HQEngine/Android/test/startcygwin-here.bat | bat | mit | 57 |
@ECHO OFF
SETLOCAL
set origdir=%cd%
cd /d %~dp0..\..\
set base_dir=%cd%
cd /d %origdir%
echo copy 3rdParty/7zip
xcopy "%base_dir%/Source/3rdParty/7zip" "%base_dir%/Android/jni/3rdParty/7zip/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy 3rdParty/png
xcopy "%base_dir%/Source/3rdParty/png" "%base_dir%/Android/jni/3rdParty/png/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy 3rdParty/zlib
xcopy "%base_dir%/Source/3rdParty/zlib" "%base_dir%/Android/jni/3rdParty/zlib/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy Common
xcopy "%base_dir%/Source/Common" "%base_dir%/Android/jni/Common/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy PluginInput
xcopy "%base_dir%/Source/Android/PluginInput" "%base_dir%/Android/jni/Plugin-Input/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy PluginRSP
xcopy "%base_dir%/Source/Android/PluginRSP" "%base_dir%/Android/jni/Plugin-RspHle/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy Project64-bridge
xcopy "%base_dir%/Source/Android/Bridge" "%base_dir%/Android/jni/Project64-bridge/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy Project64-audio
xcopy "%base_dir%/Source/Project64-audio" "%base_dir%/Android/jni/Project64-audio/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy Project64-core
xcopy "%base_dir%/Source/Project64-core" "%base_dir%/Android/jni/Project64-core/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy Project64-video
xcopy "%base_dir%/Source/Project64-video" "%base_dir%/Android/jni/Project64-video/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
echo copy Settings
xcopy "%base_dir%/Source/Settings" "%base_dir%/Android/jni/Settings/" /D /I /F /Y /E
IF %ERRORLEVEL% NEQ 0 (exit /B 1)
ENDLOCAL
exit /B 0
| project64/project64 | Android/Script/copySource.cmd | bat | gpl-2.0 | 1,790 |
@echo off
title OpenRA.Utility.exe
set ENGINE_DIR=..
:choosemod
echo ----------------------------------------
echo.
call bin\OpenRA.Utility.exe
echo Enter --exit to exit
set /P mod="Please enter a modname: OpenRA.Utility.exe "
if /I "%mod%" EQU "--exit" (exit /b)
if /I "%mod%" EQU "ra" (goto help)
if /I "%mod%" EQU "cnc" (goto help)
if /I "%mod%" EQU "ts" (goto help)
if /I "%mod%" EQU "d2k" (goto help)
echo.
echo Unknown mod: %mod%
echo.
goto choosemod
:help
echo.
echo ----------------------------------------
echo.
echo OpenRA.Utility.exe %mod%
call bin\OpenRA.Utility.exe %mod%
:start
echo.
echo ----------------------------------------
echo.
echo Script options:
echo --exit to exit
echo --help to view the help
echo --mod to choose a new mod
echo.
set /P command="Please enter a command: OpenRA.Utility.exe %mod% "
if /I "%command%" EQU "--exit" (exit /b)
if /I "%command%" EQU "--help" (goto help)
if /I "%command%" EQU "--mod" (goto choosemod)
echo.
echo ----------------------------------------
echo.
echo OpenRA.Utility.exe %mod% %command%
call bin\OpenRA.Utility.exe %mod% %command%
goto start
| MustaphaTR/OpenRA | utility.cmd | bat | gpl-3.0 | 1,114 |
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
:: Contact: http://www.qt-project.org/legal
::
:: This file is part of the tools applications of the Qt Toolkit.
::
:: $QT_BEGIN_LICENSE:LGPL$
:: Commercial License Usage
:: Licensees holding valid commercial Qt licenses may use this file in
:: accordance with the commercial license agreement provided with the
:: Software or, alternatively, in accordance with the terms contained in
:: a written agreement between you and Digia. For licensing terms and
:: conditions see http://qt.digia.com/licensing. For further information
:: use the contact form at http://qt.digia.com/contact-us.
::
:: GNU Lesser General Public License Usage
:: Alternatively, this file may be used under the terms of the GNU Lesser
:: General Public License version 2.1 as published by the Free Software
:: Foundation and appearing in the file LICENSE.LGPL included in the
:: packaging of this file. Please review the following information to
:: ensure the GNU Lesser General Public License version 2.1 requirements
:: will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
::
:: In addition, as a special exception, Digia gives you certain additional
:: rights. These rights are described in the Digia Qt LGPL Exception
:: version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
::
:: GNU General Public License Usage
:: Alternatively, this file may be used under the terms of the GNU
:: General Public License version 3.0 as published by the Free Software
:: Foundation and appearing in the file LICENSE.GPL included in the
:: packaging of this file. Please review the following information to
:: ensure the GNU General Public License version 3.0 requirements will be
:: met: http://www.gnu.org/copyleft/gpl.html.
::
::
:: $QT_END_LICENSE$
::
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@echo off
set QTSRC=%~dp0
set QTDIR=%CD%
if not exist %QTSRC%\.gitignore goto sconf
echo Please wait while bootstrapping configure ...
for %%C in (cl.exe icl.exe g++.exe perl.exe) do set %%C=%%~$PATH:C
if "%perl.exe%" == "" (
echo Perl not found in PATH. Aborting. >&2
exit /b 1
)
if not exist mkspecs (
md mkspecs
if errorlevel 1 goto exit
)
perl %QTSRC%bin\syncqt.pl -minimal -module QtCore -outdir %QTDIR% %QTSRC%
if errorlevel 1 goto exit
if not exist tools\configure (
md tools\configure
if errorlevel 1 goto exit
)
cd tools\configure
if errorlevel 1 goto exit
echo #### Generated by configure.bat - DO NOT EDIT! ####> Makefile
echo/>> Makefile
for /f "tokens=3 usebackq" %%V in (`findstr QT_VERSION_STR %QTSRC%\src\corelib\global\qglobal.h`) do @echo QTVERSION = %%~V>> Makefile
if not "%cl.exe%" == "" (
echo CXX = cl>>Makefile
echo EXTRA_CXXFLAGS =>>Makefile
rem This must have a trailing space.
echo QTSRC = %QTSRC% >> Makefile
set tmpl=win32
set make=nmake
) else if not "%icl.exe%" == "" (
echo CXX = icl>>Makefile
echo EXTRA_CXXFLAGS = /Zc:forScope>>Makefile
rem This must have a trailing space.
echo QTSRC = %QTSRC% >> Makefile
set tmpl=win32
set make=nmake
) else if not "%g++.exe%" == "" (
echo CXX = g++>>Makefile
echo EXTRA_CXXFLAGS =>>Makefile
rem This must NOT have a trailing space.
echo QTSRC = %QTSRC:\=/%>> Makefile
set tmpl=mingw
set make=mingw32-make
) else (
echo No suitable compiler found in PATH. Aborting. >&2
cd ..\..
exit /b 1
)
echo/>> Makefile
type %QTSRC%tools\configure\Makefile.%tmpl% >> Makefile
%make%
if errorlevel 1 (cd ..\.. & exit /b 1)
cd ..\..
:conf
configure.exe -srcdir %QTSRC% %*
goto exit
:sconf
%QTSRC%\configure.exe %*
:exit
| gskachkov/phantomjs | src/qt/qtbase/configure.bat | bat | bsd-3-clause | 3,766 |
rem set up Version Number
call ..\src\Build\BuildVersion.bat
rem Build FreeCAD
call ..\BuildAll.bat
rem installer
call BuildInstaller.bat
@pause
| yantrabuddhi/FreeCAD | src/WindowsInstaller/BuildRelease.bat | bat | lgpl-2.1 | 164 |
:: Set working dir
cd %~dp0 & cd ..
:user_configuration
:: Static path to Flex SDK
set FLEX_SDK=e:\Flash\SDK_Air190
:: Use FD supplied SDK path if executed from FD
if exist "%FD_CUR_SDK%" set FLEX_SDK=%FD_CUR_SDK%
:validation
if not exist "%FLEX_SDK%\bin" goto flexsdk
goto succeed
:flexsdk
echo.
echo ERROR: incorrect path to Flex SDK in 'bat\SetupSDK.bat'
echo.
echo Looking for: %FLEX_SDK%\bin
echo.
if %PAUSE_ERRORS%==1 pause
exit
:succeed
set PATH=%FLEX_SDK%\bin;%PATH%
| Klug76/feathers_sandbox | bat/SetupSDK.bat | bat | mit | 481 |
@echo off
setlocal
set FILENAME=%1
if "%FILENAME%" == "" goto:eof
set MINT_DIR=%~dp0
set MINT_LEXER_DIR=Lex\States
set MINT_GEN_DIR=gen\%MINT_LEXER_DIR%
set INPUT_FILENAME=%FILENAME%.csrl
set OUTPUT_FILENAME=%FILENAME%.cs
cd "%MINT_DIR%"
::set RAGEL_OPTIONS=-F1
set RAGEL_OPTIONS=-T0
ragel -A -L --error-format=msvc %RAGEL_OPTIONS% "%MINT_LEXER_DIR%\%INPUT_FILENAME%" -o "%MINT_GEN_DIR%\%OUTPUT_FILENAME%"
endlocal
| SilverPhoenix99/mintcs | Mint.Parser/GenLexer.bat | bat | mit | 445 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.