summaryrefslogtreecommitdiff
path: root/Makefile.sources
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-02-06 22:32:39 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-02-06 22:32:39 +0000
commitb7f812d5a2bd18f4e4ed029f08cd96b160fd1e8c (patch)
tree1b87e95da12d3564ebd764b21928a8ee03bfb641 /Makefile.sources
parenta85f391906c4672eb111f863676ec193f6ba412b (diff)
downloadnetsurf-b7f812d5a2bd18f4e4ed029f08cd96b160fd1e8c.tar.gz
netsurf-b7f812d5a2bd18f4e4ed029f08cd96b160fd1e8c.tar.bz2
Replace old internal font with new one. New font
has bold, italic and italic&bold variants. Change internal font's encoding from CP437 to CP1252, since it has more useful glyphs for web browsing. svn path=/trunk/netsurf/; revision=9957
Diffstat (limited to 'Makefile.sources')
-rw-r--r--Makefile.sources3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.sources b/Makefile.sources
index 84ed16197..ac2a7c403 100644
--- a/Makefile.sources
+++ b/Makefile.sources
@@ -106,7 +106,8 @@ S_FRAMEBUFFER := gui.c framebuffer.c tree.c history.c hotlist.c \
S_FRAMEBUFFER += font_$(NETSURF_FB_FONTLIB).c
ifeq ($(NETSURF_FB_FONTLIB),internal)
-S_FRAMEBUFFER += font_8x16.c
+S_FRAMEBUFFER += nsfont_regular.c nsfont_italic.c nsfont_bold.c \
+ nsfont_italic_bold.c
endif