Make compile_stendhaltools target alias of compile_tools

This commit is contained in:
Jordan Irwin 2026-01-13 17:22:23 -08:00
parent 737cac9495
commit 6eeff4766d
No known key found for this signature in database
GPG key ID: E3E358C2F44C290A

View file

@ -4,7 +4,7 @@
<import file="dist.xml" />
<target name="compile_stendhaltools" description="Compile Stendhal build tools.">
<target name="compile_tools" description="Compile Stendhal build tools.">
<mkdir dir="${build_stendhaltools}"/>
<javac srcdir="${src}" destdir="${build_stendhaltools}" source="1.8" target="1.8" debug="${javac.debug}" debuglevel="${javac.debuglevel}" deprecation="${javac.deprecation}" includeantruntime="true">
@ -28,6 +28,9 @@
</javac>
</target> <!-- compile_stendhaltools -->
<!-- Alias of `compile_tools`. -->
<target name="compile_stendhaltools" depends="compile_tools" />
<target name="clean_whitespace" description="Clean whitespace in source and other specified file types." depends="compile_stendhaltools">
<!-- process main Java source, config, & scripting files -->
<java classname="games.stendhal.tools.CleanWhitespace">