diff options
author | Tristan Gingold | 2015-12-03 04:48:15 +0100 |
---|---|---|
committer | Tristan Gingold | 2015-12-03 04:48:15 +0100 |
commit | 6956cc80516f1dfc74a06a75b068437afba036ed (patch) | |
tree | 53dd811d0904efe594ec1cfe9692a224bde4456c /libraries/vendors/compile-xilinx-ise.ps1 | |
parent | f7b737b52f57a46c2f96ad87ee50741abc415ed3 (diff) | |
download | ghdl-6956cc80516f1dfc74a06a75b068437afba036ed.tar.gz ghdl-6956cc80516f1dfc74a06a75b068437afba036ed.tar.bz2 ghdl-6956cc80516f1dfc74a06a75b068437afba036ed.zip |
Add vendor specific library compile scripts for linux.
Merge branch from Paebbels.
Diffstat (limited to 'libraries/vendors/compile-xilinx-ise.ps1')
-rw-r--r-- | libraries/vendors/compile-xilinx-ise.ps1 | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libraries/vendors/compile-xilinx-ise.ps1 b/libraries/vendors/compile-xilinx-ise.ps1 index a993f83..7557a51 100644 --- a/libraries/vendors/compile-xilinx-ise.ps1 +++ b/libraries/vendors/compile-xilinx-ise.ps1 @@ -65,9 +65,17 @@ param( [switch]$Clean = $false, # Skip warning messages. (Show errors only.) - [switch]$SuppressWarnings = $false + [switch]$SuppressWarnings = $false, + + # Show the embedded help page(s) + [switch]$Help = $false ) +if ($Help) +{ Get-Help $MYINVOCATION.InvocationName -Detailed + return +} + # --------------------------------------------- # save working directory $WorkingDir = Get-Location |