Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. TARGET_CC= $(TOPDIR)/extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
  25. CSRC= acoshf.c airyf.c asinf.c asinhf.c atanf.c \
  26. atanhf.c bdtrf.c betaf.c cbrtf.c chbevlf.c chdtrf.c \
  27. clogf.c cmplxf.c constf.c coshf.c dawsnf.c ellief.c \
  28. ellikf.c ellpef.c ellpkf.c ellpjf.c expf.c exp2f.c \
  29. exp10f.c expnf.c facf.c fdtrf.c floorf.c fresnlf.c \
  30. gammaf.c gdtrf.c hypergf.c hyp2f1f.c igamf.c igamif.c \
  31. incbetf.c incbif.c i0f.c i1f.c ivf.c j0f.c j1f.c \
  32. jnf.c jvf.c k0f.c k1f.c knf.c logf.c log2f.c \
  33. log10f.c nbdtrf.c ndtrf.c ndtrif.c pdtrf.c polynf.c \
  34. powif.c powf.c psif.c rgammaf.c shichif.c sicif.c \
  35. sindgf.c sinf.c sinhf.c spencef.c sqrtf.c stdtrf.c \
  36. struvef.c tandgf.c tanf.c tanhf.c ynf.c zetaf.c \
  37. zetacf.c polevlf.c setprec.c mtherr.c
  38. COBJS=$(patsubst %.c,%.o, $(CSRC))
  39. OBJS=$(COBJS)
  40. all: $(OBJS) $(LIBM)
  41. $(LIBM): ar-target
  42. ar-target: $(OBJS)
  43. $(AR) $(ARFLAGS) $(LIBM) $(OBJS)
  44. $(COBJS): %.o : %.c
  45. $(TARGET_CC) $(TARGET_CFLAGS) -c $< -o $@
  46. $(STRIPTOOL) -x -R .note -R .comment $*.o
  47. $(OBJ): Makefile
  48. clean:
  49. rm -f *.[oa] *~ core