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

VxWorks

开发平台:

C/C++

  1. # rules.gnu - rules for extracting objects from GNU libraries
  2. #
  3. # modification history
  4. # --------------------
  5. # 01b,06nov01,sn   define OBJ_PREFIX
  6. # 01a,15oct01,sn   wrote
  7. #
  8. # DESCRIPTION
  9. # Generic rules for extracting objects from GNU libraries.
  10. # Subdirectory Makefiles for specific libraries should
  11. # set GNULIBDIR and GNULIBRARY and include this file.
  12. #
  13.   
  14. # Ask the compiler driver for the version (e.g. gcc-2.6) and
  15. # machine (e.g. powerpc-wrs-vxworksae). This info may
  16. # be used by subdirectory Makefiles to compute GNULIBDIR.
  17. CC_VERSION = $(shell $(CC) -dumpversion)
  18. CC_MACHINE = $(shell $(CC) -dumpmachine)
  19. MULTISUBDIR = $(CPU)$(TOOL)
  20. TOOL_LIB = $(GNULIBDIR)/$(MULTISUBDIR)/$(GNULIBRARY)
  21. OBJ_PREFIX      = _x_gnu_
  22. include $(TGT_DIR)/src/tool/rules.tool