summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-07-23 16:27:21 -0700
committerSven Gothel <[email protected]>2010-07-23 16:27:21 -0700
commite0b1a410cdab5337792654265b48b1f75a5c38c0 (patch)
treee8884aedf1a3eb625136482e00f18c310df390de /make
parentc0d853dbeea2f20988e0a2f909983b09042a6c52 (diff)
Add build.number -> gluegen.build.number tagging to file build/artifact.property
Diffstat (limited to 'make')
-rwxr-xr-xmake/build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index 9552813..5a10ada 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -650,7 +650,7 @@
<copy file="${antlr.jar}" todir="${build}" />
</target>
- <target name="all" depends="init, gluegen.build, junit.compile" />
+ <target name="all" depends="init, gluegen.build, junit.compile, tag.build" />
<target name="clean" depends="init">
<delete includeEmptyDirs="true">
@@ -690,6 +690,10 @@
</junit>
</target>
+ <target name="tag.build">
+ <echo message="gluegen.build.number=\"${build.number}\"" file="${build}/artifact.properties"/>
+ </target>
+
<target name="junit.compile">
<ant antfile="build-junit.xml" target="junit.compile"/>
</target>