Makefile 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. DIRS=
  28. ifeq ($(strip $(HAS_FLOATS)),true)
  29. DIRS+=float
  30. endif
  31. ifeq ($(strip $(HAS_DOUBLE)),true)
  32. DIRS+=double
  33. endif
  34. ifeq ($(strip $(HAS_LONG_DOUBLE)),true)
  35. DIRS+=ldouble
  36. endif
  37. ALL_SUBDIRS = float double ldouble
  38. all: $(LIBM)
  39. $(LIBM): subdirs
  40. @if [ -f $(LIBM) ] ; then \
  41. install -d $(TOPDIR)lib; \
  42. rm -f $(TOPDIR)lib/$(LIBM); \
  43. install -m 644 $(LIBM) $(TOPDIR)lib; \
  44. fi;
  45. tags:
  46. ctags -R
  47. shared: all
  48. @if [ -f $(LIBM) ] ; then \
  49. $(TARGET_CC) $(LDFLAGS) -shared -o $(LIBM_SHARED_FULLNAME) \
  50. -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive \
  51. $(LIBM) $(TOPDIR)lib/$(SHARED_FULLNAME); \
  52. install -d $(TOPDIR)lib; \
  53. rm -f $(TOPDIR)lib/$(LIBM_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBM_SHARED).$(MAJOR_VERSION); \
  54. install -m 644 $(LIBM_SHARED_FULLNAME) $(TOPDIR)lib; \
  55. (cd $(TOPDIR)lib; ln -sf $(LIBM_SHARED_FULLNAME) $(LIBM_SHARED).$(MAJOR_VERSION)); \
  56. fi;
  57. subdirs: $(patsubst %, _dir_%, $(DIRS))
  58. subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
  59. $(patsubst %, _dir_%, $(DIRS)) : dummy
  60. $(MAKE) -C $(patsubst _dir_%, %, $@)
  61. $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
  62. $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  63. clean: subdirs_clean
  64. rm -f *.[oa] *~ core $(LIBM_SHARED)* $(LIBM_SHARED_FULLNAME)*
  65. .PHONY: dummy