summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rwxr-xr-xAndroid.bp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100755
index 0000000..fcaffbc
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,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,
+}