view libvo/Makefile @ 21234:f61fd8cc3128

Add a sanity check to unsafe-looking code. Does the memcpy to internal buffer here have any purpose besides enabling more potential buffer overflows?
author uau
date Sat, 25 Nov 2006 20:01:24 +0000
parents 36046375aacd
children 92b122592776
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

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

#CFLAGS += -Wall

.SUFFIXES: .c .o .m

# .PHONY: all clean

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

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

all:    $(LIBS)

$(LIBNAME): $(OBJS)
	$(AR) r $@ $^
	$(RANLIB) $@

$(LIBNAME2): $(OBJS2)
	$(AR) r $@ $^
	$(RANLIB) $@

clean:
	rm -f *.o *.a *~

distclean: clean
	rm -f .depend

dep depend:
	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend

ifneq ($(wildcard .depend),)
include .depend
endif