summaryrefslogtreecommitdiff
path: root/test/c-from-rust/clib/TARGETS
diff options
context:
space:
mode:
Diffstat (limited to 'test/c-from-rust/clib/TARGETS')
-rw-r--r--test/c-from-rust/clib/TARGETS19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/c-from-rust/clib/TARGETS b/test/c-from-rust/clib/TARGETS
new file mode 100644
index 0000000..c72e90b
--- /dev/null
+++ b/test/c-from-rust/clib/TARGETS
@@ -0,0 +1,19 @@
+{ "foo":
+ { "type": ["@", "rules-cc", "CC", "library"]
+ , "pure C": ["true"]
+ , "name": ["foo"]
+ , "srcs": ["foo.c"]
+ , "hdrs": ["foo.h"]
+ , "stage": ["foo"]
+ , "deps": ["bar"]
+ }
+, "bar":
+ { "type": ["@", "rules-cc", "CC", "library"]
+ , "pure C": ["true"]
+ , "name": ["bar"]
+ , "srcs": ["bar.c"]
+ , "hdrs": ["bar.h"]
+ , "ldflags": ["-lm"]
+ , "stage": ["bar"]
+ }
+}