46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
############################################################################
|
|
# libs/libc/sched/Make.defs
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# 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
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# 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.
|
|
#
|
|
############################################################################
|
|
|
|
# Add the sched C files to the build
|
|
|
|
CSRCS += sched_getprioritymax.c sched_getprioritymin.c
|
|
CSRCS += clock_getcpuclockid.c clock_getres.c
|
|
CSRCS += task_cancelpt.c task_setcancelstate.c task_setcanceltype.c
|
|
CSRCS += task_testcancel.c
|
|
|
|
ifeq ($(CONFIG_SMP),y)
|
|
CSRCS += sched_cpucount.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SCHED_BACKTRACE),y)
|
|
CSRCS += sched_dumpstack.c sched_backtrace.c
|
|
endif
|
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
|
CSRCS += task_startup.c
|
|
endif # CONFIG_BUILD_KERNEL
|
|
|
|
# Add the sched directory to the build
|
|
|
|
DEPPATH += --dep-path sched
|
|
VPATH += :sched
|