aboutsummaryrefslogtreecommitdiff
path: root/src/type42/rules.mk
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-06-07 07:23:06 +0000
committerDavid Turner <david@freetype.org>2002-06-07 07:23:06 +0000
commit9f95babf3e1be13c2f7ecda60938698b7e2da7f6 (patch)
treebd8e24e45497239f846fcbdc367d788bcf49f991 /src/type42/rules.mk
parent5a1fae15a90e220e98b69ad88ee9b927aeb9c608 (diff)
downloadfreetype-9f95babf3e1be13c2f7ecda60938698b7e2da7f6.tar.gz
* src/type42/t42drivr.c, src/type42/t42drivr.h, src/type42/t42parse.c,
src/type42/t42parse.h, src/type42/t42objs.h, src/type42/t42objs.c, src/type42/type42.c: updated the Type42 driver by splitting it into several files since it makes the code easier to read and maintain. Also fixed the bug that prevented the correct display of fonts with "ftview"
Diffstat (limited to 'src/type42/rules.mk')
-rw-r--r--src/type42/rules.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/type42/rules.mk b/src/type42/rules.mk
index a55f42e3a..3e8ea9d78 100644
--- a/src/type42/rules.mk
+++ b/src/type42/rules.mk
@@ -26,11 +26,13 @@ T42_COMPILE := $(FT_COMPILE) $I$(T42_DIR)
# Type42 driver source
#
-T42_DRV_SRC := $(T42_DIR_)t42drivr.c
+T42_DRV_SRC := $(T42_DIR_)t42objs.c \
+ $(T42_DIR_)t42parse.c \
+ $(T42_DIR_)t42drivr.c
# Type42 driver headers
#
-T42_DRV_H :=
+T42_DRV_H := $(T42_DRV_SRC:%.c=%.h)
# Type42 driver object(s)
@@ -39,7 +41,7 @@ T42_DRV_H :=
# T42_DRV_OBJ_S is used during `single' builds
#
T42_DRV_OBJ_M := $(T42_DRV_SRC:$(T42_DIR_)%.c=$(OBJ_)%.$O)
-T42_DRV_OBJ_S := $(OBJ_)t42drivr.$O
+T42_DRV_OBJ_S := $(OBJ_)type42.$O
# Type42 driver source file for single build
#