blob: 1416d48ded7361c8dcd695702fbd1ef9dec5fe3b [file] [log] [blame]
Jonathan Huia0bf1142016-06-15 13:56:37 -07001#
2# Copyright (c) 2016, Nest Labs, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are met:
7# 1. Redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer.
9# 2. Redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution.
12# 3. Neither the name of the copyright holder nor the
13# names of its contributors may be used to endorse or promote products
14# derived from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26# POSSIBILITY OF SUCH DAMAGE.
27#
28
29include $(abs_top_nlbuild_autotools_dir)/automake/pre.am
30
31lib_LIBRARIES = libopenthread-cc2538.a
32
33libopenthread_cc2538_a_CPPFLAGS = \
34 -I$(top_srcdir)/include \
Nick Banksffbe65c2016-09-12 14:29:43 -070035 -I$(top_srcdir)/examples/platforms \
Jonathan Huia0bf1142016-06-15 13:56:37 -070036 -I$(top_srcdir)/src/core \
37 $(NULL)
38
39libopenthread_cc2538_a_SOURCES = \
40 alarm.c \
Robert Quattlebaumf2f8a7a2016-07-26 12:00:36 -070041 misc.c \
Jonathan Huia0bf1142016-06-15 13:56:37 -070042 logging.c \
43 platform.c \
44 radio.c \
45 random.c \
Jonathan Hui9baa18e2016-07-07 12:18:58 -070046 uart.c \
Jonathan Huia0bf1142016-06-15 13:56:37 -070047 startup-gcc.c \
48 $(NULL)
49
Shu Chen71307982016-08-12 01:26:51 +080050if OPENTHREAD_ENABLE_DIAG
51libopenthread_cc2538_a_SOURCES += \
52 diag.c \
53 $(NULL)
54endif
55
Jonathan Huia0bf1142016-06-15 13:56:37 -070056noinst_HEADERS = \
57 cc2538-reg.h \
Jonathan Huidb436d92016-06-27 17:19:37 -070058 platform-cc2538.h \
Jonathan Huia0bf1142016-06-15 13:56:37 -070059 $(NULL)
60
Jonathan Huidb436d92016-06-27 17:19:37 -070061if OPENTHREAD_BUILD_COVERAGE
62CLEANFILES = $(wildcard *.gcda *.gcno)
63endif # OPENTHREAD_BUILD_COVERAGE
64
Jonathan Huia0bf1142016-06-15 13:56:37 -070065include $(abs_top_nlbuild_autotools_dir)/automake/post.am