diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-06-02 16:47:11 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-06-02 16:47:37 +0200 |
commit | b9d0a59e7832f87431efb377e760773a075a4bfd (patch) | |
tree | 20de8f0328c0e97029a9b31518ff581749e7be28 | |
parent | 7990e2dd1c3cfd99d216afd91b638a0e12156de2 (diff) | |
download | rules-cc-b9d0a59e7832f87431efb377e760773a075a4bfd.tar.gz |
Add rule defaults
-rw-r--r-- | CC/TARGETS | 10 | ||||
-rw-r--r-- | CC/test/TARGETS | 1 | ||||
-rw-r--r-- | shell/test/TARGETS | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/CC/TARGETS b/CC/TARGETS new file mode 100644 index 0000000..2da456b --- /dev/null +++ b/CC/TARGETS @@ -0,0 +1,10 @@ +{ "defaults": + { "type": ["CC", "defaults"] + , "CC": ["cc"] + , "CXX": ["c++"] + , "CFLAGS": [] + , "CXXFLAGS": [] + , "AR": ["ar"] + , "PATH": ["/bin", "/usr/bin"] + } +} diff --git a/CC/test/TARGETS b/CC/test/TARGETS new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/CC/test/TARGETS @@ -0,0 +1 @@ +{} diff --git a/shell/test/TARGETS b/shell/test/TARGETS new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/shell/test/TARGETS @@ -0,0 +1 @@ +{} |