summaryrefslogtreecommitdiff
path: root/etc/import/TARGETS.zlib
blob: 0b85bea6f0e08aa1fac66cfc3a8a6ab89f92cb3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{ "zlib":
  { "type": "configure"
  , "target": "exported zlib"
  , "arguments_config": ["ARCH", "TARGET_ARCH"]
  , "config":
    { "type": "let*"
    , "bindings":
      [ [ "TARGET_ARCH"
        , { "type": "var"
          , "name": "TARGET_ARCH"
          , "default": {"type": "var", "name": "ARCH"}
          }
        ]
      ]
    , "body": {"type": "env", "vars": ["TARGET_ARCH"]}
    }
  }
, "exported zlib":
  { "type": "export"
  , "target": "zlibinternal"
  , "flexible_config":
    [ "OS"
    , "ARCH"
    , "TARGET_ARCH"
    , "COMPILER_FAMILY"
    , "DEBUG"
    , "CC"
    , "CFLAGS"
    , "ADD_CFLAGS"
    , "AR"
    , "ENV"
    ]
  }
, "zlibinternal":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["z"]
  , "pkg-name": ["zlib"]
  , "pure C": ["YES"]
  , "srcs":
    [ "adler32.c"
    , "compress.c"
    , "crc32.c"
    , "deflate.c"
    , "gzclose.c"
    , "gzlib.c"
    , "gzread.c"
    , "gzwrite.c"
    , "inflate.c"
    , "infback.c"
    , "inftrees.c"
    , "inffast.c"
    , "trees.c"
    , "uncompr.c"
    , "zutil.c"
    ]
  , "hdrs": ["zlib.h", "zconf.h"]
  , "private-hdrs":
    [ "crc32.h"
    , "deflate.h"
    , "gzguts.h"
    , "inffast.h"
    , "inffixed.h"
    , "inflate.h"
    , "inftrees.h"
    , "trees.h"
    , "zutil.h"
    ]
  , "private-cflags": ["-Wno-implicit-function-declaration"]
  }
}