Makefile.in 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. # The routines included in this math library are derived from the
  8. # math library for Apple's MacOS X/Darwin math library, which was
  9. # itself swiped from FreeBSD. The original copyright information
  10. # is as follows:
  11. #
  12. # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  13. #
  14. # Developed at SunPro, a Sun Microsystems, Inc. business.
  15. # Permission to use, copy, modify, and distribute this
  16. # software is freely granted, provided that this notice
  17. # is preserved.
  18. #
  19. # It has been ported to work with uClibc and generally behave
  20. # by Erik Andersen <andersen@codepoet.org>
  21. #
  22. CFLAGS-libm := -DNOT_IN_libc -DIS_IN_libm $(SSP_ALL_CFLAGS)
  23. CFLAGS-libm += -D_IEEE_LIBM
  24. LDFLAGS-libm.so := $(LDFLAGS)
  25. LIBS-libm.so := $(LIBS)
  26. libm_FULL_NAME := libm-$(VERSION).so
  27. libm_DIR:=$(top_srcdir)libm
  28. libm_OUT:=$(top_builddir)libm
  29. # Fix builds for powerpc as there are different cores in this
  30. # section now.`
  31. ifeq ($(TARGET_ARCH),powerpc)
  32. ifeq ($(CONFIG_E500),y)
  33. libm_ARCH_DIR:=$(libm_DIR)/$(TARGET_ARCH)/e500
  34. libm_ARCH_OUT:=$(libm_OUT)/$(TARGET_ARCH)/e500
  35. else
  36. libm_ARCH_DIR:=$(libm_DIR)/$(TARGET_ARCH)/classic
  37. libm_ARCH_OUT:=$(libm_OUT)/$(TARGET_ARCH)/classic
  38. endif
  39. else
  40. libm_ARCH_DIR:=$(libm_DIR)/$(TARGET_ARCH)
  41. libm_ARCH_OUT:=$(libm_OUT)/$(TARGET_ARCH)
  42. endif
  43. libm_ARCH_fpu_DIR:=$(libm_ARCH_DIR)/fpu
  44. libm_ARCH_fpu_OUT:=$(libm_ARCH_OUT)/fpu
  45. ifeq ($(UCLIBC_HAS_FPU),y)
  46. ifeq ($(DO_C99_MATH),y)
  47. -include $(libm_ARCH_DIR)/Makefile.arch
  48. endif
  49. endif
  50. FL_MSRC := float_wrappers.c
  51. ifeq ($(DO_C99_MATH),y)
  52. libm_CSRC := \
  53. e_acos.c e_acosh.c e_asin.c e_atan2.c e_atanh.c e_cosh.c \
  54. e_exp.c e_fmod.c e_gamma.c e_gamma_r.c e_hypot.c e_j0.c \
  55. e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c e_log.c e_log10.c \
  56. e_pow.c e_remainder.c e_rem_pio2.c e_scalb.c e_sinh.c \
  57. e_sqrt.c k_cos.c k_rem_pio2.c k_sin.c k_standard.c k_tan.c \
  58. s_asinh.c s_atan.c s_cbrt.c s_ceil.c s_copysign.c s_cos.c \
  59. s_erf.c s_expm1.c s_fabs.c s_finite.c s_floor.c s_frexp.c \
  60. s_ilogb.c s_ldexp.c s_lib_version.c s_lrint.c s_lround.c s_llround.c \
  61. s_log1p.c s_logb.c s_matherr.c s_modf.c s_nextafter.c s_round.c \
  62. s_rint.c s_scalbn.c s_signgam.c s_significand.c s_sin.c s_tan.c \
  63. s_tanh.c s_trunc.c w_acos.c w_acosh.c w_asin.c w_atan2.c w_atanh.c \
  64. w_cabs.c w_cosh.c w_drem.c w_exp.c w_fmod.c w_gamma.c w_gamma_r.c \
  65. w_hypot.c w_j0.c w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c \
  66. w_log.c w_log10.c w_pow.c w_remainder.c w_scalb.c w_sinh.c \
  67. w_sqrt.c fpmacros.c nan.c carg.c s_llrint.c
  68. FL_MOBJ := \
  69. acosf.o acoshf.o asinf.o asinhf.o atan2f.o atanf.o atanhf.o cbrtf.o \
  70. ceilf.o copysignf.o cosf.o coshf.o erfcf.o erff.o exp2f.o expf.o \
  71. expm1f.o fabsf.o fdimf.o floorf.o fmaf.o fmaxf.o fminf.o fmodf.o \
  72. frexpf.o hypotf.o ilogbf.o ldexpf.o lgammaf.o llroundf.o log10f.o \
  73. log1pf.o log2f.o logbf.o logf.o lrintf.o lroundf.o modff.o nearbyintf.o \
  74. nextafterf.o powf.o remainderf.o remquof.o rintf.o roundf.o \
  75. scalblnf.o scalbnf.o sinf.o sinhf.o sqrtf.o tanf.o tanhf.o \
  76. tgammaf.o truncf.o cargf.o llrintf.o
  77. else
  78. # This list of math functions was taken from POSIX/IEEE 1003.1b-1993
  79. libm_CSRC := \
  80. w_acos.c w_asin.c s_atan.c w_atan2.c s_ceil.c s_cos.c \
  81. w_cosh.c w_exp.c s_fabs.c s_floor.c w_fmod.c s_frexp.c \
  82. s_ldexp.c w_log.c w_log10.c s_modf.c w_pow.c s_sin.c \
  83. w_sinh.c w_sqrt.c s_tan.c s_tanh.c \
  84. s_expm1.c s_scalbn.c s_copysign.c e_acos.c e_asin.c e_atan2.c \
  85. k_cos.c e_cosh.c e_exp.c e_fmod.c e_log.c e_log10.c e_pow.c \
  86. k_sin.c e_sinh.c e_sqrt.c k_tan.c e_rem_pio2.c k_rem_pio2.c \
  87. s_finite.c
  88. # We'll add sqrtf to avoid problems with libstdc++
  89. FL_MOBJ := sqrtf.o
  90. endif
  91. # assume that arch specific versions are provided as single sources/objects
  92. ifeq ($(UCLIBC_HAS_FPU),y)
  93. ifeq ($(DO_C99_MATH),y)
  94. ifneq ($(strip $(libm_ARCH_OBJS)),)
  95. ifeq ($(TARGET_ARCH),powerpc)
  96. ifeq ($(CONFIG_E500),y)
  97. CFLAGS-libm/$(TARGET_ARCH)/e500/ := $(CFLAGS-libm)
  98. else
  99. CFLAGS-libm/$(TARGET_ARCH)/classic/ := $(CFLAGS-libm)
  100. endif
  101. else
  102. CFLAGS-libm/$(TARGET_ARCH)/ := $(CFLAGS-libm)
  103. endif
  104. # remove generic sources, if arch specific version is present
  105. ifneq ($(strip $(libm_ARCH_SRC)),)
  106. libm_CSRC := $(filter-out $(notdir $(libm_ARCH_SRC)),$(libm_CSRC))
  107. endif
  108. # remove generic objects built from multi-sources, if arch specific version is present
  109. FL_MOBJ := $(filter-out $(notdir $(libm_ARCH_OBJS)),$(FL_MOBJ))
  110. # we also try to remove % if s_% is in arch specific subdir
  111. FL_MOBJ := $(filter-out $(patsubst s_%.o,%.o,$(notdir $(libm_ARCH_OBJS))),$(FL_MOBJ))
  112. endif
  113. endif
  114. endif
  115. libm_SRC := $(patsubst %.c,$(libm_DIR)/%.c,$(libm_CSRC))
  116. libm_OBJ := $(patsubst $(libm_DIR)/%.c,$(libm_OUT)/%.o,$(libm_SRC))
  117. libm_MSRC := $(libm_DIR)/$(FL_MSRC)
  118. libm_MOBJ := $(patsubst %.o,$(libm_OUT)/%.o,$(FL_MOBJ))
  119. ifneq ($(DOMULTI),n)
  120. CFLAGS-libm += $(patsubst %,-DL_%,$(subst .o,,$(notdir $(libm_MOBJ))))
  121. endif
  122. libm_OBJS := $(libm_OBJ) $(libm_MOBJ)
  123. ifeq ($(DOPIC),y)
  124. libm-a-y += $(libm_OBJS:.o=.os)
  125. else
  126. libm-a-y += $(libm_OBJS)
  127. endif
  128. libm-so-y += $(libm_OBJS:.o=.os)
  129. lib-a-$(UCLIBC_HAS_FLOATS) += $(top_builddir)lib/libm.a
  130. lib-so-$(UCLIBC_HAS_FLOATS) += $(top_builddir)lib/libm.so
  131. objclean-y += libm_clean
  132. ifeq ($(DOMULTI),n)
  133. ifeq ($(DOPIC),y)
  134. $(top_builddir)lib/libm.so: $(top_builddir)lib/libm.a $(libc.depend)
  135. else
  136. $(top_builddir)lib/libm.so: $(libm_OUT)/libm_so.a $(libc.depend)
  137. endif
  138. $(call link.so,$(libm_FULL_NAME),$(MAJOR_VERSION))
  139. else
  140. $(top_builddir)lib/libm.so: $(libm_OUT)/libm.oS | $(libc.depend)
  141. $(call linkm.so,$(libm_FULL_NAME),$(MAJOR_VERSION))
  142. endif
  143. $(libm_OUT)/libm_so.a: $(libm-so-y)
  144. $(Q)$(RM) $@
  145. $(do_ar)
  146. $(libm_OUT)/libm.oS: $(libm_SRC) $(libm_MSRC) $(libm_ARCH_SRC)
  147. $(Q)$(RM) $@
  148. $(compile-m)
  149. $(top_builddir)lib/libm.a: $(libm-a-y)
  150. $(Q)$(INSTALL) -d $(dir $@)
  151. $(Q)$(RM) $@
  152. $(do_ar)
  153. $(libm_MOBJ): $(libm_MSRC)
  154. $(compile.m)
  155. $(libm_MOBJ:.o=.os): $(libm_MSRC)
  156. $(compile.m)
  157. libm_clean:
  158. $(RM) $(libm_OUT)/{,*/,*/*/}*.{o,os,oS,a}