# Makefile for uClibc
#
# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#

# SUSv3 functions
klib-y := \
    fclose.c fcloseall.c fdopen.c fgetpos.c fopen.c freopen.c \
    fseeko.c fsetpos.c ftello.c getdelim.c getline.c gets.c getw.c \
    perror.c puts.c putw.c remove.c rewind.c setbuf.c setbuffer.c \
    setlinebuf.c setvbuf.c ungetc.c \
    printf.c vprintf.c vsprintf.c fprintf.c snprintf.c dprintf.c \
    asprintf.c sprintf.c vasprintf.c vdprintf.c vsnprintf.c \
    tmpfile.c tmpnam.c tmpnam_r.c popen.c tempnam.c ctermid.c

klib-$(UCLIBC_HAS_LFS) += fgetpos64.c fopen64.c freopen64.c fseeko64.c fsetpos64.c ftello64.c

# getc -> alias for fgetc
# putc -> alias for fputc
# rename is a syscall

# Implementation support functions
klib-y += \
    _READ.c _WRITE.c _adjust_pos.c _fopen.c _fwrite.c \
    _rfill.c _stdio.c _trans2r.c _trans2w.c _wcommit.c \
    _cs_funcs.c _load_inttype.c _store_inttype.c _uintmaxtostr.c
klib-$(UCLIBC_HAS_FLOATS) += _fpmaxtostr.c

# stdio_ext.h functions
klib-y += \
    __fbufsize.c __flbf.c __fpending.c __fpurge.c __freadable.c \
    __freading.c __fsetlocking.c __fwritable.c __fwriting.c _flushlbf.c

# Other glibc extensions
klib-$(UCLIBC_HAS_GLIBC_CUSTOM_STREAMS) += fopencookie.c fmemopen.c open_memstream.c

# pthread functions
klib-y += flockfile.c ftrylockfile.c funlockfile.c

# Functions with unlocked versions
klib_unlocked-y := \
    clearerr.c feof.c ferror.c fflush.c fgetc.c fgets.c fileno.c \
    fputc.c fputs.c fread.c fwrite.c getchar.c putchar.c
# getc_unlocked -> alias for fgetc_unlocked
# putc_unlocked -> alias for fputc_unlocked

# vfprintf and support functions
ifneq ($(USE_OLD_VFPRINTF),y)
klib-y += \
    vfprintf.c \
    _vfprintf_internal.c \
    _ppfs_init.c _ppfs_prepargs.c _ppfs_setargs.c _ppfs_parsespec.c \
    register_printf_function.c parse_printf_format.c
else
klib-y += old_vfprintf.c
endif

# vfscanf and support functions plus other *scanf funcs
klib-y += \
    vfscanf.c __scan_cookie.c __psfs_parse_spec.c __psfs_do_numeric.c \
    scanf.c sscanf.c fscanf.c vscanf.c vsscanf.c

klib-$(UCLIBC_HAS_WCHAR) += _wfwrite.c fwprintf.c swprintf.c vswprintf.c \
    vwprintf.c wprintf.c fwide.c ungetwc.c
klib_unlocked-$(UCLIBC_HAS_WCHAR) += fgetwc.c getwchar.c fgetws.c fputwc.c putwchar.c fputws.c
# getwc (fgetwc alias) getwc_unlocked (fgetwc_unlocked alias)
# putwc (fputwc alias) putwc_unlocked (fputwc_unlocked alias)
klib-$(UCLIBC_HAS_WCHAR) += vfwprintf.c _vfwprintf_internal.c
klib-$(UCLIBC_HAS_WCHAR) += wscanf.c swscanf.c fwscanf.c vwscanf.c vswscanf.c vfwscanf.c

klib-y += $(klib_unlocked-y) $(patsubst %.c,%_unlocked.c,$(klib_unlocked-y))
