diff options
author | Sven Gothel <[email protected]> | 2010-11-06 03:19:45 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-06 03:19:45 +0100 |
commit | 33ea83cfcad373e477791a0aca49864399357877 (patch) | |
tree | 0f0204c3812f3592f1b3c9b5ba42e5f4c38cdf5b /make | |
parent | 6c1d55cda87cee557c364dc02322c8c11c02070e (diff) |
add 'base.compile' target to skip compiling unit tests for faster development cycles
Diffstat (limited to 'make')
-rwxr-xr-x | make/build.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 4babd6b..113614f 100755 --- a/make/build.xml +++ b/make/build.xml @@ -653,7 +653,9 @@ <copy file="${antlr.jar}" todir="${build}" /> </target> - <target name="all" depends="init, gluegen.build, junit.compile, tag.build" /> + <target name="base.compile" depends="init, gluegen.build" /> + + <target name="all" depends="base.compile, junit.compile, tag.build" /> <target name="clean" depends="init"> <delete includeEmptyDirs="true"> |