source: trunk/gsdl3/src/packages/javagdbm/winMake.bat@ 10737

Last change on this file since 10737 was 10737, checked in by kjdon, 19 years ago

Java Wrapper for GDBM, from Martin Pool. Original website gone, so added it all in here. I have modified the Makefiles to work in greenstone, and on macs, and added windows makefiles

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 392 bytes
Line 
1@echo off
2
3set MAKE=nmake
4set MAKE_OPTIONS=/f
5
6if ""%1"" == """" goto all
7if ""%1"" == ""compile"" goto go
8if ""%1"" == ""install"" goto go
9if ""%1"" == ""clean"" goto go
10
11:unknown
12 echo Error: Unrecognized argument %1.
13 goto done
14
15:go
16 if ""%2"" == ""javaonly"" goto java
17
18:all
19 cd jni
20 %MAKE% %MAKE_OPTIONS% win32.mak %1
21 cd ..
22
23:java
24 cd java
25 call winMake.bat %1
26 cd ..
27 goto done
28
29:done
Note: See TracBrowser for help on using the repository browser.