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

其他游戏

开发平台:

Visual C++

  1. #
  2. # FreeType 2 smooth 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. # smooth driver directory
  13. #
  14. SMOOTH_DIR := $(SRC_DIR)/smooth
  15. # compilation flags for the driver
  16. #
  17. SMOOTH_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(SMOOTH_DIR))
  18. # smooth driver sources (i.e., C files)
  19. #
  20. SMOOTH_DRV_SRC := $(SMOOTH_DIR)/ftgrays.c  
  21.                   $(SMOOTH_DIR)/ftsmooth.c
  22. # smooth driver headers
  23. #
  24. SMOOTH_DRV_H := $(SMOOTH_DRV_SRC:%c=%h)  
  25.                 $(SMOOTH_DIR)/ftsmerrs.h
  26. # smooth driver object(s)
  27. #
  28. #   SMOOTH_DRV_OBJ_M is used during `multi' builds.
  29. #   SMOOTH_DRV_OBJ_S is used during `single' builds.
  30. #
  31. SMOOTH_DRV_OBJ_M := $(SMOOTH_DRV_SRC:$(SMOOTH_DIR)/%.c=$(OBJ_DIR)/%.$O)
  32. SMOOTH_DRV_OBJ_S := $(OBJ_DIR)/smooth.$O
  33. # smooth driver source file for single build
  34. #
  35. SMOOTH_DRV_SRC_S := $(SMOOTH_DIR)/smooth.c
  36. # smooth driver - single object
  37. #
  38. $(SMOOTH_DRV_OBJ_S): $(SMOOTH_DRV_SRC_S) $(SMOOTH_DRV_SRC) 
  39.                      $(FREETYPE_H) $(SMOOTH_DRV_H)
  40. $(SMOOTH_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(SMOOTH_DRV_SRC_S))
  41. # smooth driver - multiple objects
  42. #
  43. $(OBJ_DIR)/%.$O: $(SMOOTH_DIR)/%.c $(FREETYPE_H) $(SMOOTH_DRV_H)
  44. $(SMOOTH_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
  45. # update main driver object lists
  46. #
  47. DRV_OBJS_S += $(SMOOTH_DRV_OBJ_S)
  48. DRV_OBJS_M += $(SMOOTH_DRV_OBJ_M)
  49. # EOF