File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -4,24 +4,24 @@ load("//tools/project:build_defs.bzl", "project")
4
4
5
5
project (license = "gpl3-https" )
6
6
7
- [genrule (
8
- name = "api_" + src [:- 2 ].replace ("/" , "_" ),
9
- srcs = ["//c-toxcore:" + src ],
10
- outs = ["src/FFI/%s.hs" % "/" .join ([mod .capitalize () for mod in src [:- 2 ].split ("/" )])],
11
- cmd = "$(location //hs-apigen/tools:apigen) -hs $< > $@" ,
12
- exec_tools = ["//hs-apigen/tools:apigen" ],
13
- tags = ["no-cross" ],
14
- ) for src in [
15
- "tox/tox.h" ,
16
- ]]
7
+ # [genrule(
8
+ # name = "api_" + src[:-2].replace("/", "_"),
9
+ # srcs = ["//c-toxcore:" + src],
10
+ # outs = ["src/FFI/%s.hs" % "/".join([mod.capitalize() for mod in src[:-2].split("/")])],
11
+ # cmd = "$(location //hs-apigen/tools:apigen) -hs $< > $@",
12
+ # exec_tools = ["//hs-apigen/tools:apigen"],
13
+ # tags = ["no-cross"],
14
+ # ) for src in [
15
+ # "tox/tox.h",
16
+ # ]]
17
17
18
18
haskell_library (
19
19
name = "hs-toxcore-c" ,
20
20
srcs = glob (
21
21
["src/**/*.*hs" ],
22
- exclude = ["src/FFI/**" ],
22
+ # exclude = ["src/FFI/**"],
23
23
) + [
24
- ":api_tox_tox" ,
24
+ # ":api_tox_tox",
25
25
],
26
26
src_strip_prefix = "src" ,
27
27
tags = ["no-cross" ],
You can’t perform that action at this time.
0 commit comments