2013-01-09 13:55:13 +01:00
|
|
|
############################################################################
|
2018-05-29 21:21:26 +02:00
|
|
|
# libs/libc/spawn/Make.defs
|
2013-01-09 13:55:13 +01:00
|
|
|
#
|
2021-03-02 15:54:21 +01: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 13:55:13 +01:00
|
|
|
#
|
2021-03-02 15:54:21 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-09 13:55:13 +01:00
|
|
|
#
|
2021-03-02 15:54:21 +01: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 13:55:13 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Add the spawn C files to the build
|
|
|
|
|
2013-01-09 22:31:36 +01: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 13:55:13 +01:00
|
|
|
|
2016-06-11 22:14:08 +02:00
|
|
|
ifeq ($(CONFIG_DEBUG_FEATURES),y)
|
2013-01-11 17:53:44 +01:00
|
|
|
CSRCS += lib_psfa_dump.c
|
|
|
|
endif
|
|
|
|
|
2013-01-10 01:45:11 +01:00
|
|
|
CSRCS += lib_psa_getflags.c lib_psa_getschedparam.c lib_psa_getschedpolicy.c
|
2014-09-14 16:22:21 +02:00
|
|
|
CSRCS += lib_psa_init.c lib_psa_setflags.c lib_psa_setschedparam.c
|
2019-04-29 22:52:05 +02:00
|
|
|
CSRCS += lib_psa_setschedpolicy.c lib_psa_getsigmask.c lib_psa_setsigmask.c
|
2013-01-10 19:31:08 +01:00
|
|
|
|
2014-09-16 23:37:05 +02:00
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
2021-05-12 13:58:35 +02:00
|
|
|
CSRCS += lib_psa_getstackaddr.c lib_psa_setstackaddr.c
|
2014-09-14 16:22:21 +02:00
|
|
|
CSRCS += lib_psa_getstacksize.c lib_psa_setstacksize.c
|
2020-05-02 12:36:48 +02:00
|
|
|
endif
|
2019-08-23 21:20:52 +02:00
|
|
|
|
2016-06-11 22:14:08 +02:00
|
|
|
ifeq ($(CONFIG_DEBUG_FEATURES),y)
|
2013-01-11 17:53:44 +01:00
|
|
|
CSRCS += lib_psa_dump.c
|
|
|
|
endif
|
|
|
|
|
2013-01-09 13:55:13 +01:00
|
|
|
# Add the spawn directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path spawn
|
|
|
|
VPATH += :spawn
|