2013-01-09 20:55:13 +08:00
|
|
|
############################################################################
|
2018-05-30 03:21:26 +08:00
|
|
|
# libs/libc/spawn/Make.defs
|
2013-01-09 20:55:13 +08:00
|
|
|
#
|
2024-09-25 20:05:00 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2021-03-02 22:54:21 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2013-01-09 20:55:13 +08:00
|
|
|
#
|
2021-03-02 22:54:21 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-09 20:55:13 +08:00
|
|
|
#
|
2021-03-02 22:54:21 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2013-01-09 20:55:13 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Add the spawn C files to the build
|
|
|
|
|
2013-01-10 05:31:36 +08:00
|
|
|
CSRCS += lib_psfa_addaction.c lib_psfa_addclose.c lib_psfa_adddup2.c
|
|
|
|
CSRCS += lib_psfa_addopen.c lib_psfa_destroy.c lib_psfa_init.c
|
2013-01-09 20:55:13 +08:00
|
|
|
|
2013-01-10 08:45:11 +08:00
|
|
|
CSRCS += lib_psa_getflags.c lib_psa_getschedparam.c lib_psa_getschedpolicy.c
|
2014-09-14 22:22:21 +08:00
|
|
|
CSRCS += lib_psa_init.c lib_psa_setflags.c lib_psa_setschedparam.c
|
2019-04-30 04:52:05 +08:00
|
|
|
CSRCS += lib_psa_setschedpolicy.c lib_psa_getsigmask.c lib_psa_setsigmask.c
|
2023-10-26 10:25:38 +08:00
|
|
|
CSRCS += lib_psa_getstacksize.c lib_psa_setstacksize.c lib_psa_destroy.c
|
2013-01-11 02:31:08 +08:00
|
|
|
|
2014-09-17 05:37:05 +08:00
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
2022-11-01 15:50:41 +08:00
|
|
|
CSRCS += lib_psa_getstackaddr.c lib_psa_setstackaddr.c
|
2020-05-02 18:36:48 +08:00
|
|
|
endif
|
2019-08-24 03:20:52 +08:00
|
|
|
|
2016-06-12 04:14:08 +08:00
|
|
|
ifeq ($(CONFIG_DEBUG_FEATURES),y)
|
2022-10-20 03:10:23 +08:00
|
|
|
CSRCS += lib_psfa_dump.c lib_psa_dump.c
|
2013-01-12 00:53:44 +08:00
|
|
|
endif
|
|
|
|
|
2013-01-09 20:55:13 +08:00
|
|
|
# Add the spawn directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path spawn
|
|
|
|
VPATH += :spawn
|