view libvo/Makefile @ 21325:963e85e82154

Change "p" asm constraints to "g", since "p" was a no longer necessary hack to make AMD64 compilation work and ICC can not handle "p".
author reimar
date Mon, 27 Nov 2006 21:59:13 +0000
parents 5fdf546b4e57
children 947f679ee12e
line wrap: on
line source


include ../config.mak

LIBNAME2 = libosd.a
ifeq ($(MPLAYER),yes)
LIBNAME = libvo.a
endif

SRCS=aspect.c \
     geometry.c \
     spuenc.c \
     video_out.c \
     vo_mpegpes.c \
     vo_null.c \
     vo_yuv4mpeg.c \
     $(VO_SRCS) \

SRCS-$(EXTERNAL_VIDIX) +=  vosub_vidix.c
SRCS-$(VIDIX)          +=  vosub_vidix.c

SRCS2 = aclib.c \
        osd.c \
        sub.c \

SRCS2-$(BITMAP_FONT) +=  font_load.c
SRCS2-$(FREETYPE)    +=  font_load_ft.c

LIBAV_INC-$(CONFIG_LIBAVUTIL) +=  -I../libavutil

CFLAGS = -I.. -I../osdep $(LIBAV_INC)

include ../mpcommon.mak

.m.o:
	$(CC) -c $(CFLAGS) -o $@ $<