source: trunk/gsdl3/winMake.bat@ 4828

Last change on this file since 4828 was 3925, checked in by mdewsnip, 21 years ago

Windows batchfile for easy compilation of GSDL3.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 590 bytes
Line 
1@echo off
2
3if ""%1"" == """" goto go
4if ""%1"" == ""compile"" goto go
5if ""%1"" == ""install"" goto go
6if ""%1"" == ""clean"" goto go
7if ""%1"" == ""allclean"" goto go
8
9:unknown
10 echo Error: Unrecognized argument %1.
11 goto done
12
13:go
14 cd %GSDL3HOME%\src\java\org\greenstone\applet\phind
15 call winMake %1
16 cd %GSDL3HOME%\src\java\org\greenstone\gdbm
17 call winMake %1
18 cd %GSDL3HOME%\src\java\org\greenstone\gsdl3
19 call winMake %1
20 cd %GSDL3HOME%\src\java\org\greenstone\testing
21 call winMake %1
22 cd %GSDL3HOME%
23 goto done
24
25:done
Note: See TracBrowser for help on using the repository browser.