Mercurial > mplayer.hg
view loader/Makefile @ 22514:ce431aaeab21
r22408: add -tv driver=help entry, also add dshow tv driver
r22409: 10l: dshow isnt in svn yet
r22453: add -xvfwopts compdata suboption to man page
r22461: -nomouseinput is no longer X11 only.
r22492: documented -reuse-socket
r22503: corrected description of -reuse-socket as described by Rich
r22508: Document lscale=2
r22512: wording/spelling for lscale=2 suboption
r22521: Clarify -reuse-socket description.
author | voroshil |
---|---|
date | Mon, 12 Mar 2007 18:05:39 +0000 |
parents | 3d1b23cf3d08 |
children | 8bcff5c7e387 |
line wrap: on
line source
include ../config.mak LIBNAME = libloader.a CFLAGS= -Idshow -DMPLAYER -D__WINE__ -DNOAVIFILE_HEADERS #CFLAGS+=-Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT SRCS= driver.c afl.c vfl.c ifneq ($(TARGET_WIN32),yes) SRCS+= ldt_keeper.c pe_image.c module.c ext.c win32.c \ pe_resource.c resource.c registry.c elfdll.c # QTX emulation is not supported in Darwin ifneq ($(TARGET_OS),Darwin) SRCS+= wrapper.S endif endif SRCS+= dshow/DS_AudioDecoder.c \ dshow/DS_Filter.c \ dshow/DS_VideoDecoder.c \ dshow/allocator.c \ dshow/mediatype.c \ dshow/cmediasample.c \ dshow/guids.c \ dshow/inputpin.c \ dshow/outputpin.c \ dmo/DMO_AudioDecoder.c \ dmo/DMO_VideoDecoder.c \ dmo/buffer.c \ dmo/dmo.c \ dmo/dmo_guids.c \ include ../mpcommon.mak CFLAGS+=-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer dshow/test: dshow/test.c $(LIBNAME) $(CC) $(CFLAGS) -o $@ $^ -lstdc++ clean:: rm -f dshow/*.o dshow/*.a dshow/*~ rm -f dmo/*.o dmo/*.a dmo/*~ distclean:: rm -f dshow/test dshow/test.raw