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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the FPU instruction emulation.
  3. #
  4. CFLAGS += -I. -I$(TOPDIR)/include/math-emu -w
  5. ifeq ($(CONFIG_MATHEMU),y)
  6. O_TARGET := math-emu.o
  7. obj-y := math.o qrnnd.o
  8. else
  9. list-multi := math-emu.o
  10. math-emu-objs := math.o qrnnd.o
  11. obj-m := math-emu.o
  12. math-emu.o: $(math-emu-objs)
  13. $(LD) -r -o $@ $(math-emu-objs)
  14. endif
  15. include $(TOPDIR)/Rules.make