Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rust: Reorder targets in makefile to make second expansion clearly.
.SECONDEXPANSION directive instructs targets AFTER it to expand twice. According to GNU make manual, the special target .SECONDEXPANSION must be defined before the first prerequisite list that makes use of this feature. For Rust's makefile, only sources from rust lib requires second expansion. Move those targets to the end of makefile and tag only them as .SECONDEXPANSION to prevent from error-prone bugs. Signed-off-by: d0u9 <d0u9.su@outlook.com>
- Loading branch information