commit a6ab17c1a16640173cf8776f40502fbb12a2844e parent c23ed10c9bdf84217448a65790d031056e817347 Author: Brian Swetland <swetland@frotz.net> Date: Fri, 21 Jun 2013 00:30:34 -0700 freetype: include in build Diffstat:
A | freetype-2.5.0.1/module.mk | | | 27 | +++++++++++++++++++++++++++ |
1 file changed, 27 insertions(+), 0 deletions(-)
diff --git a/freetype-2.5.0.1/module.mk b/freetype-2.5.0.1/module.mk @@ -0,0 +1,27 @@ +M_PATH := $(modulepath) + +M_NAME := freetype +M_CFLAGS := -DFT2_BUILD_LIBRARY + +# base library +M_OBJS := base/ftsystem.o +M_OBJS += base/ftinit.o +M_OBJS += base/ftdebug.o +M_OBJS += base/ftbase.o + +# suggested / dependencies +M_OBJS += base/ftbbox.o +M_OBJS += base/ftglyph.o +M_OBJS += base/ftbitmap.o + +# font drivers: truetype +M_OBJS += truetype/truetype.o +M_OBJS += sfnt/sfnt.o +M_OBJS += psnames/psnames.o + +# rasterizer +M_OBJS += smooth/smooth.o + +include build/lib.mk + +