In message <[email protected]>,
Mark Hindess writes:
>
> In message <[email protected]>, Regis writes:
> >
> > Sometimes, I only work with native code, check and compile java is not
> > necessary. But in new build structure, build-native, rebuild-native and
> > clean-native are not public target anymore, and I can't find any equivalent
> > targets can do this, anyone can tell me how to do this in new build
> > structure?
>
> See:
>
> http://markmail.org/message/z4g3kbjkpwg3mbbt
I should mention that there are definitely bugs in the use of the properties
and I've not applied them to drlvm (because I want to do a more significant
restructure in that component). Feel free to report bugs (w/patches ;-).
I think it will be possible to add back these targets by adding the
equivalent of:
<target name="build-native">
<property name="skip.java.build" value="true" />
<property name="skip.native.build" value="true" />
<antcall target="build" />
</target>
to hdk/build/ant/properties.xml so that we have shorthand targets that
work at all levels of the build without having to maintain them in
every build.xml file.
Regards,
-Mark