Makefile 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # Makefile for uClibc's math library
  2. # Copyright (C) 2001 by Lineo, inc.
  3. #
  4. # This math library is derived primarily from the Cephes Math Library,
  5. # copyright by Stephen L. Moshier <moshier@world.std.com>
  6. #
  7. # This program is free software; you can redistribute it and/or modify it under
  8. # the terms of the GNU Library General Public License as published by the Free
  9. # Software Foundation; either version 2 of the License, or (at your option) any
  10. # later version.
  11. #
  12. # This program is distributed in the hope that it will be useful, but WITHOUT
  13. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  14. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  15. # details.
  16. #
  17. # You should have received a copy of the GNU Library General Public License
  18. # along with this program; if not, write to the Free Software Foundation, Inc.,
  19. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. #
  21. TOPDIR=../
  22. include $(TOPDIR)Rules.mak
  23. LIBM=libm.a
  24. LIBM_SHARED=libm.so
  25. LIBM_SHARED_FULLNAME=libm-$(MAJOR_VERSION).$(MINOR_VERSION).so
  26. TARGET_CC= $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
  27. TARGET_CFLAGS+=-D_IEEE_LIBM -D_ISOC99_SOURCE -D_SVID_SOURCE
  28. ifeq ($(strip $(DO_C89_ONLY)),true)
  29. CSRC = FIXME
  30. else
  31. CSRC = e_acos.c e_acosh.c e_asin.c e_atan2.c e_atanh.c e_cosh.c\
  32. e_exp.c e_fmod.c e_gamma.c e_gamma_r.c e_hypot.c e_j0.c\
  33. e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c e_log.c e_log10.c\
  34. e_pow.c e_remainder.c e_rem_pio2.c e_scalb.c e_sinh.c\
  35. e_sqrt.c k_cos.c k_rem_pio2.c k_sin.c k_standard.c k_tan.c\
  36. s_asinh.c s_atan.c s_cbrt.c s_ceil.c s_copysign.c s_cos.c\
  37. s_erf.c s_expm1.c s_fabs.c s_finite.c s_floor.c s_frexp.c\
  38. s_ilogb.c s_ldexp.c s_lib_version.c s_log1p.c s_logb.c\
  39. s_matherr.c s_modf.c s_nextafter.c s_rint.c s_scalbn.c\
  40. s_signgam.c s_significand.c s_sin.c s_tan.c s_tanh.c\
  41. w_acos.c w_acosh.c w_asin.c w_atan2.c w_atanh.c w_cabs.c\
  42. w_cosh.c w_drem.c w_exp.c w_fmod.c w_gamma.c w_gamma_r.c\
  43. w_hypot.c w_j0.c w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c\
  44. w_log.c w_log10.c w_pow.c w_remainder.c w_scalb.c w_sinh.c\
  45. w_sqrt.c ceilfloor.c fpmacros.c frexpldexp.c logb.c rndint.c\
  46. scalb.c sign.c
  47. endif
  48. COBJS=$(patsubst %.c,%.o, $(CSRC))
  49. OBJS=$(COBJS)
  50. all: $(OBJS) $(LIBM)
  51. $(LIBM): ar-target
  52. @if [ -f $(LIBM) ] ; then \
  53. install -d $(TOPDIR)lib; \
  54. rm -f $(TOPDIR)lib/$(LIBM); \
  55. install -m 644 $(LIBM) $(TOPDIR)lib; \
  56. fi;
  57. shared: all
  58. if [ -f $(LIBM) ] ; then \
  59. $(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBM_SHARED_FULLNAME) \
  60. -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBM) -lc; \
  61. install -d $(TOPDIR)lib; \
  62. rm -f $(TOPDIR)lib/$(LIBM_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBM_SHARED).$(MAJOR_VERSION); \
  63. install -m 644 $(LIBM_SHARED_FULLNAME) $(TOPDIR)lib; \
  64. (cd $(TOPDIR)lib; ln -sf $(LIBM_SHARED_FULLNAME) $(LIBM_SHARED)); \
  65. (cd $(TOPDIR)lib; ln -sf $(LIBM_SHARED_FULLNAME) $(LIBM_SHARED).$(MAJOR_VERSION)); \
  66. fi;
  67. ar-target: $(OBJS)
  68. $(AR) $(ARFLAGS) $(LIBM) $(OBJS)
  69. $(COBJS): %.o : %.c
  70. $(TARGET_CC) $(TARGET_CFLAGS) -c $< -o $@
  71. $(STRIPTOOL) -x -R .note -R .comment $*.o
  72. $(OBJ): Makefile
  73. tags:
  74. ctags -R
  75. clean:
  76. rm -f *.[oa] *~ core $(LIBM_SHARED)* $(LIBM_SHARED_FULLNAME)*