Makefile
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. # Makefile - makefile for target/src/arch/ppc/math/usSoftwareLib/
  2. #
  3. # modification history
  4. # --------------------
  5. # 01e,12oct01,tam  added support for new packaging scheme
  6. # 01d,23aug01,pch  Add PPC440
  7. # 01c,10nov00,s_m  PPC405 support
  8. # 01b,19aug98,tpr  added PowerPC EC 603 support.
  9. # 01a,20nov96,tpr  created from 01a of target/src/arch/mc69k/math/Makefile
  10. #
  11. # DESCRIPTION
  12. # This file contains the makefile rules for building the software emulation
  13. # of the floating point library for PowePC.
  14. #
  15. #*/
  16. TGT_DIR=$(WIND_BASE)/target
  17. DOC_FILES =
  18. LIB_BASE_NAME = arch
  19. OBJ_USS = arc32.o ceil32.o dp32.o dpcmp.o exp32.o floor32.o fp32.o 
  20.   fparc32.o fpceil32.o fpcmp.o fpexp32.o fpfloo32.o     
  21.   fphyp32.o fplog32.o fpmod32.o fppow32.o fpsqrt32.o    
  22.   fptrig32.o func32.o hyp32.o log32.o mod32.o pow32.o     
  23.   sqrt32.o trig32.o
  24. OBJ_GCC = gccMathLib.o
  25. OBJ_PPC403  = $(OBJ_USS) $(OBJ_GCC)
  26. OBJ_PPCEC603  = $(OBJ_PPC403)
  27. OBJ_PPC860  = $(OBJ_PPC403)
  28. OBJ_PPC405 = $(OBJ_PPC403)
  29. OBJ_PPC440 = $(OBJ_PPC403)
  30. OBJS=$(OBJ_$(CPU))
  31. include $(TGT_DIR)/h/make/rules.library
  32. SUBDIRS=