diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-01-09 16:11:15 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-01-10 13:22:58 +0100 |
commit | d77f5f3e70e404cabb39c1b8efde92fa83ba5835 (patch) | |
tree | dd6fb5568aeac06ed98f9654f71988eb6fb88bfa /etc/defaults/CC/foreign/tools.TARGETS | |
parent | 0713209254a7dcdfd48a6af8469648cdc7de4e77 (diff) | |
download | bootstrappable-toolchain-d77f5f3e70e404cabb39c1b8efde92fa83ba5835.tar.gz |
repos: Refactor rules/static-build to rules/tools
... as those rules are only used by tools.
Diffstat (limited to 'etc/defaults/CC/foreign/tools.TARGETS')
-rw-r--r-- | etc/defaults/CC/foreign/tools.TARGETS | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/etc/defaults/CC/foreign/tools.TARGETS b/etc/defaults/CC/foreign/tools.TARGETS new file mode 100644 index 0000000..32ae01b --- /dev/null +++ b/etc/defaults/CC/foreign/tools.TARGETS @@ -0,0 +1,15 @@ +{ "defaults": + { "type": ["CC/foreign", "defaults"] + , "MAKE": ["make/bin/make"] + , "toolchain": ["staged-make", "staged-busybox"] + , "PATH": + [ "$(TOOLCHAIN)/make/bin" + , "$(TOOLCHAIN)/busybox/bin" + , "$(TOOLCHAIN)/busybox/usr/bin" + ] + } +, "staged-make": + {"type": "install", "dirs": [[["@", "make", "", "toolchain"], "make"]]} +, "staged-busybox": + {"type": "install", "dirs": [[["@", "busybox", "", "toolchain"], "busybox"]]} +} |