diff options
author | Sven Gothel <[email protected]> | 2011-05-17 17:06:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-05-17 17:06:18 +0200 |
commit | 4fd04fd04414c8a9e8ff819b186368d9741e9e5f (patch) | |
tree | 66fc7b4ad854d80920faadde0beb862ac0b99785 /make/build.xml | |
parent | f0bd17add38246abecde942b15663d589728f3fe (diff) |
Add all.debug target
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 425e993..9dae78e 100644 --- a/make/build.xml +++ b/make/build.xml @@ -656,7 +656,9 @@ <target name="base.compile" depends="init, gluegen.build, tag.build" /> - <target name="all" depends="base.compile, junit.compile, developer-zip-archive" /> + <target name="all" description="Release build" depends="init, base.compile, junit.compile, developer-zip-archive" /> + + <target name="all.debug" description="Debug build" depends="init.debug, base.compile, junit.compile, developer-zip-archive" /> <target name="all.ide" description="Debug IDE build including all junit tests, but don't tag the build or create archives" depends="init.debug, base.compile, junit.compile" /> |