source: trunk/gsdl3/packages/vishnu/make.bat@ 8410

Last change on this file since 8410 was 8410, checked in by kjdon, 20 years ago

new windows makefiles

  • Property svn:keywords set to Author Date Id Revision
File size: 527 bytes
Line 
1@echo off
2
3:checkJAVA_HOME
4:: ---- Check JAVA_HOME environment variable is set ----
5if not "%JAVA_HOME%" == "" goto start
6 echo You need to set the JAVA_HOME environment variable before running this script.
7 goto done
8
9
10:start
11if ""%1"" == """" goto go
12if ""%1"" == ""compile"" goto go
13if ""%1"" == ""install"" goto go
14if ""%1"" == ""clean"" goto go
15if ""%1"" == ""distclean"" goto go
16
17:unknown
18 echo Error: Unrecognized argument %1.
19 goto done
20
21:go
22 cd src\vishnu
23 call winMake %1
24 cd ..\..
25 goto done
26:done
Note: See TracBrowser for help on using the repository browser.