Mercurial > mplayer.hg
view libvo/Makefile @ 18297:dc6312c0ee19
(.)~(.)
(-------)
---ooO-----Ooo-----------------------
Update mencoder.xml to 1.100 (up from 1.37) Weeee!
Patch by LMJ <linuxmasterjedi AH free POIS fr>
Add encoding-guide.xml (translated by Johan Bos)
to the build system (couldn't be done before because of the cross-links dependencies).
Foggy team is out to kick ass and take names!!!
-------------------------------------
( ) ( )
/|\ /|\
author | gpoirier |
---|---|
date | Wed, 26 Apr 2006 19:29:17 +0000 |
parents | 4f7892794a7f |
children | 1629108cd5b0 |
line wrap: on
line source
include config.mak LIBNAME = libvo.a SRCS=aclib.c \ aspect.c \ font_load.c \ font_load_ft.c \ geometry.c \ osd.c \ spuenc.c \ sub.c \ video_out.c \ vo_mpegpes.c \ vo_null.c \ vo_yuv4mpeg.c \ $(OPTIONAL_SRCS) \ LIBAV_INC = ifeq ($(CONFIG_LIBAVUTIL),yes) LIBAV_INC += -I../libavutil endif OBJS_TEMP=$(basename $(SRCS)) OBJS=$(OBJS_TEMP:%=%.o) 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) \ $(FREETYPE_INC) \ $(SDL_INC) \ $(X11_INC) \ $(EXTRA_INC) \ $(DXR2_INC) \ $(DIRECTFB_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) vo_mpegpes.o: vo_mpegpes.c $(CC) -c $(CFLAGS) $(DVB_INC) -o $@ $< 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