1# Copyright 2016 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
7MODULE := $(LOCAL_DIR)
8
9MODULE_TYPE := usertest
10
11# The C file here uses a macro to detect whether a type is signed, by
12# comparing the values of -1 and 0. This leads to complaints about
13# vacuously true comparisons, which we don't care about.
14MODULE_COMPILEFLAGS := -Wno-type-limits
15
16MODULE_SRCS := \
17    $(LOCAL_DIR)/int-types.c \
18    $(LOCAL_DIR)/int-types.cpp \
19    $(LOCAL_DIR)/wchar-type.c \
20    $(LOCAL_DIR)/wchar-type.cpp \
21
22MODULE_NAME := int-types-test
23
24MODULE_STATIC_LIBS := system/ulib/fbl
25
26MODULE_LIBS := system/ulib/unittest system/ulib/fdio system/ulib/c
27
28include make/module.mk
29