blob: 3e2cbbc11af0af08454fb49d84820625eb865fa2 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2007, 2009 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
IBM Corporation - initial API and implementation
-->
<project name="export-executable" default="build" basedir="..">
<property name="version" value="v632linux" />
<property name="gcc-path" value="/oliviert/gcj4.1_linux/gcc" />
<property name="binaryname" value="ejc${version}" />
<property name="dest" value="../../bingcj" />
<property name="work" value="${dest}/tmp/" />
<property name="source" value="/oliviert/workspaces/head/org.eclipse.jdt.core" />
<property name="gcj_script_name" value="export-executable.xml"/>
<target name="build">
<echo message="target: ${dest}" />
<delete dir="${dest}" failonerror="no"/>
<mkdir dir="${dest}" />
<copy todir="${work}">
<fileset dir="${source}/batch/" excludes='**/*.html' />
</copy>
<copy todir="${work}">
<fileset dir="${source}/compiler/" excludes='**/*.html' />
</copy>
<echo message="generate build script" />
<java classname="GenerateBuildScript">
<arg value="${basedir}/scripts/${gcj_script_name}"/>
<arg value="${basedir}/${work}"/>
<arg value="i686-pc-linux-gnu-gcj"/>
<arg value="${basedir}/${work}"/>
<arg value="source"/>
<classpath>
<pathelement path="${basedir}/scripts"/>
</classpath>
</java>
<echo message="run the new build script" />
<ant antfile="${basedir}/scripts/export-executable.xml"/>
<delete file="${basedir}/scripts/export-executable.xml"/>
</target>
</project>