aboutsummaryrefslogtreecommitdiff
path: root/spss.iaiklibsupdate/build.xml
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-11-30 15:23:57 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-11-30 15:23:57 +0000
commita020e34129ea9c4c6942345bdc66956235278786 (patch)
treea7f9210f813d13c6bd4f58515192cdba99dd2298 /spss.iaiklibsupdate/build.xml
parent760d0e30c75096646c0dfadfc44bb00a923a4e6d (diff)
downloadmoa-id-spss-tags/Build_ID-1_3_0.tar.gz
moa-id-spss-tags/Build_ID-1_3_0.tar.bz2
moa-id-spss-tags/Build_ID-1_3_0.zip
This commit was manufactured by cvs2svn to create tagtags/Build_ID-1_3_0
'Build_ID-1_3_0'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build_ID-1_3_0@598 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.iaiklibsupdate/build.xml')
-rw-r--r--spss.iaiklibsupdate/build.xml37
1 files changed, 0 insertions, 37 deletions
diff --git a/spss.iaiklibsupdate/build.xml b/spss.iaiklibsupdate/build.xml
deleted file mode 100644
index 3169be320..000000000
--- a/spss.iaiklibsupdate/build.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?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>