Makefile.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2004 Manuel Novoa III <mjn3@uclibc.org>
  4. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. #
  8. # Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  9. #
  10. subdirs += libc/stdio
  11. # SUSv3 functions
  12. CSRC := \
  13. fclose.c fcloseall.c fdopen.c fgetpos.c fopen.c freopen.c \
  14. fseeko.c fsetpos.c ftello.c getdelim.c getline.c gets.c getw.c \
  15. perror.c puts.c putw.c remove.c rewind.c setbuf.c setbuffer.c \
  16. setlinebuf.c setvbuf.c ungetc.c \
  17. printf.c vprintf.c vsprintf.c fprintf.c snprintf.c dprintf.c \
  18. asprintf.c sprintf.c vasprintf.c vdprintf.c vsnprintf.c \
  19. tmpfile.c popen.c ctermid.c
  20. ifeq ($(UCLIBC_HAS_LFS),y)
  21. CSRC += fgetpos64.c fopen64.c freopen64.c fseeko64.c fsetpos64.c ftello64.c
  22. endif
  23. ifeq ($(UCLIBC_SUSV4_LEGACY),y)
  24. CSRC += tmpnam.c tmpnam_r.c tempnam.c
  25. endif
  26. # getc -> alias for fgetc
  27. # putc -> alias for fputc
  28. # rename is a syscall
  29. # Implementation support functions
  30. CSRC += \
  31. _READ.c _WRITE.c _adjust_pos.c _fopen.c _fwrite.c \
  32. _rfill.c _stdio.c _trans2r.c _trans2w.c _wcommit.c \
  33. _cs_funcs.c _load_inttype.c _store_inttype.c _uintmaxtostr.c
  34. ifeq ($(UCLIBC_HAS_FLOATS),y)
  35. CSRC += _fpmaxtostr.c
  36. endif
  37. # stdio_ext.h functions
  38. CSRC += \
  39. __fbufsize.c __flbf.c __fpending.c __fpurge.c __freadable.c \
  40. __freading.c __fsetlocking.c __fwritable.c __fwriting.c _flushlbf.c
  41. # Other glibc extensions
  42. ifeq ($(UCLIBC_HAS_GLIBC_CUSTOM_STREAMS),y)
  43. CSRC += fopencookie.c fmemopen.c open_memstream.c
  44. endif
  45. # pthread functions
  46. CSRC += flockfile.c ftrylockfile.c funlockfile.c
  47. # Functions with unlocked versions
  48. CUSRC := \
  49. clearerr.c feof.c ferror.c fflush.c fgetc.c fgets.c fileno.c \
  50. fputc.c fputs.c fread.c fwrite.c getchar.c putchar.c
  51. # getc_unlocked -> alias for fgetc_unlocked
  52. # putc_unlocked -> alias for fputc_unlocked
  53. # vfprintf and support functions
  54. ifneq ($(USE_OLD_VFPRINTF),y)
  55. VF_CSRC := \
  56. vfprintf.c \
  57. _vfprintf_internal.c \
  58. _ppfs_init.c _ppfs_prepargs.c _ppfs_setargs.c _ppfs_parsespec.c \
  59. register_printf_function.c parse_printf_format.c
  60. CSRC += $(VF_CSRC)
  61. else
  62. CSRC += old_vfprintf.c
  63. endif
  64. # vfscanf and support functions plus other *scanf funcs
  65. CSRC += \
  66. vfscanf.c __scan_cookie.c __psfs_parse_spec.c __psfs_do_numeric.c \
  67. scanf.c sscanf.c fscanf.c vscanf.c vsscanf.c
  68. ifeq ($(UCLIBC_HAS_WCHAR),y)
  69. CSRC += _wfwrite.c fwprintf.c swprintf.c vswprintf.c vwprintf.c wprintf.c \
  70. fwide.c ungetwc.c
  71. CUSRC += fgetwc.c getwchar.c fgetws.c fputwc.c putwchar.c fputws.c
  72. # getwc (fgetwc alias) getwc_unlocked (fgetwc_unlocked alias)
  73. # putwc (fputwc alias) putwc_unlocked (fputwc_unlocked alias)
  74. CSRC += vfwprintf.c _vfwprintf_internal.c
  75. CSRC += wscanf.c swscanf.c fwscanf.c vwscanf.c vswscanf.c vfwscanf.c
  76. endif
  77. CUSRC_UNLOCKED := $(patsubst %.c,%_unlocked.c,$(CUSRC))
  78. CSRC += $(CUSRC) $(CUSRC_UNLOCKED)
  79. STDIO_DIR := $(top_srcdir)libc/stdio
  80. STDIO_OUT := $(top_builddir)libc/stdio
  81. STDIO_SRC := $(patsubst %.c,$(STDIO_DIR)/%.c,$(CSRC))
  82. STDIO_OBJ := $(patsubst %.c,$(STDIO_OUT)/%.o,$(CSRC))
  83. libc-y += $(STDIO_OBJ)
  84. ifneq ($(USE_OLD_VFPRINTF),y)
  85. libc-nomulti-y += $(patsubst %.c,$(STDIO_OUT)/%.o,$(VF_CSRC))
  86. endif
  87. ifeq ($(UCLIBC_HAS_WCHAR),y)
  88. libc-nomulti-y += $(STDIO_OUT)/vfwprintf.o $(STDIO_OUT)/vfwscanf.o
  89. endif
  90. objclean-y += CLEAN_libc/stdio
  91. CLEAN_libc/stdio:
  92. $(do_rm) $(addprefix $(STDIO_OUT)/*., o os oS)