1# Copyright 2018 The Fuchsia Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# Main library for things that want to launch devmgrs 6 7LOCAL_DIR := $(GET_LOCAL_DIR) 8 9MODULE := $(LOCAL_DIR) 10 11MODULE_TYPE := userlib 12 13MODULE_SRCS += \ 14 $(LOCAL_DIR)/launcher.cpp \ 15 16MODULE_LIBS := \ 17 system/ulib/c \ 18 system/ulib/fdio \ 19 system/ulib/zircon \ 20 21MODULE_STATIC_LIBS := \ 22 system/ulib/bootsvc-protocol \ 23 system/ulib/fbl \ 24 system/ulib/zx \ 25 system/ulib/zxcpp \ 26 27MODULE_PACKAGE := shared 28MODULE_EXPORT := so 29MODULE_SO_NAME := devmgr-launcher 30 31include make/module.mk 32