diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-06 15:10:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-06 15:10:00 +0000 |
commit | 1789d6a403fe0cc064d8a7f0f9e302f5c4182ab7 (patch) | |
tree | 540ba4d7585aeb0f830ec28173aec7796c688736 /NetWare/bat | |
parent | 0effba8c71e3da7d9cf86c7baa2d721067b4761d (diff) | |
download | perl-1789d6a403fe0cc064d8a7f0f9e302f5c4182ab7.tar.gz |
New Netware scripts.
p4raw-id: //depot/perl@14573
Diffstat (limited to 'NetWare/bat')
-rw-r--r-- | NetWare/bat/BldNWExt-Exist.bat | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/NetWare/bat/BldNWExt-Exist.bat b/NetWare/bat/BldNWExt-Exist.bat new file mode 100644 index 0000000000..bdeddbbe56 --- /dev/null +++ b/NetWare/bat/BldNWExt-Exist.bat @@ -0,0 +1,39 @@ +@echo off +@rem AUTHOR: sgp +@rem CREATED: Sat Apr 14 13:05:44 2001 +@rem LAST REVISED: Sat Apr 14 2001 +@rem Batch file to toggle b/n building and not building NetWare +@rem specific extns - cgi2perl & perl2ucs. + +if "%1" == "" goto Usage + +if "%1" == "/now" goto now +if "%1" == "on" goto yes +if "%1" == "off" goto no +if "%1" == "/?" goto usage +if "%1" == "/h" goto usage +goto dontknow + +:now +if not "%NW_EXTNS%" == "yes" echo NW_EXTNS is removed, doesn't build NetWare specific extensions +if "%NW_EXTNS%" == "yes" echo NW_EXTNS is set, builds NetWare specific extensions +goto exit + +:yes +Set NW_EXTNS=yes +echo ....NW_EXTNS is set, builds NetWare specific extensions +goto exit + +:no +Set NW_EXTNS= +echo ....NW_EXTNS is removed, doesn't build NetWare specific extensions +goto exit + +:dontknow +goto Usage + +:Usage + @echo on + @echo "Usage: BldNWExt [on|off]" + @echo "Usage: BldNWExt /now" - To display current setting +:exit |