2012-11-11 00:06:01 +08:00
|
|
|
############################################################################
|
2018-05-30 03:21:26 +08:00
|
|
|
# libs/libc/stdlib/Make.defs
|
2012-11-11 00:06:01 +08:00
|
|
|
#
|
2020-03-22 00:20:03 +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
|
2012-11-11 00:06:01 +08:00
|
|
|
#
|
2020-03-22 00:20:03 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-11 00:06:01 +08:00
|
|
|
#
|
2020-03-22 00:20:03 +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.
|
2012-11-11 00:06:01 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Add the stdlib C files to the build
|
|
|
|
|
2021-11-29 12:46:00 +08:00
|
|
|
CSRCS += lib_abs.c lib_abort.c lib_atof.c lib_atoi.c lib_getprogname.c
|
2022-05-02 20:15:06 +08:00
|
|
|
CSRCS += lib_atol.c lib_atoll.c lib_div.c lib_ldiv.c lib_lldiv.c lib_exit.c
|
2020-06-26 14:40:13 +08:00
|
|
|
CSRCS += lib_itoa.c lib_labs.c lib_llabs.c lib_realpath.c lib_bsearch.c
|
2021-12-21 22:48:02 +08:00
|
|
|
CSRCS += lib_rand.c lib_rand48.c lib_qsort.c lib_srand.c lib_strtol.c
|
2023-02-26 02:14:11 +08:00
|
|
|
CSRCS += lib_strtoll.c lib_strtoul.c lib_strtoull.c lib_strtold.c
|
2023-01-12 18:54:53 +08:00
|
|
|
CSRCS += lib_checkbase.c lib_mktemp.c lib_mkstemp.c lib_mkdtemp.c
|
2022-05-31 13:55:11 +08:00
|
|
|
CSRCS += lib_aligned_alloc.c lib_posix_memalign.c lib_valloc.c lib_mblen.c
|
2023-01-21 00:11:33 +08:00
|
|
|
CSRCS += lib_mbtowc.c lib_wctomb.c lib_mbstowcs.c lib_wcstombs.c lib_atexit.c
|
2016-10-19 09:11:09 +08:00
|
|
|
|
2016-07-15 23:39:33 +08:00
|
|
|
ifeq ($(CONFIG_PSEUDOTERM),y)
|
2022-02-04 04:22:29 +08:00
|
|
|
CSRCS += lib_ptsname.c lib_ptsnamer.c lib_unlockpt.c lib_openpty.c
|
2016-07-15 23:39:33 +08:00
|
|
|
endif
|
|
|
|
|
2012-11-11 00:06:01 +08:00
|
|
|
# Add the stdlib directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path stdlib
|
|
|
|
VPATH += :stdlib
|