summaryrefslogtreecommitdiff
path: root/test/c-from-rust/clib/TARGETS
blob: c72e90b96c04aaa589bbf0c447f87477aa80b213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]
  }
}