Makefile
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. # Makefile - makefile for bsp/src/drv/pcmcia
  2. #
  3. # modification history
  4. # --------------------
  5. # 01i,12mar02,dat  SPR 72518 Drivers docs in separate directory
  6. # 01h,15jan02,jkf  SPR#72617, removing 01f kludge
  7. # 01g,12oct01,tam  added repackaging support
  8. # 01f,21jun00,rsh  upgrade to dosFs 2.0
  9. # 01g,26oct99,jkf  added DOC_OPTS = $(DOC_OPTS_MAN) -category DOSFS2
  10. # 01f,08oct99,jkf  added a kludge to get dosfs2 changes into the T2 component
  11. #                  documentation directory "dosfs2".  This change should be
  12. #                  be removed for T3, since dosfs2 will no longer be a
  13. #                  component release.
  14. # 01e,03jun98,dat  Fixed EXTRA_INCLUDE to use TGT_DIR, all binaries are
  15. #    now built for all architectures.
  16. # 01d,29may98,dbt  added support for PENTIUM
  17. # 01c,17nov96,jdi  doc: added pccardLib.c to DOC_FILES.
  18. # 01b,05nov96,yp   changed <CPU> to $(CPU)
  19. # 01a,05nov96,hdn  created from 01c of MakeSkel
  20. #
  21. # DESCRIPTION
  22. # This file contains the makefile rules for building the vx library
  23. #
  24. # All files are binary objects except pccardLib.c which is a source
  25. # driver that the user can customize through macros and code changes.
  26. #
  27. #*/
  28. TGT_DIR=$(WIND_BASE)/target
  29. DOC_FILES= pcmciaLib.c cisLib.c pcic.c tcic.c sramDrv.c 
  30.    pcmciaShow.c cisShow.c pcicShow.c tcicShow.c pccardLib.c
  31. LIB_BASE_NAME=drv
  32. EXTRA_INCLUDE=-I$(TGT_DIR)/h/
  33. OBJS_COMMON = pcmciaLib.o cisLib.o pcic.o tcic.o sramDrv.o 
  34.       pcmciaShow.o cisShow.o pcicShow.o tcicShow.o
  35. OBJS        = $(OBJS_COMMON) $(OBJS_$(CPU))
  36. include $(TGT_DIR)/h/make/rules.library
  37. CC_OPTIM=$(CC_OPTIM_DRIVER)
  38. DOC_DIR = $(DOCS_ROOT)/vxworks/ref/drv
  39. DOC_CHAPTER=Driver_Libraries