2012-11-10 17:06:01 +01:00
|
|
|
############################################################################
|
2018-05-29 21:21:26 +02:00
|
|
|
# libs/libc/time/Make.defs
|
2012-11-10 17:06:01 +01:00
|
|
|
#
|
2018-03-13 15:07:03 +01:00
|
|
|
# Copyright (C) 2011-2012, 2014-2015, 2018 Gregory Nutt. All rights
|
|
|
|
# reserved.
|
2012-11-10 17:06:01 +01:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Add the time C files to the build
|
|
|
|
|
2014-08-12 14:18:22 +02:00
|
|
|
CSRCS += lib_strftime.c lib_calendar2utc.c lib_daysbeforemonth.c
|
2015-02-12 18:10:46 +01:00
|
|
|
CSRCS += lib_gettimeofday.c lib_isleapyear.c lib_settimeofday.c lib_time.c
|
2020-06-26 08:40:13 +02:00
|
|
|
CSRCS += lib_timespec_get.c lib_nanosleep.c lib_difftime.c lib_dayofweek.c
|
2020-01-23 15:17:22 +01:00
|
|
|
CSRCS += lib_asctime.c lib_asctimer.c lib_ctime.c lib_ctimer.c
|
2020-07-27 14:41:54 +02:00
|
|
|
CSRCS += lib_gethrtime.c
|
2017-11-12 00:44:59 +01:00
|
|
|
|
2014-08-12 14:18:22 +02:00
|
|
|
ifdef CONFIG_LIBC_LOCALTIME
|
2020-01-23 15:17:22 +01:00
|
|
|
CSRCS += lib_localtime.c
|
2014-08-12 14:18:22 +02:00
|
|
|
else
|
|
|
|
CSRCS += lib_mktime.c lib_gmtime.c lib_gmtimer.c
|
|
|
|
endif
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
# Add the time directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path time
|
|
|
|
VPATH += :time
|