Mercurial > mplayer.hg
view loader/Makefile @ 21318:c012ba4bf229
help messages:
r21306: fix compilation for win32 dll codec support for intel osx
r21328: localization of parser-m*cmd.c messages
r21332: insert line break for overly long line (second line indented)
man page:
r21221: improve description of x264's deadzone* options
r21228: fix typos noticed by Diego
r21254: nits and picks by The Wanderer :)
r21255: typo in deadzone_inter
r21298: "D" interactive key also works with yadif now
author | kraymer |
---|---|
date | Mon, 27 Nov 2006 17:22:31 +0000 |
parents | 410a59bd1897 |
children | 06a0a4dbf1a0 |
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 stubs.S # 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/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 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