blob: 777bfeee80f439b069101b0696818c3df601728e [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("fs-mkfs") {
deps = [
":mkfs",
]
}
executable("mkfs") {
sources = [
"main.c",
]
deps = [
"$zx/system/ulib/fdio",
"$zx/system/ulib/fs-management",
"$zx/system/ulib/zircon",
]
}