summaryrefslogtreecommitdiff
path: root/Makefile.sources
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2009-02-20 09:51:21 +0000
committerVincent Sanders <vince@netsurf-browser.org>2009-02-20 09:51:21 +0000
commit0cecbe3cbcef566fb679aed5f0055397cb4c040c (patch)
tree82e0b523e73d5c069060b79b41d697839585b924 /Makefile.sources
parent8aa291df0f63bb152d6d2893f361f6ae06fe06d7 (diff)
downloadnetsurf-0cecbe3cbcef566fb679aed5f0055397cb4c040c.tar.gz
netsurf-0cecbe3cbcef566fb679aed5f0055397cb4c040c.tar.bz2
allow framebuffer port to use freetype2 library
svn path=/trunk/netsurf/; revision=6570
Diffstat (limited to 'Makefile.sources')
-rw-r--r--Makefile.sources8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.sources b/Makefile.sources
index b19139305..554e81d30 100644
--- a/Makefile.sources
+++ b/Makefile.sources
@@ -92,12 +92,18 @@ S_AMIGA := $(addprefix amiga/,$(S_AMIGA))
# S_FRAMEBUFFER are sources purely for the framebuffer build
S_FRAMEBUFFER := fb_gui.c tree.c history.c hotlist.c fb_schedule.c \
- thumbnail.c misc.c fb_bitmap.c fb_font.c font_8x16.c \
+ thumbnail.c misc.c fb_bitmap.c \
fb_filetype.c login.c fb_cursor.c fb_plotters.c \
fb_8bpp_plotters.c fb_16bpp_plotters.c fb_32bpp_plotters.c \
fb_findfile.c fb_rootwindow.c fb_image_data.c
# fb_1bpp_plotters.c
+S_FRAMEBUFFER += fb_font_$(NETSURF_FB_FONTLIB).c
+
+ifeq ($(NETSURF_FB_FONTLIB),internal)
+S_FRAMEBUFFER += font_8x16.c
+endif
+
ifeq ($(NETSURF_FB_FRONTEND),linux)
S_FRAMEBUFFER += fb_frontend_linuxfb.c
endif