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

VxWorks

开发平台:

C/C++

  1. # Makefile - makefile for target/src/arch/i86/math
  2. #
  3. # modification history
  4. # --------------------
  5. # 01d,25oct01,tam  updated for repackaging
  6. # 01c,10aug01,hdn  added support for PENTIUM2/3/4.
  7. # 01b,09apr98,hdn  added support for Pentium.
  8. # 01a,12jul96,yp   created from 01b of MakeSkel
  9. #
  10. # DESCRIPTION
  11. # This file contains the makefile rules for building the vx library
  12. #
  13. #*/
  14. TGT_DIR=$(WIND_BASE)/target
  15. DOC_FILES =
  16. LIB_BASE_NAME   = arch
  17. OBJ_HW_SUPPORT = mathHardALib.o mathHardLib.o
  18. OBJ_I80386  = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o 
  19.   mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)
  20. OBJ_I80486  = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o 
  21.   mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)
  22. OBJ_PENTIUM  = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o 
  23.   mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)
  24. OBJ_PENTIUM2  = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o 
  25.   mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)
  26. OBJ_PENTIUM3  = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o 
  27.   mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)
  28. OBJ_PENTIUM4  = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o 
  29.   mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)
  30. OBJS=$(OBJ_$(CPU))
  31. include $(TGT_DIR)/h/make/rules.library