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

VxWorks

开发平台:

C/C++

  1. # Makefile - makefile for extracting objects from libgcc.a
  2. #
  3. # modification history
  4. # --------------------
  5. # 01d,13nov01,sn   gnuc++ -> gnucplus
  6. # 01c,06nov01,sn   extract objects into a special directory to avoid stomping
  7. #                  on VxWorks object files with the same name
  8. # 01b,31oct01,tam  updated for repackaging
  9. # 01a,24oct01,sn   wrote
  10. #
  11. # DESCRIPTION
  12. # This file contains the definitions needed for extracting objects
  13. # from libgcc.a (GNU C++ compiler support).
  14. TGT_DIR=$(WIND_BASE)/target
  15. TOOL=gnu
  16. LIB_BASE_NAME = gnucplus
  17. LIB_COMMON = false
  18. GCCLIB = $(WIND_BASE)/host/$(WIND_HOST_TYPE)/lib/gcc-lib
  19. GNULIBDIR = $(GCCLIB)/$(CC_MACHINE)/$(CC_VERSION)
  20. GNULIBRARY = libgcc.a
  21. CONFIGLETTE_NAME    = gplusplus_intrinsics
  22. # C++ runtime library
  23. include $(TGT_DIR)/src/tool/gnu/libg++/defs.g++
  24. REAL_OBJS=$(OBJS_CPLUS)
  25. include $(TGT_DIR)/src/tool/gnu/rules.gnu