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
5LOCAL_DIR := $(GET_LOCAL_DIR)
6
7fit_srcs := \
8    $(LOCAL_DIR)/empty.c \
9
10#
11# Userspace library.
12#
13
14MODULE_COMPILEFLAGS += -fvisibility=hidden
15
16MODULE := $(LOCAL_DIR)
17MODULE_TYPE := userlib
18MODULE_PACKAGE := src
19MODULE_SRCS := $(fit_srcs)
20
21include make/module.mk
22
23#
24# Host library.
25#
26
27MODULE := $(LOCAL_DIR).hostlib
28MODULE_TYPE := hostlib
29MODULE_SRCS := $(fit_srcs)
30
31include make/module.mk
32
33# Clear local variables.
34
35fit_srcs :=
36