graphics

experiments with opengl3.2/ogles3.3 on linux and win7
git clone http://frotz.net/git/graphics.git
Log | Files | Refs

module.mk (464B)


      1 M_PATH := $(modulepath)
      2 
      3 M_NAME := freetype
      4 M_CFLAGS := -DFT2_BUILD_LIBRARY
      5 
      6 # base library
      7 M_OBJS := base/ftsystem.o
      8 M_OBJS += base/ftinit.o
      9 M_OBJS += base/ftdebug.o
     10 M_OBJS += base/ftbase.o
     11 
     12 # suggested / dependencies
     13 M_OBJS += base/ftbbox.o
     14 M_OBJS += base/ftglyph.o
     15 M_OBJS += base/ftbitmap.o
     16 
     17 # font drivers: truetype
     18 M_OBJS += truetype/truetype.o
     19 M_OBJS += sfnt/sfnt.o
     20 M_OBJS += psnames/psnames.o
     21 
     22 # rasterizer
     23 M_OBJS += smooth/smooth.o
     24 
     25 include build/lib.mk
     26 
     27