comparison libvo/Makefile @ 18864:1629108cd5b0

Move conditional FreeType support compilation to the build system.
author diego
date Fri, 30 Jun 2006 12:41:05 +0000
parents 4f7892794a7f
children 9b3a8b48e5b3
comparison
equal deleted inserted replaced
18863:06e4c7737aa7 18864:1629108cd5b0
4 LIBNAME = libvo.a 4 LIBNAME = libvo.a
5 5
6 SRCS=aclib.c \ 6 SRCS=aclib.c \
7 aspect.c \ 7 aspect.c \
8 font_load.c \ 8 font_load.c \
9 font_load_ft.c \
10 geometry.c \ 9 geometry.c \
11 osd.c \ 10 osd.c \
12 spuenc.c \ 11 spuenc.c \
13 sub.c \ 12 sub.c \
14 video_out.c \ 13 video_out.c \
22 LIBAV_INC += -I../libavutil 21 LIBAV_INC += -I../libavutil
23 endif 22 endif
24 23
25 OBJS_TEMP=$(basename $(SRCS)) 24 OBJS_TEMP=$(basename $(SRCS))
26 OBJS=$(OBJS_TEMP:%=%.o) 25 OBJS=$(OBJS_TEMP:%=%.o)
26
27 ifeq ($(FREETYPE),yes)
28 SRCS += font_load_ft.c
29 endif
27 30
28 ifeq ($(VIDIX),yes) 31 ifeq ($(VIDIX),yes)
29 SRCS += vosub_vidix.c 32 SRCS += vosub_vidix.c
30 endif 33 endif
31 34