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
|
|
|
|
|
2015-08-14 22:45:59 +08:00
|
|
|
CSRCS += lib_abs.c lib_abort.c lib_div.c lib_ldiv.c lib_lldiv.c
|
2020-06-22 20:43:21 +08:00
|
|
|
CSRCS += lib_itoa.c lib_labs.c lib_llabs.c lib_realpath.c
|
2016-07-17 21:56:25 +08:00
|
|
|
CSRCS += lib_bsearch.c lib_rand.c lib_qsort.c lib_srand.c
|
2014-01-16 22:03:26 +08:00
|
|
|
CSRCS += lib_strtol.c lib_strtoll.c lib_strtoul.c lib_strtoull.c
|
2016-10-23 03:02:55 +08:00
|
|
|
CSRCS += lib_strtod.c lib_strtof.c lib_strtold.c lib_checkbase.c
|
2014-11-05 23:39:18 +08:00
|
|
|
CSRCS += lib_mktemp.c lib_mkstemp.c
|
|
|
|
|
2016-10-19 09:11:09 +08:00
|
|
|
ifeq ($(CONFIG_LIBC_WCHAR),y)
|
2020-06-02 13:54:30 +08:00
|
|
|
CSRCS += lib_mblen.c lib_mbtowc.c lib_wctomb.c
|
|
|
|
CSRCS += lib_mbstowcs.c lib_wcstombs.c
|
2016-10-19 09:11:09 +08:00
|
|
|
endif
|
|
|
|
|
2016-07-15 22:33:47 +08:00
|
|
|
ifeq ($(CONFIG_PSEUDOTERM_SUSV1),y)
|
|
|
|
CSRCS += lib_ptsname.c lib_ptsnamer.c
|
|
|
|
endif
|
|
|
|
|
2016-07-15 23:39:33 +08:00
|
|
|
ifeq ($(CONFIG_PSEUDOTERM),y)
|
|
|
|
CSRCS += lib_unlockpt.c
|
|
|
|
endif
|
|
|
|
|
2012-11-11 00:06:01 +08:00
|
|
|
# Add the stdlib directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path stdlib
|
|
|
|
VPATH += :stdlib
|