blob: 33a6a8b85e1533cc84585e169cc81a3d0b8670b4 [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.
zx_library("tftp") {
sdk = "static"
sdk_headers = [ "tftp/tftp.h" ]
kernel = true
host = true
static = true
sources = [ "tftp.c" ]
if (toolchain.environment == "efi") {
defines = [ "TFTP_EFILIB" ]
} else if (is_host) {
defines = [ "TFTP_HOSTLIB" ]
}
if (!is_kernel && is_fuchsia) {
defines = [ "TFTP_USERLIB" ]
deps = [ "$zx/system/ulib/zircon" ]
}
}
if (!is_kernel) {
zx_host_tool("tftp-example") {
sources = [ "tftp-example.c" ]
deps = [ ":tftp" ]
}
}