284eac2f74
Among four submissions, this commit based on the port sent by Ernst de Haan <ernst@jollem.com> at ports/24291. PR: 21435, 23368, 24291 Submitted by: Leo Kim <leo@florida.sarang.net>, Dave Glowacki <dglo@ssec.wisc.edu>, Sean Blakey <sean@beastie.bellevue.virtualtek.com>, Ernst de Haan <ernst@jollem.com> Also thanks to: Palle Girgensohn <girgen@partitur.se>, Richard Stockley <rws@procopia.demon.co.uk>, Kees Jan Koster <kjkoster@kjkoster.org>
13 lines
450 B
Plaintext
13 lines
450 B
Plaintext
Ant is a Java-based build tool, conceptually similar to make.
|
|
|
|
Ant uses XML build files that defines a set of targets. Each target
|
|
has dependencies (other targets) and contains a set of tasks to
|
|
perform.
|
|
|
|
There are tasks for various things, like compiling ("javac"),
|
|
copying ("copy"), deleting ("delete"), executing other programs
|
|
("java", "exec", "execon", etc.), stylesheet transformations
|
|
("style") and so on.
|
|
|
|
WWW: http://jakarta.apache.org/ant/
|