Gerald Brose wrote: > Hello, > > in medium-sized projects, you usually find shared make files with > just variable definitions. Is there a predefined equivalent to the > "include" directive offered by make that lets you share definitions > between different sub projects. (Sure, I can always write my own code > for this, but do I really need to? This will be avery common > requirement, I suppose.)
<property file="my.properties" /> I use it to customize the build process ( use my directories and options ) without changing the build.xml or adding too many command line options. Costin
