2012-11-10 16:06:01 +00:00
|
|
|
############################################################################
|
2018-05-29 13:21:26 -06:00
|
|
|
# libs/libc/unistd/Make.defs
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
2017-02-16 14:42:27 -06:00
|
|
|
# Copyright (C) 2011-2012, 2017 Gregory Nutt. All rights reserved.
|
2012-11-10 16:06:01 +00: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 unistd C files to the build
|
|
|
|
|
2020-06-22 14:34:59 +08:00
|
|
|
CSRCS += lib_access.c lib_daemon.c lib_swab.c lib_pathconf.c lib_sysconf.c
|
2020-11-17 09:27:01 -08:00
|
|
|
CSRCS += lib_getopt.c lib_getoptargp.c lib_getopterrp.c lib_getoptindp.c
|
|
|
|
CSRCS += lib_getoptoptp.c lib_alarm.c lib_fstatvfs.c lib_statvfs.c lib_sleep.c
|
|
|
|
CSRCS += lib_usleep.c lib_seteuid.c lib_setegid.c lib_geteuid.c lib_getegid.c
|
2019-09-03 11:35:31 -06:00
|
|
|
CSRCS += lib_setreuid.c lib_setregid.c
|
2020-08-26 18:07:11 +08:00
|
|
|
CSRCS += lib_getrusage.c lib_utimes.c
|
2020-07-17 15:01:54 +08:00
|
|
|
CSRCS += lib_setrlimit.c lib_getrlimit.c
|
2020-09-17 15:24:57 +08:00
|
|
|
CSRCS += lib_setpriority.c lib_getpriority.c
|
2020-09-17 15:37:09 +08:00
|
|
|
CSRCS += lib_futimes.c lib_futimens.c
|
2020-09-22 17:09:13 -06:00
|
|
|
CSRCS += lib_gettid.c
|
2019-08-06 14:13:43 -06:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_SCHED_USER_IDENTITY),y)
|
2019-08-06 12:38:43 -06:00
|
|
|
CSRCS += lib_setuid.c lib_setgid.c lib_getuid.c lib_getgid.c
|
2019-08-06 14:13:43 -06:00
|
|
|
endif
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_DISABLE_ENVIRON),y)
|
2020-07-28 16:05:02 +08:00
|
|
|
CSRCS += lib_chdir.c lib_getcwd.c lib_restoredir.c
|
2012-11-10 16:06:01 +00:00
|
|
|
endif
|
2013-01-08 16:25:30 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LIBC_EXECFUNCS),y)
|
2014-09-15 10:15:19 -06:00
|
|
|
CSRCS += lib_execl.c
|
2013-01-08 16:25:30 +00:00
|
|
|
endif
|
2016-07-19 14:15:26 -06:00
|
|
|
|
2018-01-03 16:03:56 -06:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINTS),y)
|
2020-12-14 10:56:23 +08:00
|
|
|
CSRCS += lib_truncate.c lib_posix_fallocate.c
|
2018-01-03 16:03:56 -06:00
|
|
|
endif
|
|
|
|
|
2016-07-19 14:15:26 -06:00
|
|
|
ifeq ($(CONFIG_PIPES),y)
|
2020-08-28 18:00:26 +08:00
|
|
|
CSRCS += lib_pipe.c lib_pipe2.c
|
2016-07-19 14:15:26 -06:00
|
|
|
endif
|
2012-11-10 16:06:01 +00:00
|
|
|
|
2015-07-05 10:45:00 -06:00
|
|
|
CSRCS += lib_gethostname.c lib_sethostname.c
|
2015-07-03 07:50:27 -06:00
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
# Add the unistd directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path unistd
|
|
|
|
VPATH += :unistd
|