summaryrefslogtreecommitdiff
path: root/Android.bp
blob: fcaffbcbe8f82aebabf4aa7542b044d94640fc9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cc_binary {
    name: "newfs_msdos",
    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-unused-function",
        "-Wno-unused-parameter",
        "-Wno-unused-variable",
        "-D_FILE_OFFSET_BITS=64",
        "-D_GNU_SOURCE",
        "-DSIGINFO=SIGUSR2",
        "-Dnitems(x)=(sizeof((x))/sizeof((x)[0]))",
    ],
    srcs: [
        "mkfs_msdos.c",
        "newfs_msdos.c",
    ],
    host_supported: true,
}