source: release-kits/shared/ant-scripts/global-targets.xml@ 17242

Last change on this file since 17242 was 17242, checked in by oranfry, 16 years ago

the code to compile the uninstaller

File size: 605 bytes
Line 
1<project name="shared-targets">
2
3 <target name="compile-uninstaller">
4 <echo>Compiling Uninstaller</echo>
5 <mkdir dir="${basedir}/greenstone3/uninstaller/build" />
6
7 <javac
8 srcdir="${rk.home}/uninstaller"
9 destdir="${basedir}/greenstone3/uninstaller/build" />
10
11 <copy todir="${basedir}/greenstone3/uninstaller/build">
12 <fileset dir="${rk.home}/uninstaller" includes="*.properties"/>
13 </copy>
14
15 <jar
16 destfile="${basedir}/greenstone3/uninstaller/Uninstall.jar"
17 manifest="${rk.home}/uninstaller/manifest.mf"
18 basedir="${basedir}/greenstone3/uninstaller/build" />
19
20 </target>
21
22</project>
Note: See TracBrowser for help on using the repository browser.