rules.mk
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #
  2. # FreeType 2 renderer module build rules
  3. #
  4. # Copyright 1996-2000, 2001, 2003 by
  5. # David Turner, Robert Wilhelm, and Werner Lemberg.
  6. #
  7. # This file is part of the FreeType project, and may only be used, modified,
  8. # and distributed under the terms of the FreeType project license,
  9. # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
  10. # indicate that you have read the license and understand and accept it
  11. # fully.
  12. # raster driver directory
  13. #
  14. RASTER_DIR := $(SRC_DIR)/raster
  15. # compilation flags for the driver
  16. #
  17. RASTER_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(RASTER_DIR))
  18. # raster driver sources (i.e., C files)
  19. #
  20. RASTER_DRV_SRC := $(RASTER_DIR)/ftraster.c 
  21.                   $(RASTER_DIR)/ftrend1.c
  22. # raster driver headers
  23. #
  24. RASTER_DRV_H := $(RASTER_DRV_SRC:%.c=%.h) 
  25.                 $(RASTER_DIR)/rasterrs.h
  26. # raster driver object(s)
  27. #
  28. #   RASTER_DRV_OBJ_M is used during `multi' builds.
  29. #   RASTER_DRV_OBJ_S is used during `single' builds.
  30. #
  31. RASTER_DRV_OBJ_M := $(RASTER_DRV_SRC:$(RASTER_DIR)/%.c=$(OBJ_DIR)/%.$O)
  32. RASTER_DRV_OBJ_S := $(OBJ_DIR)/raster.$O
  33. # raster driver source file for single build
  34. #
  35. RASTER_DRV_SRC_S := $(RASTER_DIR)/raster.c
  36. # raster driver - single object
  37. #
  38. $(RASTER_DRV_OBJ_S): $(RASTER_DRV_SRC_S) $(RASTER_DRV_SRC) 
  39.                      $(FREETYPE_H) $(RASTER_DRV_H)
  40. $(RASTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(RASTER_DRV_SRC_S))
  41. # raster driver - multiple objects
  42. #
  43. $(OBJ_DIR)/%.$O: $(RASTER_DIR)/%.c $(FREETYPE_H) $(RASTER_DRV_H)
  44. $(RASTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
  45. # update main driver object lists
  46. #
  47. DRV_OBJS_S += $(RASTER_DRV_OBJ_S)
  48. DRV_OBJS_M += $(RASTER_DRV_OBJ_M)
  49. # EOF