Mercurial > mplayer.hg
view libvo/Makefile @ 19326:f399b52a985a
Move store_ughvlc to demux_mov as demux_ogg is not always compiled in.
inspired by a patch from Emanuele Giaquinta, emanuele.giaquinta %@% gmail.com
author | diego |
---|---|
date | Fri, 04 Aug 2006 21:19:06 +0000 |
parents | 1ea5c31932fd |
children | 747453e12f3b |
line wrap: on
line source
include ../config.mak LIBNAME = libvo.a SRCS=aclib.c \ aspect.c \ font_load.c \ geometry.c \ osd.c \ spuenc.c \ sub.c \ video_out.c \ vo_mpegpes.c \ vo_null.c \ vo_yuv4mpeg.c \ $(VO_SRCS) \ LIBAV_INC = ifeq ($(CONFIG_LIBAVUTIL),yes) LIBAV_INC += -I../libavutil endif OBJS_TEMP=$(basename $(SRCS)) OBJS=$(OBJS_TEMP:%=%.o) ifeq ($(FREETYPE),yes) SRCS += font_load_ft.c endif ifeq ($(VIDIX),yes) SRCS += vosub_vidix.c endif ifeq ($(EXTERNAL_VIDIX),yes) SRCS += vosub_vidix.c endif CFLAGS = $(OPTFLAGS) -I. -I.. -I../osdep \ $(LIBAV_INC) \ -DMPG12PLAY \ #CFLAGS += -Wall .SUFFIXES: .c .o .m # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -o $@ $< .m.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) all: $(LIBNAME) clean: rm -f *.o *.a *~ distclean: clean rm -f .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif