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
:: Don't show these commands to the user @ECHO off :: Keep variables local, and expand at execution time not parse time SETLOCAL enabledelayedexpansion :: Set the title of the window TITLE Electric Book :: Start and reset a bunch of variables :begin SET process=0 SET bookfolder= SET config= SET imageset= SET imageconfig= SET repeat= SET baseurl= SET location= SET firstfile= set epubIncludeMathJax= :: Ask what we're going to be doing. ECHO Electric Book options ECHO --------------------- ECHO. ECHO 1. Create a print PDF ECHO 2. Create a screen PDF ECHO 3. Run as a website ECHO 4. Create an epub ECHO 5. Export to Word ECHO 6. Install or update dependencies ECHO 7. Exit ECHO. SET /p process=Enter a number and hit return. IF "%process%"=="1" GOTO printpdf IF "%process%"=="2" GOTO screenpdf IF "%process%"=="3" GOTO website IF "%process%"=="4" GOTO epub IF "%process%"=="5" GOTO word IF "%process%"=="6" GOTO install IF "%process%"=="7" GOTO:EOF GOTO choose :: :: :: :: :: :: :: PRINT PDF :: :: :: :: :: :: :: :printpdf :: Encouraging message ECHO. ECHO Okay, let's make a print-ready PDF. ECHO. :: Remember where we are by assigning a variable to the current directory SET location=%~dp0 :: Ask user which folder to process :printpdfchoosefolder SET /p bookfolder=Which book folder are we processing? (Hit enter for default 'book' folder.) IF "%bookfolder%"=="" SET bookfolder=book if not exist "%bookfolder%\*.*" echo Sorry, %bookfolder% doesn't exist. Try again. && goto printpdfchoosefolder echo. :: Ask if we're outputting the files from a subdirectory :printpdfwhatsubdirectory SET /p subdirectory=If you're outputting files in a subdirectory (e.g. a translation), type its name. Otherwise, hit enter. if not exist "%bookfolder%\%subdirectory%\*.*" echo Sorry, Sorry, %bookfolder%\%subdirectory% doesn't exist. Try again. doesn't exist. && goto printpdfwhatsubdirectory echo. :print-pdf-otherconfigs :: Ask the user to add any extra Jekyll config files, e.g. _config.images.print-pdf.yml ECHO. ECHO Any extra config files? ECHO Enter filenames (including any relative path), comma separated, no spaces. E.g. ECHO _configs/_config.myconfig.yml ECHO If not, just hit return. ECHO. SET /p config= ECHO. :: Ask if we're processing MathJax, so we know whether to pass the HTML through PhantomJS first ECHO Does this book use MathJax? If no, hit enter. If yes, hit any key then enter. SET /p print-pdf-mathjax= :: Loop back to this point to refresh the build and PDF :printpdfrefresh :: let the user know we're on it! ECHO Generating HTML... :: ...and run Jekyll to build new HTML :: with MathJax enabled if necessary IF "%print-pdf-mathjax%"=="" GOTO printpdfnomathjax CALL bundle exec jekyll build --config="_config.yml,_configs/_config.print-pdf.yml,_configs/_config.mathjax-enabled.yml,%config%" GOTO printpdfjekylldone :printpdfnomathjax CALL bundle exec jekyll build --config="_config.yml,_configs/_config.print-pdf.yml,%config%" :printpdfjekylldone :: Skip PhantomJS if we're not using MathJax. IF "%print-pdf-mathjax%"=="" GOTO printpdfafterphantom :: Run this through phantom for extra magic, :: We have to run the PhantomJS script from the folder it's in :: for the directory paths to work. CD _site\assets\js CALL phantomjs render-mathjax.js CD "%location%" :printpdfafterphantom :: Navigate into the book's folder in _site output CD _site\%bookfolder%\text\"%subdirectory%" :: Let the user know we're now going to make the PDF ECHO Creating PDF... :: Check if the _output folder exists, or create it if not. :: (this check is currently not working in some setups, disabling it) rem IF not exist ..\..\..\_output\NUL rem MKDIR ..\..\..\_output :: Run prince, showing progress (-v), printing the docs in file-list :: and saving the resulting PDF to the _output folder :: (For some reason this has to be run with CALL) SET print-pdf-filename=%bookfolder%-%subdirectory% IF "%subdirectory%"=="" SET print-pdf-filename=%bookfolder% CALL prince -v -l file-list -o "%location%_output\%print-pdf-filename%.pdf" --javascript :: Navigate back to where we began. CD "%location%" :: Tell the user we're done ECHO Done! Opening PDF... :: Navigate to the _output folder... CD _output :: and open the PDF we just created :: (`start` so the PDF app opens as a separate process, doesn't hold up this script) start %print-pdf-filename%.pdf :: Navigate back to where we began. CD ..\ :: Let the user easily refresh the PDF by running jekyll b and prince again SET repeat= SET /p repeat=Enter to run again, or any other key and enter to stop. IF "%repeat%"=="" GOTO printpdfrefresh ECHO. GOTO begin :: :: :: :: :: :: :: SCREEN PDF :: :: :: :: :: :: :: :screenpdf :: Encouraging message ECHO. ECHO Okay, let's make a screen PDF. ECHO. :: Remember where we are by assigning a variable to the current directory SET location=%~dp0 :: Ask user which folder to process :screenpdfchoosefolder SET /p bookfolder=Which book folder are we processing? (Hit enter for default 'book' folder.) IF "%bookfolder%"=="" SET bookfolder=book if not exist "%bookfolder%\*.*" echo Sorry, %bookfolder% doesn't exist. Try again. && goto screenpdfchoosefolder echo. :: Ask if we're outputting the files from a subdirectory :screenpdfwhatsubdirectory SET /p subdirectory=If you're outputting files in a subdirectory (e.g. a translation), type its name. Otherwise, hit enter. if not exist "%bookfolder%\%subdirectory%\*.*" echo Sorry, Sorry, %bookfolder%\%subdirectory% doesn't exist. Try again. doesn't exist. && goto screenpdfwhatsubdirectory echo. :screen-pdf-otherconfigs :: Ask the user to add any extra Jekyll config files, e.g. _config.images.print-pdf.yml ECHO. ECHO Any extra config files? ECHO Enter filenames (including any relative path), comma separated, no spaces. E.g. ECHO _configs/_config.myconfig.yml ECHO If not, just hit return. ECHO. SET /p config= ECHO. :: Ask if we're processing MathJax, so we know whether to pass the HTML through PhantomJS first ECHO Does this book use MathJax? If no, hit enter. If yes, hit any key then enter. SET /p screen-pdf-mathjax= :: Loop back to this point to refresh the build and PDF :screenpdfrefresh :: let the user know we're on it! ECHO Generating HTML... :: ...and run Jekyll to build new HTML :: with MathJax enabled if necessary IF "%screen-pdf-mathjax%"=="" GOTO screenpdfnomathjax CALL bundle exec jekyll build --config="_config.yml,_configs/_config.screen-pdf.yml,_configs/_config.mathjax-enabled.yml,%config%" GOTO screenpdfjekylldone :screenpdfnomathjax CALL bundle exec jekyll build --config="_config.yml,_configs/_config.screen-pdf.yml,%config%" :screenpdfjekylldone :: Skip PhantomJS if we're not using MathJax. IF "%screen-pdf-mathjax%"=="" GOTO screenpdfafterphantom :: Run this through phantom for extra magic, :: We have to run the PhantomJS script from the folder it's in :: for the directory paths to work. CD _site\assets\js CALL phantomjs render-mathjax.js CD "%location%" :screenpdfafterphantom :: Navigate into the book's folder in _site output CD _site\%bookfolder%\text\"%subdirectory%" :: Let the user know we're now going to make the PDF ECHO Creating PDF... :: Run prince, showing progress (-v), printing the docs in file-list :: and saving the resulting PDF to the _output folder :: (For some reason this has to be run with CALL) SET screen-pdf-filename=%bookfolder%-%subdirectory% IF "%subdirectory%"=="" SET screen-pdf-filename=%bookfolder% CALL prince -v -l file-list -o "%location%_output\%screen-pdf-filename%.pdf" --javascript :: Navigate back to where we began. CD "%location%" :: Tell the user we're done ECHO Done! Opening PDF... :: Navigate to the _output folder... CD _output :: and open the PDF we just created :: (`start` so the PDF app opens as a separate process, doesn't hold up this script) start %screen-pdf-filename%.pdf :: Navigate back to where we began. CD ..\ :: Let the user easily refresh the PDF by running jekyll b and prince again SET repeat= SET /p repeat=Enter to run again, or any other key and enter to stop. IF "%repeat%"=="" GOTO screenpdfrefresh ECHO. GOTO begin :: :: :: :: :: :: :: WEBSITE :: :: :: :: :: :: :: :website :: Encouraging message ECHO Okay, let's make a website. :: Ask the user to add any extra Jekyll config files, e.g. _config.images.print-pdf.yml ECHO. ECHO Any extra config files? ECHO Enter filenames (including any relative path), comma separated, no spaces. E.g. ECHO _configs/_config.myconfig.yml ECHO If not, just hit return. ECHO. SET /p config= ECHO. :: Ask the user to set a baseurl if needed ECHO Do you need a baseurl? ECHO If yes, enter it with no slashes at the start or end, e.g. ECHO my/base ECHO. SET /p baseurl= ECHO. :: Ask if MathJax should be enabled. ECHO Do these books use MathJax? If no, hit enter. If yes, enter any key then enter. SET /p webmathjax= :: let the user know we're on it! ECHO Getting your site ready... ECHO You may need to reload the web page once this server is running. :: Two routes to go with or without a baseurl IF "%baseurl%"=="" GOTO servewithoutbaseurl :: Route 1, for serving with a baseurl :servewithbaseurl :: Open the web browser :: (This is before jekyll s, because jekyll s pauses the script.) START "" "http://127.0.0.1:4000/%baseurl%/" :: Run Jekyll, with MathJax enabled if necessary IF "%webmathjax%"=="" GOTO webnomathjax CALL bundle exec jekyll serve --config="_config.yml,_configs/_config.web.yml,_configs/_config.mathjax-enabled.yml,%config%" --baseurl="/%baseurl%" GOTO webjekyllserved :webnomathjax CALL bundle exec jekyll serve --config="_config.yml,_configs/_config.web.yml,%config%" --baseurl="/%baseurl%" :webjekyllserved :: And we're done here GOTO websiterepeat :: Route 2, for serving without a baseurl :servewithoutbaseurl :: Open the web browser :: (This is before jekyll s, because jekyll s pauses the script.) START "" "http://127.0.0.1:4000/" :: Run Jekyll, with MathJax enabled if necessary IF "%webmathjax%"=="" GOTO webnomathjax CALL bundle exec jekyll serve --config="_config.yml,_configs/_config.web.yml,_configs/_config.mathjax-enabled.yml,%config%" --baseurl="" GOTO webjekyllserved :webnomathjax CALL bundle exec jekyll serve --config="_config.yml,_configs/_config.web.yml,%config%" --baseurl="" :webjekyllserved :: Let the user rebuild and restart :: :: TO DO: This is not yet working. The script ends when you Ctrl-C to stop the website. :: :websiterepeat SET repeat= SET /p repeat=Enter to restart the website process, or any other key and enter to stop. IF "%repeat%"=="" GOTO website ECHO. GOTO begin :: :: :: :: :: :: :: EPUB :: :: :: :: :: :: :: :epub :: Encouraging message echo Okay, let's make an epub. :: Remember where we are by assigning a variable to the current directory set location=%~dp0 :: Ask user which folder to process :epubchoosefolder set /p bookfolder=Which book folder are we processing? (Hit enter for default 'book' folder.) if "%bookfolder%"=="" SET bookfolder=book if not exist "%bookfolder%\*.*" echo Sorry, %bookfolder% doesn't exist. Try again. && goto epubchoosefolder :: Ask if we're outputting the files from a subdirectory :epubwhatsubdirectory echo If you're outputting files in a subdirectory (e.g. a translation), type its name. Otherwise, hit enter. set /p subdirectory= if not exist "%bookfolder%\%subdirectory%\*.*" echo Sorry, %bookfolder%\%subdirectory% doesn't exist. Try again. doesn't exist. && goto epubwhatsubdirectory :: Ask whether to include boilerplate mathjax directory :epubAskToIncludeMathJax echo Include mathjax? Enter y for yes (or hit enter for no). set /p epubIncludeMathJax= if "%epubIncludeMathJax%"=="n" set epubIncludeMathJax= if not "%epubIncludeMathJax%"=="y" if not "%epubIncludeMathJax%"=="" goto epubAskToIncludeMathJax :: Ask the user to add any extra Jekyll config files, e.g. _config.images.print-pdf.yml :epubAskForConfigFiles echo Any extra config files? echo Enter filenames (including any relative path), comma separated, no spaces. E.g. echo _configs/_config.myconfig.yml echo If not, just hit return. set /p config= :: Ask about validation :epubAskAboutValidation echo Shall we try to run EpubCheck when we're done? Hit enter for yes, or any key and enter for no. set /p epubValidation= :: Loop back to this point to refresh the build again :epubrefresh :: let the user know we're on it! if "%subdirectory%"=="" goto epubGeneratingHTMLNoSubdirectory if not "%subdirectory%"=="" goto epubGeneratingHTMLWithSubdirectory :epubGeneratingHTMLNoSubdirectory echo Generating HTML for %bookfolder%.epub... goto epubJekyllBuild :epubGeneratingHTMLWithSubdirectory echo Generating HTML for %bookfolder%-%subdirectory%.epub... goto epubJekyllBuild :: ...and run Jekyll to build new HTML :epubJekyllBuild call bundle exec jekyll build --config="_config.yml,_configs/_config.epub.yml,%config%" echo HTML generated. :epubJekyllDone :: What's next? echo Assembling epub... :: Copy styles, images, text and package.opf to epub folder. :: The echo f preemptively answers xcopy's question whether :: this is a file (see https://stackoverflow.com/a/3018371). :: The > nul supresses command-line feedback (pseudo silent mode) cd _site\%bookfolder% :: Test copying options :epubCopyStyles echo Copying styles... :: -------------------------- :: If original language output: copy only files in fonts/epub if "%subdirectory%"=="" if not exist %subdirectory%\styles\*.* goto epubOriginalStyles :: Translation output, but no translated-styles subdirectory for that translation: :: copy the original styles files only if not "%subdirectory%"=="" if not exist %subdirectory%\styles\*.* goto epubOriginalStyles :: Translation output, and an styles subdir for that translation exists: :: create folder structure, and copy only the styles in that translation folder if not "%subdirectory%"=="" if exist %subdirectory%\styles\*.* goto epubTranslationStyles :: Copy original styles :epubOriginalStyles xcopy /i /q "styles\*.css" "..\epub\styles" > nul :: Done! Move along to moving the text folder echo Styles copied. goto epubCopyImages :: Copy translated styles, after deleting original styles :epubTranslationStyles rd /s /q styles mkdir "..\epub\%subdirectory%\styles" if exist "%subdirectory%\styles\*.css" xcopy /i /q "%subdirectory%\styles\*.css" "..\epub\%subdirectory%\styles" > nul :: Done! Move along to moving the text folder echo Styles copied. goto epubCopyImages :: Test copying options :epubCopyImages echo Copying images... :: -------------------------- :: If original language output: copy only files in images/epub if "%subdirectory%"=="" if not exist %subdirectory%\images\*.* goto epubOriginalImages :: Translation output, but no translated-images subdirectory for that translation: :: copy the original images files only if not "%subdirectory%"=="" if not exist %subdirectory%\images\*.* goto epubOriginalImages :: Translation output, and an images subdir for that translation exists: :: create folder structure, and copy only the images in that translation folder if not "%subdirectory%"=="" if exist %subdirectory%\images\*.* goto epubTranslationImages :: Copy original images :epubOriginalImages xcopy /i /q "images\epub\*.*" "..\epub\images\epub" > nul :: Done! Move along to moving the text folder echo Images copied. goto epubCopyText :: Copy translated images, after deleting original images :epubTranslationImages rd /s /q images mkdir "..\epub\%subdirectory%\images\epub" xcopy /i /q "%subdirectory%\images\epub\*.*" "..\epub\%subdirectory%\images\epub" > nul :: Done! Move along to moving the text folder echo Images copied. goto epubCopyText :: Copy contents of text or text/subdirectory to epub/text. :: We don't want all the files in text, we only want the ones :: in the epub file list. :epubCopyText echo Copying text... :: If this isn't a translation, skip ahead to epubCopyNoSubdirectory if "%subdirectory%"=="" GOTO epubOriginalText :: Copy the contents of the subdirectory :epubSubdirectoryText rd /s /q "text" mkdir "..\epub\%subdirectory%\text" cd %subdirectory%\text for /F "tokens=* skip=1" %%i in (file-list) do xcopy /q %%i "..\..\..\epub\%subdirectory%\text\" > nul cd .. cd .. echo Text copied. goto epubCopyOPF :: Copy the contents of the original text folder :epubOriginalText cd text for /F "tokens=* skip=1" %%i in (file-list) do xcopy /q %%i "..\..\epub\text\" > nul cd .. echo Text copied. goto epubCopyOPF :: Get the right package.opf for the translation we're creating :epubCopyOPF echo Copying package file... if "%subdirectory%"=="" goto epubOriginalOPF if not "%subdirectory%"=="" goto epubSubdirectoryOPF :: If original language, use the package.opf in the root :epubOriginalOPF echo f | xcopy /e /q "package.opf" "../epub" > nul echo Package file copied. goto epubOPFDone :: If translation language, use the package.opf in the subdirectory :: This will overwrite the original language OPF file :epubSubdirectoryOPF echo f | xcopy /e /q "%subdirectory%\package.opf" "../epub" > nul echo Package file copied. goto epubOPFDone :epubOPFDone :: Go into _site/epub to move some more files and then zip to _output CD %location%_site/epub :: If there is a js folder, and it has no contents, delete it. :: Otherwise, if this is a translation, move the js folder :: into the subdirectory alongside text, images, styles. :epubMoveJS echo Checking for Javascript... if exist "js" if not exist "js\*.*" rd /s /q "js" if not "%subdirectory%"=="" if exist "js\*.*" move "js" "%subdirectory%\js" echo Javascript checked. :: If there is a fonts folder, and it has no contents, delete it. :: Otherwise, if this is a translation, move the fonts folder :: into the subdirectory alongside text, images, styles. :epubMoveFonts echo Checking for fonts... if exist "fonts" if not exist "fonts\*.ttf" if not exist "fonts\*.otf" if not exist "fonts\*.woff" if not exist "fonts\*.woff2" rd /s /q "fonts" if not "%subdirectory%"=="" if exist "fonts\*.*" move "fonts" "%subdirectory%\fonts" echo Fonts checked. :: If no MathJax required, remove boilerplate mathjax directory echo Checking for MathJax to move or remove... if "%epubIncludeMathJax%"=="y" goto epubKeepMathjax rd /s /q "mathjax" echo Unnecessary MathJax removed. goto epubSetFilename :epubKeepMathjax :: If this is a translation, move mathjax into the language folder if "%epubIncludeMathJax%"=="y" if not "%subdirectory%"=="" move "mathjax" "%subdirectory%\mathjax" echo MathJax moved. :: Set the filename of the epub, sans extension :epubSetFilename if "%subdirectory%"=="" set epubFileName=%bookfolder% if not "%subdirectory%"=="" set epubFileName=%bookfolder%-%subdirectory% :: If they exist, remove previous .zip and .epub files that we will replace. echo Removing any previous %epubFileName%.zip and %epubFileName%.epub files... if exist "%location%\_output\%epubFileName%.zip" del /q "%location%\_output\%epubFileName%.zip" if exist "%location%\_output\%epubFileName%.epub" del /q "%location%\_output\%epubFileName%.epub" echo Removed any previous zip and epub files. :: Now to zip the epub files. Important: mimetype first. :epubCompressing echo Compressing files... :: Uses Zip 3.0: http://www.info-zip.org/Zip.html :: Temporarily put Zip in the PATH PATH=%PATH%;%location%_utils\zip :: mimetype: create zip, no compression, no extra fields zip --compression-method store -0 -X --quiet "%location%_output/%epubFileName%.zip" mimetype :: everything else: append to the zip with default compression :: Zip root folders, if this is not a translation if not "%subdirectory%"=="" goto epubZipSubdirectory if exist "images\epub" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "images\epub" if exist "fonts" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "fonts" if exist "styles" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "styles" if exist "text" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "text" if exist "mathjax" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "mathjax" if exist "js" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "js" :: And if it is a translation, just move the language subdirectory :epubZipSubdirectory if not "%subdirectory%"=="" if exist "%subdirectory%" zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" "%subdirectory%" :: Now add these admin files to the zip if exist META-INF zip --recurse-paths --quiet "%location%_output/%epubFileName%.zip" META-INF if exist package.opf zip --quiet "%location%_output/%epubFileName%.zip" package.opf :: Change file extension .zip to .epub cd %location%_output if exist %epubFileName%.zip ren %epubFileName%.zip %epubFileName%.epub :: We're done! :epubCreated if exist %epubFileName%.epub echo Epub created^^! if not exist %epubFileName%.epub echo Sorry, something went wrong. :: Check if epubcheck is in the PATH, and run it if it is if not "%epubValidation%"=="" goto skipepubValidation echo If EpubCheck is in your PATH, we'll run validation now. :: Use a batch-file trick to get the location of epubcheck :: https://blogs.msdn.microsoft.com/oldnewthing/20120731-00/?p=7003/ for /f %%i in ('where epubcheck.jar') do set epubchecklocation=%%i if "%epubchecklocation%"=="" echo Couldn't find EpubCheck, sorry. if "%epubchecklocation%"=="" goto skipEpubValidation :: then run it, saving the error stream to a log file :: First, create a timestamp for /f "tokens=2-8 delims=.:/ " %%a in ("%date% %time%") do set timestamp=%%c-%%a-%%bT%%d-%%e-%%f-%%g set epubCheckLogFile=epubcheck-log-%timestamp% echo Found EpubCheck, running validation... call java -jar %epubchecklocation% %epubFileName%.epub 2>> %epubCheckLogFile%.txt echo Opening EpubCheck log... start %epubCheckLogFile%.txt :: Skip to here if epubcheck wasn't found in the PATH :: or the user didn't want validation :skipEpubValidation :: Open file explorer to show the epub echo Opening folder containing your epub... %SystemRoot%\explorer.exe "%location%_output" :: Navigate back to where we began CD "%location%" :: Let the user easily run that again SET repeat= SET /p repeat=Enter to run again, or any other key and enter to stop. IF "%repeat%"=="" GOTO epubrefresh GOTO begin :: :: :: :: :: :: :: WORD EXPORT :: :: :: :: :: :: :: :word :: Encouraging message ECHO. ECHO Okay, let's export to Word. ECHO. :: Remember where we are by assigning a variable to the current directory SET location=%~dp0 :: Ask user which folder to process SET /p bookfolder=Which book folder are we processing? (Hit enter for default 'book' folder.) IF "%bookfolder%"=="" SET bookfolder=book :: Ask user which output type to work from ECHO Which format are we converting from? Enter a number or hit enter for the default: ECHO 1. Print PDF (default) ECHO 2. Screen PDF ECHO 3. Web ECHO 4. Epub SET /p fromformat= :: Turn that choice into the name of an output format for our config IF "%fromformat%"=="" SET fromformat=print-pdf IF "%fromformat%"=="1" SET fromformat=print-pdf IF "%fromformat%"=="2" SET fromformat=screen-pdf IF "%fromformat%"=="3" SET fromformat=web IF "%fromformat%"=="4" SET fromformat=epub :: Ask the user to add any extra Jekyll config files, e.g. _config.images.print-pdf.yml ECHO. ECHO Any extra config files? ECHO Enter filenames (including any relative path), comma separated, no spaces. E.g. ECHO _configs/_config.myconfig.yml ECHO If not, just hit return. ECHO. SET /p config= ECHO. :: Loop back to this point to refresh the build again :wordrefresh :: let the user know we're on it! ECHO Generating HTML... :: ...and run Jekyll to build new HTML CALL bundle exec jekyll build --config="_config.yml,_configs/_config.%fromformat%.yml,_configs/_config.image-set.%fromformat%.yml,%config%" :: Navigate to the HTML we just generated CD _site\%bookfolder%\text :: What're we doing? ECHO Converting %bookfolder% HTML to Word... :: Loop through the list of files in file-list :: and convert them each from .html to .docx. :: We end up with the same filenames, :: with .docx extensions appended. FOR /F "tokens=*" %%F IN (file-list) DO ( pandoc %%F -f html -t docx -s -o %%F.docx ) :: What are we doing next? ECHO Fixing file extensions... :: What are we finding and replacing? SET find=.html SET replace= :: Loop through all .docx files and remove the .html :: from those filenames pandoc created. FOR %%# in (.\*.docx) DO ( Set "File=%%~nx#" Ren "%%#" "!File:%find%=%replace%!" ) :: Whassup? ECHO Done, opening folder... :: Open file explorer to show the docx files. %SystemRoot%\explorer.exe "%location%_site\%bookfolder%\text" :: Navigate back to where we began CD "%location%" :: Let the user easily run that again SET repeat= SET /p repeat=Enter to try again, or any other key and enter to stop. IF "%repeat%"=="" GOTO word ECHO. GOTO begin :: :: :: :: :: :: :: INSTALL :: :: :: :: :: :: :: :install :: Encouraging message ECHO. ECHO We're going to run Bundler to update and install dependencies. ECHO If Bundler is not already installed, we'll install it first. ECHO If you get a rubygems error about SSL certificate failure, see ECHO http://guides.rubygems.org/ssl-certificate-update/ ECHO. ECHO This may take a few minutes. :: Check if Bundler is installed. If not, install it. :: (Thanks http://stackoverflow.com/a/4781795/1781075) set FOUND= for %%e in (%PATHEXT%) do ( for %%X in (bundler%%e) do ( if not defined FOUND ( set FOUND=%%~$PATH:X ) ) ) IF NOT "%FOUND%"=="" goto bundlerinstalled IF "%FOUND%"=="" echo Installing Bundler... gem install bundler :bundlerinstalled ECHO. ECHO Running Bundler... ECHO. :: Run bundle update CALL bundle update :: Run bundle install CALL bundle install :: Back to the beginning ECHO. GOTO begin
ChristinaRookie/october-eighteenth
run-windows.bat
bat
gpl-3.0
28,231
@echo off rem This batchfile starts a command prompt with the TeX Live rem Windows binary directory as first path component. rem Public domain @echo off setlocal enableextensions rem Add bin dir to beginning of PATH only if it is not already there for /f "tokens=1,2 delims=;" %%I in ("%~dp0..\..\bin\win32;%PATH%") do if not "%%~fI"=="%%~fJ" set "PATH=%%~fI;%PATH%" cd /d %HOMEDRIVE%%HOMEPATH% rem Start new console start "TeX Live" "%COMSPEC%"
justathoughtor2/atomicApe
cygwin/bin/texlive/tlpkg/installer/tl-cmd.bat
bat
gpl-3.0
452
cmd_/source/linux-3.x-virtual-headers/usr/include/linux/hdlc/.install := perl scripts/headers_install.pl /source/linux-3.x-virtual-headers/include/linux/hdlc /source/linux-3.x-virtual-headers/usr/include/linux/hdlc arm ioctl.h; perl scripts/headers_install.pl /source/linux-3.x-virtual-headers/include/linux/hdlc /source/linux-3.x-virtual-headers/usr/include/linux/hdlc arm ; for F in ; do echo "\#include <asm-generic/$$F>" > /source/linux-3.x-virtual-headers/usr/include/linux/hdlc/$$F; done; touch /source/linux-3.x-virtual-headers/usr/include/linux/hdlc/.install
javilonas/NCam
cross/armv7-marvell-linux-gnueabi-hard/arm-marvell-linux-gnueabi/libc/usr/include/linux/hdlc/..install.cmd
bat
gpl-3.0
567
SET MSBUILD=C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe %MSBUILD% "..\ServiceStack\build\build.proj" /target:Release;NuGetPack /property:Configuration=Release;RELEASE=true;PatchVersion=0 %MSBUILD% "..\ServiceStack.Text\build\build.proj" /target:Release /property:Configuration=Release;RELEASE=true;PatchVersion=1 %MSBUILD% "..\ServiceStack.Redis\build\build.proj" /target:Release /property:Configuration=Release;RELEASE=true;PatchVersion=1 %MSBUILD% "..\ServiceStack.Ormlite\build\build.proj"/target:Release /property:Configuration=Release;RELEASE=true;PatchVersion=0 set dest=D:\VS Projects\PlayItForward\Externals SET root=..\..\ServiceStack\src COPY "%root%\ServiceStack\bin\Release\ServiceStack.dll" "%dest%\ServiceStack.dll" COPY "%root%\ServiceStack.Mvc\bin\Release\ServiceStack.Mvc.dll" "%dest%\ServiceStack.Mvc.dll" COPY "%root%\ServiceStack.Interfaces\bin\Release\ServiceStack.Interfaces.dll" "%dest%\ServiceStack.Interfaces.dll" COPY "%root%\ServiceStack.Logging.NLog\bin\Release\ServiceStack.Logging.NLog.dll" "%dest%\ServiceStack.Logging.NLog.dll" COPY "%root%\ServiceStack.Common\bin\Release\ServiceStack.Common.dll" "%dest%\ServiceStack.Common.dll" COPY "%root%\ServiceStack.Client\bin\Release\ServiceStack.Client.dll" "%dest%\ServiceStack.Client.dll" COPY "%root%\ServiceStack.Client\bin\Release\ServiceStack.Server.dll" "%dest%\ServiceStack.Server.dll" COPY "%root%\ServiceStack.Razor\bin\Release\ServiceStack.Razor.dll" "%dest%\ServiceStack.Razor.dll" COPY "%root%\ServiceStack.Authentication.OpenId\bin\Release\ServiceStack.Authentication.OpenId.dll" "%dest%\ServiceStack.Authentication.OpenId.dll" COPY "%root%\ServiceStack.Authentication.OAuth2\bin\Release\ServiceStack.Authentication.OAuth2.dll" "%dest%\ServiceStack.Authentication.OAuth2.dll" COPY "%root%\ServiceStack.Logging.Log4Net\bin\Release\ServiceStack.Logging.Log4Net.dll" "%dest%\ServiceStack.Logging.Log4Net.dll" COPY "%root%\ServiceStack.Server\bin\Release\ServiceStack.Server.dll" "%dest%\ServiceStack.Server.dll" COPY "%root%\ServiceStack.Mvc\bin\Release\ServiceStack.Mvc.dll" "%dest%\ServiceStack.Mvc.dll" SET root=..\..\ServiceStack.OrmLite\src\ COPY "%root%\ServiceStack.OrmLite.PostgreSQL\bin\Release\ServiceStack.OrmLite.PostgreSQL.dll" "%dest%\ServiceStack.OrmLite.PostgreSQL.dll" COPY "%root%\ServiceStack.OrmLite\bin\Release\ServiceStack.OrmLite.dll" "%dest%\ServiceStack.OrmLite.dll" SET root=..\..\ServiceStack.Redis\src\ COPY "%root%\ServiceStack.Redis\bin\Release\ServiceStack.Redis.dll" "%dest%\ServiceStack.Redis.dll" SET root=..\..\ServiceStack.Text\src\ COPY "%root%\ServiceStack.Text\bin\Release\ServiceStack.Text.dll" "%dest%\ServiceStack.Text.dll"
robertbaker/PlayItForward
Externals/build.bat
bat
gpl-3.0
2,666
D: CD D:\DE038\OneDrive - OOO\01 Eisenbahn\00 Decoder develop 000Avrdude\avrdude.exe -c usbtiny -B 1 -patmega328p -U eeprom:r:App.hex:i
CAN-Guru/CANGurus
21 READEEPROM.bat
bat
gpl-3.0
139
echo off type _LINT_POS.TMP "C:\Program Files (x86)\Lint\lint-nt.exe" +v -i"C:\Program Files (x86)\Lint\lnt" std_posix.lnt -DPOSIX;MD_SUPPORT=1;B_ENDIAN;__LITTLE_ENDIAN__=0;__BIG_ENDIAN__=1 -os(_LINT_POS.TMP) vos_mem.c vos_utils.c posix/vos_thread.c posix/vos_sock.c posix/vos_shared_mem.c tlc_if.c tlp_if.c tlm_if.c trdp_mdcom.c trdp_pdcom.c trdp_pdindex.c trdp_utils.c trdp_stats.c tau_marshall.c tau_ctrl.c tau_dnr.c tau_tti.c REM type _LINT_POS.TMP | more @echo off echo --- echo output placed in _LINT_POS.TMP echo ---
T12z/TCNopen
trdp/test/lint/Lint_posix.bat
bat
mpl-2.0
526
@echo off call vsop2010.bat 1e-6 06-normal
mgreter/ephem.js
src/vsop2010/vsop2010-06-normal.bat
bat
lgpl-3.0
45
:: ======================================================================================================== :: ==== <CONFIGURATION> :: ======================================================================================================== :: Set the version of Visual Studio. This will just add a suffix to the string :: of your directories to avoid mixing them up. SET VS_VERSION=vs2013 :: Set this to the directory that contains vcvarsall.bat file of the :: VC Visual Studio version you want to use for building ICU. SET VISUAL_STUDIO_VC="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC" :: Set this to the version of ICU you are building SET V8_VERSION=4.3.61 :: x86_amd64 or x86 set ARCHITECTURE=%1 ::x64 or ia32 set PLATFORM=%2 :: x64 or Win32 set MSPLATFORM=%3 :: 64 or 32 set SUFFIX=%4 :: ======================================================================================================== :: ==== <BUILD> :: ======================================================================================================== call %VISUAL_STUDIO_VC%\vcvarsall.bat %ARCHITECTURE% set CMD=-G msvs_version=2013 set CMD=%CMD% -Dtarget_arch=%PLATFORM% set CMD=%CMD% -Dcomponent=static_library set CMD=%CMD% -Dmode=release set CMD=%CMD% -Dlibrary=static_library set CMD=%CMD% -Dv8_use_snapshot=false echo %CMD% cd V8-%V8_VERSION% set PATH=%~dp0V8-%V8_VERSION%\third_party\python_26;%PATH% .\third_party\python_26\python.exe build\gyp_v8 %CMD% cd build :: DEBUG rmdir /S /Q Debug rmdir /S /Q Debug%SUFFIX% msbuild All.sln /t:v8 /p:Configuration=Debug /p:Platform=%MSPLATFORM% msbuild All.sln /t:v8_libbase /p:Configuration=Debug /p:Platform=%MSPLATFORM% msbuild All.sln /t:v8_libplatform /p:Configuration=Debug /p:Platform=%MSPLATFORM% cd ..\third_party\icu msbuild icu.sln /t:icudata /p:Configuration=Debug /p:Platform=%MSPLATFORM% msbuild icu.sln /t:icui18n /p:Configuration=Debug /p:Platform=%MSPLATFORM% msbuild icu.sln /t:icuuc /p:Configuration=Debug /p:Platform=%MSPLATFORM% cd ..\..\build ren Debug Debug%SUFFIX% :: RELEASE rmdir /S /Q Release rmdir /S /Q Release%SUFFIX% msbuild All.sln /t:v8 /p:Configuration=Release /p:Platform=%MSPLATFORM% msbuild All.sln /t:v8_libbase /p:Configuration=Release /p:Platform=%MSPLATFORM% msbuild All.sln /t:v8_libplatform /p:Configuration=Release /p:Platform=%MSPLATFORM% cd ..\third_party\icu msbuild icu.sln /t:icudata /p:Configuration=Release /p:Platform=%MSPLATFORM% msbuild icu.sln /t:icui18n /p:Configuration=Release /p:Platform=%MSPLATFORM% msbuild icu.sln /t:icuuc /p:Configuration=Release /p:Platform=%MSPLATFORM% cd ..\..\build ren Release Release%SUFFIX% cd .. cd .. exit
aurelijusb/arangodb
3rdParty/v8-build.bat
bat
apache-2.0
2,653
:: Author: Adam Richards :: Lauch a powershell script in the current directory @echo off powershell "%CD%\sqlserverInstanceReport.ps1" -ListFile lists\sqlserverEPCList.txt -output output REM powershell "%CD%\sqlserverInstanceReport.ps1" -Server localhost REM powershell "%CD%\sqlserverInstanceReport.ps1" -Server localhost -OutputDir c: REM powershell "%CD%\sqlserverInstanceReport.ps1" -Server localhost -OutputDir c:\temp
abrichards5/ABRPowerShell
Scripts/sqlserverInstanceReport.cmd
bat
apache-2.0
431
@echo off cmd.exe /v /c "%~dp0Engine\Build\BatchFiles\CopyVisualizers.bat" if not exist "%~dp0Engine\Build\BatchFiles\GenerateProjectFiles.bat" goto Error_BatchFileInWrongLocation call "%~dp0Engine\Build\BatchFiles\GenerateProjectFiles.bat" %* exit /B %ERRORLEVEL% :Error_BatchFileInWrongLocation echo GenerateProjectFiles ERROR: The batch file does not appear to be located in the root UE4 directory. This script must be run from within that directory. pause exit /B 1
PopCap/GameIdea
GenerateProjectFiles.bat
bat
bsd-2-clause
474
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\atlas.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\atlas.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
Kayra/atlas
docs/make.bat
bat
bsd-3-clause
5,094
@ECHO OFF ECHO Running Roam Config Manager from the src folder. ECHO If you get errors make sure you run build.bat first to build the resources and UI files. pushd %~dp0 CALL scripts\setenv.bat python src\configmanager
DMS-Aus/Roam
run_config.bat
bat
gpl-2.0
221
@echo off rem stop a Java process and wait for its end rem usage: stop_java_process <main_class_and_args> setlocal enableDelayedExpansion set JAVA_MAIN_AND_ARGS=%~1 set JAVA_MAIN_AND_ARGS=%JAVA_MAIN_AND_ARGS:""="% for /F %%i in ('%~dp0\find_java_process "%JAVA_MAIN_AND_ARGS:"=""%"') do ( set PID=%%i rem terminate the process gracefully echo Terminating java program "%JAVA_MAIN_AND_ARGS%"... taskkill /pid !PID! >NUL 2>NUL rem wait max 5 seconds for the process to shutdown set /a TIMEOUT=5 :wait tasklist /nh /fi "pid eq !PID!" 2>NUL | findstr /c:!PID! >NUL 2>NUL if "%errorlevel%" == "0" ( call %~dp0\sleep 1 set /a TIMEOUT-=1 if not "%TIMEOUT%" == "0" goto wait ) rem check if process has shutdown tasklist /nh /fi "pid eq !PID!" 2>NUL | findstr /c:!PID! >NUL 2>NUL if "%errorlevel%" == "0" ( echo Couldn't terminate java program "%JAVA_MAIN_AND_ARGS%" gracefully rem kill the process forcefully echo Killing java program "%JAVA_MAIN_AND_ARGS%" forcefully... taskkill /f /pid !PID! >NUL 2>NUL rem wait 1 second after process end to free binded ports echo Waiting 1 second for binded ports to be freed... call %~dp0\sleep 1 ) ) echo Java program "%JAVA_MAIN_AND_ARGS%" is stopped endlocal
qspin/qtaste
tools/stop_java_process.cmd
bat
lgpl-3.0
1,313
del ..\contribution.xml /q type ..\..\org.scn.community.shared\templates.main\contribution.xml.head.txt ^ ..\templates\contribution.xml.head.txt ^ ..\..\org.scn.community.shared\templates.main\eula.xml.txt ^ ..\..\org.scn.community.shared\templates.main\license.xml.txt ^ ..\templates\contribution.xml.groups.txt ^ ..\res\BYOData\def\contribution.xml ^ ..\res\DynCsvDataSource\def\contribution.xml ^ ..\..\org.scn.community.shared\templates.main\contribution.xml.close.txt > ^ ..\contribution.xml del ..\contribution.ztl /q type ..\..\org.scn.community.shared\templates.main\contribution.ztl.head.txt ^ ..\templates\contribution.ztl.head.txt ^ ..\..\org.scn.community.shared\templates.main\license.js.txt ^ ..\res\BYOData\def\contribution.ztl ^ ..\res\DynCsvDataSource\def\contribution.ztl ^ ..\..\org.scn.community.shared\templates.main\contribution.ztl.close.txt > ^ ..\contribution.ztl del ..\META-INF\MANIFEST.MF /q type ..\..\org.scn.community.shared\templates.main\MANIFEST.MF ^ ..\templates\MANIFEST.MF > ^ ..\META-INF\MANIFEST.MF
Dibyendu21/Project
src/org.scn.community.datasource/script/build.cmd
bat
apache-2.0
1,043
@echo off setlocal rem rem Copyright (c) 1999, 2014 Tanuki Software, Ltd. rem http://www.tanukisoftware.com rem All rights reserved. rem rem This software is the proprietary information of Tanuki Software. rem You shall use it only in accordance with the terms of the rem license agreement you entered into with Tanuki Software. rem http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html rem rem Java Service Wrapper general passthrough startup script. rem rem ----------------------------------------------------------------------------- rem These settings can be modified to fit the needs of your application rem Optimized for use with version 3.5.24-st of the Wrapper. rem The base name for the Wrapper binary. set _WRAPPER_BASE=wrapper rem The directory where the Wrapper binary (.exe) file is located, this can be rem either a absolute or relative path. If the path contains any special characters, rem please make sure to quote the variable. set _WRAPPER_DIR= rem The name and location of the Wrapper configuration file. This will be used rem if the user does not specify a configuration file as the first parameter to rem this script. It will not be possible to specify a configuration file on the rem command line if _PASS_THROUGH is set. rem If a relative path is specified, please note that the location is based on the rem location. set _WRAPPER_CONF_DEFAULT="../conf/%_WRAPPER_BASE%.conf" rem Makes it possible to override the Wrapper configuration file by specifying it rem as the first parameter. rem set _WRAPPER_CONF_OVERRIDE=true rem _PASS_THROUGH tells the script to pass all parameters through to the JVM as rem is. set _PASS_THROUGH=true rem Do not modify anything beyond this point rem ----------------------------------------------------------------------------- rem rem Resolve the real path of the wrapper.exe rem For non NT systems, the _REALPATH and _WRAPPER_CONF values rem can be hard-coded below and the following test removed. rem if "%OS%"=="Windows_NT" goto nt echo This script only works with NT-based versions of Windows. goto :eof :nt rem Find the application home. rem if no path path specified do the default action IF not DEFINED _WRAPPER_DIR goto dir_undefined set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR:"=%" if not "%_WRAPPER_DIR:~-2,1%" == "\" set _WRAPPER_DIR_QUOTED="%_WRAPPER_DIR_QUOTED:"=%\" rem check if absolute path if "%_WRAPPER_DIR_QUOTED:~2,1%" == ":" goto absolute_path if "%_WRAPPER_DIR_QUOTED:~1,1%" == "\" goto absolute_path rem everythig else means relative path set _REALPATH="%~dp0%_WRAPPER_DIR_QUOTED:"=%" goto pathfound :dir_undefined rem Use a relative path to the wrapper %~dp0 is location of current script under NT set _REALPATH="%~dp0" goto pathfound :absolute_path rem Use an absolute path to the wrapper set _REALPATH="%_WRAPPER_DIR_QUOTED:"=%" :pathfound rem rem Decide on the specific Wrapper binary to use (See delta-pack) rem if "%PROCESSOR_ARCHITEW6432%"=="AMD64" goto amd64 if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto amd64 if "%PROCESSOR_ARCHITECTURE%"=="IA64" goto ia64 set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-32.exe" goto search :amd64 set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-x86-64.exe" goto search :ia64 set _WRAPPER_L_EXE="%_REALPATH:"=%%_WRAPPER_BASE%-windows-ia-64.exe" goto search :search set _WRAPPER_EXE="%_WRAPPER_L_EXE:"=%" if exist %_WRAPPER_EXE% goto conf set _WRAPPER_EXE="%_REALPATH:"=%%_WRAPPER_BASE%.exe" if exist %_WRAPPER_EXE% goto conf echo Unable to locate a Wrapper executable using any of the following names: echo %_WRAPPER_L_EXE% echo %_WRAPPER_EXE% pause goto :eof rem rem Find the wrapper.conf rem :conf if not [%_WRAPPER_CONF_OVERRIDE%]==[] ( set _WRAPPER_CONF="%~f1" if not [%_WRAPPER_CONF%]==[""] ( shift goto :startup ) ) set _WRAPPER_CONF="%_WRAPPER_CONF_DEFAULT:"=%" rem rem Start the Wrapper rem :startup rem Collect an parameters :parameters set _PARAMETERS=%_PARAMETERS% %1 shift if not [%1]==[] goto :parameters if [%_PASS_THROUGH%]==[] ( %_WRAPPER_EXE% -i %_WRAPPER_CONF% ) else ( %_WRAPPER_EXE% -i %_WRAPPER_CONF% -- %_PARAMETERS% ) if not errorlevel 1 goto :eof pause
thefinder/logmonitor
logmonitor-server/src/server/bin/InstallApp.bat
bat
apache-2.0
4,198
setlocal set PATH=%PATH%;${CMAKE_INSTALL_PREFIX}\bin cmd /c ctest --force-new-ctest-process if %errorlevel% neq 0 exit /b 1 endlocal
Free4Lila/s-objectizer
so_5/5.5/dev/cmake/run_tests.bat
bat
bsd-3-clause
133
cd ../../ ant jar pack-rootbeer.bat cd gtc2013/Matrix/ ant jar java -jar ../../Rootbeer.jar MatrixApp.jar MatrixApp-GPU.jar
yarenty/rootbeer1
examples/MatrixShared/compile-gpu.bat
bat
mit
125
@echo off vagrant up pause
it-toolbox/project-factory-core
vm/ubuntu1604/start.bat
bat
agpl-3.0
28
@echo off runtime\bin\python\python_mcp runtime\recompile.py %* pause
sethten/MoDesserts
mcp50/recompile.bat
bat
gpl-3.0
73
@echo off rem Licensed to the Apache Software Foundation (ASF) under one rem or more contributor license agreements. See the NOTICE file rem distributed with this work for additional information rem regarding copyright ownership. The ASF licenses this file rem to you under the Apache License, Version 2.0 (the rem "License"); you may not use this file except in compliance rem with the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, rem software distributed under the License is distributed on an rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY rem KIND, either express or implied. See the License for the rem specific language governing permissions and limitations rem under the License. set VELCP=. for %%i in (..\..\bin\*.jar) do call appendVELCP %%i for %%i in (..\..\bin\lib\*.jar) do call appendVELCP %%i echo Using classpath: %VELCP% java -cp %VELCP% Example2
stefanofornari/velocity
examples/app_example2/example2.bat
bat
apache-2.0
1,015
@if "%_echo%"=="" echo off setlocal call %~d0%~p0..\..\..\config.bat @if ERRORLEVEL 1 goto Error if NOT "%FSC:NOTAVAIL=X%" == "%FSC%" ( REM Skipping test for FSI.EXE goto Skip ) call %~d0%~p0..\..\single-test-build.bat @if ERRORLEVEL 1 goto Error REM just checking the files actually parse/compile for now.... "%FSC%" %fsc_flags% -a -o:kanji-unicode-utf8-nosig-codepage-65001.dll -g kanji-unicode-utf8-nosig-codepage-65001.fs @if ERRORLEVEL 1 goto Error "%FSC%" %fsc_flags% -a -o:kanji-unicode-utf8-nosig-codepage-65001.dll -g kanji-unicode-utf8-nosig-codepage-65001.fs @if ERRORLEVEL 1 goto Error REM check non-utf8 and --codepage flag for bootstrapped fsc.exe if NOT "%FSC:fscp=X%" == "%FSC%" ( "%FSC%" %fsc_flags% -a -o:kanji-unicode-utf16.dll -g kanji-unicode-utf16.fs @if ERRORLEVEL 1 goto Error "%FSC%" %fsc_flags% -a --codepage:65000 -o:kanji-unicode-utf7-codepage-65000.dll -g kanji-unicode-utf7-codepage-65000.fs @if ERRORLEVEL 1 goto Error ) "%FSC%" %fsc_flags% -a -o:kanji-unicode-utf8-withsig-codepage-65001.dll -g kanji-unicode-utf8-withsig-codepage-65001.fs @if ERRORLEVEL 1 goto Error :Ok echo Built fsharp %~f0 ok. endlocal exit /b 0 :Skip echo Skipped %~f0 endlocal exit /b 0 :Error call %SCRIPT_ROOT%\ChompErr.bat %ERRORLEVEL% %~f0 endlocal exit /b %ERRORLEVEL%
eloraiby/fsharp
tests/fsharp/core/unicode/build.bat
bat
apache-2.0
1,310
@echo off rem /** rem * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. rem * rem * Author: [email protected] rem */ echo. echo [ÐÅÏ¢] Éú³ÉEclipse¹¤³ÌÎļþ¡£ echo. pause echo. cd %~dp0 cd.. call mvn deploy cd bin pause
jjeejj/huaxia-messagae-manage
bin/deploy.bat
bat
apache-2.0
281
: .bat ‚Ì‚ ‚éƒtƒHƒ‹ƒ_‚ðƒJƒŒƒ“ƒgƒfƒBƒŒƒNƒgƒŠ‚É‚·‚é cd /d %~dp0 ruby BinaryToIntArray.rb %1 pause
lriki/Lumino
tools/BinaryToIntArray/BinaryToIntArray.bat
bat
mit
104
@echo off cd build powershell -NoProfile -ExecutionPolicy Bypass -Command "& '..\tools\psake-4.3.2\psake.ps1' %*" cd .. pause
stanshillis/ESSSM
build.cmd
bat
mit
125
@php "C:/ProgramData/Composer/bin/composer.phar" %*
jeka-corvus/ramax
composer.bat
bat
mit
52
set MATLAB=C:\Program Files\MATLAB\R2017a "C:\PROGRA~1\MATLAB\R2017a\bin\win64\gmake" -f Test000.mk ISPROTECTINGMODEL=NOTPROTECTING GENERATE_ERT_S_FUNCTION=0 INCLUDE_MDL_TERMINATE_FCN=1 COMBINE_OUTPUT_UPDATE_FCNS=0 MAT_FILE=0 MULTI_INSTANCE_CODE=0 INTEGER_CODE=0 EXTMODE_STATIC_ALLOC=0 EXTMODE_STATIC_ALLOC_SIZE=1000000 TMW_EXTMODE_TESTING=0 OPTS="-DTGTCONN -DON_TARGET_WAIT_FOR_START=1"
skgadi/Programming
MATLAB/TestSimulinkCoder/Test000_sldrt_ert_win64/Test000.bat
bat
mit
389
:: version MUST be passed in SET version=%1 IF "%version%"=="" GOTO :missing GOTO :continue :missing echo version is required pause EXIT /B 0 :continue makensis /DPRODUCT_VERSION=%version% BrowseMonkey.nsi
shukriadams/browsemonkey
installer/build.bat
bat
mit
217
#!/bin/sh rem (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. rem rem This file contains confidential and proprietary information rem of Xilinx, Inc. and is protected under U.S. and rem international copyright and other intellectual property rem laws. rem rem DISCLAIMER rem This disclaimer is not a license and does not grant any rem rights to the materials distributed herewith. Except as rem otherwise provided in a valid license issued to you by rem Xilinx, and to the maximum extent permitted by applicable rem law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND rem WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES rem AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING rem BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- rem INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and rem (2) Xilinx shall not be liable (whether in contract or tort, rem including negligence, or under any other theory of rem liability) for any loss or damage of any kind or nature rem related to, arising under or in connection with these rem materials, including for any direct, or any indirect, rem special, incidental, or consequential loss or damage rem (including loss of data, profits, goodwill, or any type of rem loss or damage suffered as a result of any action brought rem by a third party) even if such damage or loss was rem reasonably foreseeable or Xilinx had been advised of the rem possibility of the same. rem rem CRITICAL APPLICATIONS rem Xilinx products are not designed or intended to be fail- rem safe, or for use in any application requiring fail-safe rem performance, such as life-support or safety devices or rem systems, Class III medical devices, nuclear facilities, rem applications related to the deployment of airbags, or any rem other applications that could lead to death, personal rem injury, or severe property or environmental damage rem (individually and collectively, "Critical rem Applications"). Customer assumes the sole risk and rem liability of any use of Xilinx products in Critical rem Applications, subject only to applicable laws and rem regulations governing limitations on product liability. rem rem THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS rem PART OF THIS FILE AT ALL TIMES. rem ----------------------------------------------------------------------------- rem Script to synthesize and implement the Coregen FIFO Generator rem ----------------------------------------------------------------------------- rmdir /S /Q results mkdir results cd results copy ..\..\..\ram.ngc . planAhead -mode batch -source ..\planAhead_ise.tcl
chrismasters/fpga-space-invaders
project/ipcore_dir/ram/implement/planAhead_ise.bat
bat
mit
2,625
if "%EMULATED%"=="true" goto SKIP set Source=https://orleanstorage2.blob.core.windows.net/project-files REM https://orleansdatastorage.blob.core.windows.net/project-files set SourceKey=ilzOub7LFk5zQ7drJFkfoxdwN1rritlSWAJ9Vl35g/TG4rZWxCXWNTJV20vZLTL/D2LK065cG8AozDg8CGOKQQ== REM w1Ue+xPB9xEZt5A1WzXWjXNUtZ1pSkykC1VtbJElMmCjK4bmkrLCtiZ4k0N7o8IEzHWDAp4kn0P+X+HhqsttdQ== goto START :NOSKIP set Source=http://127.0.0.1:10000/devstoreaccount1/project-files set SourceKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw== :START set TEMP=c:\Temp md c:\temp cd %ROLEROOT%\approot\scripts md %ROLEROOT%\approot\scripts\external ECHO Root is: %RoleRoot% >> "%TEMP%\StartupLog.txt" 2>&1 REM Check if VS was INSTALLED IF EXIST "%RoleRoot%\NET46_Success.txt" ( ECHO NET is already installed. Exiting. >> "%TEMP%\StartupLog.txt" 2>&1 GOTO SKIP ) REM We add a share to access solution files REM net use X: \\orleansstorage2.file.core.windows.net\solutions /u:orleansstorage2 ilzOub7LFk5zQ7drJFkfoxdwN1rritlSWAJ9Vl35g/TG4rZWxCXWNTJV20vZLTL/D2LK065cG8AozDg8CGOKQQ== net use X: \\orleansstoragedg.file.core.windows.net\solutions /u:orleansstoragedg 0up2Sc/EYfYVeP0Hueim/bUSh63Jqdt/LCQTA0jPKX+KNtSNh1LnJdB0ODD3OnTVXMbqe+NQRZkE0mGuXpgi4Q== ECHO "Check mount X:" "%TEMP%\StartupLog.txt" 2>&1 net use >> "%TEMP%\StartupLog.txt" 2>&1 ECHO NET46 in %NETSOURCEDIR% >> "%TEMP%\StartupLog.txt" 2>&1 X: CD %NETSOURCEDIR% START /WAIT NDP46-KB3045557-x86-x64-AllOS-ENU.exe /q /Log "%TEMP%\net46-log.txt" IF %ERRORLEVEL% EQU 0 ( REM The application installed without error. Create a file to indicate that the application REM does not need to be installed again. ECHO This line will create a file to indicate that VS 2015 installed correctly. > "%RoleRoot%\NET46_Success.txt" ) ELSE ( REM An error occurred. Log the error and exit with the error code. DATE /T >> "%TEMP%\StartupLog.txt" 2>&1 TIME /T >> "%TEMP%\StartupLog.txt" 2>&1 ECHO An error occurred installing Application 1. Errorlevel = %ERRORLEVEL%. >> "%TEMP%\StartupLog.txt" 2>&1 EXIT %ERRORLEVEL% ) REM reg add HKLM\Software\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell /v ExecutionPolicy /d Unrestricted /f REM powershell Restart-Computer :SKIP EXIT /B 0
too4words/Call-Graph-Builder-DotNet
OrleansSilosInAzure/scripts/InstallNET46.cmd
bat
mit
2,296
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\contento.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\contento.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
inmagik/contento
docs/make.bat
bat
mit
7,248
REM Browsers cinst -y googlechrome cinst -y firefox REM Tools cinst -y keepass cinst -y winmerge cinst -y conemu cinst -y winscp cinst -y treesizefree cinst -y peazip cinst -y putty cinst -y fiddler cinst -y baretail REM Developer stuffs cinst -y kdiff3 cinst -y git -params /GitAndUnixToolsOnPath cinst -y sourcetree cinst -y git-credential-manager-for-windows cinst -y visualstudiocode cinst -y notepad2-mod cinst -y linqpad cinst -y virtualbox cinst -y vagrant cinst -y packer cmd /k
JChanut/windows_dev_setup
02_packages.bat
bat
mit
491
\upx\upx.exe RoFTPBrowser.exe
rinorusso/RoFTPBrowser
comprimi.bat
bat
gpl-2.0
29
acftools.exe -e wpn6_601.def -force 0 -acf "parts\%1.wpn"
creaktive/ACFTools
contrib/wpn_txt.bat
bat
gpl-2.0
57
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: :: Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). :: All rights reserved. :: Contact: Nokia Corporation ([email protected]) :: :: This file is part of the tools applications of the Qt Toolkit. :: :: $QT_BEGIN_LICENSE:LGPL$ :: Commercial Usage :: Licensees holding valid Qt Commercial licenses may use this file in :: accordance with the Qt Commercial License Agreement provided with the :: Software or, alternatively, in accordance with the terms contained in :: a written agreement between you and Nokia. :: :: 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, Nokia gives you certain additional :: rights. These rights are described in the Nokia 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. :: :: If you have questions regarding the use of this file, please contact :: Nokia at [email protected]. :: $QT_END_LICENSE$ :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem @echo off call :init if "%IWMAKE_STATUS%"=="failed" goto FAILED if not exist "%IWMAKE_SCRIPTDIR%\config\%1.conf" goto FAILED if not "%~2"=="" set IWMAKE_SECTION=%~2 for /F "eol=# tokens=1,2*" %%i in (%IWMAKE_SCRIPTDIR%\config\config.default) do set IWMAKE_TMP=%%k& call :func_delegate %%i %%j if "%IWMAKE_STATUS%"=="failed" goto FAILED if exist "%IWMAKE_SCRIPTDIR%\config\config.%COMPUTERNAME%" for /F "eol=# tokens=1,2*" %%i in (%IWMAKE_SCRIPTDIR%\config\config.%COMPUTERNAME%) do set IWMAKE_TMP=%%k& call :func_delegate %%i %%j if "%IWMAKE_STATUS%"=="failed" goto FAILED call :checkrequirements if "%IWMAKE_STATUS%"=="failed" goto FAILED for /F "eol=# tokens=1,2*" %%i in (%IWMAKE_SCRIPTDIR%\config\%1.conf) do set IWMAKE_TMP=%%k& call :func_delegate %%i %%j if "%IWMAKE_STATUS%"=="failed" goto FAILED goto DONE :func_delegate if "%IWMAKE_STATUS%"=="failed" goto :eof set IWMAKE_TMP="%IWMAKE_TMP:"=%" if /i "%1"=="sectionend" echo Leaving Section& set IWMAKE_PARSESECTION=1& goto :eof if /i not "%1"=="section" goto callScript echo Entering Section %~2 for %%m in (%IWMAKE_SECTION%) do call :checkSection %%m %~2 goto :eof :callScript if "%IWMAKE_PARSESECTION%"=="0" goto :eof call "%IWMAKE_SCRIPTDIR%\batch\%1.bat" %2 %IWMAKE_TMP% if not "%errorlevel%"=="0" echo %1 %2 failed! >> %IWMAKE_LOGFILE%& set IWMAKE_STATUS=failed goto :eof :checkSection if /i "%1"=="%2" echo Skipping Section& set IWMAKE_PARSESECTION=0 goto :eof :checkrequirements if not exist %IWMAKE_ROOT% mkdir %IWMAKE_ROOT% if not "%IWMAKE_SIGNPATH%"=="" goto CheckSIGNOK call "%IWMAKE_SCRIPTDIR%\batch\copy.bat" extsync sign call "%IWMAKE_SCRIPTDIR%\batch\env.bat" signPath "%IWMAKE_ROOT%\sign" :CheckSIGNOK if not "%IWMAKE_WGET%"=="" goto CheckWGETOK call "%IWMAKE_SCRIPTDIR%\batch\copy.bat" extsync wget call "%IWMAKE_SCRIPTDIR%\batch\env.bat" wgetDir wget :CheckWGETOK if exist "%IWMAKE_PERLPATH%\perl.exe" goto CheckPerlOK set IWMAKE_STATUS=failed echo Perl not found in %IWMAKE_PERLPATH%! (check your config file) :CheckPerlOK if not "%IWMAKE_UNZIPAPP%"=="" goto CheckUNZIPOK call "%IWMAKE_SCRIPTDIR%\batch\copy.bat" extsync unzip call "%IWMAKE_SCRIPTDIR%\batch\env.bat" unzipApp "%IWMAKE_ROOT%\unzip\unzip.exe" :CheckUNZIPOK if exist "%IWMAKE_NSISPATH%\makensis.exe" goto CheckNSISOK set IWMAKE_STATUS=failed echo NSIS not found! (check your config file) :CheckNSISOK call "%IWMAKE_SCRIPTDIR%\batch\installer.bat" updateplugins goto :eof :init set IWMAKE_SCRIPTDIR=%~dp0 set IWMAKE_SCRIPTDIR=%IWMAKE_SCRIPTDIR:~0,-1% call "%IWMAKE_SCRIPTDIR%\batch\env.bat" setglobals goto :eof :cleanup pushd "%IWMAKE_STARTDIR%" call "%IWMAKE_SCRIPTDIR%\batch\env.bat" removeglobals popd goto :eof :FAILED call :cleanup echo Failed! goto END :DONE call :cleanup echo Done! goto END :END
librelab/qtmoko-test
qtopiacore/qt/tools/installer/iwmake.bat
bat
gpl-2.0
4,767
cmd_arch/arm/lib/div64.o := arm-linux-gnueabihf-gcc -Wp,-MD,arch/arm/lib/.div64.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabihf/4.8/include -I/home/darrell/android/rockchip/rk3188/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk3188/include -Iarch/arm/plat-rk/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/div64.o arch/arm/lib/div64.S source_arch/arm/lib/div64.o := arch/arm/lib/div64.S deps_arch/arm/lib/div64.o := \ /home/darrell/android/rockchip/rk3188/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/darrell/android/rockchip/rk3188/arch/arm/include/asm/linkage.h \ arch/arm/lib/div64.o: $(deps_arch/arm/lib/div64.o) $(deps_arch/arm/lib/div64.o):
Dee-UK/D33_KK_Kernel
arch/arm/lib/.div64.o.cmd
bat
gpl-2.0
1,328
cmd_drivers/media/usb/usbtv/usbtv.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/media/usb/usbtv/usbtv.ko drivers/media/usb/usbtv/usbtv.o drivers/media/usb/usbtv/usbtv.mod.o
avareldalton85/rpi2-linux-rt
drivers/media/usb/usbtv/.usbtv.ko.cmd
bat
gpl-2.0
287
cmd_scripts/kconfig/lxdialog/inputbox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.inputbox.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/inputbox.o scripts/kconfig/lxdialog/inputbox.c deps_scripts/kconfig/lxdialog/inputbox.o := \ scripts/kconfig/lxdialog/inputbox.c \ scripts/kconfig/lxdialog/dialog.h \ /usr/include/sys/types.h \ /usr/include/features.h \ /usr/include/bits/predefs.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/time.h \ /usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/fcntl.h \ /usr/include/bits/fcntl.h \ /usr/include/unistd.h \ /usr/include/bits/posix_opt.h \ /usr/include/bits/confname.h \ /usr/include/getopt.h \ /usr/include/ctype.h \ /usr/include/xlocale.h \ /usr/include/stdlib.h \ /usr/include/alloca.h \ /usr/include/string.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ /usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdbool.h \ /usr/include/libintl.h \ /usr/include/locale.h \ /usr/include/bits/locale.h \ /usr/include/ncurses.h \ /usr/include/ncurses_dll.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/include/unctrl.h \ /usr/include/curses.h \ scripts/kconfig/lxdialog/inputbox.o: $(deps_scripts/kconfig/lxdialog/inputbox.o) $(deps_scripts/kconfig/lxdialog/inputbox.o):
yohanes/Acer-BeTouch-E130-Linux-Kernel
scripts/kconfig/lxdialog/.inputbox.o.cmd
bat
gpl-2.0
2,034
@echo off rem processes them through without lint error :) if exist log.txt del log.txt for /f %%a IN (_list.txt) do ( d:\tools\mikero\makepbo -LN %%a >>log.txt ) rem copy missions to <root>/missions/ dir if exist *.pbo move *.pbo "D:\Wintools\Steamshit\SteamApps\common\Arma 3\Missions\" pause exit
SnakeManPMC/arma-3-SPMissions_bis
_run_make_Missions.bat
bat
gpl-2.0
312
/* DEUTSCH.CMD: Installation von ESCRIBA in Deutsch. */ '@Echo Off' 'CHCP 850' /* Objekt-Titel festlegen. */ Title = 'Escriba 0.96d' Language = 'Deutsch' FileName = 'Deutsch' /* REXXUTIL laden */ Call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs' Call SysLoadFuncs /* Initialisierung */ Signal On Failure Name FAILURE Signal On Halt Name HALT Signal On Syntax Name SYNTAX Call SysCls Say 'Installiere ESCRIBA...' Say '' /* Prfe, ob verschiedene Komponenten (Dateien) vorhanden sind. */ Result = SysFileTree( 'ESCRIBA.EXE', 'Files', 'F' ) If Files.0 = 0 Then Do Say 'FEHLER: ESCRIBA.EXE nicht gefunden!' Signal DONE End Result = SysFileTree( FileName".DLL", 'Files', 'F' ) If Files.0 = 0 Then Do Say 'FEHLER: 'FileName'.DLL nicht gefunden!' Signal DONE End Result = SysFileTree( FileName".HLP", 'Files', 'F' ) If Files.0 = 0 Then Do Say 'FEHLER: 'FileName'.HLP nicht gefunden!' Signal DONE End /* Zielverzeichnis erfragen. */ BootDrive = Filespec('Drive',Value('SYSTEM_INI',,'OS2ENVIRONMENT')) Default = SysIni('USER', 'ESCRIBA', 'INIPATH' ) If Default = 'ERROR:' Then Default = BootDrive'\OS2\Apps' If SUBSTR(Default,LENGTH(Default),1) <= ' ' Then Default = SUBSTR(Default,1,LENGTH(Default)-1) Say 'Bitte geben Sie den vollen Verzeichnisnamen ein, wohin' Say ' ESCRIBA installiert werden soll (Standard: 'Default'): ' Parse Pull Directory If Directory = "" Then Directory = Default /* Falls notwendig, Zielverzeichnis anlegen. */ Result = SysFileTree( Directory, 'Dirs', 'D' ) If Dirs.0 = 0 Then Do Result = SysMkDir( Directory ) if Result == 0 Then Do End Else Do Say 'FEHLER: Zielverzeichnis kann nicht angelegt werden.' Signal DONE End End Say '' /* Save the target directory. */ SysIni( "USER", "ESCRIBA", "INIPATH", Directory ) /* Installation durchfhren. */ Say 'Kopiere ESCRIBA nach 'Directory' ...' 'Copy ESCRIBA.EXE' Directory '1>NUL' 'Copy ESCRIBA.ICO' Directory '1>NUL' 'Copy UNINSTAL.CMD' Directory '1>NUL' 'Copy *.DLL' Directory '1>NUL' 'Copy *.HLP' Directory '1>NUL' 'Copy 'FileName'.DOC' Directory'\ESCRIBA.DOC 1>NUL' Result = SysFileTree( "HLP2INF.EXE", 'Files', 'F' ) If Files.0 > 0 Then Do Result = SysFileTree( Directory"\ESCRIBA.INF", 'Files', 'F' ) If Files.0 > 0 Then Do "Erase" Directory"\ESCRIBA.INF" End "HLP2INF" Directory"\"FileName".HLP" "Rename" Directory"\"FileName".INF ESCRIBA.INF" End Say 'Erzeuge Programm-Ordner...' Type = 'WPFolder' Folder = '<WP_DESKTOP>' Parms = "OBJECTID=<ESCRIBAF>;ICONFILE="Directory"\ESCRIBA.ICO;ALWAYSSORT=YES;" Result = SysCreateObject( Type, 'Escriba', Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Say 'FEHLER: Ordner nicht erzeugt.' Say 'Erzeuge Programmobjekt...' Type = 'WPProgram' Folder = '<ESCRIBAF>' Parms = "MINWIN=DESKTOP;PROGTYPE=PM;EXENAME="Directory"\ESCRIBA.EXE;STARTUPDIR="Directory";OBJECTID=<ESCRIBA>;NOPRINT=YES;ASSOCTYPE=Escriba,Pluma,Plain Text,Bitmap,GIF,JPG,Metafile,PCC,PCX,TIFF,HTML;ASSOCFILTER=*.TXT,*.DOC,*.ME,*.BAT,*.CMD,*.MOI,*.BMP,*.GIF,*.JPG,*.JPEG,*.JFI,*.JFIF,*.MET,*.PCC,*.PCX,*.TIF,*.TIFF;*.HTM;*.HTML;" Result = SysCreateObject( Type, Title, Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Say 'FEHLER: Objekt nicht erzeugt.' Say 'Erzeuge Dokumentations-Objekte...' Type = 'WPProgram' Parms = "MINWIN=DESKTOP;PROGTYPE=PM;EXENAME="Directory"\ESCRIBA.EXE;STARTUPDIR="Directory";OBJECTID=<ESCRIBAD>;PARAMETERS=ESCRIBA.DOC" Result = SysCreateObject( Type, "Read Me", Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Say 'FEHLER: Referenz nicht erzeugt.' Result = SysFileTree( Directory"\ESCRIBA.INF", 'Files', 'F' ) If Files.0 > 0 Then Do Type = 'WPProgram' Parms = "MINWIN=DESKTOP;PROGTYPE=PM;EXENAME=VIEW.EXE;STARTUPDIR="Directory";OBJECTID=<ESCRIBAI>;PARAMETERS=ESCRIBA.INF Einfhrung;" Result = SysCreateObject( Type, "Escriba User's Reference", Folder, Parms, 'ReplaceIfExists' ) If Result != 1 Then Do Say 'FEHLER: Referenz nicht erzeugt.' End End /* Initialize the INI file, setting the default language. */ Result = SysIni( Directory"\ESCRIBA.INI", "ESCRIBA", "Language", Language ) If Result = 'ERROR:' Then Do Say 'ERROR: Language preference not saved.' End /* Prfen, ob die Rechtschreibprfung vorhanden ist. */ Speller = 1 Result = SysFileTree( "ISPELLER.DLL", 'Files', 'F' ) If Files.0 = 0 Then Speller = 0 Result = SysFileTree( "BUILDHAS.EXE", 'Builder1', 'F' ) Result = SysFileTree( "BUILDHASH.EXE", 'Builder2', 'F' ) If ( ( Builder1.0 = 0 ) & ( Builder2.0 = 0 ) ) Then Speller = 0 /* Installiere die Rechtschreibprfung, wenn vorhanden. */ If Speller = 1 Then Do Say 'Installiere Rechtschreibprfung...' 'Copy ISPELLER.DLL' Directory '1>NUL' If Builder1.0 Then 'Copy BUILDHAS.EXE' Directory '1>NUL' Else 'Copy BUILDHASH.EXE' Directory'\BUILDHAS.EXE 1>NUL' 'Copy *.AFF' Directory '1>NUL' 'Copy *.DIC' Directory '1>NUL' Result = SysFileTree( Directory"\*.AFF", 'Affix', 'FO' ) Do Index=1 To Affix.0 LanguageName = SUBSTR(Affix.Index,1,LENGTH(Affix.Index)-4) DictionaryPath = LanguageName".DIC" Do While ( \ ( POS('\',LanguageName) = 0 ) ) LanguageName = SUBSTR(LanguageName,POS('\',LanguageName)+1) End /* do */ Result = SysFileTree( DictionaryPath, 'Dictionary', 'FO' ) If Dictionary.0 = 1 Then Do Say 'Building dictionary for' LanguageName'. . .' Directory'\BUILDHAS -s' Dictionary.1 Affix.Index Directory'\'LanguageName'.HSH 1>NUL' End /* if */ End /* do */ End /* if */ Signal DONE FAILURE: Say 'REXX-Fehler.' Signal DONE HALT: Say 'REXX-Halt.' Signal DONE SYNTAX: Say 'REXX-Syntaxfehler.' Signal DONE DONE: Exit
OS2World/APP-PRODUCTIVITY-Escriba
Escriba/ESCR_DEU/Deutsch.cmd
bat
gpl-2.0
5,901
cmd_arch/arm/mm/tlb-v7.o := /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/mm/.tlb-v7.o.d -nostdinc -isystem /home/knesi/arm-2010q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.1/include -I/home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -Wa,-march=armv7-a -O1 -mtune=cortex-a8 -ftree-vectorize -ffast-math -fsingle-precision-constant -c -o arch/arm/mm/tlb-v7.o arch/arm/mm/tlb-v7.S source_arch/arm/mm/tlb-v7.o := arch/arm/mm/tlb-v7.S deps_arch/arm/mm/tlb-v7.o := \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/linkage.h \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/linkage.h \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/hwcap.h \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/asm-offsets.h \ include/generated/asm-offsets.h \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/page.h \ $(wildcard include/config/mmu.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/sparsemem.h) \ include/asm-generic/getorder.h \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/tlbflush.h \ $(wildcard include/config/smp/on/up.h) \ $(wildcard include/config/cpu/tlb/v3.h) \ $(wildcard include/config/cpu/tlb/v4wt.h) \ $(wildcard include/config/cpu/tlb/fa.h) \ $(wildcard include/config/cpu/tlb/v4wbi.h) \ $(wildcard include/config/cpu/tlb/feroceon.h) \ $(wildcard include/config/cpu/tlb/v4wb.h) \ $(wildcard include/config/cpu/tlb/v6.h) \ $(wildcard include/config/cpu/tlb/v7.h) \ $(wildcard include/config/arm/errata/720789.h) \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ arch/arm/mm/proc-macros.S \ $(wildcard include/config/cpu/dcache/writethrough.h) \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/knesi/HD2/tiamat-kernel-4.0.2/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ arch/arm/mm/tlb-v7.o: $(deps_arch/arm/mm/tlb-v7.o) $(deps_arch/arm/mm/tlb-v7.o):
DrGrip/tiamat-2.6.38-LEO-Dr_Grip
arch/arm/mm/.tlb-v7.o.cmd
bat
gpl-2.0
4,479
cmd_net/ipv4/netfilter/arptable_filter.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/ipv4/netfilter/arptable_filter.ko net/ipv4/netfilter/arptable_filter.o net/ipv4/netfilter/arptable_filter.mod.o
avareldalton85/rpi2-linux-rt
net/ipv4/netfilter/.arptable_filter.ko.cmd
bat
gpl-2.0
307
cmd_drivers/misc/built-in.o := arm-linux-androideabi-ld -EL -r -o drivers/misc/built-in.o drivers/misc/pmem.o drivers/misc/smsc_hub.o drivers/misc/uid_stat.o drivers/misc/eeprom/built-in.o drivers/misc/cb710/built-in.o drivers/misc/ti-st/built-in.o drivers/misc/lis3lv02d/built-in.o drivers/misc/carma/built-in.o drivers/misc/android_vibrator.o drivers/misc/qseecom.o drivers/misc/tspdrv/built-in.o drivers/misc/slimport_anx7808/built-in.o
hch-im/nexus4_kernel
drivers/misc/.built-in.o.cmd
bat
gpl-2.0
445
cd /d %~dp0 python plateviewer.py
afraser/CellProfiler-Analyst
cpa/PlateMapBrowser.bat
bat
gpl-2.0
33
cmd_drivers/input/touchscreen/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/input/touchscreen/built-in.o drivers/input/touchscreen/atmel.o drivers/input/touchscreen/atmel_224e.o
wujiku/superstar-kernel-shooter-2.3.4gb
drivers/input/touchscreen/.built-in.o.cmd
bat
gpl-2.0
230
@echo OFF rem SET debug_compile= rem SET debug_link= rem if "%1%"=="/DEBUG" SET debug_compile=/Zi /O2 /bigobj /MDd rem if "%1%"=="/DEBUG" SET debug_link=/DEBUG /release rem copy ..\..\back-ends\foma\libfoma.* . rem copy ..\..\back-ends\openfstwin\src\lib\openfst.* . if not exist "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include" echo Error: missing include directory "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include" && ^ exit /B if exist "..\..\back-ends\foma\flags.c" echo Renaming foma's flags.c into _flags.c as there is a file with the same name in openfst && ^ move ..\..\back-ends\foma\flags.c ..\..\back-ends\foma\_flags.c if exist "..\..\tools\src\hfst-proc\transducer.cpp" echo Renaming hfst-proc's transducer.cpp into _transducer.cpp as there is a file with the same name in optimized-lookup && ^ move ..\..\tools\src\hfst-proc\transducer.cpp ..\..\tools\src\hfst-proc\_transducer.cpp @echo ON cl /EHsc /Zc:wchar_t /Fehfst-proc.exe ^ /D HAVE_FOMA /D HAVE_OPENFST /D HFSTEXPORT /D OPENFSTEXPORT /D_MSC_VER /DWINDOWS /DWIN32 ^ /I..\..\libhfst\src /I..\..\back-ends\foma /I..\..\back-ends /I..\..\back-ends\openfstwin\src\include /I ..\.. ^ /Iparsers /I..\.. /I..\..\libhfst\src /I..\..\libhfst\src\parsers /I..\..\back-ends\foma ^ /I..\..\back-ends /I..\..\back-ends\openfstwin\src\include /I..\..\tools\src ^ ..\..\tools\src\hfst-commandline.cpp ^ ..\..\tools\src\hfst-file-to-mem.cpp ^ ..\..\tools\src\hfst-program-options.cpp ^ ..\..\tools\src\hfst-string-conversions.cpp ^ ..\..\tools\src\hfst-tool-metadata.cpp ^ ..\..\tools\src\hfst-getopt.cpp ^ ..\..\tools\src\hfst-proc\hfst-proc.cpp ^ ..\..\tools\src\hfst-proc\formatter.cpp ^ ..\..\tools\src\hfst-proc\lookup-path.cpp ^ ..\..\tools\src\hfst-proc\lookup-state.cpp ^ ..\..\tools\src\hfst-proc\tokenizer.cpp ^ ..\..\tools\src\hfst-proc\_transducer.cpp ^ ..\..\tools\src\hfst-proc\applicators.cpp ^ ..\..\tools\src\hfst-proc\alphabet.cpp ^ HfstApply.cpp ^ HfstInputStream.cpp ^ HfstTransducer.cpp ^ HfstOutputStream.cpp ^ HfstRules.cpp ^ HfstXeroxRules.cpp ^ HfstDataTypes.cpp ^ HfstSymbolDefs.cpp ^ HfstTokenizer.cpp ^ HfstFlagDiacritics.cpp ^ HfstExceptionDefs.cpp ^ HarmonizeUnknownAndIdentitySymbols.cpp ^ HfstLookupFlagDiacritics.cpp ^ HfstEpsilonHandler.cpp ^ HfstStrings2FstTokenizer.cpp ^ HfstPrintDot.cpp ^ HfstPrintPCKimmo.cpp ^ implementations\HfstTransitionGraph.cpp ^ implementations\ConvertTransducerFormat.cpp ^ implementations\HfstTropicalTransducerTransitionData.cpp ^ implementations\ConvertTropicalWeightTransducer.cpp ^ implementations\ConvertLogWeightTransducer.cpp ^ implementations\ConvertFomaTransducer.cpp ^ implementations\ConvertOlTransducer.cpp ^ implementations\TropicalWeightTransducer.cpp ^ implementations\LogWeightTransducer.cpp ^ implementations\FomaTransducer.cpp ^ implementations\HfstOlTransducer.cpp ^ implementations\compose_intersect\ComposeIntersectRulePair.cpp ^ implementations\compose_intersect\ComposeIntersectLexicon.cpp ^ implementations\compose_intersect\ComposeIntersectRule.cpp ^ implementations\compose_intersect\ComposeIntersectFst.cpp ^ implementations\compose_intersect\ComposeIntersectUtilities.cpp ^ implementations\optimized-lookup\transducer.cpp ^ implementations\optimized-lookup\convert.cpp ^ implementations\optimized-lookup\ospell.cpp ^ implementations\optimized-lookup\pmatch.cpp ^ implementations\optimized-lookup\find_epsilon_loops.cpp ^ parsers\xre_lex.cpp ^ parsers\xre_parse.cpp ^ parsers\pmatch_parse.cpp ^ parsers\pmatch_lex.cpp ^ parsers\lexc-parser.cpp ^ parsers\lexc-lexer.cpp ^ parsers\xfst-parser.cpp ^ parsers\xfst-lexer.cpp ^ parsers\LexcCompiler.cpp ^ parsers\PmatchCompiler.cpp ^ parsers\XreCompiler.cpp ^ parsers\XfstCompiler.cpp ^ parsers\lexc-utils.cpp ^ parsers\pmatch_utils.cpp ^ parsers\xre_utils.cpp ^ parsers\xfst-utils.cpp ^ parsers\xfst_help_message.cpp ^ ..\..\back-ends\openfstwin\src\lib\compat.cpp ^ ..\..\back-ends\openfstwin\src\lib\flags.cpp ^ ..\..\back-ends\openfstwin\src\lib\fst.cpp ^ ..\..\back-ends\openfstwin\src\lib\properties.cpp ^ ..\..\back-ends\openfstwin\src\lib\symbol-table.cpp ^ ..\..\back-ends\openfstwin\src\lib\symbol-table-ops.cpp ^ ..\..\back-ends\openfstwin\src\lib\util.cpp ^ ..\..\back-ends\foma\*.c user32.lib
unhammer/hfst3
scripts/windows/make-hfst-proc.bat
bat
gpl-3.0
4,230
@ECHO OFF REM BATeX - batch files for LaTeX REM v2019-09-06 REM Copyright (C) 2012-2019 Miguel L Pardal REM REM This program is free software: you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by REM the Free Software Foundation, either version 3 of the License, or REM (at your option) any later version. REM REM 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 along with this program. If not, see <http://www.gnu.org/licenses/>. REM CALL target.bat REM Invoke index generation tool makeindex %BATeX_TARGET%.nlo -s nomencl.ist -o %BATeX_TARGET%.nls makeindex %BATeX_TARGET%
miguelpardal/BATeX
idx.bat
bat
gpl-3.0
917
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pychoacoustics.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pychoacoustics.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
sam81/pychoacoustics
pychoacoustics/doc/make.bat
bat
gpl-3.0
5,112
@echo off if %1.==. ( echo No precision provided && exit ) if %2.==. ( echo No location provided && exit ) echo compiling %1 to %2 perl script\vsop2013.pl %1 src\%2\src echo invoking webmerge if not exist src\%2\conf mkdir src\%2\conf copy conf\webmerge.conf.xml src\%2\conf cd src\%2 call webmerge cd ..\.. echo moving results if not exist dist mkdir dist if not exist dist\%2 mkdir dist\%2 if not exist dist\%2\min mkdir dist\%2\min if not exist dist\%2\src mkdir dist\%2\src if exist src\%2\dist\min xcopy /Y src\%2\dist\min\* dist\%2\min\ if exist src\%2\dist\src xcopy /Y src\%2\dist\src\* dist\%2\src\
mgreter/ephem.js
src/vsop2013/vsop2013.bat
bat
lgpl-3.0
636
@echo off set current_dir=%~dp0 set current_drive=%~d0 set path=%path%;.;.\thirdparty\lib;.\lib;.\customer_lib;.\thirdparty\commonLib; %current_drive% cd %current_dir% if exist jsystem.properties goto jsystemPropertiesExist if exist .jsystembase copy .jsystembase jsystem.properties :jsystemPropertiesExist set _JAVACMD=java.exe if exist thirdparty\jdk\bin\java.exe set _JAVACMD=thirdparty\jdk\bin\java.exe if exist ..\jdk\bin\java.exe set _JAVACMD=..\jdk\bin\java.exe if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe set JSYSTEM_USED_CLASSPATH=%current_dir%/lib/jsystem-launcher.jar if not "%JSYSTEM_CUSTOMER_JARS%" == "" set JSYSTEM_USED_CLASSPATH=%JSYSTEM_USED_CLASSPATH%;%JSYSTEM_CUSTOMER_JARS% ::add modules(xml.bind/java.desktop) in case running on java 9+ version set ADD_MODULES_STR= for /f tokens^=2-5^ delims^=.-_^" %%j in ('java -fullversion 2^>^&1') do set "jver=%%j" if %jver% NEQ 1 set ADD_MODULES_STR=--add-modules java.xml.bind --add-modules java.desktop :launch rem echo %_JAVACMD% rem remove the remark on the DEBUG variable to debug the runner. rem set DEBUG=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n "%_JAVACMD%" %DEBUG% -Xms32M -Xmx256M %JMX% %ADD_MODULES_STR% -Djsystem.main=%JSYSTEM_MAIN% -DentityExpansionLimit=1280000 -classpath "%JSYSTEM_USED_CLASSPATH%" %SPLASH% jsystem.framework.launcher.Launcher2 %1 %2 %3 %4 %5 %6 %7 if %ERRORLEVEL% == 6 goto launch :end pause
Top-Q/jsystem
jsystem-assembly/jsystem-runner/src/main/etc/runBase.bat
bat
apache-2.0
1,485
@echo off md ide cd ide md vs2012 cd vs2012 cmake ../.. -G "Visual Studio 11 2012 Win64"
thesheps/plang
cpp/build-vs2012.bat
bat
apache-2.0
90
@echo off & cls & echo. net file 1>NUL 2>NUL & if ERRORLEVEL 1 (echo "You must right-click and select & ECHO \"RUN AS ADMINISTRATOR\" to run this batch. Exiting..." & echo. & pause & exit /D) setlocal set SERVICE_NAME=Artifactory set EXECUTABLE=..\bin\artifactory-service.exe "%EXECUTABLE%" //DS//%SERVICE_NAME% echo The service '%SERVICE_NAME%' has been removed
alancnet/artifactory
distribution/standalone/src/main/install/bin/uninstallService.bat
bat
apache-2.0
368
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Zoe.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Zoe.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
DistributedSystemsGroup/zoe
docs/make.bat
bat
apache-2.0
6,975
set current=%cd% cd ..\releases\preview\features\ del *.* /q cd ..\plugins\ del *.* /q cd.. del *.jar /q
sap-design-studio-free-addons/sdk-package
script/2-clean_preview.cmd
bat
apache-2.0
108
@echo off copy /Y mark\* ..\image\mark\* pause
HiddenTesla/sanguosha_fun
copy_mark.bat
bat
bsd-2-clause
48
cmd_fs/jbd2/jbd2.o := /home/milind/toolchain/arm-eabi-4.6/bin/arm-eabi-ld -EL -r -o fs/jbd2/jbd2.o fs/jbd2/transaction.o fs/jbd2/commit.o fs/jbd2/recovery.o fs/jbd2/checkpoint.o fs/jbd2/revoke.o fs/jbd2/journal.o
sai9615/MY-kernel-for-grand-I9082
fs/jbd2/.jbd2.o.cmd
bat
gpl-2.0
217
# Test "set auto list" set basename on set highlight off set auto list on step step step # Try a command with a continuation character (\) set auto list \ off step step quit!
gitpan/Devel-Trepan
t/data/autolist.cmd
bat
gpl-3.0
179
rem ### -*- batch file -*- ###################################################### rem # ## rem # JBoss Bootstrap Script Configuration ## rem # ## rem ############################################################################# rem # $Id: run.conf.bat 88820 2009-05-13 15:25:44Z [email protected] $ rem # rem # This batch file is executed by run.bat to initialize the environment rem # variables that run.bat uses. It is recommended to use this file to rem # configure these variables, rather than modifying run.bat itself. rem # if not "x%JAVA_OPTS%" == "x" ( echo "JAVA_OPTS already set in environment; overriding default settings with values: %JAVA_OPTS%" goto JAVA_OPTS_SET ) rem # rem # Specify the JBoss Profiler configuration file to load. rem # rem # Default is to not load a JBoss Profiler configuration file. rem # rem set "PROFILER=%JBOSS_HOME%\bin\jboss-profiler.properties" rem # rem # Specify the location of the Java home directory (it is recommended that rem # this always be set). If set, then "%JAVA_HOME%\bin\java" will be used as rem # the Java VM executable; otherwise, "%JAVA%" will be used (see below). rem # rem set "JAVA_HOME=C:\opt\jdk1.6.0_23" rem # rem # Specify the exact Java VM executable to use - only used if JAVA_HOME is rem # not set. Default is "java". rem # rem set "JAVA=C:\opt\jdk1.6.0_23\bin\java" rem # rem # Specify options to pass to the Java VM. Note, there are some additional rem # options that are always passed by run.bat. rem # rem # JVM memory allocation pool parameters - modify as appropriate. set "JAVA_OPTS=-Xms64M -Xmx512M -XX:MaxPermSize=256M" rem # Reduce the RMI GCs to once per hour for Sun JVMs. set "JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.net.preferIPv4Stack=true" rem # Warn when resolving remote XML DTDs or schemas. set "JAVA_OPTS=%JAVA_OPTS% -Dorg.jboss.resolver.warning=true" rem # Make Byteman classes visible in all module loaders rem # This is necessary to inject Byteman rules into AS7 deployments set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.system.pkgs=org.jboss.byteman" rem # Set the default configuration files to use if -c, --domain-config or --host-config are not used set "JAVA_OPTS=%JAVA_OPTS% -Djboss.domain.default.config=domain.xml -Djboss.host.default.config=host.xml" rem # Use JBoss Modules lockless mode rem set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.lockless=true" rem The ProcessController process uses its own set of java options set "PROCESS_CONTROLLER_JAVA_OPTS=%JAVA_OPTS%" rem The HostController process uses its own set of java options set "HOST_CONTROLLER_JAVA_OPTS=%JAVA_OPTS%" rem # Sample JPDA settings for remote socket debugging rem set "PROCESS_CONTROLLER_JAVA_OPTS=%PROCESS_CONTROLLER_JAVA_OPTS% -Xrunjdwp:transport=dt_socket,address=8788,server=y,suspend=n" rem set "HOST_CONTROLLER_JAVA_OPTS=%HOST_CONTROLLER_JAVA_OPTS% -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n" rem # Sample JPDA settings for shared memory debugging rem set "PROCESS_CONTROLLER_JAVA_OPTS=%PROCESS_CONTROLLER_JAVA_OPTS% -Xrunjdwp:transport=dt_shmem,address=jboss,server=y,suspend=n" rem set "HOST_CONTROLLER_JAVA_OPTS=%HOST_CONTROLLER_JAVA_OPTS% -Xrunjdwp:transport=dt_shmem,address=jboss,server=y,suspend=n" :JAVA_OPTS_SET
nikhilmone/log4j_as_module
bin/domain.conf.bat
bat
lgpl-2.1
3,568
:: :: Script for building and testing C++ pattern matching library :: :: Written by Yuriy Solodkyy <[email protected]> :: Version 1.0 from 4th February 2012 :: :: Usage: :: build [ pgo | tmp ] [ filemask*.cpp ... ] :: build - Build all examples using the most recent MS VC++ compiler :: build clean - Clean all examples :: build test - Test all built examples :: build timing - Build with a given version of MS VC++ :: :: This file is a part of Mach7 library (http://parasol.tamu.edu/mach7/). :: Copyright (C) 2011-2012 Texas A&M University. :: All rights reserved. :: @echo off if "%1" == "/?" findstr "^::" "%~f0" & goto END if "%MACH7%" == "" echo Warning: Environment variable MACH7 must be set to library path of Mach7 library (available here: https://github.com/solodon4/Mach7). Assuming ..\..\.. && set MACH7=..\..\.. rem Set-up variables ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: set CXX=cl.exe rem Debug version of compiler flags rem CXXFLAGS=/D "XTL_VIRTUAL=virtual" /D "XTL_PROFILING=1" /D "XTL_MAX_LOG_INC=1" /D "XTL_LEAKED_NEW_LOCATIONS" /Zi /nologo /EHsc /W3 /WX- /Od /RTC1 /Oy- /Gm /MTd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Gd /analyze- /errorReport:queue /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /I%MACH7% /I%MACH7%/test/time rem Release version of compiler flags set CXXFLAGS=/D "XTL_VIRTUAL=virtual" /D "XTL_PROFILING=1" /D "XTL_MAX_LOG_INC=1" /Zi /nologo /EHsc /W3 /WX- /O2 /Ob2 /Oi /Ot /Oy- /GL /GF /Gm- /MT /GS- /Gy- /fp:precise /Zc:wchar_t /Zc:forScope /Gr /analyze- /errorReport:queue /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /I%MACH7% /I%MACH7%/test/time rem /Zi /nologo /W3 /WX- /O2 /Ob2 /Oi /Ot /Oy- /GL /GF /Gm- /MT /GS- /Gy- /fp:precise /Zc:wchar_t /Zc:forScope /Gr /analyze- /errorReport:queue /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FU"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll" /Fp"Release\SyntheticSelectRandom.pch" /Fa"Release\" /Fo"Release\" /Fd"Release\vc100.pdb" rem Slower: =/Zi /nologo /W3 /WX- /O2 /Ob2 /Oi /Ot /GL /GF /Gm- /MT /GS- /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Gr /errorReport:queue /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /I%MACH7% /I%MACH7%/test/time rem Debug version of linker flags rem LNKFLAGS=/INCREMENTAL /NOLOGO "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /MANIFEST /ALLOWISOLATION /SUBSYSTEM:CONSOLE /DEBUG /TLBID:1 /DYNAMICBASE /NXCOMPAT /ERRORREPORT:QUEUE rem Release version of linker flags set LNKFLAGS=/INCREMENTAL:NO /NOLOGO "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /MANIFEST:NO /ALLOWISOLATION /SUBSYSTEM:CONSOLE /OPT:REF /OPT:ICF /LTCG /TLBID:1 /DYNAMICBASE:NO /NXCOMPAT /ERRORREPORT:QUEUE rem /OUT:"C:\Projects\PatternMatching\Release\SyntheticSelectRandom.exe" /INCREMENTAL:NO /NOLOGO "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /MANIFEST /ManifestFile:"Release\SyntheticSelectRandom.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:\Projects\PatternMatching\Release\SyntheticSelectRandom.pdb" /SUBSYSTEM:CONSOLE /OPT:REF /OPT:ICF /PGD:"C:\Projects\PatternMatching\Release\SyntheticSelectRandom.pgd" /LTCG /TLBID:1 /DYNAMICBASE:NO /NXCOMPAT /MACHINE:X86 /ERRORREPORT:QUEUE set M=X86 rem Reset ERRORLEVEL in case previous command failed verify > nul rem Prepare log file ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem call :SUB_PARSE_DATE rem set logfile=build-%yy%-%mm%-%dd%-%hh%-%mn%.log set logfile=build.log echo. > %logfile% echo XTL Pattern Matching Build Script >> %logfile% echo Version 1.0 from 2012-02-04 >> %logfile% echo. >> %logfile% echo Build log from %date% at %time% >> %logfile% :PARSE_CMD_LINE :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: if "%1" == "pgo" shift && set PGO=1 && goto PARSE_CMD_LINE if "%1" == "tmp" shift && set KEEP_TMP=1 && goto PARSE_CMD_LINE if "%1" == "clean" del *.obj *.exe *.pdb *.idb *.intermediate.manifest *.out > nul 2>&1 && goto END if "%1" == "test" shift && goto TEST rem Set-up Visual C++ Environment Variables :::::::::::::::::::::::::::::::::::: if not "%VS110COMNTOOLS%" == "" call "%VS110COMNTOOLS%vsvars32.bat" && goto PROCEED if not "%VS100COMNTOOLS%" == "" call "%VS100COMNTOOLS%vsvars32.bat" && goto PROCEED if not "%VS90COMNTOOLS%" == "" call "%VS90COMNTOOLS%vsvars32.bat" && goto PROCEED if not "%VS80COMNTOOLS%" == "" call "%VS80COMNTOOLS%vsvars32.bat" && goto PROCEED if not "%VS71COMNTOOLS%" == "" call "%VS71COMNTOOLS%vsvars32.bat" && goto PROCEED echo ERROR: Unable to find installation of MS Visual C++ on this computer goto END :PROCEED ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: setlocal if "%1" == "timing" shift && goto TIMING if "%1" == "" goto BUILD_ALL :BUILD_ARG ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem Iterate through all the arguments that were passed and build them for %%i in (%1) do call :SUB_BUILD_FILE "%%i" shift if "%1" == "" goto END goto BUILD_ARG :BUILD_ALL ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem User didn't provide any arguments, assume all .cpp files in the current folder for %%i in (*.hpp) do call :SUB_BUILD_FILE "%%i" echo Build log has been saved to %logfile% goto END :SUB_BUILD_FILE :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem Subroutine that builds a particular file if "%2" == "" (set filename=%~n1) else (set filename=%2) echo ======================================== [ %filename%.exe ] >> %logfile% <nul (set/p output=Working on %filename%.exe ) if exist %filename%.exe ( <nul (set/p output=- exe exist ) ) else ( <nul (set/p output=- compiling ) echo [[ %CXX% %CXXFLAGS% %filename%*.cpp /Fe%filename%.exe /link %LNKFLAGS% /MACHINE:%M% ]] >> %logfile% 2>&1 %CXX% %CXXFLAGS% %filename%*.cpp /Fe%filename%.exe /link %LNKFLAGS% /MACHINE:%M% >> %logfile% 2>&1 if errorlevel 1 <nul (set/p output=- error) & goto HANDLE_TEMPORARIES ) if "%PGO%"=="" goto HANDLE_TEMPORARIES if exist %filename%-pgo.exe ( <nul (set/p output=- pgo exists) ) else ( <nul (set/p output=- instrumenting ) echo [[ %CXX% %CXXFLAGS% %filename%*.cpp /Fe%filename%-pgo.exe /link %LNKFLAGS% /MACHINE:%M% /PGD:"%filename%-pgo.pgd" /LTCG:PGINSTRUMENT ]] >> %logfile% 2>&1 %CXX% %CXXFLAGS% %filename%*.cpp /Fe%filename%-pgo.exe /link %LNKFLAGS% /MACHINE:%M% /PGD:"%filename%-pgo.pgd" /LTCG:PGINSTRUMENT >> %logfile% 2>&1 if errorlevel 1 <nul (set/p output=- error) & goto HANDLE_TEMPORARIES <nul (set/p output=- profiling ) %filename%-pgo.exe > nul <nul (set/p output=- optimizing ) echo [[ link %LNKFLAGS% /MACHINE:%M% /PGD:"%filename%-pgo.pgd" %filename%-pgo.obj /LTCG:PGOPTIMIZE ]] >> %logfile% 2>&1 link %LNKFLAGS% /MACHINE:%M% /PGD:"%filename%-pgo.pgd" %filename%-pgo.obj /LTCG:PGOPTIMIZE >> %logfile% 2>&1 if errorlevel 1 <nul (set/p output=- error) & goto HANDLE_TEMPORARIES ) :HANDLE_TEMPORARIES echo. if "%KEEP_TMP%"=="" del %filename%.obj %filename%.pdb %filename%-pgo.obj %filename%-pgo.pdb %filename%-pgo.pgd %filename%-pgo*.pgc > nul 2>&1 goto END :TEST :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: if "%1" == "" goto TEST_ALL :TEST_ARG :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem Iterate through all the arguments that were passed and test them for %%i in (%1) do call :SUB_TEST_FILE "%%i" shift if "%1" == "" goto END goto TEST_ARG :TEST_ALL :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem User didn't provide any arguments, assume all .exe files in the current folder for %%i in (*.exe) do call :SUB_TEST_FILE "%%i" goto END :SUB_TEST_FILE ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: echo. echo ======================================== [ %1 ] if not exist %~n1.*in %1 if exist %~n1.*in for %%i in (%~n1.*in) do echo. && echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ { "%%i" } && type "%%i" && echo. && echo ---------------------------------------- && %1 < "%%i" goto END :TIMING :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: for %%G in (x86 x64) do ( rem Set up VC variables for x86 build call "%VCINSTALLDIR%vcvarsall.bat" %%G for %%F in (0 1) do ( for %%S in (p f P F) do ( for %%T in (REP RND SEQ) do ( call :SUB_BUILD_TIMING %%F %%S %%T %%G ) ) ) ) goto END :SUB_BUILD_TIMING :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: setlocal set S=%2 set M=%4 if "%1" == "0" ( if "%2" == "f" set S=k if "%2" == "F" set S=K ) if "%1" == "0" (set F=non) ELSE (set F=fwd) if "%S%" == "p" set G=generic& set E=poly if "%S%" == "P" set G=special& set E=poly if "%S%" == "k" set G=generic& set E=kind if "%S%" == "K" set G=special& set E=kind if "%S%" == "f" set G=generic& set E=knfw if "%S%" == "F" set G=special& set E=knfw if "%M%" == "x86" set B=32 if "%M%" == "x64" set B=64 set PGO=1 set CXXFLAGS=/DXTL_VISITOR_FORWARDING=%1 /DXTL_DEFAULT_SYNTAX='%S%' /DXTL_%3_TEST %CXXFLAGS% call :SUB_BUILD_FILE skeleton.cxx time-%B%-%F%-%G%-%E%-%3 endlocal goto END :SUB_PARSE_DATE :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem The following code has been derived from: rem - Date Parsing: http://ss64.com/nt/syntax-getdate.html rem - Time Parsing: http://ss64.com/nt/syntax-gettime.html setlocal for /f "tokens=1-4 delims=/-. " %%G in ('date /t') do (call :SUB_FIXDATE %%G %%H %%I %%J) for /f "tokens=1-3 delims=1234567890 " %%a in ("%time%") do set "delims=%%a%%b%%c" for /f "tokens=1-4 delims=%delims%" %%G in ("%time%") do ( set hh=%%G set mn=%%H set ss=%%I set ms=%%J ) rem Strip any leading spaces set hh=%hh: =% rem Ensure the hours have a leading zero if 1%hh% LSS 20 Set hh=0%hh% endlocal&set mm=%mm%&set dd=%dd%&set yy=%yy%&set hh=%hh%&set mn=%mn%&set ss=%ss%&set ms=%ms% goto END :SUB_FIXDATE ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: if "%1:~0,1%" GTR "9" shift for /f "skip=1 tokens=2-4 delims=(-)" %%G in ('echo.^|date') do ( set %%G=%1&set %%H=%2&set %%I=%3) goto END :END :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
akrzemi1/Mach7
code/msvc/COUParser/Class Hierarchies/build.bat
bat
bsd-3-clause
11,136
setlocal EnableDelayedExpansion del /q /s .\coverage\json_files\*.json cd ../ for /f %%p in ('grunt ') do set gruntRe=%%p cd spec for /f %%j in ('karma start ./karma.conf.js') do set karmaRe=%%j for /f %%i in ('node ./mergeCoverageForIstanbul.js') do set re=%%i istanbul report html coverage/json_files/%re%.json
fex-team/kity
spec/runTest.bat
bat
bsd-3-clause
314
"%VS110COMNTOOLS%..\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "..\..\Bin\RDP_ClientTestSuite.dll" /Settings:..\..\Bin\ClientLocal.TestSettings /Tests:RDPEGFX_CacheManagement_Negative_Delete_InexistentCacheSlot /Logger:trx pause
dongruiqing/WindowsProtocolTestSuites
TestSuites/RDP/src/Batch/RDPEGFX/RDPEGFX_CacheManagement_Negative_Delete_InexistentCacheSlot.cmd
bat
mit
248
@if "%1" == "" goto :needpackage @if "%2" == "" goto :needfeed ..\packages\NuGet.CommandLine.3.3.0\tools\nuget push %1 -Source https://fuselabs.pkgs.visualstudio.com/DefaultCollection/_packaging/packages/nuget/v3/index.json -ApiKey %2 @goto end :needpackage @echo "You need to pass a package as first parameter" @goto end :needfeed @echo "You need to pass a feed name, either: fuse or fusesymbols" :end
jockorob/BotBuilder
CSharp/Library/pushpackage.cmd
bat
mit
406
pip2 install pyinstaller pip2 install --upgrade setuptools pyinstaller --onefile --distpath . --hidden-import tkinter --paths bCNC --icon bCNC/bCNC.ico --name bCNC bCNC.py pause
samowitsch/bCNC
build-exe-loader.bat
bat
gpl-2.0
178
@echo off rem Run iMPACT to program the Xilinx device. impact -batch loadfpga.impact if exist _impact.cmd del _impact.cmd
tmg82/uos-embedded
examples/arm-sam9-s3e/fpga/loadfpga.bat
bat
gpl-2.0
126
set projectname=codegen set target=%1% if "%target%" == "" ( echo. echo Error: Target is not set. exit 1 ) set arch=%2% if "%arch%" == "" ( echo. echo Error: Arch is not set. exit 1 ) set deploydir=%cd%\..\..\deploy\win_%arch% set libdir=%deploydir%\staff\lib set incdir=%deploydir%\staff\include\staff set thisincdir=%incdir%\%projectname% if not EXIST %libdir% mkdir %libdir% xcopy /Y /S %target%*.dll %libdir% xcopy /Y /S %target%*.lib %libdir% if not EXIST %incdir% mkdir %incdir% if not EXIST %thisincdir% mkdir %thisincdir% xcopy /Y /S src\*.h %thisincdir%
gale320/staff
staff/tools/codegenparser/deploy.cmd
bat
apache-2.0
610
@echo off echo [INFO] Use maven jetty-plugin run the project. cd %~dp0 cd .. set MAVEN_OPTS=%MAVEN_OPTS% -XX:MaxPermSize=128m call mvn jetty:run -Djetty.port=8080 cd bin pause
lenzl/springside4
support/maven-archetype/src/main/resources/archetype-resources/bin/jetty.bat
bat
apache-2.0
188
@rem Copyright 2011 Google Inc. @rem @rem Use of this source code is governed by a BSD-style license that can be @rem found in the LICENSE file. @ECHO OFF rem Launches make.py on Windows, after setting Visual Studio environment variables. rem See http://code.google.com/p/skia/wiki/GettingStartedOnWindows if "%DevEnvDir%"=="" goto setup_env_vars :run_python rem Run make.py and propagate its return value. python make.py %* exit /B %ERRORLEVEL% :setup_env_vars rem Visual Studio environment variables aren't set yet, so run vcvars32.bat if DEFINED VS110COMNTOOLS ( call "%VS110COMNTOOLS%..\..\VC\bin\vcvars32.bat" ) else if DEFINED VS100COMNTOOLS ( call "%VS100COMNTOOLS%..\..\VC\bin\vcvars32.bat" ) else ( goto error_no_VS ) if %ERRORLEVEL% neq 0 exit /B %ERRORLEVEL% goto run_python :error_no_VS echo ERROR: Neither VS100COMNTOOLS nor VS110COMNTOOLS environment variable is set. echo Are you sure Visual Studio 2010 or 2012 is installed? exit /B 1
hbwhlklive/color-emoji.skia
make.bat
bat
bsd-3-clause
1,009
executable = /bin/echo arguments = OK universe = scheduler output = $(job).out error = $(job).err log = submit-H.log Notification = NEVER queue
htcondor/htcondor
src/condor_tests/job_dagman_splice-H.cmd
bat
apache-2.0
175
set SIGN_TARGET=%1% "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\signtool" sign /sha1 E5D84022D15FD10154AA7A75EC6CA055EE7E52A7 /v /ac "cert\After_10-10-10_MSCV-VSClass3.cer" /s MY /n "RStudio, Inc." /t http://timestamp.VeriSign.com/scripts/timstamp.dll %SIGN_TARGET% "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\signtool" verify /v /kp %SIGN_TARGET%
thklaus/rstudio
package/win32/codesign.bat
bat
agpl-3.0
364
@echo off REM REM Copyright 2013 Carlos Tasada 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 ** This Windows BAT file is not tested with each Voldemort release. ** set argC=0 for %%a in (%*) do set /a argC+=1 if %argC% geq 2 goto :continue echo "USAGE: bin/voldemort-shell.bat store_name bootstrap_url [command_file] [--client-zone-id <zone-id>]" goto :eof :continue setlocal SET BASE_DIR=%~dp0.. call "%BASE_DIR%\bin\run-class.bat" jline.ConsoleRunner voldemort.VoldemortClientShell %* endlocal :eof
cshaxu/voldemort
bin/voldemort-shell.bat
bat
apache-2.0
1,034
set MSBuild="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" %MSBuild% NemerleWeb.Website.sln
NemerleWeb/NemerleWeb
build-website.cmd
bat
mit
107
@..\src\packages\Redis-64.2.8.19\redis-server.exe master-debug.conf
christianacca/Cache-Abstraction
tools/redis-server master-debug.cmd
bat
mit
68
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. epub3 to make an epub3 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled echo. dummy to check syntax errors of document sources goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\github_labelbot.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\github_labelbot.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "epub3" ( %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) if "%1" == "dummy" ( %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy if errorlevel 1 exit /b 1 echo. echo.Build finished. Dummy builder generates no files. goto end ) :end
Fanarim/github_labelbot
docs/make.bat
bat
mit
7,750
echo Text OS version: !TextOS.Version! echo BIOS version: !BIOS_version!
Text-OS/Text-OS
Data/Commands/ver.bat
bat
mit
72
TASKKILL /F /IM "mzn2fzn.exe" TASKKILL /F /IM "fzn.exe" TASKKILL /F /IM "fzn-gecode.exe" TASKKILL /F /IM "fzn-jacop.exe" TASKKILL /F /IM "flatzinc.exe"
isse-augsburg/minibrass
source-code/java/killscript.cmd
bat
mit
153
cd .. E:\soft\R-3.2.2\bin\x64\Rscript bacgwas.R --input D:\work\bio\workdir\raw\dataset_1 --output D:\work\bio\tmp\lasso --plugin lasso cd bin pause
ikavalio/MDRTB-pipe
bin/test_lasso.bat
bat
mit
148
@SET DeploymentZipFileStoreInSystemSimulator=%~dp0\deploymentfiles\webjobsdeploy.zip @SET DeploymentZipFileStoreInSystemWebApp=%~dp0\deploymentfiles\webappdeploy.zip del %DeploymentZipFileStoreInSystemSimulator% del %DeploymentZipFileStoreInSystemWebApp% msbuild ../simulators/SimulatorWebJobHost/SimulatorWebJobHost/SimulatorWebJobHost.csproj /t:Package /p:PackageLocation=%DeploymentZipFileStoreInSystemSimulator%;Configuration=Debug msbuild ../web/show-floormap/web-show-floormap/web-show-floormap.csproj /t:Package /p:PackageLocation=%DeploymentZipFileStoreInSystemWebApp%;Configuration=azure-deploy :END
buzzfrog/annero-demo
deployment/build-packages.cmd
bat
mit
612
reg add "HKLM\Software\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell" /f /v "ExecutionPolicy" /t REG_SZ /d "Unrestricted" reg add "HKCU\Software\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell" /f /v "ExecutionPolicy" /t REG_SZ /d "Unrestricted" pause
LEONID-DOROGIN/PCSI
shell/compatibility/Microsoft/preferences-after-Windows-install/stage1.cmd
bat
mit
267
@echo off :: Tests. Part of https://github.com/3F/hMSBuild setlocal enableDelayedExpansion set /a gcount=!%~1! & set /a failedTotal=!%~2! set core=%~3 & set wdir=%~4 set core="%core%" set vswhelper="%wdir%vswhere.bat" set vswlog="%wdir%vswas.log" echo echo %%*^> %vswlog% > %vswhelper% :: =========== Tests ==================== set "base=-nologo -prerelease -requires Microsoft.Component.MSBuild" call :Vrfy base "-products *" "-only-path" call :Vrfy base "-products * -latest" "-only-path" call :Vrfy base "-latest -products *" "-only-path" call :Vrfy base "-version [15.0,16.0) -products * -latest" "-only-path" call :Vrfy base "-products * -latest -requiresAny -version [15.0,16.0) -requires Microsoft.NetCore.Component.SDK" "-only-path" call :Vrfy base "-products * -latest -requiresAny -version 16.0 -requires Microsoft.Component.MSBuild" "-only-path" call :Vrfy base "-products * -latest -requiresAny -version [15.0,16.0) -requires Microsoft.Component.MSBuild Microsoft.NetCore.Component.SDK" "-only-path" :: =========== /Tests ==================== del /Q/F %vswhelper% del /Q/F %vswlog% endlocal & set /a %1=%gcount% & set /a %2=%failedTotal% if "!failedTotal!"=="0" exit /B 0 exit /B 1 :Vrfy :: (1) - Expected base line :: (2) - `vsw-as` keys :: [3] - left args before vsw-as keys :: [4] - right args before vsw-as keys set __base=!%~1! & set vswas=%~2 & set left=%~3 & set right=%~4 set cmd=%left% -vsw-as "%vswas%" %right% set /a "gcount+=1" echo. echo ----- echo Test%gcount%: %cmd% echo ----- call %core% %cmd% for /f "usebackq tokens=*" %%a in (`type %vswlog%`) do set "actual=%%a" set "expected=%__base%%vswas%" echo "%expected%" == "%actual%" call :isEqFailed expected actual if not "!ERRORLEVEL!"=="0" ( REM echo core: %core% goto eqFailed ) echo [Passed] exit /B 0 :eqFailed set /a "failedTotal+=1" exit /B 1 :exec set app=!%1! set _cmd=!%2! echo `%app% %_cmd%` for /f "usebackq tokens=*" %%a in (`%app% %_cmd%`) do set res=%%a set res=%res:"=% set %3=%res% exit /B 0 :isEqFailed set left=!%1! set right=!%2! if not "%left%"=="%right%" ( echo [Failed]: ~ echo "%left%" echo "%right%" echo. exit /B 1 ) exit /B 0 :print set msgfmt=%1 set msgfmt=!msgfmt:~0,-1! set msgfmt=!msgfmt:~1! echo.[%TIME% ] !msgfmt! exit /B 0
3F/hMSBuild
tests/vswas.bat
bat
mit
2,291
@echo off setlocal %TB-PLATFORM-PROJECTS-DRIVE% path %TB-PLATFORM-PROJECTS-DRIVE%%TB-PLATFORM-PROJECTS-PATH%\Build\Subscripts;%PATH% set BIN-PATH=%TB-PLATFORM-PROJECTS-PATH%\Bin call setTradeBuildVersion.bat set DEP=/DEP:%TB-PLATFORM-PROJECTS-DRIVE%%TB-PLATFORM-PROJECTS-PATH%\Build\ExternalDependencies.txt echo ================================= echo Making test projects echo . pushd %TB-PLATFORM-PROJECTS-PATH%\src\IBAPIV100 call makeExe.bat IBAPILoadTester IBAPILoadTester /M:E %DEP% if errorlevel 1 pause popd pushd %TB-PLATFORM-PROJECTS-PATH%\src\IBEnhAPI call makeExe.bat ContractDataTest1 ContractDataTest1 /M:E %DEP% if errorlevel 1 pause call makeExe.bat MarketDataTest1 MarketDataTest1 /M:E %DEP% if errorlevel 1 pause call makeExe.bat HistDataTest1 HistDataTest1 /M:E %DEP% if errorlevel 1 pause :: call makeExe.bat IBOrdersTest1 IBOrdersTest1 /M:E %DEP% :: if errorlevel 1 pause popd pushd %TB-PLATFORM-PROJECTS-PATH%\src\OrderUtils call makeExe.bat OrdersTest1 OrdersTest1 /M:E %DEP% if errorlevel 1 pause popd pushd %TB-PLATFORM-PROJECTS-PATH%\src\TradingUI call makeExe.bat MarketChartTest1 MarketChartTest1 /M:E %DEP% if errorlevel 1 pause call makeExe.bat TickerGridTest1 TickerGridTest1 /M:E %DEP% if errorlevel 1 pause popd
rlktradewright/tradebuild-platform
Build/makeTestProjects.bat
bat
mit
1,267
@echo off set xv_path=C:\\Xilinx\\Vivado\\2016.4\\bin call %xv_path%/xelab -wto 99d627bb7b3e47b6991e89c6529e9713 -m64 --debug typical --relax --mt 2 -L xil_defaultlib -L secureip --snapshot ieee754_fp_to_uint_behav xil_defaultlib.ieee754_fp_to_uint -log elaborate.log if "%errorlevel%"=="0" goto SUCCESS if "%errorlevel%"=="1" goto END :END exit 1 :SUCCESS exit 0
lasalvavida/Zybo-Open-Source-Video-IP-Toolbox
general_ip/ieee754_fp_to_uint/ieee754_fp_to_uint.sim/sim_1/behav/elaborate.bat
bat
mit
365
pushd "%DEPLOYMENT_TARGET%" grunt --no-color popd
DanielLarsenNZ/dlnz-blog
deployment/postdeploymentactions/3-grunt.cmd
bat
mit
51
@if not defined _echo @echo off setlocal call %~dp0sync.cmd if NOT [%ERRORLEVEL%]==[0] exit /b 1 call %~dp0build-managed.cmd -Project:%~dp0src\SharedFrameworkValidation\SharedFrameworkValidation.proj -- /t:ReBuild if NOT [%ERRORLEVEL%]==[0] exit /b 1 call %~dp0build-tests.cmd -- /p:RefPath=%~dp0bin\ref\SharedFrameworkValidation /p:RunningSharedFrameworkValidation=true /p:RuntimePath=%~dp0bin\runtime\SharedFrameworkValidation\ exit /b %ERRORLEVEL%
rjxby/corefx
SharedFrameworkValidation.cmd
bat
mit
452
@echo off rem #### 002.runDriverPackOnline cd.. cd.. cd downloads @powershell -NoProfile -ExecutionPolicy Bypass -Command "$down = New-Object System.Net.WebClient; $url = 'http://download.drp.su/17-online/DriverPack-17-Online.exe'; $file = 'DriverPack.exe'; $down.DownloadFile($url,$file); $exec = New-Object -com shell.application; $exec.shellexecute($file); exit;" rem pause
adgellida/windowsScripts
002.runDriverpackOnline.bat
bat
gpl-2.0
378
cmd_vmlinux := /home/robin/toolchain/bin/arm-none-eabi-ld -EL -p --no-undefined -X --build-id -o vmlinux -T arch/arm/kernel/vmlinux.lds arch/arm/kernel/head.o arch/arm/kernel/init_task.o init/built-in.o --start-group usr/built-in.o arch/arm/kernel/built-in.o arch/arm/mm/built-in.o arch/arm/common/built-in.o arch/arm/mach-msm/built-in.o arch/arm/vfp/built-in.o arch/arm/perfmon/built-in.o kernel/built-in.o mm/built-in.o fs/built-in.o ipc/built-in.o security/built-in.o crypto/built-in.o block/built-in.o arch/arm/lib/lib.a lib/lib.a arch/arm/lib/built-in.o lib/built-in.o drivers/built-in.o sound/built-in.o firmware/built-in.o net/built-in.o --end-group .tmp_kallsyms2.o
spacecaker/CM7_Space_Kernel_Cooper
.vmlinux.cmd
bat
gpl-2.0
698
cmd_drivers/video/fb.o := ../arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi-ld -EL -r -o drivers/video/fb.o drivers/video/fbmem.o drivers/video/fbmon.o drivers/video/fbcmap.o drivers/video/fbsysfs.o drivers/video/modedb.o drivers/video/fbcvt.o
chrnueve/udooImaxdi
kernel_oficial_source/drivers/video/.fb.o.cmd
bat
gpl-2.0
249
start "clientfileagent" cmd /k "msvc\clientfileagent.exe" %*
hughperkins/osmp-cpp
spawnclientfileagent.bat
bat
gpl-2.0
62
cmd_sound/usb/usx2y/built-in.o := rm -f sound/usb/usx2y/built-in.o; ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/usb/usx2y/built-in.o
tcp209/kernel_samsung_epic4gtouch
build/epic4gtouch/sound/usb/usx2y/.built-in.o.cmd
bat
gpl-2.0
187
cmd_drivers/block/built-in.o := ld -m elf_i386 -r -o drivers/block/built-in.o drivers/block/floppy.o drivers/block/brd.o drivers/block/loop.o
namgk/kernel-tut
drivers/block/.built-in.o.cmd
bat
gpl-2.0
146
cmd_net/ipv6/anycast.o := gcc -Wp,-MD,net/ipv6/.anycast.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(anycast)" -D"KBUILD_MODNAME=KBUILD_STR(ipv6)" -c -o net/ipv6/anycast.o net/ipv6/anycast.c deps_net/ipv6/anycast.o := \ net/ipv6/anycast.c \ $(wildcard include/config/proc/fs.h) \ include/linux/capability.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/asm/processor.h \ $(wildcard include/config/x86/vsmp.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/paravirt.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/cmov.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ include/asm/alternative.h \ include/asm/asm.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/debug/lock/alloc.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.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) \ include/linux/preempt.h \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/math64.h \ include/asm/div64.h \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ include/linux/elf.h \ include/linux/elf-em.h \ include/asm/elf.h \ $(wildcard include/config/compat/vdso.h) \ include/asm/user.h \ include/asm/user_32.h \ include/asm/auxvec.h \ include/asm/vdso.h \ include/asm/desc.h \ include/asm/ldt.h \ include/asm/mmu.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ $(wildcard include/config/cc/stackprotector.h) \ include/asm-x86/mach-default/mach_apicdef.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/wait.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/asm/local.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) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/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/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/asm/module.h \ $(wildcard include/config/m486.h) \ $(wildcard include/config/m586.h) \ $(wildcard include/config/m586tsc.h) \ $(wildcard include/config/m586mmx.h) \ $(wildcard include/config/mcore2.h) \ $(wildcard include/config/m686.h) \ $(wildcard include/config/mpentiumii.h) \ $(wildcard include/config/mpentiumiii.h) \ $(wildcard include/config/mpentiumm.h) \ $(wildcard include/config/mpentium4.h) \ $(wildcard include/config/mk6.h) \ $(wildcard include/config/mk8.h) \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/mcrusoe.h) \ $(wildcard include/config/mefficeon.h) \ $(wildcard include/config/mwinchipc6.h) \ $(wildcard include/config/mwinchip2.h) \ $(wildcard include/config/mwinchip3d.h) \ $(wildcard include/config/mcyrixiii.h) \ $(wildcard include/config/mviac3/2.h) \ $(wildcard include/config/mviac7.h) \ $(wildcard include/config/mgeodegx1.h) \ $(wildcard include/config/mgeode/lx.h) \ include/linux/random.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/socket.h \ include/asm/socket.h \ include/asm/sockios.h \ include/linux/sockios.h \ include/linux/uio.h \ include/linux/net.h \ $(wildcard include/config/sysctl.h) \ include/linux/sysctl.h \ include/linux/in6.h \ include/linux/netdevice.h \ $(wildcard include/config/wlan/80211.h) \ $(wildcard include/config/ax25.h) \ $(wildcard include/config/mac80211/mesh.h) \ $(wildcard include/config/tr.h) \ $(wildcard include/config/net/ipip.h) \ $(wildcard include/config/net/ipgre.h) \ $(wildcard include/config/ipv6/sit.h) \ $(wildcard include/config/ipv6/tunnel.h) \ $(wildcard include/config/netpoll.h) \ $(wildcard include/config/wireless/ext.h) \ $(wildcard include/config/net/poll/controller.h) \ $(wildcard include/config/net/ns.h) \ $(wildcard include/config/netpoll/trap.h) \ $(wildcard include/config/net/dma.h) \ $(wildcard include/config/netdevices/multiqueue.h) \ include/linux/if.h \ include/linux/hdlc/ioctl.h \ include/linux/if_ether.h \ include/linux/skbuff.h \ $(wildcard include/config/nf/conntrack.h) \ $(wildcard include/config/bridge/netfilter.h) \ $(wildcard include/config/net/sched.h) \ $(wildcard include/config/net/cls/act.h) \ $(wildcard include/config/ipv6/ndisc/nodetype.h) \ $(wildcard include/config/network/secmark.h) \ include/linux/textsearch.h \ include/linux/err.h \ include/net/checksum.h \ include/asm/uaccess.h \ include/asm/uaccess_32.h \ $(wildcard include/config/x86/intel/usercopy.h) \ $(wildcard include/config/x86/wp/works/ok.h) \ include/asm/checksum.h \ include/asm/checksum_32.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/rcuclassic.h \ include/linux/dmaengine.h \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/completion.h \ include/linux/semaphore.h \ include/asm/device.h \ $(wildcard include/config/dmar.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/dma-mapping.h \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/have/dma/attrs.h) \ include/asm/dma-mapping.h \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ include/asm/scatterlist.h \ include/linux/mm.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/rbtree.h \ include/linux/prio_tree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/auxvec.h \ include/asm/pgtable.h \ include/asm/pgtable_32.h \ $(wildcard include/config/highpte.h) \ include/asm/paravirt.h \ include/asm/pgtable-2level-defs.h \ include/asm/pgtable-2level.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/asm/io.h \ include/asm/io_32.h \ include/asm-generic/iomap.h \ include/linux/vmalloc.h \ include/asm/swiotlb.h \ $(wildcard include/config/swiotlb.h) \ include/linux/hrtimer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/high/res/timers.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) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/asm/timex.h \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/if_packet.h \ include/linux/timer.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/workqueue.h \ include/net/net_namespace.h \ $(wildcard include/config/ipv6.h) \ $(wildcard include/config/ip/dccp.h) \ $(wildcard include/config/netfilter.h) \ $(wildcard include/config/net.h) \ include/net/netns/core.h \ include/net/netns/unix.h \ include/net/netns/packet.h \ include/net/netns/ipv4.h \ $(wildcard include/config/ip/multiple/tables.h) \ include/net/inet_frag.h \ include/net/netns/ipv6.h \ $(wildcard include/config/ipv6/multiple/tables.h) \ include/net/netns/dccp.h \ include/net/netns/x_tables.h \ include/linux/seq_file_net.h \ include/linux/seq_file.h \ include/linux/interrupt.h \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/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/sysvipc.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/asm/seccomp.h \ include/asm/seccomp_32.h \ include/linux/unistd.h \ include/asm/unistd.h \ include/asm/unistd_32.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/aio.h \ include/linux/aio_abi.h \ include/asm/hardirq.h \ include/asm/hardirq_32.h \ include/linux/irq.h \ $(wildcard include/config/irq/per/cpu.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/generic/pending/irq.h) \ $(wildcard include/config/irqbalance.h) \ $(wildcard include/config/auto/irq/affinity.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ include/asm/irq.h \ include/asm/irq_32.h \ include/asm-x86/mach-default/irq_vectors.h \ include/asm-x86/mach-default/irq_vectors_limits.h \ include/asm/irq_regs.h \ include/asm/irq_regs_32.h \ include/asm/hw_irq.h \ include/asm/hw_irq_32.h \ include/linux/profile.h \ $(wildcard include/config/profiling.h) \ include/asm/sections.h \ include/asm-generic/sections.h \ include/linux/irq_cpustat.h \ include/linux/if_arp.h \ include/linux/route.h \ include/linux/proc_fs.h \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/namei.h \ include/linux/radix-tree.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/magic.h \ include/net/sock.h \ include/linux/security.h \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ include/linux/binfmts.h \ include/linux/shm.h \ include/asm/shmparam.h \ include/asm/shmbuf.h \ include/linux/msg.h \ include/asm/msgbuf.h \ include/linux/key.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/filter.h \ include/net/dst.h \ $(wildcard include/config/net/cls/route.h) \ $(wildcard include/config/xfrm.h) \ include/linux/rtnetlink.h \ include/linux/netlink.h \ include/linux/if_link.h \ include/linux/if_addr.h \ include/linux/neighbour.h \ include/net/neighbour.h \ include/net/rtnetlink.h \ include/net/netlink.h \ include/net/snmp.h \ include/linux/snmp.h \ include/net/ipv6.h \ include/linux/ipv6.h \ $(wildcard include/config/ipv6/privacy.h) \ $(wildcard include/config/ipv6/router/pref.h) \ $(wildcard include/config/ipv6/route/info.h) \ $(wildcard include/config/ipv6/optimistic/dad.h) \ $(wildcard include/config/ipv6/mroute.h) \ $(wildcard include/config/ipv6/mip6.h) \ $(wildcard include/config/ipv6/subtrees.h) \ include/linux/icmpv6.h \ include/linux/tcp.h \ $(wildcard include/config/tcp/md5sig.h) \ include/net/inet_connection_sock.h \ include/linux/poll.h \ include/asm/poll.h \ include/asm-generic/poll.h \ include/net/inet_sock.h \ include/linux/jhash.h \ include/net/request_sock.h \ include/net/route.h \ include/net/inetpeer.h \ include/linux/in_route.h \ include/linux/ip.h \ include/net/inet_timewait_sock.h \ include/net/tcp_states.h \ include/net/timewait_sock.h \ include/linux/udp.h \ include/net/if_inet6.h \ include/net/ndisc.h \ include/net/protocol.h \ include/net/addrconf.h \ include/linux/in.h \ include/net/ip6_route.h \ include/net/ip6_fib.h \ include/linux/ipv6_route.h \ net/ipv6/anycast.o: $(deps_net/ipv6/anycast.o) $(deps_net/ipv6/anycast.o):
namgk/kernel-tut
net/ipv6/.anycast.o.cmd
bat
gpl-2.0
24,906
cmd_arch/arm/vfp/built-in.o := /home/josh/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin/arm-linux-gnueabihf-ld -EL --no-warn-mismatch -r -o arch/arm/vfp/built-in.o arch/arm/vfp/vfp.o
JoinTheRealms/TF700-dualboot-stockbased
arch/arm/vfp/.built-in.o.cmd
bat
gpl-2.0
204
cmd_util-linux/dmesg.o := mips-openwrt-linux-uclibc-gcc -Wp,-MD,util-linux/.dmesg.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.19.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -Os -pipe -mips32r2 -mtune=34kc -mno-branch-likely -fno-caller-saves -fhonour-copts -Wno-error=unused-but-set-variable -msoft-float -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(dmesg)" -D"KBUILD_MODNAME=KBUILD_STR(dmesg)" -c -o util-linux/dmesg.o util-linux/dmesg.c deps_util-linux/dmesg.o := \ util-linux/dmesg.c \ $(wildcard include/config/feature/dmesg/pretty.h) \ $(wildcard include/config/feature/clean/up.h) \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/klog.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/features.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_config.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/cdefs.h \ include/libbb.h \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/include-fixed/limits.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/include-fixed/syslimits.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/limits.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/posix1_lim.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/local_lim.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/linux/limits.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_local_lim.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/posix2_lim.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/xopen_lim.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/stdio_lim.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/byteswap.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/byteswap.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/byteswap-common.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/endian.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/endian.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/include/stdint.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/stdint.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/wchar.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/wordsize.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/include/stdbool.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/unistd.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/posix_opt.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/environments.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/types.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/include/stddef.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/typesizes.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/pthreadtypes.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sgidefs.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/confname.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/getopt.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/ctype.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_touplow.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/dirent.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/dirent.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/errno.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/errno.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/linux/errno.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm/errno.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm-generic/errno-base.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/syscall.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sysnum.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/fcntl.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/fcntl.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/types.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/time.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/select.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/select.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sigset.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/time.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/sysmacros.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uio.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/stat.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/stat.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/inttypes.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/netdb.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/netinet/in.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/socket.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/uio.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/socket.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sockaddr.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm/socket.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm/sockios.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm/ioctl.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm-generic/ioctl.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/in.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/siginfo.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/netdb.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/setjmp.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/setjmp.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/signal.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/signum.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sigaction.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sigcontext.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sigstack.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/ucontext.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sigthread.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/stdio.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_stdio.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/wchar.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_mutex.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/pthread.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sched.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/sched.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_clk_tck.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/uClibc_pthread.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/include/stdarg.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/stdlib.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/waitflags.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/waitstatus.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/alloca.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/string.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/poll.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/poll.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/ioctl.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/ioctls.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm/ioctls.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/ioctl-types.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/ttydefaults.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/mman.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/mman.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/resource.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/resource.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/time.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/wait.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/termios.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/termios.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/param.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/linux/param.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm/param.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/asm-generic/param.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/mntent.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/paths.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/sys/statfs.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/bits/statfs.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/pwd.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/grp.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/shadow.h \ /home/shizhai/new_zhongwang/trunk/staging_dir/toolchain-mips_r2_gcc-4.6-linaro_uClibc-0.9.33.2/lib/gcc/mips-openwrt-linux-uclibc/4.6.4/../../../../mips-openwrt-linux-uclibc/sys-include/arpa/inet.h \ include/xatonum.h \ util-linux/dmesg.o: $(deps_util-linux/dmesg.o) $(deps_util-linux/dmesg.o):
shizhai/wprobe
build_dir/target-mips_r2_uClibc-0.9.33.2/busybox-1.19.4/util-linux/.dmesg.o.cmd
bat
gpl-2.0
28,699
@echo off pyinstaller --distpath dist_windows --clean --icon="meta#grid_logo_icon.ico" --onefile meta-grid_install_or_update.py pause
patschwork/meta_grid
helper_tools/Python/installer/build_for_windows.bat
bat
gpl-3.0
138
echo off setlocal enabledelayedexpansion echo. "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql" -e "truncate table refrain_staging.map_default_charges ;" -u update_recon echo TRUNCATE refrain_staging.map_default_charges DONE echo. FOR %%f IN ("*.csv") DO ( set old=%%~dpnxf set new=!old:\=\\! "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql" -e "load data local infile '"!new!"' IGNORE into table refrain_staging.map_default_charges COLUMNS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"""' IGNORE 1 ROWS" -u update_recon echo IMPORT %%~nxf DONE ) echo. "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql" -e "select count(*) AS 'Total Imported Data' from refrain_staging.map_default_charges ;" -u Recon pause
reflaz/sql-scripts
refrain-tools/00-c-import/REFRAIN_TOOLS_STAGING/_MAPPING/MAP_DEFAULT_CHARGES/AA_MAP_DEFAULT_CHARGES.bat
bat
gpl-3.0
726
startClass com.devoteam.srit.xmlloader.sigtran.ap.TestANS1Object nofork %*
yongs2/mts-project
mts/src/main/bin/asn1_templater.bat
bat
gpl-3.0
75
@echo off start love\love-0.10.2-win32\love.exe .
semyon422/lua-mania
start-x32.bat
bat
gpl-3.0
49
echo off rem <h4>FeatureDomain:</h4> rem Collaboration rem <h4>FeatureDescription:</h4> rem run the app with rest-services rem <h4>Syntax:</h4> rem PROG rem <h4>Example:</h4> rem cd D:\public_projects\yaio\yaio rem sbin\start-yaioapp rem rem @package de.yaio rem @author Michael Schreiner <[email protected]> rem @category Collaboration rem @copyright Copyright (c) 2011-2014, Michael Schreiner rem @license http://mozilla.org/MPL/2.0/ Mozilla Public License 2.0 rem set pathes set YAIOSCRIPTPATH=%~dp0 set YAIOBASEPATH=%YAIOSCRIPTPATH% set BASEPATH=%YAIOBASEPATH% set YAIOCONFIGPATH=%YAIOSCRIPTPATH%..\config\ rem init config call %YAIOCONFIGPATH%\config-server.bat %YAIOSCRIPTPATH% set CMD=java %JAVAOPTIONS% -cp %CP% %PROG_APPPROPAGATOR% %CFG% echo "start-apppropagator: %CMD%" start %CMD% rem add --debug option to see the startprocess of spring-boot set CMD=java %JAVAOPTIONS% -cp %CP% %PROG_APP% %CFG% echo "start-webshotserver: %CMD%" start %CMD%
das-praktische-schreinerlein/yaio-webshot-service
sbin/start-webshotserver.bat
bat
mpl-2.0
997
@rem *************************************************************************** @rem Copyright (C) 2020, exense GmbH @rem @rem This file is part of STEP @rem @rem STEP is free software: you can redistribute it and/or modify @rem it under the terms of the GNU Affero General Public License as published by @rem the Free Software Foundation, either version 3 of the License, or @rem (at your option) any later version. @rem @rem STEP 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 Affero General Public License for more details. @rem @rem You should have received a copy of the GNU Affero General Public License @rem along with STEP. If not, see <http://www.gnu.org/licenses/>. @rem *************************************************************************** rem @echo off TITLE STEP Controller rem if java.exe isn't on your path or is too old, then set your own as follows (watch for the backslash and double quote at the end): rem SET JAVA_PATH=C:\Program Files\Java\jdk-11.0.10\bin\ SET JAVA_PATH= SET JAVA_OPTS=%JAVA_OPTS% -Dlogback.configurationFile=./logback.xml -Dhttp.keepAlive=true -Dhttp.maxConnections=100 SET LIB_PATH=..\lib "%JAVA_PATH%java.exe" %JAVA_OPTS% -cp "%LIB_PATH%\*;" step.controller.ControllerServer -config=..\conf\step.properties
denkbar/step
step-distribution/template-controller/bin/startController.bat
bat
agpl-3.0
1,416
@echo off REM SWIG utility for creating interface files. REM By myd7349 REM 2016-04-22T15:25+08:00 REM Usage: REM SWIGHelper.bat <namespace> <output wrapper code file> <source swig interface file> cmd /c swig -help > nul if not errorlevel 0 goto SWIGNotFound echo Invoking SWIG... :: Windows will not automatically append a .dll extension to library names that already have a period (.) :: in their name, such as libgtk-win32-2.0-0.dll. If you try to use libgtk-win32-2.0-0 as the library name, :: Windows won’t automatically append .dll, resulting in a DllNotFoundException. Consequently you should :: either avoid periods in library names or always use the full filename (including the .dll extension) and :: rely on Mono’s <dllmap/> mechanism. [1] swig -c++ -csharp -namespace %1 -dllimport %1.Native.dll -outdir "%~dp0%2" -outfile %3.cs "%4" goto Finish :SWIGNotFound echo Command 'swig' not found. :Finish echo on :: References: :: [1] http://www.mono-project.com/docs/advanced/pinvoke/ :: [2] [BUG: LoadLibrary and LoadLibraryEx Functions Fail If Directory Name Contains a Period](https://support.microsoft.com/en-us/kb/324468)
myd7349/Ongoing-Study
c#/SWIG/DllImportTest/DllImportTest0/SWIGHelper.bat
bat
lgpl-3.0
1,146
cd /d %~dp0 CALL install.cmd @packages\Redis-64\redis-server.exe --service-install %~dp0\master.conf @packages\Redis-64\redis-server.exe --service-start
huoxudong125/CacheManager
tools/redis/install-service.cmd
bat
apache-2.0
152
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\abgthe.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\abgthe.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
jomauricio/abgthe
docs/make.bat
bat
bsd-3-clause
5,095