96 lines
3.7 KiB
Plaintext
96 lines
3.7 KiB
Plaintext
############################################################################
|
|
# libs/libc/stdio/Make.defs
|
|
#
|
|
# Copyright (C) 2011-2014, 2019 Gregory Nutt. All rights reserved.
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
# used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
############################################################################
|
|
|
|
# Add the stdio C files to the build
|
|
# This first group of C files do not depend on having C streams.
|
|
|
|
CSRCS += lib_fileno.c lib_printf.c lib_sprintf.c lib_asprintf.c
|
|
CSRCS += lib_snprintf.c lib_libsprintf.c lib_vsprintf.c lib_vasprintf.c
|
|
CSRCS += lib_vsnprintf.c lib_dprintf.c lib_vdprintf.c
|
|
CSRCS += lib_meminstream.c lib_memoutstream.c lib_memsistream.c
|
|
CSRCS += lib_memsostream.c lib_lowoutstream.c
|
|
CSRCS += lib_zeroinstream.c lib_nullinstream.c lib_nulloutstream.c
|
|
CSRCS += lib_sscanf.c lib_vsscanf.c lib_libvscanf.c lib_libnoflush.c
|
|
CSRCS += lib_libsnoflush.c
|
|
|
|
ifeq ($(CONFIG_LIBC_PRINT_LEGACY),y)
|
|
|
|
CSRCS += legacy_libvsprintf.c
|
|
ifeq ($(CONFIG_LIBC_FLOATINGPOINT),y)
|
|
CSRCS += legacy_dtoa.c
|
|
endif
|
|
|
|
else
|
|
|
|
CSRCS += lib_libvsprintf.c lib_ultoa_invert.c
|
|
ifeq ($(CONFIG_LIBC_FLOATINGPOINT),y)
|
|
CSRCS += lib_dtoa_engine.c lib_dtoa_data.c
|
|
endif
|
|
|
|
endif
|
|
|
|
# The remaining sources files depend upon C streams
|
|
|
|
ifneq ($(CONFIG_NFILE_STREAMS),0)
|
|
|
|
CSRCS += lib_fopen.c lib_freopen.c lib_fclose.c lib_fread.c lib_libfread.c
|
|
CSRCS += lib_fseek.c lib_ftell.c lib_fsetpos.c lib_getdelim.c lib_fgetpos.c
|
|
CSRCS += lib_fgetc.c lib_fgets.c lib_gets_s.c lib_gets.c lib_libfgets.c
|
|
CSRCS += lib_fwrite.c lib_libfwrite.c lib_fflush.c lib_libflushall.c
|
|
CSRCS += lib_libfflush.c lib_rdflush.c lib_wrflush.c lib_fputc.c lib_puts.c
|
|
CSRCS += lib_fputs.c lib_ungetc.c lib_vprintf.c lib_fprintf.c lib_vfprintf.c
|
|
CSRCS += lib_stdinstream.c lib_stdoutstream.c lib_stdsistream.c
|
|
CSRCS += lib_stdsostream.c lib_perror.c lib_feof.c lib_ferror.c
|
|
CSRCS += lib_rawinstream.c lib_rawoutstream.c lib_rawsistream.c
|
|
CSRCS += lib_rawsostream.c lib_remove.c lib_clearerr.c lib_scanf.c
|
|
CSRCS += lib_fscanf.c lib_vfscanf.c
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_FS_WRITABLE),y)
|
|
CSRCS += lib_tempnam.c lib_tmpnam.c
|
|
endif
|
|
|
|
ifneq ($(CONFIG_STDIO_DISABLE_BUFFERING),y)
|
|
CSRCS += lib_setbuf.c lib_setvbuf.c
|
|
endif
|
|
|
|
# Other support that depends on specific, configured features.
|
|
|
|
# Add the stdio directory to the build
|
|
|
|
DEPPATH += --dep-path stdio
|
|
VPATH += :stdio
|