blob: 0edbfc83765a43c26017b110c0173899ec9b2f62 [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("netprotocol") {
deps = [
":netaddr",
":netcp",
":netls",
":netruncmd",
]
}
source_set("common") {
sources = [
"netprotocol.c",
]
}
host_tool("netruncmd") {
sources = [
"netruncmd.c",
]
deps = [
":common",
]
}
host_tool("netcp") {
sources = [
"netcp.c",
]
deps = [
":common",
"$zx/system/ulib/tftp",
]
}
host_tool("netls") {
sources = [
"netls.c",
]
deps = [
":common",
]
}
host_tool("netaddr") {
sources = [
"netaddr.c",
]
deps = [
":common",
]
}