mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +00:00
d4f39e1638
With this change, individual submodules can specify their dependencies with an additional file called "deps.mk" in the subdir. When building, only the dependencies that are necessary are built, using cargo, and then linked. This greatly simplifies adding new dependencies: add the package in deps/Cargo.toml, and add the appropriate line in "deps.mk" in the src/utilname/ directory, and the dependency will be built automatically as needed. This also removes the need to use git submodules.
9 lines
75 B
Text
9 lines
75 B
Text
/build/
|
|
/target/
|
|
/tmp/
|
|
/busybox/
|
|
/deps/target/
|
|
*~
|
|
.*.swp
|
|
.*.swo
|
|
Cargo.lock
|