Makefile
上传用户:baixin
上传日期:2008-03-13
资源大小:4795k
文件大小:1k
开发平台:

MultiPlatform

  1. # Makefile - makefile for target/src/cplus/rts
  2. #
  3. # modification history
  4. # --------------------
  5. # 01b,13mar02,sn   SPR 74061 - integrated EDG demangler
  6. # 01a,26nov01,sn   created
  7. # DESCRIPTION
  8. # This file contains the makefile rules for building the C++ demangler
  9. #
  10. TGT_DIR         = $(WIND_BASE)/target
  11. LIB_BASE_NAME = cplus
  12. LIB_COMMON = false
  13. COPIED_DEM_SOURCES     = cplus-dem.c safe-ctype.c edg-decode.c
  14. DEM_NON_COPIED_SOURCES = cp-demangle.c 
  15. COPIED_DEM_HEADERS     = demangle.h safe-ctype.h libiberty.h ansidecl.h
  16. SOURCES                = $(COPIED_DEM_SOURCES) $(DEM_NON_COPIED_SOURCES)
  17. COPIED_FILES           = $(COPIED_DEM_SOURCES) $(COPIED_DEM_HEADERS)
  18. OBJS            = cplusDem.o 
  19.                   cplusDemStub.o 
  20.                   $(patsubst %.c,%.o,$(SOURCES))
  21. BUILD_ALL_OBJS  = true
  22. ifeq ($(WIND_HOST_TYPE),x86-win32)
  23. GNU             = gnu.win32
  24. else
  25. GNU             = gnu
  26. endif
  27. LIBIBERTY_DIR   = $(WIND_BASE)/host/src/$(GNU)/libiberty
  28. INCLUDE_DIR     = $(WIND_BASE)/host/src/$(GNU)/include
  29. EXTRA_DEFINE    = $(OPTION_DEFINE_MACRO)HAVE_STDLIB_H
  30. EXTRA_INCLUDE   = -I.
  31. include $(TGT_DIR)/h/make/rules.library
  32. $(LIBOBJS) : $(COPIED_FILES)
  33. %.c : $(LIBIBERTY_DIR)/%.c
  34. -$(CP) $(subst /,$(DIRCHAR),$<) $@
  35. %.h : $(INCLUDE_DIR)/%.h
  36. -$(CP) $(subst /,$(DIRCHAR),$<) $@
  37. # Remove the copied in files.
  38. # Note to source customers: avoid using this unless
  39. # you've installed the GNU Toolkit sources (under
  40. # host/src/gnu).
  41. fullclean : clean
  42. -$(RM) $(COPIED_FILES)