Makefile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. CFLAGS+=$(SSP_ALL_CFLAGS)
  36. CFLAGS+=-D_IEEE_LIBM -D_ISOC99_SOURCE -D_SVID_SOURCE
  37. LIB_NAME=libm
  38. AR_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).a
  39. ifeq ($(strip $(DO_C99_MATH)),y)
  40. CSRC = $(wildcard *.c)
  41. else
  42. CSRC =
  43. endif
  44. OBJS=$(patsubst %.c,%.o, $(CSRC))
  45. all: add_to_archive
  46. add_to_archive: $(OBJS)
  47. $(AR) $(ARFLAGS) $(AR_LIB_NAME) $(OBJS)
  48. $(OBJS): %.o : %.c
  49. $(CC) $(CFLAGS) -c $< -o $@
  50. $(STRIPTOOL) -x -R .note -R .comment $*.o
  51. tags:
  52. ctags -R
  53. clean:
  54. $(RM) *.o *~ core