diff options
author | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2005-06-24 11:00:16 +0000 |
---|---|---|
committer | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2005-06-24 11:00:16 +0000 |
commit | 4914ffa0d889ed525229c0715686b26e30cc1343 (patch) | |
tree | 7bbd3fb0eef46a069a069b813fbce621297372e6 /spss.iaiklibsupdate/build.xml | |
parent | fdff99d5c5dba5da2db45f79b120ab5381d36b76 (diff) | |
download | moa-id-spss-4914ffa0d889ed525229c0715686b26e30cc1343.tar.gz moa-id-spss-4914ffa0d889ed525229c0715686b26e30cc1343.tar.bz2 moa-id-spss-4914ffa0d889ed525229c0715686b26e30cc1343.zip |
Erstellt.tags/Build-SPSS-1.2.1
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@370 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.iaiklibsupdate/build.xml')
-rw-r--r-- | spss.iaiklibsupdate/build.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/spss.iaiklibsupdate/build.xml b/spss.iaiklibsupdate/build.xml new file mode 100644 index 000000000..3169be320 --- /dev/null +++ b/spss.iaiklibsupdate/build.xml @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<!-- + + Ant Buildfile for IAIK libraries Update ZIPs + + Author: Gregor Karlinger + + $Id$ + +--> +<project name="moa-spss-iaiklibs-update-zipbuilder" default="build-all" basedir="."> + <property environment="env"/> + + <property name="zipname.eval" value="dist/${env.ZIPFILE_EVAL}"/> + <property name="zipname.prod" value="dist/${env.ZIPFILE_PROD}"/> + + <target name="init"> + <description>set up directories etc.</description> + <mkdir dir="dist"/> + </target> + + <target name="build-eval" depends="init"> + <description>Generates a zip containing the IAIK evaluation library update</description> + <zip destfile="${zipname.eval}"> + <fileset dir="." includes="ant.1-6-5/**, iaiklibs.eval/**, setEnvironment.bat, update.eval.bat, update.xml, readme.eval.txt"/> + </zip> + </target> + + <target name="build-prod" depends="init"> + <description>Generates a zip containing the IAIK production library update</description> + <zip destfile="${zipname.prod}"> + <fileset dir="." includes="ant.1-6-5/**, iaiklibs.prod/**, setEnvironment.bat, update.prod.bat, update.xml, readme.prod.txt"/> + </zip> + </target> + + <target name="build-all" depends="build-eval, build-prod"/> +</project> |