blob: e9deab4d0f74a133c7dbacefd8f61efed31d0cf2 [file] [log] [blame]
# Copyright 2018 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.
LOCAL_DIR := $(GET_LOCAL_DIR)
# Userspace library.
MODULE := $(LOCAL_DIR)
MODULE_TYPE := userlib
MODULE_SRCS += \
$(LOCAL_DIR)/packet.c \
MODULE_LIBS := system/ulib/c
include make/module.mk
# Host library.
MODULE := $(LOCAL_DIR).hostlib
MODULE_TYPE := hostlib
MODULE_SRCS += \
$(LOCAL_DIR)/packet.c \
include make/module.mk