I have an ant build file that runs makefile
<target name="jni"> <exec executable="make"> <arg line="-f jni/Makefile"/> </exec> </target>
however, if make does not work, other rules that depend on this rule will be executed
how can i stop ant if jni rule fails?
source share