Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux/parisc floating point code
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definition is now in the main makefile...
  9. O_TARGET := math.o
  10. obj-y  := frnd.o driver.o decode_exc.o fpudispatch.o denormal.o 
  11. dfmpy.o sfmpy.o sfsqrt.o dfsqrt.o dfadd.o fmpyfadd.o 
  12. sfadd.o dfsub.o sfsub.o fcnvfxt.o fcnvff.o fcnvxf.o 
  13. fcnvfx.o fcnvuf.o fcnvfu.o fcnvfut.o dfdiv.o sfdiv.o 
  14. dfrem.o sfrem.o dfcmp.o sfcmp.o
  15. # Math emulation code beyond the FRND is required for 712/80i and
  16. # other very old or stripped-down PA-RISC CPUs -- not currently supported
  17. obj-$CONFIG_MATH_EMULATION += unimplemented-math-emulation.o
  18. include $(TOPDIR)/Rules.make