You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by ma...@db.com on 2000/05/18 16:39:23 UTC

include mechanism in ant?


Hello folks,

this time I use a complex hierarchy of makefiles (JMK from GNU) to match my needs, because
I'm working on project that uses different CORBA ORB's and different XML-Parser.
So I have settings for different ORB's and for different XML-Parser.

I do this in that way:

JVM = "SUN130";
ORB = "JacORB";

include "java.jmk";       # platform specific settings for all java virtual machines
include "corba.jmk";   # platform specific settings for all corba orb's

...


How can this be done with ant ?

TIA

Marco Lehmann