source: gsdl/trunk/build-src/src/java/org/nzdl/gsdl/winMake.bat@ 20872

Last change on this file since 20872 was 20872, checked in by kjdon, 14 years ago

adding makefiles for applyxslt

  • Property svn:executable set to *
File size: 754 bytes
Line 
1@echo off
2
3set CLASSES=ApplyXSLT.class ApplyXSLTUtil.class
4
5rem ---- Name and location of java programs ----
6set JAVAC="%JAVA_HOME%\bin\javac"
7set JAVA="%JAVA_HOME%\bin\java"
8set JAR="%JAVA_HOME%\bin\jar"
9
10set JAVACOPTIONS=-target 1.1 -deprecation -g -O
11
12if ""%1"" == """" goto all
13if ""%1"" == ""all"" goto all
14if ""%1"" == ""install"" goto install
15if ""%1"" == ""clean"" goto clean
16
17:unknown
18 echo Error: Unrecognized argument %1.
19 goto done
20
21:all
22 echo Compiling ApplyXSLT classes ...
23 %JAVAC% %JAVACOPTIONS% -d . -classpath ..\..\..\.. *.java
24 %JAR% cf ApplyXSLT.jar org
25 goto done
26
27:install
28 goto done
29
30:clean
31 echo Cleaning up Greenstone Lucene ...
32 if exist org rmdir /S /Q org
33 if exist ApplyXSLT.jar del ApplyXSLT.jar
34 goto done
35
36:done
37
Note: See TracBrowser for help on using the repository browser.