Mercurial > mplayer.hg
view libvo/Makefile @ 21267:9ec30b8622ec
Make ass_new_font return ass_font_t struct (instead of just FT_Face).
Use it to access the font face.
author | eugeni |
---|---|
date | Sun, 26 Nov 2006 20:53:29 +0000 |
parents | 92b122592776 |
children | a396402b091b |
line wrap: on
line source
include ../config.mak LIBNAME = libvo.a LIBNAME2 = libosd.a LIBS =$(LIBNAME2) ifeq ($(MPLAYER),yes) LIBS+=$(LIBNAME) endif SRCS=aspect.c \ geometry.c \ spuenc.c \ video_out.c \ vo_mpegpes.c \ vo_null.c \ vo_yuv4mpeg.c \ $(VO_SRCS) \ SRCS2 = aclib.c \ osd.c \ sub.c \ ifeq ($(CONFIG_LIBAVUTIL),yes) LIBAV_INC += -I../libavutil endif OBJS_TEMP=$(basename $(SRCS)) OBJS=$(OBJS_TEMP:%=%.o) OBJS2=$(SRCS2:.c=.o) ifeq ($(BITMAP_FONT),yes) SRCS2 += font_load.c endif ifeq ($(FREETYPE),yes) SRCS2 += font_load_ft.c endif ifeq ($(VIDIX),yes) SRCS += vosub_vidix.c endif ifeq ($(EXTERNAL_VIDIX),yes) SRCS += vosub_vidix.c endif CFLAGS = -I.. -I../osdep $(LIBAV_INC) include ../mpcommon.mak .m.o: $(CC) -c $(CFLAGS) -o $@ $< all: $(LIBS) $(LIBNAME2): $(OBJS2) $(AR) r $@ $^ $(RANLIB) $@