Makefile.in 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. #
  8. include $(top_srcdir)libc/stdlib/malloc/Makefile.in
  9. include $(top_srcdir)libc/stdlib/malloc-simple/Makefile.in
  10. include $(top_srcdir)libc/stdlib/malloc-standard/Makefile.in
  11. CSRC := \
  12. abort.c getenv.c mkdtemp.c mktemp.c realpath.c mkstemp.c \
  13. rand.c random.c random_r.c setenv.c system.c div.c ldiv.c lldiv.c \
  14. getpt.c ptsname.c grantpt.c unlockpt.c gcvt.c drand48-iter.c jrand48.c \
  15. jrand48_r.c lrand48.c lrand48_r.c mrand48.c mrand48_r.c nrand48.c \
  16. nrand48_r.c rand_r.c srand48.c srand48_r.c seed48.c seed48_r.c \
  17. valloc.c posix_memalign.c a64l.c l64a.c
  18. ifeq ($(UCLIBC_HAS_ARC4RANDOM),y)
  19. CSRC += arc4random.c
  20. endif
  21. ifeq ($(UCLIBC_HAS_LFS),y)
  22. CSRC += mkstemp64.c
  23. endif
  24. ifeq ($(UCLIBC_HAS_FLOATS),y)
  25. CSRC += drand48.c drand48_r.c erand48.c erand48_r.c
  26. endif
  27. # multi source stdlib.c
  28. CSRC += abs.c labs.c atoi.c atol.c strtol.c strtoul.c _stdlib_strto_l.c \
  29. qsort.c bsearch.c \
  30. llabs.c atoll.c strtoll.c strtoull.c _stdlib_strto_ll.c
  31. # (aliases) strtoq.o strtouq.o
  32. ifeq ($(UCLIBC_HAS_FLOATS),y)
  33. CSRC += atof.c
  34. endif
  35. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  36. CSRC += strtol_l.c strtoul_l.c _stdlib_strto_l_l.c \
  37. strtoll_l.c strtoull_l.c _stdlib_strto_ll_l.c
  38. endif
  39. ifeq ($(UCLIBC_HAS_WCHAR),y)
  40. CSRC += mblen.c mbtowc.c wctomb.c mbstowcs.c wcstombs.c \
  41. _stdlib_mb_cur_max.c _stdlib_wcsto_l.c _stdlib_wcsto_ll.c \
  42. wcstol.c wcstoul.c wcstoll.c wcstoull.c
  43. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  44. CSRC +=_stdlib_wcsto_l_l.c _stdlib_wcsto_ll_l.c \
  45. wcstol_l.c wcstoul_l.c wcstoll_l.c wcstoull_l.c
  46. endif
  47. endif
  48. # multi source _strtod.c
  49. ifeq ($(UCLIBC_HAS_FLOATS),y)
  50. CSRC += strtod.c strtof.c strtold.c __strtofpmax.c __fp_range_check.c
  51. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  52. CSRC += strtod_l.c strtof_l.c strtold_l.c __strtofpmax_l.c
  53. endif
  54. ifeq ($(UCLIBC_HAS_WCHAR),y)
  55. CSRC += wcstod.c wcstof.c wcstold.c __wcstofpmax.c
  56. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  57. CSRC += wcstod_l.c wcstof_l.c wcstold_l.c __wcstofpmax_l.c
  58. endif
  59. endif
  60. endif
  61. # (aliases) wcstoq.o wcstouq.o
  62. # wcstod wcstof wcstold
  63. # multi source _atexit.c
  64. CSRC += __cxa_atexit.c __cxa_finalize.c __exit_handler.c exit.c on_exit.c
  65. ifeq ($(COMPAT_ATEXIT),y)
  66. CSRC += old_atexit.c
  67. endif
  68. STDLIB_DIR := $(top_srcdir)libc/stdlib
  69. STDLIB_OUT := $(top_builddir)libc/stdlib
  70. STDLIB_SRC := $(patsubst %.c,$(STDLIB_DIR)/%.c,$(CSRC))
  71. STDLIB_OBJ := $(patsubst %.c,$(STDLIB_OUT)/%.o,$(CSRC))
  72. libc-y += $(STDLIB_OBJ)
  73. libc-static-y += $(STDLIB_OUT)/atexit.o
  74. # this should always be the PIC version, because it could be used in shared libs
  75. libc-nonshared-y += $(STDLIB_OUT)/atexit.os
  76. objclean-y += stdlib_objclean
  77. stdlib_objclean:
  78. $(RM) $(STDLIB_OUT)/*.{o,os}