Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Makefile for uClibc's math library
  2. #
  3. # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # The routines included in this math library are derived from the
  6. # math library for Apple's MacOS X/Darwin math library, which was
  7. # itself swiped from FreeBSD. The original copyright information
  8. # is as follows:
  9. #
  10. # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  11. #
  12. # Developed at SunPro, a Sun Microsystems, Inc. business.
  13. # Permission to use, copy, modify, and distribute this
  14. # software is freely granted, provided that this notice
  15. # is preserved.
  16. #
  17. # It has been ported to work with uClibc and generally behave
  18. # by Erik Andersen <andersen@codepoet.org>
  19. #
  20. # This program is free software; you can redistribute it and/or modify it under
  21. # the terms of the GNU Library General Public License as published by the Free
  22. # Software Foundation; either version 2 of the License, or (at your option) any
  23. # later version.
  24. #
  25. # This program is distributed in the hope that it will be useful, but WITHOUT
  26. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  27. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  28. # details.
  29. #
  30. # You should have received a copy of the GNU Library General Public License
  31. # along with this program; if not, write to the Free Software Foundation, Inc.,
  32. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  33. TOPDIR=../../
  34. include $(TOPDIR)Rules.mak
  35. LIBM=../libm.a
  36. CFLAGS+=-D_IEEE_LIBM -D_ISOC99_SOURCE -D_SVID_SOURCE
  37. ifeq ($(strip $(DO_C99_MATH)),y)
  38. CSRC = s_ceil.c s_floor.c s_ldexp.c s_frexp.c s_logb.c s_modf.c w_scalb.c s_copysign.c s_rint.c
  39. else
  40. CSRC =
  41. endif
  42. COBJS=$(patsubst %.c,%.o, $(CSRC))
  43. OBJS=$(COBJS)
  44. ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
  45. all: clean
  46. else
  47. all: $(OBJS) $(LIBM)
  48. endif
  49. $(LIBM): ar-target
  50. ar-target: $(OBJS)
  51. $(AR) $(ARFLAGS) $(LIBM) $(OBJS)
  52. $(COBJS): %.o : %.c
  53. $(CC) $(CFLAGS) -c $< -o $@
  54. $(STRIPTOOL) -x -R .note -R .comment $*.o
  55. $(OBJ): Makefile
  56. tags:
  57. ctags -R
  58. clean:
  59. $(RM) *.[oa] *~ core