It integrates part of the work done by "es-make" project from ETH (mainly on the checker script) This is a first step in rewriting the previous $EIFFEL_SRC/scripts/*.eant scripts to build 'ec' and make a new delivery. Added a few standalone geant scripts in the EiffelStudio's source code, to ease the compilation. git-svn-id: https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/library/cURL@71410 8089f293-4706-0410-a29e-feb5c42a2edf
25 lines
494 B
XML
25 lines
494 B
XML
<?xml version="1.0"?>
|
|
<project name="build_curl_clib" default="help">
|
|
|
|
<description>
|
|
description: "cURL Clib library compilation"
|
|
</description>
|
|
|
|
<target name="help">
|
|
<echo message="usage:"/>
|
|
<echo message=" geant compile"/>
|
|
<echo message=" geant clean"/>
|
|
<echo message=" geant clobber"/>
|
|
</target>
|
|
|
|
<target name="compile" >
|
|
<exec executable="finish_freezing -library" />
|
|
</target>
|
|
|
|
<target name="clean" >
|
|
</target>
|
|
|
|
<target name="clobber" depend="clean" />
|
|
|
|
</project>
|