freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] parthw-pk-vf 2d1a8e0 2/3: [vf] Modify makefiles.


From: Parth Wazurkar
Subject: [freetype2] parthw-pk-vf 2d1a8e0 2/3: [vf] Modify makefiles.
Date: Wed, 5 Dec 2018 13:42:39 -0500 (EST)

branch: parthw-pk-vf
commit 2d1a8e09dcef8e4f9448bc0741c165b5bdaf1e91
Author: atharvaw <address@hidden>
Commit: atharvaw <address@hidden>

    [vf] Modify makefiles.
---
 modules.cfg     |  2 +-
 src/vf/rules.mk | 54 +++++++++++++++++++++++++++---------------------------
 2 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/modules.cfg b/modules.cfg
index c115a81..8203c53 100644
--- a/modules.cfg
+++ b/modules.cfg
@@ -68,7 +68,7 @@ FONT_MODULES += pcf
 FONT_MODULES += bdf
 
 # PK font driver.
-FONT_MODULES += pk
+FONT_MODULES += vf
 
 # SFNT files support.  If used without `truetype' or `cff', it supports
 # bitmap-only fonts within an SFNT wrapper.
diff --git a/src/vf/rules.mk b/src/vf/rules.mk
index 8d55011..758b43d 100644
--- a/src/vf/rules.mk
+++ b/src/vf/rules.mk
@@ -1,5 +1,5 @@
 #
-# FreeType 2 PK driver configuration rules
+# FreeType 2 VF driver configuration rules
 #
 
 
@@ -13,58 +13,58 @@
 # fully.
 
 
-# pk driver directory
+# vf driver directory
 #
-PK_DIR := $(SRC_DIR)/pk
+VF_DIR := $(SRC_DIR)/vf
 
 
-PK_COMPILE := $(CC) $(ANSIFLAGS)                            \
-                     $I$(subst /,$(COMPILER_SEP),$(PK_DIR)) \
+VF_COMPILE := $(CC) $(ANSIFLAGS)                            \
+                     $I$(subst /,$(COMPILER_SEP),$(VF_DIR)) \
                      $(INCLUDE_FLAGS)                        \
                      $(FT_CFLAGS)
 
 
-# pk driver sources (i.e., C files)
+# vf driver sources (i.e., C files)
 #
-PK_DRV_SRC :=  $(PK_DIR)/pklib.c \
-               $(PK_DIR)/pkdrivr.c
+VF_DRV_SRC :=  $(VF_DIR)/vflib.c \
+               $(VF_DIR)/vfdrivr.c
 
 
-# pk driver headers
+# vf driver headers
 #
-PK_DRV_H :=  $(PK_DIR)/pk.h \
-             $(PK_DIR)/pkdrivr.h \
-             $(PK_DIR)/pkerror.h
+VF_DRV_H :=  $(VF_DIR)/vf.h \
+             $(VF_DIR)/vfdrivr.h \
+             $(VF_DIR)/vferror.h
 
-# pk driver object(s)
+# vf driver object(s)
 #
-#   PK_DRV_OBJ_M is used during `multi' builds
-#   PK_DRV_OBJ_S is used during `single' builds
+#   VF_DRV_OBJ_M is used during `multi' builds
+#   VF_DRV_OBJ_S is used during `single' builds
 #
-PK_DRV_OBJ_M := $(PK_DRV_SRC:$(PK_DIR)/%.c=$(OBJ_DIR)/%.$O)
-PK_DRV_OBJ_S := $(OBJ_DIR)/pk.$O
+VF_DRV_OBJ_M := $(VF_DRV_SRC:$(VF_DIR)/%.c=$(OBJ_DIR)/%.$O)
+VF_DRV_OBJ_S := $(OBJ_DIR)/vf.$O
 
-# pk driver source file for single build
+# vf driver source file for single build
 #
-PK_DRV_SRC_S := $(PK_DIR)/pk.c
+VF_DRV_SRC_S := $(VF_DIR)/vf.c
 
 
-# pk driver - single object
+# vf driver - single object
 #
-$(PK_DRV_OBJ_S): $(PK_DRV_SRC_S) $(PK_DRV_SRC) $(FREETYPE_H) $(PK_DRV_H)
-       $(PK_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(PK_DRV_SRC_S))
+$(VF_DRV_OBJ_S): $(VF_DRV_SRC_S) $(VF_DRV_SRC) $(FREETYPE_H) $(VF_DRV_H)
+       $(VF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(VF_DRV_SRC_S))
 
 
-# pk driver - multiple objects
+# vf driver - multiple objects
 #
-$(OBJ_DIR)/%.$O: $(PK_DIR)/%.c $(FREETYPE_H) $(PK_DRV_H)
-       $(PK_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
+$(OBJ_DIR)/%.$O: $(VF_DIR)/%.c $(FREETYPE_H) $(VF_DRV_H)
+       $(VF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
 
 
 # update main driver object lists
 #
-DRV_OBJS_S += $(PK_DRV_OBJ_S)
-DRV_OBJS_M += $(PK_DRV_OBJ_M)
+DRV_OBJS_S += $(VF_DRV_OBJ_S)
+DRV_OBJS_M += $(VF_DRV_OBJ_M)
 
 
 # EOF



reply via email to

[Prev in Thread] Current Thread [Next in Thread]