diff libvo/Makefile @ 19485:d04ee0eb6a11

support for disabling/enabling bitmap font support from configure
author diego
date Mon, 21 Aug 2006 23:19:11 +0000
parents 4f71ed7cb512
children 618d1857f4c4
line wrap: on
line diff
--- a/libvo/Makefile	Mon Aug 21 22:02:49 2006 +0000
+++ b/libvo/Makefile	Mon Aug 21 23:19:11 2006 +0000
@@ -5,7 +5,6 @@
 
 SRCS=aclib.c \
      aspect.c \
-     font_load.c \
      geometry.c \
      osd.c \
      spuenc.c \
@@ -24,6 +23,10 @@
 OBJS_TEMP=$(basename $(SRCS))
 OBJS=$(OBJS_TEMP:%=%.o)
 
+ifeq ($(BITMAP_FONT),yes)
+SRCS += font_load.c
+endif
+
 ifeq ($(FREETYPE),yes)
 SRCS += font_load_ft.c
 endif