• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["external_newfs_msdos_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8    name: "external_newfs_msdos_license",
9    visibility: [":__subpackages__"],
10    license_kinds: [
11        "SPDX-license-identifier-BSD",
12    ],
13    license_text: [
14        "LICENSE",
15    ],
16}
17
18cc_binary {
19    name: "newfs_msdos",
20    c_std: "gnu11",
21    cflags: [
22        "-Wall",
23        "-Werror",
24        "-Wno-unused-function",
25        "-Wno-unused-parameter",
26        "-Wno-unused-variable",
27        "-D_FILE_OFFSET_BITS=64",
28        "-include freebsd-compat.h"
29    ],
30    srcs: [
31        "mkfs_msdos.c",
32        "newfs_msdos.c",
33    ],
34    host_supported: true,
35}
36