summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-05-17 17:06:18 +0200
committerSven Gothel <[email protected]>2011-05-17 17:06:18 +0200
commit4fd04fd04414c8a9e8ff819b186368d9741e9e5f (patch)
tree66fc7b4ad854d80920faadde0beb862ac0b99785 /make/build.xml
parentf0bd17add38246abecde942b15663d589728f3fe (diff)
Add all.debug target
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml4
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" />