Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Makefile for uClibc's math library
  2. #
  3. # Copyright (C) 2001 by Lineo, inc.
  4. #
  5. # This program is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Library General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option) any
  8. # later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Library General Public License
  16. # along with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. #
  19. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  20. # other sundry sources. Files within this library are copyright by their
  21. # respective copyright holders.
  22. TOPDIR=../../
  23. include $(TOPDIR)Rules.mak
  24. LIBM=../libm.a
  25. TARGET_CC= $(TOPDIR)/extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
  26. CSRC= acoshf.c airyf.c asinf.c asinhf.c atanf.c \
  27. atanhf.c bdtrf.c betaf.c cbrtf.c chbevlf.c chdtrf.c \
  28. clogf.c cmplxf.c constf.c coshf.c dawsnf.c ellief.c \
  29. ellikf.c ellpef.c ellpkf.c ellpjf.c expf.c exp2f.c \
  30. exp10f.c expnf.c facf.c fdtrf.c floorf.c fresnlf.c \
  31. gammaf.c gdtrf.c hypergf.c hyp2f1f.c igamf.c igamif.c \
  32. incbetf.c incbif.c i0f.c i1f.c ivf.c j0f.c j1f.c \
  33. jnf.c jvf.c k0f.c k1f.c knf.c logf.c log2f.c \
  34. log10f.c nbdtrf.c ndtrf.c ndtrif.c pdtrf.c polynf.c \
  35. powif.c powf.c psif.c rgammaf.c shichif.c sicif.c \
  36. sindgf.c sinf.c sinhf.c spencef.c sqrtf.c stdtrf.c \
  37. struvef.c tandgf.c tanf.c tanhf.c ynf.c zetaf.c \
  38. zetacf.c polevlf.c setprec.c mtherr.c
  39. COBJS=$(patsubst %.c,%.o, $(CSRC))
  40. OBJS=$(COBJS)
  41. all: $(OBJS) $(LIBM)
  42. $(LIBM): ar-target
  43. ar-target: $(OBJS)
  44. $(AR) $(ARFLAGS) $(LIBM) $(OBJS)
  45. $(COBJS): %.o : %.c
  46. $(TARGET_CC) $(CFLAGS) -c $< -o $@
  47. $(STRIPTOOL) -x -R .note -R .comment $*.o
  48. $(OBJ): Makefile
  49. clean:
  50. rm -f *.[oa] *~ core